+
+
Name
- { console.log(v) }} />
+ { console.log(v) }} />
-
-
+
Avatar
-
Delete Account
+
Delete Account
This action will remove all the data associated with your account in Gitpod.
-
+
;
}
diff --git a/components/dashboard/src/settings/DefaultIDE.tsx b/components/dashboard/src/settings/DefaultIDE.tsx
deleted file mode 100644
index ea0c295145de6f..00000000000000
--- a/components/dashboard/src/settings/DefaultIDE.tsx
+++ /dev/null
@@ -1,12 +0,0 @@
-import { SettingsPage } from "../components/SettingsPage";
-import settingsMenu from './settings-menu';
-
-export default function DefaultIDE() {
- return
;
-}
\ No newline at end of file
diff --git a/components/dashboard/src/settings/EnvironmentVariables.tsx b/components/dashboard/src/settings/EnvironmentVariables.tsx
index 911b3c779a923f..cf9d5f94e3d361 100644
--- a/components/dashboard/src/settings/EnvironmentVariables.tsx
+++ b/components/dashboard/src/settings/EnvironmentVariables.tsx
@@ -1,12 +1,9 @@
-import { SettingsPage } from "../components/SettingsPage";
-import settingsMenu from './settings-menu';
+import { SettingsPage } from "./SettingsPage";
export default function EnvVars() {
return
-
-
- Environment Variables
-
+
+ Environment Variables
;
}
\ No newline at end of file
diff --git a/components/dashboard/src/settings/GitIntegrations.tsx b/components/dashboard/src/settings/GitIntegrations.tsx
index 6e954aebf10241..f642103fad729f 100644
--- a/components/dashboard/src/settings/GitIntegrations.tsx
+++ b/components/dashboard/src/settings/GitIntegrations.tsx
@@ -1,12 +1,9 @@
-import { SettingsPage } from "../components/SettingsPage";
-import settingsMenu from './settings-menu';
+import { SettingsPage } from "./SettingsPage";
export default function GitIntegrations() {
return
-
-
- Git Hoster Access Control
-
+
+ Git Hoster Access Control
;
}
\ No newline at end of file
diff --git a/components/dashboard/src/settings/Notifications.tsx b/components/dashboard/src/settings/Notifications.tsx
index 734c9eae9cd8f7..02ff3e955e677d 100644
--- a/components/dashboard/src/settings/Notifications.tsx
+++ b/components/dashboard/src/settings/Notifications.tsx
@@ -1,12 +1,9 @@
-import { SettingsPage } from "../components/SettingsPage";
-import settingsMenu from "./settings-menu";
+import { SettingsPage } from "./SettingsPage";
export default function Notifications() {
return
-
-
- Notifications
-
+
+ Notifications
;
}
diff --git a/components/dashboard/src/settings/Plans.tsx b/components/dashboard/src/settings/Plans.tsx
index 951446d3d07750..09543c85b48285 100644
--- a/components/dashboard/src/settings/Plans.tsx
+++ b/components/dashboard/src/settings/Plans.tsx
@@ -1,12 +1,9 @@
-import { SettingsPage } from "../components/SettingsPage";
-import settingsMenu from "./settings-menu";
+import { SettingsPage } from "./SettingsPage";
export default function Plans() {
return
;
}
diff --git a/components/dashboard/src/settings/Preferences.tsx b/components/dashboard/src/settings/Preferences.tsx
new file mode 100644
index 00000000000000..03cfeeaf911863
--- /dev/null
+++ b/components/dashboard/src/settings/Preferences.tsx
@@ -0,0 +1,41 @@
+import { useContext, useState } from "react";
+import { getGitpodService } from "../service/service";
+import SelectableCard from "../components/SelectableCard";
+import { UserContext } from "../user-context";
+import { SettingsPage } from "./SettingsPage";
+
+export default function Preferences() {
+ const { user } = useContext(UserContext);
+ const [ defaultIde, setDefaultIde ] = useState
(user?.additionalData?.ideSettings?.defaultIde || 'theia');
+ const actuallySetDefaultIde = async (value: string) => {
+ const additionalData = user?.additionalData || {};
+ const settings = additionalData.ideSettings || {};
+ if (value === 'theia') {
+ delete settings.defaultIde;
+ } else {
+ settings.defaultIde = value;
+ }
+ additionalData.ideSettings = settings;
+ await getGitpodService().server.updateLoggedInUser({ additionalData });
+ setDefaultIde(value);
+ }
+
+ return
+
+ Default IDE
+ Choose which IDE you want to use.
+
+
actuallySetDefaultIde('code')}>
+
+

+
+
+
actuallySetDefaultIde('theia')}>
+
+

+
+
+
+
+
;
+}
\ No newline at end of file
diff --git a/components/dashboard/src/settings/SettingsPage.tsx b/components/dashboard/src/settings/SettingsPage.tsx
new file mode 100644
index 00000000000000..68acc64498e736
--- /dev/null
+++ b/components/dashboard/src/settings/SettingsPage.tsx
@@ -0,0 +1,37 @@
+import { Link } from "react-router-dom";
+import Header from '../components/Header';
+import settingsMenu from "./settings-menu";
+
+export interface Props {
+ title: string;
+ subtitle: string;
+ children: React.ReactNode;
+}
+
+export function SettingsPage(p: Props) {
+ return
+
+
+
+
+ {settingsMenu.map(e => {
+ let classes = "flex block py-2 font-sm px-4 rounded-md";
+ if (e.link.toLowerCase() === window.location.pathname) {
+ classes += " bg-gray-800 text-gray-50";
+ } else {
+ classes += " hover:bg-gray-100";
+ }
+ return
+ -
+ {e.title}
+
+ ;
+ })}
+
+
+
+ {p.children}
+
+
+ ;
+}
\ No newline at end of file
diff --git a/components/dashboard/src/settings/settings-menu.ts b/components/dashboard/src/settings/settings-menu.ts
index 399a5c13d072da..654d30e29ba489 100644
--- a/components/dashboard/src/settings/settings-menu.ts
+++ b/components/dashboard/src/settings/settings-menu.ts
@@ -20,7 +20,7 @@ export default [
link: '/integrations'
},
{
- title: 'Default IDE',
- link: '/default-ide'
+ title: 'Preferences',
+ link: '/preferences'
},
];
\ No newline at end of file
diff --git a/components/dashboard/src/start/CreateWorkspace.tsx b/components/dashboard/src/start/CreateWorkspace.tsx
index 1645cf81243562..9db10ac05bc595 100644
--- a/components/dashboard/src/start/CreateWorkspace.tsx
+++ b/components/dashboard/src/start/CreateWorkspace.tsx
@@ -2,9 +2,9 @@ import React, { Suspense } from "react";
import { CreateWorkspaceMode, WorkspaceCreationResult } from "@gitpod/gitpod-protocol";
import { ErrorCodes } from "@gitpod/gitpod-protocol/lib/messaging/error";
import Modal from "../components/Modal";
-import { StartPage, StartPhase } from "../components/StartPage";
-import StartWorkspace from "./StartWorkspace";
import { getGitpodService } from "../service/service";
+import { StartPage, StartPhase } from "./StartPage";
+import StartWorkspace from "./StartWorkspace";
const WorkspaceLogs = React.lazy(() => import('./WorkspaceLogs'));
diff --git a/components/dashboard/src/components/StartPage.tsx b/components/dashboard/src/start/StartPage.tsx
similarity index 100%
rename from components/dashboard/src/components/StartPage.tsx
rename to components/dashboard/src/start/StartPage.tsx
diff --git a/components/dashboard/src/start/StartWorkspace.tsx b/components/dashboard/src/start/StartWorkspace.tsx
index 5166cad2b1d3f5..0cb1a8c4695a67 100644
--- a/components/dashboard/src/start/StartWorkspace.tsx
+++ b/components/dashboard/src/start/StartWorkspace.tsx
@@ -1,8 +1,8 @@
import React from "react";
import { DisposableCollection, WorkspaceInstance } from "@gitpod/gitpod-protocol";
import { GitpodHostUrl } from "@gitpod/gitpod-protocol/lib/util/gitpod-host-url";
-import { StartPage, StartPhase } from "../components/StartPage";
import { getGitpodService } from "../service/service";
+import { StartPage, StartPhase } from "./StartPage";
export interface StartWorkspaceProps {
workspaceId: string;
diff --git a/components/dashboard/src/tailwind.output.css b/components/dashboard/src/tailwind.output.css
index 6d4e01ccfeff35..493961670e9d44 100644
--- a/components/dashboard/src/tailwind.output.css
+++ b/components/dashboard/src/tailwind.output.css
@@ -786,7 +786,7 @@ h4 {
line-height: 1.25rem;
padding-bottom: 0.5rem;
--tw-text-opacity: 1;
- color: rgba(120, 113, 108, var(--tw-text-opacity));
+ color: rgba(87, 83, 78, var(--tw-text-opacity));
}
p {
@@ -907,22 +907,32 @@ input[type=text] {
input[type=text]::-webkit-input-placeholder {
--tw-text-opacity: 1;
- color: rgba(168, 162, 158, var(--tw-text-opacity))
+ color: rgba(168, 162, 158, var(--tw-text-opacity));
}
input[type=text]:-ms-input-placeholder {
--tw-text-opacity: 1;
- color: rgba(168, 162, 158, var(--tw-text-opacity))
+ color: rgba(168, 162, 158, var(--tw-text-opacity));
}
input[type=text]::-ms-input-placeholder {
--tw-text-opacity: 1;
- color: rgba(168, 162, 158, var(--tw-text-opacity))
+ color: rgba(168, 162, 158, var(--tw-text-opacity));
}
input[type=text]::placeholder {
--tw-text-opacity: 1;
- color: rgba(168, 162, 158, var(--tw-text-opacity))
+ color: rgba(168, 162, 158, var(--tw-text-opacity));
+}
+
+input[disabled] {
+ --tw-bg-opacity: 1;
+ background-color: rgba(245, 245, 244, var(--tw-bg-opacity));
+ --tw-border-opacity: 1;
+ border-color: rgba(214, 211, 209, var(--tw-border-opacity));
+ border-width: 2px;
+ --tw-text-opacity: 1;
+ color: rgba(168, 162, 158, var(--tw-text-opacity));
}
.space-y-0 > :not([hidden]) ~ :not([hidden]) {
@@ -1959,21 +1969,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-divide-opacity)) !important;
}
-.divide-red-light > :not([hidden]) ~ :not([hidden]) {
- --tw-divide-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-divide-opacity)) !important;
-}
-
-.divide-red > :not([hidden]) ~ :not([hidden]) {
- --tw-divide-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-divide-opacity)) !important;
-}
-
-.divide-red-dark > :not([hidden]) ~ :not([hidden]) {
- --tw-divide-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-divide-opacity)) !important;
-}
-
.divide-yellow-50 > :not([hidden]) ~ :not([hidden]) {
--tw-divide-opacity: 1 !important;
border-color: rgba(255, 251, 235, var(--tw-divide-opacity)) !important;
@@ -2620,21 +2615,6 @@ input[type=text]::placeholder {
background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important;
}
-.bg-red-light {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(239, 156, 154, var(--tw-bg-opacity)) !important;
-}
-
-.bg-red {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(206, 74, 62, var(--tw-bg-opacity)) !important;
-}
-
-.bg-red-dark {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(177, 51, 106, var(--tw-bg-opacity)) !important;
-}
-
.bg-yellow-50 {
--tw-bg-opacity: 1 !important;
background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important;
@@ -3097,21 +3077,6 @@ input[type=text]::placeholder {
background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important;
}
-.group:hover .group-hover\:bg-red-light {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(239, 156, 154, var(--tw-bg-opacity)) !important;
-}
-
-.group:hover .group-hover\:bg-red {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(206, 74, 62, var(--tw-bg-opacity)) !important;
-}
-
-.group:hover .group-hover\:bg-red-dark {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(177, 51, 106, var(--tw-bg-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;
@@ -3574,21 +3539,6 @@ input[type=text]::placeholder {
background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important;
}
-.focus-within\:bg-red-light:focus-within {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(239, 156, 154, var(--tw-bg-opacity)) !important;
-}
-
-.focus-within\:bg-red:focus-within {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(206, 74, 62, var(--tw-bg-opacity)) !important;
-}
-
-.focus-within\:bg-red-dark:focus-within {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(177, 51, 106, var(--tw-bg-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;
@@ -4051,21 +4001,6 @@ input[type=text]::placeholder {
background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important;
}
-.hover\:bg-red-light:hover {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(239, 156, 154, var(--tw-bg-opacity)) !important;
-}
-
-.hover\:bg-red:hover {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(206, 74, 62, var(--tw-bg-opacity)) !important;
-}
-
-.hover\:bg-red-dark:hover {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(177, 51, 106, var(--tw-bg-opacity)) !important;
-}
-
.hover\:bg-yellow-50:hover {
--tw-bg-opacity: 1 !important;
background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important;
@@ -4528,21 +4463,6 @@ input[type=text]::placeholder {
background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important;
}
-.focus\:bg-red-light:focus {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(239, 156, 154, var(--tw-bg-opacity)) !important;
-}
-
-.focus\:bg-red:focus {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(206, 74, 62, var(--tw-bg-opacity)) !important;
-}
-
-.focus\:bg-red-dark:focus {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(177, 51, 106, var(--tw-bg-opacity)) !important;
-}
-
.focus\:bg-yellow-50:focus {
--tw-bg-opacity: 1 !important;
background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important;
@@ -5043,21 +4963,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
-.from-red-light {
- --tw-gradient-from: #EF9C9A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
-}
-
-.from-red {
- --tw-gradient-from: #CE4A3E !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
-}
-
-.from-red-dark {
- --tw-gradient-from: #B1336A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 51, 106, 0)) !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;
@@ -5499,18 +5404,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
-.via-red-light {
- --tw-gradient-stops: var(--tw-gradient-from), #EF9C9A, var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
-}
-
-.via-red {
- --tw-gradient-stops: var(--tw-gradient-from), #CE4A3E, var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
-}
-
-.via-red-dark {
- --tw-gradient-stops: var(--tw-gradient-from), #B1336A, var(--tw-gradient-to, rgba(177, 51, 106, 0)) !important;
-}
-
.via-yellow-50 {
--tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important;
}
@@ -5883,18 +5776,6 @@ input[type=text]::placeholder {
--tw-gradient-to: #7f1d1d !important;
}
-.to-red-light {
- --tw-gradient-to: #EF9C9A !important;
-}
-
-.to-red {
- --tw-gradient-to: #CE4A3E !important;
-}
-
-.to-red-dark {
- --tw-gradient-to: #B1336A !important;
-}
-
.to-yellow-50 {
--tw-gradient-to: #fffbeb !important;
}
@@ -6291,21 +6172,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
-.hover\:from-red-light:hover {
- --tw-gradient-from: #EF9C9A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
-}
-
-.hover\:from-red:hover {
- --tw-gradient-from: #CE4A3E !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
-}
-
-.hover\:from-red-dark:hover {
- --tw-gradient-from: #B1336A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 51, 106, 0)) !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;
@@ -6747,18 +6613,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
-.hover\:via-red-light:hover {
- --tw-gradient-stops: var(--tw-gradient-from), #EF9C9A, var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
-}
-
-.hover\:via-red:hover {
- --tw-gradient-stops: var(--tw-gradient-from), #CE4A3E, var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
-}
-
-.hover\:via-red-dark:hover {
- --tw-gradient-stops: var(--tw-gradient-from), #B1336A, var(--tw-gradient-to, rgba(177, 51, 106, 0)) !important;
-}
-
.hover\:via-yellow-50:hover {
--tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important;
}
@@ -7131,18 +6985,6 @@ input[type=text]::placeholder {
--tw-gradient-to: #7f1d1d !important;
}
-.hover\:to-red-light:hover {
- --tw-gradient-to: #EF9C9A !important;
-}
-
-.hover\:to-red:hover {
- --tw-gradient-to: #CE4A3E !important;
-}
-
-.hover\:to-red-dark:hover {
- --tw-gradient-to: #B1336A !important;
-}
-
.hover\:to-yellow-50:hover {
--tw-gradient-to: #fffbeb !important;
}
@@ -7539,21 +7381,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
-.focus\:from-red-light:focus {
- --tw-gradient-from: #EF9C9A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
-}
-
-.focus\:from-red:focus {
- --tw-gradient-from: #CE4A3E !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
-}
-
-.focus\:from-red-dark:focus {
- --tw-gradient-from: #B1336A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 51, 106, 0)) !important;
-}
-
.focus\:from-yellow-50:focus {
--tw-gradient-from: #fffbeb !important;
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important;
@@ -7995,18 +7822,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
-.focus\:via-red-light:focus {
- --tw-gradient-stops: var(--tw-gradient-from), #EF9C9A, var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
-}
-
-.focus\:via-red:focus {
- --tw-gradient-stops: var(--tw-gradient-from), #CE4A3E, var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
-}
-
-.focus\:via-red-dark:focus {
- --tw-gradient-stops: var(--tw-gradient-from), #B1336A, var(--tw-gradient-to, rgba(177, 51, 106, 0)) !important;
-}
-
.focus\:via-yellow-50:focus {
--tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important;
}
@@ -8379,18 +8194,6 @@ input[type=text]::placeholder {
--tw-gradient-to: #7f1d1d !important;
}
-.focus\:to-red-light:focus {
- --tw-gradient-to: #EF9C9A !important;
-}
-
-.focus\:to-red:focus {
- --tw-gradient-to: #CE4A3E !important;
-}
-
-.focus\:to-red-dark:focus {
- --tw-gradient-to: #B1336A !important;
-}
-
.focus\:to-yellow-50:focus {
--tw-gradient-to: #fffbeb !important;
}
@@ -9165,21 +8968,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important;
}
-.border-red-light {
- --tw-border-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-border-opacity)) !important;
-}
-
-.border-red {
- --tw-border-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-border-opacity)) !important;
-}
-
-.border-red-dark {
- --tw-border-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-border-opacity)) !important;
-}
-
.border-yellow-50 {
--tw-border-opacity: 1 !important;
border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important;
@@ -9642,21 +9430,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important;
}
-.group:hover .group-hover\:border-red-light {
- --tw-border-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-border-opacity)) !important;
-}
-
-.group:hover .group-hover\:border-red {
- --tw-border-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-border-opacity)) !important;
-}
-
-.group:hover .group-hover\:border-red-dark {
- --tw-border-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-border-opacity)) !important;
-}
-
.group:hover .group-hover\:border-yellow-50 {
--tw-border-opacity: 1 !important;
border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important;
@@ -10119,21 +9892,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important;
}
-.focus-within\:border-red-light:focus-within {
- --tw-border-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-border-opacity)) !important;
-}
-
-.focus-within\:border-red:focus-within {
- --tw-border-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-border-opacity)) !important;
-}
-
-.focus-within\:border-red-dark:focus-within {
- --tw-border-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-border-opacity)) !important;
-}
-
.focus-within\:border-yellow-50:focus-within {
--tw-border-opacity: 1 !important;
border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important;
@@ -10596,21 +10354,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important;
}
-.hover\:border-red-light:hover {
- --tw-border-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-border-opacity)) !important;
-}
-
-.hover\:border-red:hover {
- --tw-border-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-border-opacity)) !important;
-}
-
-.hover\:border-red-dark:hover {
- --tw-border-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-border-opacity)) !important;
-}
-
.hover\:border-yellow-50:hover {
--tw-border-opacity: 1 !important;
border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important;
@@ -11073,21 +10816,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important;
}
-.focus\:border-red-light:focus {
- --tw-border-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-border-opacity)) !important;
-}
-
-.focus\:border-red:focus {
- --tw-border-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-border-opacity)) !important;
-}
-
-.focus\:border-red-dark:focus {
- --tw-border-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-border-opacity)) !important;
-}
-
.focus\:border-yellow-50:focus {
--tw-border-opacity: 1 !important;
border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important;
@@ -17488,66 +17216,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important;
}
-.placeholder-red-light::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
-}
-
-.placeholder-red-light:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
-}
-
-.placeholder-red-light::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
-}
-
-.placeholder-red-light::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
-}
-
-.placeholder-red::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
-}
-
-.placeholder-red:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
-}
-
-.placeholder-red::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
-}
-
-.placeholder-red::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
-}
-
-.placeholder-red-dark::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
-}
-
-.placeholder-red-dark:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
-}
-
-.placeholder-red-dark::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
-}
-
-.placeholder-red-dark::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
-}
-
.placeholder-yellow-50::-webkit-input-placeholder {
--tw-placeholder-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important;
@@ -19396,66 +19064,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important;
}
-.focus\:placeholder-red-light:focus::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
-}
-
-.focus\:placeholder-red-light:focus:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
-}
-
-.focus\:placeholder-red-light:focus::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
-}
-
-.focus\:placeholder-red-light:focus::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
-}
-
-.focus\:placeholder-red:focus::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
-}
-
-.focus\:placeholder-red:focus:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
-}
-
-.focus\:placeholder-red:focus::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
-}
-
-.focus\:placeholder-red:focus::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
-}
-
-.focus\:placeholder-red-dark:focus::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
-}
-
-.focus\:placeholder-red-dark:focus:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
-}
-
-.focus\:placeholder-red-dark:focus::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
-}
-
-.focus\:placeholder-red-dark:focus::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
-}
-
.focus\:placeholder-yellow-50:focus::-webkit-input-placeholder {
--tw-placeholder-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important;
@@ -24591,18 +24199,6 @@ input[type=text]::placeholder {
--tw-ring-offset-color: #7f1d1d !important;
}
-.ring-offset-red-light {
- --tw-ring-offset-color: #EF9C9A !important;
-}
-
-.ring-offset-red {
- --tw-ring-offset-color: #CE4A3E !important;
-}
-
-.ring-offset-red-dark {
- --tw-ring-offset-color: #B1336A !important;
-}
-
.ring-offset-yellow-50 {
--tw-ring-offset-color: #fffbeb !important;
}
@@ -24975,18 +24571,6 @@ input[type=text]::placeholder {
--tw-ring-offset-color: #7f1d1d !important;
}
-.focus-within\:ring-offset-red-light:focus-within {
- --tw-ring-offset-color: #EF9C9A !important;
-}
-
-.focus-within\:ring-offset-red:focus-within {
- --tw-ring-offset-color: #CE4A3E !important;
-}
-
-.focus-within\:ring-offset-red-dark:focus-within {
- --tw-ring-offset-color: #B1336A !important;
-}
-
.focus-within\:ring-offset-yellow-50:focus-within {
--tw-ring-offset-color: #fffbeb !important;
}
@@ -25359,18 +24943,6 @@ input[type=text]::placeholder {
--tw-ring-offset-color: #7f1d1d !important;
}
-.focus\:ring-offset-red-light:focus {
- --tw-ring-offset-color: #EF9C9A !important;
-}
-
-.focus\:ring-offset-red:focus {
- --tw-ring-offset-color: #CE4A3E !important;
-}
-
-.focus\:ring-offset-red-dark:focus {
- --tw-ring-offset-color: #B1336A !important;
-}
-
.focus\:ring-offset-yellow-50:focus {
--tw-ring-offset-color: #fffbeb !important;
}
@@ -25825,21 +25397,6 @@ input[type=text]::placeholder {
--tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important;
}
-.ring-red-light {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(239, 156, 154, var(--tw-ring-opacity)) !important;
-}
-
-.ring-red {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(206, 74, 62, var(--tw-ring-opacity)) !important;
-}
-
-.ring-red-dark {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(177, 51, 106, var(--tw-ring-opacity)) !important;
-}
-
.ring-yellow-50 {
--tw-ring-opacity: 1 !important;
--tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important;
@@ -26302,21 +25859,6 @@ input[type=text]::placeholder {
--tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important;
}
-.focus-within\:ring-red-light:focus-within {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(239, 156, 154, var(--tw-ring-opacity)) !important;
-}
-
-.focus-within\:ring-red:focus-within {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(206, 74, 62, var(--tw-ring-opacity)) !important;
-}
-
-.focus-within\:ring-red-dark:focus-within {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(177, 51, 106, var(--tw-ring-opacity)) !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;
@@ -26779,21 +26321,6 @@ input[type=text]::placeholder {
--tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important;
}
-.focus\:ring-red-light:focus {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(239, 156, 154, var(--tw-ring-opacity)) !important;
-}
-
-.focus\:ring-red:focus {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(206, 74, 62, var(--tw-ring-opacity)) !important;
-}
-
-.focus\:ring-red-dark:focus {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(177, 51, 106, var(--tw-ring-opacity)) !important;
-}
-
.focus\:ring-yellow-50:focus {
--tw-ring-opacity: 1 !important;
--tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important;
@@ -27480,21 +27007,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-text-opacity)) !important;
}
-.text-red-light {
- --tw-text-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-text-opacity)) !important;
-}
-
-.text-red {
- --tw-text-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-text-opacity)) !important;
-}
-
-.text-red-dark {
- --tw-text-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-text-opacity)) !important;
-}
-
.text-yellow-50 {
--tw-text-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-text-opacity)) !important;
@@ -27957,21 +27469,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-text-opacity)) !important;
}
-.group:hover .group-hover\:text-red-light {
- --tw-text-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-text-opacity)) !important;
-}
-
-.group:hover .group-hover\:text-red {
- --tw-text-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-text-opacity)) !important;
-}
-
-.group:hover .group-hover\:text-red-dark {
- --tw-text-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-text-opacity)) !important;
-}
-
.group:hover .group-hover\:text-yellow-50 {
--tw-text-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-text-opacity)) !important;
@@ -28434,21 +27931,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-text-opacity)) !important;
}
-.focus-within\:text-red-light:focus-within {
- --tw-text-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-text-opacity)) !important;
-}
-
-.focus-within\:text-red:focus-within {
- --tw-text-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-text-opacity)) !important;
-}
-
-.focus-within\:text-red-dark:focus-within {
- --tw-text-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-text-opacity)) !important;
-}
-
.focus-within\:text-yellow-50:focus-within {
--tw-text-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-text-opacity)) !important;
@@ -28911,21 +28393,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-text-opacity)) !important;
}
-.hover\:text-red-light:hover {
- --tw-text-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-text-opacity)) !important;
-}
-
-.hover\:text-red:hover {
- --tw-text-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-text-opacity)) !important;
-}
-
-.hover\:text-red-dark:hover {
- --tw-text-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-text-opacity)) !important;
-}
-
.hover\:text-yellow-50:hover {
--tw-text-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-text-opacity)) !important;
@@ -29388,21 +28855,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-text-opacity)) !important;
}
-.focus\:text-red-light:focus {
- --tw-text-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-text-opacity)) !important;
-}
-
-.focus\:text-red:focus {
- --tw-text-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-text-opacity)) !important;
-}
-
-.focus\:text-red-dark:focus {
- --tw-text-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-text-opacity)) !important;
-}
-
.focus\:text-yellow-50:focus {
--tw-text-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-text-opacity)) !important;
@@ -34806,21 +34258,6 @@ input[type=text]::placeholder {
text-decoration-color: #7f1d1d !important;
}
-.underline-red-light {
- -webkit-text-decoration-color: #EF9C9A !important;
- text-decoration-color: #EF9C9A !important;
-}
-
-.underline-red-DEFAULT {
- -webkit-text-decoration-color: #CE4A3E !important;
- text-decoration-color: #CE4A3E !important;
-}
-
-.underline-red-dark {
- -webkit-text-decoration-color: #B1336A !important;
- text-decoration-color: #B1336A !important;
-}
-
.underline-yellow-50 {
-webkit-text-decoration-color: #fffbeb !important;
text-decoration-color: #fffbeb !important;
@@ -36263,21 +35700,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-divide-opacity)) !important;
}
- .sm\:divide-red-light > :not([hidden]) ~ :not([hidden]) {
- --tw-divide-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-divide-opacity)) !important;
- }
-
- .sm\:divide-red > :not([hidden]) ~ :not([hidden]) {
- --tw-divide-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-divide-opacity)) !important;
- }
-
- .sm\:divide-red-dark > :not([hidden]) ~ :not([hidden]) {
- --tw-divide-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-divide-opacity)) !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;
@@ -36924,21 +36346,6 @@ input[type=text]::placeholder {
background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important;
}
- .sm\:bg-red-light {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(239, 156, 154, var(--tw-bg-opacity)) !important;
- }
-
- .sm\:bg-red {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(206, 74, 62, var(--tw-bg-opacity)) !important;
- }
-
- .sm\:bg-red-dark {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(177, 51, 106, var(--tw-bg-opacity)) !important;
- }
-
.sm\:bg-yellow-50 {
--tw-bg-opacity: 1 !important;
background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important;
@@ -37401,21 +36808,6 @@ input[type=text]::placeholder {
background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important;
}
- .group:hover .sm\:group-hover\:bg-red-light {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(239, 156, 154, var(--tw-bg-opacity)) !important;
- }
-
- .group:hover .sm\:group-hover\:bg-red {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(206, 74, 62, var(--tw-bg-opacity)) !important;
- }
-
- .group:hover .sm\:group-hover\:bg-red-dark {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(177, 51, 106, var(--tw-bg-opacity)) !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;
@@ -37878,21 +37270,6 @@ input[type=text]::placeholder {
background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important;
}
- .sm\:focus-within\:bg-red-light:focus-within {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(239, 156, 154, var(--tw-bg-opacity)) !important;
- }
-
- .sm\:focus-within\:bg-red:focus-within {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(206, 74, 62, var(--tw-bg-opacity)) !important;
- }
-
- .sm\:focus-within\:bg-red-dark:focus-within {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(177, 51, 106, var(--tw-bg-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;
@@ -38355,21 +37732,6 @@ input[type=text]::placeholder {
background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important;
}
- .sm\:hover\:bg-red-light:hover {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(239, 156, 154, var(--tw-bg-opacity)) !important;
- }
-
- .sm\:hover\:bg-red:hover {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(206, 74, 62, var(--tw-bg-opacity)) !important;
- }
-
- .sm\:hover\:bg-red-dark:hover {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(177, 51, 106, var(--tw-bg-opacity)) !important;
- }
-
.sm\:hover\:bg-yellow-50:hover {
--tw-bg-opacity: 1 !important;
background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important;
@@ -38832,21 +38194,6 @@ input[type=text]::placeholder {
background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important;
}
- .sm\:focus\:bg-red-light:focus {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(239, 156, 154, var(--tw-bg-opacity)) !important;
- }
-
- .sm\:focus\:bg-red:focus {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(206, 74, 62, var(--tw-bg-opacity)) !important;
- }
-
- .sm\:focus\:bg-red-dark:focus {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(177, 51, 106, var(--tw-bg-opacity)) !important;
- }
-
.sm\:focus\:bg-yellow-50:focus {
--tw-bg-opacity: 1 !important;
background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important;
@@ -39347,21 +38694,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
- .sm\:from-red-light {
- --tw-gradient-from: #EF9C9A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
- }
-
- .sm\:from-red {
- --tw-gradient-from: #CE4A3E !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
- }
-
- .sm\:from-red-dark {
- --tw-gradient-from: #B1336A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 51, 106, 0)) !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;
@@ -39803,18 +39135,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
- .sm\:via-red-light {
- --tw-gradient-stops: var(--tw-gradient-from), #EF9C9A, var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
- }
-
- .sm\:via-red {
- --tw-gradient-stops: var(--tw-gradient-from), #CE4A3E, var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
- }
-
- .sm\:via-red-dark {
- --tw-gradient-stops: var(--tw-gradient-from), #B1336A, var(--tw-gradient-to, rgba(177, 51, 106, 0)) !important;
- }
-
.sm\:via-yellow-50 {
--tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important;
}
@@ -40187,18 +39507,6 @@ input[type=text]::placeholder {
--tw-gradient-to: #7f1d1d !important;
}
- .sm\:to-red-light {
- --tw-gradient-to: #EF9C9A !important;
- }
-
- .sm\:to-red {
- --tw-gradient-to: #CE4A3E !important;
- }
-
- .sm\:to-red-dark {
- --tw-gradient-to: #B1336A !important;
- }
-
.sm\:to-yellow-50 {
--tw-gradient-to: #fffbeb !important;
}
@@ -40595,21 +39903,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
- .sm\:hover\:from-red-light:hover {
- --tw-gradient-from: #EF9C9A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
- }
-
- .sm\:hover\:from-red:hover {
- --tw-gradient-from: #CE4A3E !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
- }
-
- .sm\:hover\:from-red-dark:hover {
- --tw-gradient-from: #B1336A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 51, 106, 0)) !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;
@@ -41051,18 +40344,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
- .sm\:hover\:via-red-light:hover {
- --tw-gradient-stops: var(--tw-gradient-from), #EF9C9A, var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
- }
-
- .sm\:hover\:via-red:hover {
- --tw-gradient-stops: var(--tw-gradient-from), #CE4A3E, var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
- }
-
- .sm\:hover\:via-red-dark:hover {
- --tw-gradient-stops: var(--tw-gradient-from), #B1336A, var(--tw-gradient-to, rgba(177, 51, 106, 0)) !important;
- }
-
.sm\:hover\:via-yellow-50:hover {
--tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important;
}
@@ -41435,18 +40716,6 @@ input[type=text]::placeholder {
--tw-gradient-to: #7f1d1d !important;
}
- .sm\:hover\:to-red-light:hover {
- --tw-gradient-to: #EF9C9A !important;
- }
-
- .sm\:hover\:to-red:hover {
- --tw-gradient-to: #CE4A3E !important;
- }
-
- .sm\:hover\:to-red-dark:hover {
- --tw-gradient-to: #B1336A !important;
- }
-
.sm\:hover\:to-yellow-50:hover {
--tw-gradient-to: #fffbeb !important;
}
@@ -41843,21 +41112,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
- .sm\:focus\:from-red-light:focus {
- --tw-gradient-from: #EF9C9A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
- }
-
- .sm\:focus\:from-red:focus {
- --tw-gradient-from: #CE4A3E !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
- }
-
- .sm\:focus\:from-red-dark:focus {
- --tw-gradient-from: #B1336A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 51, 106, 0)) !important;
- }
-
.sm\:focus\:from-yellow-50:focus {
--tw-gradient-from: #fffbeb !important;
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important;
@@ -42299,18 +41553,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
- .sm\:focus\:via-red-light:focus {
- --tw-gradient-stops: var(--tw-gradient-from), #EF9C9A, var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
- }
-
- .sm\:focus\:via-red:focus {
- --tw-gradient-stops: var(--tw-gradient-from), #CE4A3E, var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
- }
-
- .sm\:focus\:via-red-dark:focus {
- --tw-gradient-stops: var(--tw-gradient-from), #B1336A, var(--tw-gradient-to, rgba(177, 51, 106, 0)) !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;
}
@@ -42683,18 +41925,6 @@ input[type=text]::placeholder {
--tw-gradient-to: #7f1d1d !important;
}
- .sm\:focus\:to-red-light:focus {
- --tw-gradient-to: #EF9C9A !important;
- }
-
- .sm\:focus\:to-red:focus {
- --tw-gradient-to: #CE4A3E !important;
- }
-
- .sm\:focus\:to-red-dark:focus {
- --tw-gradient-to: #B1336A !important;
- }
-
.sm\:focus\:to-yellow-50:focus {
--tw-gradient-to: #fffbeb !important;
}
@@ -43469,21 +42699,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important;
}
- .sm\:border-red-light {
- --tw-border-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-border-opacity)) !important;
- }
-
- .sm\:border-red {
- --tw-border-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-border-opacity)) !important;
- }
-
- .sm\:border-red-dark {
- --tw-border-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-border-opacity)) !important;
- }
-
.sm\:border-yellow-50 {
--tw-border-opacity: 1 !important;
border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important;
@@ -43946,21 +43161,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important;
}
- .group:hover .sm\:group-hover\:border-red-light {
- --tw-border-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-border-opacity)) !important;
- }
-
- .group:hover .sm\:group-hover\:border-red {
- --tw-border-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-border-opacity)) !important;
- }
-
- .group:hover .sm\:group-hover\:border-red-dark {
- --tw-border-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-border-opacity)) !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;
@@ -44423,21 +43623,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important;
}
- .sm\:focus-within\:border-red-light:focus-within {
- --tw-border-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-border-opacity)) !important;
- }
-
- .sm\:focus-within\:border-red:focus-within {
- --tw-border-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-border-opacity)) !important;
- }
-
- .sm\:focus-within\:border-red-dark:focus-within {
- --tw-border-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-border-opacity)) !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;
@@ -44900,21 +44085,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important;
}
- .sm\:hover\:border-red-light:hover {
- --tw-border-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-border-opacity)) !important;
- }
-
- .sm\:hover\:border-red:hover {
- --tw-border-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-border-opacity)) !important;
- }
-
- .sm\:hover\:border-red-dark:hover {
- --tw-border-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-border-opacity)) !important;
- }
-
.sm\:hover\:border-yellow-50:hover {
--tw-border-opacity: 1 !important;
border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important;
@@ -45377,21 +44547,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important;
}
- .sm\:focus\:border-red-light:focus {
- --tw-border-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-border-opacity)) !important;
- }
-
- .sm\:focus\:border-red:focus {
- --tw-border-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-border-opacity)) !important;
- }
-
- .sm\:focus\:border-red-dark:focus {
- --tw-border-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-border-opacity)) !important;
- }
-
.sm\:focus\:border-yellow-50:focus {
--tw-border-opacity: 1 !important;
border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important;
@@ -51792,66 +50947,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important;
}
- .sm\:placeholder-red-light::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .sm\:placeholder-red-light:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .sm\:placeholder-red-light::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .sm\:placeholder-red-light::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .sm\:placeholder-red::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .sm\:placeholder-red:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .sm\:placeholder-red::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .sm\:placeholder-red::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .sm\:placeholder-red-dark::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
- .sm\:placeholder-red-dark:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
- .sm\:placeholder-red-dark::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
- .sm\:placeholder-red-dark::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
.sm\:placeholder-yellow-50::-webkit-input-placeholder {
--tw-placeholder-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important;
@@ -53700,66 +52795,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important;
}
- .sm\:focus\:placeholder-red-light:focus::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .sm\:focus\:placeholder-red-light:focus:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .sm\:focus\:placeholder-red-light:focus::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .sm\:focus\:placeholder-red-light:focus::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .sm\:focus\:placeholder-red:focus::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .sm\:focus\:placeholder-red:focus:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .sm\:focus\:placeholder-red:focus::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .sm\:focus\:placeholder-red:focus::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .sm\:focus\:placeholder-red-dark:focus::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
- .sm\:focus\:placeholder-red-dark:focus:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
- .sm\:focus\:placeholder-red-dark:focus::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
- .sm\:focus\:placeholder-red-dark:focus::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
.sm\:focus\:placeholder-yellow-50:focus::-webkit-input-placeholder {
--tw-placeholder-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important;
@@ -58882,18 +57917,6 @@ input[type=text]::placeholder {
--tw-ring-offset-color: #7f1d1d !important;
}
- .sm\:ring-offset-red-light {
- --tw-ring-offset-color: #EF9C9A !important;
- }
-
- .sm\:ring-offset-red {
- --tw-ring-offset-color: #CE4A3E !important;
- }
-
- .sm\:ring-offset-red-dark {
- --tw-ring-offset-color: #B1336A !important;
- }
-
.sm\:ring-offset-yellow-50 {
--tw-ring-offset-color: #fffbeb !important;
}
@@ -59266,18 +58289,6 @@ input[type=text]::placeholder {
--tw-ring-offset-color: #7f1d1d !important;
}
- .sm\:focus-within\:ring-offset-red-light:focus-within {
- --tw-ring-offset-color: #EF9C9A !important;
- }
-
- .sm\:focus-within\:ring-offset-red:focus-within {
- --tw-ring-offset-color: #CE4A3E !important;
- }
-
- .sm\:focus-within\:ring-offset-red-dark:focus-within {
- --tw-ring-offset-color: #B1336A !important;
- }
-
.sm\:focus-within\:ring-offset-yellow-50:focus-within {
--tw-ring-offset-color: #fffbeb !important;
}
@@ -59650,18 +58661,6 @@ input[type=text]::placeholder {
--tw-ring-offset-color: #7f1d1d !important;
}
- .sm\:focus\:ring-offset-red-light:focus {
- --tw-ring-offset-color: #EF9C9A !important;
- }
-
- .sm\:focus\:ring-offset-red:focus {
- --tw-ring-offset-color: #CE4A3E !important;
- }
-
- .sm\:focus\:ring-offset-red-dark:focus {
- --tw-ring-offset-color: #B1336A !important;
- }
-
.sm\:focus\:ring-offset-yellow-50:focus {
--tw-ring-offset-color: #fffbeb !important;
}
@@ -60116,21 +59115,6 @@ input[type=text]::placeholder {
--tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important;
}
- .sm\:ring-red-light {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(239, 156, 154, var(--tw-ring-opacity)) !important;
- }
-
- .sm\:ring-red {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(206, 74, 62, var(--tw-ring-opacity)) !important;
- }
-
- .sm\:ring-red-dark {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(177, 51, 106, var(--tw-ring-opacity)) !important;
- }
-
.sm\:ring-yellow-50 {
--tw-ring-opacity: 1 !important;
--tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important;
@@ -60593,21 +59577,6 @@ input[type=text]::placeholder {
--tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important;
}
- .sm\:focus-within\:ring-red-light:focus-within {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(239, 156, 154, var(--tw-ring-opacity)) !important;
- }
-
- .sm\:focus-within\:ring-red:focus-within {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(206, 74, 62, var(--tw-ring-opacity)) !important;
- }
-
- .sm\:focus-within\:ring-red-dark:focus-within {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(177, 51, 106, var(--tw-ring-opacity)) !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;
@@ -61070,21 +60039,6 @@ input[type=text]::placeholder {
--tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important;
}
- .sm\:focus\:ring-red-light:focus {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(239, 156, 154, var(--tw-ring-opacity)) !important;
- }
-
- .sm\:focus\:ring-red:focus {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(206, 74, 62, var(--tw-ring-opacity)) !important;
- }
-
- .sm\:focus\:ring-red-dark:focus {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(177, 51, 106, var(--tw-ring-opacity)) !important;
- }
-
.sm\:focus\:ring-yellow-50:focus {
--tw-ring-opacity: 1 !important;
--tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important;
@@ -61771,21 +60725,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-text-opacity)) !important;
}
- .sm\:text-red-light {
- --tw-text-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-text-opacity)) !important;
- }
-
- .sm\:text-red {
- --tw-text-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-text-opacity)) !important;
- }
-
- .sm\:text-red-dark {
- --tw-text-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-text-opacity)) !important;
- }
-
.sm\:text-yellow-50 {
--tw-text-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-text-opacity)) !important;
@@ -62248,21 +61187,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-text-opacity)) !important;
}
- .group:hover .sm\:group-hover\:text-red-light {
- --tw-text-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-text-opacity)) !important;
- }
-
- .group:hover .sm\:group-hover\:text-red {
- --tw-text-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-text-opacity)) !important;
- }
-
- .group:hover .sm\:group-hover\:text-red-dark {
- --tw-text-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-text-opacity)) !important;
- }
-
.group:hover .sm\:group-hover\:text-yellow-50 {
--tw-text-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-text-opacity)) !important;
@@ -62725,21 +61649,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-text-opacity)) !important;
}
- .sm\:focus-within\:text-red-light:focus-within {
- --tw-text-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-text-opacity)) !important;
- }
-
- .sm\:focus-within\:text-red:focus-within {
- --tw-text-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-text-opacity)) !important;
- }
-
- .sm\:focus-within\:text-red-dark:focus-within {
- --tw-text-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-text-opacity)) !important;
- }
-
.sm\:focus-within\:text-yellow-50:focus-within {
--tw-text-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-text-opacity)) !important;
@@ -63202,21 +62111,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-text-opacity)) !important;
}
- .sm\:hover\:text-red-light:hover {
- --tw-text-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-text-opacity)) !important;
- }
-
- .sm\:hover\:text-red:hover {
- --tw-text-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-text-opacity)) !important;
- }
-
- .sm\:hover\:text-red-dark:hover {
- --tw-text-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-text-opacity)) !important;
- }
-
.sm\:hover\:text-yellow-50:hover {
--tw-text-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-text-opacity)) !important;
@@ -63679,21 +62573,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-text-opacity)) !important;
}
- .sm\:focus\:text-red-light:focus {
- --tw-text-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-text-opacity)) !important;
- }
-
- .sm\:focus\:text-red:focus {
- --tw-text-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-text-opacity)) !important;
- }
-
- .sm\:focus\:text-red-dark:focus {
- --tw-text-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-text-opacity)) !important;
- }
-
.sm\:focus\:text-yellow-50:focus {
--tw-text-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-text-opacity)) !important;
@@ -69968,21 +68847,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-divide-opacity)) !important;
}
- .md\:divide-red-light > :not([hidden]) ~ :not([hidden]) {
- --tw-divide-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-divide-opacity)) !important;
- }
-
- .md\:divide-red > :not([hidden]) ~ :not([hidden]) {
- --tw-divide-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-divide-opacity)) !important;
- }
-
- .md\:divide-red-dark > :not([hidden]) ~ :not([hidden]) {
- --tw-divide-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-divide-opacity)) !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;
@@ -70629,21 +69493,6 @@ input[type=text]::placeholder {
background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important;
}
- .md\:bg-red-light {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(239, 156, 154, var(--tw-bg-opacity)) !important;
- }
-
- .md\:bg-red {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(206, 74, 62, var(--tw-bg-opacity)) !important;
- }
-
- .md\:bg-red-dark {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(177, 51, 106, var(--tw-bg-opacity)) !important;
- }
-
.md\:bg-yellow-50 {
--tw-bg-opacity: 1 !important;
background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important;
@@ -71106,21 +69955,6 @@ input[type=text]::placeholder {
background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important;
}
- .group:hover .md\:group-hover\:bg-red-light {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(239, 156, 154, var(--tw-bg-opacity)) !important;
- }
-
- .group:hover .md\:group-hover\:bg-red {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(206, 74, 62, var(--tw-bg-opacity)) !important;
- }
-
- .group:hover .md\:group-hover\:bg-red-dark {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(177, 51, 106, var(--tw-bg-opacity)) !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;
@@ -71583,21 +70417,6 @@ input[type=text]::placeholder {
background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important;
}
- .md\:focus-within\:bg-red-light:focus-within {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(239, 156, 154, var(--tw-bg-opacity)) !important;
- }
-
- .md\:focus-within\:bg-red:focus-within {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(206, 74, 62, var(--tw-bg-opacity)) !important;
- }
-
- .md\:focus-within\:bg-red-dark:focus-within {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(177, 51, 106, var(--tw-bg-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;
@@ -72060,21 +70879,6 @@ input[type=text]::placeholder {
background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important;
}
- .md\:hover\:bg-red-light:hover {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(239, 156, 154, var(--tw-bg-opacity)) !important;
- }
-
- .md\:hover\:bg-red:hover {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(206, 74, 62, var(--tw-bg-opacity)) !important;
- }
-
- .md\:hover\:bg-red-dark:hover {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(177, 51, 106, var(--tw-bg-opacity)) !important;
- }
-
.md\:hover\:bg-yellow-50:hover {
--tw-bg-opacity: 1 !important;
background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important;
@@ -72537,21 +71341,6 @@ input[type=text]::placeholder {
background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important;
}
- .md\:focus\:bg-red-light:focus {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(239, 156, 154, var(--tw-bg-opacity)) !important;
- }
-
- .md\:focus\:bg-red:focus {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(206, 74, 62, var(--tw-bg-opacity)) !important;
- }
-
- .md\:focus\:bg-red-dark:focus {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(177, 51, 106, var(--tw-bg-opacity)) !important;
- }
-
.md\:focus\:bg-yellow-50:focus {
--tw-bg-opacity: 1 !important;
background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important;
@@ -73052,21 +71841,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
- .md\:from-red-light {
- --tw-gradient-from: #EF9C9A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
- }
-
- .md\:from-red {
- --tw-gradient-from: #CE4A3E !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
- }
-
- .md\:from-red-dark {
- --tw-gradient-from: #B1336A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 51, 106, 0)) !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;
@@ -73508,18 +72282,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
- .md\:via-red-light {
- --tw-gradient-stops: var(--tw-gradient-from), #EF9C9A, var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
- }
-
- .md\:via-red {
- --tw-gradient-stops: var(--tw-gradient-from), #CE4A3E, var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
- }
-
- .md\:via-red-dark {
- --tw-gradient-stops: var(--tw-gradient-from), #B1336A, var(--tw-gradient-to, rgba(177, 51, 106, 0)) !important;
- }
-
.md\:via-yellow-50 {
--tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important;
}
@@ -73892,18 +72654,6 @@ input[type=text]::placeholder {
--tw-gradient-to: #7f1d1d !important;
}
- .md\:to-red-light {
- --tw-gradient-to: #EF9C9A !important;
- }
-
- .md\:to-red {
- --tw-gradient-to: #CE4A3E !important;
- }
-
- .md\:to-red-dark {
- --tw-gradient-to: #B1336A !important;
- }
-
.md\:to-yellow-50 {
--tw-gradient-to: #fffbeb !important;
}
@@ -74300,21 +73050,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
- .md\:hover\:from-red-light:hover {
- --tw-gradient-from: #EF9C9A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
- }
-
- .md\:hover\:from-red:hover {
- --tw-gradient-from: #CE4A3E !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
- }
-
- .md\:hover\:from-red-dark:hover {
- --tw-gradient-from: #B1336A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 51, 106, 0)) !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;
@@ -74756,18 +73491,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
- .md\:hover\:via-red-light:hover {
- --tw-gradient-stops: var(--tw-gradient-from), #EF9C9A, var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
- }
-
- .md\:hover\:via-red:hover {
- --tw-gradient-stops: var(--tw-gradient-from), #CE4A3E, var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
- }
-
- .md\:hover\:via-red-dark:hover {
- --tw-gradient-stops: var(--tw-gradient-from), #B1336A, var(--tw-gradient-to, rgba(177, 51, 106, 0)) !important;
- }
-
.md\:hover\:via-yellow-50:hover {
--tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important;
}
@@ -75140,18 +73863,6 @@ input[type=text]::placeholder {
--tw-gradient-to: #7f1d1d !important;
}
- .md\:hover\:to-red-light:hover {
- --tw-gradient-to: #EF9C9A !important;
- }
-
- .md\:hover\:to-red:hover {
- --tw-gradient-to: #CE4A3E !important;
- }
-
- .md\:hover\:to-red-dark:hover {
- --tw-gradient-to: #B1336A !important;
- }
-
.md\:hover\:to-yellow-50:hover {
--tw-gradient-to: #fffbeb !important;
}
@@ -75548,21 +74259,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
- .md\:focus\:from-red-light:focus {
- --tw-gradient-from: #EF9C9A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
- }
-
- .md\:focus\:from-red:focus {
- --tw-gradient-from: #CE4A3E !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
- }
-
- .md\:focus\:from-red-dark:focus {
- --tw-gradient-from: #B1336A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 51, 106, 0)) !important;
- }
-
.md\:focus\:from-yellow-50:focus {
--tw-gradient-from: #fffbeb !important;
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important;
@@ -76004,18 +74700,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
- .md\:focus\:via-red-light:focus {
- --tw-gradient-stops: var(--tw-gradient-from), #EF9C9A, var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
- }
-
- .md\:focus\:via-red:focus {
- --tw-gradient-stops: var(--tw-gradient-from), #CE4A3E, var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
- }
-
- .md\:focus\:via-red-dark:focus {
- --tw-gradient-stops: var(--tw-gradient-from), #B1336A, var(--tw-gradient-to, rgba(177, 51, 106, 0)) !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;
}
@@ -76388,18 +75072,6 @@ input[type=text]::placeholder {
--tw-gradient-to: #7f1d1d !important;
}
- .md\:focus\:to-red-light:focus {
- --tw-gradient-to: #EF9C9A !important;
- }
-
- .md\:focus\:to-red:focus {
- --tw-gradient-to: #CE4A3E !important;
- }
-
- .md\:focus\:to-red-dark:focus {
- --tw-gradient-to: #B1336A !important;
- }
-
.md\:focus\:to-yellow-50:focus {
--tw-gradient-to: #fffbeb !important;
}
@@ -77174,21 +75846,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important;
}
- .md\:border-red-light {
- --tw-border-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-border-opacity)) !important;
- }
-
- .md\:border-red {
- --tw-border-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-border-opacity)) !important;
- }
-
- .md\:border-red-dark {
- --tw-border-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-border-opacity)) !important;
- }
-
.md\:border-yellow-50 {
--tw-border-opacity: 1 !important;
border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important;
@@ -77651,21 +76308,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important;
}
- .group:hover .md\:group-hover\:border-red-light {
- --tw-border-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-border-opacity)) !important;
- }
-
- .group:hover .md\:group-hover\:border-red {
- --tw-border-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-border-opacity)) !important;
- }
-
- .group:hover .md\:group-hover\:border-red-dark {
- --tw-border-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-border-opacity)) !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;
@@ -78128,21 +76770,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important;
}
- .md\:focus-within\:border-red-light:focus-within {
- --tw-border-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-border-opacity)) !important;
- }
-
- .md\:focus-within\:border-red:focus-within {
- --tw-border-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-border-opacity)) !important;
- }
-
- .md\:focus-within\:border-red-dark:focus-within {
- --tw-border-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-border-opacity)) !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;
@@ -78605,21 +77232,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important;
}
- .md\:hover\:border-red-light:hover {
- --tw-border-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-border-opacity)) !important;
- }
-
- .md\:hover\:border-red:hover {
- --tw-border-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-border-opacity)) !important;
- }
-
- .md\:hover\:border-red-dark:hover {
- --tw-border-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-border-opacity)) !important;
- }
-
.md\:hover\:border-yellow-50:hover {
--tw-border-opacity: 1 !important;
border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important;
@@ -79082,21 +77694,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important;
}
- .md\:focus\:border-red-light:focus {
- --tw-border-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-border-opacity)) !important;
- }
-
- .md\:focus\:border-red:focus {
- --tw-border-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-border-opacity)) !important;
- }
-
- .md\:focus\:border-red-dark:focus {
- --tw-border-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-border-opacity)) !important;
- }
-
.md\:focus\:border-yellow-50:focus {
--tw-border-opacity: 1 !important;
border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important;
@@ -85497,66 +84094,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important;
}
- .md\:placeholder-red-light::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .md\:placeholder-red-light:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .md\:placeholder-red-light::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .md\:placeholder-red-light::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .md\:placeholder-red::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .md\:placeholder-red:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .md\:placeholder-red::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .md\:placeholder-red::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .md\:placeholder-red-dark::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
- .md\:placeholder-red-dark:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
- .md\:placeholder-red-dark::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
- .md\:placeholder-red-dark::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
.md\:placeholder-yellow-50::-webkit-input-placeholder {
--tw-placeholder-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important;
@@ -87405,66 +85942,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important;
}
- .md\:focus\:placeholder-red-light:focus::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .md\:focus\:placeholder-red-light:focus:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .md\:focus\:placeholder-red-light:focus::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .md\:focus\:placeholder-red-light:focus::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .md\:focus\:placeholder-red:focus::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .md\:focus\:placeholder-red:focus:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .md\:focus\:placeholder-red:focus::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .md\:focus\:placeholder-red:focus::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .md\:focus\:placeholder-red-dark:focus::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
- .md\:focus\:placeholder-red-dark:focus:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
- .md\:focus\:placeholder-red-dark:focus::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
- .md\:focus\:placeholder-red-dark:focus::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
.md\:focus\:placeholder-yellow-50:focus::-webkit-input-placeholder {
--tw-placeholder-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important;
@@ -92587,18 +91064,6 @@ input[type=text]::placeholder {
--tw-ring-offset-color: #7f1d1d !important;
}
- .md\:ring-offset-red-light {
- --tw-ring-offset-color: #EF9C9A !important;
- }
-
- .md\:ring-offset-red {
- --tw-ring-offset-color: #CE4A3E !important;
- }
-
- .md\:ring-offset-red-dark {
- --tw-ring-offset-color: #B1336A !important;
- }
-
.md\:ring-offset-yellow-50 {
--tw-ring-offset-color: #fffbeb !important;
}
@@ -92971,18 +91436,6 @@ input[type=text]::placeholder {
--tw-ring-offset-color: #7f1d1d !important;
}
- .md\:focus-within\:ring-offset-red-light:focus-within {
- --tw-ring-offset-color: #EF9C9A !important;
- }
-
- .md\:focus-within\:ring-offset-red:focus-within {
- --tw-ring-offset-color: #CE4A3E !important;
- }
-
- .md\:focus-within\:ring-offset-red-dark:focus-within {
- --tw-ring-offset-color: #B1336A !important;
- }
-
.md\:focus-within\:ring-offset-yellow-50:focus-within {
--tw-ring-offset-color: #fffbeb !important;
}
@@ -93355,18 +91808,6 @@ input[type=text]::placeholder {
--tw-ring-offset-color: #7f1d1d !important;
}
- .md\:focus\:ring-offset-red-light:focus {
- --tw-ring-offset-color: #EF9C9A !important;
- }
-
- .md\:focus\:ring-offset-red:focus {
- --tw-ring-offset-color: #CE4A3E !important;
- }
-
- .md\:focus\:ring-offset-red-dark:focus {
- --tw-ring-offset-color: #B1336A !important;
- }
-
.md\:focus\:ring-offset-yellow-50:focus {
--tw-ring-offset-color: #fffbeb !important;
}
@@ -93821,21 +92262,6 @@ input[type=text]::placeholder {
--tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important;
}
- .md\:ring-red-light {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(239, 156, 154, var(--tw-ring-opacity)) !important;
- }
-
- .md\:ring-red {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(206, 74, 62, var(--tw-ring-opacity)) !important;
- }
-
- .md\:ring-red-dark {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(177, 51, 106, var(--tw-ring-opacity)) !important;
- }
-
.md\:ring-yellow-50 {
--tw-ring-opacity: 1 !important;
--tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important;
@@ -94298,21 +92724,6 @@ input[type=text]::placeholder {
--tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important;
}
- .md\:focus-within\:ring-red-light:focus-within {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(239, 156, 154, var(--tw-ring-opacity)) !important;
- }
-
- .md\:focus-within\:ring-red:focus-within {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(206, 74, 62, var(--tw-ring-opacity)) !important;
- }
-
- .md\:focus-within\:ring-red-dark:focus-within {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(177, 51, 106, var(--tw-ring-opacity)) !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;
@@ -94775,21 +93186,6 @@ input[type=text]::placeholder {
--tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important;
}
- .md\:focus\:ring-red-light:focus {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(239, 156, 154, var(--tw-ring-opacity)) !important;
- }
-
- .md\:focus\:ring-red:focus {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(206, 74, 62, var(--tw-ring-opacity)) !important;
- }
-
- .md\:focus\:ring-red-dark:focus {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(177, 51, 106, var(--tw-ring-opacity)) !important;
- }
-
.md\:focus\:ring-yellow-50:focus {
--tw-ring-opacity: 1 !important;
--tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important;
@@ -95476,21 +93872,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-text-opacity)) !important;
}
- .md\:text-red-light {
- --tw-text-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-text-opacity)) !important;
- }
-
- .md\:text-red {
- --tw-text-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-text-opacity)) !important;
- }
-
- .md\:text-red-dark {
- --tw-text-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-text-opacity)) !important;
- }
-
.md\:text-yellow-50 {
--tw-text-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-text-opacity)) !important;
@@ -95953,21 +94334,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-text-opacity)) !important;
}
- .group:hover .md\:group-hover\:text-red-light {
- --tw-text-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-text-opacity)) !important;
- }
-
- .group:hover .md\:group-hover\:text-red {
- --tw-text-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-text-opacity)) !important;
- }
-
- .group:hover .md\:group-hover\:text-red-dark {
- --tw-text-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-text-opacity)) !important;
- }
-
.group:hover .md\:group-hover\:text-yellow-50 {
--tw-text-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-text-opacity)) !important;
@@ -96430,21 +94796,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-text-opacity)) !important;
}
- .md\:focus-within\:text-red-light:focus-within {
- --tw-text-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-text-opacity)) !important;
- }
-
- .md\:focus-within\:text-red:focus-within {
- --tw-text-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-text-opacity)) !important;
- }
-
- .md\:focus-within\:text-red-dark:focus-within {
- --tw-text-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-text-opacity)) !important;
- }
-
.md\:focus-within\:text-yellow-50:focus-within {
--tw-text-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-text-opacity)) !important;
@@ -96907,21 +95258,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-text-opacity)) !important;
}
- .md\:hover\:text-red-light:hover {
- --tw-text-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-text-opacity)) !important;
- }
-
- .md\:hover\:text-red:hover {
- --tw-text-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-text-opacity)) !important;
- }
-
- .md\:hover\:text-red-dark:hover {
- --tw-text-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-text-opacity)) !important;
- }
-
.md\:hover\:text-yellow-50:hover {
--tw-text-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-text-opacity)) !important;
@@ -97384,21 +95720,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-text-opacity)) !important;
}
- .md\:focus\:text-red-light:focus {
- --tw-text-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-text-opacity)) !important;
- }
-
- .md\:focus\:text-red:focus {
- --tw-text-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-text-opacity)) !important;
- }
-
- .md\:focus\:text-red-dark:focus {
- --tw-text-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-text-opacity)) !important;
- }
-
.md\:focus\:text-yellow-50:focus {
--tw-text-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-text-opacity)) !important;
@@ -103673,21 +101994,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-divide-opacity)) !important;
}
- .lg\:divide-red-light > :not([hidden]) ~ :not([hidden]) {
- --tw-divide-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-divide-opacity)) !important;
- }
-
- .lg\:divide-red > :not([hidden]) ~ :not([hidden]) {
- --tw-divide-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-divide-opacity)) !important;
- }
-
- .lg\:divide-red-dark > :not([hidden]) ~ :not([hidden]) {
- --tw-divide-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-divide-opacity)) !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;
@@ -104334,21 +102640,6 @@ input[type=text]::placeholder {
background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important;
}
- .lg\:bg-red-light {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(239, 156, 154, var(--tw-bg-opacity)) !important;
- }
-
- .lg\:bg-red {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(206, 74, 62, var(--tw-bg-opacity)) !important;
- }
-
- .lg\:bg-red-dark {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(177, 51, 106, var(--tw-bg-opacity)) !important;
- }
-
.lg\:bg-yellow-50 {
--tw-bg-opacity: 1 !important;
background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important;
@@ -104811,21 +103102,6 @@ input[type=text]::placeholder {
background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important;
}
- .group:hover .lg\:group-hover\:bg-red-light {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(239, 156, 154, var(--tw-bg-opacity)) !important;
- }
-
- .group:hover .lg\:group-hover\:bg-red {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(206, 74, 62, var(--tw-bg-opacity)) !important;
- }
-
- .group:hover .lg\:group-hover\:bg-red-dark {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(177, 51, 106, var(--tw-bg-opacity)) !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;
@@ -105288,21 +103564,6 @@ input[type=text]::placeholder {
background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important;
}
- .lg\:focus-within\:bg-red-light:focus-within {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(239, 156, 154, var(--tw-bg-opacity)) !important;
- }
-
- .lg\:focus-within\:bg-red:focus-within {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(206, 74, 62, var(--tw-bg-opacity)) !important;
- }
-
- .lg\:focus-within\:bg-red-dark:focus-within {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(177, 51, 106, var(--tw-bg-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;
@@ -105765,21 +104026,6 @@ input[type=text]::placeholder {
background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important;
}
- .lg\:hover\:bg-red-light:hover {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(239, 156, 154, var(--tw-bg-opacity)) !important;
- }
-
- .lg\:hover\:bg-red:hover {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(206, 74, 62, var(--tw-bg-opacity)) !important;
- }
-
- .lg\:hover\:bg-red-dark:hover {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(177, 51, 106, var(--tw-bg-opacity)) !important;
- }
-
.lg\:hover\:bg-yellow-50:hover {
--tw-bg-opacity: 1 !important;
background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important;
@@ -106242,21 +104488,6 @@ input[type=text]::placeholder {
background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important;
}
- .lg\:focus\:bg-red-light:focus {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(239, 156, 154, var(--tw-bg-opacity)) !important;
- }
-
- .lg\:focus\:bg-red:focus {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(206, 74, 62, var(--tw-bg-opacity)) !important;
- }
-
- .lg\:focus\:bg-red-dark:focus {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(177, 51, 106, var(--tw-bg-opacity)) !important;
- }
-
.lg\:focus\:bg-yellow-50:focus {
--tw-bg-opacity: 1 !important;
background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important;
@@ -106757,21 +104988,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
- .lg\:from-red-light {
- --tw-gradient-from: #EF9C9A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
- }
-
- .lg\:from-red {
- --tw-gradient-from: #CE4A3E !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
- }
-
- .lg\:from-red-dark {
- --tw-gradient-from: #B1336A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 51, 106, 0)) !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;
@@ -107213,18 +105429,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
- .lg\:via-red-light {
- --tw-gradient-stops: var(--tw-gradient-from), #EF9C9A, var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
- }
-
- .lg\:via-red {
- --tw-gradient-stops: var(--tw-gradient-from), #CE4A3E, var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
- }
-
- .lg\:via-red-dark {
- --tw-gradient-stops: var(--tw-gradient-from), #B1336A, var(--tw-gradient-to, rgba(177, 51, 106, 0)) !important;
- }
-
.lg\:via-yellow-50 {
--tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important;
}
@@ -107597,18 +105801,6 @@ input[type=text]::placeholder {
--tw-gradient-to: #7f1d1d !important;
}
- .lg\:to-red-light {
- --tw-gradient-to: #EF9C9A !important;
- }
-
- .lg\:to-red {
- --tw-gradient-to: #CE4A3E !important;
- }
-
- .lg\:to-red-dark {
- --tw-gradient-to: #B1336A !important;
- }
-
.lg\:to-yellow-50 {
--tw-gradient-to: #fffbeb !important;
}
@@ -108005,21 +106197,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
- .lg\:hover\:from-red-light:hover {
- --tw-gradient-from: #EF9C9A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
- }
-
- .lg\:hover\:from-red:hover {
- --tw-gradient-from: #CE4A3E !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
- }
-
- .lg\:hover\:from-red-dark:hover {
- --tw-gradient-from: #B1336A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 51, 106, 0)) !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;
@@ -108461,18 +106638,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
- .lg\:hover\:via-red-light:hover {
- --tw-gradient-stops: var(--tw-gradient-from), #EF9C9A, var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
- }
-
- .lg\:hover\:via-red:hover {
- --tw-gradient-stops: var(--tw-gradient-from), #CE4A3E, var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
- }
-
- .lg\:hover\:via-red-dark:hover {
- --tw-gradient-stops: var(--tw-gradient-from), #B1336A, var(--tw-gradient-to, rgba(177, 51, 106, 0)) !important;
- }
-
.lg\:hover\:via-yellow-50:hover {
--tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important;
}
@@ -108845,18 +107010,6 @@ input[type=text]::placeholder {
--tw-gradient-to: #7f1d1d !important;
}
- .lg\:hover\:to-red-light:hover {
- --tw-gradient-to: #EF9C9A !important;
- }
-
- .lg\:hover\:to-red:hover {
- --tw-gradient-to: #CE4A3E !important;
- }
-
- .lg\:hover\:to-red-dark:hover {
- --tw-gradient-to: #B1336A !important;
- }
-
.lg\:hover\:to-yellow-50:hover {
--tw-gradient-to: #fffbeb !important;
}
@@ -109253,21 +107406,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
- .lg\:focus\:from-red-light:focus {
- --tw-gradient-from: #EF9C9A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
- }
-
- .lg\:focus\:from-red:focus {
- --tw-gradient-from: #CE4A3E !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
- }
-
- .lg\:focus\:from-red-dark:focus {
- --tw-gradient-from: #B1336A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 51, 106, 0)) !important;
- }
-
.lg\:focus\:from-yellow-50:focus {
--tw-gradient-from: #fffbeb !important;
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important;
@@ -109709,18 +107847,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
- .lg\:focus\:via-red-light:focus {
- --tw-gradient-stops: var(--tw-gradient-from), #EF9C9A, var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
- }
-
- .lg\:focus\:via-red:focus {
- --tw-gradient-stops: var(--tw-gradient-from), #CE4A3E, var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
- }
-
- .lg\:focus\:via-red-dark:focus {
- --tw-gradient-stops: var(--tw-gradient-from), #B1336A, var(--tw-gradient-to, rgba(177, 51, 106, 0)) !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;
}
@@ -110093,18 +108219,6 @@ input[type=text]::placeholder {
--tw-gradient-to: #7f1d1d !important;
}
- .lg\:focus\:to-red-light:focus {
- --tw-gradient-to: #EF9C9A !important;
- }
-
- .lg\:focus\:to-red:focus {
- --tw-gradient-to: #CE4A3E !important;
- }
-
- .lg\:focus\:to-red-dark:focus {
- --tw-gradient-to: #B1336A !important;
- }
-
.lg\:focus\:to-yellow-50:focus {
--tw-gradient-to: #fffbeb !important;
}
@@ -110879,21 +108993,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important;
}
- .lg\:border-red-light {
- --tw-border-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-border-opacity)) !important;
- }
-
- .lg\:border-red {
- --tw-border-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-border-opacity)) !important;
- }
-
- .lg\:border-red-dark {
- --tw-border-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-border-opacity)) !important;
- }
-
.lg\:border-yellow-50 {
--tw-border-opacity: 1 !important;
border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important;
@@ -111356,21 +109455,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important;
}
- .group:hover .lg\:group-hover\:border-red-light {
- --tw-border-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-border-opacity)) !important;
- }
-
- .group:hover .lg\:group-hover\:border-red {
- --tw-border-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-border-opacity)) !important;
- }
-
- .group:hover .lg\:group-hover\:border-red-dark {
- --tw-border-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-border-opacity)) !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;
@@ -111833,21 +109917,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important;
}
- .lg\:focus-within\:border-red-light:focus-within {
- --tw-border-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-border-opacity)) !important;
- }
-
- .lg\:focus-within\:border-red:focus-within {
- --tw-border-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-border-opacity)) !important;
- }
-
- .lg\:focus-within\:border-red-dark:focus-within {
- --tw-border-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-border-opacity)) !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;
@@ -112310,21 +110379,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important;
}
- .lg\:hover\:border-red-light:hover {
- --tw-border-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-border-opacity)) !important;
- }
-
- .lg\:hover\:border-red:hover {
- --tw-border-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-border-opacity)) !important;
- }
-
- .lg\:hover\:border-red-dark:hover {
- --tw-border-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-border-opacity)) !important;
- }
-
.lg\:hover\:border-yellow-50:hover {
--tw-border-opacity: 1 !important;
border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important;
@@ -112787,21 +110841,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important;
}
- .lg\:focus\:border-red-light:focus {
- --tw-border-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-border-opacity)) !important;
- }
-
- .lg\:focus\:border-red:focus {
- --tw-border-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-border-opacity)) !important;
- }
-
- .lg\:focus\:border-red-dark:focus {
- --tw-border-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-border-opacity)) !important;
- }
-
.lg\:focus\:border-yellow-50:focus {
--tw-border-opacity: 1 !important;
border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important;
@@ -119202,66 +117241,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important;
}
- .lg\:placeholder-red-light::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .lg\:placeholder-red-light:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .lg\:placeholder-red-light::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .lg\:placeholder-red-light::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .lg\:placeholder-red::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .lg\:placeholder-red:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .lg\:placeholder-red::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .lg\:placeholder-red::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .lg\:placeholder-red-dark::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
- .lg\:placeholder-red-dark:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
- .lg\:placeholder-red-dark::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
- .lg\:placeholder-red-dark::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
.lg\:placeholder-yellow-50::-webkit-input-placeholder {
--tw-placeholder-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important;
@@ -121110,66 +119089,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important;
}
- .lg\:focus\:placeholder-red-light:focus::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .lg\:focus\:placeholder-red-light:focus:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .lg\:focus\:placeholder-red-light:focus::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .lg\:focus\:placeholder-red-light:focus::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .lg\:focus\:placeholder-red:focus::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .lg\:focus\:placeholder-red:focus:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .lg\:focus\:placeholder-red:focus::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .lg\:focus\:placeholder-red:focus::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .lg\:focus\:placeholder-red-dark:focus::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
- .lg\:focus\:placeholder-red-dark:focus:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
- .lg\:focus\:placeholder-red-dark:focus::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
- .lg\:focus\:placeholder-red-dark:focus::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
.lg\:focus\:placeholder-yellow-50:focus::-webkit-input-placeholder {
--tw-placeholder-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important;
@@ -126292,18 +124211,6 @@ input[type=text]::placeholder {
--tw-ring-offset-color: #7f1d1d !important;
}
- .lg\:ring-offset-red-light {
- --tw-ring-offset-color: #EF9C9A !important;
- }
-
- .lg\:ring-offset-red {
- --tw-ring-offset-color: #CE4A3E !important;
- }
-
- .lg\:ring-offset-red-dark {
- --tw-ring-offset-color: #B1336A !important;
- }
-
.lg\:ring-offset-yellow-50 {
--tw-ring-offset-color: #fffbeb !important;
}
@@ -126676,18 +124583,6 @@ input[type=text]::placeholder {
--tw-ring-offset-color: #7f1d1d !important;
}
- .lg\:focus-within\:ring-offset-red-light:focus-within {
- --tw-ring-offset-color: #EF9C9A !important;
- }
-
- .lg\:focus-within\:ring-offset-red:focus-within {
- --tw-ring-offset-color: #CE4A3E !important;
- }
-
- .lg\:focus-within\:ring-offset-red-dark:focus-within {
- --tw-ring-offset-color: #B1336A !important;
- }
-
.lg\:focus-within\:ring-offset-yellow-50:focus-within {
--tw-ring-offset-color: #fffbeb !important;
}
@@ -127060,18 +124955,6 @@ input[type=text]::placeholder {
--tw-ring-offset-color: #7f1d1d !important;
}
- .lg\:focus\:ring-offset-red-light:focus {
- --tw-ring-offset-color: #EF9C9A !important;
- }
-
- .lg\:focus\:ring-offset-red:focus {
- --tw-ring-offset-color: #CE4A3E !important;
- }
-
- .lg\:focus\:ring-offset-red-dark:focus {
- --tw-ring-offset-color: #B1336A !important;
- }
-
.lg\:focus\:ring-offset-yellow-50:focus {
--tw-ring-offset-color: #fffbeb !important;
}
@@ -127526,21 +125409,6 @@ input[type=text]::placeholder {
--tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important;
}
- .lg\:ring-red-light {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(239, 156, 154, var(--tw-ring-opacity)) !important;
- }
-
- .lg\:ring-red {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(206, 74, 62, var(--tw-ring-opacity)) !important;
- }
-
- .lg\:ring-red-dark {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(177, 51, 106, var(--tw-ring-opacity)) !important;
- }
-
.lg\:ring-yellow-50 {
--tw-ring-opacity: 1 !important;
--tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important;
@@ -128003,21 +125871,6 @@ input[type=text]::placeholder {
--tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important;
}
- .lg\:focus-within\:ring-red-light:focus-within {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(239, 156, 154, var(--tw-ring-opacity)) !important;
- }
-
- .lg\:focus-within\:ring-red:focus-within {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(206, 74, 62, var(--tw-ring-opacity)) !important;
- }
-
- .lg\:focus-within\:ring-red-dark:focus-within {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(177, 51, 106, var(--tw-ring-opacity)) !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;
@@ -128480,21 +126333,6 @@ input[type=text]::placeholder {
--tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important;
}
- .lg\:focus\:ring-red-light:focus {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(239, 156, 154, var(--tw-ring-opacity)) !important;
- }
-
- .lg\:focus\:ring-red:focus {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(206, 74, 62, var(--tw-ring-opacity)) !important;
- }
-
- .lg\:focus\:ring-red-dark:focus {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(177, 51, 106, var(--tw-ring-opacity)) !important;
- }
-
.lg\:focus\:ring-yellow-50:focus {
--tw-ring-opacity: 1 !important;
--tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important;
@@ -129181,21 +127019,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-text-opacity)) !important;
}
- .lg\:text-red-light {
- --tw-text-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-text-opacity)) !important;
- }
-
- .lg\:text-red {
- --tw-text-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-text-opacity)) !important;
- }
-
- .lg\:text-red-dark {
- --tw-text-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-text-opacity)) !important;
- }
-
.lg\:text-yellow-50 {
--tw-text-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-text-opacity)) !important;
@@ -129658,21 +127481,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-text-opacity)) !important;
}
- .group:hover .lg\:group-hover\:text-red-light {
- --tw-text-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-text-opacity)) !important;
- }
-
- .group:hover .lg\:group-hover\:text-red {
- --tw-text-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-text-opacity)) !important;
- }
-
- .group:hover .lg\:group-hover\:text-red-dark {
- --tw-text-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-text-opacity)) !important;
- }
-
.group:hover .lg\:group-hover\:text-yellow-50 {
--tw-text-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-text-opacity)) !important;
@@ -130135,21 +127943,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-text-opacity)) !important;
}
- .lg\:focus-within\:text-red-light:focus-within {
- --tw-text-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-text-opacity)) !important;
- }
-
- .lg\:focus-within\:text-red:focus-within {
- --tw-text-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-text-opacity)) !important;
- }
-
- .lg\:focus-within\:text-red-dark:focus-within {
- --tw-text-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-text-opacity)) !important;
- }
-
.lg\:focus-within\:text-yellow-50:focus-within {
--tw-text-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-text-opacity)) !important;
@@ -130612,21 +128405,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-text-opacity)) !important;
}
- .lg\:hover\:text-red-light:hover {
- --tw-text-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-text-opacity)) !important;
- }
-
- .lg\:hover\:text-red:hover {
- --tw-text-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-text-opacity)) !important;
- }
-
- .lg\:hover\:text-red-dark:hover {
- --tw-text-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-text-opacity)) !important;
- }
-
.lg\:hover\:text-yellow-50:hover {
--tw-text-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-text-opacity)) !important;
@@ -131089,21 +128867,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-text-opacity)) !important;
}
- .lg\:focus\:text-red-light:focus {
- --tw-text-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-text-opacity)) !important;
- }
-
- .lg\:focus\:text-red:focus {
- --tw-text-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-text-opacity)) !important;
- }
-
- .lg\:focus\:text-red-dark:focus {
- --tw-text-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-text-opacity)) !important;
- }
-
.lg\:focus\:text-yellow-50:focus {
--tw-text-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-text-opacity)) !important;
@@ -137378,21 +135141,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-divide-opacity)) !important;
}
- .xl\:divide-red-light > :not([hidden]) ~ :not([hidden]) {
- --tw-divide-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-divide-opacity)) !important;
- }
-
- .xl\:divide-red > :not([hidden]) ~ :not([hidden]) {
- --tw-divide-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-divide-opacity)) !important;
- }
-
- .xl\:divide-red-dark > :not([hidden]) ~ :not([hidden]) {
- --tw-divide-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-divide-opacity)) !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;
@@ -138039,21 +135787,6 @@ input[type=text]::placeholder {
background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important;
}
- .xl\:bg-red-light {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(239, 156, 154, var(--tw-bg-opacity)) !important;
- }
-
- .xl\:bg-red {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(206, 74, 62, var(--tw-bg-opacity)) !important;
- }
-
- .xl\:bg-red-dark {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(177, 51, 106, var(--tw-bg-opacity)) !important;
- }
-
.xl\:bg-yellow-50 {
--tw-bg-opacity: 1 !important;
background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important;
@@ -138516,21 +136249,6 @@ input[type=text]::placeholder {
background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important;
}
- .group:hover .xl\:group-hover\:bg-red-light {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(239, 156, 154, var(--tw-bg-opacity)) !important;
- }
-
- .group:hover .xl\:group-hover\:bg-red {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(206, 74, 62, var(--tw-bg-opacity)) !important;
- }
-
- .group:hover .xl\:group-hover\:bg-red-dark {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(177, 51, 106, var(--tw-bg-opacity)) !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;
@@ -138993,21 +136711,6 @@ input[type=text]::placeholder {
background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important;
}
- .xl\:focus-within\:bg-red-light:focus-within {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(239, 156, 154, var(--tw-bg-opacity)) !important;
- }
-
- .xl\:focus-within\:bg-red:focus-within {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(206, 74, 62, var(--tw-bg-opacity)) !important;
- }
-
- .xl\:focus-within\:bg-red-dark:focus-within {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(177, 51, 106, var(--tw-bg-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;
@@ -139470,21 +137173,6 @@ input[type=text]::placeholder {
background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important;
}
- .xl\:hover\:bg-red-light:hover {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(239, 156, 154, var(--tw-bg-opacity)) !important;
- }
-
- .xl\:hover\:bg-red:hover {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(206, 74, 62, var(--tw-bg-opacity)) !important;
- }
-
- .xl\:hover\:bg-red-dark:hover {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(177, 51, 106, var(--tw-bg-opacity)) !important;
- }
-
.xl\:hover\:bg-yellow-50:hover {
--tw-bg-opacity: 1 !important;
background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important;
@@ -139947,21 +137635,6 @@ input[type=text]::placeholder {
background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important;
}
- .xl\:focus\:bg-red-light:focus {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(239, 156, 154, var(--tw-bg-opacity)) !important;
- }
-
- .xl\:focus\:bg-red:focus {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(206, 74, 62, var(--tw-bg-opacity)) !important;
- }
-
- .xl\:focus\:bg-red-dark:focus {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(177, 51, 106, var(--tw-bg-opacity)) !important;
- }
-
.xl\:focus\:bg-yellow-50:focus {
--tw-bg-opacity: 1 !important;
background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important;
@@ -140462,21 +138135,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
- .xl\:from-red-light {
- --tw-gradient-from: #EF9C9A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
- }
-
- .xl\:from-red {
- --tw-gradient-from: #CE4A3E !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
- }
-
- .xl\:from-red-dark {
- --tw-gradient-from: #B1336A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 51, 106, 0)) !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;
@@ -140918,18 +138576,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
- .xl\:via-red-light {
- --tw-gradient-stops: var(--tw-gradient-from), #EF9C9A, var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
- }
-
- .xl\:via-red {
- --tw-gradient-stops: var(--tw-gradient-from), #CE4A3E, var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
- }
-
- .xl\:via-red-dark {
- --tw-gradient-stops: var(--tw-gradient-from), #B1336A, var(--tw-gradient-to, rgba(177, 51, 106, 0)) !important;
- }
-
.xl\:via-yellow-50 {
--tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important;
}
@@ -141302,18 +138948,6 @@ input[type=text]::placeholder {
--tw-gradient-to: #7f1d1d !important;
}
- .xl\:to-red-light {
- --tw-gradient-to: #EF9C9A !important;
- }
-
- .xl\:to-red {
- --tw-gradient-to: #CE4A3E !important;
- }
-
- .xl\:to-red-dark {
- --tw-gradient-to: #B1336A !important;
- }
-
.xl\:to-yellow-50 {
--tw-gradient-to: #fffbeb !important;
}
@@ -141710,21 +139344,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
- .xl\:hover\:from-red-light:hover {
- --tw-gradient-from: #EF9C9A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
- }
-
- .xl\:hover\:from-red:hover {
- --tw-gradient-from: #CE4A3E !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
- }
-
- .xl\:hover\:from-red-dark:hover {
- --tw-gradient-from: #B1336A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 51, 106, 0)) !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;
@@ -142166,18 +139785,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
- .xl\:hover\:via-red-light:hover {
- --tw-gradient-stops: var(--tw-gradient-from), #EF9C9A, var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
- }
-
- .xl\:hover\:via-red:hover {
- --tw-gradient-stops: var(--tw-gradient-from), #CE4A3E, var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
- }
-
- .xl\:hover\:via-red-dark:hover {
- --tw-gradient-stops: var(--tw-gradient-from), #B1336A, var(--tw-gradient-to, rgba(177, 51, 106, 0)) !important;
- }
-
.xl\:hover\:via-yellow-50:hover {
--tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important;
}
@@ -142550,18 +140157,6 @@ input[type=text]::placeholder {
--tw-gradient-to: #7f1d1d !important;
}
- .xl\:hover\:to-red-light:hover {
- --tw-gradient-to: #EF9C9A !important;
- }
-
- .xl\:hover\:to-red:hover {
- --tw-gradient-to: #CE4A3E !important;
- }
-
- .xl\:hover\:to-red-dark:hover {
- --tw-gradient-to: #B1336A !important;
- }
-
.xl\:hover\:to-yellow-50:hover {
--tw-gradient-to: #fffbeb !important;
}
@@ -142958,21 +140553,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
- .xl\:focus\:from-red-light:focus {
- --tw-gradient-from: #EF9C9A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
- }
-
- .xl\:focus\:from-red:focus {
- --tw-gradient-from: #CE4A3E !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
- }
-
- .xl\:focus\:from-red-dark:focus {
- --tw-gradient-from: #B1336A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 51, 106, 0)) !important;
- }
-
.xl\:focus\:from-yellow-50:focus {
--tw-gradient-from: #fffbeb !important;
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important;
@@ -143414,18 +140994,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
- .xl\:focus\:via-red-light:focus {
- --tw-gradient-stops: var(--tw-gradient-from), #EF9C9A, var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
- }
-
- .xl\:focus\:via-red:focus {
- --tw-gradient-stops: var(--tw-gradient-from), #CE4A3E, var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
- }
-
- .xl\:focus\:via-red-dark:focus {
- --tw-gradient-stops: var(--tw-gradient-from), #B1336A, var(--tw-gradient-to, rgba(177, 51, 106, 0)) !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;
}
@@ -143798,18 +141366,6 @@ input[type=text]::placeholder {
--tw-gradient-to: #7f1d1d !important;
}
- .xl\:focus\:to-red-light:focus {
- --tw-gradient-to: #EF9C9A !important;
- }
-
- .xl\:focus\:to-red:focus {
- --tw-gradient-to: #CE4A3E !important;
- }
-
- .xl\:focus\:to-red-dark:focus {
- --tw-gradient-to: #B1336A !important;
- }
-
.xl\:focus\:to-yellow-50:focus {
--tw-gradient-to: #fffbeb !important;
}
@@ -144584,21 +142140,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important;
}
- .xl\:border-red-light {
- --tw-border-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-border-opacity)) !important;
- }
-
- .xl\:border-red {
- --tw-border-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-border-opacity)) !important;
- }
-
- .xl\:border-red-dark {
- --tw-border-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-border-opacity)) !important;
- }
-
.xl\:border-yellow-50 {
--tw-border-opacity: 1 !important;
border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important;
@@ -145061,21 +142602,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important;
}
- .group:hover .xl\:group-hover\:border-red-light {
- --tw-border-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-border-opacity)) !important;
- }
-
- .group:hover .xl\:group-hover\:border-red {
- --tw-border-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-border-opacity)) !important;
- }
-
- .group:hover .xl\:group-hover\:border-red-dark {
- --tw-border-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-border-opacity)) !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;
@@ -145538,21 +143064,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important;
}
- .xl\:focus-within\:border-red-light:focus-within {
- --tw-border-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-border-opacity)) !important;
- }
-
- .xl\:focus-within\:border-red:focus-within {
- --tw-border-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-border-opacity)) !important;
- }
-
- .xl\:focus-within\:border-red-dark:focus-within {
- --tw-border-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-border-opacity)) !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;
@@ -146015,21 +143526,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important;
}
- .xl\:hover\:border-red-light:hover {
- --tw-border-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-border-opacity)) !important;
- }
-
- .xl\:hover\:border-red:hover {
- --tw-border-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-border-opacity)) !important;
- }
-
- .xl\:hover\:border-red-dark:hover {
- --tw-border-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-border-opacity)) !important;
- }
-
.xl\:hover\:border-yellow-50:hover {
--tw-border-opacity: 1 !important;
border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important;
@@ -146492,21 +143988,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important;
}
- .xl\:focus\:border-red-light:focus {
- --tw-border-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-border-opacity)) !important;
- }
-
- .xl\:focus\:border-red:focus {
- --tw-border-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-border-opacity)) !important;
- }
-
- .xl\:focus\:border-red-dark:focus {
- --tw-border-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-border-opacity)) !important;
- }
-
.xl\:focus\:border-yellow-50:focus {
--tw-border-opacity: 1 !important;
border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important;
@@ -152907,66 +150388,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important;
}
- .xl\:placeholder-red-light::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .xl\:placeholder-red-light:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .xl\:placeholder-red-light::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .xl\:placeholder-red-light::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .xl\:placeholder-red::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .xl\:placeholder-red:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .xl\:placeholder-red::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .xl\:placeholder-red::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .xl\:placeholder-red-dark::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
- .xl\:placeholder-red-dark:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
- .xl\:placeholder-red-dark::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
- .xl\:placeholder-red-dark::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
.xl\:placeholder-yellow-50::-webkit-input-placeholder {
--tw-placeholder-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important;
@@ -154815,66 +152236,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important;
}
- .xl\:focus\:placeholder-red-light:focus::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .xl\:focus\:placeholder-red-light:focus:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .xl\:focus\:placeholder-red-light:focus::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .xl\:focus\:placeholder-red-light:focus::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .xl\:focus\:placeholder-red:focus::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .xl\:focus\:placeholder-red:focus:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .xl\:focus\:placeholder-red:focus::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .xl\:focus\:placeholder-red:focus::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .xl\:focus\:placeholder-red-dark:focus::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
- .xl\:focus\:placeholder-red-dark:focus:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
- .xl\:focus\:placeholder-red-dark:focus::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
- .xl\:focus\:placeholder-red-dark:focus::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
.xl\:focus\:placeholder-yellow-50:focus::-webkit-input-placeholder {
--tw-placeholder-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important;
@@ -159997,18 +157358,6 @@ input[type=text]::placeholder {
--tw-ring-offset-color: #7f1d1d !important;
}
- .xl\:ring-offset-red-light {
- --tw-ring-offset-color: #EF9C9A !important;
- }
-
- .xl\:ring-offset-red {
- --tw-ring-offset-color: #CE4A3E !important;
- }
-
- .xl\:ring-offset-red-dark {
- --tw-ring-offset-color: #B1336A !important;
- }
-
.xl\:ring-offset-yellow-50 {
--tw-ring-offset-color: #fffbeb !important;
}
@@ -160381,18 +157730,6 @@ input[type=text]::placeholder {
--tw-ring-offset-color: #7f1d1d !important;
}
- .xl\:focus-within\:ring-offset-red-light:focus-within {
- --tw-ring-offset-color: #EF9C9A !important;
- }
-
- .xl\:focus-within\:ring-offset-red:focus-within {
- --tw-ring-offset-color: #CE4A3E !important;
- }
-
- .xl\:focus-within\:ring-offset-red-dark:focus-within {
- --tw-ring-offset-color: #B1336A !important;
- }
-
.xl\:focus-within\:ring-offset-yellow-50:focus-within {
--tw-ring-offset-color: #fffbeb !important;
}
@@ -160765,18 +158102,6 @@ input[type=text]::placeholder {
--tw-ring-offset-color: #7f1d1d !important;
}
- .xl\:focus\:ring-offset-red-light:focus {
- --tw-ring-offset-color: #EF9C9A !important;
- }
-
- .xl\:focus\:ring-offset-red:focus {
- --tw-ring-offset-color: #CE4A3E !important;
- }
-
- .xl\:focus\:ring-offset-red-dark:focus {
- --tw-ring-offset-color: #B1336A !important;
- }
-
.xl\:focus\:ring-offset-yellow-50:focus {
--tw-ring-offset-color: #fffbeb !important;
}
@@ -161231,21 +158556,6 @@ input[type=text]::placeholder {
--tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important;
}
- .xl\:ring-red-light {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(239, 156, 154, var(--tw-ring-opacity)) !important;
- }
-
- .xl\:ring-red {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(206, 74, 62, var(--tw-ring-opacity)) !important;
- }
-
- .xl\:ring-red-dark {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(177, 51, 106, var(--tw-ring-opacity)) !important;
- }
-
.xl\:ring-yellow-50 {
--tw-ring-opacity: 1 !important;
--tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important;
@@ -161708,21 +159018,6 @@ input[type=text]::placeholder {
--tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important;
}
- .xl\:focus-within\:ring-red-light:focus-within {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(239, 156, 154, var(--tw-ring-opacity)) !important;
- }
-
- .xl\:focus-within\:ring-red:focus-within {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(206, 74, 62, var(--tw-ring-opacity)) !important;
- }
-
- .xl\:focus-within\:ring-red-dark:focus-within {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(177, 51, 106, var(--tw-ring-opacity)) !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;
@@ -162185,21 +159480,6 @@ input[type=text]::placeholder {
--tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important;
}
- .xl\:focus\:ring-red-light:focus {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(239, 156, 154, var(--tw-ring-opacity)) !important;
- }
-
- .xl\:focus\:ring-red:focus {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(206, 74, 62, var(--tw-ring-opacity)) !important;
- }
-
- .xl\:focus\:ring-red-dark:focus {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(177, 51, 106, var(--tw-ring-opacity)) !important;
- }
-
.xl\:focus\:ring-yellow-50:focus {
--tw-ring-opacity: 1 !important;
--tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important;
@@ -162886,21 +160166,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-text-opacity)) !important;
}
- .xl\:text-red-light {
- --tw-text-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-text-opacity)) !important;
- }
-
- .xl\:text-red {
- --tw-text-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-text-opacity)) !important;
- }
-
- .xl\:text-red-dark {
- --tw-text-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-text-opacity)) !important;
- }
-
.xl\:text-yellow-50 {
--tw-text-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-text-opacity)) !important;
@@ -163363,21 +160628,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-text-opacity)) !important;
}
- .group:hover .xl\:group-hover\:text-red-light {
- --tw-text-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-text-opacity)) !important;
- }
-
- .group:hover .xl\:group-hover\:text-red {
- --tw-text-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-text-opacity)) !important;
- }
-
- .group:hover .xl\:group-hover\:text-red-dark {
- --tw-text-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-text-opacity)) !important;
- }
-
.group:hover .xl\:group-hover\:text-yellow-50 {
--tw-text-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-text-opacity)) !important;
@@ -163840,21 +161090,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-text-opacity)) !important;
}
- .xl\:focus-within\:text-red-light:focus-within {
- --tw-text-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-text-opacity)) !important;
- }
-
- .xl\:focus-within\:text-red:focus-within {
- --tw-text-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-text-opacity)) !important;
- }
-
- .xl\:focus-within\:text-red-dark:focus-within {
- --tw-text-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-text-opacity)) !important;
- }
-
.xl\:focus-within\:text-yellow-50:focus-within {
--tw-text-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-text-opacity)) !important;
@@ -164317,21 +161552,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-text-opacity)) !important;
}
- .xl\:hover\:text-red-light:hover {
- --tw-text-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-text-opacity)) !important;
- }
-
- .xl\:hover\:text-red:hover {
- --tw-text-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-text-opacity)) !important;
- }
-
- .xl\:hover\:text-red-dark:hover {
- --tw-text-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-text-opacity)) !important;
- }
-
.xl\:hover\:text-yellow-50:hover {
--tw-text-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-text-opacity)) !important;
@@ -164794,21 +162014,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-text-opacity)) !important;
}
- .xl\:focus\:text-red-light:focus {
- --tw-text-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-text-opacity)) !important;
- }
-
- .xl\:focus\:text-red:focus {
- --tw-text-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-text-opacity)) !important;
- }
-
- .xl\:focus\:text-red-dark:focus {
- --tw-text-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-text-opacity)) !important;
- }
-
.xl\:focus\:text-yellow-50:focus {
--tw-text-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-text-opacity)) !important;
@@ -171083,21 +168288,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-divide-opacity)) !important;
}
- .\32xl\:divide-red-light > :not([hidden]) ~ :not([hidden]) {
- --tw-divide-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-divide-opacity)) !important;
- }
-
- .\32xl\:divide-red > :not([hidden]) ~ :not([hidden]) {
- --tw-divide-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-divide-opacity)) !important;
- }
-
- .\32xl\:divide-red-dark > :not([hidden]) ~ :not([hidden]) {
- --tw-divide-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-divide-opacity)) !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;
@@ -171744,21 +168934,6 @@ input[type=text]::placeholder {
background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important;
}
- .\32xl\:bg-red-light {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(239, 156, 154, var(--tw-bg-opacity)) !important;
- }
-
- .\32xl\:bg-red {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(206, 74, 62, var(--tw-bg-opacity)) !important;
- }
-
- .\32xl\:bg-red-dark {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(177, 51, 106, var(--tw-bg-opacity)) !important;
- }
-
.\32xl\:bg-yellow-50 {
--tw-bg-opacity: 1 !important;
background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important;
@@ -172221,21 +169396,6 @@ input[type=text]::placeholder {
background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important;
}
- .group:hover .\32xl\:group-hover\:bg-red-light {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(239, 156, 154, var(--tw-bg-opacity)) !important;
- }
-
- .group:hover .\32xl\:group-hover\:bg-red {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(206, 74, 62, var(--tw-bg-opacity)) !important;
- }
-
- .group:hover .\32xl\:group-hover\:bg-red-dark {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(177, 51, 106, var(--tw-bg-opacity)) !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;
@@ -172698,21 +169858,6 @@ input[type=text]::placeholder {
background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important;
}
- .\32xl\:focus-within\:bg-red-light:focus-within {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(239, 156, 154, var(--tw-bg-opacity)) !important;
- }
-
- .\32xl\:focus-within\:bg-red:focus-within {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(206, 74, 62, var(--tw-bg-opacity)) !important;
- }
-
- .\32xl\:focus-within\:bg-red-dark:focus-within {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(177, 51, 106, var(--tw-bg-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;
@@ -173175,21 +170320,6 @@ input[type=text]::placeholder {
background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important;
}
- .\32xl\:hover\:bg-red-light:hover {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(239, 156, 154, var(--tw-bg-opacity)) !important;
- }
-
- .\32xl\:hover\:bg-red:hover {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(206, 74, 62, var(--tw-bg-opacity)) !important;
- }
-
- .\32xl\:hover\:bg-red-dark:hover {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(177, 51, 106, var(--tw-bg-opacity)) !important;
- }
-
.\32xl\:hover\:bg-yellow-50:hover {
--tw-bg-opacity: 1 !important;
background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important;
@@ -173652,21 +170782,6 @@ input[type=text]::placeholder {
background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important;
}
- .\32xl\:focus\:bg-red-light:focus {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(239, 156, 154, var(--tw-bg-opacity)) !important;
- }
-
- .\32xl\:focus\:bg-red:focus {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(206, 74, 62, var(--tw-bg-opacity)) !important;
- }
-
- .\32xl\:focus\:bg-red-dark:focus {
- --tw-bg-opacity: 1 !important;
- background-color: rgba(177, 51, 106, var(--tw-bg-opacity)) !important;
- }
-
.\32xl\:focus\:bg-yellow-50:focus {
--tw-bg-opacity: 1 !important;
background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important;
@@ -174167,21 +171282,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
- .\32xl\:from-red-light {
- --tw-gradient-from: #EF9C9A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
- }
-
- .\32xl\:from-red {
- --tw-gradient-from: #CE4A3E !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
- }
-
- .\32xl\:from-red-dark {
- --tw-gradient-from: #B1336A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 51, 106, 0)) !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;
@@ -174623,18 +171723,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
- .\32xl\:via-red-light {
- --tw-gradient-stops: var(--tw-gradient-from), #EF9C9A, var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
- }
-
- .\32xl\:via-red {
- --tw-gradient-stops: var(--tw-gradient-from), #CE4A3E, var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
- }
-
- .\32xl\:via-red-dark {
- --tw-gradient-stops: var(--tw-gradient-from), #B1336A, var(--tw-gradient-to, rgba(177, 51, 106, 0)) !important;
- }
-
.\32xl\:via-yellow-50 {
--tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important;
}
@@ -175007,18 +172095,6 @@ input[type=text]::placeholder {
--tw-gradient-to: #7f1d1d !important;
}
- .\32xl\:to-red-light {
- --tw-gradient-to: #EF9C9A !important;
- }
-
- .\32xl\:to-red {
- --tw-gradient-to: #CE4A3E !important;
- }
-
- .\32xl\:to-red-dark {
- --tw-gradient-to: #B1336A !important;
- }
-
.\32xl\:to-yellow-50 {
--tw-gradient-to: #fffbeb !important;
}
@@ -175415,21 +172491,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
- .\32xl\:hover\:from-red-light:hover {
- --tw-gradient-from: #EF9C9A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
- }
-
- .\32xl\:hover\:from-red:hover {
- --tw-gradient-from: #CE4A3E !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
- }
-
- .\32xl\:hover\:from-red-dark:hover {
- --tw-gradient-from: #B1336A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 51, 106, 0)) !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;
@@ -175871,18 +172932,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
- .\32xl\:hover\:via-red-light:hover {
- --tw-gradient-stops: var(--tw-gradient-from), #EF9C9A, var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
- }
-
- .\32xl\:hover\:via-red:hover {
- --tw-gradient-stops: var(--tw-gradient-from), #CE4A3E, var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
- }
-
- .\32xl\:hover\:via-red-dark:hover {
- --tw-gradient-stops: var(--tw-gradient-from), #B1336A, var(--tw-gradient-to, rgba(177, 51, 106, 0)) !important;
- }
-
.\32xl\:hover\:via-yellow-50:hover {
--tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important;
}
@@ -176255,18 +173304,6 @@ input[type=text]::placeholder {
--tw-gradient-to: #7f1d1d !important;
}
- .\32xl\:hover\:to-red-light:hover {
- --tw-gradient-to: #EF9C9A !important;
- }
-
- .\32xl\:hover\:to-red:hover {
- --tw-gradient-to: #CE4A3E !important;
- }
-
- .\32xl\:hover\:to-red-dark:hover {
- --tw-gradient-to: #B1336A !important;
- }
-
.\32xl\:hover\:to-yellow-50:hover {
--tw-gradient-to: #fffbeb !important;
}
@@ -176663,21 +173700,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
- .\32xl\:focus\:from-red-light:focus {
- --tw-gradient-from: #EF9C9A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
- }
-
- .\32xl\:focus\:from-red:focus {
- --tw-gradient-from: #CE4A3E !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
- }
-
- .\32xl\:focus\:from-red-dark:focus {
- --tw-gradient-from: #B1336A !important;
- --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 51, 106, 0)) !important;
- }
-
.\32xl\:focus\:from-yellow-50:focus {
--tw-gradient-from: #fffbeb !important;
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important;
@@ -177119,18 +174141,6 @@ input[type=text]::placeholder {
--tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important;
}
- .\32xl\:focus\:via-red-light:focus {
- --tw-gradient-stops: var(--tw-gradient-from), #EF9C9A, var(--tw-gradient-to, rgba(239, 156, 154, 0)) !important;
- }
-
- .\32xl\:focus\:via-red:focus {
- --tw-gradient-stops: var(--tw-gradient-from), #CE4A3E, var(--tw-gradient-to, rgba(206, 74, 62, 0)) !important;
- }
-
- .\32xl\:focus\:via-red-dark:focus {
- --tw-gradient-stops: var(--tw-gradient-from), #B1336A, var(--tw-gradient-to, rgba(177, 51, 106, 0)) !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;
}
@@ -177503,18 +174513,6 @@ input[type=text]::placeholder {
--tw-gradient-to: #7f1d1d !important;
}
- .\32xl\:focus\:to-red-light:focus {
- --tw-gradient-to: #EF9C9A !important;
- }
-
- .\32xl\:focus\:to-red:focus {
- --tw-gradient-to: #CE4A3E !important;
- }
-
- .\32xl\:focus\:to-red-dark:focus {
- --tw-gradient-to: #B1336A !important;
- }
-
.\32xl\:focus\:to-yellow-50:focus {
--tw-gradient-to: #fffbeb !important;
}
@@ -178289,21 +175287,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important;
}
- .\32xl\:border-red-light {
- --tw-border-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-border-opacity)) !important;
- }
-
- .\32xl\:border-red {
- --tw-border-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-border-opacity)) !important;
- }
-
- .\32xl\:border-red-dark {
- --tw-border-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-border-opacity)) !important;
- }
-
.\32xl\:border-yellow-50 {
--tw-border-opacity: 1 !important;
border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important;
@@ -178766,21 +175749,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important;
}
- .group:hover .\32xl\:group-hover\:border-red-light {
- --tw-border-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-border-opacity)) !important;
- }
-
- .group:hover .\32xl\:group-hover\:border-red {
- --tw-border-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-border-opacity)) !important;
- }
-
- .group:hover .\32xl\:group-hover\:border-red-dark {
- --tw-border-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-border-opacity)) !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;
@@ -179243,21 +176211,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important;
}
- .\32xl\:focus-within\:border-red-light:focus-within {
- --tw-border-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-border-opacity)) !important;
- }
-
- .\32xl\:focus-within\:border-red:focus-within {
- --tw-border-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-border-opacity)) !important;
- }
-
- .\32xl\:focus-within\:border-red-dark:focus-within {
- --tw-border-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-border-opacity)) !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;
@@ -179720,21 +176673,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important;
}
- .\32xl\:hover\:border-red-light:hover {
- --tw-border-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-border-opacity)) !important;
- }
-
- .\32xl\:hover\:border-red:hover {
- --tw-border-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-border-opacity)) !important;
- }
-
- .\32xl\:hover\:border-red-dark:hover {
- --tw-border-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-border-opacity)) !important;
- }
-
.\32xl\:hover\:border-yellow-50:hover {
--tw-border-opacity: 1 !important;
border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important;
@@ -180197,21 +177135,6 @@ input[type=text]::placeholder {
border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important;
}
- .\32xl\:focus\:border-red-light:focus {
- --tw-border-opacity: 1 !important;
- border-color: rgba(239, 156, 154, var(--tw-border-opacity)) !important;
- }
-
- .\32xl\:focus\:border-red:focus {
- --tw-border-opacity: 1 !important;
- border-color: rgba(206, 74, 62, var(--tw-border-opacity)) !important;
- }
-
- .\32xl\:focus\:border-red-dark:focus {
- --tw-border-opacity: 1 !important;
- border-color: rgba(177, 51, 106, var(--tw-border-opacity)) !important;
- }
-
.\32xl\:focus\:border-yellow-50:focus {
--tw-border-opacity: 1 !important;
border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important;
@@ -186612,66 +183535,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important;
}
- .\32xl\:placeholder-red-light::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .\32xl\:placeholder-red-light:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .\32xl\:placeholder-red-light::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .\32xl\:placeholder-red-light::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .\32xl\:placeholder-red::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .\32xl\:placeholder-red:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .\32xl\:placeholder-red::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .\32xl\:placeholder-red::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .\32xl\:placeholder-red-dark::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
- .\32xl\:placeholder-red-dark:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
- .\32xl\:placeholder-red-dark::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
- .\32xl\:placeholder-red-dark::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
.\32xl\:placeholder-yellow-50::-webkit-input-placeholder {
--tw-placeholder-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important;
@@ -188520,66 +185383,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important;
}
- .\32xl\:focus\:placeholder-red-light:focus::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .\32xl\:focus\:placeholder-red-light:focus:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .\32xl\:focus\:placeholder-red-light:focus::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .\32xl\:focus\:placeholder-red-light:focus::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-placeholder-opacity)) !important;
- }
-
- .\32xl\:focus\:placeholder-red:focus::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .\32xl\:focus\:placeholder-red:focus:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .\32xl\:focus\:placeholder-red:focus::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .\32xl\:focus\:placeholder-red:focus::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-placeholder-opacity)) !important;
- }
-
- .\32xl\:focus\:placeholder-red-dark:focus::-webkit-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
- .\32xl\:focus\:placeholder-red-dark:focus:-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
- .\32xl\:focus\:placeholder-red-dark:focus::-ms-input-placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
- .\32xl\:focus\:placeholder-red-dark:focus::placeholder {
- --tw-placeholder-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-placeholder-opacity)) !important;
- }
-
.\32xl\:focus\:placeholder-yellow-50:focus::-webkit-input-placeholder {
--tw-placeholder-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important;
@@ -193702,18 +190505,6 @@ input[type=text]::placeholder {
--tw-ring-offset-color: #7f1d1d !important;
}
- .\32xl\:ring-offset-red-light {
- --tw-ring-offset-color: #EF9C9A !important;
- }
-
- .\32xl\:ring-offset-red {
- --tw-ring-offset-color: #CE4A3E !important;
- }
-
- .\32xl\:ring-offset-red-dark {
- --tw-ring-offset-color: #B1336A !important;
- }
-
.\32xl\:ring-offset-yellow-50 {
--tw-ring-offset-color: #fffbeb !important;
}
@@ -194086,18 +190877,6 @@ input[type=text]::placeholder {
--tw-ring-offset-color: #7f1d1d !important;
}
- .\32xl\:focus-within\:ring-offset-red-light:focus-within {
- --tw-ring-offset-color: #EF9C9A !important;
- }
-
- .\32xl\:focus-within\:ring-offset-red:focus-within {
- --tw-ring-offset-color: #CE4A3E !important;
- }
-
- .\32xl\:focus-within\:ring-offset-red-dark:focus-within {
- --tw-ring-offset-color: #B1336A !important;
- }
-
.\32xl\:focus-within\:ring-offset-yellow-50:focus-within {
--tw-ring-offset-color: #fffbeb !important;
}
@@ -194470,18 +191249,6 @@ input[type=text]::placeholder {
--tw-ring-offset-color: #7f1d1d !important;
}
- .\32xl\:focus\:ring-offset-red-light:focus {
- --tw-ring-offset-color: #EF9C9A !important;
- }
-
- .\32xl\:focus\:ring-offset-red:focus {
- --tw-ring-offset-color: #CE4A3E !important;
- }
-
- .\32xl\:focus\:ring-offset-red-dark:focus {
- --tw-ring-offset-color: #B1336A !important;
- }
-
.\32xl\:focus\:ring-offset-yellow-50:focus {
--tw-ring-offset-color: #fffbeb !important;
}
@@ -194936,21 +191703,6 @@ input[type=text]::placeholder {
--tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important;
}
- .\32xl\:ring-red-light {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(239, 156, 154, var(--tw-ring-opacity)) !important;
- }
-
- .\32xl\:ring-red {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(206, 74, 62, var(--tw-ring-opacity)) !important;
- }
-
- .\32xl\:ring-red-dark {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(177, 51, 106, var(--tw-ring-opacity)) !important;
- }
-
.\32xl\:ring-yellow-50 {
--tw-ring-opacity: 1 !important;
--tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important;
@@ -195413,21 +192165,6 @@ input[type=text]::placeholder {
--tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important;
}
- .\32xl\:focus-within\:ring-red-light:focus-within {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(239, 156, 154, var(--tw-ring-opacity)) !important;
- }
-
- .\32xl\:focus-within\:ring-red:focus-within {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(206, 74, 62, var(--tw-ring-opacity)) !important;
- }
-
- .\32xl\:focus-within\:ring-red-dark:focus-within {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(177, 51, 106, var(--tw-ring-opacity)) !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;
@@ -195890,21 +192627,6 @@ input[type=text]::placeholder {
--tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important;
}
- .\32xl\:focus\:ring-red-light:focus {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(239, 156, 154, var(--tw-ring-opacity)) !important;
- }
-
- .\32xl\:focus\:ring-red:focus {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(206, 74, 62, var(--tw-ring-opacity)) !important;
- }
-
- .\32xl\:focus\:ring-red-dark:focus {
- --tw-ring-opacity: 1 !important;
- --tw-ring-color: rgba(177, 51, 106, var(--tw-ring-opacity)) !important;
- }
-
.\32xl\:focus\:ring-yellow-50:focus {
--tw-ring-opacity: 1 !important;
--tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important;
@@ -196591,21 +193313,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-text-opacity)) !important;
}
- .\32xl\:text-red-light {
- --tw-text-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-text-opacity)) !important;
- }
-
- .\32xl\:text-red {
- --tw-text-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-text-opacity)) !important;
- }
-
- .\32xl\:text-red-dark {
- --tw-text-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-text-opacity)) !important;
- }
-
.\32xl\:text-yellow-50 {
--tw-text-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-text-opacity)) !important;
@@ -197068,21 +193775,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-text-opacity)) !important;
}
- .group:hover .\32xl\:group-hover\:text-red-light {
- --tw-text-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-text-opacity)) !important;
- }
-
- .group:hover .\32xl\:group-hover\:text-red {
- --tw-text-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-text-opacity)) !important;
- }
-
- .group:hover .\32xl\:group-hover\:text-red-dark {
- --tw-text-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-text-opacity)) !important;
- }
-
.group:hover .\32xl\:group-hover\:text-yellow-50 {
--tw-text-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-text-opacity)) !important;
@@ -197545,21 +194237,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-text-opacity)) !important;
}
- .\32xl\:focus-within\:text-red-light:focus-within {
- --tw-text-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-text-opacity)) !important;
- }
-
- .\32xl\:focus-within\:text-red:focus-within {
- --tw-text-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-text-opacity)) !important;
- }
-
- .\32xl\:focus-within\:text-red-dark:focus-within {
- --tw-text-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-text-opacity)) !important;
- }
-
.\32xl\:focus-within\:text-yellow-50:focus-within {
--tw-text-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-text-opacity)) !important;
@@ -198022,21 +194699,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-text-opacity)) !important;
}
- .\32xl\:hover\:text-red-light:hover {
- --tw-text-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-text-opacity)) !important;
- }
-
- .\32xl\:hover\:text-red:hover {
- --tw-text-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-text-opacity)) !important;
- }
-
- .\32xl\:hover\:text-red-dark:hover {
- --tw-text-opacity: 1 !important;
- color: rgba(177, 51, 106, var(--tw-text-opacity)) !important;
- }
-
.\32xl\:hover\:text-yellow-50:hover {
--tw-text-opacity: 1 !important;
color: rgba(255, 251, 235, var(--tw-text-opacity)) !important;
@@ -198499,21 +195161,6 @@ input[type=text]::placeholder {
color: rgba(127, 29, 29, var(--tw-text-opacity)) !important;
}
- .\32xl\:focus\:text-red-light:focus {
- --tw-text-opacity: 1 !important;
- color: rgba(239, 156, 154, var(--tw-text-opacity)) !important;
- }
-
- .\32xl\:focus\:text-red:focus {
- --tw-text-opacity: 1 !important;
- color: rgba(206, 74, 62, var(--tw-text-opacity)) !important;
- }
-
- .\32xl\:focus\:text-red-dark:focus {
- --tw-text-opacity: 1 !important;
- color: rgba(177, 51, 106, 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;
diff --git a/components/dashboard/tailwind.config.js b/components/dashboard/tailwind.config.js
index 5bd69f0e9c69b6..d5b241ed4743a5 100644
--- a/components/dashboard/tailwind.config.js
+++ b/components/dashboard/tailwind.config.js
@@ -8,11 +8,6 @@ module.exports = {
colors: {
gray: colors.warmGray,
green: colors.lime,
- red: {
- light: '#EF9C9A',
- DEFAULT: '#CE4A3E',
- dark: '#B1336A',
- },
blue: {
light: '#75A9EC',
DEFAULT: '#5C8DD6',
diff --git a/components/gitpod-db/src/typeorm/user-db-impl.ts b/components/gitpod-db/src/typeorm/user-db-impl.ts
index 06f9ff1b55eeed..33deb88ce9b90d 100644
--- a/components/gitpod-db/src/typeorm/user-db-impl.ts
+++ b/components/gitpod-db/src/typeorm/user-db-impl.ts
@@ -72,7 +72,8 @@ export class TypeORMUserDBImpl implements UserDB {
id: uuidv4(),
creationDate: new Date().toISOString(),
identities: [],
- allowsMarketingCommunication: false
+ allowsMarketingCommunication: false,
+ additionalData: { ideSettings: { defaultIde: 'code' } },
};
await this.storeUser(user);
return user;
diff --git a/components/server/src/user/user-service.ts b/components/server/src/user/user-service.ts
index 8c6ec88551791d..87b67efaf4d48a 100644
--- a/components/server/src/user/user-service.ts
+++ b/components/server/src/user/user-service.ts
@@ -112,7 +112,7 @@ export class UserService {
}
private cachedIsFirstUser: boolean | undefined = undefined;
- public async createUser({identity, token, userUpdate }: CreateUserParams): Promise {
+ public async createUser({ identity, token, userUpdate }: CreateUserParams): Promise {
log.debug('Creating new user.', { identity, 'login-flow': true });
const prevIsFirstUser = this.cachedIsFirstUser;
diff --git a/components/server/src/workspace/workspace-starter.ts b/components/server/src/workspace/workspace-starter.ts
index a5e1bcc50c40d5..ff08a0049bd389 100644
--- a/components/server/src/workspace/workspace-starter.ts
+++ b/components/server/src/workspace/workspace-starter.ts
@@ -241,6 +241,18 @@ export class WorkspaceStarter {
ideImage,
};
+ const ideChoice = user.additionalData?.ideSettings?.defaultIde;
+ if (!!ideChoice) {
+ const mappedImage = this.env.ideImageAliases[ideChoice];
+ if (!!mappedImage) {
+ configuration.ideImage = mappedImage;
+ } else if (this.authService.hasPermission(user, "ide-settings")) {
+ // if the IDE choice isn't one of the preconfiured choices, we assume its the image name.
+ // For now, this feature requires special permissions.
+ configuration.ideImage = ideChoice;
+ }
+ }
+
let featureFlags: NamedWorkspaceFeatureFlag[] = workspace.config._featureFlags || [];
featureFlags = featureFlags.concat(this.env.defaultFeatureFlags);
if (user.featureFlags && user.featureFlags.permanentWSFeatureFlags) {
@@ -251,18 +263,6 @@ export class WorkspaceStarter {
// Beware: all feature flags we add here are not workspace-persistent feature flags, e.g. no full-workspace backup.
if (!!user.additionalData?.featurePreview) {
featureFlags = featureFlags.concat(this.env.previewFeatureFlags.filter(f => !featureFlags.includes(f)));
-
- const ideChoice = user.additionalData?.ideSettings?.defaultIde;
- if (!!ideChoice) {
- const mappedImage = this.env.ideImageAliases[ideChoice];
- if (!!mappedImage) {
- configuration.ideImage = mappedImage;
- } else if (this.authService.hasPermission(user, "ide-settings")) {
- // if the IDE choice isn't one of the preconfiured choices, we assume its the image name.
- // For now, this feature requires special permissions.
- configuration.ideImage = ideChoice;
- }
- }
}
if (!!featureFlags) {