/**
 * tom-select.css (v2.3.1)
 * Copyright (c) contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 */
.ts-control {
  border: 1px solid #d0d0d0;
  padding: 8px 8px;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  box-shadow: none;
  border-radius: 3px;
  display: flex;
  flex-wrap: wrap;
}
.ts-wrapper.multi.has-items .ts-control {
  padding: calc(8px - 2px - 0) 8px calc(8px - 2px - 3px - 0);
}
.full .ts-control {
  background-color: #fff;
}
.disabled .ts-control, .disabled .ts-control * {
  cursor: default !important;
}
.focus .ts-control {
  box-shadow: none;
}
.ts-control > * {
  vertical-align: baseline;
  display: inline-block;
}
.ts-wrapper.multi .ts-control > div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 2px 6px;
  background: #f2f2f2;
  color: #303030;
  border: 0 solid #d0d0d0;
}
.ts-wrapper.multi .ts-control > div.active {
  background: #e8e8e8;
  color: #303030;
  border: 0 solid #cacaca;
}
.ts-wrapper.multi.disabled .ts-control > div, .ts-wrapper.multi.disabled .ts-control > div.active {
  color: #7d7d7d;
  background: white;
  border: 0 solid white;
}
.ts-control > input {
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
          user-select: auto !important;
  box-shadow: none !important;
}
.ts-control > input {
  flex: 1 1 auto;
  min-width: 7rem;
}
.ts-control > input::-ms-clear {
  display: none;
}
.ts-control > input:focus {
  outline: none !important;
}
.has-items .ts-control > input {
  margin: 0 4px !important;
}
.ts-control.rtl {
  text-align: right;
}
.ts-control.rtl.single .ts-control:after {
  left: 15px;
  right: auto;
}
.ts-control.rtl .ts-control > input {
  margin: 0 4px 0 -2px !important;
}
.disabled .ts-control {
  opacity: 0.5;
  background-color: #fafafa;
}
.input-hidden .ts-control > input {
  opacity: 0;
  position: absolute;
  left: -10000px;
}
.ts-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 10;
  border: 1px solid #d0d0d0;
  background: #fff;
  margin: 0.25rem 0 0;
  border-top: 0 none;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 3px 3px;
}
.ts-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}
.ts-dropdown [data-selectable] .highlight {
  background: rgba(125, 168, 208, 0.2);
  border-radius: 1px;
}
.ts-dropdown .option,
.ts-dropdown .optgroup-header,
.ts-dropdown .no-results,
.ts-dropdown .create {
  padding: 5px 8px;
}
.ts-dropdown .option, .ts-dropdown [data-disabled], .ts-dropdown [data-disabled] [data-selectable].option {
  cursor: inherit;
  opacity: 0.5;
}
.ts-dropdown [data-selectable].option {
  opacity: 1;
  cursor: pointer;
}
.ts-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}
.ts-dropdown .optgroup-header {
  color: #303030;
  background: #fff;
  cursor: default;
}
.ts-dropdown .active {
  background-color: #f5fafd;
  color: #495c68;
}
.ts-dropdown .active.create {
  color: #495c68;
}
.ts-dropdown .create {
  color: rgba(48, 48, 48, 0.5);
}
.ts-dropdown .spinner {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 5px 8px;
}
.ts-dropdown .spinner::after {
  content: " ";
  display: block;
  width: 24px;
  height: 24px;
  margin: 3px;
  border-radius: 50%;
  border: 5px solid #d0d0d0;
  border-color: #d0d0d0 transparent #d0d0d0 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ts-dropdown-content {
  overflow-x: hidden;
  overflow-y: auto;
  overflow: hidden auto;
  max-height: 200px;
  scroll-behavior: smooth;
}
.ts-wrapper.plugin-drag_drop .ts-dragging {
  color: transparent !important;
}
.ts-wrapper.plugin-drag_drop .ts-dragging > * {
  visibility: hidden !important;
}
.plugin-checkbox_options:not(.rtl) .option input {
  margin-right: 0.5rem;
}
.plugin-checkbox_options.rtl .option input {
  margin-left: 0.5rem;
}
/* stylelint-disable function-name-case */
.plugin-clear_button {
  --ts-pr-clear-button: 1em;
}
.plugin-clear_button .clear-button {
  margin-right: 0 !important;
  background: transparent !important;
}
.plugin-clear_button .clear-button {
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(8px - 6px);
  transition: opacity 0.5s;
  cursor: pointer;
}
.plugin-clear_button.form-select .clear-button, .plugin-clear_button.single .clear-button {
  right: max(0, 8px);
  right: max(var(--ts-pr-caret), 8px);
}
.plugin-clear_button.focus.has-items .clear-button, .plugin-clear_button:not(.disabled):hover.has-items .clear-button {
  opacity: 1;
}
.ts-wrapper .dropdown-header {
  position: relative;
  padding: 10px 8px;
  border-bottom: 1px solid #d0d0d0;
  background: color-mix(#fff, #d0d0d0, 85%);
  border-radius: 3px 3px 0 0;
}
.ts-wrapper .dropdown-header-close {
  font-size: 20px !important;
}
.ts-wrapper .dropdown-header-close {
  position: absolute;
  right: 8px;
  top: 50%;
  color: #303030;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
}
.ts-wrapper .dropdown-header-close:hover {
  color: black;
}
.plugin-dropdown_input.focus.dropdown-active .ts-control {
  box-shadow: none;
  border: 1px solid #d0d0d0;
}
.plugin-dropdown_input .dropdown-input {
  border: 1px solid #d0d0d0;
  border-width: 0 0 1px;
  display: block;
  padding: 8px 8px;
  box-shadow: none;
  width: 100%;
  background: transparent;
}
.plugin-dropdown_input .items-placeholder {
  border: 0 none !important;
  box-shadow: none !important;
}
.plugin-dropdown_input .items-placeholder {
  width: 100%;
}
.plugin-dropdown_input.has-items .items-placeholder, .plugin-dropdown_input.dropdown-active .items-placeholder {
  display: none !important;
}
.ts-wrapper.plugin-input_autogrow.has-items .ts-control > input {
  min-width: 0;
}
.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input {
  flex: none;
  min-width: 4px;
}
.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::-moz-placeholder {
  color: transparent;
}
.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::placeholder {
  color: transparent;
}
.ts-dropdown.plugin-optgroup_columns .ts-dropdown-content {
  display: flex;
}
.ts-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}
.ts-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}
.ts-dropdown.plugin-optgroup_columns .optgroup::before {
  display: none;
}
.ts-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}
.ts-wrapper.plugin-remove_button .item {
  display: inline-flex;
  align-items: center;
}
.ts-wrapper.plugin-remove_button .item .remove {
  color: inherit;
  -webkit-text-decoration: none;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 0 6px;
  border-radius: 0 2px 2px 0;
  box-sizing: border-box;
}
.ts-wrapper.plugin-remove_button .item .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}
.ts-wrapper.plugin-remove_button.disabled .item .remove:hover {
  background: none;
}
.ts-wrapper.plugin-remove_button .remove-single {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 23px;
}
.ts-wrapper.plugin-remove_button:not(.rtl) .item {
  padding-right: 0 !important;
}
.ts-wrapper.plugin-remove_button:not(.rtl) .item .remove {
  border-left: 1px solid #d0d0d0;
  margin-left: 6px;
}
.ts-wrapper.plugin-remove_button:not(.rtl) .item.active .remove {
  border-left-color: #cacaca;
}
.ts-wrapper.plugin-remove_button:not(.rtl).disabled .item .remove {
  border-left-color: white;
}
.ts-wrapper.plugin-remove_button.rtl .item {
  padding-left: 0 !important;
}
.ts-wrapper.plugin-remove_button.rtl .item .remove {
  border-right: 1px solid #d0d0d0;
  margin-right: 6px;
}
.ts-wrapper.plugin-remove_button.rtl .item.active .remove {
  border-right-color: #cacaca;
}
.ts-wrapper.plugin-remove_button.rtl.disabled .item .remove {
  border-right-color: white;
}
:root {
  --ts-pr-clear-button: 0;
  --ts-pr-caret: 0;
  --ts-pr-min: .75rem;
}
.ts-wrapper.single .ts-control, .ts-wrapper.single .ts-control input {
  cursor: pointer;
}
.ts-control:not(.rtl) {
  padding-right: max(.75rem, 0 + 0) !important;
  padding-right: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important;
}
.ts-control.rtl {
  padding-left: max(.75rem, 0 + 0) !important;
  padding-left: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important;
}
.ts-wrapper {
  position: relative;
}
.ts-dropdown,
.ts-control,
.ts-control input {
  color: #303030;
  font-family: inherit;
  font-size: 13px;
  line-height: 18px;
}
.ts-control,
.ts-wrapper.single.input-active .ts-control {
  background: #fff;
  cursor: text;
}
.ts-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}
@tailwind base;
@tailwind components;
@tailwind utilities;
@tailwind base;
@tailwind components;
@tailwind utilities;
/*

  https://flowbite.com/docs/docs.css?v=1.3.3

*/
.Wiki__sidebar {
  color: var(--tw-prose-body);
  max-width: 65ch;
}
.Wiki__sidebar :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.Wiki__sidebar :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.Wiki__sidebar :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-links);
  -webkit-text-decoration: underline;
  text-decoration: underline;
  font-weight: 500;
}
.Wiki__sidebar :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-bold);
  font-weight: 600;
}
.Wiki__sidebar :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.Wiki__sidebar :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.Wiki__sidebar :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.Wiki__sidebar :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}
.Wiki__sidebar :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
.Wiki__sidebar :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
.Wiki__sidebar :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
.Wiki__sidebar :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
.Wiki__sidebar :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
.Wiki__sidebar :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
.Wiki__sidebar :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
.Wiki__sidebar :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
.Wiki__sidebar :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
}
.Wiki__sidebar :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}
.Wiki__sidebar :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  font-weight: 400;
  color: var(--tw-prose-counters);
}
.Wiki__sidebar :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  color: var(--tw-prose-bullets);
}
.Wiki__sidebar :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.25em;
}
.Wiki__sidebar :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}
.Wiki__sidebar :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-left-width: 0.25rem;
  border-left-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-left: 1em;
}
.Wiki__sidebar :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: open-quote;
}
.Wiki__sidebar :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: close-quote;
}
.Wiki__sidebar :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}
.Wiki__sidebar :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 900;
  color: inherit;
}
.Wiki__sidebar :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}
.Wiki__sidebar :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 800;
  color: inherit;
}
.Wiki__sidebar :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}
.Wiki__sidebar :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}
.Wiki__sidebar :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
.Wiki__sidebar :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}
.Wiki__sidebar :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.Wiki__sidebar :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}
.Wiki__sidebar :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.Wiki__sidebar :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-family: inherit;
  color: var(--tw-prose-kbd);
  box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
  font-size: 0.875em;
  border-radius: 0.3125rem;
  padding-top: 0.1875em;
  padding-right: 0.375em;
  padding-bottom: 0.1875em;
  padding-left: 0.375em;
}
.Wiki__sidebar :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-code);
  font-weight: 600;
  font-size: 0.875em;
}
.Wiki__sidebar :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: "`";
}
.Wiki__sidebar :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: "`";
}
.Wiki__sidebar :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.Wiki__sidebar :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.Wiki__sidebar :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.875em;
}
.Wiki__sidebar :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.9em;
}
.Wiki__sidebar :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.Wiki__sidebar :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.Wiki__sidebar :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.Wiki__sidebar :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-right: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-left: 1.1428571em;
}
.Wiki__sidebar :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
.Wiki__sidebar :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: none;
}
.Wiki__sidebar :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: none;
}
.Wiki__sidebar :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  width: 100%;
  table-layout: auto;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}
.Wiki__sidebar :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}
.Wiki__sidebar :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}
.Wiki__sidebar :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}
.Wiki__sidebar :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 0;
}
.Wiki__sidebar :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: baseline;
}
.Wiki__sidebar :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}
.Wiki__sidebar :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: top;
}
.Wiki__sidebar :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  text-align: left;
}
.Wiki__sidebar :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.Wiki__sidebar :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}
.Wiki__sidebar {
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: 17 24 39;
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: 255 255 255;
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgba(0, 0, 0, 0.5);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}
.Wiki__sidebar :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.Wiki__sidebar :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.Wiki__sidebar :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.375em;
}
.Wiki__sidebar :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.375em;
}
.Wiki__sidebar :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.Wiki__sidebar :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.Wiki__sidebar :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.Wiki__sidebar :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.Wiki__sidebar :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.Wiki__sidebar :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.Wiki__sidebar :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.Wiki__sidebar :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  padding-left: 1.625em;
}
.Wiki__sidebar :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.Wiki__sidebar :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.Wiki__sidebar :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.Wiki__sidebar :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.Wiki__sidebar :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}
.Wiki__sidebar :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}
.Wiki__sidebar :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.5714286em;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}
.Wiki__sidebar :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}
.Wiki__sidebar :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}
.Wiki__sidebar :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.Wiki__sidebar :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.Wiki__sidebar :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}
.Wiki__sidebar {
  font-size: 0.875rem;
  line-height: 1.7142857;
}
.Wiki__sidebar :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
  margin-bottom: 1.1428571em;
}
.Wiki__sidebar :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.2857143em;
  line-height: 1.5555556;
  margin-top: 0.8888889em;
  margin-bottom: 0.8888889em;
}
.Wiki__sidebar :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
  padding-left: 1.1111111em;
}
.Wiki__sidebar :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 2.1428571em;
  margin-top: 0;
  margin-bottom: 0.8em;
  line-height: 1.2;
}
.Wiki__sidebar :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.4285714em;
  margin-top: 1.6em;
  margin-bottom: 0.8em;
  line-height: 1.4;
}
.Wiki__sidebar :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.2857143em;
  margin-top: 1.5555556em;
  margin-bottom: 0.4444444em;
  line-height: 1.5555556;
}
.Wiki__sidebar :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.4285714em;
  margin-bottom: 0.5714286em;
  line-height: 1.4285714;
}
.Wiki__sidebar :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
}
.Wiki__sidebar :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
}
.Wiki__sidebar :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.Wiki__sidebar :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
}
.Wiki__sidebar :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8571429em;
  border-radius: 0.3125rem;
  padding-top: 0.1428571em;
  padding-right: 0.3571429em;
  padding-bottom: 0.1428571em;
  padding-left: 0.3571429em;
}
.Wiki__sidebar :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8571429em;
}
.Wiki__sidebar :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.9em;
}
.Wiki__sidebar :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
}
.Wiki__sidebar :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8571429em;
  line-height: 1.6666667;
  margin-top: 1.6666667em;
  margin-bottom: 1.6666667em;
  border-radius: 0.25rem;
  padding-top: 0.6666667em;
  padding-right: 1em;
  padding-bottom: 0.6666667em;
  padding-left: 1em;
}
.Wiki__sidebar :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
  margin-bottom: 1.1428571em;
  padding-left: 1.5714286em;
}
.Wiki__sidebar :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
  margin-bottom: 1.1428571em;
  padding-left: 1.5714286em;
}
.Wiki__sidebar :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.2857143em;
  margin-bottom: 0.2857143em;
}
.Wiki__sidebar :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.4285714em;
}
.Wiki__sidebar :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.4285714em;
}
.Wiki__sidebar :where(.prose-sm > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5714286em;
  margin-bottom: 0.5714286em;
}
.Wiki__sidebar :where(.prose-sm > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
}
.Wiki__sidebar :where(.prose-sm > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.1428571em;
}
.Wiki__sidebar :where(.prose-sm > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
}
.Wiki__sidebar :where(.prose-sm > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.1428571em;
}
.Wiki__sidebar :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5714286em;
  margin-bottom: 0.5714286em;
}
.Wiki__sidebar :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
  margin-bottom: 1.1428571em;
}
.Wiki__sidebar :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
}
.Wiki__sidebar :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.2857143em;
  padding-left: 1.5714286em;
}
.Wiki__sidebar :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2.8571429em;
  margin-bottom: 2.8571429em;
}
.Wiki__sidebar :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.Wiki__sidebar :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.Wiki__sidebar :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.Wiki__sidebar :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.Wiki__sidebar :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8571429em;
  line-height: 1.5;
}
.Wiki__sidebar :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 1em;
  padding-bottom: 0.6666667em;
  padding-left: 1em;
}
.Wiki__sidebar :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}
.Wiki__sidebar :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}
.Wiki__sidebar :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.6666667em;
  padding-right: 1em;
  padding-bottom: 0.6666667em;
  padding-left: 1em;
}
.Wiki__sidebar :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}
.Wiki__sidebar :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}
.Wiki__sidebar :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
}
.Wiki__sidebar :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.Wiki__sidebar :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8571429em;
  line-height: 1.3333333;
  margin-top: 0.6666667em;
}
.Wiki__sidebar :where(.prose-sm > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.Wiki__sidebar :where(.prose-sm > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}
@supports not (color: oklch(0% 0 0)) {
  .Wiki__sidebar :where(code):not(:where([class~="not-prose"] *, pre *)) {
    background-color: oklch(86% 0 0/1);
    background-color: var(--fallback-b3,oklch(var(--b3)/1));
  }
}
:root .Wiki__sidebar {
  --tw-prose-body: var(--fallback-bc,oklch(var(--bc)/0.8));
  --tw-prose-headings: var(--fallback-bc,oklch(var(--bc)/1));
  --tw-prose-lead: var(--fallback-bc,oklch(var(--bc)/1));
  --tw-prose-links: var(--fallback-bc,oklch(var(--bc)/1));
  --tw-prose-bold: var(--fallback-bc,oklch(var(--bc)/1));
  --tw-prose-counters: var(--fallback-bc,oklch(var(--bc)/1));
  --tw-prose-bullets: var(--fallback-bc,oklch(var(--bc)/0.5));
  --tw-prose-hr: var(--fallback-bc,oklch(var(--bc)/0.2));
  --tw-prose-quotes: var(--fallback-bc,oklch(var(--bc)/1));
  --tw-prose-quote-borders: var(--fallback-bc,oklch(var(--bc)/0.2));
  --tw-prose-captions: var(--fallback-bc,oklch(var(--bc)/0.5));
  --tw-prose-code: var(--fallback-bc,oklch(var(--bc)/1));
  --tw-prose-pre-code: var(--fallback-nc,oklch(var(--nc)/1));
  --tw-prose-pre-bg: var(--fallback-n,oklch(var(--n)/1));
  --tw-prose-th-borders: var(--fallback-bc,oklch(var(--bc)/0.5));
  --tw-prose-td-borders: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.Wiki__sidebar :where(code):not(:where([class~="not-prose"] *, pre *)) {
  padding: 1px 8px;
  border-radius: 1.9rem;
  border-radius: var(--rounded-badge);
  font-weight: normal;
  font-weight: initial;
  background-color: rgba(22, 22, 22, 0.1);
  background-color: var(--fallback-bc,oklch(var(--bc)/0.1));
}
.Wiki__sidebar :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *))::before,.Wiki__sidebar :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *))::after {
  display: none;
}
.Wiki__sidebar pre code {
  border-radius: 0;
  padding: 0;
}
.Wiki__sidebar :where(tbody tr, thead):not(:where([class~="not-prose"] *)) {
  border-bottom-color: rgba(22, 22, 22, 0.2);
  border-bottom-color: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.Wiki__sidebar {
  margin-top: 0.75rem;
}
.Wiki__sidebar :is(:where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
  margin-top: 0px;
  margin-bottom: 0.25rem;
}
.Wiki__sidebar :is(:where(img):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
  margin-left: 0px;
  margin-right: 0px;
}
.Wiki__sidebar ul > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * (1 - 0));
  margin-top: calc(1.5rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(1.5rem * calc(1 - 0));
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * 0);
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.Wiki__sidebar ul {
  border-left-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(241, 245, 249, 1);
  border-color: rgba(241, 245, 249, var(--tw-border-opacity));
}
.Wiki__sidebar ul:is([data-theme="dark"] *) {
  --tw-border-opacity: 1;
  border-color: rgba(30, 41, 59, 1);
  border-color: rgba(30, 41, 59, var(--tw-border-opacity));
}
@media (min-width: 1024px) {
  .Wiki__sidebar ul > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * (1 - 0));
    margin-top: calc(0.5rem * (1 - var(--tw-space-y-reverse)));
    margin-top: calc(0.5rem * calc(1 - 0));
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * 0);
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
  }
}
.Wiki__sidebar li a {

}
.Wiki__sidebar .Wiki__link-icon {
  display: none;
}
/* not present in HTML files, so placed outside layer */
.Wiki__link-icon {
  margin-right: 0.25rem;
  height: 1rem;
  width: 1rem;
}
@tailwind base;
@tailwind components;
@tailwind utilities;
/* auto-generated by django, cannot be in component (or it's gonna be striped) */
.Forms__form--basefilterform {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.Forms__form--basefilterform > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * (1 - 0));
  margin-top: calc(0.5rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(0.5rem * calc(1 - 0));
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * 0);
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
@media (min-width: 768px) {
  .Forms__form--basefilterform {
    flex-direction: row;
  }
  .Forms__form--basefilterform > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.5rem * 0);
    margin-right: calc(0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(0.5rem * (1 - 0));
    margin-left: calc(0.5rem * (1 - var(--tw-space-x-reverse)));
    margin-left: calc(0.5rem * calc(1 - 0));
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * (1 - 0));
    margin-top: calc(0px * (1 - var(--tw-space-y-reverse)));
    margin-top: calc(0px * calc(1 - 0));
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * 0);
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }
}
.Forms__form--basefilterform .Forms__select {
  height: 2rem;
  min-height: 2rem;
  padding-left: 0.75rem;
  padding-right: 2rem;
  font-size: 0.875rem;
  line-height: 2rem;
}
[dir="rtl"] .Forms__form--basefilterform .Forms__select {
  padding-left: 2rem;
  padding-right: 0.75rem;
}
.Forms__form--basefilterform .Forms__select {
  font-weight: 400;
}
.Forms__form--basefilterform .Forms__input[type="number"]::-webkit-inner-spin-button {
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: -0px;
}
.Forms__form--basefilterform .Forms__input {
  height: 2rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 0.875rem;
  line-height: 2rem;
}
.Forms__form--basefilterform .Forms__label-widget {
  padding-bottom: 0.25rem;
}
.Forms__form--basefilterform .Forms__widget {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.Forms__form--basefilterform .Forms__widget > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.125rem * 0);
  margin-right: calc(0.125rem * var(--tw-space-x-reverse));
  margin-left: calc(0.125rem * (1 - 0));
  margin-left: calc(0.125rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(0.125rem * calc(1 - 0));
  margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse)));
}
.Forms__form--basefilterform .Forms__field--buttons {
  align-self: flex-end;
}
/* all configuration forms rendered */
.Forms__form--basemodelform[class*="configurationform"] {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.Forms__form--basemodelform[class*="configurationform"] .Forms__field {
  width: 100%;
  flex-direction: column;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
@media (min-width: 768px) {
  .Forms__form--basemodelform[class*="configurationform"] .Forms__field {
    width: 50%;
    flex-direction: column;
  }
}
.Forms__form--basemodelform[class*="configurationform"] .Forms__field.Forms__field--buttons {
  width: 100%;
  flex-direction: row;
}
.Forms__form--basemodelform[class*="configurationform"] .Forms__label {
  font-weight: 700;
}
/* basically disables all the responsiveness to keep the layout */
.Forms__form--loginform,
.Forms__form--resetpasswordform,
.Forms__form--signupform {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.Forms__form--loginform .Forms__field, .Forms__form--resetpasswordform .Forms__field, .Forms__form--signupform .Forms__field {
  width: 100%;
  flex-direction: column;
}
.Forms__form--loginform .Forms__field.Forms__field--buttons, .Forms__form--resetpasswordform .Forms__field.Forms__field--buttons, .Forms__form--signupform .Forms__field.Forms__field--buttons {
  width: 100%;
  flex-direction: row;
}
/* loading indicator for buttons with htmx */
[hx-post] {
  position: relative;
}
[hx-post]:not(form).htmx-request:after {
  position: absolute;
  right: 0.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  font-size: 1.125rem;
  line-height: 1.75rem;
    content: "⏳";

    animation: flipHourglass 1.5s infinite;
    animation-direction: alternate;
    animation-delay: 500ms;
}
@keyframes flipHourglass {
  from, 20% {
    transform: rotate(0deg);
  }
  80%, to {
    transform: rotate(180deg);
  }
}
/* TODO: needed after daysiui migration to v4, probably better would be to drop it */
.btn {
  text-transform: uppercase;
}
@tailwind base;
@tailwind components;
@tailwind utilities;
@tailwind base;
@tailwind components;
@tailwind utilities;
.table-container {
  overflow-x: auto;
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
@media (min-width: 640px) {
  .table-container {
    border-radius: 0.5rem;
  }
}
@media (hover:hover) {
  .table-container table tr.hover:hover,.table-container table tr.hover:nth-child(even):hover {
    --tw-bg-opacity: 1;
    background-color: rgb(232, 232, 232);
    background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));
  }
}
.table-container table {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  border-radius: var(--rounded-box, 1rem);
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.table-container table :where(.table-pin-rows thead tr) {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 1;
  --tw-bg-opacity: 1;
  background-color: rgb(255, 255, 255);
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
}
.table-container table :where(.table-pin-rows tfoot tr) {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0px;
  z-index: 1;
  --tw-bg-opacity: 1;
  background-color: rgb(255, 255, 255);
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
}
.table-container table :where(.table-pin-cols tr th) {
  position: -webkit-sticky;
  position: sticky;
  left: 0px;
  right: 0px;
  --tw-bg-opacity: 1;
  background-color: rgb(255, 255, 255);
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
}
.table-container table:where([dir="rtl"], [dir="rtl"] *) {
  text-align: right;
}
.table-container table :where(th, td) {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  vertical-align: middle;
}
.table-container table tr.active,.table-container table tr.active:nth-child(even) {
  --tw-bg-opacity: 1;
  background-color: rgb(232, 232, 232);
  background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));
}
.table-container table :where(thead tr, tbody tr:not(:last-child), tbody tr:first-child:last-child) {
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-bottom-color: rgb(232, 232, 232);
  border-bottom-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));
}
.table-container table :where(thead, tfoot) {
  white-space: nowrap;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  color: rgba(22, 22, 22, 0.6);
  color: var(--fallback-bc,oklch(var(--bc)/0.6));
}
.table-container table :where(tfoot) {
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-top-color: rgb(232, 232, 232);
  border-top-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));
}
.table-container table :not(thead):not(tfoot) tr {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.table-container table :where(th, td) {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.table-container table {
  display: table;
  min-width: 100%;
}
@media (hover:hover) {
  .table-container table tbody a:hover {
    -webkit-text-decoration-line: underline;
            text-decoration-line: underline;
  }
}
.table-container table tbody a {
  cursor: pointer;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-line: none;
          text-decoration-line: none;
}
@supports (color:color-mix(in oklab,black,black)) {
  @media (hover:hover) {
    .table-container table tbody a:hover {
      color: color-mix(in oklab,rgb(123, 63, 244) 80%,black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.table-container table tbody a:hover {
        color: color-mix(in oklab,var(--fallback-s,oklch(var(--s)/1)) 80%,black);
      }
}
  }
}
.table-container table tbody a {
  --tw-text-opacity: 1;
  color: rgb(123, 63, 244);
  color: var(--fallback-s,oklch(var(--s)/var(--tw-text-opacity)));
}
.table-container table tbody a:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.table-container table tbody a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.table-container th.orderable a {
  position: relative;
  display: inline-block;
  width: 100%;
}
.table-container th.orderable a:after {
  position: absolute;
  right: 0px;
  float: right;
  display: inline-block;
  height: 1rem;
  width: 1rem;
  --tw-bg-opacity: 1;
  background-color: rgba(55, 65, 81, 1);
  background-color: rgba(55, 65, 81, var(--tw-bg-opacity));
  padding: 0.25rem;
  --tw-text-opacity: 1;
  color: rgb(244, 63, 94);
  color: var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity)));
    pointer-events: auto;
    -webkit-mask-size: cover;
            mask-size: cover;
    content: '';

    -webkit-mask: url("data:image/svg+xml; utf8, <svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M7 16V4m0 0L3 8m4-4l4 4m6 0v12m0 0l4-4m-4 4l-4-4\" /></svg>");

            mask: url("data:image/svg+xml; utf8, <svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M7 16V4m0 0L3 8m4-4l4 4m6 0v12m0 0l4-4m-4 4l-4-4\" /></svg>");
}
.table-container th.orderable.desc a:after {
  --tw-bg-opacity: 1;
  background-color: rgb(244, 63, 94);
  background-color: var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));
    -webkit-mask: url("data:image/svg+xml; utf8, <svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M3 4h13M3 8h9m-9 4h6m4 0l4-4m0 0l4 4m-4-4v12\" /></svg>");
            mask: url("data:image/svg+xml; utf8, <svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M3 4h13M3 8h9m-9 4h6m4 0l4-4m0 0l4 4m-4-4v12\" /></svg>");
}
.table-container th.orderable.asc a:after {
  --tw-bg-opacity: 1;
  background-color: rgb(244, 63, 94);
  background-color: var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));
    -webkit-mask: url("data:image/svg+xml; utf8, <svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M3 4h13M3 8h9m-9 4h9m5-4v12m0 0l-4-4m4 4l4-4\" /></svg>");
            mask: url("data:image/svg+xml; utf8, <svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M3 4h13M3 8h9m-9 4h9m5-4v12m0 0l-4-4m4 4l4-4\" /></svg>");
}
/* TODO: refactor pagination to btn-group */
.table-container .pagination-container {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.table-container ul.pagination {
  position: relative;
  display: inline-flex;
}
.table-container ul.pagination > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(-1px * 0);
  margin-right: calc(-1px * var(--tw-space-x-reverse));
  margin-left: calc(-1px * (1 - 0));
  margin-left: calc(-1px * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(-1px * calc(1 - 0));
  margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse)));
}
.table-container ul.pagination {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.table-container ul.pagination li a {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(209, 213, 219, 1);
  border-color: rgba(209, 213, 219, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  line-height: 1.25;
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, 1);
  color: rgba(107, 114, 128, var(--tw-text-opacity));
}
.table-container ul.pagination li a:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, 1);
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, 1);
  color: rgba(55, 65, 81, var(--tw-text-opacity));
}
.table-container ul.pagination li a:is([data-theme="dark"] *) {
  --tw-border-opacity: 1;
  border-color: rgba(55, 65, 81, 1);
  border-color: rgba(55, 65, 81, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(31, 41, 55, 1);
  background-color: rgba(31, 41, 55, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-text-opacity));
}
.table-container ul.pagination li a:hover:is([data-theme="dark"] *) {
  --tw-bg-opacity: 1;
  background-color: rgba(55, 65, 81, 1);
  background-color: rgba(55, 65, 81, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.table-container ul.pagination li.active a {
  --tw-bg-opacity: 1;
  background-color: rgba(239, 246, 255, 1);
  background-color: rgba(239, 246, 255, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(37, 99, 235, 1);
  color: rgba(37, 99, 235, var(--tw-text-opacity));
}
.table-container ul.pagination li.active a:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(219, 234, 254, 1);
  background-color: rgba(219, 234, 254, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(29, 78, 216, 1);
  color: rgba(29, 78, 216, var(--tw-text-opacity));
}
.table-container ul.pagination li.active a:is([data-theme="dark"] *) {
  --tw-border-opacity: 1;
  border-color: rgba(55, 65, 81, 1);
  border-color: rgba(55, 65, 81, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(55, 65, 81, 1);
  background-color: rgba(55, 65, 81, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.table-container ul.pagination li.previous {
  position: absolute;
  right: 100%;
}
.table-container ul.pagination li.next {
  position: absolute;
  left: 100%;
}
.table-container ul.pagination li:first-child a {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.table-container ul.pagination li:last-child a {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
@tailwind base;
@tailwind components;
@tailwind utilities;
[data-flag="true"] {
  font-size: 1.5rem;
  line-height: 2rem;
}
.FeatureCard__box {
  min-height: 100%;
  padding: 1rem;
}
@media (min-width: 768px) {
  .FeatureCard__box {
    width: 50%;
  }
}
@media (min-width: 1280px) {
  .FeatureCard__box {
    width: 25%;
  }
}
.FeatureCard__card {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255, 255, 255);
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
  padding: 1.5rem;
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
  transition-property: all;
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.FeatureCard__card:hover {
  --tw-translate-y: -0.5rem;
  transform: translate(var(--tw-translate-x), -0.5rem) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.FeatureCard__image {
  height: 10rem;
  width: 100%;
  border-radius: 0.25rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.FeatureCard__subtitle {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  --tw-text-opacity: 1;
  color: rgb(244, 63, 94);
  color: var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity)));
}
.FeatureCard__title {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(22, 22, 22);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
}
.FeatureCard__content {
  line-height: 1.625;
  --tw-text-opacity: 1;
  color: rgb(22, 22, 22);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
}
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);
  --tw-ring-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);
  --tw-ring-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
/*! tailwindcss v3.4.13 | MIT License | https://tailwindcss.com
 */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}
:root,
[data-theme] {
  background-color: rgb(255, 255, 255);
  background-color: var(--fallback-b1,oklch(var(--b1)/1));
  color: rgb(22, 22, 22);
  color: var(--fallback-bc,oklch(var(--bc)/1));
}
@supports not (color: oklch(0% 0 0)) {
  :root {
    color-scheme: light;
    --fallback-p: #491eff;
    --fallback-pc: #d4dbff;
    --fallback-s: #ff41c7;
    --fallback-sc: #fff9fc;
    --fallback-a: #00cfbd;
    --fallback-ac: #00100d;
    --fallback-n: #2b3440;
    --fallback-nc: #d7dde4;
    --fallback-b1: #ffffff;
    --fallback-b2: #e5e6e6;
    --fallback-b3: #e5e6e6;
    --fallback-bc: #1f2937;
    --fallback-in: #00b3f0;
    --fallback-inc: #000000;
    --fallback-su: #00ca92;
    --fallback-suc: #000000;
    --fallback-wa: #ffc22d;
    --fallback-wac: #000000;
    --fallback-er: #ff6f70;
    --fallback-erc: #000000;
  }
  @media (prefers-color-scheme: dark) {
    :root {
      color-scheme: dark;
      --fallback-p: #7582ff;
      --fallback-pc: #050617;
      --fallback-s: #ff71cf;
      --fallback-sc: #190211;
      --fallback-a: #00c7b5;
      --fallback-ac: #000e0c;
      --fallback-n: #2a323c;
      --fallback-nc: #a6adbb;
      --fallback-b1: #1d232a;
      --fallback-b2: #191e24;
      --fallback-b3: #15191e;
      --fallback-bc: #a6adbb;
      --fallback-in: #00b3f0;
      --fallback-inc: #000000;
      --fallback-su: #00ca92;
      --fallback-suc: #000000;
      --fallback-wa: #ffc22d;
      --fallback-wac: #000000;
      --fallback-er: #ff6f70;
      --fallback-erc: #000000;
    }
  }
}
html {
  -webkit-tap-highlight-color: transparent;
}
* {
  scrollbar-color: color-mix(in oklch, currentColor 35%, transparent) transparent;
}
*:hover {
  scrollbar-color: color-mix(in oklch, currentColor 60%, transparent) transparent;
}
:root {
  --p: 64.5032% 0.215403 16.4393;
  --b2: 93% 0 0;
  --b3: 86% 0 0;
  --bc: 20% 0 0;
  --ac: 16.6954% 0.034121 82.342715;
  --nc: 87.7082% 0.004808 262.829219;
  --inc: 15.241% 0.026093 230.793673;
  --suc: 17.0674% 0.050033 140.758265;
  --wac: 16.6604% 0.032836 83.424292;
  --erc: 14.2439% 0.032979 22.150603;
  --rounded-box: 1rem;
  --rounded-btn: 0.5rem;
  --rounded-badge: 1.9rem;
  --animation-btn: 0.25s;
  --animation-input: .2s;
  --btn-focus-scale: 0.95;
  --border-btn: 1px;
  --tab-border: 1px;
  --tab-radius: 0.5rem;
  --s: 55.1754% 0.249138 291.024678;
  --a: 83.4768% 0.170606 82.342715;
  --n: 38.5412% 0.024038 262.829219;
  --b1: 100% 0 0;
  --in: 76.2051% 0.130467 230.793673;
  --su: 85.3368% 0.250166 140.758265;
  --wa: 83.302% 0.164179 83.424292;
  --er: 71.2196% 0.164893 22.150603;
  --pc: 100% 0 0;
  --sc: 100% 0 0;
}
@media (prefers-color-scheme: dark) {
  :root {
    --p: 64.5032% 0.215403 16.4393;
    --b2: 19.1743% 0.028257 302.177655;
    --b3: 17.7311% 0.02613 302.177655;
    --bc: 84.1235% 0.006077 302.177655;
    --ac: 16.6954% 0.034121 82.342715;
    --nc: 87.7082% 0.004808 262.829219;
    --inc: 15.241% 0.026093 230.793673;
    --suc: 17.0674% 0.050033 140.758265;
    --wac: 16.6604% 0.032836 83.424292;
    --erc: 14.2439% 0.032979 22.150603;
    --rounded-box: 1rem;
    --rounded-btn: 0.5rem;
    --rounded-badge: 1.9rem;
    --animation-btn: 0.25s;
    --animation-input: .2s;
    --btn-focus-scale: 0.95;
    --border-btn: 1px;
    --tab-border: 1px;
    --tab-radius: 0.5rem;
    --s: 55.1754% 0.249138 291.024678;
    --a: 83.4768% 0.170606 82.342715;
    --n: 38.5412% 0.024038 262.829219;
    --b1: 20.6175% 0.030384 302.177655;
    --in: 76.2051% 0.130467 230.793673;
    --su: 85.3368% 0.250166 140.758265;
    --wa: 83.302% 0.164179 83.424292;
    --er: 71.2196% 0.164893 22.150603;
    --pc: 100% 0 0;
    --sc: 100% 0 0;
  }
}
[data-theme=light] {
  --p: 64.5032% 0.215403 16.4393;
  --b2: 93% 0 0;
  --b3: 86% 0 0;
  --bc: 20% 0 0;
  --ac: 16.6954% 0.034121 82.342715;
  --nc: 87.7082% 0.004808 262.829219;
  --inc: 15.241% 0.026093 230.793673;
  --suc: 17.0674% 0.050033 140.758265;
  --wac: 16.6604% 0.032836 83.424292;
  --erc: 14.2439% 0.032979 22.150603;
  --rounded-box: 1rem;
  --rounded-btn: 0.5rem;
  --rounded-badge: 1.9rem;
  --animation-btn: 0.25s;
  --animation-input: .2s;
  --btn-focus-scale: 0.95;
  --border-btn: 1px;
  --tab-border: 1px;
  --tab-radius: 0.5rem;
  --s: 55.1754% 0.249138 291.024678;
  --a: 83.4768% 0.170606 82.342715;
  --n: 38.5412% 0.024038 262.829219;
  --b1: 100% 0 0;
  --in: 76.2051% 0.130467 230.793673;
  --su: 85.3368% 0.250166 140.758265;
  --wa: 83.302% 0.164179 83.424292;
  --er: 71.2196% 0.164893 22.150603;
  --pc: 100% 0 0;
  --sc: 100% 0 0;
}
[data-theme=dark] {
  --p: 64.5032% 0.215403 16.4393;
  --b2: 19.1743% 0.028257 302.177655;
  --b3: 17.7311% 0.02613 302.177655;
  --bc: 84.1235% 0.006077 302.177655;
  --ac: 16.6954% 0.034121 82.342715;
  --nc: 87.7082% 0.004808 262.829219;
  --inc: 15.241% 0.026093 230.793673;
  --suc: 17.0674% 0.050033 140.758265;
  --wac: 16.6604% 0.032836 83.424292;
  --erc: 14.2439% 0.032979 22.150603;
  --rounded-box: 1rem;
  --rounded-btn: 0.5rem;
  --rounded-badge: 1.9rem;
  --animation-btn: 0.25s;
  --animation-input: .2s;
  --btn-focus-scale: 0.95;
  --border-btn: 1px;
  --tab-border: 1px;
  --tab-radius: 0.5rem;
  --s: 55.1754% 0.249138 291.024678;
  --a: 83.4768% 0.170606 82.342715;
  --n: 38.5412% 0.024038 262.829219;
  --b1: 20.6175% 0.030384 302.177655;
  --in: 76.2051% 0.130467 230.793673;
  --su: 85.3368% 0.250166 140.758265;
  --wa: 83.302% 0.164179 83.424292;
  --er: 71.2196% 0.164893 22.150603;
  --pc: 100% 0 0;
  --sc: 100% 0 0;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}
.prose {
  color: var(--tw-prose-body);
  max-width: 65ch;
}
.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-links);
  -webkit-text-decoration: underline;
  text-decoration: underline;
  font-weight: 500;
}
.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-bold);
  font-weight: 600;
}
.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}
.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
}
.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  font-weight: 400;
  color: var(--tw-prose-counters);
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  color: var(--tw-prose-bullets);
}
.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.25em;
}
.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}
.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-left-width: 0.25rem;
  border-left-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-left: 1em;
}
.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: open-quote;
}
.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: close-quote;
}
.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}
.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 900;
  color: inherit;
}
.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}
.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 800;
  color: inherit;
}
.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}
.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}
.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}
.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-family: inherit;
  color: var(--tw-prose-kbd);
  box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
  font-size: 0.875em;
  border-radius: 0.3125rem;
  padding-top: 0.1875em;
  padding-right: 0.375em;
  padding-bottom: 0.1875em;
  padding-left: 0.375em;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-code);
  font-weight: 600;
  font-size: 0.875em;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: "`";
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: "`";
}
.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.875em;
}
.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.9em;
}
.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-right: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-left: 1.1428571em;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: none;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: none;
}
.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  width: 100%;
  table-layout: auto;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}
.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}
.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}
.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}
.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 0;
}
.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: baseline;
}
.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}
.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: top;
}
.prose :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  text-align: left;
}
.prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}
.prose {
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: 17 24 39;
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: 255 255 255;
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgba(0, 0, 0, 0.5);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}
.prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.375em;
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.375em;
}
.prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.prose :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.prose :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.prose :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  padding-left: 1.625em;
}
.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}
.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}
.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.5714286em;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}
.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}
.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}
.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}
.prose-sm {
  font-size: 0.875rem;
  line-height: 1.7142857;
}
.prose-sm :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
  margin-bottom: 1.1428571em;
}
.prose-sm :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.2857143em;
  line-height: 1.5555556;
  margin-top: 0.8888889em;
  margin-bottom: 0.8888889em;
}
.prose-sm :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
  padding-left: 1.1111111em;
}
.prose-sm :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 2.1428571em;
  margin-top: 0;
  margin-bottom: 0.8em;
  line-height: 1.2;
}
.prose-sm :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.4285714em;
  margin-top: 1.6em;
  margin-bottom: 0.8em;
  line-height: 1.4;
}
.prose-sm :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.2857143em;
  margin-top: 1.5555556em;
  margin-bottom: 0.4444444em;
  line-height: 1.5555556;
}
.prose-sm :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.4285714em;
  margin-bottom: 0.5714286em;
  line-height: 1.4285714;
}
.prose-sm :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
}
.prose-sm :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
}
.prose-sm :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose-sm :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
}
.prose-sm :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8571429em;
  border-radius: 0.3125rem;
  padding-top: 0.1428571em;
  padding-right: 0.3571429em;
  padding-bottom: 0.1428571em;
  padding-left: 0.3571429em;
}
.prose-sm :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8571429em;
}
.prose-sm :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.9em;
}
.prose-sm :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
}
.prose-sm :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8571429em;
  line-height: 1.6666667;
  margin-top: 1.6666667em;
  margin-bottom: 1.6666667em;
  border-radius: 0.25rem;
  padding-top: 0.6666667em;
  padding-right: 1em;
  padding-bottom: 0.6666667em;
  padding-left: 1em;
}
.prose-sm :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
  margin-bottom: 1.1428571em;
  padding-left: 1.5714286em;
}
.prose-sm :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
  margin-bottom: 1.1428571em;
  padding-left: 1.5714286em;
}
.prose-sm :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.2857143em;
  margin-bottom: 0.2857143em;
}
.prose-sm :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.4285714em;
}
.prose-sm :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.4285714em;
}
.prose-sm :where(.prose-sm > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5714286em;
  margin-bottom: 0.5714286em;
}
.prose-sm :where(.prose-sm > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
}
.prose-sm :where(.prose-sm > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.1428571em;
}
.prose-sm :where(.prose-sm > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
}
.prose-sm :where(.prose-sm > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.1428571em;
}
.prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5714286em;
  margin-bottom: 0.5714286em;
}
.prose-sm :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
  margin-bottom: 1.1428571em;
}
.prose-sm :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
}
.prose-sm :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.2857143em;
  padding-left: 1.5714286em;
}
.prose-sm :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2.8571429em;
  margin-bottom: 2.8571429em;
}
.prose-sm :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-sm :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-sm :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-sm :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-sm :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8571429em;
  line-height: 1.5;
}
.prose-sm :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 1em;
  padding-bottom: 0.6666667em;
  padding-left: 1em;
}
.prose-sm :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}
.prose-sm :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}
.prose-sm :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.6666667em;
  padding-right: 1em;
  padding-bottom: 0.6666667em;
  padding-left: 1em;
}
.prose-sm :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}
.prose-sm :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}
.prose-sm :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
}
.prose-sm :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose-sm :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8571429em;
  line-height: 1.3333333;
  margin-top: 0.6666667em;
}
.prose-sm :where(.prose-sm > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-sm :where(.prose-sm > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}
.prose-lg {
  font-size: 1.125rem;
  line-height: 1.7777778;
}
.prose-lg :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
}
.prose-lg :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.2222222em;
  line-height: 1.4545455;
  margin-top: 1.0909091em;
  margin-bottom: 1.0909091em;
}
.prose-lg :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.6666667em;
  margin-bottom: 1.6666667em;
  padding-left: 1em;
}
.prose-lg :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 2.6666667em;
  margin-top: 0;
  margin-bottom: 0.8333333em;
  line-height: 1;
}
.prose-lg :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.6666667em;
  margin-top: 1.8666667em;
  margin-bottom: 1.0666667em;
  line-height: 1.3333333;
}
.prose-lg :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.3333333em;
  margin-top: 1.6666667em;
  margin-bottom: 0.6666667em;
  line-height: 1.5;
}
.prose-lg :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7777778em;
  margin-bottom: 0.4444444em;
  line-height: 1.5555556;
}
.prose-lg :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.prose-lg :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.prose-lg :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose-lg :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.prose-lg :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
  border-radius: 0.3125rem;
  padding-top: 0.2222222em;
  padding-right: 0.4444444em;
  padding-bottom: 0.2222222em;
  padding-left: 0.4444444em;
}
.prose-lg :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
}
.prose-lg :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8666667em;
}
.prose-lg :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.875em;
}
.prose-lg :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
  line-height: 1.75;
  margin-top: 2em;
  margin-bottom: 2em;
  border-radius: 0.375rem;
  padding-top: 1em;
  padding-right: 1.5em;
  padding-bottom: 1em;
  padding-left: 1.5em;
}
.prose-lg :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
  padding-left: 1.5555556em;
}
.prose-lg :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
  padding-left: 1.5555556em;
}
.prose-lg :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.6666667em;
  margin-bottom: 0.6666667em;
}
.prose-lg :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.4444444em;
}
.prose-lg :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.4444444em;
}
.prose-lg :where(.prose-lg > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.8888889em;
  margin-bottom: 0.8888889em;
}
.prose-lg :where(.prose-lg > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
}
.prose-lg :where(.prose-lg > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.3333333em;
}
.prose-lg :where(.prose-lg > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
}
.prose-lg :where(.prose-lg > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.3333333em;
}
.prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.8888889em;
  margin-bottom: 0.8888889em;
}
.prose-lg :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
}
.prose-lg :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
}
.prose-lg :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.6666667em;
  padding-left: 1.5555556em;
}
.prose-lg :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 3.1111111em;
  margin-bottom: 3.1111111em;
}
.prose-lg :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-lg :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-lg :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-lg :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-lg :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
  line-height: 1.5;
}
.prose-lg :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0.75em;
  padding-bottom: 0.75em;
  padding-left: 0.75em;
}
.prose-lg :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}
.prose-lg :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}
.prose-lg :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.75em;
  padding-right: 0.75em;
  padding-bottom: 0.75em;
  padding-left: 0.75em;
}
.prose-lg :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}
.prose-lg :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}
.prose-lg :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.prose-lg :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose-lg :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
  line-height: 1.5;
  margin-top: 1em;
}
.prose-lg :where(.prose-lg > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-lg :where(.prose-lg > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}
.alert {
  display: grid;
  width: 100%;
  grid-auto-flow: row;
  align-content: flex-start;
  align-items: center;
  justify-items: center;
  grid-gap: 1rem;
  gap: 1rem;
  text-align: center;
  border-radius: 1rem;
  border-radius: var(--rounded-box, 1rem);
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(232, 232, 232);
  border-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));
  padding: 1rem;
  --tw-text-opacity: 1;
  color: rgb(22, 22, 22);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  --alert-bg: var(--fallback-b2,oklch(var(--b2)/1));
  --alert-bg-mix: var(--fallback-b1,oklch(var(--b1)/1));
  background-color: rgb(232, 232, 232);
  background-color: var(--alert-bg);
}
@media (min-width: 640px) {
  .alert {
    grid-auto-flow: column;
    grid-template-columns: auto minmax(auto,1fr);
    justify-items: start;
    text-align: left;
  }
}
.avatar {
  position: relative;
  display: inline-flex;
}
.avatar > div {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.avatar img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.avatar.placeholder > div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transition-duration: 200ms;
  height: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  padding-left: 0.563rem;
  padding-right: 0.563rem;
  border-radius: 1.9rem;
  border-radius: var(--rounded-badge, 1.9rem);
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(232, 232, 232);
  border-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(255, 255, 255);
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(22, 22, 22);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
}
.breadcrumbs {
  max-width: 100%;
  overflow-x: auto;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.breadcrumbs > ul,
  .breadcrumbs > ol {
  display: flex;
  align-items: center;
  white-space: nowrap;
  min-height: -moz-min-content;
  min-height: -webkit-min-content;
  min-height: min-content;
}
.breadcrumbs > ul > li, .breadcrumbs > ol > li {
  display: flex;
  align-items: center;
}
.breadcrumbs > ul > li > a, .breadcrumbs > ol > li > a {
  display: flex;
  cursor: pointer;
  align-items: center;
}
@media (hover:hover) {
  .breadcrumbs > ul > li > a:hover, .breadcrumbs > ol > li > a:hover {
    -webkit-text-decoration-line: underline;
            text-decoration-line: underline;
  }
  .link-hover:hover {
    -webkit-text-decoration-line: underline;
            text-decoration-line: underline;
  }
  .checkbox-primary:hover {
    --tw-border-opacity: 1;
    border-color: rgb(244, 63, 94);
    border-color: var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)));
  }
  .label a:hover {
    --tw-text-opacity: 1;
    color: rgb(22, 22, 22);
    color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  }
  .menu li > *:not(ul):not(.menu-title):not(details):not(.btn):active,
.menu li > *:not(ul):not(.menu-title):not(details):not(.btn).active,
.menu li > details > summary:active {
    --tw-bg-opacity: 1;
    background-color: rgb(61, 68, 81);
    background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
    --tw-text-opacity: 1;
    color: rgb(213, 214, 218);
    color: var(--fallback-nc,oklch(var(--nc)/var(--tw-text-opacity)));
  }
  .table tr.hover:hover,
  .table tr.hover:nth-child(even):hover {
    --tw-bg-opacity: 1;
    background-color: rgb(232, 232, 232);
    background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));
  }
  .table-zebra tr.hover:hover,
  .table-zebra tr.hover:nth-child(even):hover {
    --tw-bg-opacity: 1;
    background-color: rgb(209, 209, 209);
    background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
  }
}
.btn {
  display: inline-flex;
  height: 3rem;
  min-height: 3rem;
  flex-shrink: 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border-radius: var(--rounded-btn, 0.5rem);
  border-color: transparent;
  border-color: oklch(93% 0 0 / 1);
  border-color: oklch(var(--btn-color, var(--b2)) / var(--tw-border-opacity));
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1em;
  gap: 0.5rem;
  font-weight: 600;
  -webkit-text-decoration-line: none;
          text-decoration-line: none;
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  border-width: 1px;
  border-width: var(--border-btn, 1px);
  transition-property: color, background-color, border-color, opacity, box-shadow, transform;
  --tw-text-opacity: 1;
  color: rgb(22, 22, 22);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
  outline-color: rgb(22, 22, 22);
  outline-color: var(--fallback-bc,oklch(var(--bc)/1));
  background-color: rgb(232, 232, 232);
  background-color: oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity));
  --tw-bg-opacity: 1;
  --tw-border-opacity: 1;
}
.btn-disabled,
  .btn[disabled],
  .btn:disabled {
  pointer-events: none;
}
.btn-square {
  height: 3rem;
  width: 3rem;
  padding: 0px;
}
.btn-circle {
  height: 3rem;
  width: 3rem;
  border-radius: 9999px;
  padding: 0px;
}
:where(.btn:is(input[type="checkbox"])),
:where(.btn:is(input[type="radio"])) {
  width: auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.btn:is(input[type="checkbox"]):after,
.btn:is(input[type="radio"]):after {
  --tw-content: attr(aria-label);
  content: attr(aria-label);
  content: var(--tw-content);
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  border-radius: var(--rounded-box, 1rem);
}
.card:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 2rem;
  padding: var(--padding-card, 2rem);
  gap: 0.5rem;
}
.card-body :where(p) {
  flex-grow: 1;
}
.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem;
}
.card figure {
  display: flex;
  align-items: center;
  justify-content: center;
}
.card.image-full {
  display: grid;
}
.card.image-full:before {
  position: relative;
  content: "";
  z-index: 10;
  border-radius: 1rem;
  border-radius: var(--rounded-box, 1rem);
  --tw-bg-opacity: 1;
  background-color: rgb(61, 68, 81);
  background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
  opacity: 0.75;
}
.card.image-full:before,
    .card.image-full > * {
  grid-column-start: 1;
  grid-row-start: 1;
}
.card.image-full > figure img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card.image-full > .card-body {
  position: relative;
  z-index: 20;
  --tw-text-opacity: 1;
  color: rgb(213, 214, 218);
  color: var(--fallback-nc,oklch(var(--nc)/var(--tw-text-opacity)));
}
.chat {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-column-gap: 0.75rem;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.chat-image {
  grid-row: span 2 / span 2;
  align-self: flex-end;
}
.chat-header {
  grid-row-start: 1;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.chat-bubble {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  max-width: 90%;
  border-radius: 1rem;
  border-radius: var(--rounded-box, 1rem);
  min-height: 2.75rem;
  min-width: 2.75rem;
  --tw-bg-opacity: 1;
  background-color: rgb(61, 68, 81);
  background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(213, 214, 218);
  color: var(--fallback-nc,oklch(var(--nc)/var(--tw-text-opacity)));
}
.chat-bubble:before {
  position: absolute;
  bottom: 0px;
  height: 0.75rem;
  width: 0.75rem;
  background-color: inherit;
  content: "";
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.chat-start {
  align-items: start;
  justify-items: start;
  place-items: start;
  grid-template-columns: auto 1fr;
}
.chat-start .chat-header {
  grid-column-start: 2;
}
.chat-start .chat-footer {
  grid-column-start: 2;
}
.chat-start .chat-image {
  grid-column-start: 1;
}
.chat-start .chat-bubble {
  grid-column-start: 2;
  border-bottom-left-radius: 0px;
}
.chat-start .chat-bubble:before {
  -webkit-mask-image: url("data:image/svg+xml,%3csvg width=%273%27 height=%273%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath fill=%27black%27 d=%27m 0 3 L 3 3 L 3 0 C 3 1 1 3 0 3%27/%3e%3c/svg%3e");
          mask-image: url("data:image/svg+xml,%3csvg width=%273%27 height=%273%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath fill=%27black%27 d=%27m 0 3 L 3 3 L 3 0 C 3 1 1 3 0 3%27/%3e%3c/svg%3e");
  left: -0.749rem;
}
[dir="rtl"] .chat-start .chat-bubble:before {
  -webkit-mask-image: url("data:image/svg+xml,%3csvg width=%273%27 height=%273%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath fill=%27black%27 d=%27m 0 3 L 1 3 L 3 3 C 2 3 0 1 0 0%27/%3e%3c/svg%3e");
          mask-image: url("data:image/svg+xml,%3csvg width=%273%27 height=%273%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath fill=%27black%27 d=%27m 0 3 L 1 3 L 3 3 C 2 3 0 1 0 0%27/%3e%3c/svg%3e");
}
.chat-end {
  align-items: end;
  justify-items: end;
  place-items: end;
  grid-template-columns: 1fr auto;
}
.chat-end .chat-header {
  grid-column-start: 1;
}
.chat-end .chat-footer {
  grid-column-start: 1;
}
.chat-end .chat-image {
  grid-column-start: 2;
}
.chat-end .chat-bubble {
  grid-column-start: 1;
  border-bottom-right-radius: 0px;
}
.chat-end .chat-bubble:before {
  -webkit-mask-image: url("data:image/svg+xml,%3csvg width=%273%27 height=%273%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath fill=%27black%27 d=%27m 0 3 L 1 3 L 3 3 C 2 3 0 1 0 0%27/%3e%3c/svg%3e");
          mask-image: url("data:image/svg+xml,%3csvg width=%273%27 height=%273%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath fill=%27black%27 d=%27m 0 3 L 1 3 L 3 3 C 2 3 0 1 0 0%27/%3e%3c/svg%3e");
  left: 99.9%;
}
[dir="rtl"] .chat-end .chat-bubble:before {
  -webkit-mask-image: url("data:image/svg+xml,%3csvg width=%273%27 height=%273%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath fill=%27black%27 d=%27m 0 3 L 3 3 L 3 0 C 3 1 1 3 0 3%27/%3e%3c/svg%3e");
          mask-image: url("data:image/svg+xml,%3csvg width=%273%27 height=%273%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath fill=%27black%27 d=%27m 0 3 L 3 3 L 3 0 C 3 1 1 3 0 3%27/%3e%3c/svg%3e");
}
.checkbox {
  flex-shrink: 0;
  --chkbg: var(--fallback-bc,oklch(var(--bc)/1));
  --chkfg: var(--fallback-b1,oklch(var(--b1)/1));
  height: 1.5rem;
  width: 1.5rem;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.5rem;
  border-radius: var(--rounded-btn, 0.5rem);
  border-width: 1px;
  border-color: rgba(22, 22, 22, 0.2);
  border-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-border-opacity)));
  --tw-border-opacity: 0.2;
}
.collapse:not(td):not(tr):not(colgroup) {
  visibility: visible;
}
.collapse {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-rows: auto 0fr;
  transition: grid-template-rows 0.2s;
  width: 100%;
  border-radius: 1rem;
  border-radius: var(--rounded-box, 1rem);
}
.collapse-title,
.collapse > input[type="checkbox"],
.collapse > input[type="radio"],
.collapse-content {
  grid-column-start: 1;
  grid-row-start: 1;
}
.collapse > input[type="checkbox"],
.collapse > input[type="radio"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0;
}
.collapse-content {
  visibility: hidden;
  grid-column-start: 1;
  grid-row-start: 2;
  min-height: 0px;
  transition: visibility 0.2s;
  transition: padding 0.2s ease-out, background-color 0.2s ease-out;
  padding-left: 1rem;
  padding-right: 1rem;
  cursor: inherit;
}
.collapse[open],
.collapse-open,
.collapse:focus:not(.collapse-close) {
  grid-template-rows: auto 1fr;
}
.collapse:not(.collapse-close):has(> input[type="checkbox"]:checked),
.collapse:not(.collapse-close):has(> input[type="radio"]:checked) {
  grid-template-rows: auto 1fr;
}
.collapse[open] > .collapse-content,
.collapse-open > .collapse-content,
.collapse:focus:not(.collapse-close) > .collapse-content,
.collapse:not(.collapse-close) > input[type="checkbox"]:checked ~ .collapse-content,
.collapse:not(.collapse-close) > input[type="radio"]:checked ~ .collapse-content {
  visibility: visible;
  min-height: -moz-fit-content;
  min-height: -webkit-fit-content;
  min-height: fit-content;
}
.divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
  margin-top: 1rem;
  margin-bottom: 1rem;
  height: 1rem;
  white-space: nowrap;
}
.divider:before,
  .divider:after {
  height: 0.125rem;
  width: 100%;
  flex-grow: 1;
  --tw-content: '';
  content: '';
  content: var(--tw-content);
  background-color: rgba(22, 22, 22, 0.1);
  background-color: var(--fallback-bc,oklch(var(--bc)/0.1));
}
@media (hover: hover) {
  .btm-nav > *.disabled:hover,
      .btm-nav > *[disabled]:hover {
    pointer-events: none;
    --tw-border-opacity: 0;
    background-color: rgba(61, 68, 81, 0.1);
    background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
    --tw-bg-opacity: 0.1;
    color: rgba(22, 22, 22, 0.2);
    color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
    --tw-text-opacity: 0.2;
  }
  .btn:hover {
    --tw-border-opacity: 1;
    border-color: rgb(209, 209, 209);
    border-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-border-opacity)));
    --tw-bg-opacity: 1;
    background-color: rgb(209, 209, 209);
    background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .btn:hover {
      background-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
      border-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.btn:hover {
        background-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity, 1)) 90%,
            black
          );
        border-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-border-opacity, 1)) 90%,
            black
          );
      }
}
  }
  @supports not (color: oklch(0% 0 0)) {
    .btn:hover {
      background-color: var(--btn-color, var(--fallback-b2));
      border-color: var(--btn-color, var(--fallback-b2));
    }
  }
  .btn.glass:hover {
    --glass-opacity: 25%;
    --glass-border-opacity: 15%;
  }
  .btn-ghost:hover {
    border-color: transparent;
  }
  @supports (color: oklch(0% 0 0)) {
    .btn-ghost:hover {
      background-color: oklch(20% 0 0/0.2);
      background-color: var(--fallback-bc,oklch(var(--bc)/0.2));
    }
  }
  .btn-link:hover {
    border-color: transparent;
    background-color: transparent;
    -webkit-text-decoration-line: underline;
            text-decoration-line: underline;
  }
  .btn-outline:hover {
    --tw-border-opacity: 1;
    border-color: rgb(22, 22, 22);
    border-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-border-opacity)));
    --tw-bg-opacity: 1;
    background-color: rgb(22, 22, 22);
    background-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-bg-opacity)));
    --tw-text-opacity: 1;
    color: rgb(255, 255, 255);
    color: var(--fallback-b1,oklch(var(--b1)/var(--tw-text-opacity)));
  }
  .btn-outline.btn-primary:hover {
    --tw-text-opacity: 1;
    color: rgb(255, 255, 255);
    color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .btn-outline.btn-primary:hover {
      background-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
      border-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.btn-outline.btn-primary:hover {
        background-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
      }
}
  }
  .btn-outline.btn-secondary:hover {
    --tw-text-opacity: 1;
    color: rgb(255, 255, 255);
    color: var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .btn-outline.btn-secondary:hover {
      background-color: color-mix(in oklab, rgb(123, 63, 244) 90%, black);
      border-color: color-mix(in oklab, rgb(123, 63, 244) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.btn-outline.btn-secondary:hover {
        background-color: color-mix(in oklab, var(--fallback-s,oklch(var(--s)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-s,oklch(var(--s)/1)) 90%, black);
      }
}
  }
  .btn-outline.btn-accent:hover {
    --tw-text-opacity: 1;
    color: rgb(22, 13, 0);
    color: var(--fallback-ac,oklch(var(--ac)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .btn-outline.btn-accent:hover {
      background-color: color-mix(in oklab, rgb(255, 188, 10) 90%, black);
      border-color: color-mix(in oklab, rgb(255, 188, 10) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.btn-outline.btn-accent:hover {
        background-color: color-mix(in oklab, var(--fallback-a,oklch(var(--a)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-a,oklch(var(--a)/1)) 90%, black);
      }
}
  }
  .btn-outline.btn-success:hover {
    --tw-text-opacity: 1;
    color: rgb(3, 20, 1);
    color: var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .btn-outline.btn-success:hover {
      background-color: color-mix(in oklab, rgb(93, 244, 63) 90%, black);
      border-color: color-mix(in oklab, rgb(93, 244, 63) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.btn-outline.btn-success:hover {
        background-color: color-mix(in oklab, var(--fallback-su,oklch(var(--su)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-su,oklch(var(--su)/1)) 90%, black);
      }
}
  }
  .btn-outline.btn-info:hover {
    --tw-text-opacity: 1;
    color: rgb(2, 14, 21);
    color: var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .btn-outline.btn-info:hover {
      background-color: color-mix(in oklab, rgb(69, 192, 245) 90%, black);
      border-color: color-mix(in oklab, rgb(69, 192, 245) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.btn-outline.btn-info:hover {
        background-color: color-mix(in oklab, var(--fallback-in,oklch(var(--in)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-in,oklch(var(--in)/1)) 90%, black);
      }
}
  }
  .btn-outline.btn-warning:hover {
    --tw-text-opacity: 1;
    color: rgb(21, 13, 0);
    color: var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .btn-outline.btn-warning:hover {
      background-color: color-mix(in oklab, rgb(251, 189, 35) 90%, black);
      border-color: color-mix(in oklab, rgb(251, 189, 35) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.btn-outline.btn-warning:hover {
        background-color: color-mix(in oklab, var(--fallback-wa,oklch(var(--wa)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-wa,oklch(var(--wa)/1)) 90%, black);
      }
}
  }
  .btn-outline.btn-error:hover {
    --tw-text-opacity: 1;
    color: rgb(21, 4, 4);
    color: var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .btn-outline.btn-error:hover {
      background-color: color-mix(in oklab, rgb(248, 114, 114) 90%, black);
      border-color: color-mix(in oklab, rgb(248, 114, 114) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.btn-outline.btn-error:hover {
        background-color: color-mix(in oklab, var(--fallback-er,oklch(var(--er)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-er,oklch(var(--er)/1)) 90%, black);
      }
}
  }
  .btn-disabled:hover,
    .btn[disabled]:hover,
    .btn:disabled:hover {
    --tw-border-opacity: 0;
    background-color: rgba(61, 68, 81, 0.2);
    background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
    --tw-bg-opacity: 0.2;
    color: rgba(22, 22, 22, 0.2);
    color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
    --tw-text-opacity: 0.2;
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .btn:is(input[type="checkbox"]:checked):hover, .btn:is(input[type="radio"]:checked):hover {
      background-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
      border-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.btn:is(input[type="checkbox"]:checked):hover, .btn:is(input[type="radio"]:checked):hover {
        background-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
      }
}
  }
  :where(.menu li:not(.menu-title):not(.disabled) > *:not(ul):not(details):not(.menu-title)):not(.active):not(.btn):hover, :where(.menu li:not(.menu-title):not(.disabled) > details > summary:not(.menu-title)):not(.active):not(.btn):hover {
    cursor: pointer;
    outline: 2px solid transparent;
    outline-offset: 2px;
  }
  @supports (color: oklch(0% 0 0)) {
    :where(.menu li:not(.menu-title):not(.disabled) > *:not(ul):not(details):not(.menu-title)):not(.active):not(.btn):hover, :where(.menu li:not(.menu-title):not(.disabled) > details > summary:not(.menu-title)):not(.active):not(.btn):hover {
      background-color: oklch(20% 0 0/0.1);
      background-color: var(--fallback-bc,oklch(var(--bc)/0.1));
    }
  }
}
.footer {
  display: grid;
  width: 100%;
  grid-auto-flow: row;
  align-items: start;
  justify-items: start;
  place-items: start;
  grid-column-gap: 1rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  grid-row-gap: 2.5rem;
  row-gap: 2.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.footer > * {
  display: grid;
  align-items: start;
  justify-items: start;
  place-items: start;
  grid-gap: 0.5rem;
  gap: 0.5rem;
}
@media (min-width: 48rem) {
  .footer {
    grid-auto-flow: column;
  }
  .footer-center {
    grid-auto-flow: row dense;
  }
}
.form-control {
  display: flex;
  flex-direction: column;
}
.label {
  display: flex;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: center;
  justify-content: space-between;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.input {
  flex-shrink: 1;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 3rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 1rem;
  line-height: 2;
  line-height: 1.5rem;
  border-radius: 0.5rem;
  border-radius: var(--rounded-btn, 0.5rem);
  border-width: 1px;
  border-color: transparent;
  --tw-bg-opacity: 1;
  background-color: rgb(255, 255, 255);
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
}
.input[type="number"]::-webkit-inner-spin-button,
.input-md[type="number"]::-webkit-inner-spin-button {
  margin-top: -1rem;
  margin-bottom: -1rem;
  margin-right: -1rem;
}
.join {
  display: inline-flex;
  align-items: stretch;
  border-radius: 0.5rem;
  border-radius: var(--rounded-btn, 0.5rem);
}
.join :where(.join-item) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.join .join-item:not(:first-child):not(:last-child),
  .join *:not(:first-child):not(:last-child) .join-item {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.join .join-item:first-child:not(:last-child),
  .join *:first-child:not(:last-child) .join-item {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.join .dropdown .join-item:first-child:not(:last-child),
  .join *:first-child:not(:last-child) .dropdown .join-item {
  border-top-right-radius: inherit;
  border-bottom-right-radius: inherit;
}
.join :where(.join-item:first-child:not(:last-child)),
  .join :where(*:first-child:not(:last-child) .join-item) {
  border-bottom-left-radius: inherit;
  border-top-left-radius: inherit;
}
.join .join-item:last-child:not(:first-child),
  .join *:last-child:not(:first-child) .join-item {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.join :where(.join-item:last-child:not(:first-child)),
  .join :where(*:last-child:not(:first-child) .join-item) {
  border-top-right-radius: inherit;
  border-bottom-right-radius: inherit;
}
@supports not selector(:has(*)) {
  :where(.join *) {
    border-radius: inherit;
  }
}
@supports selector(:has(*)) {
  :where(.join *:has(.join-item)) {
    border-radius: inherit;
  }
}
.link {
  cursor: pointer;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
.link-hover {
  -webkit-text-decoration-line: none;
          text-decoration-line: none;
}
.menu {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.5rem;
}
.menu :where(li ul) {
  position: relative;
  white-space: nowrap;
  margin-left: 1rem;
  padding-left: 0.5rem;
}
.menu :where(li:not(.menu-title) > *:not(ul):not(details):not(.menu-title):not(.btn)), .menu :where(li:not(.menu-title) > details > summary:not(.menu-title)) {
  display: grid;
  grid-auto-flow: column;
  align-content: flex-start;
  align-items: center;
  grid-gap: 0.5rem;
  gap: 0.5rem;
  grid-auto-columns: minmax(auto, -webkit-max-content) auto -webkit-max-content;
  grid-auto-columns: minmax(auto, max-content) auto max-content;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.menu li.disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: rgba(22, 22, 22, 0.3);
  color: var(--fallback-bc,oklch(var(--bc)/0.3));
}
.menu :where(li > .menu-dropdown:not(.menu-dropdown-show)) {
  display: none;
}
:where(.menu li) {
  position: relative;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: stretch;
}
:where(.menu li) .badge {
  justify-self: end;
}
.modal {
  pointer-events: none;
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  margin: 0px;
  display: grid;
  height: 100%;
  max-height: none;
  width: 100%;
  max-width: none;
  justify-items: center;
  padding: 0px;
  opacity: 0;
  overscroll-behavior: contain;
  z-index: 999;
  background-color: transparent;
  color: inherit;
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transition-property: transform, opacity, visibility;
  overflow-y: hidden;
}
:where(.modal) {
  align-items: center;
}
.modal-box {
  max-height: calc(100vh - 5em);
  grid-column-start: 1;
  grid-row-start: 1;
  width: 91.666667%;
  max-width: 32rem;
  --tw-scale-x: .9;
  --tw-scale-y: .9;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(.9) scaleY(.9);
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  border-bottom-right-radius: 1rem;
  border-bottom-right-radius: var(--rounded-box, 1rem);
  border-bottom-left-radius: 1rem;
  border-bottom-left-radius: var(--rounded-box, 1rem);
  border-top-left-radius: 1rem;
  border-top-left-radius: var(--rounded-box, 1rem);
  border-top-right-radius: 1rem;
  border-top-right-radius: var(--rounded-box, 1rem);
  --tw-bg-opacity: 1;
  background-color: rgb(255, 255, 255);
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
  padding: 1.5rem;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transition-duration: 200ms;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.modal-open,
.modal:target,
.modal-toggle:checked + .modal,
.modal[open] {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}
:root:has(:is(.modal-open, .modal:target, .modal-toggle:checked + .modal, .modal[open])) {
  overflow: hidden;
  scrollbar-gutter: stable;
}
.navbar {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  padding: var(--navbar-padding, 0.5rem);
  min-height: 4rem;
  width: 100%;
}
:where(.navbar > *:not(script):not(style)) {
  display: inline-flex;
  align-items: center;
}
.progress {
  position: relative;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  overflow: hidden;
  height: 0.5rem;
  border-radius: 1rem;
  border-radius: var(--rounded-box, 1rem);
  background-color: rgba(22, 22, 22, 0.2);
  background-color: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.radial-progress {
  position: relative;
  display: inline-grid;
  height: 5rem;
  height: var(--size);
  width: 5rem;
  width: var(--size);
  align-content: center;
  justify-content: center;
  place-content: center;
  border-radius: 9999px;
  background-color: transparent;
  vertical-align: middle;
  box-sizing: content-box;
  --value: 0;
  --size: 5rem;
  --thickness: calc(var(--size) / 10);
}
.radial-progress::-moz-progress-bar {
  -moz-appearance: none;
       appearance: none;
  background-color: transparent;
}
.radial-progress::-webkit-progress-value {
  -webkit-appearance: none;
          appearance: none;
  background-color: transparent;
}
.radial-progress::-webkit-progress-bar {
  -webkit-appearance: none;
          appearance: none;
  background-color: transparent;
}
.radial-progress:before,
.radial-progress:after {
  position: absolute;
  border-radius: 9999px;
  content: "";
}
.radial-progress:before {
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background: radial-gradient(farthest-side, currentColor 98%, rgba(0,0,0,0)) top/var(--thickness) var(--thickness)
      no-repeat,
    conic-gradient(currentColor calc(var(--value) * 1%), rgba(0,0,0,0) 0);
  -webkit-mask: radial-gradient(
    farthest-side,
    rgba(0,0,0,0) calc(99% - var(--thickness)),
    #000 calc(100% - var(--thickness))
  );
  mask: radial-gradient(
    farthest-side,
    rgba(0,0,0,0) calc(99% - var(--thickness)),
    #000 calc(100% - var(--thickness))
  );
}
.radial-progress:after {
  top: calc(50% - var(--thickness) / 2);
  right: calc(50% - var(--thickness) / 2);
  bottom: calc(50% - var(--thickness) / 2);
  left: calc(50% - var(--thickness) / 2);
  transform: rotate(calc(var(--value) * 3.6deg - 90deg)) translate(calc(var(--size) / 2 - 50%));
  background-color: currentColor;
}
.radio {
  flex-shrink: 0;
  --chkbg: var(--bc);
  height: 1.5rem;
  width: 1.5rem;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 9999px;
  border-width: 1px;
  border-color: rgba(22, 22, 22, 0.2);
  border-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-border-opacity)));
  --tw-border-opacity: 0.2;
}
.range {
  height: 1.5rem;
  width: 100%;
  cursor: pointer;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  --range-shdw: var(--fallback-bc,oklch(var(--bc)/1));
  overflow: hidden;
  border-radius: 1rem;
  border-radius: var(--rounded-box, 1rem);
  background-color: transparent;
}
.range:focus {
  outline: none;
}
.select {
  display: inline-flex;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 3rem;
  min-height: 3rem;
  padding-left: 1rem;
  padding-right: 2.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  line-height: 2;
  border-radius: 0.5rem;
  border-radius: var(--rounded-btn, 0.5rem);
  border-width: 1px;
  border-color: transparent;
  --tw-bg-opacity: 1;
  background-color: rgb(255, 255, 255);
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1px + 50%),
    calc(100% - 16.1px) calc(1px + 50%);
  background-size: 4px 4px,
    4px 4px;
  background-repeat: no-repeat;
}
.select[multiple] {
  height: auto;
}
.stats {
  display: inline-grid;
  border-radius: 1rem;
  border-radius: var(--rounded-box, 1rem);
  --tw-bg-opacity: 1;
  background-color: rgb(255, 255, 255);
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(22, 22, 22);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
}
:where(.stats) {
  grid-auto-flow: column;
  overflow-x: auto;
}
.stat {
  display: inline-grid;
  width: 100%;
  grid-template-columns: repeat(1, 1fr);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  border-color: rgba(22, 22, 22, 0.1);
  border-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-border-opacity)));
  --tw-border-opacity: 0.1;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.stat-figure {
  grid-column-start: 2;
  grid-row: span 3 / span 3;
  grid-row-start: 1;
  align-self: center;
  justify-self: center;
  place-self: center;
  justify-self: end;
}
.stat-title {
  grid-column-start: 1;
  white-space: nowrap;
  color: rgba(22, 22, 22, 0.6);
  color: var(--fallback-bc,oklch(var(--bc)/0.6));
}
.stat-value {
  grid-column-start: 1;
  white-space: nowrap;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 800;
}
.stat-desc {
  grid-column-start: 1;
  white-space: nowrap;
  font-size: 0.75rem;
  line-height: 1rem;
  color: rgba(22, 22, 22, 0.6);
  color: var(--fallback-bc,oklch(var(--bc)/0.6));
}
.stat-actions {
  grid-column-start: 1;
  white-space: nowrap;
  margin-top: 1rem;
}
.steps .step {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-template-columns: auto;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-template-rows: 40px 1fr;
  align-items: center;
  justify-items: center;
  place-items: center;
  text-align: center;
  min-width: 4rem;
}
.swap {
  position: relative;
  display: inline-grid;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-content: center;
  justify-content: center;
  place-content: center;
  cursor: pointer;
}
.swap > * {
  grid-column-start: 1;
  grid-row-start: 1;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transition-property: transform, opacity;
}
.swap input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.swap .swap-on,
.swap .swap-indeterminate,
.swap input:indeterminate ~ .swap-on {
  opacity: 0;
}
.swap input:checked ~ .swap-off,
.swap-active .swap-off,
.swap input:indeterminate ~ .swap-off {
  opacity: 0;
}
.swap input:checked ~ .swap-on,
.swap-active .swap-on,
.swap input:indeterminate ~ .swap-indeterminate {
  opacity: 1;
}
.table {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  border-radius: var(--rounded-box, 1rem);
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.table :where(.table-pin-rows thead tr) {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 1;
  --tw-bg-opacity: 1;
  background-color: rgb(255, 255, 255);
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
}
.table :where(.table-pin-rows tfoot tr) {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0px;
  z-index: 1;
  --tw-bg-opacity: 1;
  background-color: rgb(255, 255, 255);
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
}
.table :where(.table-pin-cols tr th) {
  position: -webkit-sticky;
  position: sticky;
  left: 0px;
  right: 0px;
  --tw-bg-opacity: 1;
  background-color: rgb(255, 255, 255);
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
}
.table-zebra tbody tr:nth-child(even) :where(.table-pin-cols tr th) {
  --tw-bg-opacity: 1;
  background-color: rgb(232, 232, 232);
  background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));
}
.textarea {
  min-height: 3rem;
  flex-shrink: 1;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  line-height: 2;
  border-radius: 0.5rem;
  border-radius: var(--rounded-btn, 0.5rem);
  border-width: 1px;
  border-color: transparent;
  --tw-bg-opacity: 1;
  background-color: rgb(255, 255, 255);
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
}
.toggle {
  flex-shrink: 0;
  --tglbg: var(--fallback-b1,oklch(var(--b1)/1));
  --handleoffset: 1.5rem;
  --handleoffsetcalculator: calc(var(--handleoffset) * -1);
  --togglehandleborder: 0 0;
  height: 1.5rem;
  width: 3rem;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 1.9rem;
  border-radius: var(--rounded-badge, 1.9rem);
  border-width: 1px;
  border-color: currentColor;
  background-color: currentColor;
  color: rgba(22, 22, 22, 0.5);
  color: var(--fallback-bc,oklch(var(--bc)/0.5));
  transition: background, box-shadow .2s ease-out;
  transition: background, box-shadow var(--animation-input, 0.2s) ease-out;
  box-shadow: calc(1.5rem * -1) 0 0 2px rgb(255, 255, 255) inset,
    0 0 0 2px rgb(255, 255, 255) inset,
    0 0;
  box-shadow: var(--handleoffsetcalculator) 0 0 2px var(--tglbg) inset,
    0 0 0 2px var(--tglbg) inset,
    var(--togglehandleborder);
}
.alert-info {
  border-color: rgba(69, 192, 245, 0.2);
  border-color: var(--fallback-in,oklch(var(--in)/0.2));
  --tw-text-opacity: 1;
  color: rgb(2, 14, 21);
  color: var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)));
  --alert-bg: var(--fallback-in,oklch(var(--in)/1));
  --alert-bg-mix: var(--fallback-b1,oklch(var(--b1)/1));
}
.alert-warning {
  border-color: rgba(251, 189, 35, 0.2);
  border-color: var(--fallback-wa,oklch(var(--wa)/0.2));
  --tw-text-opacity: 1;
  color: rgb(21, 13, 0);
  color: var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)));
  --alert-bg: var(--fallback-wa,oklch(var(--wa)/1));
  --alert-bg-mix: var(--fallback-b1,oklch(var(--b1)/1));
}
.alert-error {
  border-color: rgba(248, 114, 114, 0.2);
  border-color: var(--fallback-er,oklch(var(--er)/0.2));
  --tw-text-opacity: 1;
  color: rgb(21, 4, 4);
  color: var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)));
  --alert-bg: var(--fallback-er,oklch(var(--er)/1));
  --alert-bg-mix: var(--fallback-b1,oklch(var(--b1)/1));
}
.avatar-group {
  display: flex;
  overflow: hidden;
}
.avatar-group :where(.avatar) {
  overflow: hidden;
  border-radius: 9999px;
  border-width: 4px;
  --tw-border-opacity: 1;
  border-color: rgb(255, 255, 255);
  border-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-border-opacity)));
}
.badge-neutral {
  --tw-border-opacity: 1;
  border-color: rgb(61, 68, 81);
  border-color: var(--fallback-n,oklch(var(--n)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(61, 68, 81);
  background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(213, 214, 218);
  color: var(--fallback-nc,oklch(var(--nc)/var(--tw-text-opacity)));
}
.badge-primary {
  --tw-border-opacity: 1;
  border-color: rgb(244, 63, 94);
  border-color: var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(244, 63, 94);
  background-color: var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
}
.badge-secondary {
  --tw-border-opacity: 1;
  border-color: rgb(123, 63, 244);
  border-color: var(--fallback-s,oklch(var(--s)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(123, 63, 244);
  background-color: var(--fallback-s,oklch(var(--s)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)));
}
.badge-accent {
  --tw-border-opacity: 1;
  border-color: rgb(255, 188, 10);
  border-color: var(--fallback-a,oklch(var(--a)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(255, 188, 10);
  background-color: var(--fallback-a,oklch(var(--a)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(22, 13, 0);
  color: var(--fallback-ac,oklch(var(--ac)/var(--tw-text-opacity)));
}
.badge-info {
  border-color: transparent;
  --tw-bg-opacity: 1;
  background-color: rgb(69, 192, 245);
  background-color: var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(2, 14, 21);
  color: var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)));
}
.badge-success {
  border-color: transparent;
  --tw-bg-opacity: 1;
  background-color: rgb(93, 244, 63);
  background-color: var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(3, 20, 1);
  color: var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)));
}
.badge-warning {
  border-color: transparent;
  --tw-bg-opacity: 1;
  background-color: rgb(251, 189, 35);
  background-color: var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(21, 13, 0);
  color: var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)));
}
.badge-error {
  border-color: transparent;
  --tw-bg-opacity: 1;
  background-color: rgb(248, 114, 114);
  background-color: var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(21, 4, 4);
  color: var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)));
}
.badge-ghost {
  --tw-border-opacity: 1;
  border-color: rgb(232, 232, 232);
  border-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(232, 232, 232);
  background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(22, 22, 22);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
}
.badge-outline {
  border-color: currentColor;
  --tw-border-opacity: 0.5;
  background-color: transparent;
  color: currentColor;
}
.badge-outline.badge-neutral {
  --tw-text-opacity: 1;
  color: rgb(61, 68, 81);
  color: var(--fallback-n,oklch(var(--n)/var(--tw-text-opacity)));
}
.badge-outline.badge-primary {
  --tw-text-opacity: 1;
  color: rgb(244, 63, 94);
  color: var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity)));
}
.badge-outline.badge-secondary {
  --tw-text-opacity: 1;
  color: rgb(123, 63, 244);
  color: var(--fallback-s,oklch(var(--s)/var(--tw-text-opacity)));
}
.badge-outline.badge-accent {
  --tw-text-opacity: 1;
  color: rgb(255, 188, 10);
  color: var(--fallback-a,oklch(var(--a)/var(--tw-text-opacity)));
}
.badge-outline.badge-info {
  --tw-text-opacity: 1;
  color: rgb(69, 192, 245);
  color: var(--fallback-in,oklch(var(--in)/var(--tw-text-opacity)));
}
.badge-outline.badge-success {
  --tw-text-opacity: 1;
  color: rgb(93, 244, 63);
  color: var(--fallback-su,oklch(var(--su)/var(--tw-text-opacity)));
}
.badge-outline.badge-warning {
  --tw-text-opacity: 1;
  color: rgb(251, 189, 35);
  color: var(--fallback-wa,oklch(var(--wa)/var(--tw-text-opacity)));
}
.badge-outline.badge-error {
  --tw-text-opacity: 1;
  color: rgb(248, 114, 114);
  color: var(--fallback-er,oklch(var(--er)/var(--tw-text-opacity)));
}
.btm-nav > *:where(.active) {
  border-top-width: 2px;
  --tw-bg-opacity: 1;
  background-color: rgb(255, 255, 255);
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
}
.btm-nav > *.disabled,
    .btm-nav > *[disabled] {
  pointer-events: none;
  --tw-border-opacity: 0;
  background-color: rgba(61, 68, 81, 0.1);
  background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
  --tw-bg-opacity: 0.1;
  color: rgba(22, 22, 22, 0.2);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  --tw-text-opacity: 0.2;
}
.btm-nav > * .label {
  font-size: 1rem;
  line-height: 1.5rem;
}
.breadcrumbs > ul > li > a:focus, .breadcrumbs > ol > li > a:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.breadcrumbs > ul > li > a:focus-visible, .breadcrumbs > ol > li > a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.breadcrumbs > ul > li + *:before, .breadcrumbs > ol > li + *:before {
  content: "";
  margin-left: 0.5rem;
  margin-right: 0.75rem;
  display: block;
  height: 0.375rem;
  width: 0.375rem;
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(45deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  opacity: 0.4;
  border-top: 1px solid;
  border-right: 1px solid;
  background-color: transparent;
}
[dir="rtl"] .breadcrumbs > ul > li + *:before,
[dir="rtl"] .breadcrumbs > ol > li + *:before {
  --tw-rotate: -135deg;
}
@media (prefers-reduced-motion: no-preference) {
  .btn {
    animation: button-pop 0.25s ease-out;
    animation: button-pop var(--animation-btn, 0.25s) ease-out;
  }
}
.btn:active:hover,
  .btn:active:focus {
  animation: button-pop 0s ease-out;
  transform: scale(0.95);
  transform: scale(var(--btn-focus-scale, 0.97));
}
@supports not (color: oklch(0% 0 0)) {
  .btn {
    background-color: var(--btn-color, var(--fallback-b2));
    border-color: var(--btn-color, var(--fallback-b2));
  }
  .btn-primary {
    --btn-color: var(--fallback-p);
  }
  .btn-secondary {
    --btn-color: var(--fallback-s);
  }
  .btn-accent {
    --btn-color: var(--fallback-a);
  }
  .btn-neutral {
    --btn-color: var(--fallback-n);
  }
  .btn-info {
    --btn-color: var(--fallback-in);
  }
  .btn-success {
    --btn-color: var(--fallback-su);
  }
  .btn-warning {
    --btn-color: var(--fallback-wa);
  }
  .btn-error {
    --btn-color: var(--fallback-er);
  }
  .prose :where(code):not(:where([class~="not-prose"] *, pre *)) {
    background-color: oklch(86% 0 0/1);
    background-color: var(--fallback-b3,oklch(var(--b3)/1));
  }
}
@supports (color: color-mix(in oklab, black, black)) {
  .btn-active {
    background-color: color-mix(
          in oklab,
          rgb(209, 209, 209) 90%,
          black
        );
    border-color: color-mix(
          in oklab,
          rgb(209, 209, 209) 90%,
          black
        );
  }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.btn-active {
      background-color: color-mix(
          in oklab,
          oklch(var(--btn-color, var(--b3)) / var(--tw-bg-opacity, 1)) 90%,
          black
        );
      border-color: color-mix(
          in oklab,
          oklch(var(--btn-color, var(--b3)) / var(--tw-border-opacity, 1)) 90%,
          black
        );
    }
}
  .btn-outline.btn-primary.btn-active {
    background-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
    border-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
  }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.btn-outline.btn-primary.btn-active {
      background-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
    }
}
  .btn-outline.btn-secondary.btn-active {
    background-color: color-mix(in oklab, rgb(123, 63, 244) 90%, black);
    border-color: color-mix(in oklab, rgb(123, 63, 244) 90%, black);
  }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.btn-outline.btn-secondary.btn-active {
      background-color: color-mix(in oklab, var(--fallback-s,oklch(var(--s)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-s,oklch(var(--s)/1)) 90%, black);
    }
}
  .btn-outline.btn-accent.btn-active {
    background-color: color-mix(in oklab, rgb(255, 188, 10) 90%, black);
    border-color: color-mix(in oklab, rgb(255, 188, 10) 90%, black);
  }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.btn-outline.btn-accent.btn-active {
      background-color: color-mix(in oklab, var(--fallback-a,oklch(var(--a)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-a,oklch(var(--a)/1)) 90%, black);
    }
}
  .btn-outline.btn-success.btn-active {
    background-color: color-mix(in oklab, rgb(93, 244, 63) 90%, black);
    border-color: color-mix(in oklab, rgb(93, 244, 63) 90%, black);
  }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.btn-outline.btn-success.btn-active {
      background-color: color-mix(in oklab, var(--fallback-su,oklch(var(--su)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-su,oklch(var(--su)/1)) 90%, black);
    }
}
  .btn-outline.btn-info.btn-active {
    background-color: color-mix(in oklab, rgb(69, 192, 245) 90%, black);
    border-color: color-mix(in oklab, rgb(69, 192, 245) 90%, black);
  }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.btn-outline.btn-info.btn-active {
      background-color: color-mix(in oklab, var(--fallback-in,oklch(var(--in)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-in,oklch(var(--in)/1)) 90%, black);
    }
}
  .btn-outline.btn-warning.btn-active {
    background-color: color-mix(in oklab, rgb(251, 189, 35) 90%, black);
    border-color: color-mix(in oklab, rgb(251, 189, 35) 90%, black);
  }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.btn-outline.btn-warning.btn-active {
      background-color: color-mix(in oklab, var(--fallback-wa,oklch(var(--wa)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-wa,oklch(var(--wa)/1)) 90%, black);
    }
}
  .btn-outline.btn-error.btn-active {
    background-color: color-mix(in oklab, rgb(248, 114, 114) 90%, black);
    border-color: color-mix(in oklab, rgb(248, 114, 114) 90%, black);
  }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.btn-outline.btn-error.btn-active {
      background-color: color-mix(in oklab, var(--fallback-er,oklch(var(--er)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-er,oklch(var(--er)/1)) 90%, black);
    }
}
}
.btn:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
}
.btn-primary {
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
  outline-color: rgb(244, 63, 94);
  outline-color: var(--fallback-p,oklch(var(--p)/1));
}
@supports (color: oklch(0% 0 0)) {
  .btn-primary {
    --btn-color: var(--p);
  }
  .btn-secondary {
    --btn-color: var(--s);
  }
  .btn-accent {
    --btn-color: var(--a);
  }
  .btn-neutral {
    --btn-color: var(--n);
  }
  .btn-info {
    --btn-color: var(--in);
  }
  .btn-success {
    --btn-color: var(--su);
  }
  .btn-warning {
    --btn-color: var(--wa);
  }
  .btn-error {
    --btn-color: var(--er);
  }
}
.btn-secondary {
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)));
  outline-color: rgb(123, 63, 244);
  outline-color: var(--fallback-s,oklch(var(--s)/1));
}
.btn-accent {
  --tw-text-opacity: 1;
  color: rgb(22, 13, 0);
  color: var(--fallback-ac,oklch(var(--ac)/var(--tw-text-opacity)));
  outline-color: rgb(255, 188, 10);
  outline-color: var(--fallback-a,oklch(var(--a)/1));
}
.btn-neutral {
  --tw-text-opacity: 1;
  color: rgb(213, 214, 218);
  color: var(--fallback-nc,oklch(var(--nc)/var(--tw-text-opacity)));
  outline-color: rgb(61, 68, 81);
  outline-color: var(--fallback-n,oklch(var(--n)/1));
}
.btn-info {
  --tw-text-opacity: 1;
  color: rgb(2, 14, 21);
  color: var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)));
  outline-color: rgb(69, 192, 245);
  outline-color: var(--fallback-in,oklch(var(--in)/1));
}
.btn-success {
  --tw-text-opacity: 1;
  color: rgb(3, 20, 1);
  color: var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)));
  outline-color: rgb(93, 244, 63);
  outline-color: var(--fallback-su,oklch(var(--su)/1));
}
.btn-warning {
  --tw-text-opacity: 1;
  color: rgb(21, 13, 0);
  color: var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)));
  outline-color: rgb(251, 189, 35);
  outline-color: var(--fallback-wa,oklch(var(--wa)/1));
}
.btn-error {
  --tw-text-opacity: 1;
  color: rgb(21, 4, 4);
  color: var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)));
  outline-color: rgb(248, 114, 114);
  outline-color: var(--fallback-er,oklch(var(--er)/1));
}
.btn.glass {
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
  outline-color: currentColor;
}
.btn.glass.btn-active {
  --glass-opacity: 25%;
  --glass-border-opacity: 15%;
}
.btn-ghost {
  border-width: 1px;
  border-color: transparent;
  background-color: transparent;
  color: currentColor;
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
  outline-color: currentColor;
}
.btn-ghost.btn-active {
  border-color: transparent;
  background-color: rgba(22, 22, 22, 0.2);
  background-color: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.btn-link {
  border-color: transparent;
  background-color: transparent;
  --tw-text-opacity: 1;
  color: rgb(244, 63, 94);
  color: var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity)));
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
  outline-color: currentColor;
}
.btn-link.btn-active {
  border-color: transparent;
  background-color: transparent;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
.btn-outline {
  border-color: currentColor;
  background-color: transparent;
  --tw-text-opacity: 1;
  color: rgb(22, 22, 22);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.btn-outline.btn-active {
  --tw-border-opacity: 1;
  border-color: rgb(22, 22, 22);
  border-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(22, 22, 22);
  background-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-b1,oklch(var(--b1)/var(--tw-text-opacity)));
}
.btn-outline.btn-primary {
  --tw-text-opacity: 1;
  color: rgb(244, 63, 94);
  color: var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity)));
}
.btn-outline.btn-primary.btn-active {
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
}
.btn-outline.btn-secondary {
  --tw-text-opacity: 1;
  color: rgb(123, 63, 244);
  color: var(--fallback-s,oklch(var(--s)/var(--tw-text-opacity)));
}
.btn-outline.btn-secondary.btn-active {
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)));
}
.btn-outline.btn-accent {
  --tw-text-opacity: 1;
  color: rgb(255, 188, 10);
  color: var(--fallback-a,oklch(var(--a)/var(--tw-text-opacity)));
}
.btn-outline.btn-accent.btn-active {
  --tw-text-opacity: 1;
  color: rgb(22, 13, 0);
  color: var(--fallback-ac,oklch(var(--ac)/var(--tw-text-opacity)));
}
.btn-outline.btn-success {
  --tw-text-opacity: 1;
  color: rgb(93, 244, 63);
  color: var(--fallback-su,oklch(var(--su)/var(--tw-text-opacity)));
}
.btn-outline.btn-success.btn-active {
  --tw-text-opacity: 1;
  color: rgb(3, 20, 1);
  color: var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)));
}
.btn-outline.btn-info {
  --tw-text-opacity: 1;
  color: rgb(69, 192, 245);
  color: var(--fallback-in,oklch(var(--in)/var(--tw-text-opacity)));
}
.btn-outline.btn-info.btn-active {
  --tw-text-opacity: 1;
  color: rgb(2, 14, 21);
  color: var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)));
}
.btn-outline.btn-warning {
  --tw-text-opacity: 1;
  color: rgb(251, 189, 35);
  color: var(--fallback-wa,oklch(var(--wa)/var(--tw-text-opacity)));
}
.btn-outline.btn-warning.btn-active {
  --tw-text-opacity: 1;
  color: rgb(21, 13, 0);
  color: var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)));
}
.btn-outline.btn-error {
  --tw-text-opacity: 1;
  color: rgb(248, 114, 114);
  color: var(--fallback-er,oklch(var(--er)/var(--tw-text-opacity)));
}
.btn-outline.btn-error.btn-active {
  --tw-text-opacity: 1;
  color: rgb(21, 4, 4);
  color: var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)));
}
.btn.btn-disabled,
  .btn[disabled],
  .btn:disabled {
  --tw-border-opacity: 0;
  background-color: rgba(61, 68, 81, 0.2);
  background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
  --tw-bg-opacity: 0.2;
  color: rgba(22, 22, 22, 0.2);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  --tw-text-opacity: 0.2;
}
.btn:is(input[type="checkbox"]:checked),
.btn:is(input[type="radio"]:checked) {
  --tw-border-opacity: 1;
  border-color: rgb(244, 63, 94);
  border-color: var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(244, 63, 94);
  background-color: var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
}
.btn:is(input[type="checkbox"]:checked):focus-visible, .btn:is(input[type="radio"]:checked):focus-visible {
  outline-color: rgb(244, 63, 94);
  outline-color: var(--fallback-p,oklch(var(--p)/1));
}
@keyframes button-pop {
  0% {
    transform: scale(0.95);
    transform: scale(var(--btn-focus-scale, 0.98));
  }
  40% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}
.card :where(figure:first-child) {
  overflow: hidden;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  border-bottom-left-radius: 0;
  border-bottom-left-radius: initial;
  border-bottom-right-radius: 0;
  border-bottom-right-radius: initial;
}
.card :where(figure:last-child) {
  overflow: hidden;
  border-top-left-radius: 0;
  border-top-left-radius: initial;
  border-top-right-radius: 0;
  border-top-right-radius: initial;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}
.card:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.card.bordered {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(232, 232, 232);
  border-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));
}
.card-bordered {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(232, 232, 232);
  border-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));
}
.card.compact .card-body {
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.card-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
}
.card.image-full :where(figure) {
  overflow: hidden;
  border-radius: inherit;
}
.checkbox:focus {
  box-shadow: none;
}
.checkbox:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: rgb(22, 22, 22);
  outline-color: var(--fallback-bc,oklch(var(--bc)/1));
}
.checkbox:disabled {
  border-width: 0px;
  cursor: not-allowed;
  border-color: transparent;
  --tw-bg-opacity: 1;
  background-color: rgb(22, 22, 22);
  background-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-bg-opacity)));
  opacity: 0.2;
}
.checkbox:checked,
  .checkbox[aria-checked="true"] {
  background-repeat: no-repeat;
  animation: checkmark .2s ease-out;
  animation: checkmark var(--animation-input, 0.2s) ease-out;
  background-color: var(--chkbg);
  background-image: linear-gradient(-45deg, transparent 65%, var(--chkbg) 65.99%),
      linear-gradient(45deg, transparent 75%, var(--chkbg) 75.99%),
      linear-gradient(-45deg, var(--chkbg) 40%, transparent 40.99%),
      linear-gradient(
        45deg,
        var(--chkbg) 30%,
        var(--chkfg) 30.99%,
        var(--chkfg) 40%,
        transparent 40.99%
      ),
      linear-gradient(-45deg, var(--chkfg) 50%, var(--chkbg) 50.99%);
}
.checkbox:indeterminate {
  --tw-bg-opacity: 1;
  background-color: rgb(22, 22, 22);
  background-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-bg-opacity)));
  background-repeat: no-repeat;
  animation: checkmark .2s ease-out;
  animation: checkmark var(--animation-input, 0.2s) ease-out;
  background-image: linear-gradient(90deg, transparent 80%, var(--chkbg) 80%),
      linear-gradient(-90deg, transparent 80%, var(--chkbg) 80%),
      linear-gradient(0deg, var(--chkbg) 43%, var(--chkfg) 43%, var(--chkfg) 57%, var(--chkbg) 57%);
}
.checkbox-primary {
  --chkbg: var(--fallback-p,oklch(var(--p)/1));
  --chkfg: var(--fallback-pc,oklch(var(--pc)/1));
  --tw-border-opacity: 1;
  border-color: rgb(244, 63, 94);
  border-color: var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)));
}
.checkbox-primary:focus-visible {
  outline-color: rgb(244, 63, 94);
  outline-color: var(--fallback-p,oklch(var(--p)/1));
}
.checkbox-primary:checked,
    .checkbox-primary[aria-checked="true"] {
  --tw-border-opacity: 1;
  border-color: rgb(244, 63, 94);
  border-color: var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(244, 63, 94);
  background-color: var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
}
@keyframes checkmark {
  0% {
    background-position-y: 5px;
  }
  50% {
    background-position-y: -2px;
  }
  100% {
    background-position-y: 0;
  }
}
details.collapse {
  width: 100%;
}
details.collapse summary {
  position: relative;
  display: block;
  outline: 2px solid transparent;
  outline-offset: 2px;
}
details.collapse summary::-webkit-details-marker {
  display: none;
}
.collapse:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: rgb(22, 22, 22);
  outline-color: var(--fallback-bc,oklch(var(--bc)/1));
}
.collapse:has(.collapse-title:focus-visible),
.collapse:has(> input[type="checkbox"]:focus-visible),
.collapse:has(> input[type="radio"]:focus-visible) {
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: rgb(22, 22, 22);
  outline-color: var(--fallback-bc,oklch(var(--bc)/1));
}
.collapse-arrow > .collapse-title:after {
  position: absolute;
  display: block;
  height: 0.5rem;
  width: 0.5rem;
  --tw-translate-y: -100%;
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), -100%) rotate(45deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-duration: 0.2s;
  top: 1.9rem;
  right: 1.4rem;
  content: "";
  transform-origin: 75% 75%;
  box-shadow: 2px 2px;
  pointer-events: none;
}
.collapse-plus > .collapse-title:after {
  position: absolute;
  display: block;
  height: 0.5rem;
  width: 0.5rem;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transition-duration: 300ms;
  top: 0.9rem;
  right: 1.4rem;
  content: "+";
  pointer-events: none;
}
.collapse:not(.collapse-open):not(.collapse-close) > input[type="checkbox"],
.collapse:not(.collapse-open):not(.collapse-close) > input[type="radio"]:not(:checked),
.collapse:not(.collapse-open):not(.collapse-close) > .collapse-title {
  cursor: pointer;
}
.collapse:focus:not(.collapse-open):not(.collapse-close):not(.collapse[open]) > .collapse-title {
  cursor: inherit;
}
.collapse-title {
  position: relative;
}
:where(.collapse > input[type="checkbox"]),
:where(.collapse > input[type="radio"]) {
  z-index: 1;
}
.collapse-title,
:where(.collapse > input[type="checkbox"]),
:where(.collapse > input[type="radio"]) {
  width: 100%;
  padding: 1rem;
  padding-right: 3rem;
  min-height: 3.75rem;
  transition: background-color 0.2s ease-out;
}
.collapse[open] > :where(.collapse-content),
.collapse-open > :where(.collapse-content),
.collapse:focus:not(.collapse-close) > :where(.collapse-content),
.collapse:not(.collapse-close) > :where(input[type="checkbox"]:checked ~ .collapse-content),
.collapse:not(.collapse-close) > :where(input[type="radio"]:checked ~ .collapse-content) {
  padding-bottom: 1rem;
  transition: padding 0.2s ease-out, background-color 0.2s ease-out;
}
.collapse[open].collapse-arrow > .collapse-title:after,
.collapse-open.collapse-arrow > .collapse-title:after,
.collapse-arrow:focus:not(.collapse-close) > .collapse-title:after,
.collapse-arrow:not(.collapse-close) > input[type="checkbox"]:checked ~ .collapse-title:after,
.collapse-arrow:not(.collapse-close) > input[type="radio"]:checked ~ .collapse-title:after {
  --tw-translate-y: -50%;
  --tw-rotate: 225deg;
  transform: translate(var(--tw-translate-x), -50%) rotate(225deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.collapse[open].collapse-plus > .collapse-title:after,
.collapse-open.collapse-plus > .collapse-title:after,
.collapse-plus:focus:not(.collapse-close) > .collapse-title:after,
.collapse-plus:not(.collapse-close) > input[type="checkbox"]:checked ~ .collapse-title:after,
.collapse-plus:not(.collapse-close) > input[type="radio"]:checked ~ .collapse-title:after {
  content: "−";
}
.divider:not(:empty) {
  gap: 1rem;
}
.label-text {
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(22, 22, 22);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
}
.input input {
  --tw-bg-opacity: 1;
  background-color: rgb(244, 63, 94);
  background-color: var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));
  background-color: transparent;
}
.input input:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.input[list]::-webkit-calendar-picker-indicator {
  line-height: 1em;
}
.input:focus,
  .input:focus-within {
  box-shadow: none;
  border-color: rgba(22, 22, 22, 0.2);
  border-color: var(--fallback-bc,oklch(var(--bc)/0.2));
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: rgba(22, 22, 22, 0.2);
  outline-color: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.input:has(> input[disabled]),
  .input-disabled,
  .input:disabled,
  .input[disabled] {
  cursor: not-allowed;
  --tw-border-opacity: 1;
  border-color: rgb(232, 232, 232);
  border-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(232, 232, 232);
  background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));
  color: rgba(22, 22, 22, 0.4);
  color: var(--fallback-bc,oklch(var(--bc)/0.4));
}
.input:has(> input[disabled])::-moz-placeholder, .input-disabled::-moz-placeholder, .input:disabled::-moz-placeholder, .input[disabled]::-moz-placeholder {
  color: rgba(22, 22, 22, 0.2);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-placeholder-opacity)));
  --tw-placeholder-opacity: 0.2;
}
.input:has(> input[disabled])::placeholder,
  .input-disabled::placeholder,
  .input:disabled::placeholder,
  .input[disabled]::placeholder {
  color: rgba(22, 22, 22, 0.2);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-placeholder-opacity)));
  --tw-placeholder-opacity: 0.2;
}
.input:has(> input[disabled]) > input[disabled] {
  cursor: not-allowed;
}
.input::-webkit-date-and-time-value {
  text-align: inherit;
}
.join > :where(*:not(:first-child)) {
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: -1px;
}
.join > :where(*:not(:first-child)):is(.btn) {
  margin-left: calc(1px * -1);
  margin-left: calc(var(--border-btn) * -1);
}
.join-item:focus {
  isolation: isolate;
}
.link-primary {
  --tw-text-opacity: 1;
  color: rgb(244, 63, 94);
  color: var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity)));
}
@supports (color:color-mix(in oklab,black,black)) {
  @media (hover:hover) {
    .link-primary:hover {
      color: color-mix(in oklab,rgb(244, 63, 94) 80%,black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.link-primary:hover {
        color: color-mix(in oklab,var(--fallback-p,oklch(var(--p)/1)) 80%,black);
      }
}
    .link-secondary:hover {
      color: color-mix(in oklab,rgb(123, 63, 244) 80%,black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.link-secondary:hover {
        color: color-mix(in oklab,var(--fallback-s,oklch(var(--s)/1)) 80%,black);
      }
}
  }
}
.link-secondary {
  --tw-text-opacity: 1;
  color: rgb(123, 63, 244);
  color: var(--fallback-s,oklch(var(--s)/var(--tw-text-opacity)));
}
.link:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.loading {
  pointer-events: none;
  display: inline-block;
  aspect-ratio: 1 / 1;
  width: 1.5rem;
  background-color: currentColor;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=%2724%27 height=%2724%27 stroke=%27%23000%27 viewBox=%270 0 24 24%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cstyle%3E.spinner_V8m1%7Btransform-origin:center;animation:spinner_zKoa 2s linear infinite%7D.spinner_V8m1 circle%7Bstroke-linecap:round;animation:spinner_YpZS 1.5s ease-out infinite%7D%40keyframes spinner_zKoa%7B100%25%7Btransform:rotate%28360deg%29%7D%7D%40keyframes spinner_YpZS%7B0%25%7Bstroke-dasharray:0 150;stroke-dashoffset:0%7D47.5%25%7Bstroke-dasharray:42 150;stroke-dashoffset:-16%7D95%25%2C100%25%7Bstroke-dasharray:42 150;stroke-dashoffset:-59%7D%7D%3C%2Fstyle%3E%3Cg class=%27spinner_V8m1%27%3E%3Ccircle cx=%2712%27 cy=%2712%27 r=%279.5%27 fill=%27none%27 stroke-width=%273%27%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fsvg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg width=%2724%27 height=%2724%27 stroke=%27%23000%27 viewBox=%270 0 24 24%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cstyle%3E.spinner_V8m1%7Btransform-origin:center;animation:spinner_zKoa 2s linear infinite%7D.spinner_V8m1 circle%7Bstroke-linecap:round;animation:spinner_YpZS 1.5s ease-out infinite%7D%40keyframes spinner_zKoa%7B100%25%7Btransform:rotate%28360deg%29%7D%7D%40keyframes spinner_YpZS%7B0%25%7Bstroke-dasharray:0 150;stroke-dashoffset:0%7D47.5%25%7Bstroke-dasharray:42 150;stroke-dashoffset:-16%7D95%25%2C100%25%7Bstroke-dasharray:42 150;stroke-dashoffset:-59%7D%7D%3C%2Fstyle%3E%3Cg class=%27spinner_V8m1%27%3E%3Ccircle cx=%2712%27 cy=%2712%27 r=%279.5%27 fill=%27none%27 stroke-width=%273%27%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.loading-spinner {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=%2724%27 height=%2724%27 stroke=%27%23000%27 viewBox=%270 0 24 24%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cstyle%3E.spinner_V8m1%7Btransform-origin:center;animation:spinner_zKoa 2s linear infinite%7D.spinner_V8m1 circle%7Bstroke-linecap:round;animation:spinner_YpZS 1.5s ease-out infinite%7D%40keyframes spinner_zKoa%7B100%25%7Btransform:rotate%28360deg%29%7D%7D%40keyframes spinner_YpZS%7B0%25%7Bstroke-dasharray:0 150;stroke-dashoffset:0%7D47.5%25%7Bstroke-dasharray:42 150;stroke-dashoffset:-16%7D95%25%2C100%25%7Bstroke-dasharray:42 150;stroke-dashoffset:-59%7D%7D%3C%2Fstyle%3E%3Cg class=%27spinner_V8m1%27%3E%3Ccircle cx=%2712%27 cy=%2712%27 r=%279.5%27 fill=%27none%27 stroke-width=%273%27%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fsvg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg width=%2724%27 height=%2724%27 stroke=%27%23000%27 viewBox=%270 0 24 24%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cstyle%3E.spinner_V8m1%7Btransform-origin:center;animation:spinner_zKoa 2s linear infinite%7D.spinner_V8m1 circle%7Bstroke-linecap:round;animation:spinner_YpZS 1.5s ease-out infinite%7D%40keyframes spinner_zKoa%7B100%25%7Btransform:rotate%28360deg%29%7D%7D%40keyframes spinner_YpZS%7B0%25%7Bstroke-dasharray:0 150;stroke-dashoffset:0%7D47.5%25%7Bstroke-dasharray:42 150;stroke-dashoffset:-16%7D95%25%2C100%25%7Bstroke-dasharray:42 150;stroke-dashoffset:-59%7D%7D%3C%2Fstyle%3E%3Cg class=%27spinner_V8m1%27%3E%3Ccircle cx=%2712%27 cy=%2712%27 r=%279.5%27 fill=%27none%27 stroke-width=%273%27%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.loading-ring {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=%2744%27 height=%2744%27 viewBox=%270 0 44 44%27 xmlns=%27http://www.w3.org/2000/svg%27 stroke=%27%23fff%27%3E%3Cg fill=%27none%27 fill-rule=%27evenodd%27 stroke-width=%272%27%3E%3Ccircle cx=%2722%27 cy=%2722%27 r=%271%27%3E%3Canimate attributeName=%27r%27 begin=%270s%27 dur=%271.8s%27 values=%271; 20%27 calcMode=%27spline%27 keyTimes=%270; 1%27 keySplines=%270.165, 0.84, 0.44, 1%27 repeatCount=%27indefinite%27 /%3E%3Canimate attributeName=%27stroke-opacity%27 begin=%270s%27 dur=%271.8s%27 values=%271; 0%27 calcMode=%27spline%27 keyTimes=%270; 1%27 keySplines=%270.3, 0.61, 0.355, 1%27 repeatCount=%27indefinite%27 /%3E%3C/circle%3E%3Ccircle cx=%2722%27 cy=%2722%27 r=%271%27%3E%3Canimate attributeName=%27r%27 begin=%27-0.9s%27 dur=%271.8s%27 values=%271; 20%27 calcMode=%27spline%27 keyTimes=%270; 1%27 keySplines=%270.165, 0.84, 0.44, 1%27 repeatCount=%27indefinite%27 /%3E%3Canimate attributeName=%27stroke-opacity%27 begin=%27-0.9s%27 dur=%271.8s%27 values=%271; 0%27 calcMode=%27spline%27 keyTimes=%270; 1%27 keySplines=%270.3, 0.61, 0.355, 1%27 repeatCount=%27indefinite%27 /%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg width=%2744%27 height=%2744%27 viewBox=%270 0 44 44%27 xmlns=%27http://www.w3.org/2000/svg%27 stroke=%27%23fff%27%3E%3Cg fill=%27none%27 fill-rule=%27evenodd%27 stroke-width=%272%27%3E%3Ccircle cx=%2722%27 cy=%2722%27 r=%271%27%3E%3Canimate attributeName=%27r%27 begin=%270s%27 dur=%271.8s%27 values=%271; 20%27 calcMode=%27spline%27 keyTimes=%270; 1%27 keySplines=%270.165, 0.84, 0.44, 1%27 repeatCount=%27indefinite%27 /%3E%3Canimate attributeName=%27stroke-opacity%27 begin=%270s%27 dur=%271.8s%27 values=%271; 0%27 calcMode=%27spline%27 keyTimes=%270; 1%27 keySplines=%270.3, 0.61, 0.355, 1%27 repeatCount=%27indefinite%27 /%3E%3C/circle%3E%3Ccircle cx=%2722%27 cy=%2722%27 r=%271%27%3E%3Canimate attributeName=%27r%27 begin=%27-0.9s%27 dur=%271.8s%27 values=%271; 20%27 calcMode=%27spline%27 keyTimes=%270; 1%27 keySplines=%270.165, 0.84, 0.44, 1%27 repeatCount=%27indefinite%27 /%3E%3Canimate attributeName=%27stroke-opacity%27 begin=%27-0.9s%27 dur=%271.8s%27 values=%271; 0%27 calcMode=%27spline%27 keyTimes=%270; 1%27 keySplines=%270.3, 0.61, 0.355, 1%27 repeatCount=%27indefinite%27 /%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
}
:where(.menu li:empty) {
  --tw-bg-opacity: 1;
  background-color: rgb(22, 22, 22);
  background-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-bg-opacity)));
  opacity: 0.1;
  margin: 0.5rem 1rem;
  height: 1px;
}
.menu :where(li ul):before {
  position: absolute;
  bottom: 0.75rem;
  left: 0px;
  top: 0.75rem;
  width: 1px;
  --tw-bg-opacity: 1;
  background-color: rgb(22, 22, 22);
  background-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-bg-opacity)));
  opacity: 0.1;
  content: "";
}
.menu :where(li:not(.menu-title) > *:not(ul):not(details):not(.menu-title):not(.btn)),
.menu :where(li:not(.menu-title) > details > summary:not(.menu-title)) {
  border-radius: 0.5rem;
  border-radius: var(--rounded-btn, 0.5rem);
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transition-duration: 200ms;
  text-wrap: balance;
}
:where(.menu li:not(.menu-title):not(.disabled) > *:not(ul):not(details):not(.menu-title)):not(summary):not(.active):not(.btn).focus, :where(.menu li:not(.menu-title):not(.disabled) > *:not(ul):not(details):not(.menu-title)):not(summary):not(.active):not(.btn):focus, :where(.menu li:not(.menu-title):not(.disabled) > *:not(ul):not(details):not(.menu-title)):is(summary):not(.active):not(.btn):focus-visible, :where(.menu li:not(.menu-title):not(.disabled) > details > summary:not(.menu-title)):not(summary):not(.active):not(.btn).focus, :where(.menu li:not(.menu-title):not(.disabled) > details > summary:not(.menu-title)):not(summary):not(.active):not(.btn):focus, :where(.menu li:not(.menu-title):not(.disabled) > details > summary:not(.menu-title)):is(summary):not(.active):not(.btn):focus-visible {
  cursor: pointer;
  background-color: rgba(22, 22, 22, 0.1);
  background-color: var(--fallback-bc,oklch(var(--bc)/0.1));
  --tw-text-opacity: 1;
  color: rgb(22, 22, 22);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.menu li > *:not(ul):not(.menu-title):not(details):not(.btn):active,
.menu li > *:not(ul):not(.menu-title):not(details):not(.btn).active,
.menu li > details > summary:active {
  --tw-bg-opacity: 1;
  background-color: rgb(61, 68, 81);
  background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(213, 214, 218);
  color: var(--fallback-nc,oklch(var(--nc)/var(--tw-text-opacity)));
}
.menu :where(li > details > summary)::-webkit-details-marker {
  display: none;
}
.menu :where(li > details > summary):after,
.menu :where(li > .menu-dropdown-toggle):after {
  justify-self: end;
  display: block;
  margin-top: -0.5rem;
  height: 0.5rem;
  width: 0.5rem;
  transform: rotate(45deg);
  transition-property: transform, margin-top;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  content: "";
  transform-origin: 75% 75%;
  box-shadow: 2px 2px;
  pointer-events: none;
}
.menu :where(li > details[open] > summary):after,
.menu :where(li > .menu-dropdown-toggle.menu-dropdown-show):after {
  transform: rotate(225deg);
  margin-top: 0;
}
.mockup-phone .display {
  overflow: hidden;
  border-radius: 40px;
  margin-top: -25px;
}
.mockup-browser .mockup-browser-toolbar .input {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  display: block;
  height: 1.75rem;
  width: 24rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  --tw-bg-opacity: 1;
  background-color: rgb(232, 232, 232);
  background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));
  padding-left: 2rem;
  direction: ltr;
}
.mockup-browser .mockup-browser-toolbar .input:before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 50%;
  aspect-ratio: 1 / 1;
  height: 0.75rem;
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), -50%) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  border-radius: 9999px;
  border-width: 2px;
  border-color: currentColor;
  opacity: 0.6;
}
.mockup-browser .mockup-browser-toolbar .input:after {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 50%;
  height: 0.5rem;
  --tw-translate-y: 25%;
  --tw-rotate: -45deg;
  transform: translate(var(--tw-translate-x), 25%) rotate(-45deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  border-radius: 9999px;
  border-width: 1px;
  border-color: currentColor;
  opacity: 0.6;
}
.modal:not(dialog:not(.modal-open)),
  .modal::backdrop {
  background-color: rgba(0,0,0,0.4);
  animation: modal-pop 0.2s ease-out;
}
.modal-backdrop {
  z-index: -1;
  grid-column-start: 1;
  grid-row-start: 1;
  display: grid;
  align-self: stretch;
  justify-self: stretch;
  color: transparent;
}
.modal-open .modal-box,
.modal-toggle:checked + .modal .modal-box,
.modal:target .modal-box,
.modal[open] .modal-box {
  --tw-translate-y: 0px;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translate(var(--tw-translate-x), 0px) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(1) scaleY(1);
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes modal-pop {
  0% {
    opacity: 0;
  }
}
.progress::-moz-progress-bar {
  border-radius: 1rem;
  border-radius: var(--rounded-box, 1rem);
  --tw-bg-opacity: 1;
  background-color: rgb(22, 22, 22);
  background-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-bg-opacity)));
}
.progress-primary::-moz-progress-bar {
  border-radius: 1rem;
  border-radius: var(--rounded-box, 1rem);
  --tw-bg-opacity: 1;
  background-color: rgb(244, 63, 94);
  background-color: var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));
}
.progress:indeterminate {
  --progress-color: var(--fallback-bc,oklch(var(--bc)/1));
  background-image: repeating-linear-gradient(
    90deg,
    rgb(22, 22, 22) -1%,
    rgb(22, 22, 22) 10%,
    transparent 10%,
    transparent 90%
  );
  background-image: repeating-linear-gradient(
    90deg,
    var(--progress-color) -1%,
    var(--progress-color) 10%,
    transparent 10%,
    transparent 90%
  );
  background-size: 200%;
  background-position-x: 15%;
  animation: progress-loading 5s ease-in-out infinite;
}
.progress-primary:indeterminate {
  --progress-color: var(--fallback-p,oklch(var(--p)/1));
}
.progress::-webkit-progress-bar {
  border-radius: 1rem;
  border-radius: var(--rounded-box, 1rem);
  background-color: transparent;
}
.progress::-webkit-progress-value {
  border-radius: 1rem;
  border-radius: var(--rounded-box, 1rem);
  --tw-bg-opacity: 1;
  background-color: rgb(22, 22, 22);
  background-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-bg-opacity)));
}
.progress-primary::-webkit-progress-value {
  --tw-bg-opacity: 1;
  background-color: rgb(244, 63, 94);
  background-color: var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));
}
.progress:indeterminate::-moz-progress-bar {
  background-color: transparent;
  background-image: repeating-linear-gradient(
    90deg,
    var(--progress-color) -1%,
    var(--progress-color) 10%,
    transparent 10%,
    transparent 90%
  );
  background-size: 200%;
  background-position-x: 15%;
  animation: progress-loading 5s ease-in-out infinite;
}
@keyframes progress-loading {
  50% {
    background-position-x: -115%;
  }
}
.radio:focus {
  box-shadow: none;
}
.radio:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: rgb(22, 22, 22);
  outline-color: var(--fallback-bc,oklch(var(--bc)/1));
}
.radio:checked,
  .radio[aria-checked="true"] {
  --tw-bg-opacity: 1;
  background-color: rgb(22, 22, 22);
  background-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-bg-opacity)));
  background-image: none;
  animation: radiomark .2s ease-out;
  animation: radiomark var(--animation-input, 0.2s) ease-out;
  box-shadow: 0 0 0 4px rgb(255, 255, 255) inset,
      0 0 0 4px rgb(255, 255, 255) inset;
  box-shadow: 0 0 0 4px var(--fallback-b1,oklch(var(--b1)/1)) inset,
      0 0 0 4px var(--fallback-b1,oklch(var(--b1)/1)) inset;
}
.radio:disabled {
  cursor: not-allowed;
  opacity: 0.2;
}
@keyframes radiomark {
  0% {
    box-shadow: 0 0 0 12px rgb(255, 255, 255) inset,
      0 0 0 12px rgb(255, 255, 255) inset;
    box-shadow: 0 0 0 12px var(--fallback-b1,oklch(var(--b1)/1)) inset,
      0 0 0 12px var(--fallback-b1,oklch(var(--b1)/1)) inset;
  }
  50% {
    box-shadow: 0 0 0 3px rgb(255, 255, 255) inset,
      0 0 0 3px rgb(255, 255, 255) inset;
    box-shadow: 0 0 0 3px var(--fallback-b1,oklch(var(--b1)/1)) inset,
      0 0 0 3px var(--fallback-b1,oklch(var(--b1)/1)) inset;
  }
  100% {
    box-shadow: 0 0 0 4px rgb(255, 255, 255) inset,
      0 0 0 4px rgb(255, 255, 255) inset;
    box-shadow: 0 0 0 4px var(--fallback-b1,oklch(var(--b1)/1)) inset,
      0 0 0 4px var(--fallback-b1,oklch(var(--b1)/1)) inset;
  }
}
.range:focus-visible::-webkit-slider-thumb {
  --focus-shadow: 0 0 0 6px var(--fallback-b1,oklch(var(--b1)/1)) inset, 0 0 0 2rem var(--range-shdw) inset;
}
.range:focus-visible::-moz-range-thumb {
  --focus-shadow: 0 0 0 6px var(--fallback-b1,oklch(var(--b1)/1)) inset, 0 0 0 2rem var(--range-shdw) inset;
}
.range::-webkit-slider-runnable-track {
  height: 0.5rem;
  width: 100%;
  border-radius: 1rem;
  border-radius: var(--rounded-box, 1rem);
  background-color: rgba(22, 22, 22, 0.1);
  background-color: var(--fallback-bc,oklch(var(--bc)/0.1));
}
.range::-moz-range-track {
  height: 0.5rem;
  width: 100%;
  border-radius: 1rem;
  border-radius: var(--rounded-box, 1rem);
  background-color: rgba(22, 22, 22, 0.1);
  background-color: var(--fallback-bc,oklch(var(--bc)/0.1));
}
.range::-webkit-slider-thumb {
  position: relative;
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 1rem;
  border-radius: var(--rounded-box, 1rem);
  border-style: none;
  --tw-bg-opacity: 1;
  background-color: rgb(255, 255, 255);
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
  appearance: none;
  -webkit-appearance: none;
  top: 50%;
  color: var(--range-shdw);
  transform: translateY(-50%);
  --filler-size: 100rem;
  --filler-offset: 0.6rem;
  box-shadow: 0 0 0 3px var(--range-shdw) inset,
      0 0,
      calc(100rem * -1 - 0.6rem) 0 0 100rem;
  box-shadow: 0 0 0 3px var(--range-shdw) inset,
      var(--focus-shadow, 0 0),
      calc(var(--filler-size) * -1 - var(--filler-offset)) 0 0 var(--filler-size);
}
.range::-moz-range-thumb {
  position: relative;
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 1rem;
  border-radius: var(--rounded-box, 1rem);
  border-style: none;
  --tw-bg-opacity: 1;
  background-color: rgb(255, 255, 255);
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
  top: 50%;
  color: var(--range-shdw);
  --filler-size: 100rem;
  --filler-offset: 0.5rem;
  box-shadow: 0 0 0 3px var(--range-shdw) inset,
      0 0,
      calc(100rem * -1 - 0.5rem) 0 0 100rem;
  box-shadow: 0 0 0 3px var(--range-shdw) inset,
      var(--focus-shadow, 0 0),
      calc(var(--filler-size) * -1 - var(--filler-offset)) 0 0 var(--filler-size);
}
@keyframes rating-pop {
  0% {
    transform: translateY(-0.125em);
  }
  40% {
    transform: translateY(-0.125em);
  }
  100% {
    transform: translateY(0);
  }
}
.select:focus {
  box-shadow: none;
  border-color: rgba(22, 22, 22, 0.2);
  border-color: var(--fallback-bc,oklch(var(--bc)/0.2));
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: rgba(22, 22, 22, 0.2);
  outline-color: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.select-disabled,
  .select:disabled,
  .select[disabled] {
  cursor: not-allowed;
  --tw-border-opacity: 1;
  border-color: rgb(232, 232, 232);
  border-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(232, 232, 232);
  background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));
  color: rgba(22, 22, 22, 0.4);
  color: var(--fallback-bc,oklch(var(--bc)/0.4));
}
.select-disabled::-moz-placeholder, .select:disabled::-moz-placeholder, .select[disabled]::-moz-placeholder {
  color: rgba(22, 22, 22, 0.2);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-placeholder-opacity)));
  --tw-placeholder-opacity: 0.2;
}
.select-disabled::placeholder,
  .select:disabled::placeholder,
  .select[disabled]::placeholder {
  color: rgba(22, 22, 22, 0.2);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-placeholder-opacity)));
  --tw-placeholder-opacity: 0.2;
}
.select-multiple,
  .select[multiple],
  .select[size].select:not([size="1"]) {
  background-image: none;
  padding-right: 1rem;
}
[dir="rtl"] .select {
  background-position: calc(0% + 12px) calc(1px + 50%),
    calc(0% + 16px) calc(1px + 50%);
}
.skeleton {
  border-radius: 1rem;
  border-radius: var(--rounded-box, 1rem);
  --tw-bg-opacity: 1;
  background-color: rgb(209, 209, 209);
  background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
  will-change: background-position;
  animation: skeleton 1.8s ease-in-out infinite;
  background-image: linear-gradient(
    105deg,
    transparent 0%,
    transparent 40%,
    rgb(255, 255, 255) 50%,
    transparent 60%,
    transparent 100%
  );
  background-image: linear-gradient(
    105deg,
    transparent 0%,
    transparent 40%,
    var(--fallback-b1,oklch(var(--b1)/1)) 50%,
    transparent 60%,
    transparent 100%
  );
  background-size: 200% auto;
  background-repeat: no-repeat;
  background-position-x: -50%;
}
@media (prefers-reduced-motion) {
  .skeleton {
    animation-duration: 15s;
  }
}
@keyframes skeleton {
  from {
    background-position: 150%;
  }
  to {
    background-position: -50%;
  }
}
:where(.stats) > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-x-reverse: 0;
  border-right-width: calc(1px * 0);
  border-right-width: calc(1px * var(--tw-divide-x-reverse));
  border-left-width: calc(1px * (1 - 0));
  border-left-width: calc(1px * (1 - var(--tw-divide-x-reverse)));
  border-left-width: calc(1px * calc(1 - 0));
  border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
  --tw-divide-y-reverse: 0;
  border-top-width: calc(0px * (1 - 0));
  border-top-width: calc(0px * (1 - var(--tw-divide-y-reverse)));
  border-top-width: calc(0px * calc(1 - 0));
  border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(0px * 0);
  border-bottom-width: calc(0px * var(--tw-divide-y-reverse));
}
:is([dir="rtl"] .stats > :not([hidden]) ~ :not([hidden])) {
  --tw-divide-x-reverse: 1;
}
.steps .step:before {
  top: 0px;
  grid-column-start: 1;
  grid-row-start: 1;
  height: 0.5rem;
  width: 100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-bg-opacity: 1;
  background-color: rgb(209, 209, 209);
  background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(22, 22, 22);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  content: "";
  margin-left: -100%;
}
.steps .step:after {
  content: counter(step);
  counter-increment: step;
  z-index: 1;
  position: relative;
  grid-column-start: 1;
  grid-row-start: 1;
  display: grid;
  height: 2rem;
  width: 2rem;
  align-items: center;
  justify-items: center;
  place-items: center;
  align-self: center;
  justify-self: center;
  place-self: center;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(209, 209, 209);
  background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(22, 22, 22);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
}
.steps .step:first-child:before {
  content: none;
}
.steps .step[data-content]:after {
  content: attr(data-content);
}
.swap-rotate .swap-on,
.swap-rotate .swap-indeterminate,
.swap-rotate input:indeterminate ~ .swap-on {
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(45deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.swap-rotate input:checked ~ .swap-off,
.swap-active:where(.swap-rotate) .swap-off,
.swap-rotate input:indeterminate ~ .swap-off {
  --tw-rotate: -45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(-45deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.swap-rotate input:checked ~ .swap-on,
.swap-active:where(.swap-rotate) .swap-on,
.swap-rotate input:indeterminate ~ .swap-indeterminate {
  --tw-rotate: 0deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(0deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.swap-flip .swap-on,
.swap-flip .swap-indeterminate,
.swap-flip input:indeterminate ~ .swap-on {
  transform: rotateY(180deg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  opacity: 1;
}
.swap-flip input:checked ~ .swap-off,
.swap-active:where(.swap-flip) .swap-off,
.swap-flip input:indeterminate ~ .swap-off {
  transform: rotateY(-180deg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  opacity: 1;
}
.swap-flip input:checked ~ .swap-on,
.swap-active:where(.swap-flip) .swap-on,
.swap-flip input:indeterminate ~ .swap-indeterminate {
  transform: rotateY(0deg);
}
.table:where([dir="rtl"], [dir="rtl"] *) {
  text-align: right;
}
.table :where(th, td) {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  vertical-align: middle;
}
.table tr.active,
  .table tr.active:nth-child(even),
  .table-zebra tbody tr:nth-child(even) {
  --tw-bg-opacity: 1;
  background-color: rgb(232, 232, 232);
  background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));
}
.table-zebra tr.active,
    .table-zebra tr.active:nth-child(even),
    .table-zebra-zebra tbody tr:nth-child(even) {
  --tw-bg-opacity: 1;
  background-color: rgb(209, 209, 209);
  background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
}
.table :where(thead tr, tbody tr:not(:last-child), tbody tr:first-child:last-child) {
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-bottom-color: rgb(232, 232, 232);
  border-bottom-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));
}
.table :where(thead, tfoot) {
  white-space: nowrap;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  color: rgba(22, 22, 22, 0.6);
  color: var(--fallback-bc,oklch(var(--bc)/0.6));
}
.table :where(tfoot) {
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-top-color: rgb(232, 232, 232);
  border-top-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));
}
.textarea:focus {
  box-shadow: none;
  border-color: rgba(22, 22, 22, 0.2);
  border-color: var(--fallback-bc,oklch(var(--bc)/0.2));
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: rgba(22, 22, 22, 0.2);
  outline-color: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.textarea-disabled,
  .textarea:disabled,
  .textarea[disabled] {
  cursor: not-allowed;
  --tw-border-opacity: 1;
  border-color: rgb(232, 232, 232);
  border-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(232, 232, 232);
  background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));
  color: rgba(22, 22, 22, 0.4);
  color: var(--fallback-bc,oklch(var(--bc)/0.4));
}
.textarea-disabled::-moz-placeholder, .textarea:disabled::-moz-placeholder, .textarea[disabled]::-moz-placeholder {
  color: rgba(22, 22, 22, 0.2);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-placeholder-opacity)));
  --tw-placeholder-opacity: 0.2;
}
.textarea-disabled::placeholder,
  .textarea:disabled::placeholder,
  .textarea[disabled]::placeholder {
  color: rgba(22, 22, 22, 0.2);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-placeholder-opacity)));
  --tw-placeholder-opacity: 0.2;
}
@keyframes toast-pop {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
[dir="rtl"] .toggle {
  --handleoffsetcalculator: calc(var(--handleoffset) * 1);
}
.toggle:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: rgba(22, 22, 22, 0.2);
  outline-color: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.toggle:hover {
  background-color: currentColor;
}
.toggle:checked,
  .toggle[aria-checked="true"] {
  background-image: none;
  --handleoffsetcalculator: var(--handleoffset);
  --tw-text-opacity: 1;
  color: rgb(22, 22, 22);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
}
[dir="rtl"] .toggle:checked, [dir="rtl"] .toggle[aria-checked="true"] {
  --handleoffsetcalculator: calc(var(--handleoffset) * -1);
}
.toggle:indeterminate {
  --tw-text-opacity: 1;
  color: rgb(22, 22, 22);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  box-shadow: calc(var(--handleoffset) / 2) 0 0 2px var(--tglbg) inset,
      calc(var(--handleoffset) / -2) 0 0 2px var(--tglbg) inset,
      0 0 0 2px var(--tglbg) inset;
}
[dir="rtl"] .toggle:indeterminate {
  box-shadow: calc(var(--handleoffset) / 2) 0 0 2px var(--tglbg) inset,
        calc(var(--handleoffset) / -2) 0 0 2px var(--tglbg) inset,
        0 0 0 2px var(--tglbg) inset;
}
.toggle:disabled {
  cursor: not-allowed;
  --tw-border-opacity: 1;
  border-color: rgb(22, 22, 22);
  border-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-border-opacity)));
  background-color: transparent;
  opacity: 0.3;
  --togglehandleborder: 0 0 0 3px var(--fallback-bc,oklch(var(--bc)/1)) inset,
      var(--handleoffsetcalculator) 0 0 3px var(--fallback-bc,oklch(var(--bc)/1)) inset;
}
:root .prose {
  --tw-prose-body: var(--fallback-bc,oklch(var(--bc)/0.8));
  --tw-prose-headings: var(--fallback-bc,oklch(var(--bc)/1));
  --tw-prose-lead: var(--fallback-bc,oklch(var(--bc)/1));
  --tw-prose-links: var(--fallback-bc,oklch(var(--bc)/1));
  --tw-prose-bold: var(--fallback-bc,oklch(var(--bc)/1));
  --tw-prose-counters: var(--fallback-bc,oklch(var(--bc)/1));
  --tw-prose-bullets: var(--fallback-bc,oklch(var(--bc)/0.5));
  --tw-prose-hr: var(--fallback-bc,oklch(var(--bc)/0.2));
  --tw-prose-quotes: var(--fallback-bc,oklch(var(--bc)/1));
  --tw-prose-quote-borders: var(--fallback-bc,oklch(var(--bc)/0.2));
  --tw-prose-captions: var(--fallback-bc,oklch(var(--bc)/0.5));
  --tw-prose-code: var(--fallback-bc,oklch(var(--bc)/1));
  --tw-prose-pre-code: var(--fallback-nc,oklch(var(--nc)/1));
  --tw-prose-pre-bg: var(--fallback-n,oklch(var(--n)/1));
  --tw-prose-th-borders: var(--fallback-bc,oklch(var(--bc)/0.5));
  --tw-prose-td-borders: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.prose :where(code):not(:where([class~="not-prose"] *, pre *)) {
  padding: 1px 8px;
  border-radius: 1.9rem;
  border-radius: var(--rounded-badge);
  font-weight: normal;
  font-weight: initial;
  background-color: rgba(22, 22, 22, 0.1);
  background-color: var(--fallback-bc,oklch(var(--bc)/0.1));
}
.prose :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *))::before, .prose :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *))::after {
  display: none;
}
.prose pre code {
  border-radius: 0;
  padding: 0;
}
.prose :where(tbody tr, thead):not(:where([class~="not-prose"] *)) {
  border-bottom-color: rgba(22, 22, 22, 0.2);
  border-bottom-color: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.glass,
  .glass.btn-active {
  border: none;
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(var(--glass-blur, 40px));
          backdrop-filter: blur(var(--glass-blur, 40px));
  background-color: transparent;
  background-image: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(0, 0, 0, 0) 100%
      ),
      linear-gradient(
        100deg,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(0, 0, 0, 0) 25%
      );
  background-image: linear-gradient(
        135deg,
        rgba(255, 255, 255, var(--glass-opacity, 30%)) 0%,
        rgba(0, 0, 0, 0) 100%
      ),
      linear-gradient(
        var(--glass-reflex-degree, 100deg),
        rgba(255, 255, 255, var(--glass-reflex-opacity, 10%)) 25%,
        rgba(0, 0, 0, 0) 25%
      );
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1) inset,
      0 0 0 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, var(--glass-border-opacity, 10%)) inset,
      0 0 0 2px rgba(0, 0, 0, 0.05);
  text-shadow: 0 1px rgba(0, 0, 0, 0.05);
  text-shadow: 0 1px rgba(0, 0, 0, var(--glass-text-shadow-opacity, 5%));
}
@media (hover: hover) {
  .glass.btn-active {
    border: none;
    -webkit-backdrop-filter: blur(40px);
            backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(var(--glass-blur, 40px));
            backdrop-filter: blur(var(--glass-blur, 40px));
    background-color: transparent;
    background-image: linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.3) 0%,
          rgba(0, 0, 0, 0) 100%
        ),
        linear-gradient(
          100deg,
          rgba(255, 255, 255, 0.1) 25%,
          rgba(0, 0, 0, 0) 25%
        );
    background-image: linear-gradient(
          135deg,
          rgba(255, 255, 255, var(--glass-opacity, 30%)) 0%,
          rgba(0, 0, 0, 0) 100%
        ),
        linear-gradient(
          var(--glass-reflex-degree, 100deg),
          rgba(255, 255, 255, var(--glass-reflex-opacity, 10%)) 25%,
          rgba(0, 0, 0, 0) 25%
        );
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 0 0 2px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, var(--glass-border-opacity, 10%)) inset,
        0 0 0 2px rgba(0, 0, 0, 0.05);
    text-shadow: 0 1px rgba(0, 0, 0, 0.05);
    text-shadow: 0 1px rgba(0, 0, 0, var(--glass-text-shadow-opacity, 5%));
  }
}
.artboard.phone {
  width: 320px;
}
.badge-xs {
  height: 0.75rem;
  font-size: 0.75rem;
  line-height: .75rem;
  padding-left: 0.313rem;
  padding-right: 0.313rem;
}
.badge-sm {
  height: 1rem;
  font-size: 0.75rem;
  line-height: 1rem;
  padding-left: 0.438rem;
  padding-right: 0.438rem;
}
.badge-md {
  height: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding-left: 0.563rem;
  padding-right: 0.563rem;
}
.badge-lg {
  height: 1.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  padding-left: 0.688rem;
  padding-right: 0.688rem;
}
.btm-nav-xs > *:where(.active) {
  border-top-width: 1px;
}
.btm-nav-sm > *:where(.active) {
  border-top-width: 2px;
}
.btm-nav-md > *:where(.active) {
  border-top-width: 2px;
}
.btm-nav-lg > *:where(.active) {
  border-top-width: 4px;
}
.btn-xs {
  height: 1.5rem;
  min-height: 1.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  font-size: 0.75rem;
}
.btn-sm {
  height: 2rem;
  min-height: 2rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 0.875rem;
}
.btn-md {
  height: 3rem;
  min-height: 3rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 0.875rem;
}
.btn-lg {
  height: 4rem;
  min-height: 4rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 1.125rem;
}
.btn-wide {
  width: 16rem;
}
.btn-block {
  width: 100%;
}
.btn-square:where(.btn-xs) {
  height: 1.5rem;
  width: 1.5rem;
  padding: 0px;
}
.btn-square:where(.btn-sm) {
  height: 2rem;
  width: 2rem;
  padding: 0px;
}
.btn-square:where(.btn-md) {
  height: 3rem;
  width: 3rem;
  padding: 0px;
}
.btn-square:where(.btn-lg) {
  height: 4rem;
  width: 4rem;
  padding: 0px;
}
.btn-circle:where(.btn-xs) {
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 9999px;
  padding: 0px;
}
.btn-circle:where(.btn-sm) {
  height: 2rem;
  width: 2rem;
  border-radius: 9999px;
  padding: 0px;
}
.btn-circle:where(.btn-md) {
  height: 3rem;
  width: 3rem;
  border-radius: 9999px;
  padding: 0px;
}
.btn-circle:where(.btn-lg) {
  height: 4rem;
  width: 4rem;
  border-radius: 9999px;
  padding: 0px;
}
.card-side {
  align-items: stretch;
  flex-direction: row;
}
.card-side :where(figure:first-child) {
  overflow: hidden;
  border-top-left-radius: inherit;
  border-top-right-radius: 0;
  border-top-right-radius: initial;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: 0;
  border-bottom-right-radius: initial;
}
.card-side :where(figure:last-child) {
  overflow: hidden;
  border-top-left-radius: 0;
  border-top-left-radius: initial;
  border-top-right-radius: inherit;
  border-bottom-left-radius: 0;
  border-bottom-left-radius: initial;
  border-bottom-right-radius: inherit;
}
.card-side figure > * {
  max-width: none;
  max-width: initial;
}
:where(.card-side figure > *) {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.divider-horizontal {
  flex-direction: column;
}
.divider-horizontal:before {
  height: 100%;
  width: 0.125rem;
}
.divider-horizontal:after {
  height: 100%;
  width: 0.125rem;
}
.join.join-vertical {
  flex-direction: column;
}
.join.join-vertical .join-item:first-child:not(:last-child),
  .join.join-vertical *:first-child:not(:last-child) .join-item {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.join.join-vertical .join-item:last-child:not(:first-child),
  .join.join-vertical *:last-child:not(:first-child) .join-item {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}
.join.join-horizontal {
  flex-direction: row;
}
.join.join-horizontal .join-item:first-child:not(:last-child),
  .join.join-horizontal *:first-child:not(:last-child) .join-item {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: inherit;
  border-top-left-radius: inherit;
}
.join.join-horizontal .join-item:last-child:not(:first-child),
  .join.join-horizontal *:last-child:not(:first-child) .join-item {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: inherit;
  border-top-right-radius: inherit;
}
.menu-horizontal {
  display: inline-flex;
  flex-direction: row;
}
.menu-horizontal > li:not(.menu-title) > details > ul {
  position: absolute;
}
.steps-horizontal .step {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  place-items: center;
  text-align: center;
}
.steps-vertical .step {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(1, minmax(0, 1fr));
}
.tooltip {
  position: relative;
  display: inline-block;
  --tooltip-offset: calc(100% + 1px + var(--tooltip-tail, 0px));
}
.tooltip:before {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  content: attr(data-tip);
  content: var(--tw-content);
  --tw-content: attr(data-tip);
}
.tooltip:before, .tooltip-top:before {
  transform: translateX(-50%);
  top: auto;
  left: 50%;
  right: auto;
  bottom: var(--tooltip-offset);
}
.tooltip-left:before {
  transform: translateY(-50%);
  top: 50%;
  left: auto;
  right: var(--tooltip-offset);
  bottom: auto;
}
.avatar.online:before {
  content: "";
  position: absolute;
  z-index: 10;
  display: block;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(93, 244, 63);
  background-color: var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)));
  outline-style: solid;
  outline-width: 2px;
  outline-color: rgb(255, 255, 255);
  outline-color: var(--fallback-b1,oklch(var(--b1)/1));
  width: 15%;
  height: 15%;
  top: 7%;
  right: 7%;
}
.avatar.offline:before {
  content: "";
  position: absolute;
  z-index: 10;
  display: block;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(209, 209, 209);
  background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
  outline-style: solid;
  outline-width: 2px;
  outline-color: rgb(255, 255, 255);
  outline-color: var(--fallback-b1,oklch(var(--b1)/1));
  width: 15%;
  height: 15%;
  top: 7%;
  right: 7%;
}
.card-compact .card-body {
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.card-compact .card-title {
  margin-bottom: 0.25rem;
}
.card-normal .card-body {
  padding: 2rem;
  padding: var(--padding-card, 2rem);
  font-size: 1rem;
  line-height: 1.5rem;
}
.card-normal .card-title {
  margin-bottom: 0.75rem;
}
.divider-horizontal {
  margin-left: 1rem;
  margin-right: 1rem;
  margin-top: 0px;
  margin-bottom: 0px;
  height: auto;
  width: 1rem;
}
.join.join-vertical > :where(*:not(:first-child)) {
  margin-left: 0px;
  margin-right: 0px;
  margin-top: -1px;
}
.join.join-vertical > :where(*:not(:first-child)):is(.btn) {
  margin-top: calc(1px * -1);
  margin-top: calc(var(--border-btn) * -1);
}
.join.join-horizontal > :where(*:not(:first-child)) {
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: -1px;
}
.join.join-horizontal > :where(*:not(:first-child)):is(.btn) {
  margin-left: calc(1px * -1);
  margin-left: calc(var(--border-btn) * -1);
}
.menu-horizontal > li:not(.menu-title) > details > ul {
  margin-left: 0px;
  margin-top: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-right: 0.5rem;
}
.menu-horizontal > li > details > ul:before {
  content: none;
}
:where(.menu-horizontal > li:not(.menu-title) > details > ul) {
  border-radius: 1rem;
  border-radius: var(--rounded-box, 1rem);
  --tw-bg-opacity: 1;
  background-color: rgb(255, 255, 255);
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
  --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.modal-top :where(.modal-box) {
  width: 100%;
  max-width: none;
  --tw-translate-y: -2.5rem;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translate(var(--tw-translate-x), -2.5rem) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(1) scaleY(1);
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  border-bottom-right-radius: 1rem;
  border-bottom-right-radius: var(--rounded-box, 1rem);
  border-bottom-left-radius: 1rem;
  border-bottom-left-radius: var(--rounded-box, 1rem);
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.modal-middle :where(.modal-box) {
  width: 91.666667%;
  max-width: 32rem;
  --tw-translate-y: 0px;
  --tw-scale-x: .9;
  --tw-scale-y: .9;
  transform: translate(var(--tw-translate-x), 0px) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(.9) scaleY(.9);
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  border-top-left-radius: 1rem;
  border-top-left-radius: var(--rounded-box, 1rem);
  border-top-right-radius: 1rem;
  border-top-right-radius: var(--rounded-box, 1rem);
  border-bottom-right-radius: 1rem;
  border-bottom-right-radius: var(--rounded-box, 1rem);
  border-bottom-left-radius: 1rem;
  border-bottom-left-radius: var(--rounded-box, 1rem);
}
.modal-bottom :where(.modal-box) {
  width: 100%;
  max-width: none;
  --tw-translate-y: 2.5rem;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translate(var(--tw-translate-x), 2.5rem) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(1) scaleY(1);
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  border-top-left-radius: 1rem;
  border-top-left-radius: var(--rounded-box, 1rem);
  border-top-right-radius: 1rem;
  border-top-right-radius: var(--rounded-box, 1rem);
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.steps-horizontal .step {
  grid-template-rows: 40px 1fr;
  grid-template-columns: auto;
  min-width: 4rem;
}
.steps-horizontal .step:before {
  height: 0.5rem;
  width: 100%;
  --tw-translate-x: 0px;
  --tw-translate-y: 0px;
  transform: translate(0px, 0px) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  content: "";
  margin-left: -100%;
}
.steps-horizontal .step:where([dir="rtl"], [dir="rtl"] *):before {
  --tw-translate-x: 0px;
  transform: translate(0px, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.steps-vertical .step {
  gap: 0.5rem;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto;
  min-height: 4rem;
  justify-items: start;
}
.steps-vertical .step:before {
  height: 100%;
  width: 0.5rem;
  --tw-translate-x: -50%;
  --tw-translate-y: -50%;
  transform: translate(-50%, -50%) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  margin-left: 50%;
}
.steps-vertical .step:where([dir="rtl"], [dir="rtl"] *):before {
  --tw-translate-x: 50%;
  transform: translate(50%, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.tooltip {
  position: relative;
  display: inline-block;
  text-align: center;
  --tooltip-tail: 0.1875rem;
  --tooltip-color: var(--fallback-n,oklch(var(--n)/1));
  --tooltip-text-color: var(--fallback-nc,oklch(var(--nc)/1));
  --tooltip-tail-offset: calc(100% + 0.0625rem - var(--tooltip-tail));
}
.tooltip:before,
.tooltip:after {
  opacity: 0;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-delay: 100ms;
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.tooltip:after {
  position: absolute;
  content: "";
  border-style: solid;
  border-width: 0;
  border-width: var(--tooltip-tail, 0);
  width: 0;
  height: 0;
  display: block;
}
.tooltip:before {
  max-width: 20rem;
  white-space: normal;
  border-radius: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  background-color: var(--tooltip-color);
  color: var(--tooltip-text-color);
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
}
.tooltip.tooltip-open:before {
  opacity: 1;
  transition-delay: 75ms;
}
.tooltip.tooltip-open:after {
  opacity: 1;
  transition-delay: 75ms;
}
.tooltip:hover:before {
  opacity: 1;
  transition-delay: 75ms;
}
.tooltip:hover:after {
  opacity: 1;
  transition-delay: 75ms;
}
.tooltip:has(:focus-visible):after,
.tooltip:has(:focus-visible):before {
  opacity: 1;
  transition-delay: 75ms;
}
.tooltip:not([data-tip]):hover:before,
.tooltip:not([data-tip]):hover:after {
  visibility: hidden;
  opacity: 0;
}
.tooltip:after, .tooltip-top:after {
  transform: translateX(-50%);
  border-color: var(--tooltip-color) transparent transparent transparent;
  top: auto;
  left: 50%;
  right: auto;
  bottom: var(--tooltip-tail-offset);
}
.tooltip-left:after {
  transform: translateY(-50%);
  border-color: transparent transparent transparent var(--tooltip-color);
  top: 50%;
  left: auto;
  right: calc(var(--tooltip-tail-offset) + 0.0625rem);
  bottom: auto;
}
/** Prepare animations and center-oriented transforms */
.BuddySystem__drawing .on-right,
        
    .BuddySystem__drawing .on-center path,
    .BuddySystem__drawing .on-left {
  transform-origin: center;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
/** With group hover, fade out all of objects. */
.BuddySystem__drawing.hover .on-right,
        
    .BuddySystem__drawing.hover .on-center path,
    .BuddySystem__drawing.hover .on-left {
  --tw-grayscale: grayscale(80%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) grayscale(80%) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
/** All transform withing the objects (so scaling from center of each object) */
.BuddySystem__drawing svg * {
        transform-box: fill-box;
    }
/** Hightlight sides on hover by scaling */
.BuddySystem__drawing.hover--internationals .on-right,
    .BuddySystem__drawing.hover--buddies .on-left {
  --tw-scale-x: 1.25;
  --tw-scale-y: 1.25;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(1.25) scaleY(1.25);
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
/** Remove fade out on group on hover */
.BuddySystem__drawing.hover--internationals .on-right,
    .BuddySystem__drawing.hover--matching .on-center path,
    .BuddySystem__drawing.hover--buddies .on-left {
  --tw-grayscale: grayscale(0);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) grayscale(0) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
/** Highlight for arrows-lines */
.BuddySystem__drawing.hover--matching .on-center path:first-child {
        /* first fill, since it's a line */
        fill: rgb(244, 63, 94);
        fill: var(--fallback-p,oklch(var(--p)/1));
        --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06));
        filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06));
        filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
    }
/** Highlight for arrows-arrows */
.BuddySystem__drawing.hover--matching .on-center path:last-child {
        /* second stroke, since it's an arrow */
        stroke: rgb(244, 63, 94);
        stroke: var(--fallback-p,oklch(var(--p)/1));
        --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06));
        filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06));
        filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
    }
.Wiki__content {
  color: var(--tw-prose-body);
  max-width: 65ch;
}
.Wiki__content :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.Wiki__content :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.Wiki__content :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-links);
  -webkit-text-decoration: underline;
  text-decoration: underline;
  font-weight: 500;
}
.Wiki__content :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-bold);
  font-weight: 600;
}
.Wiki__content :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.Wiki__content :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.Wiki__content :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.Wiki__content :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}
.Wiki__content :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
.Wiki__content :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
.Wiki__content :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
.Wiki__content :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
.Wiki__content :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
.Wiki__content :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
.Wiki__content :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
.Wiki__content :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
.Wiki__content :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
}
.Wiki__content :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}
.Wiki__content :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  font-weight: 400;
  color: var(--tw-prose-counters);
}
.Wiki__content :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  color: var(--tw-prose-bullets);
}
.Wiki__content :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.25em;
}
.Wiki__content :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}
.Wiki__content :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-left-width: 0.25rem;
  border-left-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-left: 1em;
}
.Wiki__content :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: open-quote;
}
.Wiki__content :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: close-quote;
}
.Wiki__content :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}
.Wiki__content :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 900;
  color: inherit;
}
.Wiki__content :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}
.Wiki__content :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 800;
  color: inherit;
}
.Wiki__content :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}
.Wiki__content :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}
.Wiki__content :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
.Wiki__content :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}
.Wiki__content :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.Wiki__content :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}
.Wiki__content :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.Wiki__content :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-family: inherit;
  color: var(--tw-prose-kbd);
  box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
  font-size: 0.875em;
  border-radius: 0.3125rem;
  padding-top: 0.1875em;
  padding-right: 0.375em;
  padding-bottom: 0.1875em;
  padding-left: 0.375em;
}
.Wiki__content :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-code);
  font-weight: 600;
  font-size: 0.875em;
}
.Wiki__content :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: "`";
}
.Wiki__content :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: "`";
}
.Wiki__content :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.Wiki__content :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.Wiki__content :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.875em;
}
.Wiki__content :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.9em;
}
.Wiki__content :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.Wiki__content :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.Wiki__content :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.Wiki__content :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-right: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-left: 1.1428571em;
}
.Wiki__content :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
.Wiki__content :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: none;
}
.Wiki__content :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: none;
}
.Wiki__content :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  width: 100%;
  table-layout: auto;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}
.Wiki__content :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}
.Wiki__content :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}
.Wiki__content :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}
.Wiki__content :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 0;
}
.Wiki__content :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: baseline;
}
.Wiki__content :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}
.Wiki__content :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: top;
}
.Wiki__content :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  text-align: left;
}
.Wiki__content :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.Wiki__content :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}
.Wiki__content {
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: 17 24 39;
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: 255 255 255;
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgba(0, 0, 0, 0.5);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}
.Wiki__content :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.Wiki__content :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.Wiki__content :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.375em;
}
.Wiki__content :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.375em;
}
.Wiki__content :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.Wiki__content :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.Wiki__content :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.Wiki__content :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.Wiki__content :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.Wiki__content :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.Wiki__content :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.Wiki__content :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  padding-left: 1.625em;
}
.Wiki__content :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.Wiki__content :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.Wiki__content :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.Wiki__content :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.Wiki__content :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}
.Wiki__content :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}
.Wiki__content :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.5714286em;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}
.Wiki__content :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}
.Wiki__content :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}
.Wiki__content :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.Wiki__content :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.Wiki__content :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}
.Wiki__content {
  font-size: 1.125rem;
  line-height: 1.7777778;
}
.Wiki__content :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
}
.Wiki__content :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.2222222em;
  line-height: 1.4545455;
  margin-top: 1.0909091em;
  margin-bottom: 1.0909091em;
}
.Wiki__content :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.6666667em;
  margin-bottom: 1.6666667em;
  padding-left: 1em;
}
.Wiki__content :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 2.6666667em;
  margin-top: 0;
  margin-bottom: 0.8333333em;
  line-height: 1;
}
.Wiki__content :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.6666667em;
  margin-top: 1.8666667em;
  margin-bottom: 1.0666667em;
  line-height: 1.3333333;
}
.Wiki__content :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.3333333em;
  margin-top: 1.6666667em;
  margin-bottom: 0.6666667em;
  line-height: 1.5;
}
.Wiki__content :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7777778em;
  margin-bottom: 0.4444444em;
  line-height: 1.5555556;
}
.Wiki__content :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.Wiki__content :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.Wiki__content :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.Wiki__content :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.Wiki__content :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
  border-radius: 0.3125rem;
  padding-top: 0.2222222em;
  padding-right: 0.4444444em;
  padding-bottom: 0.2222222em;
  padding-left: 0.4444444em;
}
.Wiki__content :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
}
.Wiki__content :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8666667em;
}
.Wiki__content :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.875em;
}
.Wiki__content :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
  line-height: 1.75;
  margin-top: 2em;
  margin-bottom: 2em;
  border-radius: 0.375rem;
  padding-top: 1em;
  padding-right: 1.5em;
  padding-bottom: 1em;
  padding-left: 1.5em;
}
.Wiki__content :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
  padding-left: 1.5555556em;
}
.Wiki__content :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
  padding-left: 1.5555556em;
}
.Wiki__content :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.6666667em;
  margin-bottom: 0.6666667em;
}
.Wiki__content :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.4444444em;
}
.Wiki__content :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.4444444em;
}
.Wiki__content :where(.prose-lg > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.8888889em;
  margin-bottom: 0.8888889em;
}
.Wiki__content :where(.prose-lg > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
}
.Wiki__content :where(.prose-lg > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.3333333em;
}
.Wiki__content :where(.prose-lg > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
}
.Wiki__content :where(.prose-lg > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.3333333em;
}
.Wiki__content :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.8888889em;
  margin-bottom: 0.8888889em;
}
.Wiki__content :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
}
.Wiki__content :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
}
.Wiki__content :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.6666667em;
  padding-left: 1.5555556em;
}
.Wiki__content :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 3.1111111em;
  margin-bottom: 3.1111111em;
}
.Wiki__content :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.Wiki__content :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.Wiki__content :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.Wiki__content :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.Wiki__content :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
  line-height: 1.5;
}
.Wiki__content :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0.75em;
  padding-bottom: 0.75em;
  padding-left: 0.75em;
}
.Wiki__content :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}
.Wiki__content :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}
.Wiki__content :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.75em;
  padding-right: 0.75em;
  padding-bottom: 0.75em;
  padding-left: 0.75em;
}
.Wiki__content :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}
.Wiki__content :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}
.Wiki__content :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.Wiki__content :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.Wiki__content :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
  line-height: 1.5;
  margin-top: 1em;
}
.Wiki__content :where(.prose-lg > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.Wiki__content :where(.prose-lg > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}
@supports not (color: oklch(0% 0 0)) {
  .Wiki__content :where(code):not(:where([class~="not-prose"] *, pre *)) {
    background-color: oklch(86% 0 0/1);
    background-color: var(--fallback-b3,oklch(var(--b3)/1));
  }
}
:root .Wiki__content {
  --tw-prose-body: var(--fallback-bc,oklch(var(--bc)/0.8));
  --tw-prose-headings: var(--fallback-bc,oklch(var(--bc)/1));
  --tw-prose-lead: var(--fallback-bc,oklch(var(--bc)/1));
  --tw-prose-links: var(--fallback-bc,oklch(var(--bc)/1));
  --tw-prose-bold: var(--fallback-bc,oklch(var(--bc)/1));
  --tw-prose-counters: var(--fallback-bc,oklch(var(--bc)/1));
  --tw-prose-bullets: var(--fallback-bc,oklch(var(--bc)/0.5));
  --tw-prose-hr: var(--fallback-bc,oklch(var(--bc)/0.2));
  --tw-prose-quotes: var(--fallback-bc,oklch(var(--bc)/1));
  --tw-prose-quote-borders: var(--fallback-bc,oklch(var(--bc)/0.2));
  --tw-prose-captions: var(--fallback-bc,oklch(var(--bc)/0.5));
  --tw-prose-code: var(--fallback-bc,oklch(var(--bc)/1));
  --tw-prose-pre-code: var(--fallback-nc,oklch(var(--nc)/1));
  --tw-prose-pre-bg: var(--fallback-n,oklch(var(--n)/1));
  --tw-prose-th-borders: var(--fallback-bc,oklch(var(--bc)/0.5));
  --tw-prose-td-borders: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.Wiki__content :where(code):not(:where([class~="not-prose"] *, pre *)) {
  padding: 1px 8px;
  border-radius: 1.9rem;
  border-radius: var(--rounded-badge);
  font-weight: normal;
  font-weight: initial;
  background-color: rgba(22, 22, 22, 0.1);
  background-color: var(--fallback-bc,oklch(var(--bc)/0.1));
}
.Wiki__content :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *))::before,.Wiki__content :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *))::after {
  display: none;
}
.Wiki__content pre code {
  border-radius: 0;
  padding: 0;
}
.Wiki__content :where(tbody tr, thead):not(:where([class~="not-prose"] *)) {
  border-bottom-color: rgba(22, 22, 22, 0.2);
  border-bottom-color: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.Wiki__content :is(:where(h1, h2, h3, h4, h5, h6, th):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, 1);
  border-color: rgba(229, 231, 235, var(--tw-border-opacity));
}
.Wiki__content :is(:where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
  padding-bottom: 0.375rem;
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.Wiki__content :is(:where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  padding-top: 0px;
  padding-bottom: 0px;
}
.Wiki__content img {

    }
.Wiki__search-results em {
  --tw-bg-opacity: 1;
  background-color: rgb(244, 63, 94);
  background-color: var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.Wiki__content img.emoji {
  margin-top: 0px;
  margin-bottom: 0px;
  display: inline-block;
  vertical-align: text-top;
}
.Wiki__content .anchor {
  margin-left: -1.25rem;
  display: inline-block;
  scroll-margin-top: 1.5rem;
  opacity: 0;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.Wiki__content h1:hover .anchor,
    .Wiki__content h2:hover .anchor,
    .Wiki__content h3:hover .anchor,
    .Wiki__content h4:hover .anchor,
    .Wiki__content h5:hover .anchor,
    .Wiki__content h6:hover .anchor {
  opacity: 1;
}
.Forms__field {
  display: flex;
  flex-direction: column;
}
.Forms__field--buttons {
  margin-top: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
.Forms__button {
  display: inline-flex;
  height: 3rem;
  min-height: 3rem;
  flex-shrink: 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border-radius: var(--rounded-btn, 0.5rem);
  border-color: transparent;
  border-color: oklch(93% 0 0 / 1);
  border-color: oklch(var(--btn-color, var(--b2)) / var(--tw-border-opacity));
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1em;
  gap: 0.5rem;
  font-weight: 600;
  -webkit-text-decoration-line: none;
          text-decoration-line: none;
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  border-width: 1px;
  border-width: var(--border-btn, 1px);
  transition-property: color, background-color, border-color, opacity, box-shadow, transform;
  --tw-text-opacity: 1;
  color: rgb(22, 22, 22);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
  outline-color: rgb(22, 22, 22);
  outline-color: var(--fallback-bc,oklch(var(--bc)/1));
  background-color: rgb(232, 232, 232);
  background-color: oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity));
  --tw-bg-opacity: 1;
  --tw-border-opacity: 1;
}
.Forms__button[disabled],.Forms__button:disabled {
  pointer-events: none;
}
:where(.Forms__button:is(input[type="checkbox"])),
:where(.Forms__button:is(input[type="radio"])) {
  width: auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.Forms__button:is(input[type="checkbox"]):after,.Forms__button:is(input[type="radio"]):after {
  --tw-content: attr(aria-label);
  content: attr(aria-label);
  content: var(--tw-content);
}
@media (hover: hover) {
  .Forms__button:hover {
    --tw-border-opacity: 1;
    border-color: rgb(209, 209, 209);
    border-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-border-opacity)));
    --tw-bg-opacity: 1;
    background-color: rgb(209, 209, 209);
    background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .Forms__button:hover {
      background-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
      border-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.Forms__button:hover {
        background-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity, 1)) 90%,
            black
          );
        border-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-border-opacity, 1)) 90%,
            black
          );
      }
}
  }
  @supports not (color: oklch(0% 0 0)) {
    .Forms__button:hover {
      background-color: var(--btn-color, var(--fallback-b2));
      border-color: var(--btn-color, var(--fallback-b2));
    }
  }
  .Forms__button:hover {
    --tw-border-opacity: 1;
    border-color: rgb(209, 209, 209);
    border-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-border-opacity)));
    --tw-bg-opacity: 1;
    background-color: rgb(209, 209, 209);
    background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .Forms__button:hover {
      background-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
      border-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.Forms__button:hover {
        background-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity, 1)) 90%,
            black
          );
        border-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-border-opacity, 1)) 90%,
            black
          );
      }
}
  }
  @supports not (color: oklch(0% 0 0)) {
    .Forms__button:hover {
      background-color: var(--btn-color, var(--fallback-b2));
      border-color: var(--btn-color, var(--fallback-b2));
    }
  }
  .Forms__button:hover {
    --tw-border-opacity: 1;
    border-color: rgb(209, 209, 209);
    border-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-border-opacity)));
    --tw-bg-opacity: 1;
    background-color: rgb(209, 209, 209);
    background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .Forms__button:hover {
      background-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
      border-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.Forms__button:hover {
        background-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity, 1)) 90%,
            black
          );
        border-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-border-opacity, 1)) 90%,
            black
          );
      }
}
  }
  @supports not (color: oklch(0% 0 0)) {
    .Forms__button:hover {
      background-color: var(--btn-color, var(--fallback-b2));
      border-color: var(--btn-color, var(--fallback-b2));
    }
  }
  .Forms__button.glass:hover {
    --glass-opacity: 25%;
    --glass-border-opacity: 15%;
  }
  .btn-outline.Forms__button:hover {
    --tw-text-opacity: 1;
    color: rgb(255, 255, 255);
    color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .btn-outline.Forms__button:hover {
      background-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
      border-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.btn-outline.Forms__button:hover {
        background-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
      }
}
  }
  .btn-outline.Forms__button:hover {
    --tw-text-opacity: 1;
    color: rgb(255, 255, 255);
    color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .btn-outline.Forms__button:hover {
      background-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
      border-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.btn-outline.Forms__button:hover {
        background-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
      }
}
  }
  .Forms__button[disabled]:hover,.Forms__button:disabled:hover {
    --tw-border-opacity: 0;
    background-color: rgba(61, 68, 81, 0.2);
    background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
    --tw-bg-opacity: 0.2;
    color: rgba(22, 22, 22, 0.2);
    color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
    --tw-text-opacity: 0.2;
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .Forms__button:is(input[type="checkbox"]:checked):hover,.Forms__button:is(input[type="radio"]:checked):hover {
      background-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
      border-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.Forms__button:is(input[type="checkbox"]:checked):hover,.Forms__button:is(input[type="radio"]:checked):hover {
        background-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
      }
}
  }
}
@media (prefers-reduced-motion: no-preference) {
  .Forms__button {
    animation: button-pop 0.25s ease-out;
    animation: button-pop var(--animation-btn, 0.25s) ease-out;
  }
}
.Forms__button:active:hover,.Forms__button:active:focus {
  animation: button-pop 0s ease-out;
  transform: scale(0.95);
  transform: scale(var(--btn-focus-scale, 0.97));
}
@supports not (color: oklch(0% 0 0)) {
  .Forms__button {
    background-color: var(--fallback-p);
    background-color: var(--btn-color, var(--fallback-b2));
    border-color: var(--fallback-p);
    border-color: var(--btn-color, var(--fallback-b2));
    --btn-color: var(--fallback-p);
  }
}
@supports (color: color-mix(in oklab, black, black)) {
  .btn-outline.Forms__button.btn-active {
    background-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
    border-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
  }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.btn-outline.Forms__button.btn-active {
      background-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
    }
}
}
.Forms__button:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
}
.Forms__button {
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
  outline-color: rgb(244, 63, 94);
  outline-color: var(--fallback-p,oklch(var(--p)/1));
}
@supports (color: oklch(0% 0 0)) {
  .Forms__button {
    --btn-color: var(--p);
  }
}
.Forms__button.glass {
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
  outline-color: currentColor;
}
.Forms__button.glass.btn-active {
  --glass-opacity: 25%;
  --glass-border-opacity: 15%;
}
.btn-outline.Forms__button {
  --tw-text-opacity: 1;
  color: rgb(244, 63, 94);
  color: var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity)));
}
.btn-outline.Forms__button.btn-active {
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
}
.Forms__button.btn-disabled,.Forms__button[disabled],.Forms__button:disabled {
  --tw-border-opacity: 0;
  background-color: rgba(61, 68, 81, 0.2);
  background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
  --tw-bg-opacity: 0.2;
  color: rgba(22, 22, 22, 0.2);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  --tw-text-opacity: 0.2;
}
.Forms__button:is(input[type="checkbox"]:checked),.Forms__button:is(input[type="radio"]:checked) {
  --tw-border-opacity: 1;
  border-color: rgb(244, 63, 94);
  border-color: var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(244, 63, 94);
  background-color: var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
}
.Forms__button:is(input[type="checkbox"]:checked):focus-visible,.Forms__button:is(input[type="radio"]:checked):focus-visible {
  outline-color: rgb(244, 63, 94);
  outline-color: var(--fallback-p,oklch(var(--p)/1));
}
.join > :where(*:not(:first-child)):is(.Forms__button) {
  margin-left: calc(1px * -1);
  margin-left: calc(var(--border-btn) * -1);
}
.join.join-vertical > :where(*:not(:first-child)):is(.Forms__button) {
  margin-top: calc(1px * -1);
  margin-top: calc(var(--border-btn) * -1);
}
.join.join-horizontal > :where(*:not(:first-child)):is(.Forms__button) {
  margin-left: calc(1px * -1);
  margin-left: calc(var(--border-btn) * -1);
}
.Forms__button {
  text-transform: uppercase;
}
.Forms__button--submit {
        /*@apply ;*/
    }
.Forms__error_text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgba(220, 38, 38, 1);
  color: rgba(220, 38, 38, var(--tw-text-opacity));
}
.Forms__error_text:is([data-theme="dark"] *) {
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, 1);
  color: rgba(239, 68, 68, var(--tw-text-opacity));
}
.Forms__input {
  flex-shrink: 1;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 3rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 1rem;
  line-height: 2;
  line-height: 1.5rem;
  border-radius: 0.5rem;
  border-radius: var(--rounded-btn, 0.5rem);
  border-width: 1px;
  border-color: transparent;
  --tw-bg-opacity: 1;
  background-color: rgb(255, 255, 255);
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
}
.Forms__input[type="number"]::-webkit-inner-spin-button {
  margin-top: -1rem;
  margin-bottom: -1rem;
  margin-right: -1rem;
}
.Forms__input input {
  --tw-bg-opacity: 1;
  background-color: rgb(244, 63, 94);
  background-color: var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));
  background-color: transparent;
}
.Forms__input input:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.Forms__input[list]::-webkit-calendar-picker-indicator {
  line-height: 1em;
}
.Forms__input {
  border-color: rgba(22, 22, 22, 0.2);
  border-color: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.Forms__input:focus,.Forms__input:focus-within {
  box-shadow: none;
  border-color: rgba(22, 22, 22, 0.2);
  border-color: var(--fallback-bc,oklch(var(--bc)/0.2));
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: rgba(22, 22, 22, 0.2);
  outline-color: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.Forms__input {
  --tw-border-opacity: 1;
  border-color: rgb(123, 63, 244);
  border-color: var(--fallback-s,oklch(var(--s)/var(--tw-border-opacity)));
}
.Forms__input:focus,.Forms__input:focus-within {
  --tw-border-opacity: 1;
  border-color: rgb(123, 63, 244);
  border-color: var(--fallback-s,oklch(var(--s)/var(--tw-border-opacity)));
  outline-color: rgb(123, 63, 244);
  outline-color: var(--fallback-s,oklch(var(--s)/1));
}
.Forms__input:has(> input[disabled]),.Forms__input:disabled,.Forms__input[disabled] {
  cursor: not-allowed;
  --tw-border-opacity: 1;
  border-color: rgb(232, 232, 232);
  border-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(232, 232, 232);
  background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));
  color: rgba(22, 22, 22, 0.4);
  color: var(--fallback-bc,oklch(var(--bc)/0.4));
}
.Forms__input:has(> input[disabled])::-moz-placeholder, .Forms__input:disabled::-moz-placeholder, .Forms__input[disabled]::-moz-placeholder {
  color: rgba(22, 22, 22, 0.2);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-placeholder-opacity)));
  --tw-placeholder-opacity: 0.2;
}
.Forms__input:has(> input[disabled])::placeholder,.Forms__input:disabled::placeholder,.Forms__input[disabled]::placeholder {
  color: rgba(22, 22, 22, 0.2);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-placeholder-opacity)));
  --tw-placeholder-opacity: 0.2;
}
.Forms__input:has(> input[disabled]) > input[disabled] {
  cursor: not-allowed;
}
.Forms__input::-webkit-date-and-time-value {
  text-align: inherit;
}
.mockup-browser .mockup-browser-toolbar .Forms__input {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  display: block;
  height: 1.75rem;
  width: 24rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  --tw-bg-opacity: 1;
  background-color: rgb(232, 232, 232);
  background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));
  padding-left: 2rem;
  direction: ltr;
}
.mockup-browser .mockup-browser-toolbar .Forms__input:before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 50%;
  aspect-ratio: 1 / 1;
  height: 0.75rem;
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), -50%) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  border-radius: 9999px;
  border-width: 2px;
  border-color: currentColor;
  opacity: 0.6;
}
.mockup-browser .mockup-browser-toolbar .Forms__input:after {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 50%;
  height: 0.5rem;
  --tw-translate-y: 25%;
  --tw-rotate: -45deg;
  transform: translate(var(--tw-translate-x), 25%) rotate(-45deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  border-radius: 9999px;
  border-width: 1px;
  border-color: currentColor;
  opacity: 0.6;
}
.Forms__input {
  width: 100%;
}
.Forms__textarea {
  min-height: 3rem;
  flex-shrink: 1;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  line-height: 2;
  border-radius: 0.5rem;
  border-radius: var(--rounded-btn, 0.5rem);
  border-width: 1px;
  border-color: transparent;
  --tw-bg-opacity: 1;
  background-color: rgb(255, 255, 255);
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
  border-color: oklch(20% 0 0/0.2);
  border-color: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.Forms__textarea:focus {
  box-shadow: none;
  border-color: rgba(22, 22, 22, 0.2);
  border-color: var(--fallback-bc,oklch(var(--bc)/0.2));
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: rgba(22, 22, 22, 0.2);
  outline-color: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.Forms__textarea {
  --tw-border-opacity: 1;
  border-color: rgb(123, 63, 244);
  border-color: var(--fallback-s,oklch(var(--s)/var(--tw-border-opacity)));
}
.Forms__textarea:focus {
  --tw-border-opacity: 1;
  border-color: rgb(123, 63, 244);
  border-color: var(--fallback-s,oklch(var(--s)/var(--tw-border-opacity)));
  outline-color: rgb(123, 63, 244);
  outline-color: var(--fallback-s,oklch(var(--s)/1));
}
.Forms__textarea:disabled,.Forms__textarea[disabled] {
  cursor: not-allowed;
  --tw-border-opacity: 1;
  border-color: rgb(232, 232, 232);
  border-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(232, 232, 232);
  background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));
  color: rgba(22, 22, 22, 0.4);
  color: var(--fallback-bc,oklch(var(--bc)/0.4));
}
.Forms__textarea:disabled::-moz-placeholder, .Forms__textarea[disabled]::-moz-placeholder {
  color: rgba(22, 22, 22, 0.2);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-placeholder-opacity)));
  --tw-placeholder-opacity: 0.2;
}
.Forms__textarea:disabled::placeholder,.Forms__textarea[disabled]::placeholder {
  color: rgba(22, 22, 22, 0.2);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-placeholder-opacity)));
  --tw-placeholder-opacity: 0.2;
}
.Forms__textarea {
  height: auto;
  width: 100%;
}
.Forms__required-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transition-duration: 200ms;
  height: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  padding-left: 0.563rem;
  padding-right: 0.563rem;
  border-radius: 1.9rem;
  border-radius: var(--rounded-badge, 1.9rem);
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(232, 232, 232);
  border-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(255, 255, 255);
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(22, 22, 22);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
}
:where(.menu li) .Forms__required-note {
  justify-self: end;
}
.Forms__required-note {
  --tw-border-opacity: 1;
  border-color: rgb(255, 188, 10);
  border-color: var(--fallback-a,oklch(var(--a)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(255, 188, 10);
  background-color: var(--fallback-a,oklch(var(--a)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(22, 13, 0);
  color: var(--fallback-ac,oklch(var(--ac)/var(--tw-text-opacity)));
}
.badge-outline.Forms__required-note {
  --tw-text-opacity: 1;
  color: rgb(255, 188, 10);
  color: var(--fallback-a,oklch(var(--a)/var(--tw-text-opacity)));
}
.Forms__required-note {
  font-size: 0.75rem;
  line-height: 1rem;
  color: rgb(22, 22, 22);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  --tw-text-opacity: 1;
  color: oklch(16.6954% 0.034121 82.342715/1);
  color: var(--fallback-ac,oklch(var(--ac)/var(--tw-text-opacity)));
}
/* standard select */
.Forms__select {
  display: inline-flex;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 3rem;
  min-height: 3rem;
  padding-left: 1rem;
  padding-right: 2.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  line-height: 2;
  border-radius: 0.5rem;
  border-radius: var(--rounded-btn, 0.5rem);
  border-width: 1px;
  border-color: transparent;
  --tw-bg-opacity: 1;
  background-color: rgb(255, 255, 255);
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1px + 50%),
    calc(100% - 16.1px) calc(1px + 50%);
  background-size: 4px 4px,
    4px 4px;
  background-repeat: no-repeat;
}
.Forms__select[multiple] {
  height: auto;
}
.Forms__select {
  border-color: rgba(22, 22, 22, 0.2);
  border-color: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.Forms__select:focus {
  box-shadow: none;
  border-color: rgba(22, 22, 22, 0.2);
  border-color: var(--fallback-bc,oklch(var(--bc)/0.2));
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: rgba(22, 22, 22, 0.2);
  outline-color: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.Forms__select {
  --tw-border-opacity: 1;
  border-color: rgb(123, 63, 244);
  border-color: var(--fallback-s,oklch(var(--s)/var(--tw-border-opacity)));
}
.Forms__select:focus {
  --tw-border-opacity: 1;
  border-color: rgb(123, 63, 244);
  border-color: var(--fallback-s,oklch(var(--s)/var(--tw-border-opacity)));
  outline-color: rgb(123, 63, 244);
  outline-color: var(--fallback-s,oklch(var(--s)/1));
}
.Forms__select:disabled,.Forms__select[disabled] {
  cursor: not-allowed;
  --tw-border-opacity: 1;
  border-color: rgb(232, 232, 232);
  border-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(232, 232, 232);
  background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));
  color: rgba(22, 22, 22, 0.4);
  color: var(--fallback-bc,oklch(var(--bc)/0.4));
}
.Forms__select:disabled::-moz-placeholder, .Forms__select[disabled]::-moz-placeholder {
  color: rgba(22, 22, 22, 0.2);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-placeholder-opacity)));
  --tw-placeholder-opacity: 0.2;
}
.Forms__select:disabled::placeholder,.Forms__select[disabled]::placeholder {
  color: rgba(22, 22, 22, 0.2);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-placeholder-opacity)));
  --tw-placeholder-opacity: 0.2;
}
.Forms__select[multiple],.Forms__select[size].select:not([size="1"]) {
  background-image: none;
  padding-right: 1rem;
}
[dir="rtl"] .Forms__select {
  background-position: calc(0% + 12px) calc(1px + 50%),
    calc(0% + 16px) calc(1px + 50%);
}
.Forms__select {
  width: 100%;
}
@media (hover:hover) {
  .Forms__label-widget a:hover {
    --tw-text-opacity: 1;
    color: rgb(22, 22, 22);
    color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  }
}
.Forms__label-widget {
  display: flex;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: center;
  justify-content: space-between;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.btm-nav > * .Forms__label-widget {
  font-size: 1rem;
  line-height: 1.5rem;
}
.Forms__label {
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(22, 22, 22);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
}
.Forms__help_text {
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(22, 22, 22);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  flex-grow: 1;
}
.Forms__field--error .Forms__input {
  --tw-border-opacity: 1;
  border-color: rgb(248, 114, 114);
  border-color: var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)));
}
.Forms__field--error .Forms__input:focus,.Forms__field--error .Forms__input:focus-within {
  --tw-border-opacity: 1;
  border-color: rgb(248, 114, 114);
  border-color: var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)));
  outline-color: rgb(248, 114, 114);
  outline-color: var(--fallback-er,oklch(var(--er)/1));
}
.Forms__field--error .Forms__select {
  --tw-border-opacity: 1;
  border-color: rgb(248, 114, 114);
  border-color: var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)));
}
.Forms__field--error .Forms__select:focus {
  --tw-border-opacity: 1;
  border-color: rgb(248, 114, 114);
  border-color: var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)));
  outline-color: rgb(248, 114, 114);
  outline-color: var(--fallback-er,oklch(var(--er)/1));
}
.Forms__field--error .Forms__label {
  --tw-text-opacity: 1;
  color: rgba(185, 28, 28, 1);
  color: rgba(185, 28, 28, var(--tw-text-opacity));
}
.Forms__field--error .Forms__label:is([data-theme="dark"] *) {
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, 1);
  color: rgba(239, 68, 68, var(--tw-text-opacity));
}
/* FILE INPUT related styles */
.Forms__field--file .Forms__widget {
  display: flex;
  flex-direction: column;
}
.Forms__file-state {
        /* status located in right */
        display: flex;
        width: auto;
        flex-direction: row;
        align-items: center;
        -moz-column-gap: 0.25rem;
             column-gap: 0.25rem;
        align-self: flex-end;
        border-top-left-radius: 0.25rem;
        border-top-right-radius: 0.25rem;
        border-width: 1px;
        border-bottom-width: 0px;
        --tw-border-opacity: 1;
        border-color: rgb(123, 63, 244);
        border-color: var(--fallback-s,oklch(var(--s)/var(--tw-border-opacity)));
        padding-left: 0.5rem;
    }
@media (min-width: 768px) {
  .Forms__file-state {
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
    align-self: center;
    padding-left: 1rem;
  }
}
.Forms__file-state {

        height: 2em;
        margin-top: -2em;
    }
.Forms__file-state a {
        /* link to current file */
        display: inline-flex;
        height: 3rem;
        min-height: 3rem;
        flex-shrink: 0;
        cursor: pointer;
        -webkit-user-select: none;
           -moz-user-select: none;
                user-select: none;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        border-radius: 0.5rem;
        border-radius: var(--rounded-btn, 0.5rem);
        border-color: transparent;
        border-color: oklch(93% 0 0 / 1);
        border-color: oklch(var(--btn-color, var(--b2)) / var(--tw-border-opacity));
        padding-left: 1rem;
        padding-right: 1rem;
        text-align: center;
        font-size: 0.875rem;
        line-height: 1em;
        gap: 0.5rem;
        font-weight: 600;
        -webkit-text-decoration-line: none;
                text-decoration-line: none;
        transition-duration: 200ms;
        transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
        border-width: 1px;
        border-width: var(--border-btn, 1px);
        transition-property: color, background-color, border-color, opacity, box-shadow, transform;
        --tw-text-opacity: 1;
        color: rgb(22, 22, 22);
        color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
        --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
        box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
        outline-color: rgb(22, 22, 22);
        outline-color: var(--fallback-bc,oklch(var(--bc)/1));
        background-color: rgb(232, 232, 232);
        background-color: oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity));
        --tw-bg-opacity: 1;
        --tw-border-opacity: 1;
    }
.Forms__file-state a[disabled],.Forms__file-state a:disabled {
  pointer-events: none;
}
:where(.Forms__file-state a:is(input[type="checkbox"])),
:where(.Forms__file-state a:is(input[type="radio"])) {
  width: auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.Forms__file-state a:is(input[type="checkbox"]):after,.Forms__file-state a:is(input[type="radio"]):after {
  --tw-content: attr(aria-label);
  content: attr(aria-label);
  content: var(--tw-content);
}
@media (hover: hover) {
  .Forms__file-state a:hover {
    --tw-border-opacity: 1;
    border-color: rgb(209, 209, 209);
    border-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-border-opacity)));
    --tw-bg-opacity: 1;
    background-color: rgb(209, 209, 209);
    background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .Forms__file-state a:hover {
      background-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
      border-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.Forms__file-state a:hover {
        background-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity, 1)) 90%,
            black
          );
        border-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-border-opacity, 1)) 90%,
            black
          );
      }
}
  }
  @supports not (color: oklch(0% 0 0)) {
    .Forms__file-state a:hover {
      background-color: var(--btn-color, var(--fallback-b2));
      border-color: var(--btn-color, var(--fallback-b2));
    }
  }
  .Forms__file-state a:hover {
    --tw-border-opacity: 1;
    border-color: rgb(209, 209, 209);
    border-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-border-opacity)));
    --tw-bg-opacity: 1;
    background-color: rgb(209, 209, 209);
    background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .Forms__file-state a:hover {
      background-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
      border-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.Forms__file-state a:hover {
        background-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity, 1)) 90%,
            black
          );
        border-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-border-opacity, 1)) 90%,
            black
          );
      }
}
  }
  @supports not (color: oklch(0% 0 0)) {
    .Forms__file-state a:hover {
      background-color: var(--btn-color, var(--fallback-b2));
      border-color: var(--btn-color, var(--fallback-b2));
    }
  }
  .Forms__file-state a:hover {
    --tw-border-opacity: 1;
    border-color: rgb(209, 209, 209);
    border-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-border-opacity)));
    --tw-bg-opacity: 1;
    background-color: rgb(209, 209, 209);
    background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .Forms__file-state a:hover {
      background-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
      border-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.Forms__file-state a:hover {
        background-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity, 1)) 90%,
            black
          );
        border-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-border-opacity, 1)) 90%,
            black
          );
      }
}
  }
  @supports not (color: oklch(0% 0 0)) {
    .Forms__file-state a:hover {
      background-color: var(--btn-color, var(--fallback-b2));
      border-color: var(--btn-color, var(--fallback-b2));
    }
  }
  .Forms__file-state a.glass:hover {
    --glass-opacity: 25%;
    --glass-border-opacity: 15%;
  }
  .Forms__file-state a:hover {
    border-color: transparent;
    background-color: transparent;
    -webkit-text-decoration-line: underline;
            text-decoration-line: underline;
  }
  .Forms__file-state a[disabled]:hover,.Forms__file-state a:disabled:hover {
    --tw-border-opacity: 0;
    background-color: rgba(61, 68, 81, 0.2);
    background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
    --tw-bg-opacity: 0.2;
    color: rgba(22, 22, 22, 0.2);
    color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
    --tw-text-opacity: 0.2;
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .Forms__file-state a:is(input[type="checkbox"]:checked):hover,.Forms__file-state a:is(input[type="radio"]:checked):hover {
      background-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
      border-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.Forms__file-state a:is(input[type="checkbox"]:checked):hover,.Forms__file-state a:is(input[type="radio"]:checked):hover {
        background-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
      }
}
  }
}
@media (prefers-reduced-motion: no-preference) {
  .Forms__file-state a {
    animation: button-pop 0.25s ease-out;
    animation: button-pop var(--animation-btn, 0.25s) ease-out;
  }
}
.Forms__file-state a:active:hover,.Forms__file-state a:active:focus {
  animation: button-pop 0s ease-out;
  transform: scale(0.95);
  transform: scale(var(--btn-focus-scale, 0.97));
}
@supports not (color: oklch(0% 0 0)) {
  .Forms__file-state a {
    background-color: var(--btn-color, var(--fallback-b2));
    border-color: var(--btn-color, var(--fallback-b2));
  }
}
.Forms__file-state a:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
}
.Forms__file-state a.glass {
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
  outline-color: currentColor;
}
.Forms__file-state a.glass.btn-active {
  --glass-opacity: 25%;
  --glass-border-opacity: 15%;
}
.Forms__file-state a {
  border-color: transparent;
  background-color: transparent;
  --tw-text-opacity: 1;
  color: rgb(244, 63, 94);
  color: var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity)));
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
  outline-color: currentColor;
}
.Forms__file-state a.btn-active {
  border-color: transparent;
  background-color: transparent;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
.Forms__file-state a.btn-disabled,.Forms__file-state a[disabled],.Forms__file-state a:disabled {
  --tw-border-opacity: 0;
  background-color: rgba(61, 68, 81, 0.2);
  background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
  --tw-bg-opacity: 0.2;
  color: rgba(22, 22, 22, 0.2);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  --tw-text-opacity: 0.2;
}
.Forms__file-state a:is(input[type="checkbox"]:checked),.Forms__file-state a:is(input[type="radio"]:checked) {
  --tw-border-opacity: 1;
  border-color: rgb(244, 63, 94);
  border-color: var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(244, 63, 94);
  background-color: var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
}
.Forms__file-state a:is(input[type="checkbox"]:checked):focus-visible,.Forms__file-state a:is(input[type="radio"]:checked):focus-visible {
  outline-color: rgb(244, 63, 94);
  outline-color: var(--fallback-p,oklch(var(--p)/1));
}
.join > :where(*:not(:first-child)):is(.Forms__file-state a) {
  margin-left: calc(1px * -1);
  margin-left: calc(var(--border-btn) * -1);
}
.Forms__file-state a {
  height: 2rem;
  min-height: 2rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 0.875rem;
}
.btn-square:where(.Forms__file-state a) {
  height: 2rem;
  width: 2rem;
  padding: 0px;
}
.btn-circle:where(.Forms__file-state a) {
  height: 2rem;
  width: 2rem;
  border-radius: 9999px;
  padding: 0px;
}
.join.join-vertical > :where(*:not(:first-child)):is(.Forms__file-state a) {
  margin-top: calc(1px * -1);
  margin-top: calc(var(--border-btn) * -1);
}
.join.join-horizontal > :where(*:not(:first-child)):is(.Forms__file-state a) {
  margin-left: calc(1px * -1);
  margin-left: calc(var(--border-btn) * -1);
}
.Forms__file-state a {
  max-width: 5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  --tw-text-opacity: 1;
  color: rgb(123, 63, 244);
  color: var(--fallback-s,oklch(var(--s)/var(--tw-text-opacity)));
  text-transform: uppercase;
}
.Forms__file-state input[type=checkbox] {
        /* checkbox to delete file, hidden */
        display: none;
    }
.Forms__file-state label {
        /* clear btn */
        display: inline-flex;
        height: 3rem;
        min-height: 3rem;
        flex-shrink: 0;
        cursor: pointer;
        -webkit-user-select: none;
           -moz-user-select: none;
                user-select: none;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        border-radius: 0.5rem;
        border-radius: var(--rounded-btn, 0.5rem);
        border-color: transparent;
        border-color: oklch(93% 0 0 / 1);
        border-color: oklch(var(--btn-color, var(--b2)) / var(--tw-border-opacity));
        padding-left: 1rem;
        padding-right: 1rem;
        text-align: center;
        font-size: 0.875rem;
        line-height: 1em;
        gap: 0.5rem;
        font-weight: 600;
        -webkit-text-decoration-line: none;
                text-decoration-line: none;
        transition-duration: 200ms;
        transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
        border-width: 1px;
        border-width: var(--border-btn, 1px);
        transition-property: color, background-color, border-color, opacity, box-shadow, transform;
        --tw-text-opacity: 1;
        color: rgb(22, 22, 22);
        color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
        --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
        box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
        outline-color: rgb(22, 22, 22);
        outline-color: var(--fallback-bc,oklch(var(--bc)/1));
        background-color: rgb(232, 232, 232);
        background-color: oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity));
        --tw-bg-opacity: 1;
        --tw-border-opacity: 1;
    }
.Forms__file-state label[disabled],.Forms__file-state label:disabled {
  pointer-events: none;
}
:where(.Forms__file-state label:is(input[type="checkbox"])),
:where(.Forms__file-state label:is(input[type="radio"])) {
  width: auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.Forms__file-state label:is(input[type="checkbox"]):after,.Forms__file-state label:is(input[type="radio"]):after {
  --tw-content: attr(aria-label);
  content: attr(aria-label);
  content: var(--tw-content);
}
@media (hover: hover) {
  .Forms__file-state label:hover {
    --tw-border-opacity: 1;
    border-color: rgb(209, 209, 209);
    border-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-border-opacity)));
    --tw-bg-opacity: 1;
    background-color: rgb(209, 209, 209);
    background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .Forms__file-state label:hover {
      background-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
      border-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.Forms__file-state label:hover {
        background-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity, 1)) 90%,
            black
          );
        border-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-border-opacity, 1)) 90%,
            black
          );
      }
}
  }
  @supports not (color: oklch(0% 0 0)) {
    .Forms__file-state label:hover {
      background-color: var(--btn-color, var(--fallback-b2));
      border-color: var(--btn-color, var(--fallback-b2));
    }
  }
  .Forms__file-state label:hover {
    --tw-border-opacity: 1;
    border-color: rgb(209, 209, 209);
    border-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-border-opacity)));
    --tw-bg-opacity: 1;
    background-color: rgb(209, 209, 209);
    background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .Forms__file-state label:hover {
      background-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
      border-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.Forms__file-state label:hover {
        background-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity, 1)) 90%,
            black
          );
        border-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-border-opacity, 1)) 90%,
            black
          );
      }
}
  }
  @supports not (color: oklch(0% 0 0)) {
    .Forms__file-state label:hover {
      background-color: var(--btn-color, var(--fallback-b2));
      border-color: var(--btn-color, var(--fallback-b2));
    }
  }
  .Forms__file-state label:hover {
    --tw-border-opacity: 1;
    border-color: rgb(209, 209, 209);
    border-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-border-opacity)));
    --tw-bg-opacity: 1;
    background-color: rgb(209, 209, 209);
    background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .Forms__file-state label:hover {
      background-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
      border-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.Forms__file-state label:hover {
        background-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity, 1)) 90%,
            black
          );
        border-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-border-opacity, 1)) 90%,
            black
          );
      }
}
  }
  @supports not (color: oklch(0% 0 0)) {
    .Forms__file-state label:hover {
      background-color: var(--btn-color, var(--fallback-b2));
      border-color: var(--btn-color, var(--fallback-b2));
    }
  }
  .Forms__file-state label.glass:hover {
    --glass-opacity: 25%;
    --glass-border-opacity: 15%;
  }
  .Forms__file-state label:hover {
    border-color: transparent;
    background-color: transparent;
    -webkit-text-decoration-line: underline;
            text-decoration-line: underline;
  }
  .Forms__file-state label[disabled]:hover,.Forms__file-state label:disabled:hover {
    --tw-border-opacity: 0;
    background-color: rgba(61, 68, 81, 0.2);
    background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
    --tw-bg-opacity: 0.2;
    color: rgba(22, 22, 22, 0.2);
    color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
    --tw-text-opacity: 0.2;
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .Forms__file-state label:is(input[type="checkbox"]:checked):hover,.Forms__file-state label:is(input[type="radio"]:checked):hover {
      background-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
      border-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.Forms__file-state label:is(input[type="checkbox"]:checked):hover,.Forms__file-state label:is(input[type="radio"]:checked):hover {
        background-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
      }
}
  }
}
@media (prefers-reduced-motion: no-preference) {
  .Forms__file-state label {
    animation: button-pop 0.25s ease-out;
    animation: button-pop var(--animation-btn, 0.25s) ease-out;
  }
}
.Forms__file-state label:active:hover,.Forms__file-state label:active:focus {
  animation: button-pop 0s ease-out;
  transform: scale(0.95);
  transform: scale(var(--btn-focus-scale, 0.97));
}
@supports not (color: oklch(0% 0 0)) {
  .Forms__file-state label {
    background-color: var(--btn-color, var(--fallback-b2));
    border-color: var(--btn-color, var(--fallback-b2));
  }
}
.Forms__file-state label:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
}
.Forms__file-state label.glass {
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
  outline-color: currentColor;
}
.Forms__file-state label.glass.btn-active {
  --glass-opacity: 25%;
  --glass-border-opacity: 15%;
}
.Forms__file-state label {
  border-color: transparent;
  background-color: transparent;
  --tw-text-opacity: 1;
  color: rgb(244, 63, 94);
  color: var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity)));
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
  outline-color: currentColor;
}
.Forms__file-state label.btn-active {
  border-color: transparent;
  background-color: transparent;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
.Forms__file-state label.btn-disabled,.Forms__file-state label[disabled],.Forms__file-state label:disabled {
  --tw-border-opacity: 0;
  background-color: rgba(61, 68, 81, 0.2);
  background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
  --tw-bg-opacity: 0.2;
  color: rgba(22, 22, 22, 0.2);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  --tw-text-opacity: 0.2;
}
.Forms__file-state label:is(input[type="checkbox"]:checked),.Forms__file-state label:is(input[type="radio"]:checked) {
  --tw-border-opacity: 1;
  border-color: rgb(244, 63, 94);
  border-color: var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(244, 63, 94);
  background-color: var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
}
.Forms__file-state label:is(input[type="checkbox"]:checked):focus-visible,.Forms__file-state label:is(input[type="radio"]:checked):focus-visible {
  outline-color: rgb(244, 63, 94);
  outline-color: var(--fallback-p,oklch(var(--p)/1));
}
.join > :where(*:not(:first-child)):is(.Forms__file-state label) {
  margin-left: calc(1px * -1);
  margin-left: calc(var(--border-btn) * -1);
}
.Forms__file-state label {
  height: 2rem;
  min-height: 2rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 0.875rem;
}
.btn-square:where(.Forms__file-state label) {
  height: 2rem;
  width: 2rem;
  padding: 0px;
}
.btn-circle:where(.Forms__file-state label) {
  height: 2rem;
  width: 2rem;
  border-radius: 9999px;
  padding: 0px;
}
.join.join-vertical > :where(*:not(:first-child)):is(.Forms__file-state label) {
  margin-top: calc(1px * -1);
  margin-top: calc(var(--border-btn) * -1);
}
.join.join-horizontal > :where(*:not(:first-child)):is(.Forms__file-state label) {
  margin-left: calc(1px * -1);
  margin-left: calc(var(--border-btn) * -1);
}
.Forms__file-state label {
  border-radius: 0px;
  border-top-right-radius: 0.125rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  text-transform: lowercase;
  --tw-text-opacity: 1;
  color: rgb(22, 22, 22);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .Forms__file-state label {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
.Forms__file-state input[type=checkbox]:checked + label {
        /* activate CLEAR btn */
    }
@media (hover: hover) {
  .btn-outline.Forms__file-state input[type=checkbox]:checked + label:hover {
    --tw-text-opacity: 1;
    color: rgb(255, 255, 255);
    color: var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .btn-outline.Forms__file-state input[type=checkbox]:checked + label:hover {
      background-color: color-mix(in oklab, rgb(123, 63, 244) 90%, black);
      border-color: color-mix(in oklab, rgb(123, 63, 244) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.btn-outline.Forms__file-state input[type=checkbox]:checked + label:hover {
        background-color: color-mix(in oklab, var(--fallback-s,oklch(var(--s)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-s,oklch(var(--s)/1)) 90%, black);
      }
}
  }
  .btn-outline.Forms__file-state input[type=checkbox]:checked + label:hover {
    --tw-text-opacity: 1;
    color: rgb(255, 255, 255);
    color: var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .btn-outline.Forms__file-state input[type=checkbox]:checked + label:hover {
      background-color: color-mix(in oklab, rgb(123, 63, 244) 90%, black);
      border-color: color-mix(in oklab, rgb(123, 63, 244) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.btn-outline.Forms__file-state input[type=checkbox]:checked + label:hover {
        background-color: color-mix(in oklab, var(--fallback-s,oklch(var(--s)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-s,oklch(var(--s)/1)) 90%, black);
      }
}
  }
}
@supports not (color: oklch(0% 0 0)) {
  .Forms__file-state input[type=checkbox]:checked + label {
    --btn-color: var(--fallback-s);
  }
}
@supports (color: color-mix(in oklab, black, black)) {
  .btn-outline.Forms__file-state input[type=checkbox]:checked + label.btn-active {
    background-color: color-mix(in oklab, rgb(123, 63, 244) 90%, black);
    border-color: color-mix(in oklab, rgb(123, 63, 244) 90%, black);
  }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.btn-outline.Forms__file-state input[type=checkbox]:checked + label.btn-active {
      background-color: color-mix(in oklab, var(--fallback-s,oklch(var(--s)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-s,oklch(var(--s)/1)) 90%, black);
    }
}
}
@supports (color: oklch(0% 0 0)) {
  .Forms__file-state input[type=checkbox]:checked + label {
    --btn-color: var(--s);
  }
}
.Forms__file-state input[type=checkbox]:checked + label {
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)));
  outline-color: rgb(123, 63, 244);
  outline-color: var(--fallback-s,oklch(var(--s)/1));
}
.btn-outline.Forms__file-state input[type=checkbox]:checked + label {
  --tw-text-opacity: 1;
  color: rgb(123, 63, 244);
  color: var(--fallback-s,oklch(var(--s)/var(--tw-text-opacity)));
}
.btn-outline.Forms__file-state input[type=checkbox]:checked + label.btn-active {
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)));
}
.Forms__field--file .Forms__file {
        /* file input bordered cover */
        width: 100%;
        padding-left: 0px;
    }
.Forms__field--file .Forms__file::-webkit-file-upload-button {
        /* file selector button styled as part of input */
        display: inline-flex;
        height: 3rem;
        min-height: 3rem;
        flex-shrink: 0;
        cursor: pointer;
        -webkit-user-select: none;
           -moz-user-select: none;
                user-select: none;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        border-radius: 0.5rem;
        border-radius: var(--rounded-btn, 0.5rem);
        border-color: transparent;
        border-color: oklch(93% 0 0 / 1);
        border-color: oklch(var(--btn-color, var(--b2)) / var(--tw-border-opacity));
        padding-left: 1rem;
        padding-right: 1rem;
        text-align: center;
        font-size: 0.875rem;
        line-height: 1em;
        gap: 0.5rem;
        font-weight: 600;
        -webkit-text-decoration-line: none;
                text-decoration-line: none;
        transition-duration: 200ms;
        transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
        border-width: 1px;
        border-width: var(--border-btn, 1px);
        -webkit-transition-property: color, background-color, border-color, opacity, box-shadow, transform;
        transition-property: color, background-color, border-color, opacity, box-shadow, transform;
        --tw-text-opacity: 1;
        color: rgb(22, 22, 22);
        color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
        --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
        box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
        outline-color: rgb(22, 22, 22);
        outline-color: var(--fallback-bc,oklch(var(--bc)/1));
        background-color: rgb(232, 232, 232);
        background-color: oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity));
        --tw-bg-opacity: 1;
        --tw-border-opacity: 1;
    }
.Forms__field--file .Forms__file::file-selector-button {
        /* file selector button styled as part of input */
        display: inline-flex;
        height: 3rem;
        min-height: 3rem;
        flex-shrink: 0;
        cursor: pointer;
        -webkit-user-select: none;
           -moz-user-select: none;
                user-select: none;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        border-radius: 0.5rem;
        border-radius: var(--rounded-btn, 0.5rem);
        border-color: transparent;
        border-color: oklch(93% 0 0 / 1);
        border-color: oklch(var(--btn-color, var(--b2)) / var(--tw-border-opacity));
        padding-left: 1rem;
        padding-right: 1rem;
        text-align: center;
        font-size: 0.875rem;
        line-height: 1em;
        gap: 0.5rem;
        font-weight: 600;
        -webkit-text-decoration-line: none;
                text-decoration-line: none;
        transition-duration: 200ms;
        transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
        border-width: 1px;
        border-width: var(--border-btn, 1px);
        transition-property: color, background-color, border-color, opacity, box-shadow, transform;
        --tw-text-opacity: 1;
        color: rgb(22, 22, 22);
        color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
        --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
        box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
        outline-color: rgb(22, 22, 22);
        outline-color: var(--fallback-bc,oklch(var(--bc)/1));
        background-color: rgb(232, 232, 232);
        background-color: oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity));
        --tw-bg-opacity: 1;
        --tw-border-opacity: 1;
    }
.Forms__field--file .Forms__file[disabled]::-webkit-file-upload-button, .Forms__field--file .Forms__file::-webkit-file-upload-button:disabled {
  pointer-events: none;
}
.Forms__field--file .Forms__file[disabled]::file-selector-button,.Forms__field--file .Forms__file::file-selector-button:disabled {
  pointer-events: none;
}
:where(.Forms__field--file .Forms__file:is(input[type="checkbox"]))::-webkit-file-upload-button, :where(.Forms__field--file .Forms__file:is(input[type="radio"]))::-webkit-file-upload-button {
  width: auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
:where(.Forms__field--file .Forms__file:is(input[type="checkbox"]))::file-selector-button,
:where(.Forms__field--file .Forms__file:is(input[type="radio"]))::file-selector-button {
  width: auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.Forms__field--file .Forms__file:is(input[type="checkbox"])::-webkit-file-upload-button:after, .Forms__field--file .Forms__file:is(input[type="radio"])::-webkit-file-upload-button:after {
  --tw-content: attr(aria-label);
  content: attr(aria-label);
  content: var(--tw-content);
}
.Forms__field--file .Forms__file:is(input[type="checkbox"])::file-selector-button:after,.Forms__field--file .Forms__file:is(input[type="radio"])::file-selector-button:after {
  --tw-content: attr(aria-label);
  content: attr(aria-label);
  content: var(--tw-content);
}
@media (hover: hover) {
  .Forms__field--file .Forms__file::-webkit-file-upload-button:hover {
    --tw-border-opacity: 1;
    border-color: rgb(209, 209, 209);
    border-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-border-opacity)));
    --tw-bg-opacity: 1;
    background-color: rgb(209, 209, 209);
    background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
  }
  .Forms__field--file .Forms__file::file-selector-button:hover {
    --tw-border-opacity: 1;
    border-color: rgb(209, 209, 209);
    border-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-border-opacity)));
    --tw-bg-opacity: 1;
    background-color: rgb(209, 209, 209);
    background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .Forms__field--file .Forms__file::-webkit-file-upload-button:hover {
      background-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
      border-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
    }
    .Forms__field--file .Forms__file::file-selector-button:hover {
      background-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
      border-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.Forms__field--file .Forms__file::-webkit-file-upload-button:hover {
        background-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity, 1)) 90%,
            black
          );
        border-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-border-opacity, 1)) 90%,
            black
          );
      }
.Forms__field--file .Forms__file::file-selector-button:hover {
        background-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity, 1)) 90%,
            black
          );
        border-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-border-opacity, 1)) 90%,
            black
          );
      }
}
  }
  @supports not (color: oklch(0% 0 0)) {
    .Forms__field--file .Forms__file::-webkit-file-upload-button:hover {
      background-color: var(--btn-color, var(--fallback-b2));
      border-color: var(--btn-color, var(--fallback-b2));
    }
    .Forms__field--file .Forms__file::file-selector-button:hover {
      background-color: var(--btn-color, var(--fallback-b2));
      border-color: var(--btn-color, var(--fallback-b2));
    }
  }
  .Forms__field--file .Forms__file::-webkit-file-upload-button:hover {
    --tw-border-opacity: 1;
    border-color: rgb(209, 209, 209);
    border-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-border-opacity)));
    --tw-bg-opacity: 1;
    background-color: rgb(209, 209, 209);
    background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
  }
  .Forms__field--file .Forms__file::file-selector-button:hover {
    --tw-border-opacity: 1;
    border-color: rgb(209, 209, 209);
    border-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-border-opacity)));
    --tw-bg-opacity: 1;
    background-color: rgb(209, 209, 209);
    background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .Forms__field--file .Forms__file::-webkit-file-upload-button:hover {
      background-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
      border-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
    }
    .Forms__field--file .Forms__file::file-selector-button:hover {
      background-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
      border-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.Forms__field--file .Forms__file::-webkit-file-upload-button:hover {
        background-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity, 1)) 90%,
            black
          );
        border-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-border-opacity, 1)) 90%,
            black
          );
      }
.Forms__field--file .Forms__file::file-selector-button:hover {
        background-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity, 1)) 90%,
            black
          );
        border-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-border-opacity, 1)) 90%,
            black
          );
      }
}
  }
  @supports not (color: oklch(0% 0 0)) {
    .Forms__field--file .Forms__file::-webkit-file-upload-button:hover {
      background-color: var(--btn-color, var(--fallback-b2));
      border-color: var(--btn-color, var(--fallback-b2));
    }
    .Forms__field--file .Forms__file::file-selector-button:hover {
      background-color: var(--btn-color, var(--fallback-b2));
      border-color: var(--btn-color, var(--fallback-b2));
    }
  }
  .Forms__field--file .Forms__file::-webkit-file-upload-button:hover {
    --tw-border-opacity: 1;
    border-color: rgb(209, 209, 209);
    border-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-border-opacity)));
    --tw-bg-opacity: 1;
    background-color: rgb(209, 209, 209);
    background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
  }
  .Forms__field--file .Forms__file::file-selector-button:hover {
    --tw-border-opacity: 1;
    border-color: rgb(209, 209, 209);
    border-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-border-opacity)));
    --tw-bg-opacity: 1;
    background-color: rgb(209, 209, 209);
    background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .Forms__field--file .Forms__file::-webkit-file-upload-button:hover {
      background-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
      border-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
    }
    .Forms__field--file .Forms__file::file-selector-button:hover {
      background-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
      border-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.Forms__field--file .Forms__file::-webkit-file-upload-button:hover {
        background-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity, 1)) 90%,
            black
          );
        border-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-border-opacity, 1)) 90%,
            black
          );
      }
.Forms__field--file .Forms__file::file-selector-button:hover {
        background-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity, 1)) 90%,
            black
          );
        border-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-border-opacity, 1)) 90%,
            black
          );
      }
}
  }
  @supports not (color: oklch(0% 0 0)) {
    .Forms__field--file .Forms__file::-webkit-file-upload-button:hover {
      background-color: var(--btn-color, var(--fallback-b2));
      border-color: var(--btn-color, var(--fallback-b2));
    }
    .Forms__field--file .Forms__file::file-selector-button:hover {
      background-color: var(--btn-color, var(--fallback-b2));
      border-color: var(--btn-color, var(--fallback-b2));
    }
  }
  .Forms__field--file .Forms__file.glass::-webkit-file-upload-button:hover {
    --glass-opacity: 25%;
    --glass-border-opacity: 15%;
  }
  .Forms__field--file .Forms__file.glass::file-selector-button:hover {
    --glass-opacity: 25%;
    --glass-border-opacity: 15%;
  }
  .Forms__field--file .Forms__file::-webkit-file-upload-button:hover {
    border-color: transparent;
    background-color: transparent;
    -webkit-text-decoration-line: underline;
            text-decoration-line: underline;
  }
  .Forms__field--file .Forms__file::file-selector-button:hover {
    border-color: transparent;
    background-color: transparent;
    -webkit-text-decoration-line: underline;
            text-decoration-line: underline;
  }
  .Forms__field--file .Forms__file[disabled]::-webkit-file-upload-button:hover, .Forms__field--file .Forms__file::-webkit-file-upload-button:disabled:hover {
    --tw-border-opacity: 0;
    background-color: rgba(61, 68, 81, 0.2);
    background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
    --tw-bg-opacity: 0.2;
    color: rgba(22, 22, 22, 0.2);
    color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
    --tw-text-opacity: 0.2;
  }
  .Forms__field--file .Forms__file[disabled]::file-selector-button:hover,.Forms__field--file .Forms__file::file-selector-button:disabled:hover {
    --tw-border-opacity: 0;
    background-color: rgba(61, 68, 81, 0.2);
    background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
    --tw-bg-opacity: 0.2;
    color: rgba(22, 22, 22, 0.2);
    color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
    --tw-text-opacity: 0.2;
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .Forms__field--file .Forms__file:is(input[type="checkbox"]:checked):hover::-webkit-file-upload-button, .Forms__field--file .Forms__file:is(input[type="radio"]:checked):hover::-webkit-file-upload-button {
      background-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
      border-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
    }
    .Forms__field--file .Forms__file:is(input[type="checkbox"]:checked):hover::file-selector-button,.Forms__field--file .Forms__file:is(input[type="radio"]:checked):hover::file-selector-button {
      background-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
      border-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.Forms__field--file .Forms__file:is(input[type="checkbox"]:checked):hover::-webkit-file-upload-button, .Forms__field--file .Forms__file:is(input[type="radio"]:checked):hover::-webkit-file-upload-button {
        background-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
      }
.Forms__field--file .Forms__file:is(input[type="checkbox"]:checked):hover::file-selector-button,.Forms__field--file .Forms__file:is(input[type="radio"]:checked):hover::file-selector-button {
        background-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
      }
}
  }
}
@media (prefers-reduced-motion: no-preference) {
  .Forms__field--file .Forms__file::-webkit-file-upload-button {
    animation: button-pop 0.25s ease-out;
    animation: button-pop var(--animation-btn, 0.25s) ease-out;
  }
  .Forms__field--file .Forms__file::file-selector-button {
    animation: button-pop 0.25s ease-out;
    animation: button-pop var(--animation-btn, 0.25s) ease-out;
  }
}
.Forms__field--file .Forms__file::-webkit-file-upload-button:active:hover, .Forms__field--file .Forms__file::-webkit-file-upload-button:active:focus {
  animation: button-pop 0s ease-out;
  transform: scale(0.95);
  transform: scale(var(--btn-focus-scale, 0.97));
}
.Forms__field--file .Forms__file::file-selector-button:active:hover,.Forms__field--file .Forms__file::file-selector-button:active:focus {
  animation: button-pop 0s ease-out;
  transform: scale(0.95);
  transform: scale(var(--btn-focus-scale, 0.97));
}
@supports not (color: oklch(0% 0 0)) {
  .Forms__field--file .Forms__file::-webkit-file-upload-button {
    background-color: var(--btn-color, var(--fallback-b2));
    border-color: var(--btn-color, var(--fallback-b2));
  }
  .Forms__field--file .Forms__file::file-selector-button {
    background-color: var(--btn-color, var(--fallback-b2));
    border-color: var(--btn-color, var(--fallback-b2));
  }
}
.Forms__field--file .Forms__file::-webkit-file-upload-button:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
}
.Forms__field--file .Forms__file::file-selector-button:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
}
.Forms__field--file .Forms__file.glass::-webkit-file-upload-button {
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
  outline-color: currentColor;
}
.Forms__field--file .Forms__file.glass::file-selector-button {
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
  outline-color: currentColor;
}
.Forms__field--file .Forms__file.glass.btn-active::-webkit-file-upload-button {
  --glass-opacity: 25%;
  --glass-border-opacity: 15%;
}
.Forms__field--file .Forms__file.glass.btn-active::file-selector-button {
  --glass-opacity: 25%;
  --glass-border-opacity: 15%;
}
.Forms__field--file .Forms__file::-webkit-file-upload-button {
  border-color: transparent;
  background-color: transparent;
  --tw-text-opacity: 1;
  color: rgb(244, 63, 94);
  color: var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity)));
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
  outline-color: currentColor;
}
.Forms__field--file .Forms__file::file-selector-button {
  border-color: transparent;
  background-color: transparent;
  --tw-text-opacity: 1;
  color: rgb(244, 63, 94);
  color: var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity)));
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
  outline-color: currentColor;
}
.Forms__field--file .Forms__file.btn-active::-webkit-file-upload-button {
  border-color: transparent;
  background-color: transparent;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
.Forms__field--file .Forms__file.btn-active::file-selector-button {
  border-color: transparent;
  background-color: transparent;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
.Forms__field--file .Forms__file.btn-disabled::-webkit-file-upload-button, .Forms__field--file .Forms__file[disabled]::-webkit-file-upload-button, .Forms__field--file .Forms__file::-webkit-file-upload-button:disabled {
  --tw-border-opacity: 0;
  background-color: rgba(61, 68, 81, 0.2);
  background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
  --tw-bg-opacity: 0.2;
  color: rgba(22, 22, 22, 0.2);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  --tw-text-opacity: 0.2;
}
.Forms__field--file .Forms__file.btn-disabled::file-selector-button,.Forms__field--file .Forms__file[disabled]::file-selector-button,.Forms__field--file .Forms__file::file-selector-button:disabled {
  --tw-border-opacity: 0;
  background-color: rgba(61, 68, 81, 0.2);
  background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
  --tw-bg-opacity: 0.2;
  color: rgba(22, 22, 22, 0.2);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  --tw-text-opacity: 0.2;
}
.Forms__field--file .Forms__file:is(input[type="checkbox"]:checked)::-webkit-file-upload-button, .Forms__field--file .Forms__file:is(input[type="radio"]:checked)::-webkit-file-upload-button {
  --tw-border-opacity: 1;
  border-color: rgb(244, 63, 94);
  border-color: var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(244, 63, 94);
  background-color: var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
}
.Forms__field--file .Forms__file:is(input[type="checkbox"]:checked)::file-selector-button,.Forms__field--file .Forms__file:is(input[type="radio"]:checked)::file-selector-button {
  --tw-border-opacity: 1;
  border-color: rgb(244, 63, 94);
  border-color: var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(244, 63, 94);
  background-color: var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
}
.Forms__field--file .Forms__file:is(input[type="checkbox"]:checked):focus-visible::-webkit-file-upload-button, .Forms__field--file .Forms__file:is(input[type="radio"]:checked):focus-visible::-webkit-file-upload-button {
  outline-color: rgb(244, 63, 94);
  outline-color: var(--fallback-p,oklch(var(--p)/1));
}
.Forms__field--file .Forms__file:is(input[type="checkbox"]:checked):focus-visible::file-selector-button,.Forms__field--file .Forms__file:is(input[type="radio"]:checked):focus-visible::file-selector-button {
  outline-color: rgb(244, 63, 94);
  outline-color: var(--fallback-p,oklch(var(--p)/1));
}
.join > :where(*:not(:first-child)):is(.Forms__field--file .Forms__file)::-webkit-file-upload-button {
  margin-left: calc(1px * -1);
  margin-left: calc(var(--border-btn) * -1);
}
.join > :where(*:not(:first-child)):is(.Forms__field--file .Forms__file)::file-selector-button {
  margin-left: calc(1px * -1);
  margin-left: calc(var(--border-btn) * -1);
}
.join.join-vertical > :where(*:not(:first-child)):is(.Forms__field--file .Forms__file)::-webkit-file-upload-button {
  margin-top: calc(1px * -1);
  margin-top: calc(var(--border-btn) * -1);
}
.join.join-vertical > :where(*:not(:first-child)):is(.Forms__field--file .Forms__file)::file-selector-button {
  margin-top: calc(1px * -1);
  margin-top: calc(var(--border-btn) * -1);
}
.join.join-horizontal > :where(*:not(:first-child)):is(.Forms__field--file .Forms__file)::-webkit-file-upload-button {
  margin-left: calc(1px * -1);
  margin-left: calc(var(--border-btn) * -1);
}
.join.join-horizontal > :where(*:not(:first-child)):is(.Forms__field--file .Forms__file)::file-selector-button {
  margin-left: calc(1px * -1);
  margin-left: calc(var(--border-btn) * -1);
}
.Forms__field--file .Forms__file::-webkit-file-upload-button {
  text-transform: uppercase;
}
.Forms__field--file .Forms__file::file-selector-button {
  text-transform: uppercase;
}
.Forms__field--file .Forms__file::-webkit-file-upload-button:hover {
  border-color: transparent;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
.Forms__field--file .Forms__file::file-selector-button:hover {
  border-color: transparent;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
/* single checkbox */
.Forms__checkbox:is(input) {
  flex-shrink: 0;
  --tglbg: var(--fallback-b1,oklch(var(--b1)/1));
  --handleoffset: 1.5rem;
  --handleoffsetcalculator: calc(var(--handleoffset) * -1);
  --togglehandleborder: 0 0;
  height: 1.5rem;
  width: 3rem;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 1.9rem;
  border-radius: var(--rounded-badge, 1.9rem);
  border-width: 1px;
  border-color: currentColor;
  background-color: currentColor;
  color: rgba(22, 22, 22, 0.5);
  color: var(--fallback-bc,oklch(var(--bc)/0.5));
  transition: background, box-shadow .2s ease-out;
  transition: background, box-shadow var(--animation-input, 0.2s) ease-out;
  box-shadow: calc(1.5rem * -1) 0 0 2px rgb(255, 255, 255) inset,
    0 0 0 2px rgb(255, 255, 255) inset,
    0 0;
  box-shadow: var(--handleoffsetcalculator) 0 0 2px var(--tglbg) inset,
    0 0 0 2px var(--tglbg) inset,
    var(--togglehandleborder);
}
[dir="rtl"] .Forms__checkbox:is(input) {
  --handleoffsetcalculator: calc(var(--handleoffset) * 1);
}
.Forms__checkbox:is(input):focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: rgba(22, 22, 22, 0.2);
  outline-color: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.Forms__checkbox:is(input):hover {
  background-color: currentColor;
}
.Forms__checkbox:is(input):checked,.Forms__checkbox:is(input)[aria-checked="true"] {
  background-image: none;
  --handleoffsetcalculator: var(--handleoffset);
  --tw-text-opacity: 1;
  color: rgb(22, 22, 22);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
}
[dir="rtl"] .Forms__checkbox:is(input):checked, [dir="rtl"] .Forms__checkbox:is(input)[aria-checked="true"] {
  --handleoffsetcalculator: calc(var(--handleoffset) * -1);
}
.Forms__checkbox:is(input):indeterminate {
  --tw-text-opacity: 1;
  color: rgb(22, 22, 22);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  box-shadow: calc(var(--handleoffset) / 2) 0 0 2px var(--tglbg) inset,
      calc(var(--handleoffset) / -2) 0 0 2px var(--tglbg) inset,
      0 0 0 2px var(--tglbg) inset;
}
[dir="rtl"] .Forms__checkbox:is(input):indeterminate {
  box-shadow: calc(var(--handleoffset) / 2) 0 0 2px var(--tglbg) inset,
        calc(var(--handleoffset) / -2) 0 0 2px var(--tglbg) inset,
        0 0 0 2px var(--tglbg) inset;
}
.Forms__checkbox:is(input):focus-visible {
  outline-color: rgb(123, 63, 244);
  outline-color: var(--fallback-s,oklch(var(--s)/1));
}
.Forms__checkbox:is(input):checked,.Forms__checkbox:is(input)[aria-checked="true"] {
  border-color: rgba(123, 63, 244, 0.1);
  border-color: var(--fallback-s,oklch(var(--s)/var(--tw-border-opacity)));
  --tw-border-opacity: 0.1;
  --tw-bg-opacity: 1;
  background-color: rgb(123, 63, 244);
  background-color: var(--fallback-s,oklch(var(--s)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)));
}
.Forms__checkbox:is(input):disabled {
  cursor: not-allowed;
  --tw-border-opacity: 1;
  border-color: rgb(22, 22, 22);
  border-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-border-opacity)));
  background-color: transparent;
  opacity: 0.3;
  --togglehandleborder: 0 0 0 3px var(--fallback-bc,oklch(var(--bc)/1)) inset,
      var(--handleoffsetcalculator) 0 0 3px var(--fallback-bc,oklch(var(--bc)/1)) inset;
}
[type="checkbox"].Forms__checkbox:is(input) {
  --handleoffset: 2rem;
  height: 2rem;
  width: 4rem;
}
.Forms__checkbox:is(input) {
  margin-left: auto;
  margin-right: auto;
}
.Forms__field--checkbox .Forms__widget {
  text-align: center;
}
/* checkbox list */
.Forms__checkbox:not(input) {
  display: flex;
  height: auto;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 0.5rem;
  padding-bottom: 0px;
}
.Forms__checkbox:not(input) > div {
  margin-right: 0.375rem;
  margin-bottom: 0.5rem;
  width: -moz-min-content;
  width: -webkit-min-content;
  width: min-content;
  flex-shrink: 0;
}
.Forms__checkbox:not(input) input {
  display: none;
}
.Forms__checkbox:not(input) label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transition-duration: 200ms;
  height: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  padding-left: 0.563rem;
  padding-right: 0.563rem;
  border-radius: 1.9rem;
  border-radius: var(--rounded-badge, 1.9rem);
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(232, 232, 232);
  border-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(255, 255, 255);
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(22, 22, 22);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
}
:where(.menu li) .Forms__checkbox:not(input) label {
  justify-self: end;
}
.Forms__checkbox:not(input) label {
  border-color: currentColor;
  --tw-border-opacity: 0.5;
  background-color: transparent;
  color: currentColor;
}
.Forms__checkbox:not(input) label.badge-neutral {
  --tw-text-opacity: 1;
  color: rgb(61, 68, 81);
  color: var(--fallback-n,oklch(var(--n)/var(--tw-text-opacity)));
}
.Forms__checkbox:not(input) label.badge-primary {
  --tw-text-opacity: 1;
  color: rgb(244, 63, 94);
  color: var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity)));
}
.Forms__checkbox:not(input) label.badge-secondary {
  --tw-text-opacity: 1;
  color: rgb(123, 63, 244);
  color: var(--fallback-s,oklch(var(--s)/var(--tw-text-opacity)));
}
.Forms__checkbox:not(input) label.badge-accent {
  --tw-text-opacity: 1;
  color: rgb(255, 188, 10);
  color: var(--fallback-a,oklch(var(--a)/var(--tw-text-opacity)));
}
.Forms__checkbox:not(input) label.badge-info {
  --tw-text-opacity: 1;
  color: rgb(69, 192, 245);
  color: var(--fallback-in,oklch(var(--in)/var(--tw-text-opacity)));
}
.Forms__checkbox:not(input) label.badge-success {
  --tw-text-opacity: 1;
  color: rgb(93, 244, 63);
  color: var(--fallback-su,oklch(var(--su)/var(--tw-text-opacity)));
}
.Forms__checkbox:not(input) label.badge-warning {
  --tw-text-opacity: 1;
  color: rgb(251, 189, 35);
  color: var(--fallback-wa,oklch(var(--wa)/var(--tw-text-opacity)));
}
.Forms__checkbox:not(input) label.badge-error {
  --tw-text-opacity: 1;
  color: rgb(248, 114, 114);
  color: var(--fallback-er,oklch(var(--er)/var(--tw-text-opacity)));
}
.Forms__checkbox:not(input) label {
  height: 1.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  padding-left: 0.688rem;
  padding-right: 0.688rem;
  display: flex;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  white-space: nowrap;
}
.Forms__field--disabled .Forms__checkbox:not(input) {
  cursor: not-allowed !important;
}
.Forms__field--disabled .Forms__checkbox:not(input) {
  --tw-border-opacity: 1;
  border-color: rgb(232, 232, 232);
  border-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(232, 232, 232);
  background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));
}
.Forms__field--disabled .Forms__checkbox:not(input) * {
  cursor: not-allowed !important;
}
.Forms__field--disabled .Forms__checkbox:not(input) label {
  opacity: 0.7;
}
.Forms__checkbox:not(input) input:checked + label {
  --tw-border-opacity: 1;
  border-color: rgb(244, 63, 94);
  border-color: var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(244, 63, 94);
  background-color: var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
}
.badge-outline.Forms__checkbox:not(input) input:checked + label {
  --tw-text-opacity: 1;
  color: rgb(244, 63, 94);
  color: var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity)));
}
/* radio select styles */
.Forms__field--radio {
        /*@apply*/
    }
.Forms__field--radio label {
  border-width: 0px;
}
.Forms__radio > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.Forms__radio label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.Forms__radio label:has(input:checked) {
  --tw-text-opacity: 1;
  color: rgb(123, 63, 244);
  color: var(--fallback-s,oklch(var(--s)/var(--tw-text-opacity)));
}
.Forms__field--radio .Forms__radio:not(input) {
  display: flex;
  height: auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  row-gap: 0.5rem;
  border-width: 0px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0px;
  padding-right: 0px;
  outline-width: 0px;
}
.Forms__field--radio .Forms__radio:not(input):focus-within {
  outline-width: 0px;
}
@media (min-width: 768px) {
  .Forms__field--radio .Forms__radio:not(input) {
    flex-direction: row;
    align-items: center;
    row-gap: 0px;
  }
}
.Forms__field--radio input {
  flex-shrink: 0;
  --chkbg: var(--bc);
  height: 1.5rem;
  width: 1.5rem;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 9999px;
  border-width: 1px;
  border-color: rgba(22, 22, 22, 0.2);
  border-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-border-opacity)));
  --tw-border-opacity: 0.2;
}
.Forms__field--radio input:focus {
  box-shadow: none;
}
.Forms__field--radio input:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: rgb(22, 22, 22);
  outline-color: var(--fallback-bc,oklch(var(--bc)/1));
}
.Forms__field--radio input:checked,.Forms__field--radio input[aria-checked="true"] {
  --tw-bg-opacity: 1;
  background-color: rgb(22, 22, 22);
  background-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-bg-opacity)));
  background-image: none;
  animation: radiomark .2s ease-out;
  animation: radiomark var(--animation-input, 0.2s) ease-out;
  box-shadow: 0 0 0 4px rgb(255, 255, 255) inset,
      0 0 0 4px rgb(255, 255, 255) inset;
  box-shadow: 0 0 0 4px var(--fallback-b1,oklch(var(--b1)/1)) inset,
      0 0 0 4px var(--fallback-b1,oklch(var(--b1)/1)) inset;
}
.Forms__field--radio input:disabled {
  cursor: not-allowed;
  opacity: 0.2;
}
[type="radio"].Forms__field--radio input {
  height: 1.25rem;
  width: 1.25rem;
}
.Forms__field--radio input {
  padding: 0px;
}
@media (hover:hover) {
  .Forms__field--radio input:checked:hover {
    --tw-border-opacity: 1;
    border-color: rgb(123, 63, 244);
    border-color: var(--fallback-s,oklch(var(--s)/var(--tw-border-opacity)));
  }
}
.Forms__field--radio input:checked {
  --chkbg: var(--s);
  --tw-border-opacity: 1;
  border-color: rgb(123, 63, 244);
  border-color: var(--fallback-s,oklch(var(--s)/var(--tw-border-opacity)));
}
.Forms__field--radio input:checked:focus-visible {
  outline-color: rgb(123, 63, 244);
  outline-color: var(--fallback-s,oklch(var(--s)/1));
}
.Forms__field--radio input:checked:checked,.Forms__field--radio input:checked[aria-checked="true"] {
  --tw-border-opacity: 1;
  border-color: rgb(123, 63, 244);
  border-color: var(--fallback-s,oklch(var(--s)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(123, 63, 244);
  background-color: var(--fallback-s,oklch(var(--s)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)));
}
/* tom select styles */
.Forms__field--select .ts-wrapper {
  height: auto;
  background-color: transparent;
}
.Forms__field--select .ts-wrapper.disabled {
  cursor: not-allowed !important;
}
.Forms__field--select .ts-wrapper.disabled {
  --tw-border-opacity: 1;
  border-color: rgb(232, 232, 232);
  border-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(232, 232, 232);
  background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));
}
.Forms__field--select .ts-wrapper.disabled * {
  cursor: not-allowed !important;
}
.Forms__field--select .ts-dropdown,
    .Forms__field--select .ts-control,
    .Forms__field--select .ts-control input {
  color: inherit;
}
.Forms__field--select .ts-dropdown:is([data-theme="dark"] *),
    .Forms__field--select .ts-control:is([data-theme="dark"] *),
    .Forms__field--select .ts-control input:is([data-theme="dark"] *) {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(209, 209, 209) !important;
  background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity))) !important;
}
.Forms__field--select .ts-control {
        border-style: none !important;
    }
.Forms__field--select .ts-control {
        /* fight versus tom-select styles */
        display: flex;
        flex-direction: row;
        align-items: center;
        background-color: transparent;
        padding: 0px;
    }
.Forms__field--select .ts-control input {
  min-width: auto;
}
.Forms__field--select .ts-control input:focus-visible {
  outline-width: 0px;
}
.Forms__field--select .ts-control .item {
  font-size: 1rem;
  line-height: 1.5rem;
        line-height: 2;
}
.Forms__field--select .ts-dropdown {
        /* fight versus tom-select styles */
        margin-top: -0.25rem;
        border-radius: 0.25rem;
        --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
        --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
        box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
        box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
    }
.Forms__field--select .ts-dropdown .option {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.Forms__field--select .ts-dropdown .active:is([data-theme="dark"] *) {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(209, 209, 209) !important;
  background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity))) !important;
  --tw-text-opacity: 1 !important;
  color: rgb(244, 63, 94) !important;
  color: var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity))) !important;
}
.Menu__link {
  display: block;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(243, 244, 246, 1);
  border-color: rgba(243, 244, 246, var(--tw-border-opacity));
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-right: 1rem;
  padding-left: 0.75rem;
}
.Menu__link:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(249, 250, 251, 1);
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(244, 63, 94);
  color: var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity)));
}
.Menu__link:is([data-theme="dark"] *) {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.Menu__link:hover:is([data-theme="dark"] *) {
  --tw-text-opacity: 1;
  color: rgb(244, 63, 94);
  color: var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity)));
}
@media (min-width: 768px) {
  .Menu__link {
    border-width: 0px;
    padding: 0px;
  }
  .Menu__link:hover {
    background-color: transparent;
    --tw-text-opacity: 1;
    color: rgb(244, 63, 94);
    color: var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity)));
  }
}
.Menu__link--active {
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(244, 63, 94);
  background-color: var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
@media (min-width: 768px) {
  .Menu__link--active {
    background-color: transparent;
    --tw-text-opacity: 1;
    color: rgb(244, 63, 94);
    color: var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity)));
  }
}
.SocialButton__form {
  display: inline-flex;
  height: 3rem;
  min-height: 3rem;
  flex-shrink: 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border-radius: var(--rounded-btn, 0.5rem);
  border-color: transparent;
  border-color: oklch(93% 0 0 / 1);
  border-color: oklch(var(--btn-color, var(--b2)) / var(--tw-border-opacity));
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1em;
  gap: 0.5rem;
  font-weight: 600;
  -webkit-text-decoration-line: none;
          text-decoration-line: none;
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  border-width: 1px;
  border-width: var(--border-btn, 1px);
  transition-property: color, background-color, border-color, opacity, box-shadow, transform;
  --tw-text-opacity: 1;
  color: rgb(22, 22, 22);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
  outline-color: rgb(22, 22, 22);
  outline-color: var(--fallback-bc,oklch(var(--bc)/1));
  background-color: rgb(232, 232, 232);
  background-color: oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity));
  --tw-bg-opacity: 1;
  --tw-border-opacity: 1;
}
.SocialButton__form[disabled],.SocialButton__form:disabled {
  pointer-events: none;
}
:where(.SocialButton__form:is(input[type="checkbox"])),
:where(.SocialButton__form:is(input[type="radio"])) {
  width: auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.SocialButton__form:is(input[type="checkbox"]):after,.SocialButton__form:is(input[type="radio"]):after {
  --tw-content: attr(aria-label);
  content: attr(aria-label);
  content: var(--tw-content);
}
@media (hover: hover) {
  .SocialButton__form:hover {
    --tw-border-opacity: 1;
    border-color: rgb(209, 209, 209);
    border-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-border-opacity)));
    --tw-bg-opacity: 1;
    background-color: rgb(209, 209, 209);
    background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .SocialButton__form:hover {
      background-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
      border-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.SocialButton__form:hover {
        background-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity, 1)) 90%,
            black
          );
        border-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-border-opacity, 1)) 90%,
            black
          );
      }
}
  }
  @supports not (color: oklch(0% 0 0)) {
    .SocialButton__form:hover {
      background-color: var(--btn-color, var(--fallback-b2));
      border-color: var(--btn-color, var(--fallback-b2));
    }
  }
  .SocialButton__form:hover {
    --tw-border-opacity: 1;
    border-color: rgb(209, 209, 209);
    border-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-border-opacity)));
    --tw-bg-opacity: 1;
    background-color: rgb(209, 209, 209);
    background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .SocialButton__form:hover {
      background-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
      border-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.SocialButton__form:hover {
        background-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity, 1)) 90%,
            black
          );
        border-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-border-opacity, 1)) 90%,
            black
          );
      }
}
  }
  @supports not (color: oklch(0% 0 0)) {
    .SocialButton__form:hover {
      background-color: var(--btn-color, var(--fallback-b2));
      border-color: var(--btn-color, var(--fallback-b2));
    }
  }
  .SocialButton__form:hover {
    --tw-border-opacity: 1;
    border-color: rgb(209, 209, 209);
    border-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-border-opacity)));
    --tw-bg-opacity: 1;
    background-color: rgb(209, 209, 209);
    background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .SocialButton__form:hover {
      background-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
      border-color: color-mix(
            in oklab,
            rgb(232, 232, 232) 90%,
            black
          );
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.SocialButton__form:hover {
        background-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity, 1)) 90%,
            black
          );
        border-color: color-mix(
            in oklab,
            oklch(var(--btn-color, var(--b2)) / var(--tw-border-opacity, 1)) 90%,
            black
          );
      }
}
  }
  @supports not (color: oklch(0% 0 0)) {
    .SocialButton__form:hover {
      background-color: var(--btn-color, var(--fallback-b2));
      border-color: var(--btn-color, var(--fallback-b2));
    }
  }
  .SocialButton__form.glass:hover {
    --glass-opacity: 25%;
    --glass-border-opacity: 15%;
  }
  .SocialButton__form[disabled]:hover,.SocialButton__form:disabled:hover {
    --tw-border-opacity: 0;
    background-color: rgba(61, 68, 81, 0.2);
    background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
    --tw-bg-opacity: 0.2;
    color: rgba(22, 22, 22, 0.2);
    color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
    --tw-text-opacity: 0.2;
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .SocialButton__form:is(input[type="checkbox"]:checked):hover,.SocialButton__form:is(input[type="radio"]:checked):hover {
      background-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
      border-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.SocialButton__form:is(input[type="checkbox"]:checked):hover,.SocialButton__form:is(input[type="radio"]:checked):hover {
        background-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
      }
}
  }
}
@media (prefers-reduced-motion: no-preference) {
  .SocialButton__form {
    animation: button-pop 0.25s ease-out;
    animation: button-pop var(--animation-btn, 0.25s) ease-out;
  }
}
.SocialButton__form:active:hover,.SocialButton__form:active:focus {
  animation: button-pop 0s ease-out;
  transform: scale(0.95);
  transform: scale(var(--btn-focus-scale, 0.97));
}
@supports not (color: oklch(0% 0 0)) {
  .SocialButton__form {
    background-color: var(--btn-color, var(--fallback-b2));
    border-color: var(--btn-color, var(--fallback-b2));
  }
}
.SocialButton__form:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
}
.SocialButton__form.glass {
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
  outline-color: currentColor;
}
.SocialButton__form.glass.btn-active {
  --glass-opacity: 25%;
  --glass-border-opacity: 15%;
}
.SocialButton__form.btn-disabled,.SocialButton__form[disabled],.SocialButton__form:disabled {
  --tw-border-opacity: 0;
  background-color: rgba(61, 68, 81, 0.2);
  background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
  --tw-bg-opacity: 0.2;
  color: rgba(22, 22, 22, 0.2);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  --tw-text-opacity: 0.2;
}
.SocialButton__form:is(input[type="checkbox"]:checked),.SocialButton__form:is(input[type="radio"]:checked) {
  --tw-border-opacity: 1;
  border-color: rgb(244, 63, 94);
  border-color: var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(244, 63, 94);
  background-color: var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
}
.SocialButton__form:is(input[type="checkbox"]:checked):focus-visible,.SocialButton__form:is(input[type="radio"]:checked):focus-visible {
  outline-color: rgb(244, 63, 94);
  outline-color: var(--fallback-p,oklch(var(--p)/1));
}
.join > :where(*:not(:first-child)):is(.SocialButton__form) {
  margin-left: calc(1px * -1);
  margin-left: calc(var(--border-btn) * -1);
}
.join.join-vertical > :where(*:not(:first-child)):is(.SocialButton__form) {
  margin-top: calc(1px * -1);
  margin-top: calc(var(--border-btn) * -1);
}
.join.join-horizontal > :where(*:not(:first-child)):is(.SocialButton__form) {
  margin-left: calc(1px * -1);
  margin-left: calc(var(--border-btn) * -1);
}
.SocialButton__form {
  flex-grow: 1;
  padding: 0px;
  text-transform: uppercase;
}
.SocialButton {
  display: inline-flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(232, 232, 232);
  background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgb(22, 22, 22);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
}
.SocialButton--esnaccounts {
  --tw-bg-opacity: 1;
  background-color: rgb(255, 255, 255);
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(22, 22, 22);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
}
.SocialButton--esnaccounts svg {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.SocialButton--esnaccounts:hover svg {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(180deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.SocialButton__form--esnaccounts {
  width: 100%;
}
.SocialButton--email {
  --tw-bg-opacity: 1;
  background-color: rgb(244, 63, 94);
  background-color: var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.SocialButton--email:hover {
  background-color: rgba(244, 63, 94, 0.9);
  background-color: var(--fallback-p,oklch(var(--p)/0.9));
}
.SocialButton--facebook {
  --tw-bg-opacity: 1;
  background-color: rgba(59, 89, 152, 1);
  background-color: rgba(59, 89, 152, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.SocialButton--facebook:hover {
  background-color: rgba(59, 89, 152, 0.9);
}
.SocialButton--telegram {
  --tw-bg-opacity: 1;
  background-color: rgba(0, 136, 204, 1);
  background-color: rgba(0, 136, 204, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.SocialButton--telegram:hover {
  background-color: rgba(0, 136, 204, 0.9);
}
.SocialButton--instagram {
  background-image: linear-gradient(to right, #fb923c var(--tw-gradient-from-position), #ec4899 var(--tw-gradient-to-position));
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
  --tw-gradient-from: #fb923c var(--tw-gradient-from-position);
  --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  --tw-gradient-to: #ec4899 var(--tw-gradient-to-position);
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.SocialButton--whatsapp {
  --tw-bg-opacity: 1;
  background-color: rgba(37, 211, 102, 1);
  background-color: rgba(37, 211, 102, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.SocialButton--whatsapp:hover {
  background-color: rgba(37, 211, 102, 0.9);
}
.SocialButton--google {
  --tw-bg-opacity: 1;
  background-color: rgba(66, 133, 244, 1);
  background-color: rgba(66, 133, 244, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.SocialButton--google:hover {
  background-color: rgba(66, 133, 244, 0.9);
}
.SocialButton--apple {
  --tw-bg-opacity: 1;
  background-color: rgba(5, 7, 8, 1);
  background-color: rgba(5, 7, 8, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.SocialButton--apple:hover {
  background-color: rgba(5, 7, 8, 0.9);
}
.SocialButton--github {
  --tw-bg-opacity: 1;
  background-color: rgba(36, 41, 47, 1);
  background-color: rgba(36, 41, 47, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.SocialButton--github:hover {
  background-color: rgba(36, 41, 47, 0.9);
}
.Dashboard__tiles {
  display: inline-grid;
  border-radius: 1rem;
  border-radius: var(--rounded-box, 1rem);
  --tw-bg-opacity: 1;
  background-color: rgb(255, 255, 255);
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(22, 22, 22);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
}
:where(.Dashboard__tiles) {
  grid-auto-flow: column;
  overflow-x: auto;
}
:where(.Dashboard__tiles) > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-x-reverse: 0;
  border-right-width: calc(1px * 0);
  border-right-width: calc(1px * var(--tw-divide-x-reverse));
  border-left-width: calc(1px * (1 - 0));
  border-left-width: calc(1px * (1 - var(--tw-divide-x-reverse)));
  border-left-width: calc(1px * calc(1 - 0));
  border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
  --tw-divide-y-reverse: 0;
  border-top-width: calc(0px * (1 - 0));
  border-top-width: calc(0px * (1 - var(--tw-divide-y-reverse)));
  border-top-width: calc(0px * calc(1 - 0));
  border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(0px * 0);
  border-bottom-width: calc(0px * var(--tw-divide-y-reverse));
}
:is([dir="rtl"] .Dashboard__tiles > :not([hidden]) ~ :not([hidden])) {
  --tw-divide-x-reverse: 1;
}
.Dashboard__tiles {
  width: 100%;
}
.Dashboard__tile {
  display: inline-grid;
  width: 100%;
  grid-template-columns: repeat(1, 1fr);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  border-color: rgba(22, 22, 22, 0.1);
  border-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-border-opacity)));
  --tw-border-opacity: 0.1;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.Dashboard__tile--dark {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.Dashboard__tile--dark:is([data-theme="dark"] *) {
  --tw-text-opacity: 1;
  color: rgba(17, 24, 39, 1);
  color: rgba(17, 24, 39, var(--tw-text-opacity));
}
.Dashboard__tile__title {
  grid-column-start: 1;
  white-space: nowrap;
  color: rgba(22, 22, 22, 0.6);
  color: var(--fallback-bc,oklch(var(--bc)/0.6));
  font-size: 1.5rem;
  line-height: 2rem;
}
.Dashboard__tile__title:is([data-theme="dark"] *) {
  --tw-text-opacity: 1;
  color: rgba(17, 24, 39, 1);
  color: rgba(17, 24, 39, var(--tw-text-opacity));
}
.Dashboard__tile--dark .Dashboard__tile__title:is([data-theme="dark"] *) {
  --tw-text-opacity: 1;
  color: rgba(229, 231, 235, 1);
  color: rgba(229, 231, 235, var(--tw-text-opacity));
}
.Dashboard__tile__value {
  grid-column-start: 1;
  white-space: nowrap;
  font-weight: 800;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 2rem;
}
@media (min-width: 768px) {
  .Dashboard__tile__value {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .Dashboard__tile__value {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .Dashboard__tile__value {
    font-size: 3rem;
    line-height: 1;
  }
}
.Dashboard__tile__desc {
  grid-column-start: 1;
  white-space: nowrap;
  color: rgba(22, 22, 22, 0.6);
  color: var(--fallback-bc,oklch(var(--bc)/0.6));
  white-space: normal;
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.Dashboard__tile__actions {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
}
@keyframes FadeIn {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.pointer-events-none {
  pointer-events: none;
}
.visible {
  visibility: visible;
}
.collapse {
  visibility: collapse;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: -webkit-sticky;
  position: sticky;
}
.inset-0 {
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}
.inset-y-0 {
  top: 0px;
  bottom: 0px;
}
.-left-3 {
  left: -0.75rem;
}
.left-0 {
  left: 0px;
}
.right-5 {
  right: 1.25rem;
}
.top-0 {
  top: 0px;
}
.top-5 {
  top: 1.25rem;
}
.top-\[171px\] {
  top: 171px;
}
.top-full {
  top: 100%;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-30 {
  z-index: 30;
}
.z-50 {
  z-index: 50;
}
.order-1 {
  order: 1;
}
.order-3 {
  order: 3;
}
.order-4 {
  order: 4;
}
.col-span-1 {
  grid-column: span 1 / span 1;
}
.col-span-2 {
  grid-column: span 2 / span 2;
}
.col-span-3 {
  grid-column: span 3 / span 3;
}
.\!col-start-1 {
  grid-column-start: 1 !important;
}
.col-start-1 {
  grid-column-start: 1;
}
.col-start-3 {
  grid-column-start: 3;
}
.\!col-end-10 {
  grid-column-end: 10 !important;
}
.col-end-10 {
  grid-column-end: 10;
}
.row-start-1 {
  grid-row-start: 1;
}
.-m-4 {
  margin: -1rem;
}
.m-6 {
  margin: 1.5rem;
}
.m-8 {
  margin: 2rem;
}
.-mx-1\.5 {
  margin-left: -0.375rem;
  margin-right: -0.375rem;
}
.-mx-4 {
  margin-left: -1rem;
  margin-right: -1rem;
}
.-my-1\.5 {
  margin-top: -0.375rem;
  margin-bottom: -0.375rem;
}
.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}
.-mb-10 {
  margin-bottom: -2.5rem;
}
.-ml-1 {
  margin-left: -0.25rem;
}
.-ml-8 {
  margin-left: -2rem;
}
.-mt-4 {
  margin-top: -1rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-20 {
  margin-bottom: 5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-\[6rem\] {
  margin-bottom: 6rem;
}
.mb-auto {
  margin-bottom: auto;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-3 {
  margin-left: 0.75rem;
}
.ml-4 {
  margin-left: 1rem;
}
.ml-6 {
  margin-left: 1.5rem;
}
.ml-auto {
  margin-left: auto;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mr-4 {
  margin-right: 1rem;
}
.mr-auto {
  margin-right: auto;
}
.mt-0 {
  margin-top: 0px;
}
.mt-0\.5 {
  margin-top: 0.125rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-auto {
  margin-top: auto;
}
.box-border {
  box-sizing: border-box;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.contents {
  display: contents;
}
.hidden {
  display: none;
}
.aspect-square {
  aspect-ratio: 1 / 1;
}
.h-1 {
  height: 0.25rem;
}
.h-10 {
  height: 2.5rem;
}
.h-12 {
  height: 3rem;
}
.h-16 {
  height: 4rem;
}
.h-2 {
  height: 0.5rem;
}
.h-24 {
  height: 6rem;
}
.h-3 {
  height: 0.75rem;
}
.h-4 {
  height: 1rem;
}
.h-40 {
  height: 10rem;
}
.h-48 {
  height: 12rem;
}
.h-5 {
  height: 1.25rem;
}
.h-56 {
  height: 14rem;
}
.h-6 {
  height: 1.5rem;
}
.h-64 {
  height: 16rem;
}
.h-8 {
  height: 2rem;
}
.h-fit {
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
}
.h-full {
  height: 100%;
}
.min-h-0 {
  min-height: 0px;
}
.min-h-screen {
  min-height: 100vh;
}
.w-1 {
  width: 0.25rem;
}
.w-1\/2 {
  width: 50%;
}
.w-1\/4 {
  width: 25%;
}
.w-10 {
  width: 2.5rem;
}
.w-12 {
  width: 3rem;
}
.w-16 {
  width: 4rem;
}
.w-2\/5 {
  width: 40%;
}
.w-20 {
  width: 5rem;
}
.w-24 {
  width: 6rem;
}
.w-3\/4 {
  width: 75%;
}
.w-32 {
  width: 8rem;
}
.w-4 {
  width: 1rem;
}
.w-40 {
  width: 10rem;
}
.w-48 {
  width: 12rem;
}
.w-5 {
  width: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.w-8 {
  width: 2rem;
}
.w-\[1lh\] {
  width: 1lh;
}
.w-full {
  width: 100%;
}
.min-w-0 {
  min-width: 0px;
}
.min-w-full {
  min-width: 100%;
}
.min-w-max {
  min-width: -moz-max-content;
  min-width: -webkit-max-content;
  min-width: max-content;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-\[24rem\] {
  max-width: 24rem;
}
.max-w-lg {
  max-width: 32rem;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-none {
  max-width: none;
}
.max-w-screen-xl {
  max-width: 1280px;
}
.max-w-xl {
  max-width: 36rem;
}
.max-w-xs {
  max-width: 20rem;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.shrink-0 {
  flex-shrink: 0;
}
.flex-grow {
  flex-grow: 1;
}
.flex-grow-0 {
  flex-grow: 0;
}
.grow {
  flex-grow: 1;
}
.border-separate {
  border-collapse: separate;
}
.origin-\[50\%_33\.33\%\] {
  transform-origin: 50% 33.33%;
}
.-translate-x-3 {
  --tw-translate-x: -0.75rem;
  transform: translate(-0.75rem, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-rotate-90 {
  --tw-rotate: -90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(-90deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-180 {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(180deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes pulse {
  50% {
    opacity: .5;
  }
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.animate-spin {
  animation: spin 1s linear infinite;
}
.cursor-pointer {
  cursor: pointer;
}
.list-disc {
  list-style-type: disc;
}
.list-none {
  list-style-type: none;
}
.columns-1 {
  -moz-columns: 1;
       columns: 1;
}
.break-inside-avoid-column {
  -moz-column-break-inside: avoid;
       break-inside: avoid-column;
}
.auto-cols-auto {
  grid-auto-columns: auto;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-baseline {
  align-items: baseline;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-x-1 {
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}
.gap-x-2 {
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.gap-x-4 {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.gap-y-2 {
  row-gap: 0.5rem;
}
.gap-y-4 {
  row-gap: 1rem;
}
.gap-y-6 {
  row-gap: 1.5rem;
}
.-space-x-12 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(-3rem * 0);
  margin-right: calc(-3rem * var(--tw-space-x-reverse));
  margin-left: calc(-3rem * (1 - 0));
  margin-left: calc(-3rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(-3rem * calc(1 - 0));
  margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * 0);
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * (1 - 0));
  margin-left: calc(0.25rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(0.25rem * calc(1 - 0));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * 0);
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * (1 - 0));
  margin-left: calc(0.5rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(0.5rem * calc(1 - 0));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * 0);
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * (1 - 0));
  margin-left: calc(1rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(1rem * calc(1 - 0));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * (1 - 0));
  margin-top: calc(0.25rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(0.25rem * calc(1 - 0));
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * 0);
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * (1 - 0));
  margin-top: calc(0.5rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(0.5rem * calc(1 - 0));
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * 0);
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * (1 - 0));
  margin-top: calc(0.75rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(0.75rem * calc(1 - 0));
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * 0);
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * (1 - 0));
  margin-top: calc(1rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(1rem * calc(1 - 0));
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * 0);
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * (1 - 0));
  margin-top: calc(1.5rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(1.5rem * calc(1 - 0));
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * 0);
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.divide-y > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * (1 - 0));
  border-top-width: calc(1px * (1 - var(--tw-divide-y-reverse)));
  border-top-width: calc(1px * calc(1 - 0));
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * 0);
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}
.divide-base-200 > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(232, 232, 232);
  border-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-divide-opacity)));
}
.divide-base-300 > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(209, 209, 209);
  border-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-divide-opacity)));
}
.divide-gray-100 > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgba(243, 244, 246, 1);
  border-color: rgba(243, 244, 246, var(--tw-divide-opacity));
}
.divide-gray-200 > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgba(229, 231, 235, 1);
  border-color: rgba(229, 231, 235, var(--tw-divide-opacity));
}
.place-self-center {
  align-self: center;
  justify-self: center;
  place-self: center;
}
.self-start {
  align-self: flex-start;
}
.self-end {
  align-self: flex-end;
}
.self-center {
  align-self: center;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-visible {
  overflow: visible;
}
.overflow-y-scroll {
  overflow-y: scroll;
}
.scroll-smooth {
  scroll-behavior: smooth;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.whitespace-pre-line {
  white-space: pre-line;
}
.break-all {
  word-break: break-all;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-box {
  border-radius: 1rem;
  border-radius: var(--rounded-box, 1rem);
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-b {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.border {
  border-width: 1px;
}
.border-0 {
  border-width: 0px;
}
.border-2 {
  border-width: 2px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-b-2 {
  border-bottom-width: 2px;
}
.border-t {
  border-top-width: 1px;
}
.border-gray-100 {
  --tw-border-opacity: 1;
  border-color: rgba(243, 244, 246, 1);
  border-color: rgba(243, 244, 246, var(--tw-border-opacity));
}
.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, 1);
  border-color: rgba(229, 231, 235, var(--tw-border-opacity));
}
.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgba(209, 213, 219, 1);
  border-color: rgba(209, 213, 219, var(--tw-border-opacity));
}
.border-gray-400 {
  --tw-border-opacity: 1;
  border-color: rgba(156, 163, 175, 1);
  border-color: rgba(156, 163, 175, var(--tw-border-opacity));
}
.border-gray-50 {
  --tw-border-opacity: 1;
  border-color: rgba(249, 250, 251, 1);
  border-color: rgba(249, 250, 251, var(--tw-border-opacity));
}
.border-opacity-50 {
  --tw-border-opacity: 0.5;
}
.bg-\[\#0088cc\] {
  --tw-bg-opacity: 1;
  background-color: rgba(0, 136, 204, 1);
  background-color: rgba(0, 136, 204, var(--tw-bg-opacity));
}
.bg-\[\#25D366\] {
  --tw-bg-opacity: 1;
  background-color: rgba(37, 211, 102, 1);
  background-color: rgba(37, 211, 102, var(--tw-bg-opacity));
}
.bg-\[\#3b5998\] {
  --tw-bg-opacity: 1;
  background-color: rgba(59, 89, 152, 1);
  background-color: rgba(59, 89, 152, var(--tw-bg-opacity));
}
.bg-base-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(255, 255, 255);
  background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
}
.bg-base-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(232, 232, 232);
  background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));
}
.bg-base-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(209, 209, 209);
  background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
}
.bg-blue-100 {
  --tw-bg-opacity: 1;
  background-color: rgba(219, 234, 254, 1);
  background-color: rgba(219, 234, 254, var(--tw-bg-opacity));
}
.bg-blue-200 {
  --tw-bg-opacity: 1;
  background-color: rgba(191, 219, 254, 1);
  background-color: rgba(191, 219, 254, var(--tw-bg-opacity));
}
.bg-blue-50 {
  --tw-bg-opacity: 1;
  background-color: rgba(239, 246, 255, 1);
  background-color: rgba(239, 246, 255, var(--tw-bg-opacity));
}
.bg-error {
  --tw-bg-opacity: 1;
  background-color: rgb(248, 114, 114);
  background-color: var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)));
}
.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, 1);
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
}
.bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, 1);
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
}
.bg-gray-50 {
  --tw-bg-opacity: 1;
  background-color: rgba(249, 250, 251, 1);
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
}
.bg-gray-900 {
  --tw-bg-opacity: 1;
  background-color: rgba(17, 24, 39, 1);
  background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
}
.bg-green-100 {
  --tw-bg-opacity: 1;
  background-color: rgba(220, 252, 231, 1);
  background-color: rgba(220, 252, 231, var(--tw-bg-opacity));
}
.bg-green-50 {
  --tw-bg-opacity: 1;
  background-color: rgba(240, 253, 244, 1);
  background-color: rgba(240, 253, 244, var(--tw-bg-opacity));
}
.bg-indigo-100 {
  --tw-bg-opacity: 1;
  background-color: rgba(224, 231, 255, 1);
  background-color: rgba(224, 231, 255, var(--tw-bg-opacity));
}
.bg-lime-400 {
  --tw-bg-opacity: 1;
  background-color: rgba(163, 230, 53, 1);
  background-color: rgba(163, 230, 53, var(--tw-bg-opacity));
}
.bg-orange-100 {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 237, 213, 1);
  background-color: rgba(255, 237, 213, var(--tw-bg-opacity));
}
.bg-primary {
  --tw-bg-opacity: 1;
  background-color: rgb(244, 63, 94);
  background-color: var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));
}
.bg-red-100 {
  --tw-bg-opacity: 1;
  background-color: rgba(254, 226, 226, 1);
  background-color: rgba(254, 226, 226, var(--tw-bg-opacity));
}
.bg-red-50 {
  --tw-bg-opacity: 1;
  background-color: rgba(254, 242, 242, 1);
  background-color: rgba(254, 242, 242, var(--tw-bg-opacity));
}
.bg-rose-100 {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 228, 230, 1);
  background-color: rgba(255, 228, 230, var(--tw-bg-opacity));
}
.bg-secondary {
  --tw-bg-opacity: 1;
  background-color: rgb(123, 63, 244);
  background-color: var(--fallback-s,oklch(var(--s)/var(--tw-bg-opacity)));
}
.bg-slate-100 {
  --tw-bg-opacity: 1;
  background-color: rgba(241, 245, 249, 1);
  background-color: rgba(241, 245, 249, var(--tw-bg-opacity));
}
.bg-slate-200 {
  --tw-bg-opacity: 1;
  background-color: rgba(226, 232, 240, 1);
  background-color: rgba(226, 232, 240, var(--tw-bg-opacity));
}
.bg-transparent {
  background-color: transparent;
}
.bg-warning {
  --tw-bg-opacity: 1;
  background-color: rgb(251, 189, 35);
  background-color: var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)));
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.from-orange-400 {
  --tw-gradient-from: #fb923c var(--tw-gradient-from-position);
  --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-red-500 {
  --tw-gradient-to: rgba(239, 68, 68, 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #ef4444 var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.to-pink-500 {
  --tw-gradient-to: #ec4899 var(--tw-gradient-to-position);
}
.bg-cover {
  background-size: cover;
}
.bg-fixed {
  background-attachment: fixed;
}
.bg-center {
  background-position: center;
}
.bg-top {
  background-position: top;
}
.fill-current {
  fill: currentColor;
}
.stroke-current {
  stroke: currentColor;
}
.stroke-info {
  stroke: rgb(69, 192, 245);
  stroke: var(--fallback-in,oklch(var(--in)/1));
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.object-center {
  -o-object-position: center;
     object-position: center;
}
.p-0 {
  padding: 0px;
}
.p-1\.5 {
  padding: 0.375rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}
.px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-36 {
  padding-top: 9rem;
  padding-bottom: 9rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.pb-1 {
  padding-bottom: 0.25rem;
}
.pb-10 {
  padding-bottom: 2.5rem;
}
.pb-12 {
  padding-bottom: 3rem;
}
.pb-20 {
  padding-bottom: 5rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pb-\[10vh\] {
  padding-bottom: 10vh;
}
.pl-0 {
  padding-left: 0px;
}
.pl-10 {
  padding-left: 2.5rem;
}
.pl-2 {
  padding-left: 0.5rem;
}
.pl-3 {
  padding-left: 0.75rem;
}
.pl-4 {
  padding-left: 1rem;
}
.pl-6 {
  padding-left: 1.5rem;
}
.pr-12 {
  padding-right: 3rem;
}
.pr-2 {
  padding-right: 0.5rem;
}
.pr-4 {
  padding-right: 1rem;
}
.pr-5 {
  padding-right: 1.25rem;
}
.pt-0 {
  padding-top: 0px;
}
.pt-1 {
  padding-top: 0.25rem;
}
.pt-10 {
  padding-top: 2.5rem;
}
.pt-24 {
  padding-top: 6rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}
.align-middle {
  vertical-align: middle;
}
.align-super {
  vertical-align: super;
}
.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}
.text-9xl {
  font-size: 8rem;
  line-height: 1;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}
.font-light {
  font-weight: 300;
}
.font-medium {
  font-weight: 500;
}
.font-normal {
  font-weight: 400;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.capitalize {
  text-transform: capitalize;
}
.italic {
  font-style: italic;
}
.leading-10 {
  line-height: 2.5rem;
}
.leading-4 {
  line-height: 1rem;
}
.leading-none {
  line-height: 1;
}
.leading-relaxed {
  line-height: 1.625;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.text-base-200 {
  --tw-text-opacity: 1;
  color: rgb(232, 232, 232);
  color: var(--fallback-b2,oklch(var(--b2)/var(--tw-text-opacity)));
}
.text-base-content {
  --tw-text-opacity: 1;
  color: rgb(22, 22, 22);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
}
.text-blue-400 {
  --tw-text-opacity: 1;
  color: rgba(96, 165, 250, 1);
  color: rgba(96, 165, 250, var(--tw-text-opacity));
}
.text-blue-500 {
  --tw-text-opacity: 1;
  color: rgba(59, 130, 246, 1);
  color: rgba(59, 130, 246, var(--tw-text-opacity));
}
.text-blue-600 {
  --tw-text-opacity: 1;
  color: rgba(37, 99, 235, 1);
  color: rgba(37, 99, 235, var(--tw-text-opacity));
}
.text-gray-200 {
  --tw-text-opacity: 1;
  color: rgba(229, 231, 235, 1);
  color: rgba(229, 231, 235, var(--tw-text-opacity));
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-text-opacity));
}
.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, 1);
  color: rgba(107, 114, 128, var(--tw-text-opacity));
}
.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgba(75, 85, 99, 1);
  color: rgba(75, 85, 99, var(--tw-text-opacity));
}
.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, 1);
  color: rgba(55, 65, 81, var(--tw-text-opacity));
}
.text-gray-800 {
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, 1);
  color: rgba(31, 41, 55, var(--tw-text-opacity));
}
.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgba(17, 24, 39, 1);
  color: rgba(17, 24, 39, var(--tw-text-opacity));
}
.text-green-500 {
  --tw-text-opacity: 1;
  color: rgba(34, 197, 94, 1);
  color: rgba(34, 197, 94, var(--tw-text-opacity));
}
.text-indigo-500 {
  --tw-text-opacity: 1;
  color: rgba(99, 102, 241, 1);
  color: rgba(99, 102, 241, var(--tw-text-opacity));
}
.text-lime-400 {
  --tw-text-opacity: 1;
  color: rgba(163, 230, 53, 1);
  color: rgba(163, 230, 53, var(--tw-text-opacity));
}
.text-lime-500 {
  --tw-text-opacity: 1;
  color: rgba(132, 204, 22, 1);
  color: rgba(132, 204, 22, var(--tw-text-opacity));
}
.text-orange-400 {
  --tw-text-opacity: 1;
  color: rgba(251, 146, 60, 1);
  color: rgba(251, 146, 60, var(--tw-text-opacity));
}
.text-orange-500 {
  --tw-text-opacity: 1;
  color: rgba(249, 115, 22, 1);
  color: rgba(249, 115, 22, var(--tw-text-opacity));
}
.text-primary {
  --tw-text-opacity: 1;
  color: rgb(244, 63, 94);
  color: var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity)));
}
.text-primary-content {
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
}
.text-red-400 {
  --tw-text-opacity: 1;
  color: rgba(248, 113, 113, 1);
  color: rgba(248, 113, 113, var(--tw-text-opacity));
}
.text-red-500 {
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, 1);
  color: rgba(239, 68, 68, var(--tw-text-opacity));
}
.text-secondary {
  --tw-text-opacity: 1;
  color: rgb(123, 63, 244);
  color: var(--fallback-s,oklch(var(--s)/var(--tw-text-opacity)));
}
.text-secondary-content {
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)));
}
.text-slate-200 {
  --tw-text-opacity: 1;
  color: rgba(226, 232, 240, 1);
  color: rgba(226, 232, 240, var(--tw-text-opacity));
}
.text-warning {
  --tw-text-opacity: 1;
  color: rgb(251, 189, 35);
  color: var(--fallback-wa,oklch(var(--wa)/var(--tw-text-opacity)));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.underline {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
.opacity-0 {
  opacity: 0;
}
.opacity-25 {
  opacity: 0.25;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-75 {
  opacity: 0.75;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.ring {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color), var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
}
.ring-0 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color), var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
}
.ring-1 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color), var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
}
.ring-2 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color), var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
}
.ring-4 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color), var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
}
.ring-8 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color), var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
}
.ring-inset {
  --tw-ring-inset: inset;
}
.ring-accent {
  --tw-ring-opacity: 1;
  --tw-ring-color: var(--fallback-a,oklch(var(--a)/var(--tw-ring-opacity)));
}
.ring-accent-content {
  --tw-ring-opacity: 1;
  --tw-ring-color: var(--fallback-ac,oklch(var(--ac)/var(--tw-ring-opacity)));
}
.ring-accent-content\/0 {
  --tw-ring-color: var(--fallback-ac,oklch(var(--ac)/0));
}
.ring-accent-content\/10 {
  --tw-ring-color: var(--fallback-ac,oklch(var(--ac)/0.1));
}
.ring-accent-content\/100 {
  --tw-ring-color: var(--fallback-ac,oklch(var(--ac)/1));
}
.ring-accent-content\/15 {
  --tw-ring-color: var(--fallback-ac,oklch(var(--ac)/0.15));
}
.ring-accent-content\/20 {
  --tw-ring-color: var(--fallback-ac,oklch(var(--ac)/0.2));
}
.ring-accent-content\/25 {
  --tw-ring-color: var(--fallback-ac,oklch(var(--ac)/0.25));
}
.ring-accent-content\/30 {
  --tw-ring-color: var(--fallback-ac,oklch(var(--ac)/0.3));
}
.ring-accent-content\/35 {
  --tw-ring-color: var(--fallback-ac,oklch(var(--ac)/0.35));
}
.ring-accent-content\/40 {
  --tw-ring-color: var(--fallback-ac,oklch(var(--ac)/0.4));
}
.ring-accent-content\/45 {
  --tw-ring-color: var(--fallback-ac,oklch(var(--ac)/0.45));
}
.ring-accent-content\/5 {
  --tw-ring-color: var(--fallback-ac,oklch(var(--ac)/0.05));
}
.ring-accent-content\/50 {
  --tw-ring-color: var(--fallback-ac,oklch(var(--ac)/0.5));
}
.ring-accent-content\/55 {
  --tw-ring-color: var(--fallback-ac,oklch(var(--ac)/0.55));
}
.ring-accent-content\/60 {
  --tw-ring-color: var(--fallback-ac,oklch(var(--ac)/0.6));
}
.ring-accent-content\/65 {
  --tw-ring-color: var(--fallback-ac,oklch(var(--ac)/0.65));
}
.ring-accent-content\/70 {
  --tw-ring-color: var(--fallback-ac,oklch(var(--ac)/0.7));
}
.ring-accent-content\/75 {
  --tw-ring-color: var(--fallback-ac,oklch(var(--ac)/0.75));
}
.ring-accent-content\/80 {
  --tw-ring-color: var(--fallback-ac,oklch(var(--ac)/0.8));
}
.ring-accent-content\/85 {
  --tw-ring-color: var(--fallback-ac,oklch(var(--ac)/0.85));
}
.ring-accent-content\/90 {
  --tw-ring-color: var(--fallback-ac,oklch(var(--ac)/0.9));
}
.ring-accent-content\/95 {
  --tw-ring-color: var(--fallback-ac,oklch(var(--ac)/0.95));
}
.ring-accent\/0 {
  --tw-ring-color: var(--fallback-a,oklch(var(--a)/0));
}
.ring-accent\/10 {
  --tw-ring-color: var(--fallback-a,oklch(var(--a)/0.1));
}
.ring-accent\/100 {
  --tw-ring-color: var(--fallback-a,oklch(var(--a)/1));
}
.ring-accent\/15 {
  --tw-ring-color: var(--fallback-a,oklch(var(--a)/0.15));
}
.ring-accent\/20 {
  --tw-ring-color: var(--fallback-a,oklch(var(--a)/0.2));
}
.ring-accent\/25 {
  --tw-ring-color: var(--fallback-a,oklch(var(--a)/0.25));
}
.ring-accent\/30 {
  --tw-ring-color: var(--fallback-a,oklch(var(--a)/0.3));
}
.ring-accent\/35 {
  --tw-ring-color: var(--fallback-a,oklch(var(--a)/0.35));
}
.ring-accent\/40 {
  --tw-ring-color: var(--fallback-a,oklch(var(--a)/0.4));
}
.ring-accent\/45 {
  --tw-ring-color: var(--fallback-a,oklch(var(--a)/0.45));
}
.ring-accent\/5 {
  --tw-ring-color: var(--fallback-a,oklch(var(--a)/0.05));
}
.ring-accent\/50 {
  --tw-ring-color: var(--fallback-a,oklch(var(--a)/0.5));
}
.ring-accent\/55 {
  --tw-ring-color: var(--fallback-a,oklch(var(--a)/0.55));
}
.ring-accent\/60 {
  --tw-ring-color: var(--fallback-a,oklch(var(--a)/0.6));
}
.ring-accent\/65 {
  --tw-ring-color: var(--fallback-a,oklch(var(--a)/0.65));
}
.ring-accent\/70 {
  --tw-ring-color: var(--fallback-a,oklch(var(--a)/0.7));
}
.ring-accent\/75 {
  --tw-ring-color: var(--fallback-a,oklch(var(--a)/0.75));
}
.ring-accent\/80 {
  --tw-ring-color: var(--fallback-a,oklch(var(--a)/0.8));
}
.ring-accent\/85 {
  --tw-ring-color: var(--fallback-a,oklch(var(--a)/0.85));
}
.ring-accent\/90 {
  --tw-ring-color: var(--fallback-a,oklch(var(--a)/0.9));
}
.ring-accent\/95 {
  --tw-ring-color: var(--fallback-a,oklch(var(--a)/0.95));
}
.ring-amber-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity));
}
.ring-amber-100\/0 {
  --tw-ring-color: rgba(254, 243, 199, 0);
}
.ring-amber-100\/10 {
  --tw-ring-color: rgba(254, 243, 199, 0.1);
}
.ring-amber-100\/100 {
  --tw-ring-color: rgba(254, 243, 199, 1);
}
.ring-amber-100\/15 {
  --tw-ring-color: rgba(254, 243, 199, 0.15);
}
.ring-amber-100\/20 {
  --tw-ring-color: rgba(254, 243, 199, 0.2);
}
.ring-amber-100\/25 {
  --tw-ring-color: rgba(254, 243, 199, 0.25);
}
.ring-amber-100\/30 {
  --tw-ring-color: rgba(254, 243, 199, 0.3);
}
.ring-amber-100\/35 {
  --tw-ring-color: rgba(254, 243, 199, 0.35);
}
.ring-amber-100\/40 {
  --tw-ring-color: rgba(254, 243, 199, 0.4);
}
.ring-amber-100\/45 {
  --tw-ring-color: rgba(254, 243, 199, 0.45);
}
.ring-amber-100\/5 {
  --tw-ring-color: rgba(254, 243, 199, 0.05);
}
.ring-amber-100\/50 {
  --tw-ring-color: rgba(254, 243, 199, 0.5);
}
.ring-amber-100\/55 {
  --tw-ring-color: rgba(254, 243, 199, 0.55);
}
.ring-amber-100\/60 {
  --tw-ring-color: rgba(254, 243, 199, 0.6);
}
.ring-amber-100\/65 {
  --tw-ring-color: rgba(254, 243, 199, 0.65);
}
.ring-amber-100\/70 {
  --tw-ring-color: rgba(254, 243, 199, 0.7);
}
.ring-amber-100\/75 {
  --tw-ring-color: rgba(254, 243, 199, 0.75);
}
.ring-amber-100\/80 {
  --tw-ring-color: rgba(254, 243, 199, 0.8);
}
.ring-amber-100\/85 {
  --tw-ring-color: rgba(254, 243, 199, 0.85);
}
.ring-amber-100\/90 {
  --tw-ring-color: rgba(254, 243, 199, 0.9);
}
.ring-amber-100\/95 {
  --tw-ring-color: rgba(254, 243, 199, 0.95);
}
.ring-amber-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity));
}
.ring-amber-200\/0 {
  --tw-ring-color: rgba(253, 230, 138, 0);
}
.ring-amber-200\/10 {
  --tw-ring-color: rgba(253, 230, 138, 0.1);
}
.ring-amber-200\/100 {
  --tw-ring-color: rgba(253, 230, 138, 1);
}
.ring-amber-200\/15 {
  --tw-ring-color: rgba(253, 230, 138, 0.15);
}
.ring-amber-200\/20 {
  --tw-ring-color: rgba(253, 230, 138, 0.2);
}
.ring-amber-200\/25 {
  --tw-ring-color: rgba(253, 230, 138, 0.25);
}
.ring-amber-200\/30 {
  --tw-ring-color: rgba(253, 230, 138, 0.3);
}
.ring-amber-200\/35 {
  --tw-ring-color: rgba(253, 230, 138, 0.35);
}
.ring-amber-200\/40 {
  --tw-ring-color: rgba(253, 230, 138, 0.4);
}
.ring-amber-200\/45 {
  --tw-ring-color: rgba(253, 230, 138, 0.45);
}
.ring-amber-200\/5 {
  --tw-ring-color: rgba(253, 230, 138, 0.05);
}
.ring-amber-200\/50 {
  --tw-ring-color: rgba(253, 230, 138, 0.5);
}
.ring-amber-200\/55 {
  --tw-ring-color: rgba(253, 230, 138, 0.55);
}
.ring-amber-200\/60 {
  --tw-ring-color: rgba(253, 230, 138, 0.6);
}
.ring-amber-200\/65 {
  --tw-ring-color: rgba(253, 230, 138, 0.65);
}
.ring-amber-200\/70 {
  --tw-ring-color: rgba(253, 230, 138, 0.7);
}
.ring-amber-200\/75 {
  --tw-ring-color: rgba(253, 230, 138, 0.75);
}
.ring-amber-200\/80 {
  --tw-ring-color: rgba(253, 230, 138, 0.8);
}
.ring-amber-200\/85 {
  --tw-ring-color: rgba(253, 230, 138, 0.85);
}
.ring-amber-200\/90 {
  --tw-ring-color: rgba(253, 230, 138, 0.9);
}
.ring-amber-200\/95 {
  --tw-ring-color: rgba(253, 230, 138, 0.95);
}
.ring-amber-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity));
}
.ring-amber-300\/0 {
  --tw-ring-color: rgba(252, 211, 77, 0);
}
.ring-amber-300\/10 {
  --tw-ring-color: rgba(252, 211, 77, 0.1);
}
.ring-amber-300\/100 {
  --tw-ring-color: rgba(252, 211, 77, 1);
}
.ring-amber-300\/15 {
  --tw-ring-color: rgba(252, 211, 77, 0.15);
}
.ring-amber-300\/20 {
  --tw-ring-color: rgba(252, 211, 77, 0.2);
}
.ring-amber-300\/25 {
  --tw-ring-color: rgba(252, 211, 77, 0.25);
}
.ring-amber-300\/30 {
  --tw-ring-color: rgba(252, 211, 77, 0.3);
}
.ring-amber-300\/35 {
  --tw-ring-color: rgba(252, 211, 77, 0.35);
}
.ring-amber-300\/40 {
  --tw-ring-color: rgba(252, 211, 77, 0.4);
}
.ring-amber-300\/45 {
  --tw-ring-color: rgba(252, 211, 77, 0.45);
}
.ring-amber-300\/5 {
  --tw-ring-color: rgba(252, 211, 77, 0.05);
}
.ring-amber-300\/50 {
  --tw-ring-color: rgba(252, 211, 77, 0.5);
}
.ring-amber-300\/55 {
  --tw-ring-color: rgba(252, 211, 77, 0.55);
}
.ring-amber-300\/60 {
  --tw-ring-color: rgba(252, 211, 77, 0.6);
}
.ring-amber-300\/65 {
  --tw-ring-color: rgba(252, 211, 77, 0.65);
}
.ring-amber-300\/70 {
  --tw-ring-color: rgba(252, 211, 77, 0.7);
}
.ring-amber-300\/75 {
  --tw-ring-color: rgba(252, 211, 77, 0.75);
}
.ring-amber-300\/80 {
  --tw-ring-color: rgba(252, 211, 77, 0.8);
}
.ring-amber-300\/85 {
  --tw-ring-color: rgba(252, 211, 77, 0.85);
}
.ring-amber-300\/90 {
  --tw-ring-color: rgba(252, 211, 77, 0.9);
}
.ring-amber-300\/95 {
  --tw-ring-color: rgba(252, 211, 77, 0.95);
}
.ring-amber-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity));
}
.ring-amber-400\/0 {
  --tw-ring-color: rgba(251, 191, 36, 0);
}
.ring-amber-400\/10 {
  --tw-ring-color: rgba(251, 191, 36, 0.1);
}
.ring-amber-400\/100 {
  --tw-ring-color: rgba(251, 191, 36, 1);
}
.ring-amber-400\/15 {
  --tw-ring-color: rgba(251, 191, 36, 0.15);
}
.ring-amber-400\/20 {
  --tw-ring-color: rgba(251, 191, 36, 0.2);
}
.ring-amber-400\/25 {
  --tw-ring-color: rgba(251, 191, 36, 0.25);
}
.ring-amber-400\/30 {
  --tw-ring-color: rgba(251, 191, 36, 0.3);
}
.ring-amber-400\/35 {
  --tw-ring-color: rgba(251, 191, 36, 0.35);
}
.ring-amber-400\/40 {
  --tw-ring-color: rgba(251, 191, 36, 0.4);
}
.ring-amber-400\/45 {
  --tw-ring-color: rgba(251, 191, 36, 0.45);
}
.ring-amber-400\/5 {
  --tw-ring-color: rgba(251, 191, 36, 0.05);
}
.ring-amber-400\/50 {
  --tw-ring-color: rgba(251, 191, 36, 0.5);
}
.ring-amber-400\/55 {
  --tw-ring-color: rgba(251, 191, 36, 0.55);
}
.ring-amber-400\/60 {
  --tw-ring-color: rgba(251, 191, 36, 0.6);
}
.ring-amber-400\/65 {
  --tw-ring-color: rgba(251, 191, 36, 0.65);
}
.ring-amber-400\/70 {
  --tw-ring-color: rgba(251, 191, 36, 0.7);
}
.ring-amber-400\/75 {
  --tw-ring-color: rgba(251, 191, 36, 0.75);
}
.ring-amber-400\/80 {
  --tw-ring-color: rgba(251, 191, 36, 0.8);
}
.ring-amber-400\/85 {
  --tw-ring-color: rgba(251, 191, 36, 0.85);
}
.ring-amber-400\/90 {
  --tw-ring-color: rgba(251, 191, 36, 0.9);
}
.ring-amber-400\/95 {
  --tw-ring-color: rgba(251, 191, 36, 0.95);
}
.ring-amber-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity));
}
.ring-amber-50\/0 {
  --tw-ring-color: rgba(255, 251, 235, 0);
}
.ring-amber-50\/10 {
  --tw-ring-color: rgba(255, 251, 235, 0.1);
}
.ring-amber-50\/100 {
  --tw-ring-color: rgba(255, 251, 235, 1);
}
.ring-amber-50\/15 {
  --tw-ring-color: rgba(255, 251, 235, 0.15);
}
.ring-amber-50\/20 {
  --tw-ring-color: rgba(255, 251, 235, 0.2);
}
.ring-amber-50\/25 {
  --tw-ring-color: rgba(255, 251, 235, 0.25);
}
.ring-amber-50\/30 {
  --tw-ring-color: rgba(255, 251, 235, 0.3);
}
.ring-amber-50\/35 {
  --tw-ring-color: rgba(255, 251, 235, 0.35);
}
.ring-amber-50\/40 {
  --tw-ring-color: rgba(255, 251, 235, 0.4);
}
.ring-amber-50\/45 {
  --tw-ring-color: rgba(255, 251, 235, 0.45);
}
.ring-amber-50\/5 {
  --tw-ring-color: rgba(255, 251, 235, 0.05);
}
.ring-amber-50\/50 {
  --tw-ring-color: rgba(255, 251, 235, 0.5);
}
.ring-amber-50\/55 {
  --tw-ring-color: rgba(255, 251, 235, 0.55);
}
.ring-amber-50\/60 {
  --tw-ring-color: rgba(255, 251, 235, 0.6);
}
.ring-amber-50\/65 {
  --tw-ring-color: rgba(255, 251, 235, 0.65);
}
.ring-amber-50\/70 {
  --tw-ring-color: rgba(255, 251, 235, 0.7);
}
.ring-amber-50\/75 {
  --tw-ring-color: rgba(255, 251, 235, 0.75);
}
.ring-amber-50\/80 {
  --tw-ring-color: rgba(255, 251, 235, 0.8);
}
.ring-amber-50\/85 {
  --tw-ring-color: rgba(255, 251, 235, 0.85);
}
.ring-amber-50\/90 {
  --tw-ring-color: rgba(255, 251, 235, 0.9);
}
.ring-amber-50\/95 {
  --tw-ring-color: rgba(255, 251, 235, 0.95);
}
.ring-amber-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity));
}
.ring-amber-500\/0 {
  --tw-ring-color: rgba(245, 158, 11, 0);
}
.ring-amber-500\/10 {
  --tw-ring-color: rgba(245, 158, 11, 0.1);
}
.ring-amber-500\/100 {
  --tw-ring-color: rgba(245, 158, 11, 1);
}
.ring-amber-500\/15 {
  --tw-ring-color: rgba(245, 158, 11, 0.15);
}
.ring-amber-500\/20 {
  --tw-ring-color: rgba(245, 158, 11, 0.2);
}
.ring-amber-500\/25 {
  --tw-ring-color: rgba(245, 158, 11, 0.25);
}
.ring-amber-500\/30 {
  --tw-ring-color: rgba(245, 158, 11, 0.3);
}
.ring-amber-500\/35 {
  --tw-ring-color: rgba(245, 158, 11, 0.35);
}
.ring-amber-500\/40 {
  --tw-ring-color: rgba(245, 158, 11, 0.4);
}
.ring-amber-500\/45 {
  --tw-ring-color: rgba(245, 158, 11, 0.45);
}
.ring-amber-500\/5 {
  --tw-ring-color: rgba(245, 158, 11, 0.05);
}
.ring-amber-500\/50 {
  --tw-ring-color: rgba(245, 158, 11, 0.5);
}
.ring-amber-500\/55 {
  --tw-ring-color: rgba(245, 158, 11, 0.55);
}
.ring-amber-500\/60 {
  --tw-ring-color: rgba(245, 158, 11, 0.6);
}
.ring-amber-500\/65 {
  --tw-ring-color: rgba(245, 158, 11, 0.65);
}
.ring-amber-500\/70 {
  --tw-ring-color: rgba(245, 158, 11, 0.7);
}
.ring-amber-500\/75 {
  --tw-ring-color: rgba(245, 158, 11, 0.75);
}
.ring-amber-500\/80 {
  --tw-ring-color: rgba(245, 158, 11, 0.8);
}
.ring-amber-500\/85 {
  --tw-ring-color: rgba(245, 158, 11, 0.85);
}
.ring-amber-500\/90 {
  --tw-ring-color: rgba(245, 158, 11, 0.9);
}
.ring-amber-500\/95 {
  --tw-ring-color: rgba(245, 158, 11, 0.95);
}
.ring-amber-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity));
}
.ring-amber-600\/0 {
  --tw-ring-color: rgba(217, 119, 6, 0);
}
.ring-amber-600\/10 {
  --tw-ring-color: rgba(217, 119, 6, 0.1);
}
.ring-amber-600\/100 {
  --tw-ring-color: rgba(217, 119, 6, 1);
}
.ring-amber-600\/15 {
  --tw-ring-color: rgba(217, 119, 6, 0.15);
}
.ring-amber-600\/20 {
  --tw-ring-color: rgba(217, 119, 6, 0.2);
}
.ring-amber-600\/25 {
  --tw-ring-color: rgba(217, 119, 6, 0.25);
}
.ring-amber-600\/30 {
  --tw-ring-color: rgba(217, 119, 6, 0.3);
}
.ring-amber-600\/35 {
  --tw-ring-color: rgba(217, 119, 6, 0.35);
}
.ring-amber-600\/40 {
  --tw-ring-color: rgba(217, 119, 6, 0.4);
}
.ring-amber-600\/45 {
  --tw-ring-color: rgba(217, 119, 6, 0.45);
}
.ring-amber-600\/5 {
  --tw-ring-color: rgba(217, 119, 6, 0.05);
}
.ring-amber-600\/50 {
  --tw-ring-color: rgba(217, 119, 6, 0.5);
}
.ring-amber-600\/55 {
  --tw-ring-color: rgba(217, 119, 6, 0.55);
}
.ring-amber-600\/60 {
  --tw-ring-color: rgba(217, 119, 6, 0.6);
}
.ring-amber-600\/65 {
  --tw-ring-color: rgba(217, 119, 6, 0.65);
}
.ring-amber-600\/70 {
  --tw-ring-color: rgba(217, 119, 6, 0.7);
}
.ring-amber-600\/75 {
  --tw-ring-color: rgba(217, 119, 6, 0.75);
}
.ring-amber-600\/80 {
  --tw-ring-color: rgba(217, 119, 6, 0.8);
}
.ring-amber-600\/85 {
  --tw-ring-color: rgba(217, 119, 6, 0.85);
}
.ring-amber-600\/90 {
  --tw-ring-color: rgba(217, 119, 6, 0.9);
}
.ring-amber-600\/95 {
  --tw-ring-color: rgba(217, 119, 6, 0.95);
}
.ring-amber-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity));
}
.ring-amber-700\/0 {
  --tw-ring-color: rgba(180, 83, 9, 0);
}
.ring-amber-700\/10 {
  --tw-ring-color: rgba(180, 83, 9, 0.1);
}
.ring-amber-700\/100 {
  --tw-ring-color: rgba(180, 83, 9, 1);
}
.ring-amber-700\/15 {
  --tw-ring-color: rgba(180, 83, 9, 0.15);
}
.ring-amber-700\/20 {
  --tw-ring-color: rgba(180, 83, 9, 0.2);
}
.ring-amber-700\/25 {
  --tw-ring-color: rgba(180, 83, 9, 0.25);
}
.ring-amber-700\/30 {
  --tw-ring-color: rgba(180, 83, 9, 0.3);
}
.ring-amber-700\/35 {
  --tw-ring-color: rgba(180, 83, 9, 0.35);
}
.ring-amber-700\/40 {
  --tw-ring-color: rgba(180, 83, 9, 0.4);
}
.ring-amber-700\/45 {
  --tw-ring-color: rgba(180, 83, 9, 0.45);
}
.ring-amber-700\/5 {
  --tw-ring-color: rgba(180, 83, 9, 0.05);
}
.ring-amber-700\/50 {
  --tw-ring-color: rgba(180, 83, 9, 0.5);
}
.ring-amber-700\/55 {
  --tw-ring-color: rgba(180, 83, 9, 0.55);
}
.ring-amber-700\/60 {
  --tw-ring-color: rgba(180, 83, 9, 0.6);
}
.ring-amber-700\/65 {
  --tw-ring-color: rgba(180, 83, 9, 0.65);
}
.ring-amber-700\/70 {
  --tw-ring-color: rgba(180, 83, 9, 0.7);
}
.ring-amber-700\/75 {
  --tw-ring-color: rgba(180, 83, 9, 0.75);
}
.ring-amber-700\/80 {
  --tw-ring-color: rgba(180, 83, 9, 0.8);
}
.ring-amber-700\/85 {
  --tw-ring-color: rgba(180, 83, 9, 0.85);
}
.ring-amber-700\/90 {
  --tw-ring-color: rgba(180, 83, 9, 0.9);
}
.ring-amber-700\/95 {
  --tw-ring-color: rgba(180, 83, 9, 0.95);
}
.ring-amber-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity));
}
.ring-amber-800\/0 {
  --tw-ring-color: rgba(146, 64, 14, 0);
}
.ring-amber-800\/10 {
  --tw-ring-color: rgba(146, 64, 14, 0.1);
}
.ring-amber-800\/100 {
  --tw-ring-color: rgba(146, 64, 14, 1);
}
.ring-amber-800\/15 {
  --tw-ring-color: rgba(146, 64, 14, 0.15);
}
.ring-amber-800\/20 {
  --tw-ring-color: rgba(146, 64, 14, 0.2);
}
.ring-amber-800\/25 {
  --tw-ring-color: rgba(146, 64, 14, 0.25);
}
.ring-amber-800\/30 {
  --tw-ring-color: rgba(146, 64, 14, 0.3);
}
.ring-amber-800\/35 {
  --tw-ring-color: rgba(146, 64, 14, 0.35);
}
.ring-amber-800\/40 {
  --tw-ring-color: rgba(146, 64, 14, 0.4);
}
.ring-amber-800\/45 {
  --tw-ring-color: rgba(146, 64, 14, 0.45);
}
.ring-amber-800\/5 {
  --tw-ring-color: rgba(146, 64, 14, 0.05);
}
.ring-amber-800\/50 {
  --tw-ring-color: rgba(146, 64, 14, 0.5);
}
.ring-amber-800\/55 {
  --tw-ring-color: rgba(146, 64, 14, 0.55);
}
.ring-amber-800\/60 {
  --tw-ring-color: rgba(146, 64, 14, 0.6);
}
.ring-amber-800\/65 {
  --tw-ring-color: rgba(146, 64, 14, 0.65);
}
.ring-amber-800\/70 {
  --tw-ring-color: rgba(146, 64, 14, 0.7);
}
.ring-amber-800\/75 {
  --tw-ring-color: rgba(146, 64, 14, 0.75);
}
.ring-amber-800\/80 {
  --tw-ring-color: rgba(146, 64, 14, 0.8);
}
.ring-amber-800\/85 {
  --tw-ring-color: rgba(146, 64, 14, 0.85);
}
.ring-amber-800\/90 {
  --tw-ring-color: rgba(146, 64, 14, 0.9);
}
.ring-amber-800\/95 {
  --tw-ring-color: rgba(146, 64, 14, 0.95);
}
.ring-amber-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity));
}
.ring-amber-900\/0 {
  --tw-ring-color: rgba(120, 53, 15, 0);
}
.ring-amber-900\/10 {
  --tw-ring-color: rgba(120, 53, 15, 0.1);
}
.ring-amber-900\/100 {
  --tw-ring-color: rgba(120, 53, 15, 1);
}
.ring-amber-900\/15 {
  --tw-ring-color: rgba(120, 53, 15, 0.15);
}
.ring-amber-900\/20 {
  --tw-ring-color: rgba(120, 53, 15, 0.2);
}
.ring-amber-900\/25 {
  --tw-ring-color: rgba(120, 53, 15, 0.25);
}
.ring-amber-900\/30 {
  --tw-ring-color: rgba(120, 53, 15, 0.3);
}
.ring-amber-900\/35 {
  --tw-ring-color: rgba(120, 53, 15, 0.35);
}
.ring-amber-900\/40 {
  --tw-ring-color: rgba(120, 53, 15, 0.4);
}
.ring-amber-900\/45 {
  --tw-ring-color: rgba(120, 53, 15, 0.45);
}
.ring-amber-900\/5 {
  --tw-ring-color: rgba(120, 53, 15, 0.05);
}
.ring-amber-900\/50 {
  --tw-ring-color: rgba(120, 53, 15, 0.5);
}
.ring-amber-900\/55 {
  --tw-ring-color: rgba(120, 53, 15, 0.55);
}
.ring-amber-900\/60 {
  --tw-ring-color: rgba(120, 53, 15, 0.6);
}
.ring-amber-900\/65 {
  --tw-ring-color: rgba(120, 53, 15, 0.65);
}
.ring-amber-900\/70 {
  --tw-ring-color: rgba(120, 53, 15, 0.7);
}
.ring-amber-900\/75 {
  --tw-ring-color: rgba(120, 53, 15, 0.75);
}
.ring-amber-900\/80 {
  --tw-ring-color: rgba(120, 53, 15, 0.8);
}
.ring-amber-900\/85 {
  --tw-ring-color: rgba(120, 53, 15, 0.85);
}
.ring-amber-900\/90 {
  --tw-ring-color: rgba(120, 53, 15, 0.9);
}
.ring-amber-900\/95 {
  --tw-ring-color: rgba(120, 53, 15, 0.95);
}
.ring-amber-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(69, 26, 3, var(--tw-ring-opacity));
}
.ring-amber-950\/0 {
  --tw-ring-color: rgba(69, 26, 3, 0);
}
.ring-amber-950\/10 {
  --tw-ring-color: rgba(69, 26, 3, 0.1);
}
.ring-amber-950\/100 {
  --tw-ring-color: rgba(69, 26, 3, 1);
}
.ring-amber-950\/15 {
  --tw-ring-color: rgba(69, 26, 3, 0.15);
}
.ring-amber-950\/20 {
  --tw-ring-color: rgba(69, 26, 3, 0.2);
}
.ring-amber-950\/25 {
  --tw-ring-color: rgba(69, 26, 3, 0.25);
}
.ring-amber-950\/30 {
  --tw-ring-color: rgba(69, 26, 3, 0.3);
}
.ring-amber-950\/35 {
  --tw-ring-color: rgba(69, 26, 3, 0.35);
}
.ring-amber-950\/40 {
  --tw-ring-color: rgba(69, 26, 3, 0.4);
}
.ring-amber-950\/45 {
  --tw-ring-color: rgba(69, 26, 3, 0.45);
}
.ring-amber-950\/5 {
  --tw-ring-color: rgba(69, 26, 3, 0.05);
}
.ring-amber-950\/50 {
  --tw-ring-color: rgba(69, 26, 3, 0.5);
}
.ring-amber-950\/55 {
  --tw-ring-color: rgba(69, 26, 3, 0.55);
}
.ring-amber-950\/60 {
  --tw-ring-color: rgba(69, 26, 3, 0.6);
}
.ring-amber-950\/65 {
  --tw-ring-color: rgba(69, 26, 3, 0.65);
}
.ring-amber-950\/70 {
  --tw-ring-color: rgba(69, 26, 3, 0.7);
}
.ring-amber-950\/75 {
  --tw-ring-color: rgba(69, 26, 3, 0.75);
}
.ring-amber-950\/80 {
  --tw-ring-color: rgba(69, 26, 3, 0.8);
}
.ring-amber-950\/85 {
  --tw-ring-color: rgba(69, 26, 3, 0.85);
}
.ring-amber-950\/90 {
  --tw-ring-color: rgba(69, 26, 3, 0.9);
}
.ring-amber-950\/95 {
  --tw-ring-color: rgba(69, 26, 3, 0.95);
}
.ring-base-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-ring-opacity)));
}
.ring-base-100\/0 {
  --tw-ring-color: var(--fallback-b1,oklch(var(--b1)/0));
}
.ring-base-100\/10 {
  --tw-ring-color: var(--fallback-b1,oklch(var(--b1)/0.1));
}
.ring-base-100\/100 {
  --tw-ring-color: var(--fallback-b1,oklch(var(--b1)/1));
}
.ring-base-100\/15 {
  --tw-ring-color: var(--fallback-b1,oklch(var(--b1)/0.15));
}
.ring-base-100\/20 {
  --tw-ring-color: var(--fallback-b1,oklch(var(--b1)/0.2));
}
.ring-base-100\/25 {
  --tw-ring-color: var(--fallback-b1,oklch(var(--b1)/0.25));
}
.ring-base-100\/30 {
  --tw-ring-color: var(--fallback-b1,oklch(var(--b1)/0.3));
}
.ring-base-100\/35 {
  --tw-ring-color: var(--fallback-b1,oklch(var(--b1)/0.35));
}
.ring-base-100\/40 {
  --tw-ring-color: var(--fallback-b1,oklch(var(--b1)/0.4));
}
.ring-base-100\/45 {
  --tw-ring-color: var(--fallback-b1,oklch(var(--b1)/0.45));
}
.ring-base-100\/5 {
  --tw-ring-color: var(--fallback-b1,oklch(var(--b1)/0.05));
}
.ring-base-100\/50 {
  --tw-ring-color: var(--fallback-b1,oklch(var(--b1)/0.5));
}
.ring-base-100\/55 {
  --tw-ring-color: var(--fallback-b1,oklch(var(--b1)/0.55));
}
.ring-base-100\/60 {
  --tw-ring-color: var(--fallback-b1,oklch(var(--b1)/0.6));
}
.ring-base-100\/65 {
  --tw-ring-color: var(--fallback-b1,oklch(var(--b1)/0.65));
}
.ring-base-100\/70 {
  --tw-ring-color: var(--fallback-b1,oklch(var(--b1)/0.7));
}
.ring-base-100\/75 {
  --tw-ring-color: var(--fallback-b1,oklch(var(--b1)/0.75));
}
.ring-base-100\/80 {
  --tw-ring-color: var(--fallback-b1,oklch(var(--b1)/0.8));
}
.ring-base-100\/85 {
  --tw-ring-color: var(--fallback-b1,oklch(var(--b1)/0.85));
}
.ring-base-100\/90 {
  --tw-ring-color: var(--fallback-b1,oklch(var(--b1)/0.9));
}
.ring-base-100\/95 {
  --tw-ring-color: var(--fallback-b1,oklch(var(--b1)/0.95));
}
.ring-base-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-ring-opacity)));
}
.ring-base-200\/0 {
  --tw-ring-color: var(--fallback-b2,oklch(var(--b2)/0));
}
.ring-base-200\/10 {
  --tw-ring-color: var(--fallback-b2,oklch(var(--b2)/0.1));
}
.ring-base-200\/100 {
  --tw-ring-color: var(--fallback-b2,oklch(var(--b2)/1));
}
.ring-base-200\/15 {
  --tw-ring-color: var(--fallback-b2,oklch(var(--b2)/0.15));
}
.ring-base-200\/20 {
  --tw-ring-color: var(--fallback-b2,oklch(var(--b2)/0.2));
}
.ring-base-200\/25 {
  --tw-ring-color: var(--fallback-b2,oklch(var(--b2)/0.25));
}
.ring-base-200\/30 {
  --tw-ring-color: var(--fallback-b2,oklch(var(--b2)/0.3));
}
.ring-base-200\/35 {
  --tw-ring-color: var(--fallback-b2,oklch(var(--b2)/0.35));
}
.ring-base-200\/40 {
  --tw-ring-color: var(--fallback-b2,oklch(var(--b2)/0.4));
}
.ring-base-200\/45 {
  --tw-ring-color: var(--fallback-b2,oklch(var(--b2)/0.45));
}
.ring-base-200\/5 {
  --tw-ring-color: var(--fallback-b2,oklch(var(--b2)/0.05));
}
.ring-base-200\/50 {
  --tw-ring-color: var(--fallback-b2,oklch(var(--b2)/0.5));
}
.ring-base-200\/55 {
  --tw-ring-color: var(--fallback-b2,oklch(var(--b2)/0.55));
}
.ring-base-200\/60 {
  --tw-ring-color: var(--fallback-b2,oklch(var(--b2)/0.6));
}
.ring-base-200\/65 {
  --tw-ring-color: var(--fallback-b2,oklch(var(--b2)/0.65));
}
.ring-base-200\/70 {
  --tw-ring-color: var(--fallback-b2,oklch(var(--b2)/0.7));
}
.ring-base-200\/75 {
  --tw-ring-color: var(--fallback-b2,oklch(var(--b2)/0.75));
}
.ring-base-200\/80 {
  --tw-ring-color: var(--fallback-b2,oklch(var(--b2)/0.8));
}
.ring-base-200\/85 {
  --tw-ring-color: var(--fallback-b2,oklch(var(--b2)/0.85));
}
.ring-base-200\/90 {
  --tw-ring-color: var(--fallback-b2,oklch(var(--b2)/0.9));
}
.ring-base-200\/95 {
  --tw-ring-color: var(--fallback-b2,oklch(var(--b2)/0.95));
}
.ring-base-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-ring-opacity)));
}
.ring-base-300\/0 {
  --tw-ring-color: var(--fallback-b3,oklch(var(--b3)/0));
}
.ring-base-300\/10 {
  --tw-ring-color: var(--fallback-b3,oklch(var(--b3)/0.1));
}
.ring-base-300\/100 {
  --tw-ring-color: var(--fallback-b3,oklch(var(--b3)/1));
}
.ring-base-300\/15 {
  --tw-ring-color: var(--fallback-b3,oklch(var(--b3)/0.15));
}
.ring-base-300\/20 {
  --tw-ring-color: var(--fallback-b3,oklch(var(--b3)/0.2));
}
.ring-base-300\/25 {
  --tw-ring-color: var(--fallback-b3,oklch(var(--b3)/0.25));
}
.ring-base-300\/30 {
  --tw-ring-color: var(--fallback-b3,oklch(var(--b3)/0.3));
}
.ring-base-300\/35 {
  --tw-ring-color: var(--fallback-b3,oklch(var(--b3)/0.35));
}
.ring-base-300\/40 {
  --tw-ring-color: var(--fallback-b3,oklch(var(--b3)/0.4));
}
.ring-base-300\/45 {
  --tw-ring-color: var(--fallback-b3,oklch(var(--b3)/0.45));
}
.ring-base-300\/5 {
  --tw-ring-color: var(--fallback-b3,oklch(var(--b3)/0.05));
}
.ring-base-300\/50 {
  --tw-ring-color: var(--fallback-b3,oklch(var(--b3)/0.5));
}
.ring-base-300\/55 {
  --tw-ring-color: var(--fallback-b3,oklch(var(--b3)/0.55));
}
.ring-base-300\/60 {
  --tw-ring-color: var(--fallback-b3,oklch(var(--b3)/0.6));
}
.ring-base-300\/65 {
  --tw-ring-color: var(--fallback-b3,oklch(var(--b3)/0.65));
}
.ring-base-300\/70 {
  --tw-ring-color: var(--fallback-b3,oklch(var(--b3)/0.7));
}
.ring-base-300\/75 {
  --tw-ring-color: var(--fallback-b3,oklch(var(--b3)/0.75));
}
.ring-base-300\/80 {
  --tw-ring-color: var(--fallback-b3,oklch(var(--b3)/0.8));
}
.ring-base-300\/85 {
  --tw-ring-color: var(--fallback-b3,oklch(var(--b3)/0.85));
}
.ring-base-300\/90 {
  --tw-ring-color: var(--fallback-b3,oklch(var(--b3)/0.9));
}
.ring-base-300\/95 {
  --tw-ring-color: var(--fallback-b3,oklch(var(--b3)/0.95));
}
.ring-base-content {
  --tw-ring-opacity: 1;
  --tw-ring-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-ring-opacity)));
}
.ring-base-content\/0 {
  --tw-ring-color: var(--fallback-bc,oklch(var(--bc)/0));
}
.ring-base-content\/10 {
  --tw-ring-color: var(--fallback-bc,oklch(var(--bc)/0.1));
}
.ring-base-content\/100 {
  --tw-ring-color: var(--fallback-bc,oklch(var(--bc)/1));
}
.ring-base-content\/15 {
  --tw-ring-color: var(--fallback-bc,oklch(var(--bc)/0.15));
}
.ring-base-content\/20 {
  --tw-ring-color: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.ring-base-content\/25 {
  --tw-ring-color: var(--fallback-bc,oklch(var(--bc)/0.25));
}
.ring-base-content\/30 {
  --tw-ring-color: var(--fallback-bc,oklch(var(--bc)/0.3));
}
.ring-base-content\/35 {
  --tw-ring-color: var(--fallback-bc,oklch(var(--bc)/0.35));
}
.ring-base-content\/40 {
  --tw-ring-color: var(--fallback-bc,oklch(var(--bc)/0.4));
}
.ring-base-content\/45 {
  --tw-ring-color: var(--fallback-bc,oklch(var(--bc)/0.45));
}
.ring-base-content\/5 {
  --tw-ring-color: var(--fallback-bc,oklch(var(--bc)/0.05));
}
.ring-base-content\/50 {
  --tw-ring-color: var(--fallback-bc,oklch(var(--bc)/0.5));
}
.ring-base-content\/55 {
  --tw-ring-color: var(--fallback-bc,oklch(var(--bc)/0.55));
}
.ring-base-content\/60 {
  --tw-ring-color: var(--fallback-bc,oklch(var(--bc)/0.6));
}
.ring-base-content\/65 {
  --tw-ring-color: var(--fallback-bc,oklch(var(--bc)/0.65));
}
.ring-base-content\/70 {
  --tw-ring-color: var(--fallback-bc,oklch(var(--bc)/0.7));
}
.ring-base-content\/75 {
  --tw-ring-color: var(--fallback-bc,oklch(var(--bc)/0.75));
}
.ring-base-content\/80 {
  --tw-ring-color: var(--fallback-bc,oklch(var(--bc)/0.8));
}
.ring-base-content\/85 {
  --tw-ring-color: var(--fallback-bc,oklch(var(--bc)/0.85));
}
.ring-base-content\/90 {
  --tw-ring-color: var(--fallback-bc,oklch(var(--bc)/0.9));
}
.ring-base-content\/95 {
  --tw-ring-color: var(--fallback-bc,oklch(var(--bc)/0.95));
}
.ring-black {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity));
}
.ring-black\/0 {
  --tw-ring-color: rgba(0, 0, 0, 0);
}
.ring-black\/10 {
  --tw-ring-color: rgba(0, 0, 0, 0.1);
}
.ring-black\/100 {
  --tw-ring-color: rgba(0, 0, 0, 1);
}
.ring-black\/15 {
  --tw-ring-color: rgba(0, 0, 0, 0.15);
}
.ring-black\/20 {
  --tw-ring-color: rgba(0, 0, 0, 0.2);
}
.ring-black\/25 {
  --tw-ring-color: rgba(0, 0, 0, 0.25);
}
.ring-black\/30 {
  --tw-ring-color: rgba(0, 0, 0, 0.3);
}
.ring-black\/35 {
  --tw-ring-color: rgba(0, 0, 0, 0.35);
}
.ring-black\/40 {
  --tw-ring-color: rgba(0, 0, 0, 0.4);
}
.ring-black\/45 {
  --tw-ring-color: rgba(0, 0, 0, 0.45);
}
.ring-black\/5 {
  --tw-ring-color: rgba(0, 0, 0, 0.05);
}
.ring-black\/50 {
  --tw-ring-color: rgba(0, 0, 0, 0.5);
}
.ring-black\/55 {
  --tw-ring-color: rgba(0, 0, 0, 0.55);
}
.ring-black\/60 {
  --tw-ring-color: rgba(0, 0, 0, 0.6);
}
.ring-black\/65 {
  --tw-ring-color: rgba(0, 0, 0, 0.65);
}
.ring-black\/70 {
  --tw-ring-color: rgba(0, 0, 0, 0.7);
}
.ring-black\/75 {
  --tw-ring-color: rgba(0, 0, 0, 0.75);
}
.ring-black\/80 {
  --tw-ring-color: rgba(0, 0, 0, 0.8);
}
.ring-black\/85 {
  --tw-ring-color: rgba(0, 0, 0, 0.85);
}
.ring-black\/90 {
  --tw-ring-color: rgba(0, 0, 0, 0.9);
}
.ring-black\/95 {
  --tw-ring-color: rgba(0, 0, 0, 0.95);
}
.ring-blue-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity));
}
.ring-blue-100\/0 {
  --tw-ring-color: rgba(219, 234, 254, 0);
}
.ring-blue-100\/10 {
  --tw-ring-color: rgba(219, 234, 254, 0.1);
}
.ring-blue-100\/100 {
  --tw-ring-color: rgba(219, 234, 254, 1);
}
.ring-blue-100\/15 {
  --tw-ring-color: rgba(219, 234, 254, 0.15);
}
.ring-blue-100\/20 {
  --tw-ring-color: rgba(219, 234, 254, 0.2);
}
.ring-blue-100\/25 {
  --tw-ring-color: rgba(219, 234, 254, 0.25);
}
.ring-blue-100\/30 {
  --tw-ring-color: rgba(219, 234, 254, 0.3);
}
.ring-blue-100\/35 {
  --tw-ring-color: rgba(219, 234, 254, 0.35);
}
.ring-blue-100\/40 {
  --tw-ring-color: rgba(219, 234, 254, 0.4);
}
.ring-blue-100\/45 {
  --tw-ring-color: rgba(219, 234, 254, 0.45);
}
.ring-blue-100\/5 {
  --tw-ring-color: rgba(219, 234, 254, 0.05);
}
.ring-blue-100\/50 {
  --tw-ring-color: rgba(219, 234, 254, 0.5);
}
.ring-blue-100\/55 {
  --tw-ring-color: rgba(219, 234, 254, 0.55);
}
.ring-blue-100\/60 {
  --tw-ring-color: rgba(219, 234, 254, 0.6);
}
.ring-blue-100\/65 {
  --tw-ring-color: rgba(219, 234, 254, 0.65);
}
.ring-blue-100\/70 {
  --tw-ring-color: rgba(219, 234, 254, 0.7);
}
.ring-blue-100\/75 {
  --tw-ring-color: rgba(219, 234, 254, 0.75);
}
.ring-blue-100\/80 {
  --tw-ring-color: rgba(219, 234, 254, 0.8);
}
.ring-blue-100\/85 {
  --tw-ring-color: rgba(219, 234, 254, 0.85);
}
.ring-blue-100\/90 {
  --tw-ring-color: rgba(219, 234, 254, 0.9);
}
.ring-blue-100\/95 {
  --tw-ring-color: rgba(219, 234, 254, 0.95);
}
.ring-blue-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity));
}
.ring-blue-200\/0 {
  --tw-ring-color: rgba(191, 219, 254, 0);
}
.ring-blue-200\/10 {
  --tw-ring-color: rgba(191, 219, 254, 0.1);
}
.ring-blue-200\/100 {
  --tw-ring-color: rgba(191, 219, 254, 1);
}
.ring-blue-200\/15 {
  --tw-ring-color: rgba(191, 219, 254, 0.15);
}
.ring-blue-200\/20 {
  --tw-ring-color: rgba(191, 219, 254, 0.2);
}
.ring-blue-200\/25 {
  --tw-ring-color: rgba(191, 219, 254, 0.25);
}
.ring-blue-200\/30 {
  --tw-ring-color: rgba(191, 219, 254, 0.3);
}
.ring-blue-200\/35 {
  --tw-ring-color: rgba(191, 219, 254, 0.35);
}
.ring-blue-200\/40 {
  --tw-ring-color: rgba(191, 219, 254, 0.4);
}
.ring-blue-200\/45 {
  --tw-ring-color: rgba(191, 219, 254, 0.45);
}
.ring-blue-200\/5 {
  --tw-ring-color: rgba(191, 219, 254, 0.05);
}
.ring-blue-200\/50 {
  --tw-ring-color: rgba(191, 219, 254, 0.5);
}
.ring-blue-200\/55 {
  --tw-ring-color: rgba(191, 219, 254, 0.55);
}
.ring-blue-200\/60 {
  --tw-ring-color: rgba(191, 219, 254, 0.6);
}
.ring-blue-200\/65 {
  --tw-ring-color: rgba(191, 219, 254, 0.65);
}
.ring-blue-200\/70 {
  --tw-ring-color: rgba(191, 219, 254, 0.7);
}
.ring-blue-200\/75 {
  --tw-ring-color: rgba(191, 219, 254, 0.75);
}
.ring-blue-200\/80 {
  --tw-ring-color: rgba(191, 219, 254, 0.8);
}
.ring-blue-200\/85 {
  --tw-ring-color: rgba(191, 219, 254, 0.85);
}
.ring-blue-200\/90 {
  --tw-ring-color: rgba(191, 219, 254, 0.9);
}
.ring-blue-200\/95 {
  --tw-ring-color: rgba(191, 219, 254, 0.95);
}
.ring-blue-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity));
}
.ring-blue-300\/0 {
  --tw-ring-color: rgba(147, 197, 253, 0);
}
.ring-blue-300\/10 {
  --tw-ring-color: rgba(147, 197, 253, 0.1);
}
.ring-blue-300\/100 {
  --tw-ring-color: rgba(147, 197, 253, 1);
}
.ring-blue-300\/15 {
  --tw-ring-color: rgba(147, 197, 253, 0.15);
}
.ring-blue-300\/20 {
  --tw-ring-color: rgba(147, 197, 253, 0.2);
}
.ring-blue-300\/25 {
  --tw-ring-color: rgba(147, 197, 253, 0.25);
}
.ring-blue-300\/30 {
  --tw-ring-color: rgba(147, 197, 253, 0.3);
}
.ring-blue-300\/35 {
  --tw-ring-color: rgba(147, 197, 253, 0.35);
}
.ring-blue-300\/40 {
  --tw-ring-color: rgba(147, 197, 253, 0.4);
}
.ring-blue-300\/45 {
  --tw-ring-color: rgba(147, 197, 253, 0.45);
}
.ring-blue-300\/5 {
  --tw-ring-color: rgba(147, 197, 253, 0.05);
}
.ring-blue-300\/50 {
  --tw-ring-color: rgba(147, 197, 253, 0.5);
}
.ring-blue-300\/55 {
  --tw-ring-color: rgba(147, 197, 253, 0.55);
}
.ring-blue-300\/60 {
  --tw-ring-color: rgba(147, 197, 253, 0.6);
}
.ring-blue-300\/65 {
  --tw-ring-color: rgba(147, 197, 253, 0.65);
}
.ring-blue-300\/70 {
  --tw-ring-color: rgba(147, 197, 253, 0.7);
}
.ring-blue-300\/75 {
  --tw-ring-color: rgba(147, 197, 253, 0.75);
}
.ring-blue-300\/80 {
  --tw-ring-color: rgba(147, 197, 253, 0.8);
}
.ring-blue-300\/85 {
  --tw-ring-color: rgba(147, 197, 253, 0.85);
}
.ring-blue-300\/90 {
  --tw-ring-color: rgba(147, 197, 253, 0.9);
}
.ring-blue-300\/95 {
  --tw-ring-color: rgba(147, 197, 253, 0.95);
}
.ring-blue-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity));
}
.ring-blue-400\/0 {
  --tw-ring-color: rgba(96, 165, 250, 0);
}
.ring-blue-400\/10 {
  --tw-ring-color: rgba(96, 165, 250, 0.1);
}
.ring-blue-400\/100 {
  --tw-ring-color: rgba(96, 165, 250, 1);
}
.ring-blue-400\/15 {
  --tw-ring-color: rgba(96, 165, 250, 0.15);
}
.ring-blue-400\/20 {
  --tw-ring-color: rgba(96, 165, 250, 0.2);
}
.ring-blue-400\/25 {
  --tw-ring-color: rgba(96, 165, 250, 0.25);
}
.ring-blue-400\/30 {
  --tw-ring-color: rgba(96, 165, 250, 0.3);
}
.ring-blue-400\/35 {
  --tw-ring-color: rgba(96, 165, 250, 0.35);
}
.ring-blue-400\/40 {
  --tw-ring-color: rgba(96, 165, 250, 0.4);
}
.ring-blue-400\/45 {
  --tw-ring-color: rgba(96, 165, 250, 0.45);
}
.ring-blue-400\/5 {
  --tw-ring-color: rgba(96, 165, 250, 0.05);
}
.ring-blue-400\/50 {
  --tw-ring-color: rgba(96, 165, 250, 0.5);
}
.ring-blue-400\/55 {
  --tw-ring-color: rgba(96, 165, 250, 0.55);
}
.ring-blue-400\/60 {
  --tw-ring-color: rgba(96, 165, 250, 0.6);
}
.ring-blue-400\/65 {
  --tw-ring-color: rgba(96, 165, 250, 0.65);
}
.ring-blue-400\/70 {
  --tw-ring-color: rgba(96, 165, 250, 0.7);
}
.ring-blue-400\/75 {
  --tw-ring-color: rgba(96, 165, 250, 0.75);
}
.ring-blue-400\/80 {
  --tw-ring-color: rgba(96, 165, 250, 0.8);
}
.ring-blue-400\/85 {
  --tw-ring-color: rgba(96, 165, 250, 0.85);
}
.ring-blue-400\/90 {
  --tw-ring-color: rgba(96, 165, 250, 0.9);
}
.ring-blue-400\/95 {
  --tw-ring-color: rgba(96, 165, 250, 0.95);
}
.ring-blue-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity));
}
.ring-blue-50\/0 {
  --tw-ring-color: rgba(239, 246, 255, 0);
}
.ring-blue-50\/10 {
  --tw-ring-color: rgba(239, 246, 255, 0.1);
}
.ring-blue-50\/100 {
  --tw-ring-color: rgba(239, 246, 255, 1);
}
.ring-blue-50\/15 {
  --tw-ring-color: rgba(239, 246, 255, 0.15);
}
.ring-blue-50\/20 {
  --tw-ring-color: rgba(239, 246, 255, 0.2);
}
.ring-blue-50\/25 {
  --tw-ring-color: rgba(239, 246, 255, 0.25);
}
.ring-blue-50\/30 {
  --tw-ring-color: rgba(239, 246, 255, 0.3);
}
.ring-blue-50\/35 {
  --tw-ring-color: rgba(239, 246, 255, 0.35);
}
.ring-blue-50\/40 {
  --tw-ring-color: rgba(239, 246, 255, 0.4);
}
.ring-blue-50\/45 {
  --tw-ring-color: rgba(239, 246, 255, 0.45);
}
.ring-blue-50\/5 {
  --tw-ring-color: rgba(239, 246, 255, 0.05);
}
.ring-blue-50\/50 {
  --tw-ring-color: rgba(239, 246, 255, 0.5);
}
.ring-blue-50\/55 {
  --tw-ring-color: rgba(239, 246, 255, 0.55);
}
.ring-blue-50\/60 {
  --tw-ring-color: rgba(239, 246, 255, 0.6);
}
.ring-blue-50\/65 {
  --tw-ring-color: rgba(239, 246, 255, 0.65);
}
.ring-blue-50\/70 {
  --tw-ring-color: rgba(239, 246, 255, 0.7);
}
.ring-blue-50\/75 {
  --tw-ring-color: rgba(239, 246, 255, 0.75);
}
.ring-blue-50\/80 {
  --tw-ring-color: rgba(239, 246, 255, 0.8);
}
.ring-blue-50\/85 {
  --tw-ring-color: rgba(239, 246, 255, 0.85);
}
.ring-blue-50\/90 {
  --tw-ring-color: rgba(239, 246, 255, 0.9);
}
.ring-blue-50\/95 {
  --tw-ring-color: rgba(239, 246, 255, 0.95);
}
.ring-blue-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity));
}
.ring-blue-500\/0 {
  --tw-ring-color: rgba(59, 130, 246, 0);
}
.ring-blue-500\/10 {
  --tw-ring-color: rgba(59, 130, 246, 0.1);
}
.ring-blue-500\/100 {
  --tw-ring-color: rgba(59, 130, 246, 1);
}
.ring-blue-500\/15 {
  --tw-ring-color: rgba(59, 130, 246, 0.15);
}
.ring-blue-500\/20 {
  --tw-ring-color: rgba(59, 130, 246, 0.2);
}
.ring-blue-500\/25 {
  --tw-ring-color: rgba(59, 130, 246, 0.25);
}
.ring-blue-500\/30 {
  --tw-ring-color: rgba(59, 130, 246, 0.3);
}
.ring-blue-500\/35 {
  --tw-ring-color: rgba(59, 130, 246, 0.35);
}
.ring-blue-500\/40 {
  --tw-ring-color: rgba(59, 130, 246, 0.4);
}
.ring-blue-500\/45 {
  --tw-ring-color: rgba(59, 130, 246, 0.45);
}
.ring-blue-500\/5 {
  --tw-ring-color: rgba(59, 130, 246, 0.05);
}
.ring-blue-500\/50 {
  --tw-ring-color: rgba(59, 130, 246, 0.5);
}
.ring-blue-500\/55 {
  --tw-ring-color: rgba(59, 130, 246, 0.55);
}
.ring-blue-500\/60 {
  --tw-ring-color: rgba(59, 130, 246, 0.6);
}
.ring-blue-500\/65 {
  --tw-ring-color: rgba(59, 130, 246, 0.65);
}
.ring-blue-500\/70 {
  --tw-ring-color: rgba(59, 130, 246, 0.7);
}
.ring-blue-500\/75 {
  --tw-ring-color: rgba(59, 130, 246, 0.75);
}
.ring-blue-500\/80 {
  --tw-ring-color: rgba(59, 130, 246, 0.8);
}
.ring-blue-500\/85 {
  --tw-ring-color: rgba(59, 130, 246, 0.85);
}
.ring-blue-500\/90 {
  --tw-ring-color: rgba(59, 130, 246, 0.9);
}
.ring-blue-500\/95 {
  --tw-ring-color: rgba(59, 130, 246, 0.95);
}
.ring-blue-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity));
}
.ring-blue-600\/0 {
  --tw-ring-color: rgba(37, 99, 235, 0);
}
.ring-blue-600\/10 {
  --tw-ring-color: rgba(37, 99, 235, 0.1);
}
.ring-blue-600\/100 {
  --tw-ring-color: rgba(37, 99, 235, 1);
}
.ring-blue-600\/15 {
  --tw-ring-color: rgba(37, 99, 235, 0.15);
}
.ring-blue-600\/20 {
  --tw-ring-color: rgba(37, 99, 235, 0.2);
}
.ring-blue-600\/25 {
  --tw-ring-color: rgba(37, 99, 235, 0.25);
}
.ring-blue-600\/30 {
  --tw-ring-color: rgba(37, 99, 235, 0.3);
}
.ring-blue-600\/35 {
  --tw-ring-color: rgba(37, 99, 235, 0.35);
}
.ring-blue-600\/40 {
  --tw-ring-color: rgba(37, 99, 235, 0.4);
}
.ring-blue-600\/45 {
  --tw-ring-color: rgba(37, 99, 235, 0.45);
}
.ring-blue-600\/5 {
  --tw-ring-color: rgba(37, 99, 235, 0.05);
}
.ring-blue-600\/50 {
  --tw-ring-color: rgba(37, 99, 235, 0.5);
}
.ring-blue-600\/55 {
  --tw-ring-color: rgba(37, 99, 235, 0.55);
}
.ring-blue-600\/60 {
  --tw-ring-color: rgba(37, 99, 235, 0.6);
}
.ring-blue-600\/65 {
  --tw-ring-color: rgba(37, 99, 235, 0.65);
}
.ring-blue-600\/70 {
  --tw-ring-color: rgba(37, 99, 235, 0.7);
}
.ring-blue-600\/75 {
  --tw-ring-color: rgba(37, 99, 235, 0.75);
}
.ring-blue-600\/80 {
  --tw-ring-color: rgba(37, 99, 235, 0.8);
}
.ring-blue-600\/85 {
  --tw-ring-color: rgba(37, 99, 235, 0.85);
}
.ring-blue-600\/90 {
  --tw-ring-color: rgba(37, 99, 235, 0.9);
}
.ring-blue-600\/95 {
  --tw-ring-color: rgba(37, 99, 235, 0.95);
}
.ring-blue-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity));
}
.ring-blue-700\/0 {
  --tw-ring-color: rgba(29, 78, 216, 0);
}
.ring-blue-700\/10 {
  --tw-ring-color: rgba(29, 78, 216, 0.1);
}
.ring-blue-700\/100 {
  --tw-ring-color: rgba(29, 78, 216, 1);
}
.ring-blue-700\/15 {
  --tw-ring-color: rgba(29, 78, 216, 0.15);
}
.ring-blue-700\/20 {
  --tw-ring-color: rgba(29, 78, 216, 0.2);
}
.ring-blue-700\/25 {
  --tw-ring-color: rgba(29, 78, 216, 0.25);
}
.ring-blue-700\/30 {
  --tw-ring-color: rgba(29, 78, 216, 0.3);
}
.ring-blue-700\/35 {
  --tw-ring-color: rgba(29, 78, 216, 0.35);
}
.ring-blue-700\/40 {
  --tw-ring-color: rgba(29, 78, 216, 0.4);
}
.ring-blue-700\/45 {
  --tw-ring-color: rgba(29, 78, 216, 0.45);
}
.ring-blue-700\/5 {
  --tw-ring-color: rgba(29, 78, 216, 0.05);
}
.ring-blue-700\/50 {
  --tw-ring-color: rgba(29, 78, 216, 0.5);
}
.ring-blue-700\/55 {
  --tw-ring-color: rgba(29, 78, 216, 0.55);
}
.ring-blue-700\/60 {
  --tw-ring-color: rgba(29, 78, 216, 0.6);
}
.ring-blue-700\/65 {
  --tw-ring-color: rgba(29, 78, 216, 0.65);
}
.ring-blue-700\/70 {
  --tw-ring-color: rgba(29, 78, 216, 0.7);
}
.ring-blue-700\/75 {
  --tw-ring-color: rgba(29, 78, 216, 0.75);
}
.ring-blue-700\/80 {
  --tw-ring-color: rgba(29, 78, 216, 0.8);
}
.ring-blue-700\/85 {
  --tw-ring-color: rgba(29, 78, 216, 0.85);
}
.ring-blue-700\/90 {
  --tw-ring-color: rgba(29, 78, 216, 0.9);
}
.ring-blue-700\/95 {
  --tw-ring-color: rgba(29, 78, 216, 0.95);
}
.ring-blue-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity));
}
.ring-blue-800\/0 {
  --tw-ring-color: rgba(30, 64, 175, 0);
}
.ring-blue-800\/10 {
  --tw-ring-color: rgba(30, 64, 175, 0.1);
}
.ring-blue-800\/100 {
  --tw-ring-color: rgba(30, 64, 175, 1);
}
.ring-blue-800\/15 {
  --tw-ring-color: rgba(30, 64, 175, 0.15);
}
.ring-blue-800\/20 {
  --tw-ring-color: rgba(30, 64, 175, 0.2);
}
.ring-blue-800\/25 {
  --tw-ring-color: rgba(30, 64, 175, 0.25);
}
.ring-blue-800\/30 {
  --tw-ring-color: rgba(30, 64, 175, 0.3);
}
.ring-blue-800\/35 {
  --tw-ring-color: rgba(30, 64, 175, 0.35);
}
.ring-blue-800\/40 {
  --tw-ring-color: rgba(30, 64, 175, 0.4);
}
.ring-blue-800\/45 {
  --tw-ring-color: rgba(30, 64, 175, 0.45);
}
.ring-blue-800\/5 {
  --tw-ring-color: rgba(30, 64, 175, 0.05);
}
.ring-blue-800\/50 {
  --tw-ring-color: rgba(30, 64, 175, 0.5);
}
.ring-blue-800\/55 {
  --tw-ring-color: rgba(30, 64, 175, 0.55);
}
.ring-blue-800\/60 {
  --tw-ring-color: rgba(30, 64, 175, 0.6);
}
.ring-blue-800\/65 {
  --tw-ring-color: rgba(30, 64, 175, 0.65);
}
.ring-blue-800\/70 {
  --tw-ring-color: rgba(30, 64, 175, 0.7);
}
.ring-blue-800\/75 {
  --tw-ring-color: rgba(30, 64, 175, 0.75);
}
.ring-blue-800\/80 {
  --tw-ring-color: rgba(30, 64, 175, 0.8);
}
.ring-blue-800\/85 {
  --tw-ring-color: rgba(30, 64, 175, 0.85);
}
.ring-blue-800\/90 {
  --tw-ring-color: rgba(30, 64, 175, 0.9);
}
.ring-blue-800\/95 {
  --tw-ring-color: rgba(30, 64, 175, 0.95);
}
.ring-blue-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity));
}
.ring-blue-900\/0 {
  --tw-ring-color: rgba(30, 58, 138, 0);
}
.ring-blue-900\/10 {
  --tw-ring-color: rgba(30, 58, 138, 0.1);
}
.ring-blue-900\/100 {
  --tw-ring-color: rgba(30, 58, 138, 1);
}
.ring-blue-900\/15 {
  --tw-ring-color: rgba(30, 58, 138, 0.15);
}
.ring-blue-900\/20 {
  --tw-ring-color: rgba(30, 58, 138, 0.2);
}
.ring-blue-900\/25 {
  --tw-ring-color: rgba(30, 58, 138, 0.25);
}
.ring-blue-900\/30 {
  --tw-ring-color: rgba(30, 58, 138, 0.3);
}
.ring-blue-900\/35 {
  --tw-ring-color: rgba(30, 58, 138, 0.35);
}
.ring-blue-900\/40 {
  --tw-ring-color: rgba(30, 58, 138, 0.4);
}
.ring-blue-900\/45 {
  --tw-ring-color: rgba(30, 58, 138, 0.45);
}
.ring-blue-900\/5 {
  --tw-ring-color: rgba(30, 58, 138, 0.05);
}
.ring-blue-900\/50 {
  --tw-ring-color: rgba(30, 58, 138, 0.5);
}
.ring-blue-900\/55 {
  --tw-ring-color: rgba(30, 58, 138, 0.55);
}
.ring-blue-900\/60 {
  --tw-ring-color: rgba(30, 58, 138, 0.6);
}
.ring-blue-900\/65 {
  --tw-ring-color: rgba(30, 58, 138, 0.65);
}
.ring-blue-900\/70 {
  --tw-ring-color: rgba(30, 58, 138, 0.7);
}
.ring-blue-900\/75 {
  --tw-ring-color: rgba(30, 58, 138, 0.75);
}
.ring-blue-900\/80 {
  --tw-ring-color: rgba(30, 58, 138, 0.8);
}
.ring-blue-900\/85 {
  --tw-ring-color: rgba(30, 58, 138, 0.85);
}
.ring-blue-900\/90 {
  --tw-ring-color: rgba(30, 58, 138, 0.9);
}
.ring-blue-900\/95 {
  --tw-ring-color: rgba(30, 58, 138, 0.95);
}
.ring-blue-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(23, 37, 84, var(--tw-ring-opacity));
}
.ring-blue-950\/0 {
  --tw-ring-color: rgba(23, 37, 84, 0);
}
.ring-blue-950\/10 {
  --tw-ring-color: rgba(23, 37, 84, 0.1);
}
.ring-blue-950\/100 {
  --tw-ring-color: rgba(23, 37, 84, 1);
}
.ring-blue-950\/15 {
  --tw-ring-color: rgba(23, 37, 84, 0.15);
}
.ring-blue-950\/20 {
  --tw-ring-color: rgba(23, 37, 84, 0.2);
}
.ring-blue-950\/25 {
  --tw-ring-color: rgba(23, 37, 84, 0.25);
}
.ring-blue-950\/30 {
  --tw-ring-color: rgba(23, 37, 84, 0.3);
}
.ring-blue-950\/35 {
  --tw-ring-color: rgba(23, 37, 84, 0.35);
}
.ring-blue-950\/40 {
  --tw-ring-color: rgba(23, 37, 84, 0.4);
}
.ring-blue-950\/45 {
  --tw-ring-color: rgba(23, 37, 84, 0.45);
}
.ring-blue-950\/5 {
  --tw-ring-color: rgba(23, 37, 84, 0.05);
}
.ring-blue-950\/50 {
  --tw-ring-color: rgba(23, 37, 84, 0.5);
}
.ring-blue-950\/55 {
  --tw-ring-color: rgba(23, 37, 84, 0.55);
}
.ring-blue-950\/60 {
  --tw-ring-color: rgba(23, 37, 84, 0.6);
}
.ring-blue-950\/65 {
  --tw-ring-color: rgba(23, 37, 84, 0.65);
}
.ring-blue-950\/70 {
  --tw-ring-color: rgba(23, 37, 84, 0.7);
}
.ring-blue-950\/75 {
  --tw-ring-color: rgba(23, 37, 84, 0.75);
}
.ring-blue-950\/80 {
  --tw-ring-color: rgba(23, 37, 84, 0.8);
}
.ring-blue-950\/85 {
  --tw-ring-color: rgba(23, 37, 84, 0.85);
}
.ring-blue-950\/90 {
  --tw-ring-color: rgba(23, 37, 84, 0.9);
}
.ring-blue-950\/95 {
  --tw-ring-color: rgba(23, 37, 84, 0.95);
}
.ring-current {
  --tw-ring-color: currentColor;
}
.ring-cyan-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(207, 250, 254, var(--tw-ring-opacity));
}
.ring-cyan-100\/0 {
  --tw-ring-color: rgba(207, 250, 254, 0);
}
.ring-cyan-100\/10 {
  --tw-ring-color: rgba(207, 250, 254, 0.1);
}
.ring-cyan-100\/100 {
  --tw-ring-color: rgba(207, 250, 254, 1);
}
.ring-cyan-100\/15 {
  --tw-ring-color: rgba(207, 250, 254, 0.15);
}
.ring-cyan-100\/20 {
  --tw-ring-color: rgba(207, 250, 254, 0.2);
}
.ring-cyan-100\/25 {
  --tw-ring-color: rgba(207, 250, 254, 0.25);
}
.ring-cyan-100\/30 {
  --tw-ring-color: rgba(207, 250, 254, 0.3);
}
.ring-cyan-100\/35 {
  --tw-ring-color: rgba(207, 250, 254, 0.35);
}
.ring-cyan-100\/40 {
  --tw-ring-color: rgba(207, 250, 254, 0.4);
}
.ring-cyan-100\/45 {
  --tw-ring-color: rgba(207, 250, 254, 0.45);
}
.ring-cyan-100\/5 {
  --tw-ring-color: rgba(207, 250, 254, 0.05);
}
.ring-cyan-100\/50 {
  --tw-ring-color: rgba(207, 250, 254, 0.5);
}
.ring-cyan-100\/55 {
  --tw-ring-color: rgba(207, 250, 254, 0.55);
}
.ring-cyan-100\/60 {
  --tw-ring-color: rgba(207, 250, 254, 0.6);
}
.ring-cyan-100\/65 {
  --tw-ring-color: rgba(207, 250, 254, 0.65);
}
.ring-cyan-100\/70 {
  --tw-ring-color: rgba(207, 250, 254, 0.7);
}
.ring-cyan-100\/75 {
  --tw-ring-color: rgba(207, 250, 254, 0.75);
}
.ring-cyan-100\/80 {
  --tw-ring-color: rgba(207, 250, 254, 0.8);
}
.ring-cyan-100\/85 {
  --tw-ring-color: rgba(207, 250, 254, 0.85);
}
.ring-cyan-100\/90 {
  --tw-ring-color: rgba(207, 250, 254, 0.9);
}
.ring-cyan-100\/95 {
  --tw-ring-color: rgba(207, 250, 254, 0.95);
}
.ring-cyan-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(165, 243, 252, var(--tw-ring-opacity));
}
.ring-cyan-200\/0 {
  --tw-ring-color: rgba(165, 243, 252, 0);
}
.ring-cyan-200\/10 {
  --tw-ring-color: rgba(165, 243, 252, 0.1);
}
.ring-cyan-200\/100 {
  --tw-ring-color: rgba(165, 243, 252, 1);
}
.ring-cyan-200\/15 {
  --tw-ring-color: rgba(165, 243, 252, 0.15);
}
.ring-cyan-200\/20 {
  --tw-ring-color: rgba(165, 243, 252, 0.2);
}
.ring-cyan-200\/25 {
  --tw-ring-color: rgba(165, 243, 252, 0.25);
}
.ring-cyan-200\/30 {
  --tw-ring-color: rgba(165, 243, 252, 0.3);
}
.ring-cyan-200\/35 {
  --tw-ring-color: rgba(165, 243, 252, 0.35);
}
.ring-cyan-200\/40 {
  --tw-ring-color: rgba(165, 243, 252, 0.4);
}
.ring-cyan-200\/45 {
  --tw-ring-color: rgba(165, 243, 252, 0.45);
}
.ring-cyan-200\/5 {
  --tw-ring-color: rgba(165, 243, 252, 0.05);
}
.ring-cyan-200\/50 {
  --tw-ring-color: rgba(165, 243, 252, 0.5);
}
.ring-cyan-200\/55 {
  --tw-ring-color: rgba(165, 243, 252, 0.55);
}
.ring-cyan-200\/60 {
  --tw-ring-color: rgba(165, 243, 252, 0.6);
}
.ring-cyan-200\/65 {
  --tw-ring-color: rgba(165, 243, 252, 0.65);
}
.ring-cyan-200\/70 {
  --tw-ring-color: rgba(165, 243, 252, 0.7);
}
.ring-cyan-200\/75 {
  --tw-ring-color: rgba(165, 243, 252, 0.75);
}
.ring-cyan-200\/80 {
  --tw-ring-color: rgba(165, 243, 252, 0.8);
}
.ring-cyan-200\/85 {
  --tw-ring-color: rgba(165, 243, 252, 0.85);
}
.ring-cyan-200\/90 {
  --tw-ring-color: rgba(165, 243, 252, 0.9);
}
.ring-cyan-200\/95 {
  --tw-ring-color: rgba(165, 243, 252, 0.95);
}
.ring-cyan-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(103, 232, 249, var(--tw-ring-opacity));
}
.ring-cyan-300\/0 {
  --tw-ring-color: rgba(103, 232, 249, 0);
}
.ring-cyan-300\/10 {
  --tw-ring-color: rgba(103, 232, 249, 0.1);
}
.ring-cyan-300\/100 {
  --tw-ring-color: rgba(103, 232, 249, 1);
}
.ring-cyan-300\/15 {
  --tw-ring-color: rgba(103, 232, 249, 0.15);
}
.ring-cyan-300\/20 {
  --tw-ring-color: rgba(103, 232, 249, 0.2);
}
.ring-cyan-300\/25 {
  --tw-ring-color: rgba(103, 232, 249, 0.25);
}
.ring-cyan-300\/30 {
  --tw-ring-color: rgba(103, 232, 249, 0.3);
}
.ring-cyan-300\/35 {
  --tw-ring-color: rgba(103, 232, 249, 0.35);
}
.ring-cyan-300\/40 {
  --tw-ring-color: rgba(103, 232, 249, 0.4);
}
.ring-cyan-300\/45 {
  --tw-ring-color: rgba(103, 232, 249, 0.45);
}
.ring-cyan-300\/5 {
  --tw-ring-color: rgba(103, 232, 249, 0.05);
}
.ring-cyan-300\/50 {
  --tw-ring-color: rgba(103, 232, 249, 0.5);
}
.ring-cyan-300\/55 {
  --tw-ring-color: rgba(103, 232, 249, 0.55);
}
.ring-cyan-300\/60 {
  --tw-ring-color: rgba(103, 232, 249, 0.6);
}
.ring-cyan-300\/65 {
  --tw-ring-color: rgba(103, 232, 249, 0.65);
}
.ring-cyan-300\/70 {
  --tw-ring-color: rgba(103, 232, 249, 0.7);
}
.ring-cyan-300\/75 {
  --tw-ring-color: rgba(103, 232, 249, 0.75);
}
.ring-cyan-300\/80 {
  --tw-ring-color: rgba(103, 232, 249, 0.8);
}
.ring-cyan-300\/85 {
  --tw-ring-color: rgba(103, 232, 249, 0.85);
}
.ring-cyan-300\/90 {
  --tw-ring-color: rgba(103, 232, 249, 0.9);
}
.ring-cyan-300\/95 {
  --tw-ring-color: rgba(103, 232, 249, 0.95);
}
.ring-cyan-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(34, 211, 238, var(--tw-ring-opacity));
}
.ring-cyan-400\/0 {
  --tw-ring-color: rgba(34, 211, 238, 0);
}
.ring-cyan-400\/10 {
  --tw-ring-color: rgba(34, 211, 238, 0.1);
}
.ring-cyan-400\/100 {
  --tw-ring-color: rgba(34, 211, 238, 1);
}
.ring-cyan-400\/15 {
  --tw-ring-color: rgba(34, 211, 238, 0.15);
}
.ring-cyan-400\/20 {
  --tw-ring-color: rgba(34, 211, 238, 0.2);
}
.ring-cyan-400\/25 {
  --tw-ring-color: rgba(34, 211, 238, 0.25);
}
.ring-cyan-400\/30 {
  --tw-ring-color: rgba(34, 211, 238, 0.3);
}
.ring-cyan-400\/35 {
  --tw-ring-color: rgba(34, 211, 238, 0.35);
}
.ring-cyan-400\/40 {
  --tw-ring-color: rgba(34, 211, 238, 0.4);
}
.ring-cyan-400\/45 {
  --tw-ring-color: rgba(34, 211, 238, 0.45);
}
.ring-cyan-400\/5 {
  --tw-ring-color: rgba(34, 211, 238, 0.05);
}
.ring-cyan-400\/50 {
  --tw-ring-color: rgba(34, 211, 238, 0.5);
}
.ring-cyan-400\/55 {
  --tw-ring-color: rgba(34, 211, 238, 0.55);
}
.ring-cyan-400\/60 {
  --tw-ring-color: rgba(34, 211, 238, 0.6);
}
.ring-cyan-400\/65 {
  --tw-ring-color: rgba(34, 211, 238, 0.65);
}
.ring-cyan-400\/70 {
  --tw-ring-color: rgba(34, 211, 238, 0.7);
}
.ring-cyan-400\/75 {
  --tw-ring-color: rgba(34, 211, 238, 0.75);
}
.ring-cyan-400\/80 {
  --tw-ring-color: rgba(34, 211, 238, 0.8);
}
.ring-cyan-400\/85 {
  --tw-ring-color: rgba(34, 211, 238, 0.85);
}
.ring-cyan-400\/90 {
  --tw-ring-color: rgba(34, 211, 238, 0.9);
}
.ring-cyan-400\/95 {
  --tw-ring-color: rgba(34, 211, 238, 0.95);
}
.ring-cyan-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(236, 254, 255, var(--tw-ring-opacity));
}
.ring-cyan-50\/0 {
  --tw-ring-color: rgba(236, 254, 255, 0);
}
.ring-cyan-50\/10 {
  --tw-ring-color: rgba(236, 254, 255, 0.1);
}
.ring-cyan-50\/100 {
  --tw-ring-color: rgba(236, 254, 255, 1);
}
.ring-cyan-50\/15 {
  --tw-ring-color: rgba(236, 254, 255, 0.15);
}
.ring-cyan-50\/20 {
  --tw-ring-color: rgba(236, 254, 255, 0.2);
}
.ring-cyan-50\/25 {
  --tw-ring-color: rgba(236, 254, 255, 0.25);
}
.ring-cyan-50\/30 {
  --tw-ring-color: rgba(236, 254, 255, 0.3);
}
.ring-cyan-50\/35 {
  --tw-ring-color: rgba(236, 254, 255, 0.35);
}
.ring-cyan-50\/40 {
  --tw-ring-color: rgba(236, 254, 255, 0.4);
}
.ring-cyan-50\/45 {
  --tw-ring-color: rgba(236, 254, 255, 0.45);
}
.ring-cyan-50\/5 {
  --tw-ring-color: rgba(236, 254, 255, 0.05);
}
.ring-cyan-50\/50 {
  --tw-ring-color: rgba(236, 254, 255, 0.5);
}
.ring-cyan-50\/55 {
  --tw-ring-color: rgba(236, 254, 255, 0.55);
}
.ring-cyan-50\/60 {
  --tw-ring-color: rgba(236, 254, 255, 0.6);
}
.ring-cyan-50\/65 {
  --tw-ring-color: rgba(236, 254, 255, 0.65);
}
.ring-cyan-50\/70 {
  --tw-ring-color: rgba(236, 254, 255, 0.7);
}
.ring-cyan-50\/75 {
  --tw-ring-color: rgba(236, 254, 255, 0.75);
}
.ring-cyan-50\/80 {
  --tw-ring-color: rgba(236, 254, 255, 0.8);
}
.ring-cyan-50\/85 {
  --tw-ring-color: rgba(236, 254, 255, 0.85);
}
.ring-cyan-50\/90 {
  --tw-ring-color: rgba(236, 254, 255, 0.9);
}
.ring-cyan-50\/95 {
  --tw-ring-color: rgba(236, 254, 255, 0.95);
}
.ring-cyan-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(6, 182, 212, var(--tw-ring-opacity));
}
.ring-cyan-500\/0 {
  --tw-ring-color: rgba(6, 182, 212, 0);
}
.ring-cyan-500\/10 {
  --tw-ring-color: rgba(6, 182, 212, 0.1);
}
.ring-cyan-500\/100 {
  --tw-ring-color: rgba(6, 182, 212, 1);
}
.ring-cyan-500\/15 {
  --tw-ring-color: rgba(6, 182, 212, 0.15);
}
.ring-cyan-500\/20 {
  --tw-ring-color: rgba(6, 182, 212, 0.2);
}
.ring-cyan-500\/25 {
  --tw-ring-color: rgba(6, 182, 212, 0.25);
}
.ring-cyan-500\/30 {
  --tw-ring-color: rgba(6, 182, 212, 0.3);
}
.ring-cyan-500\/35 {
  --tw-ring-color: rgba(6, 182, 212, 0.35);
}
.ring-cyan-500\/40 {
  --tw-ring-color: rgba(6, 182, 212, 0.4);
}
.ring-cyan-500\/45 {
  --tw-ring-color: rgba(6, 182, 212, 0.45);
}
.ring-cyan-500\/5 {
  --tw-ring-color: rgba(6, 182, 212, 0.05);
}
.ring-cyan-500\/50 {
  --tw-ring-color: rgba(6, 182, 212, 0.5);
}
.ring-cyan-500\/55 {
  --tw-ring-color: rgba(6, 182, 212, 0.55);
}
.ring-cyan-500\/60 {
  --tw-ring-color: rgba(6, 182, 212, 0.6);
}
.ring-cyan-500\/65 {
  --tw-ring-color: rgba(6, 182, 212, 0.65);
}
.ring-cyan-500\/70 {
  --tw-ring-color: rgba(6, 182, 212, 0.7);
}
.ring-cyan-500\/75 {
  --tw-ring-color: rgba(6, 182, 212, 0.75);
}
.ring-cyan-500\/80 {
  --tw-ring-color: rgba(6, 182, 212, 0.8);
}
.ring-cyan-500\/85 {
  --tw-ring-color: rgba(6, 182, 212, 0.85);
}
.ring-cyan-500\/90 {
  --tw-ring-color: rgba(6, 182, 212, 0.9);
}
.ring-cyan-500\/95 {
  --tw-ring-color: rgba(6, 182, 212, 0.95);
}
.ring-cyan-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(8, 145, 178, var(--tw-ring-opacity));
}
.ring-cyan-600\/0 {
  --tw-ring-color: rgba(8, 145, 178, 0);
}
.ring-cyan-600\/10 {
  --tw-ring-color: rgba(8, 145, 178, 0.1);
}
.ring-cyan-600\/100 {
  --tw-ring-color: rgba(8, 145, 178, 1);
}
.ring-cyan-600\/15 {
  --tw-ring-color: rgba(8, 145, 178, 0.15);
}
.ring-cyan-600\/20 {
  --tw-ring-color: rgba(8, 145, 178, 0.2);
}
.ring-cyan-600\/25 {
  --tw-ring-color: rgba(8, 145, 178, 0.25);
}
.ring-cyan-600\/30 {
  --tw-ring-color: rgba(8, 145, 178, 0.3);
}
.ring-cyan-600\/35 {
  --tw-ring-color: rgba(8, 145, 178, 0.35);
}
.ring-cyan-600\/40 {
  --tw-ring-color: rgba(8, 145, 178, 0.4);
}
.ring-cyan-600\/45 {
  --tw-ring-color: rgba(8, 145, 178, 0.45);
}
.ring-cyan-600\/5 {
  --tw-ring-color: rgba(8, 145, 178, 0.05);
}
.ring-cyan-600\/50 {
  --tw-ring-color: rgba(8, 145, 178, 0.5);
}
.ring-cyan-600\/55 {
  --tw-ring-color: rgba(8, 145, 178, 0.55);
}
.ring-cyan-600\/60 {
  --tw-ring-color: rgba(8, 145, 178, 0.6);
}
.ring-cyan-600\/65 {
  --tw-ring-color: rgba(8, 145, 178, 0.65);
}
.ring-cyan-600\/70 {
  --tw-ring-color: rgba(8, 145, 178, 0.7);
}
.ring-cyan-600\/75 {
  --tw-ring-color: rgba(8, 145, 178, 0.75);
}
.ring-cyan-600\/80 {
  --tw-ring-color: rgba(8, 145, 178, 0.8);
}
.ring-cyan-600\/85 {
  --tw-ring-color: rgba(8, 145, 178, 0.85);
}
.ring-cyan-600\/90 {
  --tw-ring-color: rgba(8, 145, 178, 0.9);
}
.ring-cyan-600\/95 {
  --tw-ring-color: rgba(8, 145, 178, 0.95);
}
.ring-cyan-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(14, 116, 144, var(--tw-ring-opacity));
}
.ring-cyan-700\/0 {
  --tw-ring-color: rgba(14, 116, 144, 0);
}
.ring-cyan-700\/10 {
  --tw-ring-color: rgba(14, 116, 144, 0.1);
}
.ring-cyan-700\/100 {
  --tw-ring-color: rgba(14, 116, 144, 1);
}
.ring-cyan-700\/15 {
  --tw-ring-color: rgba(14, 116, 144, 0.15);
}
.ring-cyan-700\/20 {
  --tw-ring-color: rgba(14, 116, 144, 0.2);
}
.ring-cyan-700\/25 {
  --tw-ring-color: rgba(14, 116, 144, 0.25);
}
.ring-cyan-700\/30 {
  --tw-ring-color: rgba(14, 116, 144, 0.3);
}
.ring-cyan-700\/35 {
  --tw-ring-color: rgba(14, 116, 144, 0.35);
}
.ring-cyan-700\/40 {
  --tw-ring-color: rgba(14, 116, 144, 0.4);
}
.ring-cyan-700\/45 {
  --tw-ring-color: rgba(14, 116, 144, 0.45);
}
.ring-cyan-700\/5 {
  --tw-ring-color: rgba(14, 116, 144, 0.05);
}
.ring-cyan-700\/50 {
  --tw-ring-color: rgba(14, 116, 144, 0.5);
}
.ring-cyan-700\/55 {
  --tw-ring-color: rgba(14, 116, 144, 0.55);
}
.ring-cyan-700\/60 {
  --tw-ring-color: rgba(14, 116, 144, 0.6);
}
.ring-cyan-700\/65 {
  --tw-ring-color: rgba(14, 116, 144, 0.65);
}
.ring-cyan-700\/70 {
  --tw-ring-color: rgba(14, 116, 144, 0.7);
}
.ring-cyan-700\/75 {
  --tw-ring-color: rgba(14, 116, 144, 0.75);
}
.ring-cyan-700\/80 {
  --tw-ring-color: rgba(14, 116, 144, 0.8);
}
.ring-cyan-700\/85 {
  --tw-ring-color: rgba(14, 116, 144, 0.85);
}
.ring-cyan-700\/90 {
  --tw-ring-color: rgba(14, 116, 144, 0.9);
}
.ring-cyan-700\/95 {
  --tw-ring-color: rgba(14, 116, 144, 0.95);
}
.ring-cyan-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(21, 94, 117, var(--tw-ring-opacity));
}
.ring-cyan-800\/0 {
  --tw-ring-color: rgba(21, 94, 117, 0);
}
.ring-cyan-800\/10 {
  --tw-ring-color: rgba(21, 94, 117, 0.1);
}
.ring-cyan-800\/100 {
  --tw-ring-color: rgba(21, 94, 117, 1);
}
.ring-cyan-800\/15 {
  --tw-ring-color: rgba(21, 94, 117, 0.15);
}
.ring-cyan-800\/20 {
  --tw-ring-color: rgba(21, 94, 117, 0.2);
}
.ring-cyan-800\/25 {
  --tw-ring-color: rgba(21, 94, 117, 0.25);
}
.ring-cyan-800\/30 {
  --tw-ring-color: rgba(21, 94, 117, 0.3);
}
.ring-cyan-800\/35 {
  --tw-ring-color: rgba(21, 94, 117, 0.35);
}
.ring-cyan-800\/40 {
  --tw-ring-color: rgba(21, 94, 117, 0.4);
}
.ring-cyan-800\/45 {
  --tw-ring-color: rgba(21, 94, 117, 0.45);
}
.ring-cyan-800\/5 {
  --tw-ring-color: rgba(21, 94, 117, 0.05);
}
.ring-cyan-800\/50 {
  --tw-ring-color: rgba(21, 94, 117, 0.5);
}
.ring-cyan-800\/55 {
  --tw-ring-color: rgba(21, 94, 117, 0.55);
}
.ring-cyan-800\/60 {
  --tw-ring-color: rgba(21, 94, 117, 0.6);
}
.ring-cyan-800\/65 {
  --tw-ring-color: rgba(21, 94, 117, 0.65);
}
.ring-cyan-800\/70 {
  --tw-ring-color: rgba(21, 94, 117, 0.7);
}
.ring-cyan-800\/75 {
  --tw-ring-color: rgba(21, 94, 117, 0.75);
}
.ring-cyan-800\/80 {
  --tw-ring-color: rgba(21, 94, 117, 0.8);
}
.ring-cyan-800\/85 {
  --tw-ring-color: rgba(21, 94, 117, 0.85);
}
.ring-cyan-800\/90 {
  --tw-ring-color: rgba(21, 94, 117, 0.9);
}
.ring-cyan-800\/95 {
  --tw-ring-color: rgba(21, 94, 117, 0.95);
}
.ring-cyan-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(22, 78, 99, var(--tw-ring-opacity));
}
.ring-cyan-900\/0 {
  --tw-ring-color: rgba(22, 78, 99, 0);
}
.ring-cyan-900\/10 {
  --tw-ring-color: rgba(22, 78, 99, 0.1);
}
.ring-cyan-900\/100 {
  --tw-ring-color: rgba(22, 78, 99, 1);
}
.ring-cyan-900\/15 {
  --tw-ring-color: rgba(22, 78, 99, 0.15);
}
.ring-cyan-900\/20 {
  --tw-ring-color: rgba(22, 78, 99, 0.2);
}
.ring-cyan-900\/25 {
  --tw-ring-color: rgba(22, 78, 99, 0.25);
}
.ring-cyan-900\/30 {
  --tw-ring-color: rgba(22, 78, 99, 0.3);
}
.ring-cyan-900\/35 {
  --tw-ring-color: rgba(22, 78, 99, 0.35);
}
.ring-cyan-900\/40 {
  --tw-ring-color: rgba(22, 78, 99, 0.4);
}
.ring-cyan-900\/45 {
  --tw-ring-color: rgba(22, 78, 99, 0.45);
}
.ring-cyan-900\/5 {
  --tw-ring-color: rgba(22, 78, 99, 0.05);
}
.ring-cyan-900\/50 {
  --tw-ring-color: rgba(22, 78, 99, 0.5);
}
.ring-cyan-900\/55 {
  --tw-ring-color: rgba(22, 78, 99, 0.55);
}
.ring-cyan-900\/60 {
  --tw-ring-color: rgba(22, 78, 99, 0.6);
}
.ring-cyan-900\/65 {
  --tw-ring-color: rgba(22, 78, 99, 0.65);
}
.ring-cyan-900\/70 {
  --tw-ring-color: rgba(22, 78, 99, 0.7);
}
.ring-cyan-900\/75 {
  --tw-ring-color: rgba(22, 78, 99, 0.75);
}
.ring-cyan-900\/80 {
  --tw-ring-color: rgba(22, 78, 99, 0.8);
}
.ring-cyan-900\/85 {
  --tw-ring-color: rgba(22, 78, 99, 0.85);
}
.ring-cyan-900\/90 {
  --tw-ring-color: rgba(22, 78, 99, 0.9);
}
.ring-cyan-900\/95 {
  --tw-ring-color: rgba(22, 78, 99, 0.95);
}
.ring-cyan-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(8, 51, 68, var(--tw-ring-opacity));
}
.ring-cyan-950\/0 {
  --tw-ring-color: rgba(8, 51, 68, 0);
}
.ring-cyan-950\/10 {
  --tw-ring-color: rgba(8, 51, 68, 0.1);
}
.ring-cyan-950\/100 {
  --tw-ring-color: rgba(8, 51, 68, 1);
}
.ring-cyan-950\/15 {
  --tw-ring-color: rgba(8, 51, 68, 0.15);
}
.ring-cyan-950\/20 {
  --tw-ring-color: rgba(8, 51, 68, 0.2);
}
.ring-cyan-950\/25 {
  --tw-ring-color: rgba(8, 51, 68, 0.25);
}
.ring-cyan-950\/30 {
  --tw-ring-color: rgba(8, 51, 68, 0.3);
}
.ring-cyan-950\/35 {
  --tw-ring-color: rgba(8, 51, 68, 0.35);
}
.ring-cyan-950\/40 {
  --tw-ring-color: rgba(8, 51, 68, 0.4);
}
.ring-cyan-950\/45 {
  --tw-ring-color: rgba(8, 51, 68, 0.45);
}
.ring-cyan-950\/5 {
  --tw-ring-color: rgba(8, 51, 68, 0.05);
}
.ring-cyan-950\/50 {
  --tw-ring-color: rgba(8, 51, 68, 0.5);
}
.ring-cyan-950\/55 {
  --tw-ring-color: rgba(8, 51, 68, 0.55);
}
.ring-cyan-950\/60 {
  --tw-ring-color: rgba(8, 51, 68, 0.6);
}
.ring-cyan-950\/65 {
  --tw-ring-color: rgba(8, 51, 68, 0.65);
}
.ring-cyan-950\/70 {
  --tw-ring-color: rgba(8, 51, 68, 0.7);
}
.ring-cyan-950\/75 {
  --tw-ring-color: rgba(8, 51, 68, 0.75);
}
.ring-cyan-950\/80 {
  --tw-ring-color: rgba(8, 51, 68, 0.8);
}
.ring-cyan-950\/85 {
  --tw-ring-color: rgba(8, 51, 68, 0.85);
}
.ring-cyan-950\/90 {
  --tw-ring-color: rgba(8, 51, 68, 0.9);
}
.ring-cyan-950\/95 {
  --tw-ring-color: rgba(8, 51, 68, 0.95);
}
.ring-emerald-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity));
}
.ring-emerald-100\/0 {
  --tw-ring-color: rgba(209, 250, 229, 0);
}
.ring-emerald-100\/10 {
  --tw-ring-color: rgba(209, 250, 229, 0.1);
}
.ring-emerald-100\/100 {
  --tw-ring-color: rgba(209, 250, 229, 1);
}
.ring-emerald-100\/15 {
  --tw-ring-color: rgba(209, 250, 229, 0.15);
}
.ring-emerald-100\/20 {
  --tw-ring-color: rgba(209, 250, 229, 0.2);
}
.ring-emerald-100\/25 {
  --tw-ring-color: rgba(209, 250, 229, 0.25);
}
.ring-emerald-100\/30 {
  --tw-ring-color: rgba(209, 250, 229, 0.3);
}
.ring-emerald-100\/35 {
  --tw-ring-color: rgba(209, 250, 229, 0.35);
}
.ring-emerald-100\/40 {
  --tw-ring-color: rgba(209, 250, 229, 0.4);
}
.ring-emerald-100\/45 {
  --tw-ring-color: rgba(209, 250, 229, 0.45);
}
.ring-emerald-100\/5 {
  --tw-ring-color: rgba(209, 250, 229, 0.05);
}
.ring-emerald-100\/50 {
  --tw-ring-color: rgba(209, 250, 229, 0.5);
}
.ring-emerald-100\/55 {
  --tw-ring-color: rgba(209, 250, 229, 0.55);
}
.ring-emerald-100\/60 {
  --tw-ring-color: rgba(209, 250, 229, 0.6);
}
.ring-emerald-100\/65 {
  --tw-ring-color: rgba(209, 250, 229, 0.65);
}
.ring-emerald-100\/70 {
  --tw-ring-color: rgba(209, 250, 229, 0.7);
}
.ring-emerald-100\/75 {
  --tw-ring-color: rgba(209, 250, 229, 0.75);
}
.ring-emerald-100\/80 {
  --tw-ring-color: rgba(209, 250, 229, 0.8);
}
.ring-emerald-100\/85 {
  --tw-ring-color: rgba(209, 250, 229, 0.85);
}
.ring-emerald-100\/90 {
  --tw-ring-color: rgba(209, 250, 229, 0.9);
}
.ring-emerald-100\/95 {
  --tw-ring-color: rgba(209, 250, 229, 0.95);
}
.ring-emerald-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity));
}
.ring-emerald-200\/0 {
  --tw-ring-color: rgba(167, 243, 208, 0);
}
.ring-emerald-200\/10 {
  --tw-ring-color: rgba(167, 243, 208, 0.1);
}
.ring-emerald-200\/100 {
  --tw-ring-color: rgba(167, 243, 208, 1);
}
.ring-emerald-200\/15 {
  --tw-ring-color: rgba(167, 243, 208, 0.15);
}
.ring-emerald-200\/20 {
  --tw-ring-color: rgba(167, 243, 208, 0.2);
}
.ring-emerald-200\/25 {
  --tw-ring-color: rgba(167, 243, 208, 0.25);
}
.ring-emerald-200\/30 {
  --tw-ring-color: rgba(167, 243, 208, 0.3);
}
.ring-emerald-200\/35 {
  --tw-ring-color: rgba(167, 243, 208, 0.35);
}
.ring-emerald-200\/40 {
  --tw-ring-color: rgba(167, 243, 208, 0.4);
}
.ring-emerald-200\/45 {
  --tw-ring-color: rgba(167, 243, 208, 0.45);
}
.ring-emerald-200\/5 {
  --tw-ring-color: rgba(167, 243, 208, 0.05);
}
.ring-emerald-200\/50 {
  --tw-ring-color: rgba(167, 243, 208, 0.5);
}
.ring-emerald-200\/55 {
  --tw-ring-color: rgba(167, 243, 208, 0.55);
}
.ring-emerald-200\/60 {
  --tw-ring-color: rgba(167, 243, 208, 0.6);
}
.ring-emerald-200\/65 {
  --tw-ring-color: rgba(167, 243, 208, 0.65);
}
.ring-emerald-200\/70 {
  --tw-ring-color: rgba(167, 243, 208, 0.7);
}
.ring-emerald-200\/75 {
  --tw-ring-color: rgba(167, 243, 208, 0.75);
}
.ring-emerald-200\/80 {
  --tw-ring-color: rgba(167, 243, 208, 0.8);
}
.ring-emerald-200\/85 {
  --tw-ring-color: rgba(167, 243, 208, 0.85);
}
.ring-emerald-200\/90 {
  --tw-ring-color: rgba(167, 243, 208, 0.9);
}
.ring-emerald-200\/95 {
  --tw-ring-color: rgba(167, 243, 208, 0.95);
}
.ring-emerald-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity));
}
.ring-emerald-300\/0 {
  --tw-ring-color: rgba(110, 231, 183, 0);
}
.ring-emerald-300\/10 {
  --tw-ring-color: rgba(110, 231, 183, 0.1);
}
.ring-emerald-300\/100 {
  --tw-ring-color: rgba(110, 231, 183, 1);
}
.ring-emerald-300\/15 {
  --tw-ring-color: rgba(110, 231, 183, 0.15);
}
.ring-emerald-300\/20 {
  --tw-ring-color: rgba(110, 231, 183, 0.2);
}
.ring-emerald-300\/25 {
  --tw-ring-color: rgba(110, 231, 183, 0.25);
}
.ring-emerald-300\/30 {
  --tw-ring-color: rgba(110, 231, 183, 0.3);
}
.ring-emerald-300\/35 {
  --tw-ring-color: rgba(110, 231, 183, 0.35);
}
.ring-emerald-300\/40 {
  --tw-ring-color: rgba(110, 231, 183, 0.4);
}
.ring-emerald-300\/45 {
  --tw-ring-color: rgba(110, 231, 183, 0.45);
}
.ring-emerald-300\/5 {
  --tw-ring-color: rgba(110, 231, 183, 0.05);
}
.ring-emerald-300\/50 {
  --tw-ring-color: rgba(110, 231, 183, 0.5);
}
.ring-emerald-300\/55 {
  --tw-ring-color: rgba(110, 231, 183, 0.55);
}
.ring-emerald-300\/60 {
  --tw-ring-color: rgba(110, 231, 183, 0.6);
}
.ring-emerald-300\/65 {
  --tw-ring-color: rgba(110, 231, 183, 0.65);
}
.ring-emerald-300\/70 {
  --tw-ring-color: rgba(110, 231, 183, 0.7);
}
.ring-emerald-300\/75 {
  --tw-ring-color: rgba(110, 231, 183, 0.75);
}
.ring-emerald-300\/80 {
  --tw-ring-color: rgba(110, 231, 183, 0.8);
}
.ring-emerald-300\/85 {
  --tw-ring-color: rgba(110, 231, 183, 0.85);
}
.ring-emerald-300\/90 {
  --tw-ring-color: rgba(110, 231, 183, 0.9);
}
.ring-emerald-300\/95 {
  --tw-ring-color: rgba(110, 231, 183, 0.95);
}
.ring-emerald-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity));
}
.ring-emerald-400\/0 {
  --tw-ring-color: rgba(52, 211, 153, 0);
}
.ring-emerald-400\/10 {
  --tw-ring-color: rgba(52, 211, 153, 0.1);
}
.ring-emerald-400\/100 {
  --tw-ring-color: rgba(52, 211, 153, 1);
}
.ring-emerald-400\/15 {
  --tw-ring-color: rgba(52, 211, 153, 0.15);
}
.ring-emerald-400\/20 {
  --tw-ring-color: rgba(52, 211, 153, 0.2);
}
.ring-emerald-400\/25 {
  --tw-ring-color: rgba(52, 211, 153, 0.25);
}
.ring-emerald-400\/30 {
  --tw-ring-color: rgba(52, 211, 153, 0.3);
}
.ring-emerald-400\/35 {
  --tw-ring-color: rgba(52, 211, 153, 0.35);
}
.ring-emerald-400\/40 {
  --tw-ring-color: rgba(52, 211, 153, 0.4);
}
.ring-emerald-400\/45 {
  --tw-ring-color: rgba(52, 211, 153, 0.45);
}
.ring-emerald-400\/5 {
  --tw-ring-color: rgba(52, 211, 153, 0.05);
}
.ring-emerald-400\/50 {
  --tw-ring-color: rgba(52, 211, 153, 0.5);
}
.ring-emerald-400\/55 {
  --tw-ring-color: rgba(52, 211, 153, 0.55);
}
.ring-emerald-400\/60 {
  --tw-ring-color: rgba(52, 211, 153, 0.6);
}
.ring-emerald-400\/65 {
  --tw-ring-color: rgba(52, 211, 153, 0.65);
}
.ring-emerald-400\/70 {
  --tw-ring-color: rgba(52, 211, 153, 0.7);
}
.ring-emerald-400\/75 {
  --tw-ring-color: rgba(52, 211, 153, 0.75);
}
.ring-emerald-400\/80 {
  --tw-ring-color: rgba(52, 211, 153, 0.8);
}
.ring-emerald-400\/85 {
  --tw-ring-color: rgba(52, 211, 153, 0.85);
}
.ring-emerald-400\/90 {
  --tw-ring-color: rgba(52, 211, 153, 0.9);
}
.ring-emerald-400\/95 {
  --tw-ring-color: rgba(52, 211, 153, 0.95);
}
.ring-emerald-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity));
}
.ring-emerald-50\/0 {
  --tw-ring-color: rgba(236, 253, 245, 0);
}
.ring-emerald-50\/10 {
  --tw-ring-color: rgba(236, 253, 245, 0.1);
}
.ring-emerald-50\/100 {
  --tw-ring-color: rgba(236, 253, 245, 1);
}
.ring-emerald-50\/15 {
  --tw-ring-color: rgba(236, 253, 245, 0.15);
}
.ring-emerald-50\/20 {
  --tw-ring-color: rgba(236, 253, 245, 0.2);
}
.ring-emerald-50\/25 {
  --tw-ring-color: rgba(236, 253, 245, 0.25);
}
.ring-emerald-50\/30 {
  --tw-ring-color: rgba(236, 253, 245, 0.3);
}
.ring-emerald-50\/35 {
  --tw-ring-color: rgba(236, 253, 245, 0.35);
}
.ring-emerald-50\/40 {
  --tw-ring-color: rgba(236, 253, 245, 0.4);
}
.ring-emerald-50\/45 {
  --tw-ring-color: rgba(236, 253, 245, 0.45);
}
.ring-emerald-50\/5 {
  --tw-ring-color: rgba(236, 253, 245, 0.05);
}
.ring-emerald-50\/50 {
  --tw-ring-color: rgba(236, 253, 245, 0.5);
}
.ring-emerald-50\/55 {
  --tw-ring-color: rgba(236, 253, 245, 0.55);
}
.ring-emerald-50\/60 {
  --tw-ring-color: rgba(236, 253, 245, 0.6);
}
.ring-emerald-50\/65 {
  --tw-ring-color: rgba(236, 253, 245, 0.65);
}
.ring-emerald-50\/70 {
  --tw-ring-color: rgba(236, 253, 245, 0.7);
}
.ring-emerald-50\/75 {
  --tw-ring-color: rgba(236, 253, 245, 0.75);
}
.ring-emerald-50\/80 {
  --tw-ring-color: rgba(236, 253, 245, 0.8);
}
.ring-emerald-50\/85 {
  --tw-ring-color: rgba(236, 253, 245, 0.85);
}
.ring-emerald-50\/90 {
  --tw-ring-color: rgba(236, 253, 245, 0.9);
}
.ring-emerald-50\/95 {
  --tw-ring-color: rgba(236, 253, 245, 0.95);
}
.ring-emerald-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity));
}
.ring-emerald-500\/0 {
  --tw-ring-color: rgba(16, 185, 129, 0);
}
.ring-emerald-500\/10 {
  --tw-ring-color: rgba(16, 185, 129, 0.1);
}
.ring-emerald-500\/100 {
  --tw-ring-color: rgba(16, 185, 129, 1);
}
.ring-emerald-500\/15 {
  --tw-ring-color: rgba(16, 185, 129, 0.15);
}
.ring-emerald-500\/20 {
  --tw-ring-color: rgba(16, 185, 129, 0.2);
}
.ring-emerald-500\/25 {
  --tw-ring-color: rgba(16, 185, 129, 0.25);
}
.ring-emerald-500\/30 {
  --tw-ring-color: rgba(16, 185, 129, 0.3);
}
.ring-emerald-500\/35 {
  --tw-ring-color: rgba(16, 185, 129, 0.35);
}
.ring-emerald-500\/40 {
  --tw-ring-color: rgba(16, 185, 129, 0.4);
}
.ring-emerald-500\/45 {
  --tw-ring-color: rgba(16, 185, 129, 0.45);
}
.ring-emerald-500\/5 {
  --tw-ring-color: rgba(16, 185, 129, 0.05);
}
.ring-emerald-500\/50 {
  --tw-ring-color: rgba(16, 185, 129, 0.5);
}
.ring-emerald-500\/55 {
  --tw-ring-color: rgba(16, 185, 129, 0.55);
}
.ring-emerald-500\/60 {
  --tw-ring-color: rgba(16, 185, 129, 0.6);
}
.ring-emerald-500\/65 {
  --tw-ring-color: rgba(16, 185, 129, 0.65);
}
.ring-emerald-500\/70 {
  --tw-ring-color: rgba(16, 185, 129, 0.7);
}
.ring-emerald-500\/75 {
  --tw-ring-color: rgba(16, 185, 129, 0.75);
}
.ring-emerald-500\/80 {
  --tw-ring-color: rgba(16, 185, 129, 0.8);
}
.ring-emerald-500\/85 {
  --tw-ring-color: rgba(16, 185, 129, 0.85);
}
.ring-emerald-500\/90 {
  --tw-ring-color: rgba(16, 185, 129, 0.9);
}
.ring-emerald-500\/95 {
  --tw-ring-color: rgba(16, 185, 129, 0.95);
}
.ring-emerald-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity));
}
.ring-emerald-600\/0 {
  --tw-ring-color: rgba(5, 150, 105, 0);
}
.ring-emerald-600\/10 {
  --tw-ring-color: rgba(5, 150, 105, 0.1);
}
.ring-emerald-600\/100 {
  --tw-ring-color: rgba(5, 150, 105, 1);
}
.ring-emerald-600\/15 {
  --tw-ring-color: rgba(5, 150, 105, 0.15);
}
.ring-emerald-600\/20 {
  --tw-ring-color: rgba(5, 150, 105, 0.2);
}
.ring-emerald-600\/25 {
  --tw-ring-color: rgba(5, 150, 105, 0.25);
}
.ring-emerald-600\/30 {
  --tw-ring-color: rgba(5, 150, 105, 0.3);
}
.ring-emerald-600\/35 {
  --tw-ring-color: rgba(5, 150, 105, 0.35);
}
.ring-emerald-600\/40 {
  --tw-ring-color: rgba(5, 150, 105, 0.4);
}
.ring-emerald-600\/45 {
  --tw-ring-color: rgba(5, 150, 105, 0.45);
}
.ring-emerald-600\/5 {
  --tw-ring-color: rgba(5, 150, 105, 0.05);
}
.ring-emerald-600\/50 {
  --tw-ring-color: rgba(5, 150, 105, 0.5);
}
.ring-emerald-600\/55 {
  --tw-ring-color: rgba(5, 150, 105, 0.55);
}
.ring-emerald-600\/60 {
  --tw-ring-color: rgba(5, 150, 105, 0.6);
}
.ring-emerald-600\/65 {
  --tw-ring-color: rgba(5, 150, 105, 0.65);
}
.ring-emerald-600\/70 {
  --tw-ring-color: rgba(5, 150, 105, 0.7);
}
.ring-emerald-600\/75 {
  --tw-ring-color: rgba(5, 150, 105, 0.75);
}
.ring-emerald-600\/80 {
  --tw-ring-color: rgba(5, 150, 105, 0.8);
}
.ring-emerald-600\/85 {
  --tw-ring-color: rgba(5, 150, 105, 0.85);
}
.ring-emerald-600\/90 {
  --tw-ring-color: rgba(5, 150, 105, 0.9);
}
.ring-emerald-600\/95 {
  --tw-ring-color: rgba(5, 150, 105, 0.95);
}
.ring-emerald-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity));
}
.ring-emerald-700\/0 {
  --tw-ring-color: rgba(4, 120, 87, 0);
}
.ring-emerald-700\/10 {
  --tw-ring-color: rgba(4, 120, 87, 0.1);
}
.ring-emerald-700\/100 {
  --tw-ring-color: rgba(4, 120, 87, 1);
}
.ring-emerald-700\/15 {
  --tw-ring-color: rgba(4, 120, 87, 0.15);
}
.ring-emerald-700\/20 {
  --tw-ring-color: rgba(4, 120, 87, 0.2);
}
.ring-emerald-700\/25 {
  --tw-ring-color: rgba(4, 120, 87, 0.25);
}
.ring-emerald-700\/30 {
  --tw-ring-color: rgba(4, 120, 87, 0.3);
}
.ring-emerald-700\/35 {
  --tw-ring-color: rgba(4, 120, 87, 0.35);
}
.ring-emerald-700\/40 {
  --tw-ring-color: rgba(4, 120, 87, 0.4);
}
.ring-emerald-700\/45 {
  --tw-ring-color: rgba(4, 120, 87, 0.45);
}
.ring-emerald-700\/5 {
  --tw-ring-color: rgba(4, 120, 87, 0.05);
}
.ring-emerald-700\/50 {
  --tw-ring-color: rgba(4, 120, 87, 0.5);
}
.ring-emerald-700\/55 {
  --tw-ring-color: rgba(4, 120, 87, 0.55);
}
.ring-emerald-700\/60 {
  --tw-ring-color: rgba(4, 120, 87, 0.6);
}
.ring-emerald-700\/65 {
  --tw-ring-color: rgba(4, 120, 87, 0.65);
}
.ring-emerald-700\/70 {
  --tw-ring-color: rgba(4, 120, 87, 0.7);
}
.ring-emerald-700\/75 {
  --tw-ring-color: rgba(4, 120, 87, 0.75);
}
.ring-emerald-700\/80 {
  --tw-ring-color: rgba(4, 120, 87, 0.8);
}
.ring-emerald-700\/85 {
  --tw-ring-color: rgba(4, 120, 87, 0.85);
}
.ring-emerald-700\/90 {
  --tw-ring-color: rgba(4, 120, 87, 0.9);
}
.ring-emerald-700\/95 {
  --tw-ring-color: rgba(4, 120, 87, 0.95);
}
.ring-emerald-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity));
}
.ring-emerald-800\/0 {
  --tw-ring-color: rgba(6, 95, 70, 0);
}
.ring-emerald-800\/10 {
  --tw-ring-color: rgba(6, 95, 70, 0.1);
}
.ring-emerald-800\/100 {
  --tw-ring-color: rgba(6, 95, 70, 1);
}
.ring-emerald-800\/15 {
  --tw-ring-color: rgba(6, 95, 70, 0.15);
}
.ring-emerald-800\/20 {
  --tw-ring-color: rgba(6, 95, 70, 0.2);
}
.ring-emerald-800\/25 {
  --tw-ring-color: rgba(6, 95, 70, 0.25);
}
.ring-emerald-800\/30 {
  --tw-ring-color: rgba(6, 95, 70, 0.3);
}
.ring-emerald-800\/35 {
  --tw-ring-color: rgba(6, 95, 70, 0.35);
}
.ring-emerald-800\/40 {
  --tw-ring-color: rgba(6, 95, 70, 0.4);
}
.ring-emerald-800\/45 {
  --tw-ring-color: rgba(6, 95, 70, 0.45);
}
.ring-emerald-800\/5 {
  --tw-ring-color: rgba(6, 95, 70, 0.05);
}
.ring-emerald-800\/50 {
  --tw-ring-color: rgba(6, 95, 70, 0.5);
}
.ring-emerald-800\/55 {
  --tw-ring-color: rgba(6, 95, 70, 0.55);
}
.ring-emerald-800\/60 {
  --tw-ring-color: rgba(6, 95, 70, 0.6);
}
.ring-emerald-800\/65 {
  --tw-ring-color: rgba(6, 95, 70, 0.65);
}
.ring-emerald-800\/70 {
  --tw-ring-color: rgba(6, 95, 70, 0.7);
}
.ring-emerald-800\/75 {
  --tw-ring-color: rgba(6, 95, 70, 0.75);
}
.ring-emerald-800\/80 {
  --tw-ring-color: rgba(6, 95, 70, 0.8);
}
.ring-emerald-800\/85 {
  --tw-ring-color: rgba(6, 95, 70, 0.85);
}
.ring-emerald-800\/90 {
  --tw-ring-color: rgba(6, 95, 70, 0.9);
}
.ring-emerald-800\/95 {
  --tw-ring-color: rgba(6, 95, 70, 0.95);
}
.ring-emerald-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity));
}
.ring-emerald-900\/0 {
  --tw-ring-color: rgba(6, 78, 59, 0);
}
.ring-emerald-900\/10 {
  --tw-ring-color: rgba(6, 78, 59, 0.1);
}
.ring-emerald-900\/100 {
  --tw-ring-color: rgba(6, 78, 59, 1);
}
.ring-emerald-900\/15 {
  --tw-ring-color: rgba(6, 78, 59, 0.15);
}
.ring-emerald-900\/20 {
  --tw-ring-color: rgba(6, 78, 59, 0.2);
}
.ring-emerald-900\/25 {
  --tw-ring-color: rgba(6, 78, 59, 0.25);
}
.ring-emerald-900\/30 {
  --tw-ring-color: rgba(6, 78, 59, 0.3);
}
.ring-emerald-900\/35 {
  --tw-ring-color: rgba(6, 78, 59, 0.35);
}
.ring-emerald-900\/40 {
  --tw-ring-color: rgba(6, 78, 59, 0.4);
}
.ring-emerald-900\/45 {
  --tw-ring-color: rgba(6, 78, 59, 0.45);
}
.ring-emerald-900\/5 {
  --tw-ring-color: rgba(6, 78, 59, 0.05);
}
.ring-emerald-900\/50 {
  --tw-ring-color: rgba(6, 78, 59, 0.5);
}
.ring-emerald-900\/55 {
  --tw-ring-color: rgba(6, 78, 59, 0.55);
}
.ring-emerald-900\/60 {
  --tw-ring-color: rgba(6, 78, 59, 0.6);
}
.ring-emerald-900\/65 {
  --tw-ring-color: rgba(6, 78, 59, 0.65);
}
.ring-emerald-900\/70 {
  --tw-ring-color: rgba(6, 78, 59, 0.7);
}
.ring-emerald-900\/75 {
  --tw-ring-color: rgba(6, 78, 59, 0.75);
}
.ring-emerald-900\/80 {
  --tw-ring-color: rgba(6, 78, 59, 0.8);
}
.ring-emerald-900\/85 {
  --tw-ring-color: rgba(6, 78, 59, 0.85);
}
.ring-emerald-900\/90 {
  --tw-ring-color: rgba(6, 78, 59, 0.9);
}
.ring-emerald-900\/95 {
  --tw-ring-color: rgba(6, 78, 59, 0.95);
}
.ring-emerald-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(2, 44, 34, var(--tw-ring-opacity));
}
.ring-emerald-950\/0 {
  --tw-ring-color: rgba(2, 44, 34, 0);
}
.ring-emerald-950\/10 {
  --tw-ring-color: rgba(2, 44, 34, 0.1);
}
.ring-emerald-950\/100 {
  --tw-ring-color: rgba(2, 44, 34, 1);
}
.ring-emerald-950\/15 {
  --tw-ring-color: rgba(2, 44, 34, 0.15);
}
.ring-emerald-950\/20 {
  --tw-ring-color: rgba(2, 44, 34, 0.2);
}
.ring-emerald-950\/25 {
  --tw-ring-color: rgba(2, 44, 34, 0.25);
}
.ring-emerald-950\/30 {
  --tw-ring-color: rgba(2, 44, 34, 0.3);
}
.ring-emerald-950\/35 {
  --tw-ring-color: rgba(2, 44, 34, 0.35);
}
.ring-emerald-950\/40 {
  --tw-ring-color: rgba(2, 44, 34, 0.4);
}
.ring-emerald-950\/45 {
  --tw-ring-color: rgba(2, 44, 34, 0.45);
}
.ring-emerald-950\/5 {
  --tw-ring-color: rgba(2, 44, 34, 0.05);
}
.ring-emerald-950\/50 {
  --tw-ring-color: rgba(2, 44, 34, 0.5);
}
.ring-emerald-950\/55 {
  --tw-ring-color: rgba(2, 44, 34, 0.55);
}
.ring-emerald-950\/60 {
  --tw-ring-color: rgba(2, 44, 34, 0.6);
}
.ring-emerald-950\/65 {
  --tw-ring-color: rgba(2, 44, 34, 0.65);
}
.ring-emerald-950\/70 {
  --tw-ring-color: rgba(2, 44, 34, 0.7);
}
.ring-emerald-950\/75 {
  --tw-ring-color: rgba(2, 44, 34, 0.75);
}
.ring-emerald-950\/80 {
  --tw-ring-color: rgba(2, 44, 34, 0.8);
}
.ring-emerald-950\/85 {
  --tw-ring-color: rgba(2, 44, 34, 0.85);
}
.ring-emerald-950\/90 {
  --tw-ring-color: rgba(2, 44, 34, 0.9);
}
.ring-emerald-950\/95 {
  --tw-ring-color: rgba(2, 44, 34, 0.95);
}
.ring-error {
  --tw-ring-opacity: 1;
  --tw-ring-color: var(--fallback-er,oklch(var(--er)/var(--tw-ring-opacity)));
}
.ring-error-content {
  --tw-ring-opacity: 1;
  --tw-ring-color: var(--fallback-erc,oklch(var(--erc)/var(--tw-ring-opacity)));
}
.ring-error-content\/0 {
  --tw-ring-color: var(--fallback-erc,oklch(var(--erc)/0));
}
.ring-error-content\/10 {
  --tw-ring-color: var(--fallback-erc,oklch(var(--erc)/0.1));
}
.ring-error-content\/100 {
  --tw-ring-color: var(--fallback-erc,oklch(var(--erc)/1));
}
.ring-error-content\/15 {
  --tw-ring-color: var(--fallback-erc,oklch(var(--erc)/0.15));
}
.ring-error-content\/20 {
  --tw-ring-color: var(--fallback-erc,oklch(var(--erc)/0.2));
}
.ring-error-content\/25 {
  --tw-ring-color: var(--fallback-erc,oklch(var(--erc)/0.25));
}
.ring-error-content\/30 {
  --tw-ring-color: var(--fallback-erc,oklch(var(--erc)/0.3));
}
.ring-error-content\/35 {
  --tw-ring-color: var(--fallback-erc,oklch(var(--erc)/0.35));
}
.ring-error-content\/40 {
  --tw-ring-color: var(--fallback-erc,oklch(var(--erc)/0.4));
}
.ring-error-content\/45 {
  --tw-ring-color: var(--fallback-erc,oklch(var(--erc)/0.45));
}
.ring-error-content\/5 {
  --tw-ring-color: var(--fallback-erc,oklch(var(--erc)/0.05));
}
.ring-error-content\/50 {
  --tw-ring-color: var(--fallback-erc,oklch(var(--erc)/0.5));
}
.ring-error-content\/55 {
  --tw-ring-color: var(--fallback-erc,oklch(var(--erc)/0.55));
}
.ring-error-content\/60 {
  --tw-ring-color: var(--fallback-erc,oklch(var(--erc)/0.6));
}
.ring-error-content\/65 {
  --tw-ring-color: var(--fallback-erc,oklch(var(--erc)/0.65));
}
.ring-error-content\/70 {
  --tw-ring-color: var(--fallback-erc,oklch(var(--erc)/0.7));
}
.ring-error-content\/75 {
  --tw-ring-color: var(--fallback-erc,oklch(var(--erc)/0.75));
}
.ring-error-content\/80 {
  --tw-ring-color: var(--fallback-erc,oklch(var(--erc)/0.8));
}
.ring-error-content\/85 {
  --tw-ring-color: var(--fallback-erc,oklch(var(--erc)/0.85));
}
.ring-error-content\/90 {
  --tw-ring-color: var(--fallback-erc,oklch(var(--erc)/0.9));
}
.ring-error-content\/95 {
  --tw-ring-color: var(--fallback-erc,oklch(var(--erc)/0.95));
}
.ring-error\/0 {
  --tw-ring-color: var(--fallback-er,oklch(var(--er)/0));
}
.ring-error\/10 {
  --tw-ring-color: var(--fallback-er,oklch(var(--er)/0.1));
}
.ring-error\/100 {
  --tw-ring-color: var(--fallback-er,oklch(var(--er)/1));
}
.ring-error\/15 {
  --tw-ring-color: var(--fallback-er,oklch(var(--er)/0.15));
}
.ring-error\/20 {
  --tw-ring-color: var(--fallback-er,oklch(var(--er)/0.2));
}
.ring-error\/25 {
  --tw-ring-color: var(--fallback-er,oklch(var(--er)/0.25));
}
.ring-error\/30 {
  --tw-ring-color: var(--fallback-er,oklch(var(--er)/0.3));
}
.ring-error\/35 {
  --tw-ring-color: var(--fallback-er,oklch(var(--er)/0.35));
}
.ring-error\/40 {
  --tw-ring-color: var(--fallback-er,oklch(var(--er)/0.4));
}
.ring-error\/45 {
  --tw-ring-color: var(--fallback-er,oklch(var(--er)/0.45));
}
.ring-error\/5 {
  --tw-ring-color: var(--fallback-er,oklch(var(--er)/0.05));
}
.ring-error\/50 {
  --tw-ring-color: var(--fallback-er,oklch(var(--er)/0.5));
}
.ring-error\/55 {
  --tw-ring-color: var(--fallback-er,oklch(var(--er)/0.55));
}
.ring-error\/60 {
  --tw-ring-color: var(--fallback-er,oklch(var(--er)/0.6));
}
.ring-error\/65 {
  --tw-ring-color: var(--fallback-er,oklch(var(--er)/0.65));
}
.ring-error\/70 {
  --tw-ring-color: var(--fallback-er,oklch(var(--er)/0.7));
}
.ring-error\/75 {
  --tw-ring-color: var(--fallback-er,oklch(var(--er)/0.75));
}
.ring-error\/80 {
  --tw-ring-color: var(--fallback-er,oklch(var(--er)/0.8));
}
.ring-error\/85 {
  --tw-ring-color: var(--fallback-er,oklch(var(--er)/0.85));
}
.ring-error\/90 {
  --tw-ring-color: var(--fallback-er,oklch(var(--er)/0.9));
}
.ring-error\/95 {
  --tw-ring-color: var(--fallback-er,oklch(var(--er)/0.95));
}
.ring-fuchsia-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(250, 232, 255, var(--tw-ring-opacity));
}
.ring-fuchsia-100\/0 {
  --tw-ring-color: rgba(250, 232, 255, 0);
}
.ring-fuchsia-100\/10 {
  --tw-ring-color: rgba(250, 232, 255, 0.1);
}
.ring-fuchsia-100\/100 {
  --tw-ring-color: rgba(250, 232, 255, 1);
}
.ring-fuchsia-100\/15 {
  --tw-ring-color: rgba(250, 232, 255, 0.15);
}
.ring-fuchsia-100\/20 {
  --tw-ring-color: rgba(250, 232, 255, 0.2);
}
.ring-fuchsia-100\/25 {
  --tw-ring-color: rgba(250, 232, 255, 0.25);
}
.ring-fuchsia-100\/30 {
  --tw-ring-color: rgba(250, 232, 255, 0.3);
}
.ring-fuchsia-100\/35 {
  --tw-ring-color: rgba(250, 232, 255, 0.35);
}
.ring-fuchsia-100\/40 {
  --tw-ring-color: rgba(250, 232, 255, 0.4);
}
.ring-fuchsia-100\/45 {
  --tw-ring-color: rgba(250, 232, 255, 0.45);
}
.ring-fuchsia-100\/5 {
  --tw-ring-color: rgba(250, 232, 255, 0.05);
}
.ring-fuchsia-100\/50 {
  --tw-ring-color: rgba(250, 232, 255, 0.5);
}
.ring-fuchsia-100\/55 {
  --tw-ring-color: rgba(250, 232, 255, 0.55);
}
.ring-fuchsia-100\/60 {
  --tw-ring-color: rgba(250, 232, 255, 0.6);
}
.ring-fuchsia-100\/65 {
  --tw-ring-color: rgba(250, 232, 255, 0.65);
}
.ring-fuchsia-100\/70 {
  --tw-ring-color: rgba(250, 232, 255, 0.7);
}
.ring-fuchsia-100\/75 {
  --tw-ring-color: rgba(250, 232, 255, 0.75);
}
.ring-fuchsia-100\/80 {
  --tw-ring-color: rgba(250, 232, 255, 0.8);
}
.ring-fuchsia-100\/85 {
  --tw-ring-color: rgba(250, 232, 255, 0.85);
}
.ring-fuchsia-100\/90 {
  --tw-ring-color: rgba(250, 232, 255, 0.9);
}
.ring-fuchsia-100\/95 {
  --tw-ring-color: rgba(250, 232, 255, 0.95);
}
.ring-fuchsia-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(245, 208, 254, var(--tw-ring-opacity));
}
.ring-fuchsia-200\/0 {
  --tw-ring-color: rgba(245, 208, 254, 0);
}
.ring-fuchsia-200\/10 {
  --tw-ring-color: rgba(245, 208, 254, 0.1);
}
.ring-fuchsia-200\/100 {
  --tw-ring-color: rgba(245, 208, 254, 1);
}
.ring-fuchsia-200\/15 {
  --tw-ring-color: rgba(245, 208, 254, 0.15);
}
.ring-fuchsia-200\/20 {
  --tw-ring-color: rgba(245, 208, 254, 0.2);
}
.ring-fuchsia-200\/25 {
  --tw-ring-color: rgba(245, 208, 254, 0.25);
}
.ring-fuchsia-200\/30 {
  --tw-ring-color: rgba(245, 208, 254, 0.3);
}
.ring-fuchsia-200\/35 {
  --tw-ring-color: rgba(245, 208, 254, 0.35);
}
.ring-fuchsia-200\/40 {
  --tw-ring-color: rgba(245, 208, 254, 0.4);
}
.ring-fuchsia-200\/45 {
  --tw-ring-color: rgba(245, 208, 254, 0.45);
}
.ring-fuchsia-200\/5 {
  --tw-ring-color: rgba(245, 208, 254, 0.05);
}
.ring-fuchsia-200\/50 {
  --tw-ring-color: rgba(245, 208, 254, 0.5);
}
.ring-fuchsia-200\/55 {
  --tw-ring-color: rgba(245, 208, 254, 0.55);
}
.ring-fuchsia-200\/60 {
  --tw-ring-color: rgba(245, 208, 254, 0.6);
}
.ring-fuchsia-200\/65 {
  --tw-ring-color: rgba(245, 208, 254, 0.65);
}
.ring-fuchsia-200\/70 {
  --tw-ring-color: rgba(245, 208, 254, 0.7);
}
.ring-fuchsia-200\/75 {
  --tw-ring-color: rgba(245, 208, 254, 0.75);
}
.ring-fuchsia-200\/80 {
  --tw-ring-color: rgba(245, 208, 254, 0.8);
}
.ring-fuchsia-200\/85 {
  --tw-ring-color: rgba(245, 208, 254, 0.85);
}
.ring-fuchsia-200\/90 {
  --tw-ring-color: rgba(245, 208, 254, 0.9);
}
.ring-fuchsia-200\/95 {
  --tw-ring-color: rgba(245, 208, 254, 0.95);
}
.ring-fuchsia-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(240, 171, 252, var(--tw-ring-opacity));
}
.ring-fuchsia-300\/0 {
  --tw-ring-color: rgba(240, 171, 252, 0);
}
.ring-fuchsia-300\/10 {
  --tw-ring-color: rgba(240, 171, 252, 0.1);
}
.ring-fuchsia-300\/100 {
  --tw-ring-color: rgba(240, 171, 252, 1);
}
.ring-fuchsia-300\/15 {
  --tw-ring-color: rgba(240, 171, 252, 0.15);
}
.ring-fuchsia-300\/20 {
  --tw-ring-color: rgba(240, 171, 252, 0.2);
}
.ring-fuchsia-300\/25 {
  --tw-ring-color: rgba(240, 171, 252, 0.25);
}
.ring-fuchsia-300\/30 {
  --tw-ring-color: rgba(240, 171, 252, 0.3);
}
.ring-fuchsia-300\/35 {
  --tw-ring-color: rgba(240, 171, 252, 0.35);
}
.ring-fuchsia-300\/40 {
  --tw-ring-color: rgba(240, 171, 252, 0.4);
}
.ring-fuchsia-300\/45 {
  --tw-ring-color: rgba(240, 171, 252, 0.45);
}
.ring-fuchsia-300\/5 {
  --tw-ring-color: rgba(240, 171, 252, 0.05);
}
.ring-fuchsia-300\/50 {
  --tw-ring-color: rgba(240, 171, 252, 0.5);
}
.ring-fuchsia-300\/55 {
  --tw-ring-color: rgba(240, 171, 252, 0.55);
}
.ring-fuchsia-300\/60 {
  --tw-ring-color: rgba(240, 171, 252, 0.6);
}
.ring-fuchsia-300\/65 {
  --tw-ring-color: rgba(240, 171, 252, 0.65);
}
.ring-fuchsia-300\/70 {
  --tw-ring-color: rgba(240, 171, 252, 0.7);
}
.ring-fuchsia-300\/75 {
  --tw-ring-color: rgba(240, 171, 252, 0.75);
}
.ring-fuchsia-300\/80 {
  --tw-ring-color: rgba(240, 171, 252, 0.8);
}
.ring-fuchsia-300\/85 {
  --tw-ring-color: rgba(240, 171, 252, 0.85);
}
.ring-fuchsia-300\/90 {
  --tw-ring-color: rgba(240, 171, 252, 0.9);
}
.ring-fuchsia-300\/95 {
  --tw-ring-color: rgba(240, 171, 252, 0.95);
}
.ring-fuchsia-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(232, 121, 249, var(--tw-ring-opacity));
}
.ring-fuchsia-400\/0 {
  --tw-ring-color: rgba(232, 121, 249, 0);
}
.ring-fuchsia-400\/10 {
  --tw-ring-color: rgba(232, 121, 249, 0.1);
}
.ring-fuchsia-400\/100 {
  --tw-ring-color: rgba(232, 121, 249, 1);
}
.ring-fuchsia-400\/15 {
  --tw-ring-color: rgba(232, 121, 249, 0.15);
}
.ring-fuchsia-400\/20 {
  --tw-ring-color: rgba(232, 121, 249, 0.2);
}
.ring-fuchsia-400\/25 {
  --tw-ring-color: rgba(232, 121, 249, 0.25);
}
.ring-fuchsia-400\/30 {
  --tw-ring-color: rgba(232, 121, 249, 0.3);
}
.ring-fuchsia-400\/35 {
  --tw-ring-color: rgba(232, 121, 249, 0.35);
}
.ring-fuchsia-400\/40 {
  --tw-ring-color: rgba(232, 121, 249, 0.4);
}
.ring-fuchsia-400\/45 {
  --tw-ring-color: rgba(232, 121, 249, 0.45);
}
.ring-fuchsia-400\/5 {
  --tw-ring-color: rgba(232, 121, 249, 0.05);
}
.ring-fuchsia-400\/50 {
  --tw-ring-color: rgba(232, 121, 249, 0.5);
}
.ring-fuchsia-400\/55 {
  --tw-ring-color: rgba(232, 121, 249, 0.55);
}
.ring-fuchsia-400\/60 {
  --tw-ring-color: rgba(232, 121, 249, 0.6);
}
.ring-fuchsia-400\/65 {
  --tw-ring-color: rgba(232, 121, 249, 0.65);
}
.ring-fuchsia-400\/70 {
  --tw-ring-color: rgba(232, 121, 249, 0.7);
}
.ring-fuchsia-400\/75 {
  --tw-ring-color: rgba(232, 121, 249, 0.75);
}
.ring-fuchsia-400\/80 {
  --tw-ring-color: rgba(232, 121, 249, 0.8);
}
.ring-fuchsia-400\/85 {
  --tw-ring-color: rgba(232, 121, 249, 0.85);
}
.ring-fuchsia-400\/90 {
  --tw-ring-color: rgba(232, 121, 249, 0.9);
}
.ring-fuchsia-400\/95 {
  --tw-ring-color: rgba(232, 121, 249, 0.95);
}
.ring-fuchsia-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(253, 244, 255, var(--tw-ring-opacity));
}
.ring-fuchsia-50\/0 {
  --tw-ring-color: rgba(253, 244, 255, 0);
}
.ring-fuchsia-50\/10 {
  --tw-ring-color: rgba(253, 244, 255, 0.1);
}
.ring-fuchsia-50\/100 {
  --tw-ring-color: rgba(253, 244, 255, 1);
}
.ring-fuchsia-50\/15 {
  --tw-ring-color: rgba(253, 244, 255, 0.15);
}
.ring-fuchsia-50\/20 {
  --tw-ring-color: rgba(253, 244, 255, 0.2);
}
.ring-fuchsia-50\/25 {
  --tw-ring-color: rgba(253, 244, 255, 0.25);
}
.ring-fuchsia-50\/30 {
  --tw-ring-color: rgba(253, 244, 255, 0.3);
}
.ring-fuchsia-50\/35 {
  --tw-ring-color: rgba(253, 244, 255, 0.35);
}
.ring-fuchsia-50\/40 {
  --tw-ring-color: rgba(253, 244, 255, 0.4);
}
.ring-fuchsia-50\/45 {
  --tw-ring-color: rgba(253, 244, 255, 0.45);
}
.ring-fuchsia-50\/5 {
  --tw-ring-color: rgba(253, 244, 255, 0.05);
}
.ring-fuchsia-50\/50 {
  --tw-ring-color: rgba(253, 244, 255, 0.5);
}
.ring-fuchsia-50\/55 {
  --tw-ring-color: rgba(253, 244, 255, 0.55);
}
.ring-fuchsia-50\/60 {
  --tw-ring-color: rgba(253, 244, 255, 0.6);
}
.ring-fuchsia-50\/65 {
  --tw-ring-color: rgba(253, 244, 255, 0.65);
}
.ring-fuchsia-50\/70 {
  --tw-ring-color: rgba(253, 244, 255, 0.7);
}
.ring-fuchsia-50\/75 {
  --tw-ring-color: rgba(253, 244, 255, 0.75);
}
.ring-fuchsia-50\/80 {
  --tw-ring-color: rgba(253, 244, 255, 0.8);
}
.ring-fuchsia-50\/85 {
  --tw-ring-color: rgba(253, 244, 255, 0.85);
}
.ring-fuchsia-50\/90 {
  --tw-ring-color: rgba(253, 244, 255, 0.9);
}
.ring-fuchsia-50\/95 {
  --tw-ring-color: rgba(253, 244, 255, 0.95);
}
.ring-fuchsia-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(217, 70, 239, var(--tw-ring-opacity));
}
.ring-fuchsia-500\/0 {
  --tw-ring-color: rgba(217, 70, 239, 0);
}
.ring-fuchsia-500\/10 {
  --tw-ring-color: rgba(217, 70, 239, 0.1);
}
.ring-fuchsia-500\/100 {
  --tw-ring-color: rgba(217, 70, 239, 1);
}
.ring-fuchsia-500\/15 {
  --tw-ring-color: rgba(217, 70, 239, 0.15);
}
.ring-fuchsia-500\/20 {
  --tw-ring-color: rgba(217, 70, 239, 0.2);
}
.ring-fuchsia-500\/25 {
  --tw-ring-color: rgba(217, 70, 239, 0.25);
}
.ring-fuchsia-500\/30 {
  --tw-ring-color: rgba(217, 70, 239, 0.3);
}
.ring-fuchsia-500\/35 {
  --tw-ring-color: rgba(217, 70, 239, 0.35);
}
.ring-fuchsia-500\/40 {
  --tw-ring-color: rgba(217, 70, 239, 0.4);
}
.ring-fuchsia-500\/45 {
  --tw-ring-color: rgba(217, 70, 239, 0.45);
}
.ring-fuchsia-500\/5 {
  --tw-ring-color: rgba(217, 70, 239, 0.05);
}
.ring-fuchsia-500\/50 {
  --tw-ring-color: rgba(217, 70, 239, 0.5);
}
.ring-fuchsia-500\/55 {
  --tw-ring-color: rgba(217, 70, 239, 0.55);
}
.ring-fuchsia-500\/60 {
  --tw-ring-color: rgba(217, 70, 239, 0.6);
}
.ring-fuchsia-500\/65 {
  --tw-ring-color: rgba(217, 70, 239, 0.65);
}
.ring-fuchsia-500\/70 {
  --tw-ring-color: rgba(217, 70, 239, 0.7);
}
.ring-fuchsia-500\/75 {
  --tw-ring-color: rgba(217, 70, 239, 0.75);
}
.ring-fuchsia-500\/80 {
  --tw-ring-color: rgba(217, 70, 239, 0.8);
}
.ring-fuchsia-500\/85 {
  --tw-ring-color: rgba(217, 70, 239, 0.85);
}
.ring-fuchsia-500\/90 {
  --tw-ring-color: rgba(217, 70, 239, 0.9);
}
.ring-fuchsia-500\/95 {
  --tw-ring-color: rgba(217, 70, 239, 0.95);
}
.ring-fuchsia-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(192, 38, 211, var(--tw-ring-opacity));
}
.ring-fuchsia-600\/0 {
  --tw-ring-color: rgba(192, 38, 211, 0);
}
.ring-fuchsia-600\/10 {
  --tw-ring-color: rgba(192, 38, 211, 0.1);
}
.ring-fuchsia-600\/100 {
  --tw-ring-color: rgba(192, 38, 211, 1);
}
.ring-fuchsia-600\/15 {
  --tw-ring-color: rgba(192, 38, 211, 0.15);
}
.ring-fuchsia-600\/20 {
  --tw-ring-color: rgba(192, 38, 211, 0.2);
}
.ring-fuchsia-600\/25 {
  --tw-ring-color: rgba(192, 38, 211, 0.25);
}
.ring-fuchsia-600\/30 {
  --tw-ring-color: rgba(192, 38, 211, 0.3);
}
.ring-fuchsia-600\/35 {
  --tw-ring-color: rgba(192, 38, 211, 0.35);
}
.ring-fuchsia-600\/40 {
  --tw-ring-color: rgba(192, 38, 211, 0.4);
}
.ring-fuchsia-600\/45 {
  --tw-ring-color: rgba(192, 38, 211, 0.45);
}
.ring-fuchsia-600\/5 {
  --tw-ring-color: rgba(192, 38, 211, 0.05);
}
.ring-fuchsia-600\/50 {
  --tw-ring-color: rgba(192, 38, 211, 0.5);
}
.ring-fuchsia-600\/55 {
  --tw-ring-color: rgba(192, 38, 211, 0.55);
}
.ring-fuchsia-600\/60 {
  --tw-ring-color: rgba(192, 38, 211, 0.6);
}
.ring-fuchsia-600\/65 {
  --tw-ring-color: rgba(192, 38, 211, 0.65);
}
.ring-fuchsia-600\/70 {
  --tw-ring-color: rgba(192, 38, 211, 0.7);
}
.ring-fuchsia-600\/75 {
  --tw-ring-color: rgba(192, 38, 211, 0.75);
}
.ring-fuchsia-600\/80 {
  --tw-ring-color: rgba(192, 38, 211, 0.8);
}
.ring-fuchsia-600\/85 {
  --tw-ring-color: rgba(192, 38, 211, 0.85);
}
.ring-fuchsia-600\/90 {
  --tw-ring-color: rgba(192, 38, 211, 0.9);
}
.ring-fuchsia-600\/95 {
  --tw-ring-color: rgba(192, 38, 211, 0.95);
}
.ring-fuchsia-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(162, 28, 175, var(--tw-ring-opacity));
}
.ring-fuchsia-700\/0 {
  --tw-ring-color: rgba(162, 28, 175, 0);
}
.ring-fuchsia-700\/10 {
  --tw-ring-color: rgba(162, 28, 175, 0.1);
}
.ring-fuchsia-700\/100 {
  --tw-ring-color: rgba(162, 28, 175, 1);
}
.ring-fuchsia-700\/15 {
  --tw-ring-color: rgba(162, 28, 175, 0.15);
}
.ring-fuchsia-700\/20 {
  --tw-ring-color: rgba(162, 28, 175, 0.2);
}
.ring-fuchsia-700\/25 {
  --tw-ring-color: rgba(162, 28, 175, 0.25);
}
.ring-fuchsia-700\/30 {
  --tw-ring-color: rgba(162, 28, 175, 0.3);
}
.ring-fuchsia-700\/35 {
  --tw-ring-color: rgba(162, 28, 175, 0.35);
}
.ring-fuchsia-700\/40 {
  --tw-ring-color: rgba(162, 28, 175, 0.4);
}
.ring-fuchsia-700\/45 {
  --tw-ring-color: rgba(162, 28, 175, 0.45);
}
.ring-fuchsia-700\/5 {
  --tw-ring-color: rgba(162, 28, 175, 0.05);
}
.ring-fuchsia-700\/50 {
  --tw-ring-color: rgba(162, 28, 175, 0.5);
}
.ring-fuchsia-700\/55 {
  --tw-ring-color: rgba(162, 28, 175, 0.55);
}
.ring-fuchsia-700\/60 {
  --tw-ring-color: rgba(162, 28, 175, 0.6);
}
.ring-fuchsia-700\/65 {
  --tw-ring-color: rgba(162, 28, 175, 0.65);
}
.ring-fuchsia-700\/70 {
  --tw-ring-color: rgba(162, 28, 175, 0.7);
}
.ring-fuchsia-700\/75 {
  --tw-ring-color: rgba(162, 28, 175, 0.75);
}
.ring-fuchsia-700\/80 {
  --tw-ring-color: rgba(162, 28, 175, 0.8);
}
.ring-fuchsia-700\/85 {
  --tw-ring-color: rgba(162, 28, 175, 0.85);
}
.ring-fuchsia-700\/90 {
  --tw-ring-color: rgba(162, 28, 175, 0.9);
}
.ring-fuchsia-700\/95 {
  --tw-ring-color: rgba(162, 28, 175, 0.95);
}
.ring-fuchsia-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(134, 25, 143, var(--tw-ring-opacity));
}
.ring-fuchsia-800\/0 {
  --tw-ring-color: rgba(134, 25, 143, 0);
}
.ring-fuchsia-800\/10 {
  --tw-ring-color: rgba(134, 25, 143, 0.1);
}
.ring-fuchsia-800\/100 {
  --tw-ring-color: rgba(134, 25, 143, 1);
}
.ring-fuchsia-800\/15 {
  --tw-ring-color: rgba(134, 25, 143, 0.15);
}
.ring-fuchsia-800\/20 {
  --tw-ring-color: rgba(134, 25, 143, 0.2);
}
.ring-fuchsia-800\/25 {
  --tw-ring-color: rgba(134, 25, 143, 0.25);
}
.ring-fuchsia-800\/30 {
  --tw-ring-color: rgba(134, 25, 143, 0.3);
}
.ring-fuchsia-800\/35 {
  --tw-ring-color: rgba(134, 25, 143, 0.35);
}
.ring-fuchsia-800\/40 {
  --tw-ring-color: rgba(134, 25, 143, 0.4);
}
.ring-fuchsia-800\/45 {
  --tw-ring-color: rgba(134, 25, 143, 0.45);
}
.ring-fuchsia-800\/5 {
  --tw-ring-color: rgba(134, 25, 143, 0.05);
}
.ring-fuchsia-800\/50 {
  --tw-ring-color: rgba(134, 25, 143, 0.5);
}
.ring-fuchsia-800\/55 {
  --tw-ring-color: rgba(134, 25, 143, 0.55);
}
.ring-fuchsia-800\/60 {
  --tw-ring-color: rgba(134, 25, 143, 0.6);
}
.ring-fuchsia-800\/65 {
  --tw-ring-color: rgba(134, 25, 143, 0.65);
}
.ring-fuchsia-800\/70 {
  --tw-ring-color: rgba(134, 25, 143, 0.7);
}
.ring-fuchsia-800\/75 {
  --tw-ring-color: rgba(134, 25, 143, 0.75);
}
.ring-fuchsia-800\/80 {
  --tw-ring-color: rgba(134, 25, 143, 0.8);
}
.ring-fuchsia-800\/85 {
  --tw-ring-color: rgba(134, 25, 143, 0.85);
}
.ring-fuchsia-800\/90 {
  --tw-ring-color: rgba(134, 25, 143, 0.9);
}
.ring-fuchsia-800\/95 {
  --tw-ring-color: rgba(134, 25, 143, 0.95);
}
.ring-fuchsia-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(112, 26, 117, var(--tw-ring-opacity));
}
.ring-fuchsia-900\/0 {
  --tw-ring-color: rgba(112, 26, 117, 0);
}
.ring-fuchsia-900\/10 {
  --tw-ring-color: rgba(112, 26, 117, 0.1);
}
.ring-fuchsia-900\/100 {
  --tw-ring-color: rgba(112, 26, 117, 1);
}
.ring-fuchsia-900\/15 {
  --tw-ring-color: rgba(112, 26, 117, 0.15);
}
.ring-fuchsia-900\/20 {
  --tw-ring-color: rgba(112, 26, 117, 0.2);
}
.ring-fuchsia-900\/25 {
  --tw-ring-color: rgba(112, 26, 117, 0.25);
}
.ring-fuchsia-900\/30 {
  --tw-ring-color: rgba(112, 26, 117, 0.3);
}
.ring-fuchsia-900\/35 {
  --tw-ring-color: rgba(112, 26, 117, 0.35);
}
.ring-fuchsia-900\/40 {
  --tw-ring-color: rgba(112, 26, 117, 0.4);
}
.ring-fuchsia-900\/45 {
  --tw-ring-color: rgba(112, 26, 117, 0.45);
}
.ring-fuchsia-900\/5 {
  --tw-ring-color: rgba(112, 26, 117, 0.05);
}
.ring-fuchsia-900\/50 {
  --tw-ring-color: rgba(112, 26, 117, 0.5);
}
.ring-fuchsia-900\/55 {
  --tw-ring-color: rgba(112, 26, 117, 0.55);
}
.ring-fuchsia-900\/60 {
  --tw-ring-color: rgba(112, 26, 117, 0.6);
}
.ring-fuchsia-900\/65 {
  --tw-ring-color: rgba(112, 26, 117, 0.65);
}
.ring-fuchsia-900\/70 {
  --tw-ring-color: rgba(112, 26, 117, 0.7);
}
.ring-fuchsia-900\/75 {
  --tw-ring-color: rgba(112, 26, 117, 0.75);
}
.ring-fuchsia-900\/80 {
  --tw-ring-color: rgba(112, 26, 117, 0.8);
}
.ring-fuchsia-900\/85 {
  --tw-ring-color: rgba(112, 26, 117, 0.85);
}
.ring-fuchsia-900\/90 {
  --tw-ring-color: rgba(112, 26, 117, 0.9);
}
.ring-fuchsia-900\/95 {
  --tw-ring-color: rgba(112, 26, 117, 0.95);
}
.ring-fuchsia-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(74, 4, 78, var(--tw-ring-opacity));
}
.ring-fuchsia-950\/0 {
  --tw-ring-color: rgba(74, 4, 78, 0);
}
.ring-fuchsia-950\/10 {
  --tw-ring-color: rgba(74, 4, 78, 0.1);
}
.ring-fuchsia-950\/100 {
  --tw-ring-color: rgba(74, 4, 78, 1);
}
.ring-fuchsia-950\/15 {
  --tw-ring-color: rgba(74, 4, 78, 0.15);
}
.ring-fuchsia-950\/20 {
  --tw-ring-color: rgba(74, 4, 78, 0.2);
}
.ring-fuchsia-950\/25 {
  --tw-ring-color: rgba(74, 4, 78, 0.25);
}
.ring-fuchsia-950\/30 {
  --tw-ring-color: rgba(74, 4, 78, 0.3);
}
.ring-fuchsia-950\/35 {
  --tw-ring-color: rgba(74, 4, 78, 0.35);
}
.ring-fuchsia-950\/40 {
  --tw-ring-color: rgba(74, 4, 78, 0.4);
}
.ring-fuchsia-950\/45 {
  --tw-ring-color: rgba(74, 4, 78, 0.45);
}
.ring-fuchsia-950\/5 {
  --tw-ring-color: rgba(74, 4, 78, 0.05);
}
.ring-fuchsia-950\/50 {
  --tw-ring-color: rgba(74, 4, 78, 0.5);
}
.ring-fuchsia-950\/55 {
  --tw-ring-color: rgba(74, 4, 78, 0.55);
}
.ring-fuchsia-950\/60 {
  --tw-ring-color: rgba(74, 4, 78, 0.6);
}
.ring-fuchsia-950\/65 {
  --tw-ring-color: rgba(74, 4, 78, 0.65);
}
.ring-fuchsia-950\/70 {
  --tw-ring-color: rgba(74, 4, 78, 0.7);
}
.ring-fuchsia-950\/75 {
  --tw-ring-color: rgba(74, 4, 78, 0.75);
}
.ring-fuchsia-950\/80 {
  --tw-ring-color: rgba(74, 4, 78, 0.8);
}
.ring-fuchsia-950\/85 {
  --tw-ring-color: rgba(74, 4, 78, 0.85);
}
.ring-fuchsia-950\/90 {
  --tw-ring-color: rgba(74, 4, 78, 0.9);
}
.ring-fuchsia-950\/95 {
  --tw-ring-color: rgba(74, 4, 78, 0.95);
}
.ring-gray-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity));
}
.ring-gray-100\/0 {
  --tw-ring-color: rgba(243, 244, 246, 0);
}
.ring-gray-100\/10 {
  --tw-ring-color: rgba(243, 244, 246, 0.1);
}
.ring-gray-100\/100 {
  --tw-ring-color: rgba(243, 244, 246, 1);
}
.ring-gray-100\/15 {
  --tw-ring-color: rgba(243, 244, 246, 0.15);
}
.ring-gray-100\/20 {
  --tw-ring-color: rgba(243, 244, 246, 0.2);
}
.ring-gray-100\/25 {
  --tw-ring-color: rgba(243, 244, 246, 0.25);
}
.ring-gray-100\/30 {
  --tw-ring-color: rgba(243, 244, 246, 0.3);
}
.ring-gray-100\/35 {
  --tw-ring-color: rgba(243, 244, 246, 0.35);
}
.ring-gray-100\/40 {
  --tw-ring-color: rgba(243, 244, 246, 0.4);
}
.ring-gray-100\/45 {
  --tw-ring-color: rgba(243, 244, 246, 0.45);
}
.ring-gray-100\/5 {
  --tw-ring-color: rgba(243, 244, 246, 0.05);
}
.ring-gray-100\/50 {
  --tw-ring-color: rgba(243, 244, 246, 0.5);
}
.ring-gray-100\/55 {
  --tw-ring-color: rgba(243, 244, 246, 0.55);
}
.ring-gray-100\/60 {
  --tw-ring-color: rgba(243, 244, 246, 0.6);
}
.ring-gray-100\/65 {
  --tw-ring-color: rgba(243, 244, 246, 0.65);
}
.ring-gray-100\/70 {
  --tw-ring-color: rgba(243, 244, 246, 0.7);
}
.ring-gray-100\/75 {
  --tw-ring-color: rgba(243, 244, 246, 0.75);
}
.ring-gray-100\/80 {
  --tw-ring-color: rgba(243, 244, 246, 0.8);
}
.ring-gray-100\/85 {
  --tw-ring-color: rgba(243, 244, 246, 0.85);
}
.ring-gray-100\/90 {
  --tw-ring-color: rgba(243, 244, 246, 0.9);
}
.ring-gray-100\/95 {
  --tw-ring-color: rgba(243, 244, 246, 0.95);
}
.ring-gray-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity));
}
.ring-gray-200\/0 {
  --tw-ring-color: rgba(229, 231, 235, 0);
}
.ring-gray-200\/10 {
  --tw-ring-color: rgba(229, 231, 235, 0.1);
}
.ring-gray-200\/100 {
  --tw-ring-color: rgba(229, 231, 235, 1);
}
.ring-gray-200\/15 {
  --tw-ring-color: rgba(229, 231, 235, 0.15);
}
.ring-gray-200\/20 {
  --tw-ring-color: rgba(229, 231, 235, 0.2);
}
.ring-gray-200\/25 {
  --tw-ring-color: rgba(229, 231, 235, 0.25);
}
.ring-gray-200\/30 {
  --tw-ring-color: rgba(229, 231, 235, 0.3);
}
.ring-gray-200\/35 {
  --tw-ring-color: rgba(229, 231, 235, 0.35);
}
.ring-gray-200\/40 {
  --tw-ring-color: rgba(229, 231, 235, 0.4);
}
.ring-gray-200\/45 {
  --tw-ring-color: rgba(229, 231, 235, 0.45);
}
.ring-gray-200\/5 {
  --tw-ring-color: rgba(229, 231, 235, 0.05);
}
.ring-gray-200\/50 {
  --tw-ring-color: rgba(229, 231, 235, 0.5);
}
.ring-gray-200\/55 {
  --tw-ring-color: rgba(229, 231, 235, 0.55);
}
.ring-gray-200\/60 {
  --tw-ring-color: rgba(229, 231, 235, 0.6);
}
.ring-gray-200\/65 {
  --tw-ring-color: rgba(229, 231, 235, 0.65);
}
.ring-gray-200\/70 {
  --tw-ring-color: rgba(229, 231, 235, 0.7);
}
.ring-gray-200\/75 {
  --tw-ring-color: rgba(229, 231, 235, 0.75);
}
.ring-gray-200\/80 {
  --tw-ring-color: rgba(229, 231, 235, 0.8);
}
.ring-gray-200\/85 {
  --tw-ring-color: rgba(229, 231, 235, 0.85);
}
.ring-gray-200\/90 {
  --tw-ring-color: rgba(229, 231, 235, 0.9);
}
.ring-gray-200\/95 {
  --tw-ring-color: rgba(229, 231, 235, 0.95);
}
.ring-gray-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity));
}
.ring-gray-300\/0 {
  --tw-ring-color: rgba(209, 213, 219, 0);
}
.ring-gray-300\/10 {
  --tw-ring-color: rgba(209, 213, 219, 0.1);
}
.ring-gray-300\/100 {
  --tw-ring-color: rgba(209, 213, 219, 1);
}
.ring-gray-300\/15 {
  --tw-ring-color: rgba(209, 213, 219, 0.15);
}
.ring-gray-300\/20 {
  --tw-ring-color: rgba(209, 213, 219, 0.2);
}
.ring-gray-300\/25 {
  --tw-ring-color: rgba(209, 213, 219, 0.25);
}
.ring-gray-300\/30 {
  --tw-ring-color: rgba(209, 213, 219, 0.3);
}
.ring-gray-300\/35 {
  --tw-ring-color: rgba(209, 213, 219, 0.35);
}
.ring-gray-300\/40 {
  --tw-ring-color: rgba(209, 213, 219, 0.4);
}
.ring-gray-300\/45 {
  --tw-ring-color: rgba(209, 213, 219, 0.45);
}
.ring-gray-300\/5 {
  --tw-ring-color: rgba(209, 213, 219, 0.05);
}
.ring-gray-300\/50 {
  --tw-ring-color: rgba(209, 213, 219, 0.5);
}
.ring-gray-300\/55 {
  --tw-ring-color: rgba(209, 213, 219, 0.55);
}
.ring-gray-300\/60 {
  --tw-ring-color: rgba(209, 213, 219, 0.6);
}
.ring-gray-300\/65 {
  --tw-ring-color: rgba(209, 213, 219, 0.65);
}
.ring-gray-300\/70 {
  --tw-ring-color: rgba(209, 213, 219, 0.7);
}
.ring-gray-300\/75 {
  --tw-ring-color: rgba(209, 213, 219, 0.75);
}
.ring-gray-300\/80 {
  --tw-ring-color: rgba(209, 213, 219, 0.8);
}
.ring-gray-300\/85 {
  --tw-ring-color: rgba(209, 213, 219, 0.85);
}
.ring-gray-300\/90 {
  --tw-ring-color: rgba(209, 213, 219, 0.9);
}
.ring-gray-300\/95 {
  --tw-ring-color: rgba(209, 213, 219, 0.95);
}
.ring-gray-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity));
}
.ring-gray-400\/0 {
  --tw-ring-color: rgba(156, 163, 175, 0);
}
.ring-gray-400\/10 {
  --tw-ring-color: rgba(156, 163, 175, 0.1);
}
.ring-gray-400\/100 {
  --tw-ring-color: rgba(156, 163, 175, 1);
}
.ring-gray-400\/15 {
  --tw-ring-color: rgba(156, 163, 175, 0.15);
}
.ring-gray-400\/20 {
  --tw-ring-color: rgba(156, 163, 175, 0.2);
}
.ring-gray-400\/25 {
  --tw-ring-color: rgba(156, 163, 175, 0.25);
}
.ring-gray-400\/30 {
  --tw-ring-color: rgba(156, 163, 175, 0.3);
}
.ring-gray-400\/35 {
  --tw-ring-color: rgba(156, 163, 175, 0.35);
}
.ring-gray-400\/40 {
  --tw-ring-color: rgba(156, 163, 175, 0.4);
}
.ring-gray-400\/45 {
  --tw-ring-color: rgba(156, 163, 175, 0.45);
}
.ring-gray-400\/5 {
  --tw-ring-color: rgba(156, 163, 175, 0.05);
}
.ring-gray-400\/50 {
  --tw-ring-color: rgba(156, 163, 175, 0.5);
}
.ring-gray-400\/55 {
  --tw-ring-color: rgba(156, 163, 175, 0.55);
}
.ring-gray-400\/60 {
  --tw-ring-color: rgba(156, 163, 175, 0.6);
}
.ring-gray-400\/65 {
  --tw-ring-color: rgba(156, 163, 175, 0.65);
}
.ring-gray-400\/70 {
  --tw-ring-color: rgba(156, 163, 175, 0.7);
}
.ring-gray-400\/75 {
  --tw-ring-color: rgba(156, 163, 175, 0.75);
}
.ring-gray-400\/80 {
  --tw-ring-color: rgba(156, 163, 175, 0.8);
}
.ring-gray-400\/85 {
  --tw-ring-color: rgba(156, 163, 175, 0.85);
}
.ring-gray-400\/90 {
  --tw-ring-color: rgba(156, 163, 175, 0.9);
}
.ring-gray-400\/95 {
  --tw-ring-color: rgba(156, 163, 175, 0.95);
}
.ring-gray-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity));
}
.ring-gray-50\/0 {
  --tw-ring-color: rgba(249, 250, 251, 0);
}
.ring-gray-50\/10 {
  --tw-ring-color: rgba(249, 250, 251, 0.1);
}
.ring-gray-50\/100 {
  --tw-ring-color: rgba(249, 250, 251, 1);
}
.ring-gray-50\/15 {
  --tw-ring-color: rgba(249, 250, 251, 0.15);
}
.ring-gray-50\/20 {
  --tw-ring-color: rgba(249, 250, 251, 0.2);
}
.ring-gray-50\/25 {
  --tw-ring-color: rgba(249, 250, 251, 0.25);
}
.ring-gray-50\/30 {
  --tw-ring-color: rgba(249, 250, 251, 0.3);
}
.ring-gray-50\/35 {
  --tw-ring-color: rgba(249, 250, 251, 0.35);
}
.ring-gray-50\/40 {
  --tw-ring-color: rgba(249, 250, 251, 0.4);
}
.ring-gray-50\/45 {
  --tw-ring-color: rgba(249, 250, 251, 0.45);
}
.ring-gray-50\/5 {
  --tw-ring-color: rgba(249, 250, 251, 0.05);
}
.ring-gray-50\/50 {
  --tw-ring-color: rgba(249, 250, 251, 0.5);
}
.ring-gray-50\/55 {
  --tw-ring-color: rgba(249, 250, 251, 0.55);
}
.ring-gray-50\/60 {
  --tw-ring-color: rgba(249, 250, 251, 0.6);
}
.ring-gray-50\/65 {
  --tw-ring-color: rgba(249, 250, 251, 0.65);
}
.ring-gray-50\/70 {
  --tw-ring-color: rgba(249, 250, 251, 0.7);
}
.ring-gray-50\/75 {
  --tw-ring-color: rgba(249, 250, 251, 0.75);
}
.ring-gray-50\/80 {
  --tw-ring-color: rgba(249, 250, 251, 0.8);
}
.ring-gray-50\/85 {
  --tw-ring-color: rgba(249, 250, 251, 0.85);
}
.ring-gray-50\/90 {
  --tw-ring-color: rgba(249, 250, 251, 0.9);
}
.ring-gray-50\/95 {
  --tw-ring-color: rgba(249, 250, 251, 0.95);
}
.ring-gray-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity));
}
.ring-gray-500\/0 {
  --tw-ring-color: rgba(107, 114, 128, 0);
}
.ring-gray-500\/10 {
  --tw-ring-color: rgba(107, 114, 128, 0.1);
}
.ring-gray-500\/100 {
  --tw-ring-color: rgba(107, 114, 128, 1);
}
.ring-gray-500\/15 {
  --tw-ring-color: rgba(107, 114, 128, 0.15);
}
.ring-gray-500\/20 {
  --tw-ring-color: rgba(107, 114, 128, 0.2);
}
.ring-gray-500\/25 {
  --tw-ring-color: rgba(107, 114, 128, 0.25);
}
.ring-gray-500\/30 {
  --tw-ring-color: rgba(107, 114, 128, 0.3);
}
.ring-gray-500\/35 {
  --tw-ring-color: rgba(107, 114, 128, 0.35);
}
.ring-gray-500\/40 {
  --tw-ring-color: rgba(107, 114, 128, 0.4);
}
.ring-gray-500\/45 {
  --tw-ring-color: rgba(107, 114, 128, 0.45);
}
.ring-gray-500\/5 {
  --tw-ring-color: rgba(107, 114, 128, 0.05);
}
.ring-gray-500\/50 {
  --tw-ring-color: rgba(107, 114, 128, 0.5);
}
.ring-gray-500\/55 {
  --tw-ring-color: rgba(107, 114, 128, 0.55);
}
.ring-gray-500\/60 {
  --tw-ring-color: rgba(107, 114, 128, 0.6);
}
.ring-gray-500\/65 {
  --tw-ring-color: rgba(107, 114, 128, 0.65);
}
.ring-gray-500\/70 {
  --tw-ring-color: rgba(107, 114, 128, 0.7);
}
.ring-gray-500\/75 {
  --tw-ring-color: rgba(107, 114, 128, 0.75);
}
.ring-gray-500\/80 {
  --tw-ring-color: rgba(107, 114, 128, 0.8);
}
.ring-gray-500\/85 {
  --tw-ring-color: rgba(107, 114, 128, 0.85);
}
.ring-gray-500\/90 {
  --tw-ring-color: rgba(107, 114, 128, 0.9);
}
.ring-gray-500\/95 {
  --tw-ring-color: rgba(107, 114, 128, 0.95);
}
.ring-gray-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity));
}
.ring-gray-600\/0 {
  --tw-ring-color: rgba(75, 85, 99, 0);
}
.ring-gray-600\/10 {
  --tw-ring-color: rgba(75, 85, 99, 0.1);
}
.ring-gray-600\/100 {
  --tw-ring-color: rgba(75, 85, 99, 1);
}
.ring-gray-600\/15 {
  --tw-ring-color: rgba(75, 85, 99, 0.15);
}
.ring-gray-600\/20 {
  --tw-ring-color: rgba(75, 85, 99, 0.2);
}
.ring-gray-600\/25 {
  --tw-ring-color: rgba(75, 85, 99, 0.25);
}
.ring-gray-600\/30 {
  --tw-ring-color: rgba(75, 85, 99, 0.3);
}
.ring-gray-600\/35 {
  --tw-ring-color: rgba(75, 85, 99, 0.35);
}
.ring-gray-600\/40 {
  --tw-ring-color: rgba(75, 85, 99, 0.4);
}
.ring-gray-600\/45 {
  --tw-ring-color: rgba(75, 85, 99, 0.45);
}
.ring-gray-600\/5 {
  --tw-ring-color: rgba(75, 85, 99, 0.05);
}
.ring-gray-600\/50 {
  --tw-ring-color: rgba(75, 85, 99, 0.5);
}
.ring-gray-600\/55 {
  --tw-ring-color: rgba(75, 85, 99, 0.55);
}
.ring-gray-600\/60 {
  --tw-ring-color: rgba(75, 85, 99, 0.6);
}
.ring-gray-600\/65 {
  --tw-ring-color: rgba(75, 85, 99, 0.65);
}
.ring-gray-600\/70 {
  --tw-ring-color: rgba(75, 85, 99, 0.7);
}
.ring-gray-600\/75 {
  --tw-ring-color: rgba(75, 85, 99, 0.75);
}
.ring-gray-600\/80 {
  --tw-ring-color: rgba(75, 85, 99, 0.8);
}
.ring-gray-600\/85 {
  --tw-ring-color: rgba(75, 85, 99, 0.85);
}
.ring-gray-600\/90 {
  --tw-ring-color: rgba(75, 85, 99, 0.9);
}
.ring-gray-600\/95 {
  --tw-ring-color: rgba(75, 85, 99, 0.95);
}
.ring-gray-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity));
}
.ring-gray-700\/0 {
  --tw-ring-color: rgba(55, 65, 81, 0);
}
.ring-gray-700\/10 {
  --tw-ring-color: rgba(55, 65, 81, 0.1);
}
.ring-gray-700\/100 {
  --tw-ring-color: rgba(55, 65, 81, 1);
}
.ring-gray-700\/15 {
  --tw-ring-color: rgba(55, 65, 81, 0.15);
}
.ring-gray-700\/20 {
  --tw-ring-color: rgba(55, 65, 81, 0.2);
}
.ring-gray-700\/25 {
  --tw-ring-color: rgba(55, 65, 81, 0.25);
}
.ring-gray-700\/30 {
  --tw-ring-color: rgba(55, 65, 81, 0.3);
}
.ring-gray-700\/35 {
  --tw-ring-color: rgba(55, 65, 81, 0.35);
}
.ring-gray-700\/40 {
  --tw-ring-color: rgba(55, 65, 81, 0.4);
}
.ring-gray-700\/45 {
  --tw-ring-color: rgba(55, 65, 81, 0.45);
}
.ring-gray-700\/5 {
  --tw-ring-color: rgba(55, 65, 81, 0.05);
}
.ring-gray-700\/50 {
  --tw-ring-color: rgba(55, 65, 81, 0.5);
}
.ring-gray-700\/55 {
  --tw-ring-color: rgba(55, 65, 81, 0.55);
}
.ring-gray-700\/60 {
  --tw-ring-color: rgba(55, 65, 81, 0.6);
}
.ring-gray-700\/65 {
  --tw-ring-color: rgba(55, 65, 81, 0.65);
}
.ring-gray-700\/70 {
  --tw-ring-color: rgba(55, 65, 81, 0.7);
}
.ring-gray-700\/75 {
  --tw-ring-color: rgba(55, 65, 81, 0.75);
}
.ring-gray-700\/80 {
  --tw-ring-color: rgba(55, 65, 81, 0.8);
}
.ring-gray-700\/85 {
  --tw-ring-color: rgba(55, 65, 81, 0.85);
}
.ring-gray-700\/90 {
  --tw-ring-color: rgba(55, 65, 81, 0.9);
}
.ring-gray-700\/95 {
  --tw-ring-color: rgba(55, 65, 81, 0.95);
}
.ring-gray-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity));
}
.ring-gray-800\/0 {
  --tw-ring-color: rgba(31, 41, 55, 0);
}
.ring-gray-800\/10 {
  --tw-ring-color: rgba(31, 41, 55, 0.1);
}
.ring-gray-800\/100 {
  --tw-ring-color: rgba(31, 41, 55, 1);
}
.ring-gray-800\/15 {
  --tw-ring-color: rgba(31, 41, 55, 0.15);
}
.ring-gray-800\/20 {
  --tw-ring-color: rgba(31, 41, 55, 0.2);
}
.ring-gray-800\/25 {
  --tw-ring-color: rgba(31, 41, 55, 0.25);
}
.ring-gray-800\/30 {
  --tw-ring-color: rgba(31, 41, 55, 0.3);
}
.ring-gray-800\/35 {
  --tw-ring-color: rgba(31, 41, 55, 0.35);
}
.ring-gray-800\/40 {
  --tw-ring-color: rgba(31, 41, 55, 0.4);
}
.ring-gray-800\/45 {
  --tw-ring-color: rgba(31, 41, 55, 0.45);
}
.ring-gray-800\/5 {
  --tw-ring-color: rgba(31, 41, 55, 0.05);
}
.ring-gray-800\/50 {
  --tw-ring-color: rgba(31, 41, 55, 0.5);
}
.ring-gray-800\/55 {
  --tw-ring-color: rgba(31, 41, 55, 0.55);
}
.ring-gray-800\/60 {
  --tw-ring-color: rgba(31, 41, 55, 0.6);
}
.ring-gray-800\/65 {
  --tw-ring-color: rgba(31, 41, 55, 0.65);
}
.ring-gray-800\/70 {
  --tw-ring-color: rgba(31, 41, 55, 0.7);
}
.ring-gray-800\/75 {
  --tw-ring-color: rgba(31, 41, 55, 0.75);
}
.ring-gray-800\/80 {
  --tw-ring-color: rgba(31, 41, 55, 0.8);
}
.ring-gray-800\/85 {
  --tw-ring-color: rgba(31, 41, 55, 0.85);
}
.ring-gray-800\/90 {
  --tw-ring-color: rgba(31, 41, 55, 0.9);
}
.ring-gray-800\/95 {
  --tw-ring-color: rgba(31, 41, 55, 0.95);
}
.ring-gray-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity));
}
.ring-gray-900\/0 {
  --tw-ring-color: rgba(17, 24, 39, 0);
}
.ring-gray-900\/10 {
  --tw-ring-color: rgba(17, 24, 39, 0.1);
}
.ring-gray-900\/100 {
  --tw-ring-color: rgba(17, 24, 39, 1);
}
.ring-gray-900\/15 {
  --tw-ring-color: rgba(17, 24, 39, 0.15);
}
.ring-gray-900\/20 {
  --tw-ring-color: rgba(17, 24, 39, 0.2);
}
.ring-gray-900\/25 {
  --tw-ring-color: rgba(17, 24, 39, 0.25);
}
.ring-gray-900\/30 {
  --tw-ring-color: rgba(17, 24, 39, 0.3);
}
.ring-gray-900\/35 {
  --tw-ring-color: rgba(17, 24, 39, 0.35);
}
.ring-gray-900\/40 {
  --tw-ring-color: rgba(17, 24, 39, 0.4);
}
.ring-gray-900\/45 {
  --tw-ring-color: rgba(17, 24, 39, 0.45);
}
.ring-gray-900\/5 {
  --tw-ring-color: rgba(17, 24, 39, 0.05);
}
.ring-gray-900\/50 {
  --tw-ring-color: rgba(17, 24, 39, 0.5);
}
.ring-gray-900\/55 {
  --tw-ring-color: rgba(17, 24, 39, 0.55);
}
.ring-gray-900\/60 {
  --tw-ring-color: rgba(17, 24, 39, 0.6);
}
.ring-gray-900\/65 {
  --tw-ring-color: rgba(17, 24, 39, 0.65);
}
.ring-gray-900\/70 {
  --tw-ring-color: rgba(17, 24, 39, 0.7);
}
.ring-gray-900\/75 {
  --tw-ring-color: rgba(17, 24, 39, 0.75);
}
.ring-gray-900\/80 {
  --tw-ring-color: rgba(17, 24, 39, 0.8);
}
.ring-gray-900\/85 {
  --tw-ring-color: rgba(17, 24, 39, 0.85);
}
.ring-gray-900\/90 {
  --tw-ring-color: rgba(17, 24, 39, 0.9);
}
.ring-gray-900\/95 {
  --tw-ring-color: rgba(17, 24, 39, 0.95);
}
.ring-gray-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(3, 7, 18, var(--tw-ring-opacity));
}
.ring-gray-950\/0 {
  --tw-ring-color: rgba(3, 7, 18, 0);
}
.ring-gray-950\/10 {
  --tw-ring-color: rgba(3, 7, 18, 0.1);
}
.ring-gray-950\/100 {
  --tw-ring-color: rgba(3, 7, 18, 1);
}
.ring-gray-950\/15 {
  --tw-ring-color: rgba(3, 7, 18, 0.15);
}
.ring-gray-950\/20 {
  --tw-ring-color: rgba(3, 7, 18, 0.2);
}
.ring-gray-950\/25 {
  --tw-ring-color: rgba(3, 7, 18, 0.25);
}
.ring-gray-950\/30 {
  --tw-ring-color: rgba(3, 7, 18, 0.3);
}
.ring-gray-950\/35 {
  --tw-ring-color: rgba(3, 7, 18, 0.35);
}
.ring-gray-950\/40 {
  --tw-ring-color: rgba(3, 7, 18, 0.4);
}
.ring-gray-950\/45 {
  --tw-ring-color: rgba(3, 7, 18, 0.45);
}
.ring-gray-950\/5 {
  --tw-ring-color: rgba(3, 7, 18, 0.05);
}
.ring-gray-950\/50 {
  --tw-ring-color: rgba(3, 7, 18, 0.5);
}
.ring-gray-950\/55 {
  --tw-ring-color: rgba(3, 7, 18, 0.55);
}
.ring-gray-950\/60 {
  --tw-ring-color: rgba(3, 7, 18, 0.6);
}
.ring-gray-950\/65 {
  --tw-ring-color: rgba(3, 7, 18, 0.65);
}
.ring-gray-950\/70 {
  --tw-ring-color: rgba(3, 7, 18, 0.7);
}
.ring-gray-950\/75 {
  --tw-ring-color: rgba(3, 7, 18, 0.75);
}
.ring-gray-950\/80 {
  --tw-ring-color: rgba(3, 7, 18, 0.8);
}
.ring-gray-950\/85 {
  --tw-ring-color: rgba(3, 7, 18, 0.85);
}
.ring-gray-950\/90 {
  --tw-ring-color: rgba(3, 7, 18, 0.9);
}
.ring-gray-950\/95 {
  --tw-ring-color: rgba(3, 7, 18, 0.95);
}
.ring-green-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(220, 252, 231, var(--tw-ring-opacity));
}
.ring-green-100\/0 {
  --tw-ring-color: rgba(220, 252, 231, 0);
}
.ring-green-100\/10 {
  --tw-ring-color: rgba(220, 252, 231, 0.1);
}
.ring-green-100\/100 {
  --tw-ring-color: rgba(220, 252, 231, 1);
}
.ring-green-100\/15 {
  --tw-ring-color: rgba(220, 252, 231, 0.15);
}
.ring-green-100\/20 {
  --tw-ring-color: rgba(220, 252, 231, 0.2);
}
.ring-green-100\/25 {
  --tw-ring-color: rgba(220, 252, 231, 0.25);
}
.ring-green-100\/30 {
  --tw-ring-color: rgba(220, 252, 231, 0.3);
}
.ring-green-100\/35 {
  --tw-ring-color: rgba(220, 252, 231, 0.35);
}
.ring-green-100\/40 {
  --tw-ring-color: rgba(220, 252, 231, 0.4);
}
.ring-green-100\/45 {
  --tw-ring-color: rgba(220, 252, 231, 0.45);
}
.ring-green-100\/5 {
  --tw-ring-color: rgba(220, 252, 231, 0.05);
}
.ring-green-100\/50 {
  --tw-ring-color: rgba(220, 252, 231, 0.5);
}
.ring-green-100\/55 {
  --tw-ring-color: rgba(220, 252, 231, 0.55);
}
.ring-green-100\/60 {
  --tw-ring-color: rgba(220, 252, 231, 0.6);
}
.ring-green-100\/65 {
  --tw-ring-color: rgba(220, 252, 231, 0.65);
}
.ring-green-100\/70 {
  --tw-ring-color: rgba(220, 252, 231, 0.7);
}
.ring-green-100\/75 {
  --tw-ring-color: rgba(220, 252, 231, 0.75);
}
.ring-green-100\/80 {
  --tw-ring-color: rgba(220, 252, 231, 0.8);
}
.ring-green-100\/85 {
  --tw-ring-color: rgba(220, 252, 231, 0.85);
}
.ring-green-100\/90 {
  --tw-ring-color: rgba(220, 252, 231, 0.9);
}
.ring-green-100\/95 {
  --tw-ring-color: rgba(220, 252, 231, 0.95);
}
.ring-green-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(187, 247, 208, var(--tw-ring-opacity));
}
.ring-green-200\/0 {
  --tw-ring-color: rgba(187, 247, 208, 0);
}
.ring-green-200\/10 {
  --tw-ring-color: rgba(187, 247, 208, 0.1);
}
.ring-green-200\/100 {
  --tw-ring-color: rgba(187, 247, 208, 1);
}
.ring-green-200\/15 {
  --tw-ring-color: rgba(187, 247, 208, 0.15);
}
.ring-green-200\/20 {
  --tw-ring-color: rgba(187, 247, 208, 0.2);
}
.ring-green-200\/25 {
  --tw-ring-color: rgba(187, 247, 208, 0.25);
}
.ring-green-200\/30 {
  --tw-ring-color: rgba(187, 247, 208, 0.3);
}
.ring-green-200\/35 {
  --tw-ring-color: rgba(187, 247, 208, 0.35);
}
.ring-green-200\/40 {
  --tw-ring-color: rgba(187, 247, 208, 0.4);
}
.ring-green-200\/45 {
  --tw-ring-color: rgba(187, 247, 208, 0.45);
}
.ring-green-200\/5 {
  --tw-ring-color: rgba(187, 247, 208, 0.05);
}
.ring-green-200\/50 {
  --tw-ring-color: rgba(187, 247, 208, 0.5);
}
.ring-green-200\/55 {
  --tw-ring-color: rgba(187, 247, 208, 0.55);
}
.ring-green-200\/60 {
  --tw-ring-color: rgba(187, 247, 208, 0.6);
}
.ring-green-200\/65 {
  --tw-ring-color: rgba(187, 247, 208, 0.65);
}
.ring-green-200\/70 {
  --tw-ring-color: rgba(187, 247, 208, 0.7);
}
.ring-green-200\/75 {
  --tw-ring-color: rgba(187, 247, 208, 0.75);
}
.ring-green-200\/80 {
  --tw-ring-color: rgba(187, 247, 208, 0.8);
}
.ring-green-200\/85 {
  --tw-ring-color: rgba(187, 247, 208, 0.85);
}
.ring-green-200\/90 {
  --tw-ring-color: rgba(187, 247, 208, 0.9);
}
.ring-green-200\/95 {
  --tw-ring-color: rgba(187, 247, 208, 0.95);
}
.ring-green-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(134, 239, 172, var(--tw-ring-opacity));
}
.ring-green-300\/0 {
  --tw-ring-color: rgba(134, 239, 172, 0);
}
.ring-green-300\/10 {
  --tw-ring-color: rgba(134, 239, 172, 0.1);
}
.ring-green-300\/100 {
  --tw-ring-color: rgba(134, 239, 172, 1);
}
.ring-green-300\/15 {
  --tw-ring-color: rgba(134, 239, 172, 0.15);
}
.ring-green-300\/20 {
  --tw-ring-color: rgba(134, 239, 172, 0.2);
}
.ring-green-300\/25 {
  --tw-ring-color: rgba(134, 239, 172, 0.25);
}
.ring-green-300\/30 {
  --tw-ring-color: rgba(134, 239, 172, 0.3);
}
.ring-green-300\/35 {
  --tw-ring-color: rgba(134, 239, 172, 0.35);
}
.ring-green-300\/40 {
  --tw-ring-color: rgba(134, 239, 172, 0.4);
}
.ring-green-300\/45 {
  --tw-ring-color: rgba(134, 239, 172, 0.45);
}
.ring-green-300\/5 {
  --tw-ring-color: rgba(134, 239, 172, 0.05);
}
.ring-green-300\/50 {
  --tw-ring-color: rgba(134, 239, 172, 0.5);
}
.ring-green-300\/55 {
  --tw-ring-color: rgba(134, 239, 172, 0.55);
}
.ring-green-300\/60 {
  --tw-ring-color: rgba(134, 239, 172, 0.6);
}
.ring-green-300\/65 {
  --tw-ring-color: rgba(134, 239, 172, 0.65);
}
.ring-green-300\/70 {
  --tw-ring-color: rgba(134, 239, 172, 0.7);
}
.ring-green-300\/75 {
  --tw-ring-color: rgba(134, 239, 172, 0.75);
}
.ring-green-300\/80 {
  --tw-ring-color: rgba(134, 239, 172, 0.8);
}
.ring-green-300\/85 {
  --tw-ring-color: rgba(134, 239, 172, 0.85);
}
.ring-green-300\/90 {
  --tw-ring-color: rgba(134, 239, 172, 0.9);
}
.ring-green-300\/95 {
  --tw-ring-color: rgba(134, 239, 172, 0.95);
}
.ring-green-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(74, 222, 128, var(--tw-ring-opacity));
}
.ring-green-400\/0 {
  --tw-ring-color: rgba(74, 222, 128, 0);
}
.ring-green-400\/10 {
  --tw-ring-color: rgba(74, 222, 128, 0.1);
}
.ring-green-400\/100 {
  --tw-ring-color: rgba(74, 222, 128, 1);
}
.ring-green-400\/15 {
  --tw-ring-color: rgba(74, 222, 128, 0.15);
}
.ring-green-400\/20 {
  --tw-ring-color: rgba(74, 222, 128, 0.2);
}
.ring-green-400\/25 {
  --tw-ring-color: rgba(74, 222, 128, 0.25);
}
.ring-green-400\/30 {
  --tw-ring-color: rgba(74, 222, 128, 0.3);
}
.ring-green-400\/35 {
  --tw-ring-color: rgba(74, 222, 128, 0.35);
}
.ring-green-400\/40 {
  --tw-ring-color: rgba(74, 222, 128, 0.4);
}
.ring-green-400\/45 {
  --tw-ring-color: rgba(74, 222, 128, 0.45);
}
.ring-green-400\/5 {
  --tw-ring-color: rgba(74, 222, 128, 0.05);
}
.ring-green-400\/50 {
  --tw-ring-color: rgba(74, 222, 128, 0.5);
}
.ring-green-400\/55 {
  --tw-ring-color: rgba(74, 222, 128, 0.55);
}
.ring-green-400\/60 {
  --tw-ring-color: rgba(74, 222, 128, 0.6);
}
.ring-green-400\/65 {
  --tw-ring-color: rgba(74, 222, 128, 0.65);
}
.ring-green-400\/70 {
  --tw-ring-color: rgba(74, 222, 128, 0.7);
}
.ring-green-400\/75 {
  --tw-ring-color: rgba(74, 222, 128, 0.75);
}
.ring-green-400\/80 {
  --tw-ring-color: rgba(74, 222, 128, 0.8);
}
.ring-green-400\/85 {
  --tw-ring-color: rgba(74, 222, 128, 0.85);
}
.ring-green-400\/90 {
  --tw-ring-color: rgba(74, 222, 128, 0.9);
}
.ring-green-400\/95 {
  --tw-ring-color: rgba(74, 222, 128, 0.95);
}
.ring-green-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(240, 253, 244, var(--tw-ring-opacity));
}
.ring-green-50\/0 {
  --tw-ring-color: rgba(240, 253, 244, 0);
}
.ring-green-50\/10 {
  --tw-ring-color: rgba(240, 253, 244, 0.1);
}
.ring-green-50\/100 {
  --tw-ring-color: rgba(240, 253, 244, 1);
}
.ring-green-50\/15 {
  --tw-ring-color: rgba(240, 253, 244, 0.15);
}
.ring-green-50\/20 {
  --tw-ring-color: rgba(240, 253, 244, 0.2);
}
.ring-green-50\/25 {
  --tw-ring-color: rgba(240, 253, 244, 0.25);
}
.ring-green-50\/30 {
  --tw-ring-color: rgba(240, 253, 244, 0.3);
}
.ring-green-50\/35 {
  --tw-ring-color: rgba(240, 253, 244, 0.35);
}
.ring-green-50\/40 {
  --tw-ring-color: rgba(240, 253, 244, 0.4);
}
.ring-green-50\/45 {
  --tw-ring-color: rgba(240, 253, 244, 0.45);
}
.ring-green-50\/5 {
  --tw-ring-color: rgba(240, 253, 244, 0.05);
}
.ring-green-50\/50 {
  --tw-ring-color: rgba(240, 253, 244, 0.5);
}
.ring-green-50\/55 {
  --tw-ring-color: rgba(240, 253, 244, 0.55);
}
.ring-green-50\/60 {
  --tw-ring-color: rgba(240, 253, 244, 0.6);
}
.ring-green-50\/65 {
  --tw-ring-color: rgba(240, 253, 244, 0.65);
}
.ring-green-50\/70 {
  --tw-ring-color: rgba(240, 253, 244, 0.7);
}
.ring-green-50\/75 {
  --tw-ring-color: rgba(240, 253, 244, 0.75);
}
.ring-green-50\/80 {
  --tw-ring-color: rgba(240, 253, 244, 0.8);
}
.ring-green-50\/85 {
  --tw-ring-color: rgba(240, 253, 244, 0.85);
}
.ring-green-50\/90 {
  --tw-ring-color: rgba(240, 253, 244, 0.9);
}
.ring-green-50\/95 {
  --tw-ring-color: rgba(240, 253, 244, 0.95);
}
.ring-green-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(34, 197, 94, var(--tw-ring-opacity));
}
.ring-green-500\/0 {
  --tw-ring-color: rgba(34, 197, 94, 0);
}
.ring-green-500\/10 {
  --tw-ring-color: rgba(34, 197, 94, 0.1);
}
.ring-green-500\/100 {
  --tw-ring-color: rgba(34, 197, 94, 1);
}
.ring-green-500\/15 {
  --tw-ring-color: rgba(34, 197, 94, 0.15);
}
.ring-green-500\/20 {
  --tw-ring-color: rgba(34, 197, 94, 0.2);
}
.ring-green-500\/25 {
  --tw-ring-color: rgba(34, 197, 94, 0.25);
}
.ring-green-500\/30 {
  --tw-ring-color: rgba(34, 197, 94, 0.3);
}
.ring-green-500\/35 {
  --tw-ring-color: rgba(34, 197, 94, 0.35);
}
.ring-green-500\/40 {
  --tw-ring-color: rgba(34, 197, 94, 0.4);
}
.ring-green-500\/45 {
  --tw-ring-color: rgba(34, 197, 94, 0.45);
}
.ring-green-500\/5 {
  --tw-ring-color: rgba(34, 197, 94, 0.05);
}
.ring-green-500\/50 {
  --tw-ring-color: rgba(34, 197, 94, 0.5);
}
.ring-green-500\/55 {
  --tw-ring-color: rgba(34, 197, 94, 0.55);
}
.ring-green-500\/60 {
  --tw-ring-color: rgba(34, 197, 94, 0.6);
}
.ring-green-500\/65 {
  --tw-ring-color: rgba(34, 197, 94, 0.65);
}
.ring-green-500\/70 {
  --tw-ring-color: rgba(34, 197, 94, 0.7);
}
.ring-green-500\/75 {
  --tw-ring-color: rgba(34, 197, 94, 0.75);
}
.ring-green-500\/80 {
  --tw-ring-color: rgba(34, 197, 94, 0.8);
}
.ring-green-500\/85 {
  --tw-ring-color: rgba(34, 197, 94, 0.85);
}
.ring-green-500\/90 {
  --tw-ring-color: rgba(34, 197, 94, 0.9);
}
.ring-green-500\/95 {
  --tw-ring-color: rgba(34, 197, 94, 0.95);
}
.ring-green-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(22, 163, 74, var(--tw-ring-opacity));
}
.ring-green-600\/0 {
  --tw-ring-color: rgba(22, 163, 74, 0);
}
.ring-green-600\/10 {
  --tw-ring-color: rgba(22, 163, 74, 0.1);
}
.ring-green-600\/100 {
  --tw-ring-color: rgba(22, 163, 74, 1);
}
.ring-green-600\/15 {
  --tw-ring-color: rgba(22, 163, 74, 0.15);
}
.ring-green-600\/20 {
  --tw-ring-color: rgba(22, 163, 74, 0.2);
}
.ring-green-600\/25 {
  --tw-ring-color: rgba(22, 163, 74, 0.25);
}
.ring-green-600\/30 {
  --tw-ring-color: rgba(22, 163, 74, 0.3);
}
.ring-green-600\/35 {
  --tw-ring-color: rgba(22, 163, 74, 0.35);
}
.ring-green-600\/40 {
  --tw-ring-color: rgba(22, 163, 74, 0.4);
}
.ring-green-600\/45 {
  --tw-ring-color: rgba(22, 163, 74, 0.45);
}
.ring-green-600\/5 {
  --tw-ring-color: rgba(22, 163, 74, 0.05);
}
.ring-green-600\/50 {
  --tw-ring-color: rgba(22, 163, 74, 0.5);
}
.ring-green-600\/55 {
  --tw-ring-color: rgba(22, 163, 74, 0.55);
}
.ring-green-600\/60 {
  --tw-ring-color: rgba(22, 163, 74, 0.6);
}
.ring-green-600\/65 {
  --tw-ring-color: rgba(22, 163, 74, 0.65);
}
.ring-green-600\/70 {
  --tw-ring-color: rgba(22, 163, 74, 0.7);
}
.ring-green-600\/75 {
  --tw-ring-color: rgba(22, 163, 74, 0.75);
}
.ring-green-600\/80 {
  --tw-ring-color: rgba(22, 163, 74, 0.8);
}
.ring-green-600\/85 {
  --tw-ring-color: rgba(22, 163, 74, 0.85);
}
.ring-green-600\/90 {
  --tw-ring-color: rgba(22, 163, 74, 0.9);
}
.ring-green-600\/95 {
  --tw-ring-color: rgba(22, 163, 74, 0.95);
}
.ring-green-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(21, 128, 61, var(--tw-ring-opacity));
}
.ring-green-700\/0 {
  --tw-ring-color: rgba(21, 128, 61, 0);
}
.ring-green-700\/10 {
  --tw-ring-color: rgba(21, 128, 61, 0.1);
}
.ring-green-700\/100 {
  --tw-ring-color: rgba(21, 128, 61, 1);
}
.ring-green-700\/15 {
  --tw-ring-color: rgba(21, 128, 61, 0.15);
}
.ring-green-700\/20 {
  --tw-ring-color: rgba(21, 128, 61, 0.2);
}
.ring-green-700\/25 {
  --tw-ring-color: rgba(21, 128, 61, 0.25);
}
.ring-green-700\/30 {
  --tw-ring-color: rgba(21, 128, 61, 0.3);
}
.ring-green-700\/35 {
  --tw-ring-color: rgba(21, 128, 61, 0.35);
}
.ring-green-700\/40 {
  --tw-ring-color: rgba(21, 128, 61, 0.4);
}
.ring-green-700\/45 {
  --tw-ring-color: rgba(21, 128, 61, 0.45);
}
.ring-green-700\/5 {
  --tw-ring-color: rgba(21, 128, 61, 0.05);
}
.ring-green-700\/50 {
  --tw-ring-color: rgba(21, 128, 61, 0.5);
}
.ring-green-700\/55 {
  --tw-ring-color: rgba(21, 128, 61, 0.55);
}
.ring-green-700\/60 {
  --tw-ring-color: rgba(21, 128, 61, 0.6);
}
.ring-green-700\/65 {
  --tw-ring-color: rgba(21, 128, 61, 0.65);
}
.ring-green-700\/70 {
  --tw-ring-color: rgba(21, 128, 61, 0.7);
}
.ring-green-700\/75 {
  --tw-ring-color: rgba(21, 128, 61, 0.75);
}
.ring-green-700\/80 {
  --tw-ring-color: rgba(21, 128, 61, 0.8);
}
.ring-green-700\/85 {
  --tw-ring-color: rgba(21, 128, 61, 0.85);
}
.ring-green-700\/90 {
  --tw-ring-color: rgba(21, 128, 61, 0.9);
}
.ring-green-700\/95 {
  --tw-ring-color: rgba(21, 128, 61, 0.95);
}
.ring-green-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(22, 101, 52, var(--tw-ring-opacity));
}
.ring-green-800\/0 {
  --tw-ring-color: rgba(22, 101, 52, 0);
}
.ring-green-800\/10 {
  --tw-ring-color: rgba(22, 101, 52, 0.1);
}
.ring-green-800\/100 {
  --tw-ring-color: rgba(22, 101, 52, 1);
}
.ring-green-800\/15 {
  --tw-ring-color: rgba(22, 101, 52, 0.15);
}
.ring-green-800\/20 {
  --tw-ring-color: rgba(22, 101, 52, 0.2);
}
.ring-green-800\/25 {
  --tw-ring-color: rgba(22, 101, 52, 0.25);
}
.ring-green-800\/30 {
  --tw-ring-color: rgba(22, 101, 52, 0.3);
}
.ring-green-800\/35 {
  --tw-ring-color: rgba(22, 101, 52, 0.35);
}
.ring-green-800\/40 {
  --tw-ring-color: rgba(22, 101, 52, 0.4);
}
.ring-green-800\/45 {
  --tw-ring-color: rgba(22, 101, 52, 0.45);
}
.ring-green-800\/5 {
  --tw-ring-color: rgba(22, 101, 52, 0.05);
}
.ring-green-800\/50 {
  --tw-ring-color: rgba(22, 101, 52, 0.5);
}
.ring-green-800\/55 {
  --tw-ring-color: rgba(22, 101, 52, 0.55);
}
.ring-green-800\/60 {
  --tw-ring-color: rgba(22, 101, 52, 0.6);
}
.ring-green-800\/65 {
  --tw-ring-color: rgba(22, 101, 52, 0.65);
}
.ring-green-800\/70 {
  --tw-ring-color: rgba(22, 101, 52, 0.7);
}
.ring-green-800\/75 {
  --tw-ring-color: rgba(22, 101, 52, 0.75);
}
.ring-green-800\/80 {
  --tw-ring-color: rgba(22, 101, 52, 0.8);
}
.ring-green-800\/85 {
  --tw-ring-color: rgba(22, 101, 52, 0.85);
}
.ring-green-800\/90 {
  --tw-ring-color: rgba(22, 101, 52, 0.9);
}
.ring-green-800\/95 {
  --tw-ring-color: rgba(22, 101, 52, 0.95);
}
.ring-green-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(20, 83, 45, var(--tw-ring-opacity));
}
.ring-green-900\/0 {
  --tw-ring-color: rgba(20, 83, 45, 0);
}
.ring-green-900\/10 {
  --tw-ring-color: rgba(20, 83, 45, 0.1);
}
.ring-green-900\/100 {
  --tw-ring-color: rgba(20, 83, 45, 1);
}
.ring-green-900\/15 {
  --tw-ring-color: rgba(20, 83, 45, 0.15);
}
.ring-green-900\/20 {
  --tw-ring-color: rgba(20, 83, 45, 0.2);
}
.ring-green-900\/25 {
  --tw-ring-color: rgba(20, 83, 45, 0.25);
}
.ring-green-900\/30 {
  --tw-ring-color: rgba(20, 83, 45, 0.3);
}
.ring-green-900\/35 {
  --tw-ring-color: rgba(20, 83, 45, 0.35);
}
.ring-green-900\/40 {
  --tw-ring-color: rgba(20, 83, 45, 0.4);
}
.ring-green-900\/45 {
  --tw-ring-color: rgba(20, 83, 45, 0.45);
}
.ring-green-900\/5 {
  --tw-ring-color: rgba(20, 83, 45, 0.05);
}
.ring-green-900\/50 {
  --tw-ring-color: rgba(20, 83, 45, 0.5);
}
.ring-green-900\/55 {
  --tw-ring-color: rgba(20, 83, 45, 0.55);
}
.ring-green-900\/60 {
  --tw-ring-color: rgba(20, 83, 45, 0.6);
}
.ring-green-900\/65 {
  --tw-ring-color: rgba(20, 83, 45, 0.65);
}
.ring-green-900\/70 {
  --tw-ring-color: rgba(20, 83, 45, 0.7);
}
.ring-green-900\/75 {
  --tw-ring-color: rgba(20, 83, 45, 0.75);
}
.ring-green-900\/80 {
  --tw-ring-color: rgba(20, 83, 45, 0.8);
}
.ring-green-900\/85 {
  --tw-ring-color: rgba(20, 83, 45, 0.85);
}
.ring-green-900\/90 {
  --tw-ring-color: rgba(20, 83, 45, 0.9);
}
.ring-green-900\/95 {
  --tw-ring-color: rgba(20, 83, 45, 0.95);
}
.ring-green-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(5, 46, 22, var(--tw-ring-opacity));
}
.ring-green-950\/0 {
  --tw-ring-color: rgba(5, 46, 22, 0);
}
.ring-green-950\/10 {
  --tw-ring-color: rgba(5, 46, 22, 0.1);
}
.ring-green-950\/100 {
  --tw-ring-color: rgba(5, 46, 22, 1);
}
.ring-green-950\/15 {
  --tw-ring-color: rgba(5, 46, 22, 0.15);
}
.ring-green-950\/20 {
  --tw-ring-color: rgba(5, 46, 22, 0.2);
}
.ring-green-950\/25 {
  --tw-ring-color: rgba(5, 46, 22, 0.25);
}
.ring-green-950\/30 {
  --tw-ring-color: rgba(5, 46, 22, 0.3);
}
.ring-green-950\/35 {
  --tw-ring-color: rgba(5, 46, 22, 0.35);
}
.ring-green-950\/40 {
  --tw-ring-color: rgba(5, 46, 22, 0.4);
}
.ring-green-950\/45 {
  --tw-ring-color: rgba(5, 46, 22, 0.45);
}
.ring-green-950\/5 {
  --tw-ring-color: rgba(5, 46, 22, 0.05);
}
.ring-green-950\/50 {
  --tw-ring-color: rgba(5, 46, 22, 0.5);
}
.ring-green-950\/55 {
  --tw-ring-color: rgba(5, 46, 22, 0.55);
}
.ring-green-950\/60 {
  --tw-ring-color: rgba(5, 46, 22, 0.6);
}
.ring-green-950\/65 {
  --tw-ring-color: rgba(5, 46, 22, 0.65);
}
.ring-green-950\/70 {
  --tw-ring-color: rgba(5, 46, 22, 0.7);
}
.ring-green-950\/75 {
  --tw-ring-color: rgba(5, 46, 22, 0.75);
}
.ring-green-950\/80 {
  --tw-ring-color: rgba(5, 46, 22, 0.8);
}
.ring-green-950\/85 {
  --tw-ring-color: rgba(5, 46, 22, 0.85);
}
.ring-green-950\/90 {
  --tw-ring-color: rgba(5, 46, 22, 0.9);
}
.ring-green-950\/95 {
  --tw-ring-color: rgba(5, 46, 22, 0.95);
}
.ring-indigo-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity));
}
.ring-indigo-100\/0 {
  --tw-ring-color: rgba(224, 231, 255, 0);
}
.ring-indigo-100\/10 {
  --tw-ring-color: rgba(224, 231, 255, 0.1);
}
.ring-indigo-100\/100 {
  --tw-ring-color: rgba(224, 231, 255, 1);
}
.ring-indigo-100\/15 {
  --tw-ring-color: rgba(224, 231, 255, 0.15);
}
.ring-indigo-100\/20 {
  --tw-ring-color: rgba(224, 231, 255, 0.2);
}
.ring-indigo-100\/25 {
  --tw-ring-color: rgba(224, 231, 255, 0.25);
}
.ring-indigo-100\/30 {
  --tw-ring-color: rgba(224, 231, 255, 0.3);
}
.ring-indigo-100\/35 {
  --tw-ring-color: rgba(224, 231, 255, 0.35);
}
.ring-indigo-100\/40 {
  --tw-ring-color: rgba(224, 231, 255, 0.4);
}
.ring-indigo-100\/45 {
  --tw-ring-color: rgba(224, 231, 255, 0.45);
}
.ring-indigo-100\/5 {
  --tw-ring-color: rgba(224, 231, 255, 0.05);
}
.ring-indigo-100\/50 {
  --tw-ring-color: rgba(224, 231, 255, 0.5);
}
.ring-indigo-100\/55 {
  --tw-ring-color: rgba(224, 231, 255, 0.55);
}
.ring-indigo-100\/60 {
  --tw-ring-color: rgba(224, 231, 255, 0.6);
}
.ring-indigo-100\/65 {
  --tw-ring-color: rgba(224, 231, 255, 0.65);
}
.ring-indigo-100\/70 {
  --tw-ring-color: rgba(224, 231, 255, 0.7);
}
.ring-indigo-100\/75 {
  --tw-ring-color: rgba(224, 231, 255, 0.75);
}
.ring-indigo-100\/80 {
  --tw-ring-color: rgba(224, 231, 255, 0.8);
}
.ring-indigo-100\/85 {
  --tw-ring-color: rgba(224, 231, 255, 0.85);
}
.ring-indigo-100\/90 {
  --tw-ring-color: rgba(224, 231, 255, 0.9);
}
.ring-indigo-100\/95 {
  --tw-ring-color: rgba(224, 231, 255, 0.95);
}
.ring-indigo-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity));
}
.ring-indigo-200\/0 {
  --tw-ring-color: rgba(199, 210, 254, 0);
}
.ring-indigo-200\/10 {
  --tw-ring-color: rgba(199, 210, 254, 0.1);
}
.ring-indigo-200\/100 {
  --tw-ring-color: rgba(199, 210, 254, 1);
}
.ring-indigo-200\/15 {
  --tw-ring-color: rgba(199, 210, 254, 0.15);
}
.ring-indigo-200\/20 {
  --tw-ring-color: rgba(199, 210, 254, 0.2);
}
.ring-indigo-200\/25 {
  --tw-ring-color: rgba(199, 210, 254, 0.25);
}
.ring-indigo-200\/30 {
  --tw-ring-color: rgba(199, 210, 254, 0.3);
}
.ring-indigo-200\/35 {
  --tw-ring-color: rgba(199, 210, 254, 0.35);
}
.ring-indigo-200\/40 {
  --tw-ring-color: rgba(199, 210, 254, 0.4);
}
.ring-indigo-200\/45 {
  --tw-ring-color: rgba(199, 210, 254, 0.45);
}
.ring-indigo-200\/5 {
  --tw-ring-color: rgba(199, 210, 254, 0.05);
}
.ring-indigo-200\/50 {
  --tw-ring-color: rgba(199, 210, 254, 0.5);
}
.ring-indigo-200\/55 {
  --tw-ring-color: rgba(199, 210, 254, 0.55);
}
.ring-indigo-200\/60 {
  --tw-ring-color: rgba(199, 210, 254, 0.6);
}
.ring-indigo-200\/65 {
  --tw-ring-color: rgba(199, 210, 254, 0.65);
}
.ring-indigo-200\/70 {
  --tw-ring-color: rgba(199, 210, 254, 0.7);
}
.ring-indigo-200\/75 {
  --tw-ring-color: rgba(199, 210, 254, 0.75);
}
.ring-indigo-200\/80 {
  --tw-ring-color: rgba(199, 210, 254, 0.8);
}
.ring-indigo-200\/85 {
  --tw-ring-color: rgba(199, 210, 254, 0.85);
}
.ring-indigo-200\/90 {
  --tw-ring-color: rgba(199, 210, 254, 0.9);
}
.ring-indigo-200\/95 {
  --tw-ring-color: rgba(199, 210, 254, 0.95);
}
.ring-indigo-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity));
}
.ring-indigo-300\/0 {
  --tw-ring-color: rgba(165, 180, 252, 0);
}
.ring-indigo-300\/10 {
  --tw-ring-color: rgba(165, 180, 252, 0.1);
}
.ring-indigo-300\/100 {
  --tw-ring-color: rgba(165, 180, 252, 1);
}
.ring-indigo-300\/15 {
  --tw-ring-color: rgba(165, 180, 252, 0.15);
}
.ring-indigo-300\/20 {
  --tw-ring-color: rgba(165, 180, 252, 0.2);
}
.ring-indigo-300\/25 {
  --tw-ring-color: rgba(165, 180, 252, 0.25);
}
.ring-indigo-300\/30 {
  --tw-ring-color: rgba(165, 180, 252, 0.3);
}
.ring-indigo-300\/35 {
  --tw-ring-color: rgba(165, 180, 252, 0.35);
}
.ring-indigo-300\/40 {
  --tw-ring-color: rgba(165, 180, 252, 0.4);
}
.ring-indigo-300\/45 {
  --tw-ring-color: rgba(165, 180, 252, 0.45);
}
.ring-indigo-300\/5 {
  --tw-ring-color: rgba(165, 180, 252, 0.05);
}
.ring-indigo-300\/50 {
  --tw-ring-color: rgba(165, 180, 252, 0.5);
}
.ring-indigo-300\/55 {
  --tw-ring-color: rgba(165, 180, 252, 0.55);
}
.ring-indigo-300\/60 {
  --tw-ring-color: rgba(165, 180, 252, 0.6);
}
.ring-indigo-300\/65 {
  --tw-ring-color: rgba(165, 180, 252, 0.65);
}
.ring-indigo-300\/70 {
  --tw-ring-color: rgba(165, 180, 252, 0.7);
}
.ring-indigo-300\/75 {
  --tw-ring-color: rgba(165, 180, 252, 0.75);
}
.ring-indigo-300\/80 {
  --tw-ring-color: rgba(165, 180, 252, 0.8);
}
.ring-indigo-300\/85 {
  --tw-ring-color: rgba(165, 180, 252, 0.85);
}
.ring-indigo-300\/90 {
  --tw-ring-color: rgba(165, 180, 252, 0.9);
}
.ring-indigo-300\/95 {
  --tw-ring-color: rgba(165, 180, 252, 0.95);
}
.ring-indigo-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity));
}
.ring-indigo-400\/0 {
  --tw-ring-color: rgba(129, 140, 248, 0);
}
.ring-indigo-400\/10 {
  --tw-ring-color: rgba(129, 140, 248, 0.1);
}
.ring-indigo-400\/100 {
  --tw-ring-color: rgba(129, 140, 248, 1);
}
.ring-indigo-400\/15 {
  --tw-ring-color: rgba(129, 140, 248, 0.15);
}
.ring-indigo-400\/20 {
  --tw-ring-color: rgba(129, 140, 248, 0.2);
}
.ring-indigo-400\/25 {
  --tw-ring-color: rgba(129, 140, 248, 0.25);
}
.ring-indigo-400\/30 {
  --tw-ring-color: rgba(129, 140, 248, 0.3);
}
.ring-indigo-400\/35 {
  --tw-ring-color: rgba(129, 140, 248, 0.35);
}
.ring-indigo-400\/40 {
  --tw-ring-color: rgba(129, 140, 248, 0.4);
}
.ring-indigo-400\/45 {
  --tw-ring-color: rgba(129, 140, 248, 0.45);
}
.ring-indigo-400\/5 {
  --tw-ring-color: rgba(129, 140, 248, 0.05);
}
.ring-indigo-400\/50 {
  --tw-ring-color: rgba(129, 140, 248, 0.5);
}
.ring-indigo-400\/55 {
  --tw-ring-color: rgba(129, 140, 248, 0.55);
}
.ring-indigo-400\/60 {
  --tw-ring-color: rgba(129, 140, 248, 0.6);
}
.ring-indigo-400\/65 {
  --tw-ring-color: rgba(129, 140, 248, 0.65);
}
.ring-indigo-400\/70 {
  --tw-ring-color: rgba(129, 140, 248, 0.7);
}
.ring-indigo-400\/75 {
  --tw-ring-color: rgba(129, 140, 248, 0.75);
}
.ring-indigo-400\/80 {
  --tw-ring-color: rgba(129, 140, 248, 0.8);
}
.ring-indigo-400\/85 {
  --tw-ring-color: rgba(129, 140, 248, 0.85);
}
.ring-indigo-400\/90 {
  --tw-ring-color: rgba(129, 140, 248, 0.9);
}
.ring-indigo-400\/95 {
  --tw-ring-color: rgba(129, 140, 248, 0.95);
}
.ring-indigo-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity));
}
.ring-indigo-50\/0 {
  --tw-ring-color: rgba(238, 242, 255, 0);
}
.ring-indigo-50\/10 {
  --tw-ring-color: rgba(238, 242, 255, 0.1);
}
.ring-indigo-50\/100 {
  --tw-ring-color: rgba(238, 242, 255, 1);
}
.ring-indigo-50\/15 {
  --tw-ring-color: rgba(238, 242, 255, 0.15);
}
.ring-indigo-50\/20 {
  --tw-ring-color: rgba(238, 242, 255, 0.2);
}
.ring-indigo-50\/25 {
  --tw-ring-color: rgba(238, 242, 255, 0.25);
}
.ring-indigo-50\/30 {
  --tw-ring-color: rgba(238, 242, 255, 0.3);
}
.ring-indigo-50\/35 {
  --tw-ring-color: rgba(238, 242, 255, 0.35);
}
.ring-indigo-50\/40 {
  --tw-ring-color: rgba(238, 242, 255, 0.4);
}
.ring-indigo-50\/45 {
  --tw-ring-color: rgba(238, 242, 255, 0.45);
}
.ring-indigo-50\/5 {
  --tw-ring-color: rgba(238, 242, 255, 0.05);
}
.ring-indigo-50\/50 {
  --tw-ring-color: rgba(238, 242, 255, 0.5);
}
.ring-indigo-50\/55 {
  --tw-ring-color: rgba(238, 242, 255, 0.55);
}
.ring-indigo-50\/60 {
  --tw-ring-color: rgba(238, 242, 255, 0.6);
}
.ring-indigo-50\/65 {
  --tw-ring-color: rgba(238, 242, 255, 0.65);
}
.ring-indigo-50\/70 {
  --tw-ring-color: rgba(238, 242, 255, 0.7);
}
.ring-indigo-50\/75 {
  --tw-ring-color: rgba(238, 242, 255, 0.75);
}
.ring-indigo-50\/80 {
  --tw-ring-color: rgba(238, 242, 255, 0.8);
}
.ring-indigo-50\/85 {
  --tw-ring-color: rgba(238, 242, 255, 0.85);
}
.ring-indigo-50\/90 {
  --tw-ring-color: rgba(238, 242, 255, 0.9);
}
.ring-indigo-50\/95 {
  --tw-ring-color: rgba(238, 242, 255, 0.95);
}
.ring-indigo-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity));
}
.ring-indigo-500\/0 {
  --tw-ring-color: rgba(99, 102, 241, 0);
}
.ring-indigo-500\/10 {
  --tw-ring-color: rgba(99, 102, 241, 0.1);
}
.ring-indigo-500\/100 {
  --tw-ring-color: rgba(99, 102, 241, 1);
}
.ring-indigo-500\/15 {
  --tw-ring-color: rgba(99, 102, 241, 0.15);
}
.ring-indigo-500\/20 {
  --tw-ring-color: rgba(99, 102, 241, 0.2);
}
.ring-indigo-500\/25 {
  --tw-ring-color: rgba(99, 102, 241, 0.25);
}
.ring-indigo-500\/30 {
  --tw-ring-color: rgba(99, 102, 241, 0.3);
}
.ring-indigo-500\/35 {
  --tw-ring-color: rgba(99, 102, 241, 0.35);
}
.ring-indigo-500\/40 {
  --tw-ring-color: rgba(99, 102, 241, 0.4);
}
.ring-indigo-500\/45 {
  --tw-ring-color: rgba(99, 102, 241, 0.45);
}
.ring-indigo-500\/5 {
  --tw-ring-color: rgba(99, 102, 241, 0.05);
}
.ring-indigo-500\/50 {
  --tw-ring-color: rgba(99, 102, 241, 0.5);
}
.ring-indigo-500\/55 {
  --tw-ring-color: rgba(99, 102, 241, 0.55);
}
.ring-indigo-500\/60 {
  --tw-ring-color: rgba(99, 102, 241, 0.6);
}
.ring-indigo-500\/65 {
  --tw-ring-color: rgba(99, 102, 241, 0.65);
}
.ring-indigo-500\/70 {
  --tw-ring-color: rgba(99, 102, 241, 0.7);
}
.ring-indigo-500\/75 {
  --tw-ring-color: rgba(99, 102, 241, 0.75);
}
.ring-indigo-500\/80 {
  --tw-ring-color: rgba(99, 102, 241, 0.8);
}
.ring-indigo-500\/85 {
  --tw-ring-color: rgba(99, 102, 241, 0.85);
}
.ring-indigo-500\/90 {
  --tw-ring-color: rgba(99, 102, 241, 0.9);
}
.ring-indigo-500\/95 {
  --tw-ring-color: rgba(99, 102, 241, 0.95);
}
.ring-indigo-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity));
}
.ring-indigo-600\/0 {
  --tw-ring-color: rgba(79, 70, 229, 0);
}
.ring-indigo-600\/10 {
  --tw-ring-color: rgba(79, 70, 229, 0.1);
}
.ring-indigo-600\/100 {
  --tw-ring-color: rgba(79, 70, 229, 1);
}
.ring-indigo-600\/15 {
  --tw-ring-color: rgba(79, 70, 229, 0.15);
}
.ring-indigo-600\/20 {
  --tw-ring-color: rgba(79, 70, 229, 0.2);
}
.ring-indigo-600\/25 {
  --tw-ring-color: rgba(79, 70, 229, 0.25);
}
.ring-indigo-600\/30 {
  --tw-ring-color: rgba(79, 70, 229, 0.3);
}
.ring-indigo-600\/35 {
  --tw-ring-color: rgba(79, 70, 229, 0.35);
}
.ring-indigo-600\/40 {
  --tw-ring-color: rgba(79, 70, 229, 0.4);
}
.ring-indigo-600\/45 {
  --tw-ring-color: rgba(79, 70, 229, 0.45);
}
.ring-indigo-600\/5 {
  --tw-ring-color: rgba(79, 70, 229, 0.05);
}
.ring-indigo-600\/50 {
  --tw-ring-color: rgba(79, 70, 229, 0.5);
}
.ring-indigo-600\/55 {
  --tw-ring-color: rgba(79, 70, 229, 0.55);
}
.ring-indigo-600\/60 {
  --tw-ring-color: rgba(79, 70, 229, 0.6);
}
.ring-indigo-600\/65 {
  --tw-ring-color: rgba(79, 70, 229, 0.65);
}
.ring-indigo-600\/70 {
  --tw-ring-color: rgba(79, 70, 229, 0.7);
}
.ring-indigo-600\/75 {
  --tw-ring-color: rgba(79, 70, 229, 0.75);
}
.ring-indigo-600\/80 {
  --tw-ring-color: rgba(79, 70, 229, 0.8);
}
.ring-indigo-600\/85 {
  --tw-ring-color: rgba(79, 70, 229, 0.85);
}
.ring-indigo-600\/90 {
  --tw-ring-color: rgba(79, 70, 229, 0.9);
}
.ring-indigo-600\/95 {
  --tw-ring-color: rgba(79, 70, 229, 0.95);
}
.ring-indigo-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity));
}
.ring-indigo-700\/0 {
  --tw-ring-color: rgba(67, 56, 202, 0);
}
.ring-indigo-700\/10 {
  --tw-ring-color: rgba(67, 56, 202, 0.1);
}
.ring-indigo-700\/100 {
  --tw-ring-color: rgba(67, 56, 202, 1);
}
.ring-indigo-700\/15 {
  --tw-ring-color: rgba(67, 56, 202, 0.15);
}
.ring-indigo-700\/20 {
  --tw-ring-color: rgba(67, 56, 202, 0.2);
}
.ring-indigo-700\/25 {
  --tw-ring-color: rgba(67, 56, 202, 0.25);
}
.ring-indigo-700\/30 {
  --tw-ring-color: rgba(67, 56, 202, 0.3);
}
.ring-indigo-700\/35 {
  --tw-ring-color: rgba(67, 56, 202, 0.35);
}
.ring-indigo-700\/40 {
  --tw-ring-color: rgba(67, 56, 202, 0.4);
}
.ring-indigo-700\/45 {
  --tw-ring-color: rgba(67, 56, 202, 0.45);
}
.ring-indigo-700\/5 {
  --tw-ring-color: rgba(67, 56, 202, 0.05);
}
.ring-indigo-700\/50 {
  --tw-ring-color: rgba(67, 56, 202, 0.5);
}
.ring-indigo-700\/55 {
  --tw-ring-color: rgba(67, 56, 202, 0.55);
}
.ring-indigo-700\/60 {
  --tw-ring-color: rgba(67, 56, 202, 0.6);
}
.ring-indigo-700\/65 {
  --tw-ring-color: rgba(67, 56, 202, 0.65);
}
.ring-indigo-700\/70 {
  --tw-ring-color: rgba(67, 56, 202, 0.7);
}
.ring-indigo-700\/75 {
  --tw-ring-color: rgba(67, 56, 202, 0.75);
}
.ring-indigo-700\/80 {
  --tw-ring-color: rgba(67, 56, 202, 0.8);
}
.ring-indigo-700\/85 {
  --tw-ring-color: rgba(67, 56, 202, 0.85);
}
.ring-indigo-700\/90 {
  --tw-ring-color: rgba(67, 56, 202, 0.9);
}
.ring-indigo-700\/95 {
  --tw-ring-color: rgba(67, 56, 202, 0.95);
}
.ring-indigo-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity));
}
.ring-indigo-800\/0 {
  --tw-ring-color: rgba(55, 48, 163, 0);
}
.ring-indigo-800\/10 {
  --tw-ring-color: rgba(55, 48, 163, 0.1);
}
.ring-indigo-800\/100 {
  --tw-ring-color: rgba(55, 48, 163, 1);
}
.ring-indigo-800\/15 {
  --tw-ring-color: rgba(55, 48, 163, 0.15);
}
.ring-indigo-800\/20 {
  --tw-ring-color: rgba(55, 48, 163, 0.2);
}
.ring-indigo-800\/25 {
  --tw-ring-color: rgba(55, 48, 163, 0.25);
}
.ring-indigo-800\/30 {
  --tw-ring-color: rgba(55, 48, 163, 0.3);
}
.ring-indigo-800\/35 {
  --tw-ring-color: rgba(55, 48, 163, 0.35);
}
.ring-indigo-800\/40 {
  --tw-ring-color: rgba(55, 48, 163, 0.4);
}
.ring-indigo-800\/45 {
  --tw-ring-color: rgba(55, 48, 163, 0.45);
}
.ring-indigo-800\/5 {
  --tw-ring-color: rgba(55, 48, 163, 0.05);
}
.ring-indigo-800\/50 {
  --tw-ring-color: rgba(55, 48, 163, 0.5);
}
.ring-indigo-800\/55 {
  --tw-ring-color: rgba(55, 48, 163, 0.55);
}
.ring-indigo-800\/60 {
  --tw-ring-color: rgba(55, 48, 163, 0.6);
}
.ring-indigo-800\/65 {
  --tw-ring-color: rgba(55, 48, 163, 0.65);
}
.ring-indigo-800\/70 {
  --tw-ring-color: rgba(55, 48, 163, 0.7);
}
.ring-indigo-800\/75 {
  --tw-ring-color: rgba(55, 48, 163, 0.75);
}
.ring-indigo-800\/80 {
  --tw-ring-color: rgba(55, 48, 163, 0.8);
}
.ring-indigo-800\/85 {
  --tw-ring-color: rgba(55, 48, 163, 0.85);
}
.ring-indigo-800\/90 {
  --tw-ring-color: rgba(55, 48, 163, 0.9);
}
.ring-indigo-800\/95 {
  --tw-ring-color: rgba(55, 48, 163, 0.95);
}
.ring-indigo-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity));
}
.ring-indigo-900\/0 {
  --tw-ring-color: rgba(49, 46, 129, 0);
}
.ring-indigo-900\/10 {
  --tw-ring-color: rgba(49, 46, 129, 0.1);
}
.ring-indigo-900\/100 {
  --tw-ring-color: rgba(49, 46, 129, 1);
}
.ring-indigo-900\/15 {
  --tw-ring-color: rgba(49, 46, 129, 0.15);
}
.ring-indigo-900\/20 {
  --tw-ring-color: rgba(49, 46, 129, 0.2);
}
.ring-indigo-900\/25 {
  --tw-ring-color: rgba(49, 46, 129, 0.25);
}
.ring-indigo-900\/30 {
  --tw-ring-color: rgba(49, 46, 129, 0.3);
}
.ring-indigo-900\/35 {
  --tw-ring-color: rgba(49, 46, 129, 0.35);
}
.ring-indigo-900\/40 {
  --tw-ring-color: rgba(49, 46, 129, 0.4);
}
.ring-indigo-900\/45 {
  --tw-ring-color: rgba(49, 46, 129, 0.45);
}
.ring-indigo-900\/5 {
  --tw-ring-color: rgba(49, 46, 129, 0.05);
}
.ring-indigo-900\/50 {
  --tw-ring-color: rgba(49, 46, 129, 0.5);
}
.ring-indigo-900\/55 {
  --tw-ring-color: rgba(49, 46, 129, 0.55);
}
.ring-indigo-900\/60 {
  --tw-ring-color: rgba(49, 46, 129, 0.6);
}
.ring-indigo-900\/65 {
  --tw-ring-color: rgba(49, 46, 129, 0.65);
}
.ring-indigo-900\/70 {
  --tw-ring-color: rgba(49, 46, 129, 0.7);
}
.ring-indigo-900\/75 {
  --tw-ring-color: rgba(49, 46, 129, 0.75);
}
.ring-indigo-900\/80 {
  --tw-ring-color: rgba(49, 46, 129, 0.8);
}
.ring-indigo-900\/85 {
  --tw-ring-color: rgba(49, 46, 129, 0.85);
}
.ring-indigo-900\/90 {
  --tw-ring-color: rgba(49, 46, 129, 0.9);
}
.ring-indigo-900\/95 {
  --tw-ring-color: rgba(49, 46, 129, 0.95);
}
.ring-indigo-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(30, 27, 75, var(--tw-ring-opacity));
}
.ring-indigo-950\/0 {
  --tw-ring-color: rgba(30, 27, 75, 0);
}
.ring-indigo-950\/10 {
  --tw-ring-color: rgba(30, 27, 75, 0.1);
}
.ring-indigo-950\/100 {
  --tw-ring-color: rgba(30, 27, 75, 1);
}
.ring-indigo-950\/15 {
  --tw-ring-color: rgba(30, 27, 75, 0.15);
}
.ring-indigo-950\/20 {
  --tw-ring-color: rgba(30, 27, 75, 0.2);
}
.ring-indigo-950\/25 {
  --tw-ring-color: rgba(30, 27, 75, 0.25);
}
.ring-indigo-950\/30 {
  --tw-ring-color: rgba(30, 27, 75, 0.3);
}
.ring-indigo-950\/35 {
  --tw-ring-color: rgba(30, 27, 75, 0.35);
}
.ring-indigo-950\/40 {
  --tw-ring-color: rgba(30, 27, 75, 0.4);
}
.ring-indigo-950\/45 {
  --tw-ring-color: rgba(30, 27, 75, 0.45);
}
.ring-indigo-950\/5 {
  --tw-ring-color: rgba(30, 27, 75, 0.05);
}
.ring-indigo-950\/50 {
  --tw-ring-color: rgba(30, 27, 75, 0.5);
}
.ring-indigo-950\/55 {
  --tw-ring-color: rgba(30, 27, 75, 0.55);
}
.ring-indigo-950\/60 {
  --tw-ring-color: rgba(30, 27, 75, 0.6);
}
.ring-indigo-950\/65 {
  --tw-ring-color: rgba(30, 27, 75, 0.65);
}
.ring-indigo-950\/70 {
  --tw-ring-color: rgba(30, 27, 75, 0.7);
}
.ring-indigo-950\/75 {
  --tw-ring-color: rgba(30, 27, 75, 0.75);
}
.ring-indigo-950\/80 {
  --tw-ring-color: rgba(30, 27, 75, 0.8);
}
.ring-indigo-950\/85 {
  --tw-ring-color: rgba(30, 27, 75, 0.85);
}
.ring-indigo-950\/90 {
  --tw-ring-color: rgba(30, 27, 75, 0.9);
}
.ring-indigo-950\/95 {
  --tw-ring-color: rgba(30, 27, 75, 0.95);
}
.ring-info {
  --tw-ring-opacity: 1;
  --tw-ring-color: var(--fallback-in,oklch(var(--in)/var(--tw-ring-opacity)));
}
.ring-info-content {
  --tw-ring-opacity: 1;
  --tw-ring-color: var(--fallback-inc,oklch(var(--inc)/var(--tw-ring-opacity)));
}
.ring-info-content\/0 {
  --tw-ring-color: var(--fallback-inc,oklch(var(--inc)/0));
}
.ring-info-content\/10 {
  --tw-ring-color: var(--fallback-inc,oklch(var(--inc)/0.1));
}
.ring-info-content\/100 {
  --tw-ring-color: var(--fallback-inc,oklch(var(--inc)/1));
}
.ring-info-content\/15 {
  --tw-ring-color: var(--fallback-inc,oklch(var(--inc)/0.15));
}
.ring-info-content\/20 {
  --tw-ring-color: var(--fallback-inc,oklch(var(--inc)/0.2));
}
.ring-info-content\/25 {
  --tw-ring-color: var(--fallback-inc,oklch(var(--inc)/0.25));
}
.ring-info-content\/30 {
  --tw-ring-color: var(--fallback-inc,oklch(var(--inc)/0.3));
}
.ring-info-content\/35 {
  --tw-ring-color: var(--fallback-inc,oklch(var(--inc)/0.35));
}
.ring-info-content\/40 {
  --tw-ring-color: var(--fallback-inc,oklch(var(--inc)/0.4));
}
.ring-info-content\/45 {
  --tw-ring-color: var(--fallback-inc,oklch(var(--inc)/0.45));
}
.ring-info-content\/5 {
  --tw-ring-color: var(--fallback-inc,oklch(var(--inc)/0.05));
}
.ring-info-content\/50 {
  --tw-ring-color: var(--fallback-inc,oklch(var(--inc)/0.5));
}
.ring-info-content\/55 {
  --tw-ring-color: var(--fallback-inc,oklch(var(--inc)/0.55));
}
.ring-info-content\/60 {
  --tw-ring-color: var(--fallback-inc,oklch(var(--inc)/0.6));
}
.ring-info-content\/65 {
  --tw-ring-color: var(--fallback-inc,oklch(var(--inc)/0.65));
}
.ring-info-content\/70 {
  --tw-ring-color: var(--fallback-inc,oklch(var(--inc)/0.7));
}
.ring-info-content\/75 {
  --tw-ring-color: var(--fallback-inc,oklch(var(--inc)/0.75));
}
.ring-info-content\/80 {
  --tw-ring-color: var(--fallback-inc,oklch(var(--inc)/0.8));
}
.ring-info-content\/85 {
  --tw-ring-color: var(--fallback-inc,oklch(var(--inc)/0.85));
}
.ring-info-content\/90 {
  --tw-ring-color: var(--fallback-inc,oklch(var(--inc)/0.9));
}
.ring-info-content\/95 {
  --tw-ring-color: var(--fallback-inc,oklch(var(--inc)/0.95));
}
.ring-info\/0 {
  --tw-ring-color: var(--fallback-in,oklch(var(--in)/0));
}
.ring-info\/10 {
  --tw-ring-color: var(--fallback-in,oklch(var(--in)/0.1));
}
.ring-info\/100 {
  --tw-ring-color: var(--fallback-in,oklch(var(--in)/1));
}
.ring-info\/15 {
  --tw-ring-color: var(--fallback-in,oklch(var(--in)/0.15));
}
.ring-info\/20 {
  --tw-ring-color: var(--fallback-in,oklch(var(--in)/0.2));
}
.ring-info\/25 {
  --tw-ring-color: var(--fallback-in,oklch(var(--in)/0.25));
}
.ring-info\/30 {
  --tw-ring-color: var(--fallback-in,oklch(var(--in)/0.3));
}
.ring-info\/35 {
  --tw-ring-color: var(--fallback-in,oklch(var(--in)/0.35));
}
.ring-info\/40 {
  --tw-ring-color: var(--fallback-in,oklch(var(--in)/0.4));
}
.ring-info\/45 {
  --tw-ring-color: var(--fallback-in,oklch(var(--in)/0.45));
}
.ring-info\/5 {
  --tw-ring-color: var(--fallback-in,oklch(var(--in)/0.05));
}
.ring-info\/50 {
  --tw-ring-color: var(--fallback-in,oklch(var(--in)/0.5));
}
.ring-info\/55 {
  --tw-ring-color: var(--fallback-in,oklch(var(--in)/0.55));
}
.ring-info\/60 {
  --tw-ring-color: var(--fallback-in,oklch(var(--in)/0.6));
}
.ring-info\/65 {
  --tw-ring-color: var(--fallback-in,oklch(var(--in)/0.65));
}
.ring-info\/70 {
  --tw-ring-color: var(--fallback-in,oklch(var(--in)/0.7));
}
.ring-info\/75 {
  --tw-ring-color: var(--fallback-in,oklch(var(--in)/0.75));
}
.ring-info\/80 {
  --tw-ring-color: var(--fallback-in,oklch(var(--in)/0.8));
}
.ring-info\/85 {
  --tw-ring-color: var(--fallback-in,oklch(var(--in)/0.85));
}
.ring-info\/90 {
  --tw-ring-color: var(--fallback-in,oklch(var(--in)/0.9));
}
.ring-info\/95 {
  --tw-ring-color: var(--fallback-in,oklch(var(--in)/0.95));
}
.ring-inherit {
  --tw-ring-color: inherit;
}
.ring-lime-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(236, 252, 203, var(--tw-ring-opacity));
}
.ring-lime-100\/0 {
  --tw-ring-color: rgba(236, 252, 203, 0);
}
.ring-lime-100\/10 {
  --tw-ring-color: rgba(236, 252, 203, 0.1);
}
.ring-lime-100\/100 {
  --tw-ring-color: rgba(236, 252, 203, 1);
}
.ring-lime-100\/15 {
  --tw-ring-color: rgba(236, 252, 203, 0.15);
}
.ring-lime-100\/20 {
  --tw-ring-color: rgba(236, 252, 203, 0.2);
}
.ring-lime-100\/25 {
  --tw-ring-color: rgba(236, 252, 203, 0.25);
}
.ring-lime-100\/30 {
  --tw-ring-color: rgba(236, 252, 203, 0.3);
}
.ring-lime-100\/35 {
  --tw-ring-color: rgba(236, 252, 203, 0.35);
}
.ring-lime-100\/40 {
  --tw-ring-color: rgba(236, 252, 203, 0.4);
}
.ring-lime-100\/45 {
  --tw-ring-color: rgba(236, 252, 203, 0.45);
}
.ring-lime-100\/5 {
  --tw-ring-color: rgba(236, 252, 203, 0.05);
}
.ring-lime-100\/50 {
  --tw-ring-color: rgba(236, 252, 203, 0.5);
}
.ring-lime-100\/55 {
  --tw-ring-color: rgba(236, 252, 203, 0.55);
}
.ring-lime-100\/60 {
  --tw-ring-color: rgba(236, 252, 203, 0.6);
}
.ring-lime-100\/65 {
  --tw-ring-color: rgba(236, 252, 203, 0.65);
}
.ring-lime-100\/70 {
  --tw-ring-color: rgba(236, 252, 203, 0.7);
}
.ring-lime-100\/75 {
  --tw-ring-color: rgba(236, 252, 203, 0.75);
}
.ring-lime-100\/80 {
  --tw-ring-color: rgba(236, 252, 203, 0.8);
}
.ring-lime-100\/85 {
  --tw-ring-color: rgba(236, 252, 203, 0.85);
}
.ring-lime-100\/90 {
  --tw-ring-color: rgba(236, 252, 203, 0.9);
}
.ring-lime-100\/95 {
  --tw-ring-color: rgba(236, 252, 203, 0.95);
}
.ring-lime-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(217, 249, 157, var(--tw-ring-opacity));
}
.ring-lime-200\/0 {
  --tw-ring-color: rgba(217, 249, 157, 0);
}
.ring-lime-200\/10 {
  --tw-ring-color: rgba(217, 249, 157, 0.1);
}
.ring-lime-200\/100 {
  --tw-ring-color: rgba(217, 249, 157, 1);
}
.ring-lime-200\/15 {
  --tw-ring-color: rgba(217, 249, 157, 0.15);
}
.ring-lime-200\/20 {
  --tw-ring-color: rgba(217, 249, 157, 0.2);
}
.ring-lime-200\/25 {
  --tw-ring-color: rgba(217, 249, 157, 0.25);
}
.ring-lime-200\/30 {
  --tw-ring-color: rgba(217, 249, 157, 0.3);
}
.ring-lime-200\/35 {
  --tw-ring-color: rgba(217, 249, 157, 0.35);
}
.ring-lime-200\/40 {
  --tw-ring-color: rgba(217, 249, 157, 0.4);
}
.ring-lime-200\/45 {
  --tw-ring-color: rgba(217, 249, 157, 0.45);
}
.ring-lime-200\/5 {
  --tw-ring-color: rgba(217, 249, 157, 0.05);
}
.ring-lime-200\/50 {
  --tw-ring-color: rgba(217, 249, 157, 0.5);
}
.ring-lime-200\/55 {
  --tw-ring-color: rgba(217, 249, 157, 0.55);
}
.ring-lime-200\/60 {
  --tw-ring-color: rgba(217, 249, 157, 0.6);
}
.ring-lime-200\/65 {
  --tw-ring-color: rgba(217, 249, 157, 0.65);
}
.ring-lime-200\/70 {
  --tw-ring-color: rgba(217, 249, 157, 0.7);
}
.ring-lime-200\/75 {
  --tw-ring-color: rgba(217, 249, 157, 0.75);
}
.ring-lime-200\/80 {
  --tw-ring-color: rgba(217, 249, 157, 0.8);
}
.ring-lime-200\/85 {
  --tw-ring-color: rgba(217, 249, 157, 0.85);
}
.ring-lime-200\/90 {
  --tw-ring-color: rgba(217, 249, 157, 0.9);
}
.ring-lime-200\/95 {
  --tw-ring-color: rgba(217, 249, 157, 0.95);
}
.ring-lime-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(190, 242, 100, var(--tw-ring-opacity));
}
.ring-lime-300\/0 {
  --tw-ring-color: rgba(190, 242, 100, 0);
}
.ring-lime-300\/10 {
  --tw-ring-color: rgba(190, 242, 100, 0.1);
}
.ring-lime-300\/100 {
  --tw-ring-color: rgba(190, 242, 100, 1);
}
.ring-lime-300\/15 {
  --tw-ring-color: rgba(190, 242, 100, 0.15);
}
.ring-lime-300\/20 {
  --tw-ring-color: rgba(190, 242, 100, 0.2);
}
.ring-lime-300\/25 {
  --tw-ring-color: rgba(190, 242, 100, 0.25);
}
.ring-lime-300\/30 {
  --tw-ring-color: rgba(190, 242, 100, 0.3);
}
.ring-lime-300\/35 {
  --tw-ring-color: rgba(190, 242, 100, 0.35);
}
.ring-lime-300\/40 {
  --tw-ring-color: rgba(190, 242, 100, 0.4);
}
.ring-lime-300\/45 {
  --tw-ring-color: rgba(190, 242, 100, 0.45);
}
.ring-lime-300\/5 {
  --tw-ring-color: rgba(190, 242, 100, 0.05);
}
.ring-lime-300\/50 {
  --tw-ring-color: rgba(190, 242, 100, 0.5);
}
.ring-lime-300\/55 {
  --tw-ring-color: rgba(190, 242, 100, 0.55);
}
.ring-lime-300\/60 {
  --tw-ring-color: rgba(190, 242, 100, 0.6);
}
.ring-lime-300\/65 {
  --tw-ring-color: rgba(190, 242, 100, 0.65);
}
.ring-lime-300\/70 {
  --tw-ring-color: rgba(190, 242, 100, 0.7);
}
.ring-lime-300\/75 {
  --tw-ring-color: rgba(190, 242, 100, 0.75);
}
.ring-lime-300\/80 {
  --tw-ring-color: rgba(190, 242, 100, 0.8);
}
.ring-lime-300\/85 {
  --tw-ring-color: rgba(190, 242, 100, 0.85);
}
.ring-lime-300\/90 {
  --tw-ring-color: rgba(190, 242, 100, 0.9);
}
.ring-lime-300\/95 {
  --tw-ring-color: rgba(190, 242, 100, 0.95);
}
.ring-lime-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(163, 230, 53, var(--tw-ring-opacity));
}
.ring-lime-400\/0 {
  --tw-ring-color: rgba(163, 230, 53, 0);
}
.ring-lime-400\/10 {
  --tw-ring-color: rgba(163, 230, 53, 0.1);
}
.ring-lime-400\/100 {
  --tw-ring-color: rgba(163, 230, 53, 1);
}
.ring-lime-400\/15 {
  --tw-ring-color: rgba(163, 230, 53, 0.15);
}
.ring-lime-400\/20 {
  --tw-ring-color: rgba(163, 230, 53, 0.2);
}
.ring-lime-400\/25 {
  --tw-ring-color: rgba(163, 230, 53, 0.25);
}
.ring-lime-400\/30 {
  --tw-ring-color: rgba(163, 230, 53, 0.3);
}
.ring-lime-400\/35 {
  --tw-ring-color: rgba(163, 230, 53, 0.35);
}
.ring-lime-400\/40 {
  --tw-ring-color: rgba(163, 230, 53, 0.4);
}
.ring-lime-400\/45 {
  --tw-ring-color: rgba(163, 230, 53, 0.45);
}
.ring-lime-400\/5 {
  --tw-ring-color: rgba(163, 230, 53, 0.05);
}
.ring-lime-400\/50 {
  --tw-ring-color: rgba(163, 230, 53, 0.5);
}
.ring-lime-400\/55 {
  --tw-ring-color: rgba(163, 230, 53, 0.55);
}
.ring-lime-400\/60 {
  --tw-ring-color: rgba(163, 230, 53, 0.6);
}
.ring-lime-400\/65 {
  --tw-ring-color: rgba(163, 230, 53, 0.65);
}
.ring-lime-400\/70 {
  --tw-ring-color: rgba(163, 230, 53, 0.7);
}
.ring-lime-400\/75 {
  --tw-ring-color: rgba(163, 230, 53, 0.75);
}
.ring-lime-400\/80 {
  --tw-ring-color: rgba(163, 230, 53, 0.8);
}
.ring-lime-400\/85 {
  --tw-ring-color: rgba(163, 230, 53, 0.85);
}
.ring-lime-400\/90 {
  --tw-ring-color: rgba(163, 230, 53, 0.9);
}
.ring-lime-400\/95 {
  --tw-ring-color: rgba(163, 230, 53, 0.95);
}
.ring-lime-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(247, 254, 231, var(--tw-ring-opacity));
}
.ring-lime-50\/0 {
  --tw-ring-color: rgba(247, 254, 231, 0);
}
.ring-lime-50\/10 {
  --tw-ring-color: rgba(247, 254, 231, 0.1);
}
.ring-lime-50\/100 {
  --tw-ring-color: rgba(247, 254, 231, 1);
}
.ring-lime-50\/15 {
  --tw-ring-color: rgba(247, 254, 231, 0.15);
}
.ring-lime-50\/20 {
  --tw-ring-color: rgba(247, 254, 231, 0.2);
}
.ring-lime-50\/25 {
  --tw-ring-color: rgba(247, 254, 231, 0.25);
}
.ring-lime-50\/30 {
  --tw-ring-color: rgba(247, 254, 231, 0.3);
}
.ring-lime-50\/35 {
  --tw-ring-color: rgba(247, 254, 231, 0.35);
}
.ring-lime-50\/40 {
  --tw-ring-color: rgba(247, 254, 231, 0.4);
}
.ring-lime-50\/45 {
  --tw-ring-color: rgba(247, 254, 231, 0.45);
}
.ring-lime-50\/5 {
  --tw-ring-color: rgba(247, 254, 231, 0.05);
}
.ring-lime-50\/50 {
  --tw-ring-color: rgba(247, 254, 231, 0.5);
}
.ring-lime-50\/55 {
  --tw-ring-color: rgba(247, 254, 231, 0.55);
}
.ring-lime-50\/60 {
  --tw-ring-color: rgba(247, 254, 231, 0.6);
}
.ring-lime-50\/65 {
  --tw-ring-color: rgba(247, 254, 231, 0.65);
}
.ring-lime-50\/70 {
  --tw-ring-color: rgba(247, 254, 231, 0.7);
}
.ring-lime-50\/75 {
  --tw-ring-color: rgba(247, 254, 231, 0.75);
}
.ring-lime-50\/80 {
  --tw-ring-color: rgba(247, 254, 231, 0.8);
}
.ring-lime-50\/85 {
  --tw-ring-color: rgba(247, 254, 231, 0.85);
}
.ring-lime-50\/90 {
  --tw-ring-color: rgba(247, 254, 231, 0.9);
}
.ring-lime-50\/95 {
  --tw-ring-color: rgba(247, 254, 231, 0.95);
}
.ring-lime-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(132, 204, 22, var(--tw-ring-opacity));
}
.ring-lime-500\/0 {
  --tw-ring-color: rgba(132, 204, 22, 0);
}
.ring-lime-500\/10 {
  --tw-ring-color: rgba(132, 204, 22, 0.1);
}
.ring-lime-500\/100 {
  --tw-ring-color: rgba(132, 204, 22, 1);
}
.ring-lime-500\/15 {
  --tw-ring-color: rgba(132, 204, 22, 0.15);
}
.ring-lime-500\/20 {
  --tw-ring-color: rgba(132, 204, 22, 0.2);
}
.ring-lime-500\/25 {
  --tw-ring-color: rgba(132, 204, 22, 0.25);
}
.ring-lime-500\/30 {
  --tw-ring-color: rgba(132, 204, 22, 0.3);
}
.ring-lime-500\/35 {
  --tw-ring-color: rgba(132, 204, 22, 0.35);
}
.ring-lime-500\/40 {
  --tw-ring-color: rgba(132, 204, 22, 0.4);
}
.ring-lime-500\/45 {
  --tw-ring-color: rgba(132, 204, 22, 0.45);
}
.ring-lime-500\/5 {
  --tw-ring-color: rgba(132, 204, 22, 0.05);
}
.ring-lime-500\/50 {
  --tw-ring-color: rgba(132, 204, 22, 0.5);
}
.ring-lime-500\/55 {
  --tw-ring-color: rgba(132, 204, 22, 0.55);
}
.ring-lime-500\/60 {
  --tw-ring-color: rgba(132, 204, 22, 0.6);
}
.ring-lime-500\/65 {
  --tw-ring-color: rgba(132, 204, 22, 0.65);
}
.ring-lime-500\/70 {
  --tw-ring-color: rgba(132, 204, 22, 0.7);
}
.ring-lime-500\/75 {
  --tw-ring-color: rgba(132, 204, 22, 0.75);
}
.ring-lime-500\/80 {
  --tw-ring-color: rgba(132, 204, 22, 0.8);
}
.ring-lime-500\/85 {
  --tw-ring-color: rgba(132, 204, 22, 0.85);
}
.ring-lime-500\/90 {
  --tw-ring-color: rgba(132, 204, 22, 0.9);
}
.ring-lime-500\/95 {
  --tw-ring-color: rgba(132, 204, 22, 0.95);
}
.ring-lime-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(101, 163, 13, var(--tw-ring-opacity));
}
.ring-lime-600\/0 {
  --tw-ring-color: rgba(101, 163, 13, 0);
}
.ring-lime-600\/10 {
  --tw-ring-color: rgba(101, 163, 13, 0.1);
}
.ring-lime-600\/100 {
  --tw-ring-color: rgba(101, 163, 13, 1);
}
.ring-lime-600\/15 {
  --tw-ring-color: rgba(101, 163, 13, 0.15);
}
.ring-lime-600\/20 {
  --tw-ring-color: rgba(101, 163, 13, 0.2);
}
.ring-lime-600\/25 {
  --tw-ring-color: rgba(101, 163, 13, 0.25);
}
.ring-lime-600\/30 {
  --tw-ring-color: rgba(101, 163, 13, 0.3);
}
.ring-lime-600\/35 {
  --tw-ring-color: rgba(101, 163, 13, 0.35);
}
.ring-lime-600\/40 {
  --tw-ring-color: rgba(101, 163, 13, 0.4);
}
.ring-lime-600\/45 {
  --tw-ring-color: rgba(101, 163, 13, 0.45);
}
.ring-lime-600\/5 {
  --tw-ring-color: rgba(101, 163, 13, 0.05);
}
.ring-lime-600\/50 {
  --tw-ring-color: rgba(101, 163, 13, 0.5);
}
.ring-lime-600\/55 {
  --tw-ring-color: rgba(101, 163, 13, 0.55);
}
.ring-lime-600\/60 {
  --tw-ring-color: rgba(101, 163, 13, 0.6);
}
.ring-lime-600\/65 {
  --tw-ring-color: rgba(101, 163, 13, 0.65);
}
.ring-lime-600\/70 {
  --tw-ring-color: rgba(101, 163, 13, 0.7);
}
.ring-lime-600\/75 {
  --tw-ring-color: rgba(101, 163, 13, 0.75);
}
.ring-lime-600\/80 {
  --tw-ring-color: rgba(101, 163, 13, 0.8);
}
.ring-lime-600\/85 {
  --tw-ring-color: rgba(101, 163, 13, 0.85);
}
.ring-lime-600\/90 {
  --tw-ring-color: rgba(101, 163, 13, 0.9);
}
.ring-lime-600\/95 {
  --tw-ring-color: rgba(101, 163, 13, 0.95);
}
.ring-lime-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(77, 124, 15, var(--tw-ring-opacity));
}
.ring-lime-700\/0 {
  --tw-ring-color: rgba(77, 124, 15, 0);
}
.ring-lime-700\/10 {
  --tw-ring-color: rgba(77, 124, 15, 0.1);
}
.ring-lime-700\/100 {
  --tw-ring-color: rgba(77, 124, 15, 1);
}
.ring-lime-700\/15 {
  --tw-ring-color: rgba(77, 124, 15, 0.15);
}
.ring-lime-700\/20 {
  --tw-ring-color: rgba(77, 124, 15, 0.2);
}
.ring-lime-700\/25 {
  --tw-ring-color: rgba(77, 124, 15, 0.25);
}
.ring-lime-700\/30 {
  --tw-ring-color: rgba(77, 124, 15, 0.3);
}
.ring-lime-700\/35 {
  --tw-ring-color: rgba(77, 124, 15, 0.35);
}
.ring-lime-700\/40 {
  --tw-ring-color: rgba(77, 124, 15, 0.4);
}
.ring-lime-700\/45 {
  --tw-ring-color: rgba(77, 124, 15, 0.45);
}
.ring-lime-700\/5 {
  --tw-ring-color: rgba(77, 124, 15, 0.05);
}
.ring-lime-700\/50 {
  --tw-ring-color: rgba(77, 124, 15, 0.5);
}
.ring-lime-700\/55 {
  --tw-ring-color: rgba(77, 124, 15, 0.55);
}
.ring-lime-700\/60 {
  --tw-ring-color: rgba(77, 124, 15, 0.6);
}
.ring-lime-700\/65 {
  --tw-ring-color: rgba(77, 124, 15, 0.65);
}
.ring-lime-700\/70 {
  --tw-ring-color: rgba(77, 124, 15, 0.7);
}
.ring-lime-700\/75 {
  --tw-ring-color: rgba(77, 124, 15, 0.75);
}
.ring-lime-700\/80 {
  --tw-ring-color: rgba(77, 124, 15, 0.8);
}
.ring-lime-700\/85 {
  --tw-ring-color: rgba(77, 124, 15, 0.85);
}
.ring-lime-700\/90 {
  --tw-ring-color: rgba(77, 124, 15, 0.9);
}
.ring-lime-700\/95 {
  --tw-ring-color: rgba(77, 124, 15, 0.95);
}
.ring-lime-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(63, 98, 18, var(--tw-ring-opacity));
}
.ring-lime-800\/0 {
  --tw-ring-color: rgba(63, 98, 18, 0);
}
.ring-lime-800\/10 {
  --tw-ring-color: rgba(63, 98, 18, 0.1);
}
.ring-lime-800\/100 {
  --tw-ring-color: rgba(63, 98, 18, 1);
}
.ring-lime-800\/15 {
  --tw-ring-color: rgba(63, 98, 18, 0.15);
}
.ring-lime-800\/20 {
  --tw-ring-color: rgba(63, 98, 18, 0.2);
}
.ring-lime-800\/25 {
  --tw-ring-color: rgba(63, 98, 18, 0.25);
}
.ring-lime-800\/30 {
  --tw-ring-color: rgba(63, 98, 18, 0.3);
}
.ring-lime-800\/35 {
  --tw-ring-color: rgba(63, 98, 18, 0.35);
}
.ring-lime-800\/40 {
  --tw-ring-color: rgba(63, 98, 18, 0.4);
}
.ring-lime-800\/45 {
  --tw-ring-color: rgba(63, 98, 18, 0.45);
}
.ring-lime-800\/5 {
  --tw-ring-color: rgba(63, 98, 18, 0.05);
}
.ring-lime-800\/50 {
  --tw-ring-color: rgba(63, 98, 18, 0.5);
}
.ring-lime-800\/55 {
  --tw-ring-color: rgba(63, 98, 18, 0.55);
}
.ring-lime-800\/60 {
  --tw-ring-color: rgba(63, 98, 18, 0.6);
}
.ring-lime-800\/65 {
  --tw-ring-color: rgba(63, 98, 18, 0.65);
}
.ring-lime-800\/70 {
  --tw-ring-color: rgba(63, 98, 18, 0.7);
}
.ring-lime-800\/75 {
  --tw-ring-color: rgba(63, 98, 18, 0.75);
}
.ring-lime-800\/80 {
  --tw-ring-color: rgba(63, 98, 18, 0.8);
}
.ring-lime-800\/85 {
  --tw-ring-color: rgba(63, 98, 18, 0.85);
}
.ring-lime-800\/90 {
  --tw-ring-color: rgba(63, 98, 18, 0.9);
}
.ring-lime-800\/95 {
  --tw-ring-color: rgba(63, 98, 18, 0.95);
}
.ring-lime-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(54, 83, 20, var(--tw-ring-opacity));
}
.ring-lime-900\/0 {
  --tw-ring-color: rgba(54, 83, 20, 0);
}
.ring-lime-900\/10 {
  --tw-ring-color: rgba(54, 83, 20, 0.1);
}
.ring-lime-900\/100 {
  --tw-ring-color: rgba(54, 83, 20, 1);
}
.ring-lime-900\/15 {
  --tw-ring-color: rgba(54, 83, 20, 0.15);
}
.ring-lime-900\/20 {
  --tw-ring-color: rgba(54, 83, 20, 0.2);
}
.ring-lime-900\/25 {
  --tw-ring-color: rgba(54, 83, 20, 0.25);
}
.ring-lime-900\/30 {
  --tw-ring-color: rgba(54, 83, 20, 0.3);
}
.ring-lime-900\/35 {
  --tw-ring-color: rgba(54, 83, 20, 0.35);
}
.ring-lime-900\/40 {
  --tw-ring-color: rgba(54, 83, 20, 0.4);
}
.ring-lime-900\/45 {
  --tw-ring-color: rgba(54, 83, 20, 0.45);
}
.ring-lime-900\/5 {
  --tw-ring-color: rgba(54, 83, 20, 0.05);
}
.ring-lime-900\/50 {
  --tw-ring-color: rgba(54, 83, 20, 0.5);
}
.ring-lime-900\/55 {
  --tw-ring-color: rgba(54, 83, 20, 0.55);
}
.ring-lime-900\/60 {
  --tw-ring-color: rgba(54, 83, 20, 0.6);
}
.ring-lime-900\/65 {
  --tw-ring-color: rgba(54, 83, 20, 0.65);
}
.ring-lime-900\/70 {
  --tw-ring-color: rgba(54, 83, 20, 0.7);
}
.ring-lime-900\/75 {
  --tw-ring-color: rgba(54, 83, 20, 0.75);
}
.ring-lime-900\/80 {
  --tw-ring-color: rgba(54, 83, 20, 0.8);
}
.ring-lime-900\/85 {
  --tw-ring-color: rgba(54, 83, 20, 0.85);
}
.ring-lime-900\/90 {
  --tw-ring-color: rgba(54, 83, 20, 0.9);
}
.ring-lime-900\/95 {
  --tw-ring-color: rgba(54, 83, 20, 0.95);
}
.ring-lime-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(26, 46, 5, var(--tw-ring-opacity));
}
.ring-lime-950\/0 {
  --tw-ring-color: rgba(26, 46, 5, 0);
}
.ring-lime-950\/10 {
  --tw-ring-color: rgba(26, 46, 5, 0.1);
}
.ring-lime-950\/100 {
  --tw-ring-color: rgba(26, 46, 5, 1);
}
.ring-lime-950\/15 {
  --tw-ring-color: rgba(26, 46, 5, 0.15);
}
.ring-lime-950\/20 {
  --tw-ring-color: rgba(26, 46, 5, 0.2);
}
.ring-lime-950\/25 {
  --tw-ring-color: rgba(26, 46, 5, 0.25);
}
.ring-lime-950\/30 {
  --tw-ring-color: rgba(26, 46, 5, 0.3);
}
.ring-lime-950\/35 {
  --tw-ring-color: rgba(26, 46, 5, 0.35);
}
.ring-lime-950\/40 {
  --tw-ring-color: rgba(26, 46, 5, 0.4);
}
.ring-lime-950\/45 {
  --tw-ring-color: rgba(26, 46, 5, 0.45);
}
.ring-lime-950\/5 {
  --tw-ring-color: rgba(26, 46, 5, 0.05);
}
.ring-lime-950\/50 {
  --tw-ring-color: rgba(26, 46, 5, 0.5);
}
.ring-lime-950\/55 {
  --tw-ring-color: rgba(26, 46, 5, 0.55);
}
.ring-lime-950\/60 {
  --tw-ring-color: rgba(26, 46, 5, 0.6);
}
.ring-lime-950\/65 {
  --tw-ring-color: rgba(26, 46, 5, 0.65);
}
.ring-lime-950\/70 {
  --tw-ring-color: rgba(26, 46, 5, 0.7);
}
.ring-lime-950\/75 {
  --tw-ring-color: rgba(26, 46, 5, 0.75);
}
.ring-lime-950\/80 {
  --tw-ring-color: rgba(26, 46, 5, 0.8);
}
.ring-lime-950\/85 {
  --tw-ring-color: rgba(26, 46, 5, 0.85);
}
.ring-lime-950\/90 {
  --tw-ring-color: rgba(26, 46, 5, 0.9);
}
.ring-lime-950\/95 {
  --tw-ring-color: rgba(26, 46, 5, 0.95);
}
.ring-neutral {
  --tw-ring-opacity: 1;
  --tw-ring-color: var(--fallback-n,oklch(var(--n)/var(--tw-ring-opacity)));
}
.ring-neutral-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(245, 245, 245, var(--tw-ring-opacity));
}
.ring-neutral-100\/0 {
  --tw-ring-color: rgba(245, 245, 245, 0);
}
.ring-neutral-100\/10 {
  --tw-ring-color: rgba(245, 245, 245, 0.1);
}
.ring-neutral-100\/100 {
  --tw-ring-color: rgba(245, 245, 245, 1);
}
.ring-neutral-100\/15 {
  --tw-ring-color: rgba(245, 245, 245, 0.15);
}
.ring-neutral-100\/20 {
  --tw-ring-color: rgba(245, 245, 245, 0.2);
}
.ring-neutral-100\/25 {
  --tw-ring-color: rgba(245, 245, 245, 0.25);
}
.ring-neutral-100\/30 {
  --tw-ring-color: rgba(245, 245, 245, 0.3);
}
.ring-neutral-100\/35 {
  --tw-ring-color: rgba(245, 245, 245, 0.35);
}
.ring-neutral-100\/40 {
  --tw-ring-color: rgba(245, 245, 245, 0.4);
}
.ring-neutral-100\/45 {
  --tw-ring-color: rgba(245, 245, 245, 0.45);
}
.ring-neutral-100\/5 {
  --tw-ring-color: rgba(245, 245, 245, 0.05);
}
.ring-neutral-100\/50 {
  --tw-ring-color: rgba(245, 245, 245, 0.5);
}
.ring-neutral-100\/55 {
  --tw-ring-color: rgba(245, 245, 245, 0.55);
}
.ring-neutral-100\/60 {
  --tw-ring-color: rgba(245, 245, 245, 0.6);
}
.ring-neutral-100\/65 {
  --tw-ring-color: rgba(245, 245, 245, 0.65);
}
.ring-neutral-100\/70 {
  --tw-ring-color: rgba(245, 245, 245, 0.7);
}
.ring-neutral-100\/75 {
  --tw-ring-color: rgba(245, 245, 245, 0.75);
}
.ring-neutral-100\/80 {
  --tw-ring-color: rgba(245, 245, 245, 0.8);
}
.ring-neutral-100\/85 {
  --tw-ring-color: rgba(245, 245, 245, 0.85);
}
.ring-neutral-100\/90 {
  --tw-ring-color: rgba(245, 245, 245, 0.9);
}
.ring-neutral-100\/95 {
  --tw-ring-color: rgba(245, 245, 245, 0.95);
}
.ring-neutral-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(229, 229, 229, var(--tw-ring-opacity));
}
.ring-neutral-200\/0 {
  --tw-ring-color: rgba(229, 229, 229, 0);
}
.ring-neutral-200\/10 {
  --tw-ring-color: rgba(229, 229, 229, 0.1);
}
.ring-neutral-200\/100 {
  --tw-ring-color: rgba(229, 229, 229, 1);
}
.ring-neutral-200\/15 {
  --tw-ring-color: rgba(229, 229, 229, 0.15);
}
.ring-neutral-200\/20 {
  --tw-ring-color: rgba(229, 229, 229, 0.2);
}
.ring-neutral-200\/25 {
  --tw-ring-color: rgba(229, 229, 229, 0.25);
}
.ring-neutral-200\/30 {
  --tw-ring-color: rgba(229, 229, 229, 0.3);
}
.ring-neutral-200\/35 {
  --tw-ring-color: rgba(229, 229, 229, 0.35);
}
.ring-neutral-200\/40 {
  --tw-ring-color: rgba(229, 229, 229, 0.4);
}
.ring-neutral-200\/45 {
  --tw-ring-color: rgba(229, 229, 229, 0.45);
}
.ring-neutral-200\/5 {
  --tw-ring-color: rgba(229, 229, 229, 0.05);
}
.ring-neutral-200\/50 {
  --tw-ring-color: rgba(229, 229, 229, 0.5);
}
.ring-neutral-200\/55 {
  --tw-ring-color: rgba(229, 229, 229, 0.55);
}
.ring-neutral-200\/60 {
  --tw-ring-color: rgba(229, 229, 229, 0.6);
}
.ring-neutral-200\/65 {
  --tw-ring-color: rgba(229, 229, 229, 0.65);
}
.ring-neutral-200\/70 {
  --tw-ring-color: rgba(229, 229, 229, 0.7);
}
.ring-neutral-200\/75 {
  --tw-ring-color: rgba(229, 229, 229, 0.75);
}
.ring-neutral-200\/80 {
  --tw-ring-color: rgba(229, 229, 229, 0.8);
}
.ring-neutral-200\/85 {
  --tw-ring-color: rgba(229, 229, 229, 0.85);
}
.ring-neutral-200\/90 {
  --tw-ring-color: rgba(229, 229, 229, 0.9);
}
.ring-neutral-200\/95 {
  --tw-ring-color: rgba(229, 229, 229, 0.95);
}
.ring-neutral-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(212, 212, 212, var(--tw-ring-opacity));
}
.ring-neutral-300\/0 {
  --tw-ring-color: rgba(212, 212, 212, 0);
}
.ring-neutral-300\/10 {
  --tw-ring-color: rgba(212, 212, 212, 0.1);
}
.ring-neutral-300\/100 {
  --tw-ring-color: rgba(212, 212, 212, 1);
}
.ring-neutral-300\/15 {
  --tw-ring-color: rgba(212, 212, 212, 0.15);
}
.ring-neutral-300\/20 {
  --tw-ring-color: rgba(212, 212, 212, 0.2);
}
.ring-neutral-300\/25 {
  --tw-ring-color: rgba(212, 212, 212, 0.25);
}
.ring-neutral-300\/30 {
  --tw-ring-color: rgba(212, 212, 212, 0.3);
}
.ring-neutral-300\/35 {
  --tw-ring-color: rgba(212, 212, 212, 0.35);
}
.ring-neutral-300\/40 {
  --tw-ring-color: rgba(212, 212, 212, 0.4);
}
.ring-neutral-300\/45 {
  --tw-ring-color: rgba(212, 212, 212, 0.45);
}
.ring-neutral-300\/5 {
  --tw-ring-color: rgba(212, 212, 212, 0.05);
}
.ring-neutral-300\/50 {
  --tw-ring-color: rgba(212, 212, 212, 0.5);
}
.ring-neutral-300\/55 {
  --tw-ring-color: rgba(212, 212, 212, 0.55);
}
.ring-neutral-300\/60 {
  --tw-ring-color: rgba(212, 212, 212, 0.6);
}
.ring-neutral-300\/65 {
  --tw-ring-color: rgba(212, 212, 212, 0.65);
}
.ring-neutral-300\/70 {
  --tw-ring-color: rgba(212, 212, 212, 0.7);
}
.ring-neutral-300\/75 {
  --tw-ring-color: rgba(212, 212, 212, 0.75);
}
.ring-neutral-300\/80 {
  --tw-ring-color: rgba(212, 212, 212, 0.8);
}
.ring-neutral-300\/85 {
  --tw-ring-color: rgba(212, 212, 212, 0.85);
}
.ring-neutral-300\/90 {
  --tw-ring-color: rgba(212, 212, 212, 0.9);
}
.ring-neutral-300\/95 {
  --tw-ring-color: rgba(212, 212, 212, 0.95);
}
.ring-neutral-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(163, 163, 163, var(--tw-ring-opacity));
}
.ring-neutral-400\/0 {
  --tw-ring-color: rgba(163, 163, 163, 0);
}
.ring-neutral-400\/10 {
  --tw-ring-color: rgba(163, 163, 163, 0.1);
}
.ring-neutral-400\/100 {
  --tw-ring-color: rgba(163, 163, 163, 1);
}
.ring-neutral-400\/15 {
  --tw-ring-color: rgba(163, 163, 163, 0.15);
}
.ring-neutral-400\/20 {
  --tw-ring-color: rgba(163, 163, 163, 0.2);
}
.ring-neutral-400\/25 {
  --tw-ring-color: rgba(163, 163, 163, 0.25);
}
.ring-neutral-400\/30 {
  --tw-ring-color: rgba(163, 163, 163, 0.3);
}
.ring-neutral-400\/35 {
  --tw-ring-color: rgba(163, 163, 163, 0.35);
}
.ring-neutral-400\/40 {
  --tw-ring-color: rgba(163, 163, 163, 0.4);
}
.ring-neutral-400\/45 {
  --tw-ring-color: rgba(163, 163, 163, 0.45);
}
.ring-neutral-400\/5 {
  --tw-ring-color: rgba(163, 163, 163, 0.05);
}
.ring-neutral-400\/50 {
  --tw-ring-color: rgba(163, 163, 163, 0.5);
}
.ring-neutral-400\/55 {
  --tw-ring-color: rgba(163, 163, 163, 0.55);
}
.ring-neutral-400\/60 {
  --tw-ring-color: rgba(163, 163, 163, 0.6);
}
.ring-neutral-400\/65 {
  --tw-ring-color: rgba(163, 163, 163, 0.65);
}
.ring-neutral-400\/70 {
  --tw-ring-color: rgba(163, 163, 163, 0.7);
}
.ring-neutral-400\/75 {
  --tw-ring-color: rgba(163, 163, 163, 0.75);
}
.ring-neutral-400\/80 {
  --tw-ring-color: rgba(163, 163, 163, 0.8);
}
.ring-neutral-400\/85 {
  --tw-ring-color: rgba(163, 163, 163, 0.85);
}
.ring-neutral-400\/90 {
  --tw-ring-color: rgba(163, 163, 163, 0.9);
}
.ring-neutral-400\/95 {
  --tw-ring-color: rgba(163, 163, 163, 0.95);
}
.ring-neutral-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(250, 250, 250, var(--tw-ring-opacity));
}
.ring-neutral-50\/0 {
  --tw-ring-color: rgba(250, 250, 250, 0);
}
.ring-neutral-50\/10 {
  --tw-ring-color: rgba(250, 250, 250, 0.1);
}
.ring-neutral-50\/100 {
  --tw-ring-color: rgba(250, 250, 250, 1);
}
.ring-neutral-50\/15 {
  --tw-ring-color: rgba(250, 250, 250, 0.15);
}
.ring-neutral-50\/20 {
  --tw-ring-color: rgba(250, 250, 250, 0.2);
}
.ring-neutral-50\/25 {
  --tw-ring-color: rgba(250, 250, 250, 0.25);
}
.ring-neutral-50\/30 {
  --tw-ring-color: rgba(250, 250, 250, 0.3);
}
.ring-neutral-50\/35 {
  --tw-ring-color: rgba(250, 250, 250, 0.35);
}
.ring-neutral-50\/40 {
  --tw-ring-color: rgba(250, 250, 250, 0.4);
}
.ring-neutral-50\/45 {
  --tw-ring-color: rgba(250, 250, 250, 0.45);
}
.ring-neutral-50\/5 {
  --tw-ring-color: rgba(250, 250, 250, 0.05);
}
.ring-neutral-50\/50 {
  --tw-ring-color: rgba(250, 250, 250, 0.5);
}
.ring-neutral-50\/55 {
  --tw-ring-color: rgba(250, 250, 250, 0.55);
}
.ring-neutral-50\/60 {
  --tw-ring-color: rgba(250, 250, 250, 0.6);
}
.ring-neutral-50\/65 {
  --tw-ring-color: rgba(250, 250, 250, 0.65);
}
.ring-neutral-50\/70 {
  --tw-ring-color: rgba(250, 250, 250, 0.7);
}
.ring-neutral-50\/75 {
  --tw-ring-color: rgba(250, 250, 250, 0.75);
}
.ring-neutral-50\/80 {
  --tw-ring-color: rgba(250, 250, 250, 0.8);
}
.ring-neutral-50\/85 {
  --tw-ring-color: rgba(250, 250, 250, 0.85);
}
.ring-neutral-50\/90 {
  --tw-ring-color: rgba(250, 250, 250, 0.9);
}
.ring-neutral-50\/95 {
  --tw-ring-color: rgba(250, 250, 250, 0.95);
}
.ring-neutral-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(115, 115, 115, var(--tw-ring-opacity));
}
.ring-neutral-500\/0 {
  --tw-ring-color: rgba(115, 115, 115, 0);
}
.ring-neutral-500\/10 {
  --tw-ring-color: rgba(115, 115, 115, 0.1);
}
.ring-neutral-500\/100 {
  --tw-ring-color: rgba(115, 115, 115, 1);
}
.ring-neutral-500\/15 {
  --tw-ring-color: rgba(115, 115, 115, 0.15);
}
.ring-neutral-500\/20 {
  --tw-ring-color: rgba(115, 115, 115, 0.2);
}
.ring-neutral-500\/25 {
  --tw-ring-color: rgba(115, 115, 115, 0.25);
}
.ring-neutral-500\/30 {
  --tw-ring-color: rgba(115, 115, 115, 0.3);
}
.ring-neutral-500\/35 {
  --tw-ring-color: rgba(115, 115, 115, 0.35);
}
.ring-neutral-500\/40 {
  --tw-ring-color: rgba(115, 115, 115, 0.4);
}
.ring-neutral-500\/45 {
  --tw-ring-color: rgba(115, 115, 115, 0.45);
}
.ring-neutral-500\/5 {
  --tw-ring-color: rgba(115, 115, 115, 0.05);
}
.ring-neutral-500\/50 {
  --tw-ring-color: rgba(115, 115, 115, 0.5);
}
.ring-neutral-500\/55 {
  --tw-ring-color: rgba(115, 115, 115, 0.55);
}
.ring-neutral-500\/60 {
  --tw-ring-color: rgba(115, 115, 115, 0.6);
}
.ring-neutral-500\/65 {
  --tw-ring-color: rgba(115, 115, 115, 0.65);
}
.ring-neutral-500\/70 {
  --tw-ring-color: rgba(115, 115, 115, 0.7);
}
.ring-neutral-500\/75 {
  --tw-ring-color: rgba(115, 115, 115, 0.75);
}
.ring-neutral-500\/80 {
  --tw-ring-color: rgba(115, 115, 115, 0.8);
}
.ring-neutral-500\/85 {
  --tw-ring-color: rgba(115, 115, 115, 0.85);
}
.ring-neutral-500\/90 {
  --tw-ring-color: rgba(115, 115, 115, 0.9);
}
.ring-neutral-500\/95 {
  --tw-ring-color: rgba(115, 115, 115, 0.95);
}
.ring-neutral-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(82, 82, 82, var(--tw-ring-opacity));
}
.ring-neutral-600\/0 {
  --tw-ring-color: rgba(82, 82, 82, 0);
}
.ring-neutral-600\/10 {
  --tw-ring-color: rgba(82, 82, 82, 0.1);
}
.ring-neutral-600\/100 {
  --tw-ring-color: rgba(82, 82, 82, 1);
}
.ring-neutral-600\/15 {
  --tw-ring-color: rgba(82, 82, 82, 0.15);
}
.ring-neutral-600\/20 {
  --tw-ring-color: rgba(82, 82, 82, 0.2);
}
.ring-neutral-600\/25 {
  --tw-ring-color: rgba(82, 82, 82, 0.25);
}
.ring-neutral-600\/30 {
  --tw-ring-color: rgba(82, 82, 82, 0.3);
}
.ring-neutral-600\/35 {
  --tw-ring-color: rgba(82, 82, 82, 0.35);
}
.ring-neutral-600\/40 {
  --tw-ring-color: rgba(82, 82, 82, 0.4);
}
.ring-neutral-600\/45 {
  --tw-ring-color: rgba(82, 82, 82, 0.45);
}
.ring-neutral-600\/5 {
  --tw-ring-color: rgba(82, 82, 82, 0.05);
}
.ring-neutral-600\/50 {
  --tw-ring-color: rgba(82, 82, 82, 0.5);
}
.ring-neutral-600\/55 {
  --tw-ring-color: rgba(82, 82, 82, 0.55);
}
.ring-neutral-600\/60 {
  --tw-ring-color: rgba(82, 82, 82, 0.6);
}
.ring-neutral-600\/65 {
  --tw-ring-color: rgba(82, 82, 82, 0.65);
}
.ring-neutral-600\/70 {
  --tw-ring-color: rgba(82, 82, 82, 0.7);
}
.ring-neutral-600\/75 {
  --tw-ring-color: rgba(82, 82, 82, 0.75);
}
.ring-neutral-600\/80 {
  --tw-ring-color: rgba(82, 82, 82, 0.8);
}
.ring-neutral-600\/85 {
  --tw-ring-color: rgba(82, 82, 82, 0.85);
}
.ring-neutral-600\/90 {
  --tw-ring-color: rgba(82, 82, 82, 0.9);
}
.ring-neutral-600\/95 {
  --tw-ring-color: rgba(82, 82, 82, 0.95);
}
.ring-neutral-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(64, 64, 64, var(--tw-ring-opacity));
}
.ring-neutral-700\/0 {
  --tw-ring-color: rgba(64, 64, 64, 0);
}
.ring-neutral-700\/10 {
  --tw-ring-color: rgba(64, 64, 64, 0.1);
}
.ring-neutral-700\/100 {
  --tw-ring-color: rgba(64, 64, 64, 1);
}
.ring-neutral-700\/15 {
  --tw-ring-color: rgba(64, 64, 64, 0.15);
}
.ring-neutral-700\/20 {
  --tw-ring-color: rgba(64, 64, 64, 0.2);
}
.ring-neutral-700\/25 {
  --tw-ring-color: rgba(64, 64, 64, 0.25);
}
.ring-neutral-700\/30 {
  --tw-ring-color: rgba(64, 64, 64, 0.3);
}
.ring-neutral-700\/35 {
  --tw-ring-color: rgba(64, 64, 64, 0.35);
}
.ring-neutral-700\/40 {
  --tw-ring-color: rgba(64, 64, 64, 0.4);
}
.ring-neutral-700\/45 {
  --tw-ring-color: rgba(64, 64, 64, 0.45);
}
.ring-neutral-700\/5 {
  --tw-ring-color: rgba(64, 64, 64, 0.05);
}
.ring-neutral-700\/50 {
  --tw-ring-color: rgba(64, 64, 64, 0.5);
}
.ring-neutral-700\/55 {
  --tw-ring-color: rgba(64, 64, 64, 0.55);
}
.ring-neutral-700\/60 {
  --tw-ring-color: rgba(64, 64, 64, 0.6);
}
.ring-neutral-700\/65 {
  --tw-ring-color: rgba(64, 64, 64, 0.65);
}
.ring-neutral-700\/70 {
  --tw-ring-color: rgba(64, 64, 64, 0.7);
}
.ring-neutral-700\/75 {
  --tw-ring-color: rgba(64, 64, 64, 0.75);
}
.ring-neutral-700\/80 {
  --tw-ring-color: rgba(64, 64, 64, 0.8);
}
.ring-neutral-700\/85 {
  --tw-ring-color: rgba(64, 64, 64, 0.85);
}
.ring-neutral-700\/90 {
  --tw-ring-color: rgba(64, 64, 64, 0.9);
}
.ring-neutral-700\/95 {
  --tw-ring-color: rgba(64, 64, 64, 0.95);
}
.ring-neutral-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(38, 38, 38, var(--tw-ring-opacity));
}
.ring-neutral-800\/0 {
  --tw-ring-color: rgba(38, 38, 38, 0);
}
.ring-neutral-800\/10 {
  --tw-ring-color: rgba(38, 38, 38, 0.1);
}
.ring-neutral-800\/100 {
  --tw-ring-color: rgba(38, 38, 38, 1);
}
.ring-neutral-800\/15 {
  --tw-ring-color: rgba(38, 38, 38, 0.15);
}
.ring-neutral-800\/20 {
  --tw-ring-color: rgba(38, 38, 38, 0.2);
}
.ring-neutral-800\/25 {
  --tw-ring-color: rgba(38, 38, 38, 0.25);
}
.ring-neutral-800\/30 {
  --tw-ring-color: rgba(38, 38, 38, 0.3);
}
.ring-neutral-800\/35 {
  --tw-ring-color: rgba(38, 38, 38, 0.35);
}
.ring-neutral-800\/40 {
  --tw-ring-color: rgba(38, 38, 38, 0.4);
}
.ring-neutral-800\/45 {
  --tw-ring-color: rgba(38, 38, 38, 0.45);
}
.ring-neutral-800\/5 {
  --tw-ring-color: rgba(38, 38, 38, 0.05);
}
.ring-neutral-800\/50 {
  --tw-ring-color: rgba(38, 38, 38, 0.5);
}
.ring-neutral-800\/55 {
  --tw-ring-color: rgba(38, 38, 38, 0.55);
}
.ring-neutral-800\/60 {
  --tw-ring-color: rgba(38, 38, 38, 0.6);
}
.ring-neutral-800\/65 {
  --tw-ring-color: rgba(38, 38, 38, 0.65);
}
.ring-neutral-800\/70 {
  --tw-ring-color: rgba(38, 38, 38, 0.7);
}
.ring-neutral-800\/75 {
  --tw-ring-color: rgba(38, 38, 38, 0.75);
}
.ring-neutral-800\/80 {
  --tw-ring-color: rgba(38, 38, 38, 0.8);
}
.ring-neutral-800\/85 {
  --tw-ring-color: rgba(38, 38, 38, 0.85);
}
.ring-neutral-800\/90 {
  --tw-ring-color: rgba(38, 38, 38, 0.9);
}
.ring-neutral-800\/95 {
  --tw-ring-color: rgba(38, 38, 38, 0.95);
}
.ring-neutral-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(23, 23, 23, var(--tw-ring-opacity));
}
.ring-neutral-900\/0 {
  --tw-ring-color: rgba(23, 23, 23, 0);
}
.ring-neutral-900\/10 {
  --tw-ring-color: rgba(23, 23, 23, 0.1);
}
.ring-neutral-900\/100 {
  --tw-ring-color: rgba(23, 23, 23, 1);
}
.ring-neutral-900\/15 {
  --tw-ring-color: rgba(23, 23, 23, 0.15);
}
.ring-neutral-900\/20 {
  --tw-ring-color: rgba(23, 23, 23, 0.2);
}
.ring-neutral-900\/25 {
  --tw-ring-color: rgba(23, 23, 23, 0.25);
}
.ring-neutral-900\/30 {
  --tw-ring-color: rgba(23, 23, 23, 0.3);
}
.ring-neutral-900\/35 {
  --tw-ring-color: rgba(23, 23, 23, 0.35);
}
.ring-neutral-900\/40 {
  --tw-ring-color: rgba(23, 23, 23, 0.4);
}
.ring-neutral-900\/45 {
  --tw-ring-color: rgba(23, 23, 23, 0.45);
}
.ring-neutral-900\/5 {
  --tw-ring-color: rgba(23, 23, 23, 0.05);
}
.ring-neutral-900\/50 {
  --tw-ring-color: rgba(23, 23, 23, 0.5);
}
.ring-neutral-900\/55 {
  --tw-ring-color: rgba(23, 23, 23, 0.55);
}
.ring-neutral-900\/60 {
  --tw-ring-color: rgba(23, 23, 23, 0.6);
}
.ring-neutral-900\/65 {
  --tw-ring-color: rgba(23, 23, 23, 0.65);
}
.ring-neutral-900\/70 {
  --tw-ring-color: rgba(23, 23, 23, 0.7);
}
.ring-neutral-900\/75 {
  --tw-ring-color: rgba(23, 23, 23, 0.75);
}
.ring-neutral-900\/80 {
  --tw-ring-color: rgba(23, 23, 23, 0.8);
}
.ring-neutral-900\/85 {
  --tw-ring-color: rgba(23, 23, 23, 0.85);
}
.ring-neutral-900\/90 {
  --tw-ring-color: rgba(23, 23, 23, 0.9);
}
.ring-neutral-900\/95 {
  --tw-ring-color: rgba(23, 23, 23, 0.95);
}
.ring-neutral-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(10, 10, 10, var(--tw-ring-opacity));
}
.ring-neutral-950\/0 {
  --tw-ring-color: rgba(10, 10, 10, 0);
}
.ring-neutral-950\/10 {
  --tw-ring-color: rgba(10, 10, 10, 0.1);
}
.ring-neutral-950\/100 {
  --tw-ring-color: rgba(10, 10, 10, 1);
}
.ring-neutral-950\/15 {
  --tw-ring-color: rgba(10, 10, 10, 0.15);
}
.ring-neutral-950\/20 {
  --tw-ring-color: rgba(10, 10, 10, 0.2);
}
.ring-neutral-950\/25 {
  --tw-ring-color: rgba(10, 10, 10, 0.25);
}
.ring-neutral-950\/30 {
  --tw-ring-color: rgba(10, 10, 10, 0.3);
}
.ring-neutral-950\/35 {
  --tw-ring-color: rgba(10, 10, 10, 0.35);
}
.ring-neutral-950\/40 {
  --tw-ring-color: rgba(10, 10, 10, 0.4);
}
.ring-neutral-950\/45 {
  --tw-ring-color: rgba(10, 10, 10, 0.45);
}
.ring-neutral-950\/5 {
  --tw-ring-color: rgba(10, 10, 10, 0.05);
}
.ring-neutral-950\/50 {
  --tw-ring-color: rgba(10, 10, 10, 0.5);
}
.ring-neutral-950\/55 {
  --tw-ring-color: rgba(10, 10, 10, 0.55);
}
.ring-neutral-950\/60 {
  --tw-ring-color: rgba(10, 10, 10, 0.6);
}
.ring-neutral-950\/65 {
  --tw-ring-color: rgba(10, 10, 10, 0.65);
}
.ring-neutral-950\/70 {
  --tw-ring-color: rgba(10, 10, 10, 0.7);
}
.ring-neutral-950\/75 {
  --tw-ring-color: rgba(10, 10, 10, 0.75);
}
.ring-neutral-950\/80 {
  --tw-ring-color: rgba(10, 10, 10, 0.8);
}
.ring-neutral-950\/85 {
  --tw-ring-color: rgba(10, 10, 10, 0.85);
}
.ring-neutral-950\/90 {
  --tw-ring-color: rgba(10, 10, 10, 0.9);
}
.ring-neutral-950\/95 {
  --tw-ring-color: rgba(10, 10, 10, 0.95);
}
.ring-neutral-content {
  --tw-ring-opacity: 1;
  --tw-ring-color: var(--fallback-nc,oklch(var(--nc)/var(--tw-ring-opacity)));
}
.ring-neutral-content\/0 {
  --tw-ring-color: var(--fallback-nc,oklch(var(--nc)/0));
}
.ring-neutral-content\/10 {
  --tw-ring-color: var(--fallback-nc,oklch(var(--nc)/0.1));
}
.ring-neutral-content\/100 {
  --tw-ring-color: var(--fallback-nc,oklch(var(--nc)/1));
}
.ring-neutral-content\/15 {
  --tw-ring-color: var(--fallback-nc,oklch(var(--nc)/0.15));
}
.ring-neutral-content\/20 {
  --tw-ring-color: var(--fallback-nc,oklch(var(--nc)/0.2));
}
.ring-neutral-content\/25 {
  --tw-ring-color: var(--fallback-nc,oklch(var(--nc)/0.25));
}
.ring-neutral-content\/30 {
  --tw-ring-color: var(--fallback-nc,oklch(var(--nc)/0.3));
}
.ring-neutral-content\/35 {
  --tw-ring-color: var(--fallback-nc,oklch(var(--nc)/0.35));
}
.ring-neutral-content\/40 {
  --tw-ring-color: var(--fallback-nc,oklch(var(--nc)/0.4));
}
.ring-neutral-content\/45 {
  --tw-ring-color: var(--fallback-nc,oklch(var(--nc)/0.45));
}
.ring-neutral-content\/5 {
  --tw-ring-color: var(--fallback-nc,oklch(var(--nc)/0.05));
}
.ring-neutral-content\/50 {
  --tw-ring-color: var(--fallback-nc,oklch(var(--nc)/0.5));
}
.ring-neutral-content\/55 {
  --tw-ring-color: var(--fallback-nc,oklch(var(--nc)/0.55));
}
.ring-neutral-content\/60 {
  --tw-ring-color: var(--fallback-nc,oklch(var(--nc)/0.6));
}
.ring-neutral-content\/65 {
  --tw-ring-color: var(--fallback-nc,oklch(var(--nc)/0.65));
}
.ring-neutral-content\/70 {
  --tw-ring-color: var(--fallback-nc,oklch(var(--nc)/0.7));
}
.ring-neutral-content\/75 {
  --tw-ring-color: var(--fallback-nc,oklch(var(--nc)/0.75));
}
.ring-neutral-content\/80 {
  --tw-ring-color: var(--fallback-nc,oklch(var(--nc)/0.8));
}
.ring-neutral-content\/85 {
  --tw-ring-color: var(--fallback-nc,oklch(var(--nc)/0.85));
}
.ring-neutral-content\/90 {
  --tw-ring-color: var(--fallback-nc,oklch(var(--nc)/0.9));
}
.ring-neutral-content\/95 {
  --tw-ring-color: var(--fallback-nc,oklch(var(--nc)/0.95));
}
.ring-neutral\/0 {
  --tw-ring-color: var(--fallback-n,oklch(var(--n)/0));
}
.ring-neutral\/10 {
  --tw-ring-color: var(--fallback-n,oklch(var(--n)/0.1));
}
.ring-neutral\/100 {
  --tw-ring-color: var(--fallback-n,oklch(var(--n)/1));
}
.ring-neutral\/15 {
  --tw-ring-color: var(--fallback-n,oklch(var(--n)/0.15));
}
.ring-neutral\/20 {
  --tw-ring-color: var(--fallback-n,oklch(var(--n)/0.2));
}
.ring-neutral\/25 {
  --tw-ring-color: var(--fallback-n,oklch(var(--n)/0.25));
}
.ring-neutral\/30 {
  --tw-ring-color: var(--fallback-n,oklch(var(--n)/0.3));
}
.ring-neutral\/35 {
  --tw-ring-color: var(--fallback-n,oklch(var(--n)/0.35));
}
.ring-neutral\/40 {
  --tw-ring-color: var(--fallback-n,oklch(var(--n)/0.4));
}
.ring-neutral\/45 {
  --tw-ring-color: var(--fallback-n,oklch(var(--n)/0.45));
}
.ring-neutral\/5 {
  --tw-ring-color: var(--fallback-n,oklch(var(--n)/0.05));
}
.ring-neutral\/50 {
  --tw-ring-color: var(--fallback-n,oklch(var(--n)/0.5));
}
.ring-neutral\/55 {
  --tw-ring-color: var(--fallback-n,oklch(var(--n)/0.55));
}
.ring-neutral\/60 {
  --tw-ring-color: var(--fallback-n,oklch(var(--n)/0.6));
}
.ring-neutral\/65 {
  --tw-ring-color: var(--fallback-n,oklch(var(--n)/0.65));
}
.ring-neutral\/70 {
  --tw-ring-color: var(--fallback-n,oklch(var(--n)/0.7));
}
.ring-neutral\/75 {
  --tw-ring-color: var(--fallback-n,oklch(var(--n)/0.75));
}
.ring-neutral\/80 {
  --tw-ring-color: var(--fallback-n,oklch(var(--n)/0.8));
}
.ring-neutral\/85 {
  --tw-ring-color: var(--fallback-n,oklch(var(--n)/0.85));
}
.ring-neutral\/90 {
  --tw-ring-color: var(--fallback-n,oklch(var(--n)/0.9));
}
.ring-neutral\/95 {
  --tw-ring-color: var(--fallback-n,oklch(var(--n)/0.95));
}
.ring-orange-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(255, 237, 213, var(--tw-ring-opacity));
}
.ring-orange-100\/0 {
  --tw-ring-color: rgba(255, 237, 213, 0);
}
.ring-orange-100\/10 {
  --tw-ring-color: rgba(255, 237, 213, 0.1);
}
.ring-orange-100\/100 {
  --tw-ring-color: rgba(255, 237, 213, 1);
}
.ring-orange-100\/15 {
  --tw-ring-color: rgba(255, 237, 213, 0.15);
}
.ring-orange-100\/20 {
  --tw-ring-color: rgba(255, 237, 213, 0.2);
}
.ring-orange-100\/25 {
  --tw-ring-color: rgba(255, 237, 213, 0.25);
}
.ring-orange-100\/30 {
  --tw-ring-color: rgba(255, 237, 213, 0.3);
}
.ring-orange-100\/35 {
  --tw-ring-color: rgba(255, 237, 213, 0.35);
}
.ring-orange-100\/40 {
  --tw-ring-color: rgba(255, 237, 213, 0.4);
}
.ring-orange-100\/45 {
  --tw-ring-color: rgba(255, 237, 213, 0.45);
}
.ring-orange-100\/5 {
  --tw-ring-color: rgba(255, 237, 213, 0.05);
}
.ring-orange-100\/50 {
  --tw-ring-color: rgba(255, 237, 213, 0.5);
}
.ring-orange-100\/55 {
  --tw-ring-color: rgba(255, 237, 213, 0.55);
}
.ring-orange-100\/60 {
  --tw-ring-color: rgba(255, 237, 213, 0.6);
}
.ring-orange-100\/65 {
  --tw-ring-color: rgba(255, 237, 213, 0.65);
}
.ring-orange-100\/70 {
  --tw-ring-color: rgba(255, 237, 213, 0.7);
}
.ring-orange-100\/75 {
  --tw-ring-color: rgba(255, 237, 213, 0.75);
}
.ring-orange-100\/80 {
  --tw-ring-color: rgba(255, 237, 213, 0.8);
}
.ring-orange-100\/85 {
  --tw-ring-color: rgba(255, 237, 213, 0.85);
}
.ring-orange-100\/90 {
  --tw-ring-color: rgba(255, 237, 213, 0.9);
}
.ring-orange-100\/95 {
  --tw-ring-color: rgba(255, 237, 213, 0.95);
}
.ring-orange-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(254, 215, 170, var(--tw-ring-opacity));
}
.ring-orange-200\/0 {
  --tw-ring-color: rgba(254, 215, 170, 0);
}
.ring-orange-200\/10 {
  --tw-ring-color: rgba(254, 215, 170, 0.1);
}
.ring-orange-200\/100 {
  --tw-ring-color: rgba(254, 215, 170, 1);
}
.ring-orange-200\/15 {
  --tw-ring-color: rgba(254, 215, 170, 0.15);
}
.ring-orange-200\/20 {
  --tw-ring-color: rgba(254, 215, 170, 0.2);
}
.ring-orange-200\/25 {
  --tw-ring-color: rgba(254, 215, 170, 0.25);
}
.ring-orange-200\/30 {
  --tw-ring-color: rgba(254, 215, 170, 0.3);
}
.ring-orange-200\/35 {
  --tw-ring-color: rgba(254, 215, 170, 0.35);
}
.ring-orange-200\/40 {
  --tw-ring-color: rgba(254, 215, 170, 0.4);
}
.ring-orange-200\/45 {
  --tw-ring-color: rgba(254, 215, 170, 0.45);
}
.ring-orange-200\/5 {
  --tw-ring-color: rgba(254, 215, 170, 0.05);
}
.ring-orange-200\/50 {
  --tw-ring-color: rgba(254, 215, 170, 0.5);
}
.ring-orange-200\/55 {
  --tw-ring-color: rgba(254, 215, 170, 0.55);
}
.ring-orange-200\/60 {
  --tw-ring-color: rgba(254, 215, 170, 0.6);
}
.ring-orange-200\/65 {
  --tw-ring-color: rgba(254, 215, 170, 0.65);
}
.ring-orange-200\/70 {
  --tw-ring-color: rgba(254, 215, 170, 0.7);
}
.ring-orange-200\/75 {
  --tw-ring-color: rgba(254, 215, 170, 0.75);
}
.ring-orange-200\/80 {
  --tw-ring-color: rgba(254, 215, 170, 0.8);
}
.ring-orange-200\/85 {
  --tw-ring-color: rgba(254, 215, 170, 0.85);
}
.ring-orange-200\/90 {
  --tw-ring-color: rgba(254, 215, 170, 0.9);
}
.ring-orange-200\/95 {
  --tw-ring-color: rgba(254, 215, 170, 0.95);
}
.ring-orange-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(253, 186, 116, var(--tw-ring-opacity));
}
.ring-orange-300\/0 {
  --tw-ring-color: rgba(253, 186, 116, 0);
}
.ring-orange-300\/10 {
  --tw-ring-color: rgba(253, 186, 116, 0.1);
}
.ring-orange-300\/100 {
  --tw-ring-color: rgba(253, 186, 116, 1);
}
.ring-orange-300\/15 {
  --tw-ring-color: rgba(253, 186, 116, 0.15);
}
.ring-orange-300\/20 {
  --tw-ring-color: rgba(253, 186, 116, 0.2);
}
.ring-orange-300\/25 {
  --tw-ring-color: rgba(253, 186, 116, 0.25);
}
.ring-orange-300\/30 {
  --tw-ring-color: rgba(253, 186, 116, 0.3);
}
.ring-orange-300\/35 {
  --tw-ring-color: rgba(253, 186, 116, 0.35);
}
.ring-orange-300\/40 {
  --tw-ring-color: rgba(253, 186, 116, 0.4);
}
.ring-orange-300\/45 {
  --tw-ring-color: rgba(253, 186, 116, 0.45);
}
.ring-orange-300\/5 {
  --tw-ring-color: rgba(253, 186, 116, 0.05);
}
.ring-orange-300\/50 {
  --tw-ring-color: rgba(253, 186, 116, 0.5);
}
.ring-orange-300\/55 {
  --tw-ring-color: rgba(253, 186, 116, 0.55);
}
.ring-orange-300\/60 {
  --tw-ring-color: rgba(253, 186, 116, 0.6);
}
.ring-orange-300\/65 {
  --tw-ring-color: rgba(253, 186, 116, 0.65);
}
.ring-orange-300\/70 {
  --tw-ring-color: rgba(253, 186, 116, 0.7);
}
.ring-orange-300\/75 {
  --tw-ring-color: rgba(253, 186, 116, 0.75);
}
.ring-orange-300\/80 {
  --tw-ring-color: rgba(253, 186, 116, 0.8);
}
.ring-orange-300\/85 {
  --tw-ring-color: rgba(253, 186, 116, 0.85);
}
.ring-orange-300\/90 {
  --tw-ring-color: rgba(253, 186, 116, 0.9);
}
.ring-orange-300\/95 {
  --tw-ring-color: rgba(253, 186, 116, 0.95);
}
.ring-orange-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(251, 146, 60, var(--tw-ring-opacity));
}
.ring-orange-400\/0 {
  --tw-ring-color: rgba(251, 146, 60, 0);
}
.ring-orange-400\/10 {
  --tw-ring-color: rgba(251, 146, 60, 0.1);
}
.ring-orange-400\/100 {
  --tw-ring-color: rgba(251, 146, 60, 1);
}
.ring-orange-400\/15 {
  --tw-ring-color: rgba(251, 146, 60, 0.15);
}
.ring-orange-400\/20 {
  --tw-ring-color: rgba(251, 146, 60, 0.2);
}
.ring-orange-400\/25 {
  --tw-ring-color: rgba(251, 146, 60, 0.25);
}
.ring-orange-400\/30 {
  --tw-ring-color: rgba(251, 146, 60, 0.3);
}
.ring-orange-400\/35 {
  --tw-ring-color: rgba(251, 146, 60, 0.35);
}
.ring-orange-400\/40 {
  --tw-ring-color: rgba(251, 146, 60, 0.4);
}
.ring-orange-400\/45 {
  --tw-ring-color: rgba(251, 146, 60, 0.45);
}
.ring-orange-400\/5 {
  --tw-ring-color: rgba(251, 146, 60, 0.05);
}
.ring-orange-400\/50 {
  --tw-ring-color: rgba(251, 146, 60, 0.5);
}
.ring-orange-400\/55 {
  --tw-ring-color: rgba(251, 146, 60, 0.55);
}
.ring-orange-400\/60 {
  --tw-ring-color: rgba(251, 146, 60, 0.6);
}
.ring-orange-400\/65 {
  --tw-ring-color: rgba(251, 146, 60, 0.65);
}
.ring-orange-400\/70 {
  --tw-ring-color: rgba(251, 146, 60, 0.7);
}
.ring-orange-400\/75 {
  --tw-ring-color: rgba(251, 146, 60, 0.75);
}
.ring-orange-400\/80 {
  --tw-ring-color: rgba(251, 146, 60, 0.8);
}
.ring-orange-400\/85 {
  --tw-ring-color: rgba(251, 146, 60, 0.85);
}
.ring-orange-400\/90 {
  --tw-ring-color: rgba(251, 146, 60, 0.9);
}
.ring-orange-400\/95 {
  --tw-ring-color: rgba(251, 146, 60, 0.95);
}
.ring-orange-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(255, 247, 237, var(--tw-ring-opacity));
}
.ring-orange-50\/0 {
  --tw-ring-color: rgba(255, 247, 237, 0);
}
.ring-orange-50\/10 {
  --tw-ring-color: rgba(255, 247, 237, 0.1);
}
.ring-orange-50\/100 {
  --tw-ring-color: rgba(255, 247, 237, 1);
}
.ring-orange-50\/15 {
  --tw-ring-color: rgba(255, 247, 237, 0.15);
}
.ring-orange-50\/20 {
  --tw-ring-color: rgba(255, 247, 237, 0.2);
}
.ring-orange-50\/25 {
  --tw-ring-color: rgba(255, 247, 237, 0.25);
}
.ring-orange-50\/30 {
  --tw-ring-color: rgba(255, 247, 237, 0.3);
}
.ring-orange-50\/35 {
  --tw-ring-color: rgba(255, 247, 237, 0.35);
}
.ring-orange-50\/40 {
  --tw-ring-color: rgba(255, 247, 237, 0.4);
}
.ring-orange-50\/45 {
  --tw-ring-color: rgba(255, 247, 237, 0.45);
}
.ring-orange-50\/5 {
  --tw-ring-color: rgba(255, 247, 237, 0.05);
}
.ring-orange-50\/50 {
  --tw-ring-color: rgba(255, 247, 237, 0.5);
}
.ring-orange-50\/55 {
  --tw-ring-color: rgba(255, 247, 237, 0.55);
}
.ring-orange-50\/60 {
  --tw-ring-color: rgba(255, 247, 237, 0.6);
}
.ring-orange-50\/65 {
  --tw-ring-color: rgba(255, 247, 237, 0.65);
}
.ring-orange-50\/70 {
  --tw-ring-color: rgba(255, 247, 237, 0.7);
}
.ring-orange-50\/75 {
  --tw-ring-color: rgba(255, 247, 237, 0.75);
}
.ring-orange-50\/80 {
  --tw-ring-color: rgba(255, 247, 237, 0.8);
}
.ring-orange-50\/85 {
  --tw-ring-color: rgba(255, 247, 237, 0.85);
}
.ring-orange-50\/90 {
  --tw-ring-color: rgba(255, 247, 237, 0.9);
}
.ring-orange-50\/95 {
  --tw-ring-color: rgba(255, 247, 237, 0.95);
}
.ring-orange-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(249, 115, 22, var(--tw-ring-opacity));
}
.ring-orange-500\/0 {
  --tw-ring-color: rgba(249, 115, 22, 0);
}
.ring-orange-500\/10 {
  --tw-ring-color: rgba(249, 115, 22, 0.1);
}
.ring-orange-500\/100 {
  --tw-ring-color: rgba(249, 115, 22, 1);
}
.ring-orange-500\/15 {
  --tw-ring-color: rgba(249, 115, 22, 0.15);
}
.ring-orange-500\/20 {
  --tw-ring-color: rgba(249, 115, 22, 0.2);
}
.ring-orange-500\/25 {
  --tw-ring-color: rgba(249, 115, 22, 0.25);
}
.ring-orange-500\/30 {
  --tw-ring-color: rgba(249, 115, 22, 0.3);
}
.ring-orange-500\/35 {
  --tw-ring-color: rgba(249, 115, 22, 0.35);
}
.ring-orange-500\/40 {
  --tw-ring-color: rgba(249, 115, 22, 0.4);
}
.ring-orange-500\/45 {
  --tw-ring-color: rgba(249, 115, 22, 0.45);
}
.ring-orange-500\/5 {
  --tw-ring-color: rgba(249, 115, 22, 0.05);
}
.ring-orange-500\/50 {
  --tw-ring-color: rgba(249, 115, 22, 0.5);
}
.ring-orange-500\/55 {
  --tw-ring-color: rgba(249, 115, 22, 0.55);
}
.ring-orange-500\/60 {
  --tw-ring-color: rgba(249, 115, 22, 0.6);
}
.ring-orange-500\/65 {
  --tw-ring-color: rgba(249, 115, 22, 0.65);
}
.ring-orange-500\/70 {
  --tw-ring-color: rgba(249, 115, 22, 0.7);
}
.ring-orange-500\/75 {
  --tw-ring-color: rgba(249, 115, 22, 0.75);
}
.ring-orange-500\/80 {
  --tw-ring-color: rgba(249, 115, 22, 0.8);
}
.ring-orange-500\/85 {
  --tw-ring-color: rgba(249, 115, 22, 0.85);
}
.ring-orange-500\/90 {
  --tw-ring-color: rgba(249, 115, 22, 0.9);
}
.ring-orange-500\/95 {
  --tw-ring-color: rgba(249, 115, 22, 0.95);
}
.ring-orange-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(234, 88, 12, var(--tw-ring-opacity));
}
.ring-orange-600\/0 {
  --tw-ring-color: rgba(234, 88, 12, 0);
}
.ring-orange-600\/10 {
  --tw-ring-color: rgba(234, 88, 12, 0.1);
}
.ring-orange-600\/100 {
  --tw-ring-color: rgba(234, 88, 12, 1);
}
.ring-orange-600\/15 {
  --tw-ring-color: rgba(234, 88, 12, 0.15);
}
.ring-orange-600\/20 {
  --tw-ring-color: rgba(234, 88, 12, 0.2);
}
.ring-orange-600\/25 {
  --tw-ring-color: rgba(234, 88, 12, 0.25);
}
.ring-orange-600\/30 {
  --tw-ring-color: rgba(234, 88, 12, 0.3);
}
.ring-orange-600\/35 {
  --tw-ring-color: rgba(234, 88, 12, 0.35);
}
.ring-orange-600\/40 {
  --tw-ring-color: rgba(234, 88, 12, 0.4);
}
.ring-orange-600\/45 {
  --tw-ring-color: rgba(234, 88, 12, 0.45);
}
.ring-orange-600\/5 {
  --tw-ring-color: rgba(234, 88, 12, 0.05);
}
.ring-orange-600\/50 {
  --tw-ring-color: rgba(234, 88, 12, 0.5);
}
.ring-orange-600\/55 {
  --tw-ring-color: rgba(234, 88, 12, 0.55);
}
.ring-orange-600\/60 {
  --tw-ring-color: rgba(234, 88, 12, 0.6);
}
.ring-orange-600\/65 {
  --tw-ring-color: rgba(234, 88, 12, 0.65);
}
.ring-orange-600\/70 {
  --tw-ring-color: rgba(234, 88, 12, 0.7);
}
.ring-orange-600\/75 {
  --tw-ring-color: rgba(234, 88, 12, 0.75);
}
.ring-orange-600\/80 {
  --tw-ring-color: rgba(234, 88, 12, 0.8);
}
.ring-orange-600\/85 {
  --tw-ring-color: rgba(234, 88, 12, 0.85);
}
.ring-orange-600\/90 {
  --tw-ring-color: rgba(234, 88, 12, 0.9);
}
.ring-orange-600\/95 {
  --tw-ring-color: rgba(234, 88, 12, 0.95);
}
.ring-orange-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(194, 65, 12, var(--tw-ring-opacity));
}
.ring-orange-700\/0 {
  --tw-ring-color: rgba(194, 65, 12, 0);
}
.ring-orange-700\/10 {
  --tw-ring-color: rgba(194, 65, 12, 0.1);
}
.ring-orange-700\/100 {
  --tw-ring-color: rgba(194, 65, 12, 1);
}
.ring-orange-700\/15 {
  --tw-ring-color: rgba(194, 65, 12, 0.15);
}
.ring-orange-700\/20 {
  --tw-ring-color: rgba(194, 65, 12, 0.2);
}
.ring-orange-700\/25 {
  --tw-ring-color: rgba(194, 65, 12, 0.25);
}
.ring-orange-700\/30 {
  --tw-ring-color: rgba(194, 65, 12, 0.3);
}
.ring-orange-700\/35 {
  --tw-ring-color: rgba(194, 65, 12, 0.35);
}
.ring-orange-700\/40 {
  --tw-ring-color: rgba(194, 65, 12, 0.4);
}
.ring-orange-700\/45 {
  --tw-ring-color: rgba(194, 65, 12, 0.45);
}
.ring-orange-700\/5 {
  --tw-ring-color: rgba(194, 65, 12, 0.05);
}
.ring-orange-700\/50 {
  --tw-ring-color: rgba(194, 65, 12, 0.5);
}
.ring-orange-700\/55 {
  --tw-ring-color: rgba(194, 65, 12, 0.55);
}
.ring-orange-700\/60 {
  --tw-ring-color: rgba(194, 65, 12, 0.6);
}
.ring-orange-700\/65 {
  --tw-ring-color: rgba(194, 65, 12, 0.65);
}
.ring-orange-700\/70 {
  --tw-ring-color: rgba(194, 65, 12, 0.7);
}
.ring-orange-700\/75 {
  --tw-ring-color: rgba(194, 65, 12, 0.75);
}
.ring-orange-700\/80 {
  --tw-ring-color: rgba(194, 65, 12, 0.8);
}
.ring-orange-700\/85 {
  --tw-ring-color: rgba(194, 65, 12, 0.85);
}
.ring-orange-700\/90 {
  --tw-ring-color: rgba(194, 65, 12, 0.9);
}
.ring-orange-700\/95 {
  --tw-ring-color: rgba(194, 65, 12, 0.95);
}
.ring-orange-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(154, 52, 18, var(--tw-ring-opacity));
}
.ring-orange-800\/0 {
  --tw-ring-color: rgba(154, 52, 18, 0);
}
.ring-orange-800\/10 {
  --tw-ring-color: rgba(154, 52, 18, 0.1);
}
.ring-orange-800\/100 {
  --tw-ring-color: rgba(154, 52, 18, 1);
}
.ring-orange-800\/15 {
  --tw-ring-color: rgba(154, 52, 18, 0.15);
}
.ring-orange-800\/20 {
  --tw-ring-color: rgba(154, 52, 18, 0.2);
}
.ring-orange-800\/25 {
  --tw-ring-color: rgba(154, 52, 18, 0.25);
}
.ring-orange-800\/30 {
  --tw-ring-color: rgba(154, 52, 18, 0.3);
}
.ring-orange-800\/35 {
  --tw-ring-color: rgba(154, 52, 18, 0.35);
}
.ring-orange-800\/40 {
  --tw-ring-color: rgba(154, 52, 18, 0.4);
}
.ring-orange-800\/45 {
  --tw-ring-color: rgba(154, 52, 18, 0.45);
}
.ring-orange-800\/5 {
  --tw-ring-color: rgba(154, 52, 18, 0.05);
}
.ring-orange-800\/50 {
  --tw-ring-color: rgba(154, 52, 18, 0.5);
}
.ring-orange-800\/55 {
  --tw-ring-color: rgba(154, 52, 18, 0.55);
}
.ring-orange-800\/60 {
  --tw-ring-color: rgba(154, 52, 18, 0.6);
}
.ring-orange-800\/65 {
  --tw-ring-color: rgba(154, 52, 18, 0.65);
}
.ring-orange-800\/70 {
  --tw-ring-color: rgba(154, 52, 18, 0.7);
}
.ring-orange-800\/75 {
  --tw-ring-color: rgba(154, 52, 18, 0.75);
}
.ring-orange-800\/80 {
  --tw-ring-color: rgba(154, 52, 18, 0.8);
}
.ring-orange-800\/85 {
  --tw-ring-color: rgba(154, 52, 18, 0.85);
}
.ring-orange-800\/90 {
  --tw-ring-color: rgba(154, 52, 18, 0.9);
}
.ring-orange-800\/95 {
  --tw-ring-color: rgba(154, 52, 18, 0.95);
}
.ring-orange-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(124, 45, 18, var(--tw-ring-opacity));
}
.ring-orange-900\/0 {
  --tw-ring-color: rgba(124, 45, 18, 0);
}
.ring-orange-900\/10 {
  --tw-ring-color: rgba(124, 45, 18, 0.1);
}
.ring-orange-900\/100 {
  --tw-ring-color: rgba(124, 45, 18, 1);
}
.ring-orange-900\/15 {
  --tw-ring-color: rgba(124, 45, 18, 0.15);
}
.ring-orange-900\/20 {
  --tw-ring-color: rgba(124, 45, 18, 0.2);
}
.ring-orange-900\/25 {
  --tw-ring-color: rgba(124, 45, 18, 0.25);
}
.ring-orange-900\/30 {
  --tw-ring-color: rgba(124, 45, 18, 0.3);
}
.ring-orange-900\/35 {
  --tw-ring-color: rgba(124, 45, 18, 0.35);
}
.ring-orange-900\/40 {
  --tw-ring-color: rgba(124, 45, 18, 0.4);
}
.ring-orange-900\/45 {
  --tw-ring-color: rgba(124, 45, 18, 0.45);
}
.ring-orange-900\/5 {
  --tw-ring-color: rgba(124, 45, 18, 0.05);
}
.ring-orange-900\/50 {
  --tw-ring-color: rgba(124, 45, 18, 0.5);
}
.ring-orange-900\/55 {
  --tw-ring-color: rgba(124, 45, 18, 0.55);
}
.ring-orange-900\/60 {
  --tw-ring-color: rgba(124, 45, 18, 0.6);
}
.ring-orange-900\/65 {
  --tw-ring-color: rgba(124, 45, 18, 0.65);
}
.ring-orange-900\/70 {
  --tw-ring-color: rgba(124, 45, 18, 0.7);
}
.ring-orange-900\/75 {
  --tw-ring-color: rgba(124, 45, 18, 0.75);
}
.ring-orange-900\/80 {
  --tw-ring-color: rgba(124, 45, 18, 0.8);
}
.ring-orange-900\/85 {
  --tw-ring-color: rgba(124, 45, 18, 0.85);
}
.ring-orange-900\/90 {
  --tw-ring-color: rgba(124, 45, 18, 0.9);
}
.ring-orange-900\/95 {
  --tw-ring-color: rgba(124, 45, 18, 0.95);
}
.ring-orange-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(67, 20, 7, var(--tw-ring-opacity));
}
.ring-orange-950\/0 {
  --tw-ring-color: rgba(67, 20, 7, 0);
}
.ring-orange-950\/10 {
  --tw-ring-color: rgba(67, 20, 7, 0.1);
}
.ring-orange-950\/100 {
  --tw-ring-color: rgba(67, 20, 7, 1);
}
.ring-orange-950\/15 {
  --tw-ring-color: rgba(67, 20, 7, 0.15);
}
.ring-orange-950\/20 {
  --tw-ring-color: rgba(67, 20, 7, 0.2);
}
.ring-orange-950\/25 {
  --tw-ring-color: rgba(67, 20, 7, 0.25);
}
.ring-orange-950\/30 {
  --tw-ring-color: rgba(67, 20, 7, 0.3);
}
.ring-orange-950\/35 {
  --tw-ring-color: rgba(67, 20, 7, 0.35);
}
.ring-orange-950\/40 {
  --tw-ring-color: rgba(67, 20, 7, 0.4);
}
.ring-orange-950\/45 {
  --tw-ring-color: rgba(67, 20, 7, 0.45);
}
.ring-orange-950\/5 {
  --tw-ring-color: rgba(67, 20, 7, 0.05);
}
.ring-orange-950\/50 {
  --tw-ring-color: rgba(67, 20, 7, 0.5);
}
.ring-orange-950\/55 {
  --tw-ring-color: rgba(67, 20, 7, 0.55);
}
.ring-orange-950\/60 {
  --tw-ring-color: rgba(67, 20, 7, 0.6);
}
.ring-orange-950\/65 {
  --tw-ring-color: rgba(67, 20, 7, 0.65);
}
.ring-orange-950\/70 {
  --tw-ring-color: rgba(67, 20, 7, 0.7);
}
.ring-orange-950\/75 {
  --tw-ring-color: rgba(67, 20, 7, 0.75);
}
.ring-orange-950\/80 {
  --tw-ring-color: rgba(67, 20, 7, 0.8);
}
.ring-orange-950\/85 {
  --tw-ring-color: rgba(67, 20, 7, 0.85);
}
.ring-orange-950\/90 {
  --tw-ring-color: rgba(67, 20, 7, 0.9);
}
.ring-orange-950\/95 {
  --tw-ring-color: rgba(67, 20, 7, 0.95);
}
.ring-pink-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity));
}
.ring-pink-100\/0 {
  --tw-ring-color: rgba(252, 231, 243, 0);
}
.ring-pink-100\/10 {
  --tw-ring-color: rgba(252, 231, 243, 0.1);
}
.ring-pink-100\/100 {
  --tw-ring-color: rgba(252, 231, 243, 1);
}
.ring-pink-100\/15 {
  --tw-ring-color: rgba(252, 231, 243, 0.15);
}
.ring-pink-100\/20 {
  --tw-ring-color: rgba(252, 231, 243, 0.2);
}
.ring-pink-100\/25 {
  --tw-ring-color: rgba(252, 231, 243, 0.25);
}
.ring-pink-100\/30 {
  --tw-ring-color: rgba(252, 231, 243, 0.3);
}
.ring-pink-100\/35 {
  --tw-ring-color: rgba(252, 231, 243, 0.35);
}
.ring-pink-100\/40 {
  --tw-ring-color: rgba(252, 231, 243, 0.4);
}
.ring-pink-100\/45 {
  --tw-ring-color: rgba(252, 231, 243, 0.45);
}
.ring-pink-100\/5 {
  --tw-ring-color: rgba(252, 231, 243, 0.05);
}
.ring-pink-100\/50 {
  --tw-ring-color: rgba(252, 231, 243, 0.5);
}
.ring-pink-100\/55 {
  --tw-ring-color: rgba(252, 231, 243, 0.55);
}
.ring-pink-100\/60 {
  --tw-ring-color: rgba(252, 231, 243, 0.6);
}
.ring-pink-100\/65 {
  --tw-ring-color: rgba(252, 231, 243, 0.65);
}
.ring-pink-100\/70 {
  --tw-ring-color: rgba(252, 231, 243, 0.7);
}
.ring-pink-100\/75 {
  --tw-ring-color: rgba(252, 231, 243, 0.75);
}
.ring-pink-100\/80 {
  --tw-ring-color: rgba(252, 231, 243, 0.8);
}
.ring-pink-100\/85 {
  --tw-ring-color: rgba(252, 231, 243, 0.85);
}
.ring-pink-100\/90 {
  --tw-ring-color: rgba(252, 231, 243, 0.9);
}
.ring-pink-100\/95 {
  --tw-ring-color: rgba(252, 231, 243, 0.95);
}
.ring-pink-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity));
}
.ring-pink-200\/0 {
  --tw-ring-color: rgba(251, 207, 232, 0);
}
.ring-pink-200\/10 {
  --tw-ring-color: rgba(251, 207, 232, 0.1);
}
.ring-pink-200\/100 {
  --tw-ring-color: rgba(251, 207, 232, 1);
}
.ring-pink-200\/15 {
  --tw-ring-color: rgba(251, 207, 232, 0.15);
}
.ring-pink-200\/20 {
  --tw-ring-color: rgba(251, 207, 232, 0.2);
}
.ring-pink-200\/25 {
  --tw-ring-color: rgba(251, 207, 232, 0.25);
}
.ring-pink-200\/30 {
  --tw-ring-color: rgba(251, 207, 232, 0.3);
}
.ring-pink-200\/35 {
  --tw-ring-color: rgba(251, 207, 232, 0.35);
}
.ring-pink-200\/40 {
  --tw-ring-color: rgba(251, 207, 232, 0.4);
}
.ring-pink-200\/45 {
  --tw-ring-color: rgba(251, 207, 232, 0.45);
}
.ring-pink-200\/5 {
  --tw-ring-color: rgba(251, 207, 232, 0.05);
}
.ring-pink-200\/50 {
  --tw-ring-color: rgba(251, 207, 232, 0.5);
}
.ring-pink-200\/55 {
  --tw-ring-color: rgba(251, 207, 232, 0.55);
}
.ring-pink-200\/60 {
  --tw-ring-color: rgba(251, 207, 232, 0.6);
}
.ring-pink-200\/65 {
  --tw-ring-color: rgba(251, 207, 232, 0.65);
}
.ring-pink-200\/70 {
  --tw-ring-color: rgba(251, 207, 232, 0.7);
}
.ring-pink-200\/75 {
  --tw-ring-color: rgba(251, 207, 232, 0.75);
}
.ring-pink-200\/80 {
  --tw-ring-color: rgba(251, 207, 232, 0.8);
}
.ring-pink-200\/85 {
  --tw-ring-color: rgba(251, 207, 232, 0.85);
}
.ring-pink-200\/90 {
  --tw-ring-color: rgba(251, 207, 232, 0.9);
}
.ring-pink-200\/95 {
  --tw-ring-color: rgba(251, 207, 232, 0.95);
}
.ring-pink-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity));
}
.ring-pink-300\/0 {
  --tw-ring-color: rgba(249, 168, 212, 0);
}
.ring-pink-300\/10 {
  --tw-ring-color: rgba(249, 168, 212, 0.1);
}
.ring-pink-300\/100 {
  --tw-ring-color: rgba(249, 168, 212, 1);
}
.ring-pink-300\/15 {
  --tw-ring-color: rgba(249, 168, 212, 0.15);
}
.ring-pink-300\/20 {
  --tw-ring-color: rgba(249, 168, 212, 0.2);
}
.ring-pink-300\/25 {
  --tw-ring-color: rgba(249, 168, 212, 0.25);
}
.ring-pink-300\/30 {
  --tw-ring-color: rgba(249, 168, 212, 0.3);
}
.ring-pink-300\/35 {
  --tw-ring-color: rgba(249, 168, 212, 0.35);
}
.ring-pink-300\/40 {
  --tw-ring-color: rgba(249, 168, 212, 0.4);
}
.ring-pink-300\/45 {
  --tw-ring-color: rgba(249, 168, 212, 0.45);
}
.ring-pink-300\/5 {
  --tw-ring-color: rgba(249, 168, 212, 0.05);
}
.ring-pink-300\/50 {
  --tw-ring-color: rgba(249, 168, 212, 0.5);
}
.ring-pink-300\/55 {
  --tw-ring-color: rgba(249, 168, 212, 0.55);
}
.ring-pink-300\/60 {
  --tw-ring-color: rgba(249, 168, 212, 0.6);
}
.ring-pink-300\/65 {
  --tw-ring-color: rgba(249, 168, 212, 0.65);
}
.ring-pink-300\/70 {
  --tw-ring-color: rgba(249, 168, 212, 0.7);
}
.ring-pink-300\/75 {
  --tw-ring-color: rgba(249, 168, 212, 0.75);
}
.ring-pink-300\/80 {
  --tw-ring-color: rgba(249, 168, 212, 0.8);
}
.ring-pink-300\/85 {
  --tw-ring-color: rgba(249, 168, 212, 0.85);
}
.ring-pink-300\/90 {
  --tw-ring-color: rgba(249, 168, 212, 0.9);
}
.ring-pink-300\/95 {
  --tw-ring-color: rgba(249, 168, 212, 0.95);
}
.ring-pink-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity));
}
.ring-pink-400\/0 {
  --tw-ring-color: rgba(244, 114, 182, 0);
}
.ring-pink-400\/10 {
  --tw-ring-color: rgba(244, 114, 182, 0.1);
}
.ring-pink-400\/100 {
  --tw-ring-color: rgba(244, 114, 182, 1);
}
.ring-pink-400\/15 {
  --tw-ring-color: rgba(244, 114, 182, 0.15);
}
.ring-pink-400\/20 {
  --tw-ring-color: rgba(244, 114, 182, 0.2);
}
.ring-pink-400\/25 {
  --tw-ring-color: rgba(244, 114, 182, 0.25);
}
.ring-pink-400\/30 {
  --tw-ring-color: rgba(244, 114, 182, 0.3);
}
.ring-pink-400\/35 {
  --tw-ring-color: rgba(244, 114, 182, 0.35);
}
.ring-pink-400\/40 {
  --tw-ring-color: rgba(244, 114, 182, 0.4);
}
.ring-pink-400\/45 {
  --tw-ring-color: rgba(244, 114, 182, 0.45);
}
.ring-pink-400\/5 {
  --tw-ring-color: rgba(244, 114, 182, 0.05);
}
.ring-pink-400\/50 {
  --tw-ring-color: rgba(244, 114, 182, 0.5);
}
.ring-pink-400\/55 {
  --tw-ring-color: rgba(244, 114, 182, 0.55);
}
.ring-pink-400\/60 {
  --tw-ring-color: rgba(244, 114, 182, 0.6);
}
.ring-pink-400\/65 {
  --tw-ring-color: rgba(244, 114, 182, 0.65);
}
.ring-pink-400\/70 {
  --tw-ring-color: rgba(244, 114, 182, 0.7);
}
.ring-pink-400\/75 {
  --tw-ring-color: rgba(244, 114, 182, 0.75);
}
.ring-pink-400\/80 {
  --tw-ring-color: rgba(244, 114, 182, 0.8);
}
.ring-pink-400\/85 {
  --tw-ring-color: rgba(244, 114, 182, 0.85);
}
.ring-pink-400\/90 {
  --tw-ring-color: rgba(244, 114, 182, 0.9);
}
.ring-pink-400\/95 {
  --tw-ring-color: rgba(244, 114, 182, 0.95);
}
.ring-pink-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity));
}
.ring-pink-50\/0 {
  --tw-ring-color: rgba(253, 242, 248, 0);
}
.ring-pink-50\/10 {
  --tw-ring-color: rgba(253, 242, 248, 0.1);
}
.ring-pink-50\/100 {
  --tw-ring-color: rgba(253, 242, 248, 1);
}
.ring-pink-50\/15 {
  --tw-ring-color: rgba(253, 242, 248, 0.15);
}
.ring-pink-50\/20 {
  --tw-ring-color: rgba(253, 242, 248, 0.2);
}
.ring-pink-50\/25 {
  --tw-ring-color: rgba(253, 242, 248, 0.25);
}
.ring-pink-50\/30 {
  --tw-ring-color: rgba(253, 242, 248, 0.3);
}
.ring-pink-50\/35 {
  --tw-ring-color: rgba(253, 242, 248, 0.35);
}
.ring-pink-50\/40 {
  --tw-ring-color: rgba(253, 242, 248, 0.4);
}
.ring-pink-50\/45 {
  --tw-ring-color: rgba(253, 242, 248, 0.45);
}
.ring-pink-50\/5 {
  --tw-ring-color: rgba(253, 242, 248, 0.05);
}
.ring-pink-50\/50 {
  --tw-ring-color: rgba(253, 242, 248, 0.5);
}
.ring-pink-50\/55 {
  --tw-ring-color: rgba(253, 242, 248, 0.55);
}
.ring-pink-50\/60 {
  --tw-ring-color: rgba(253, 242, 248, 0.6);
}
.ring-pink-50\/65 {
  --tw-ring-color: rgba(253, 242, 248, 0.65);
}
.ring-pink-50\/70 {
  --tw-ring-color: rgba(253, 242, 248, 0.7);
}
.ring-pink-50\/75 {
  --tw-ring-color: rgba(253, 242, 248, 0.75);
}
.ring-pink-50\/80 {
  --tw-ring-color: rgba(253, 242, 248, 0.8);
}
.ring-pink-50\/85 {
  --tw-ring-color: rgba(253, 242, 248, 0.85);
}
.ring-pink-50\/90 {
  --tw-ring-color: rgba(253, 242, 248, 0.9);
}
.ring-pink-50\/95 {
  --tw-ring-color: rgba(253, 242, 248, 0.95);
}
.ring-pink-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity));
}
.ring-pink-500\/0 {
  --tw-ring-color: rgba(236, 72, 153, 0);
}
.ring-pink-500\/10 {
  --tw-ring-color: rgba(236, 72, 153, 0.1);
}
.ring-pink-500\/100 {
  --tw-ring-color: rgba(236, 72, 153, 1);
}
.ring-pink-500\/15 {
  --tw-ring-color: rgba(236, 72, 153, 0.15);
}
.ring-pink-500\/20 {
  --tw-ring-color: rgba(236, 72, 153, 0.2);
}
.ring-pink-500\/25 {
  --tw-ring-color: rgba(236, 72, 153, 0.25);
}
.ring-pink-500\/30 {
  --tw-ring-color: rgba(236, 72, 153, 0.3);
}
.ring-pink-500\/35 {
  --tw-ring-color: rgba(236, 72, 153, 0.35);
}
.ring-pink-500\/40 {
  --tw-ring-color: rgba(236, 72, 153, 0.4);
}
.ring-pink-500\/45 {
  --tw-ring-color: rgba(236, 72, 153, 0.45);
}
.ring-pink-500\/5 {
  --tw-ring-color: rgba(236, 72, 153, 0.05);
}
.ring-pink-500\/50 {
  --tw-ring-color: rgba(236, 72, 153, 0.5);
}
.ring-pink-500\/55 {
  --tw-ring-color: rgba(236, 72, 153, 0.55);
}
.ring-pink-500\/60 {
  --tw-ring-color: rgba(236, 72, 153, 0.6);
}
.ring-pink-500\/65 {
  --tw-ring-color: rgba(236, 72, 153, 0.65);
}
.ring-pink-500\/70 {
  --tw-ring-color: rgba(236, 72, 153, 0.7);
}
.ring-pink-500\/75 {
  --tw-ring-color: rgba(236, 72, 153, 0.75);
}
.ring-pink-500\/80 {
  --tw-ring-color: rgba(236, 72, 153, 0.8);
}
.ring-pink-500\/85 {
  --tw-ring-color: rgba(236, 72, 153, 0.85);
}
.ring-pink-500\/90 {
  --tw-ring-color: rgba(236, 72, 153, 0.9);
}
.ring-pink-500\/95 {
  --tw-ring-color: rgba(236, 72, 153, 0.95);
}
.ring-pink-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity));
}
.ring-pink-600\/0 {
  --tw-ring-color: rgba(219, 39, 119, 0);
}
.ring-pink-600\/10 {
  --tw-ring-color: rgba(219, 39, 119, 0.1);
}
.ring-pink-600\/100 {
  --tw-ring-color: rgba(219, 39, 119, 1);
}
.ring-pink-600\/15 {
  --tw-ring-color: rgba(219, 39, 119, 0.15);
}
.ring-pink-600\/20 {
  --tw-ring-color: rgba(219, 39, 119, 0.2);
}
.ring-pink-600\/25 {
  --tw-ring-color: rgba(219, 39, 119, 0.25);
}
.ring-pink-600\/30 {
  --tw-ring-color: rgba(219, 39, 119, 0.3);
}
.ring-pink-600\/35 {
  --tw-ring-color: rgba(219, 39, 119, 0.35);
}
.ring-pink-600\/40 {
  --tw-ring-color: rgba(219, 39, 119, 0.4);
}
.ring-pink-600\/45 {
  --tw-ring-color: rgba(219, 39, 119, 0.45);
}
.ring-pink-600\/5 {
  --tw-ring-color: rgba(219, 39, 119, 0.05);
}
.ring-pink-600\/50 {
  --tw-ring-color: rgba(219, 39, 119, 0.5);
}
.ring-pink-600\/55 {
  --tw-ring-color: rgba(219, 39, 119, 0.55);
}
.ring-pink-600\/60 {
  --tw-ring-color: rgba(219, 39, 119, 0.6);
}
.ring-pink-600\/65 {
  --tw-ring-color: rgba(219, 39, 119, 0.65);
}
.ring-pink-600\/70 {
  --tw-ring-color: rgba(219, 39, 119, 0.7);
}
.ring-pink-600\/75 {
  --tw-ring-color: rgba(219, 39, 119, 0.75);
}
.ring-pink-600\/80 {
  --tw-ring-color: rgba(219, 39, 119, 0.8);
}
.ring-pink-600\/85 {
  --tw-ring-color: rgba(219, 39, 119, 0.85);
}
.ring-pink-600\/90 {
  --tw-ring-color: rgba(219, 39, 119, 0.9);
}
.ring-pink-600\/95 {
  --tw-ring-color: rgba(219, 39, 119, 0.95);
}
.ring-pink-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity));
}
.ring-pink-700\/0 {
  --tw-ring-color: rgba(190, 24, 93, 0);
}
.ring-pink-700\/10 {
  --tw-ring-color: rgba(190, 24, 93, 0.1);
}
.ring-pink-700\/100 {
  --tw-ring-color: rgba(190, 24, 93, 1);
}
.ring-pink-700\/15 {
  --tw-ring-color: rgba(190, 24, 93, 0.15);
}
.ring-pink-700\/20 {
  --tw-ring-color: rgba(190, 24, 93, 0.2);
}
.ring-pink-700\/25 {
  --tw-ring-color: rgba(190, 24, 93, 0.25);
}
.ring-pink-700\/30 {
  --tw-ring-color: rgba(190, 24, 93, 0.3);
}
.ring-pink-700\/35 {
  --tw-ring-color: rgba(190, 24, 93, 0.35);
}
.ring-pink-700\/40 {
  --tw-ring-color: rgba(190, 24, 93, 0.4);
}
.ring-pink-700\/45 {
  --tw-ring-color: rgba(190, 24, 93, 0.45);
}
.ring-pink-700\/5 {
  --tw-ring-color: rgba(190, 24, 93, 0.05);
}
.ring-pink-700\/50 {
  --tw-ring-color: rgba(190, 24, 93, 0.5);
}
.ring-pink-700\/55 {
  --tw-ring-color: rgba(190, 24, 93, 0.55);
}
.ring-pink-700\/60 {
  --tw-ring-color: rgba(190, 24, 93, 0.6);
}
.ring-pink-700\/65 {
  --tw-ring-color: rgba(190, 24, 93, 0.65);
}
.ring-pink-700\/70 {
  --tw-ring-color: rgba(190, 24, 93, 0.7);
}
.ring-pink-700\/75 {
  --tw-ring-color: rgba(190, 24, 93, 0.75);
}
.ring-pink-700\/80 {
  --tw-ring-color: rgba(190, 24, 93, 0.8);
}
.ring-pink-700\/85 {
  --tw-ring-color: rgba(190, 24, 93, 0.85);
}
.ring-pink-700\/90 {
  --tw-ring-color: rgba(190, 24, 93, 0.9);
}
.ring-pink-700\/95 {
  --tw-ring-color: rgba(190, 24, 93, 0.95);
}
.ring-pink-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity));
}
.ring-pink-800\/0 {
  --tw-ring-color: rgba(157, 23, 77, 0);
}
.ring-pink-800\/10 {
  --tw-ring-color: rgba(157, 23, 77, 0.1);
}
.ring-pink-800\/100 {
  --tw-ring-color: rgba(157, 23, 77, 1);
}
.ring-pink-800\/15 {
  --tw-ring-color: rgba(157, 23, 77, 0.15);
}
.ring-pink-800\/20 {
  --tw-ring-color: rgba(157, 23, 77, 0.2);
}
.ring-pink-800\/25 {
  --tw-ring-color: rgba(157, 23, 77, 0.25);
}
.ring-pink-800\/30 {
  --tw-ring-color: rgba(157, 23, 77, 0.3);
}
.ring-pink-800\/35 {
  --tw-ring-color: rgba(157, 23, 77, 0.35);
}
.ring-pink-800\/40 {
  --tw-ring-color: rgba(157, 23, 77, 0.4);
}
.ring-pink-800\/45 {
  --tw-ring-color: rgba(157, 23, 77, 0.45);
}
.ring-pink-800\/5 {
  --tw-ring-color: rgba(157, 23, 77, 0.05);
}
.ring-pink-800\/50 {
  --tw-ring-color: rgba(157, 23, 77, 0.5);
}
.ring-pink-800\/55 {
  --tw-ring-color: rgba(157, 23, 77, 0.55);
}
.ring-pink-800\/60 {
  --tw-ring-color: rgba(157, 23, 77, 0.6);
}
.ring-pink-800\/65 {
  --tw-ring-color: rgba(157, 23, 77, 0.65);
}
.ring-pink-800\/70 {
  --tw-ring-color: rgba(157, 23, 77, 0.7);
}
.ring-pink-800\/75 {
  --tw-ring-color: rgba(157, 23, 77, 0.75);
}
.ring-pink-800\/80 {
  --tw-ring-color: rgba(157, 23, 77, 0.8);
}
.ring-pink-800\/85 {
  --tw-ring-color: rgba(157, 23, 77, 0.85);
}
.ring-pink-800\/90 {
  --tw-ring-color: rgba(157, 23, 77, 0.9);
}
.ring-pink-800\/95 {
  --tw-ring-color: rgba(157, 23, 77, 0.95);
}
.ring-pink-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity));
}
.ring-pink-900\/0 {
  --tw-ring-color: rgba(131, 24, 67, 0);
}
.ring-pink-900\/10 {
  --tw-ring-color: rgba(131, 24, 67, 0.1);
}
.ring-pink-900\/100 {
  --tw-ring-color: rgba(131, 24, 67, 1);
}
.ring-pink-900\/15 {
  --tw-ring-color: rgba(131, 24, 67, 0.15);
}
.ring-pink-900\/20 {
  --tw-ring-color: rgba(131, 24, 67, 0.2);
}
.ring-pink-900\/25 {
  --tw-ring-color: rgba(131, 24, 67, 0.25);
}
.ring-pink-900\/30 {
  --tw-ring-color: rgba(131, 24, 67, 0.3);
}
.ring-pink-900\/35 {
  --tw-ring-color: rgba(131, 24, 67, 0.35);
}
.ring-pink-900\/40 {
  --tw-ring-color: rgba(131, 24, 67, 0.4);
}
.ring-pink-900\/45 {
  --tw-ring-color: rgba(131, 24, 67, 0.45);
}
.ring-pink-900\/5 {
  --tw-ring-color: rgba(131, 24, 67, 0.05);
}
.ring-pink-900\/50 {
  --tw-ring-color: rgba(131, 24, 67, 0.5);
}
.ring-pink-900\/55 {
  --tw-ring-color: rgba(131, 24, 67, 0.55);
}
.ring-pink-900\/60 {
  --tw-ring-color: rgba(131, 24, 67, 0.6);
}
.ring-pink-900\/65 {
  --tw-ring-color: rgba(131, 24, 67, 0.65);
}
.ring-pink-900\/70 {
  --tw-ring-color: rgba(131, 24, 67, 0.7);
}
.ring-pink-900\/75 {
  --tw-ring-color: rgba(131, 24, 67, 0.75);
}
.ring-pink-900\/80 {
  --tw-ring-color: rgba(131, 24, 67, 0.8);
}
.ring-pink-900\/85 {
  --tw-ring-color: rgba(131, 24, 67, 0.85);
}
.ring-pink-900\/90 {
  --tw-ring-color: rgba(131, 24, 67, 0.9);
}
.ring-pink-900\/95 {
  --tw-ring-color: rgba(131, 24, 67, 0.95);
}
.ring-pink-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(80, 7, 36, var(--tw-ring-opacity));
}
.ring-pink-950\/0 {
  --tw-ring-color: rgba(80, 7, 36, 0);
}
.ring-pink-950\/10 {
  --tw-ring-color: rgba(80, 7, 36, 0.1);
}
.ring-pink-950\/100 {
  --tw-ring-color: rgba(80, 7, 36, 1);
}
.ring-pink-950\/15 {
  --tw-ring-color: rgba(80, 7, 36, 0.15);
}
.ring-pink-950\/20 {
  --tw-ring-color: rgba(80, 7, 36, 0.2);
}
.ring-pink-950\/25 {
  --tw-ring-color: rgba(80, 7, 36, 0.25);
}
.ring-pink-950\/30 {
  --tw-ring-color: rgba(80, 7, 36, 0.3);
}
.ring-pink-950\/35 {
  --tw-ring-color: rgba(80, 7, 36, 0.35);
}
.ring-pink-950\/40 {
  --tw-ring-color: rgba(80, 7, 36, 0.4);
}
.ring-pink-950\/45 {
  --tw-ring-color: rgba(80, 7, 36, 0.45);
}
.ring-pink-950\/5 {
  --tw-ring-color: rgba(80, 7, 36, 0.05);
}
.ring-pink-950\/50 {
  --tw-ring-color: rgba(80, 7, 36, 0.5);
}
.ring-pink-950\/55 {
  --tw-ring-color: rgba(80, 7, 36, 0.55);
}
.ring-pink-950\/60 {
  --tw-ring-color: rgba(80, 7, 36, 0.6);
}
.ring-pink-950\/65 {
  --tw-ring-color: rgba(80, 7, 36, 0.65);
}
.ring-pink-950\/70 {
  --tw-ring-color: rgba(80, 7, 36, 0.7);
}
.ring-pink-950\/75 {
  --tw-ring-color: rgba(80, 7, 36, 0.75);
}
.ring-pink-950\/80 {
  --tw-ring-color: rgba(80, 7, 36, 0.8);
}
.ring-pink-950\/85 {
  --tw-ring-color: rgba(80, 7, 36, 0.85);
}
.ring-pink-950\/90 {
  --tw-ring-color: rgba(80, 7, 36, 0.9);
}
.ring-pink-950\/95 {
  --tw-ring-color: rgba(80, 7, 36, 0.95);
}
.ring-primary {
  --tw-ring-opacity: 1;
  --tw-ring-color: var(--fallback-p,oklch(var(--p)/var(--tw-ring-opacity)));
}
.ring-primary-content {
  --tw-ring-opacity: 1;
  --tw-ring-color: var(--fallback-pc,oklch(var(--pc)/var(--tw-ring-opacity)));
}
.ring-primary-content\/0 {
  --tw-ring-color: var(--fallback-pc,oklch(var(--pc)/0));
}
.ring-primary-content\/10 {
  --tw-ring-color: var(--fallback-pc,oklch(var(--pc)/0.1));
}
.ring-primary-content\/100 {
  --tw-ring-color: var(--fallback-pc,oklch(var(--pc)/1));
}
.ring-primary-content\/15 {
  --tw-ring-color: var(--fallback-pc,oklch(var(--pc)/0.15));
}
.ring-primary-content\/20 {
  --tw-ring-color: var(--fallback-pc,oklch(var(--pc)/0.2));
}
.ring-primary-content\/25 {
  --tw-ring-color: var(--fallback-pc,oklch(var(--pc)/0.25));
}
.ring-primary-content\/30 {
  --tw-ring-color: var(--fallback-pc,oklch(var(--pc)/0.3));
}
.ring-primary-content\/35 {
  --tw-ring-color: var(--fallback-pc,oklch(var(--pc)/0.35));
}
.ring-primary-content\/40 {
  --tw-ring-color: var(--fallback-pc,oklch(var(--pc)/0.4));
}
.ring-primary-content\/45 {
  --tw-ring-color: var(--fallback-pc,oklch(var(--pc)/0.45));
}
.ring-primary-content\/5 {
  --tw-ring-color: var(--fallback-pc,oklch(var(--pc)/0.05));
}
.ring-primary-content\/50 {
  --tw-ring-color: var(--fallback-pc,oklch(var(--pc)/0.5));
}
.ring-primary-content\/55 {
  --tw-ring-color: var(--fallback-pc,oklch(var(--pc)/0.55));
}
.ring-primary-content\/60 {
  --tw-ring-color: var(--fallback-pc,oklch(var(--pc)/0.6));
}
.ring-primary-content\/65 {
  --tw-ring-color: var(--fallback-pc,oklch(var(--pc)/0.65));
}
.ring-primary-content\/70 {
  --tw-ring-color: var(--fallback-pc,oklch(var(--pc)/0.7));
}
.ring-primary-content\/75 {
  --tw-ring-color: var(--fallback-pc,oklch(var(--pc)/0.75));
}
.ring-primary-content\/80 {
  --tw-ring-color: var(--fallback-pc,oklch(var(--pc)/0.8));
}
.ring-primary-content\/85 {
  --tw-ring-color: var(--fallback-pc,oklch(var(--pc)/0.85));
}
.ring-primary-content\/90 {
  --tw-ring-color: var(--fallback-pc,oklch(var(--pc)/0.9));
}
.ring-primary-content\/95 {
  --tw-ring-color: var(--fallback-pc,oklch(var(--pc)/0.95));
}
.ring-primary\/0 {
  --tw-ring-color: var(--fallback-p,oklch(var(--p)/0));
}
.ring-primary\/10 {
  --tw-ring-color: var(--fallback-p,oklch(var(--p)/0.1));
}
.ring-primary\/100 {
  --tw-ring-color: var(--fallback-p,oklch(var(--p)/1));
}
.ring-primary\/15 {
  --tw-ring-color: var(--fallback-p,oklch(var(--p)/0.15));
}
.ring-primary\/20 {
  --tw-ring-color: var(--fallback-p,oklch(var(--p)/0.2));
}
.ring-primary\/25 {
  --tw-ring-color: var(--fallback-p,oklch(var(--p)/0.25));
}
.ring-primary\/30 {
  --tw-ring-color: var(--fallback-p,oklch(var(--p)/0.3));
}
.ring-primary\/35 {
  --tw-ring-color: var(--fallback-p,oklch(var(--p)/0.35));
}
.ring-primary\/40 {
  --tw-ring-color: var(--fallback-p,oklch(var(--p)/0.4));
}
.ring-primary\/45 {
  --tw-ring-color: var(--fallback-p,oklch(var(--p)/0.45));
}
.ring-primary\/5 {
  --tw-ring-color: var(--fallback-p,oklch(var(--p)/0.05));
}
.ring-primary\/50 {
  --tw-ring-color: var(--fallback-p,oklch(var(--p)/0.5));
}
.ring-primary\/55 {
  --tw-ring-color: var(--fallback-p,oklch(var(--p)/0.55));
}
.ring-primary\/60 {
  --tw-ring-color: var(--fallback-p,oklch(var(--p)/0.6));
}
.ring-primary\/65 {
  --tw-ring-color: var(--fallback-p,oklch(var(--p)/0.65));
}
.ring-primary\/70 {
  --tw-ring-color: var(--fallback-p,oklch(var(--p)/0.7));
}
.ring-primary\/75 {
  --tw-ring-color: var(--fallback-p,oklch(var(--p)/0.75));
}
.ring-primary\/80 {
  --tw-ring-color: var(--fallback-p,oklch(var(--p)/0.8));
}
.ring-primary\/85 {
  --tw-ring-color: var(--fallback-p,oklch(var(--p)/0.85));
}
.ring-primary\/90 {
  --tw-ring-color: var(--fallback-p,oklch(var(--p)/0.9));
}
.ring-primary\/95 {
  --tw-ring-color: var(--fallback-p,oklch(var(--p)/0.95));
}
.ring-purple-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(243, 232, 255, var(--tw-ring-opacity));
}
.ring-purple-100\/0 {
  --tw-ring-color: rgba(243, 232, 255, 0);
}
.ring-purple-100\/10 {
  --tw-ring-color: rgba(243, 232, 255, 0.1);
}
.ring-purple-100\/100 {
  --tw-ring-color: rgba(243, 232, 255, 1);
}
.ring-purple-100\/15 {
  --tw-ring-color: rgba(243, 232, 255, 0.15);
}
.ring-purple-100\/20 {
  --tw-ring-color: rgba(243, 232, 255, 0.2);
}
.ring-purple-100\/25 {
  --tw-ring-color: rgba(243, 232, 255, 0.25);
}
.ring-purple-100\/30 {
  --tw-ring-color: rgba(243, 232, 255, 0.3);
}
.ring-purple-100\/35 {
  --tw-ring-color: rgba(243, 232, 255, 0.35);
}
.ring-purple-100\/40 {
  --tw-ring-color: rgba(243, 232, 255, 0.4);
}
.ring-purple-100\/45 {
  --tw-ring-color: rgba(243, 232, 255, 0.45);
}
.ring-purple-100\/5 {
  --tw-ring-color: rgba(243, 232, 255, 0.05);
}
.ring-purple-100\/50 {
  --tw-ring-color: rgba(243, 232, 255, 0.5);
}
.ring-purple-100\/55 {
  --tw-ring-color: rgba(243, 232, 255, 0.55);
}
.ring-purple-100\/60 {
  --tw-ring-color: rgba(243, 232, 255, 0.6);
}
.ring-purple-100\/65 {
  --tw-ring-color: rgba(243, 232, 255, 0.65);
}
.ring-purple-100\/70 {
  --tw-ring-color: rgba(243, 232, 255, 0.7);
}
.ring-purple-100\/75 {
  --tw-ring-color: rgba(243, 232, 255, 0.75);
}
.ring-purple-100\/80 {
  --tw-ring-color: rgba(243, 232, 255, 0.8);
}
.ring-purple-100\/85 {
  --tw-ring-color: rgba(243, 232, 255, 0.85);
}
.ring-purple-100\/90 {
  --tw-ring-color: rgba(243, 232, 255, 0.9);
}
.ring-purple-100\/95 {
  --tw-ring-color: rgba(243, 232, 255, 0.95);
}
.ring-purple-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(233, 213, 255, var(--tw-ring-opacity));
}
.ring-purple-200\/0 {
  --tw-ring-color: rgba(233, 213, 255, 0);
}
.ring-purple-200\/10 {
  --tw-ring-color: rgba(233, 213, 255, 0.1);
}
.ring-purple-200\/100 {
  --tw-ring-color: rgba(233, 213, 255, 1);
}
.ring-purple-200\/15 {
  --tw-ring-color: rgba(233, 213, 255, 0.15);
}
.ring-purple-200\/20 {
  --tw-ring-color: rgba(233, 213, 255, 0.2);
}
.ring-purple-200\/25 {
  --tw-ring-color: rgba(233, 213, 255, 0.25);
}
.ring-purple-200\/30 {
  --tw-ring-color: rgba(233, 213, 255, 0.3);
}
.ring-purple-200\/35 {
  --tw-ring-color: rgba(233, 213, 255, 0.35);
}
.ring-purple-200\/40 {
  --tw-ring-color: rgba(233, 213, 255, 0.4);
}
.ring-purple-200\/45 {
  --tw-ring-color: rgba(233, 213, 255, 0.45);
}
.ring-purple-200\/5 {
  --tw-ring-color: rgba(233, 213, 255, 0.05);
}
.ring-purple-200\/50 {
  --tw-ring-color: rgba(233, 213, 255, 0.5);
}
.ring-purple-200\/55 {
  --tw-ring-color: rgba(233, 213, 255, 0.55);
}
.ring-purple-200\/60 {
  --tw-ring-color: rgba(233, 213, 255, 0.6);
}
.ring-purple-200\/65 {
  --tw-ring-color: rgba(233, 213, 255, 0.65);
}
.ring-purple-200\/70 {
  --tw-ring-color: rgba(233, 213, 255, 0.7);
}
.ring-purple-200\/75 {
  --tw-ring-color: rgba(233, 213, 255, 0.75);
}
.ring-purple-200\/80 {
  --tw-ring-color: rgba(233, 213, 255, 0.8);
}
.ring-purple-200\/85 {
  --tw-ring-color: rgba(233, 213, 255, 0.85);
}
.ring-purple-200\/90 {
  --tw-ring-color: rgba(233, 213, 255, 0.9);
}
.ring-purple-200\/95 {
  --tw-ring-color: rgba(233, 213, 255, 0.95);
}
.ring-purple-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(216, 180, 254, var(--tw-ring-opacity));
}
.ring-purple-300\/0 {
  --tw-ring-color: rgba(216, 180, 254, 0);
}
.ring-purple-300\/10 {
  --tw-ring-color: rgba(216, 180, 254, 0.1);
}
.ring-purple-300\/100 {
  --tw-ring-color: rgba(216, 180, 254, 1);
}
.ring-purple-300\/15 {
  --tw-ring-color: rgba(216, 180, 254, 0.15);
}
.ring-purple-300\/20 {
  --tw-ring-color: rgba(216, 180, 254, 0.2);
}
.ring-purple-300\/25 {
  --tw-ring-color: rgba(216, 180, 254, 0.25);
}
.ring-purple-300\/30 {
  --tw-ring-color: rgba(216, 180, 254, 0.3);
}
.ring-purple-300\/35 {
  --tw-ring-color: rgba(216, 180, 254, 0.35);
}
.ring-purple-300\/40 {
  --tw-ring-color: rgba(216, 180, 254, 0.4);
}
.ring-purple-300\/45 {
  --tw-ring-color: rgba(216, 180, 254, 0.45);
}
.ring-purple-300\/5 {
  --tw-ring-color: rgba(216, 180, 254, 0.05);
}
.ring-purple-300\/50 {
  --tw-ring-color: rgba(216, 180, 254, 0.5);
}
.ring-purple-300\/55 {
  --tw-ring-color: rgba(216, 180, 254, 0.55);
}
.ring-purple-300\/60 {
  --tw-ring-color: rgba(216, 180, 254, 0.6);
}
.ring-purple-300\/65 {
  --tw-ring-color: rgba(216, 180, 254, 0.65);
}
.ring-purple-300\/70 {
  --tw-ring-color: rgba(216, 180, 254, 0.7);
}
.ring-purple-300\/75 {
  --tw-ring-color: rgba(216, 180, 254, 0.75);
}
.ring-purple-300\/80 {
  --tw-ring-color: rgba(216, 180, 254, 0.8);
}
.ring-purple-300\/85 {
  --tw-ring-color: rgba(216, 180, 254, 0.85);
}
.ring-purple-300\/90 {
  --tw-ring-color: rgba(216, 180, 254, 0.9);
}
.ring-purple-300\/95 {
  --tw-ring-color: rgba(216, 180, 254, 0.95);
}
.ring-purple-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(192, 132, 252, var(--tw-ring-opacity));
}
.ring-purple-400\/0 {
  --tw-ring-color: rgba(192, 132, 252, 0);
}
.ring-purple-400\/10 {
  --tw-ring-color: rgba(192, 132, 252, 0.1);
}
.ring-purple-400\/100 {
  --tw-ring-color: rgba(192, 132, 252, 1);
}
.ring-purple-400\/15 {
  --tw-ring-color: rgba(192, 132, 252, 0.15);
}
.ring-purple-400\/20 {
  --tw-ring-color: rgba(192, 132, 252, 0.2);
}
.ring-purple-400\/25 {
  --tw-ring-color: rgba(192, 132, 252, 0.25);
}
.ring-purple-400\/30 {
  --tw-ring-color: rgba(192, 132, 252, 0.3);
}
.ring-purple-400\/35 {
  --tw-ring-color: rgba(192, 132, 252, 0.35);
}
.ring-purple-400\/40 {
  --tw-ring-color: rgba(192, 132, 252, 0.4);
}
.ring-purple-400\/45 {
  --tw-ring-color: rgba(192, 132, 252, 0.45);
}
.ring-purple-400\/5 {
  --tw-ring-color: rgba(192, 132, 252, 0.05);
}
.ring-purple-400\/50 {
  --tw-ring-color: rgba(192, 132, 252, 0.5);
}
.ring-purple-400\/55 {
  --tw-ring-color: rgba(192, 132, 252, 0.55);
}
.ring-purple-400\/60 {
  --tw-ring-color: rgba(192, 132, 252, 0.6);
}
.ring-purple-400\/65 {
  --tw-ring-color: rgba(192, 132, 252, 0.65);
}
.ring-purple-400\/70 {
  --tw-ring-color: rgba(192, 132, 252, 0.7);
}
.ring-purple-400\/75 {
  --tw-ring-color: rgba(192, 132, 252, 0.75);
}
.ring-purple-400\/80 {
  --tw-ring-color: rgba(192, 132, 252, 0.8);
}
.ring-purple-400\/85 {
  --tw-ring-color: rgba(192, 132, 252, 0.85);
}
.ring-purple-400\/90 {
  --tw-ring-color: rgba(192, 132, 252, 0.9);
}
.ring-purple-400\/95 {
  --tw-ring-color: rgba(192, 132, 252, 0.95);
}
.ring-purple-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(250, 245, 255, var(--tw-ring-opacity));
}
.ring-purple-50\/0 {
  --tw-ring-color: rgba(250, 245, 255, 0);
}
.ring-purple-50\/10 {
  --tw-ring-color: rgba(250, 245, 255, 0.1);
}
.ring-purple-50\/100 {
  --tw-ring-color: rgba(250, 245, 255, 1);
}
.ring-purple-50\/15 {
  --tw-ring-color: rgba(250, 245, 255, 0.15);
}
.ring-purple-50\/20 {
  --tw-ring-color: rgba(250, 245, 255, 0.2);
}
.ring-purple-50\/25 {
  --tw-ring-color: rgba(250, 245, 255, 0.25);
}
.ring-purple-50\/30 {
  --tw-ring-color: rgba(250, 245, 255, 0.3);
}
.ring-purple-50\/35 {
  --tw-ring-color: rgba(250, 245, 255, 0.35);
}
.ring-purple-50\/40 {
  --tw-ring-color: rgba(250, 245, 255, 0.4);
}
.ring-purple-50\/45 {
  --tw-ring-color: rgba(250, 245, 255, 0.45);
}
.ring-purple-50\/5 {
  --tw-ring-color: rgba(250, 245, 255, 0.05);
}
.ring-purple-50\/50 {
  --tw-ring-color: rgba(250, 245, 255, 0.5);
}
.ring-purple-50\/55 {
  --tw-ring-color: rgba(250, 245, 255, 0.55);
}
.ring-purple-50\/60 {
  --tw-ring-color: rgba(250, 245, 255, 0.6);
}
.ring-purple-50\/65 {
  --tw-ring-color: rgba(250, 245, 255, 0.65);
}
.ring-purple-50\/70 {
  --tw-ring-color: rgba(250, 245, 255, 0.7);
}
.ring-purple-50\/75 {
  --tw-ring-color: rgba(250, 245, 255, 0.75);
}
.ring-purple-50\/80 {
  --tw-ring-color: rgba(250, 245, 255, 0.8);
}
.ring-purple-50\/85 {
  --tw-ring-color: rgba(250, 245, 255, 0.85);
}
.ring-purple-50\/90 {
  --tw-ring-color: rgba(250, 245, 255, 0.9);
}
.ring-purple-50\/95 {
  --tw-ring-color: rgba(250, 245, 255, 0.95);
}
.ring-purple-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity));
}
.ring-purple-500\/0 {
  --tw-ring-color: rgba(168, 85, 247, 0);
}
.ring-purple-500\/10 {
  --tw-ring-color: rgba(168, 85, 247, 0.1);
}
.ring-purple-500\/100 {
  --tw-ring-color: rgba(168, 85, 247, 1);
}
.ring-purple-500\/15 {
  --tw-ring-color: rgba(168, 85, 247, 0.15);
}
.ring-purple-500\/20 {
  --tw-ring-color: rgba(168, 85, 247, 0.2);
}
.ring-purple-500\/25 {
  --tw-ring-color: rgba(168, 85, 247, 0.25);
}
.ring-purple-500\/30 {
  --tw-ring-color: rgba(168, 85, 247, 0.3);
}
.ring-purple-500\/35 {
  --tw-ring-color: rgba(168, 85, 247, 0.35);
}
.ring-purple-500\/40 {
  --tw-ring-color: rgba(168, 85, 247, 0.4);
}
.ring-purple-500\/45 {
  --tw-ring-color: rgba(168, 85, 247, 0.45);
}
.ring-purple-500\/5 {
  --tw-ring-color: rgba(168, 85, 247, 0.05);
}
.ring-purple-500\/50 {
  --tw-ring-color: rgba(168, 85, 247, 0.5);
}
.ring-purple-500\/55 {
  --tw-ring-color: rgba(168, 85, 247, 0.55);
}
.ring-purple-500\/60 {
  --tw-ring-color: rgba(168, 85, 247, 0.6);
}
.ring-purple-500\/65 {
  --tw-ring-color: rgba(168, 85, 247, 0.65);
}
.ring-purple-500\/70 {
  --tw-ring-color: rgba(168, 85, 247, 0.7);
}
.ring-purple-500\/75 {
  --tw-ring-color: rgba(168, 85, 247, 0.75);
}
.ring-purple-500\/80 {
  --tw-ring-color: rgba(168, 85, 247, 0.8);
}
.ring-purple-500\/85 {
  --tw-ring-color: rgba(168, 85, 247, 0.85);
}
.ring-purple-500\/90 {
  --tw-ring-color: rgba(168, 85, 247, 0.9);
}
.ring-purple-500\/95 {
  --tw-ring-color: rgba(168, 85, 247, 0.95);
}
.ring-purple-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(147, 51, 234, var(--tw-ring-opacity));
}
.ring-purple-600\/0 {
  --tw-ring-color: rgba(147, 51, 234, 0);
}
.ring-purple-600\/10 {
  --tw-ring-color: rgba(147, 51, 234, 0.1);
}
.ring-purple-600\/100 {
  --tw-ring-color: rgba(147, 51, 234, 1);
}
.ring-purple-600\/15 {
  --tw-ring-color: rgba(147, 51, 234, 0.15);
}
.ring-purple-600\/20 {
  --tw-ring-color: rgba(147, 51, 234, 0.2);
}
.ring-purple-600\/25 {
  --tw-ring-color: rgba(147, 51, 234, 0.25);
}
.ring-purple-600\/30 {
  --tw-ring-color: rgba(147, 51, 234, 0.3);
}
.ring-purple-600\/35 {
  --tw-ring-color: rgba(147, 51, 234, 0.35);
}
.ring-purple-600\/40 {
  --tw-ring-color: rgba(147, 51, 234, 0.4);
}
.ring-purple-600\/45 {
  --tw-ring-color: rgba(147, 51, 234, 0.45);
}
.ring-purple-600\/5 {
  --tw-ring-color: rgba(147, 51, 234, 0.05);
}
.ring-purple-600\/50 {
  --tw-ring-color: rgba(147, 51, 234, 0.5);
}
.ring-purple-600\/55 {
  --tw-ring-color: rgba(147, 51, 234, 0.55);
}
.ring-purple-600\/60 {
  --tw-ring-color: rgba(147, 51, 234, 0.6);
}
.ring-purple-600\/65 {
  --tw-ring-color: rgba(147, 51, 234, 0.65);
}
.ring-purple-600\/70 {
  --tw-ring-color: rgba(147, 51, 234, 0.7);
}
.ring-purple-600\/75 {
  --tw-ring-color: rgba(147, 51, 234, 0.75);
}
.ring-purple-600\/80 {
  --tw-ring-color: rgba(147, 51, 234, 0.8);
}
.ring-purple-600\/85 {
  --tw-ring-color: rgba(147, 51, 234, 0.85);
}
.ring-purple-600\/90 {
  --tw-ring-color: rgba(147, 51, 234, 0.9);
}
.ring-purple-600\/95 {
  --tw-ring-color: rgba(147, 51, 234, 0.95);
}
.ring-purple-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(126, 34, 206, var(--tw-ring-opacity));
}
.ring-purple-700\/0 {
  --tw-ring-color: rgba(126, 34, 206, 0);
}
.ring-purple-700\/10 {
  --tw-ring-color: rgba(126, 34, 206, 0.1);
}
.ring-purple-700\/100 {
  --tw-ring-color: rgba(126, 34, 206, 1);
}
.ring-purple-700\/15 {
  --tw-ring-color: rgba(126, 34, 206, 0.15);
}
.ring-purple-700\/20 {
  --tw-ring-color: rgba(126, 34, 206, 0.2);
}
.ring-purple-700\/25 {
  --tw-ring-color: rgba(126, 34, 206, 0.25);
}
.ring-purple-700\/30 {
  --tw-ring-color: rgba(126, 34, 206, 0.3);
}
.ring-purple-700\/35 {
  --tw-ring-color: rgba(126, 34, 206, 0.35);
}
.ring-purple-700\/40 {
  --tw-ring-color: rgba(126, 34, 206, 0.4);
}
.ring-purple-700\/45 {
  --tw-ring-color: rgba(126, 34, 206, 0.45);
}
.ring-purple-700\/5 {
  --tw-ring-color: rgba(126, 34, 206, 0.05);
}
.ring-purple-700\/50 {
  --tw-ring-color: rgba(126, 34, 206, 0.5);
}
.ring-purple-700\/55 {
  --tw-ring-color: rgba(126, 34, 206, 0.55);
}
.ring-purple-700\/60 {
  --tw-ring-color: rgba(126, 34, 206, 0.6);
}
.ring-purple-700\/65 {
  --tw-ring-color: rgba(126, 34, 206, 0.65);
}
.ring-purple-700\/70 {
  --tw-ring-color: rgba(126, 34, 206, 0.7);
}
.ring-purple-700\/75 {
  --tw-ring-color: rgba(126, 34, 206, 0.75);
}
.ring-purple-700\/80 {
  --tw-ring-color: rgba(126, 34, 206, 0.8);
}
.ring-purple-700\/85 {
  --tw-ring-color: rgba(126, 34, 206, 0.85);
}
.ring-purple-700\/90 {
  --tw-ring-color: rgba(126, 34, 206, 0.9);
}
.ring-purple-700\/95 {
  --tw-ring-color: rgba(126, 34, 206, 0.95);
}
.ring-purple-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(107, 33, 168, var(--tw-ring-opacity));
}
.ring-purple-800\/0 {
  --tw-ring-color: rgba(107, 33, 168, 0);
}
.ring-purple-800\/10 {
  --tw-ring-color: rgba(107, 33, 168, 0.1);
}
.ring-purple-800\/100 {
  --tw-ring-color: rgba(107, 33, 168, 1);
}
.ring-purple-800\/15 {
  --tw-ring-color: rgba(107, 33, 168, 0.15);
}
.ring-purple-800\/20 {
  --tw-ring-color: rgba(107, 33, 168, 0.2);
}
.ring-purple-800\/25 {
  --tw-ring-color: rgba(107, 33, 168, 0.25);
}
.ring-purple-800\/30 {
  --tw-ring-color: rgba(107, 33, 168, 0.3);
}
.ring-purple-800\/35 {
  --tw-ring-color: rgba(107, 33, 168, 0.35);
}
.ring-purple-800\/40 {
  --tw-ring-color: rgba(107, 33, 168, 0.4);
}
.ring-purple-800\/45 {
  --tw-ring-color: rgba(107, 33, 168, 0.45);
}
.ring-purple-800\/5 {
  --tw-ring-color: rgba(107, 33, 168, 0.05);
}
.ring-purple-800\/50 {
  --tw-ring-color: rgba(107, 33, 168, 0.5);
}
.ring-purple-800\/55 {
  --tw-ring-color: rgba(107, 33, 168, 0.55);
}
.ring-purple-800\/60 {
  --tw-ring-color: rgba(107, 33, 168, 0.6);
}
.ring-purple-800\/65 {
  --tw-ring-color: rgba(107, 33, 168, 0.65);
}
.ring-purple-800\/70 {
  --tw-ring-color: rgba(107, 33, 168, 0.7);
}
.ring-purple-800\/75 {
  --tw-ring-color: rgba(107, 33, 168, 0.75);
}
.ring-purple-800\/80 {
  --tw-ring-color: rgba(107, 33, 168, 0.8);
}
.ring-purple-800\/85 {
  --tw-ring-color: rgba(107, 33, 168, 0.85);
}
.ring-purple-800\/90 {
  --tw-ring-color: rgba(107, 33, 168, 0.9);
}
.ring-purple-800\/95 {
  --tw-ring-color: rgba(107, 33, 168, 0.95);
}
.ring-purple-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(88, 28, 135, var(--tw-ring-opacity));
}
.ring-purple-900\/0 {
  --tw-ring-color: rgba(88, 28, 135, 0);
}
.ring-purple-900\/10 {
  --tw-ring-color: rgba(88, 28, 135, 0.1);
}
.ring-purple-900\/100 {
  --tw-ring-color: rgba(88, 28, 135, 1);
}
.ring-purple-900\/15 {
  --tw-ring-color: rgba(88, 28, 135, 0.15);
}
.ring-purple-900\/20 {
  --tw-ring-color: rgba(88, 28, 135, 0.2);
}
.ring-purple-900\/25 {
  --tw-ring-color: rgba(88, 28, 135, 0.25);
}
.ring-purple-900\/30 {
  --tw-ring-color: rgba(88, 28, 135, 0.3);
}
.ring-purple-900\/35 {
  --tw-ring-color: rgba(88, 28, 135, 0.35);
}
.ring-purple-900\/40 {
  --tw-ring-color: rgba(88, 28, 135, 0.4);
}
.ring-purple-900\/45 {
  --tw-ring-color: rgba(88, 28, 135, 0.45);
}
.ring-purple-900\/5 {
  --tw-ring-color: rgba(88, 28, 135, 0.05);
}
.ring-purple-900\/50 {
  --tw-ring-color: rgba(88, 28, 135, 0.5);
}
.ring-purple-900\/55 {
  --tw-ring-color: rgba(88, 28, 135, 0.55);
}
.ring-purple-900\/60 {
  --tw-ring-color: rgba(88, 28, 135, 0.6);
}
.ring-purple-900\/65 {
  --tw-ring-color: rgba(88, 28, 135, 0.65);
}
.ring-purple-900\/70 {
  --tw-ring-color: rgba(88, 28, 135, 0.7);
}
.ring-purple-900\/75 {
  --tw-ring-color: rgba(88, 28, 135, 0.75);
}
.ring-purple-900\/80 {
  --tw-ring-color: rgba(88, 28, 135, 0.8);
}
.ring-purple-900\/85 {
  --tw-ring-color: rgba(88, 28, 135, 0.85);
}
.ring-purple-900\/90 {
  --tw-ring-color: rgba(88, 28, 135, 0.9);
}
.ring-purple-900\/95 {
  --tw-ring-color: rgba(88, 28, 135, 0.95);
}
.ring-purple-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(59, 7, 100, var(--tw-ring-opacity));
}
.ring-purple-950\/0 {
  --tw-ring-color: rgba(59, 7, 100, 0);
}
.ring-purple-950\/10 {
  --tw-ring-color: rgba(59, 7, 100, 0.1);
}
.ring-purple-950\/100 {
  --tw-ring-color: rgba(59, 7, 100, 1);
}
.ring-purple-950\/15 {
  --tw-ring-color: rgba(59, 7, 100, 0.15);
}
.ring-purple-950\/20 {
  --tw-ring-color: rgba(59, 7, 100, 0.2);
}
.ring-purple-950\/25 {
  --tw-ring-color: rgba(59, 7, 100, 0.25);
}
.ring-purple-950\/30 {
  --tw-ring-color: rgba(59, 7, 100, 0.3);
}
.ring-purple-950\/35 {
  --tw-ring-color: rgba(59, 7, 100, 0.35);
}
.ring-purple-950\/40 {
  --tw-ring-color: rgba(59, 7, 100, 0.4);
}
.ring-purple-950\/45 {
  --tw-ring-color: rgba(59, 7, 100, 0.45);
}
.ring-purple-950\/5 {
  --tw-ring-color: rgba(59, 7, 100, 0.05);
}
.ring-purple-950\/50 {
  --tw-ring-color: rgba(59, 7, 100, 0.5);
}
.ring-purple-950\/55 {
  --tw-ring-color: rgba(59, 7, 100, 0.55);
}
.ring-purple-950\/60 {
  --tw-ring-color: rgba(59, 7, 100, 0.6);
}
.ring-purple-950\/65 {
  --tw-ring-color: rgba(59, 7, 100, 0.65);
}
.ring-purple-950\/70 {
  --tw-ring-color: rgba(59, 7, 100, 0.7);
}
.ring-purple-950\/75 {
  --tw-ring-color: rgba(59, 7, 100, 0.75);
}
.ring-purple-950\/80 {
  --tw-ring-color: rgba(59, 7, 100, 0.8);
}
.ring-purple-950\/85 {
  --tw-ring-color: rgba(59, 7, 100, 0.85);
}
.ring-purple-950\/90 {
  --tw-ring-color: rgba(59, 7, 100, 0.9);
}
.ring-purple-950\/95 {
  --tw-ring-color: rgba(59, 7, 100, 0.95);
}
.ring-red-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity));
}
.ring-red-100\/0 {
  --tw-ring-color: rgba(254, 226, 226, 0);
}
.ring-red-100\/10 {
  --tw-ring-color: rgba(254, 226, 226, 0.1);
}
.ring-red-100\/100 {
  --tw-ring-color: rgba(254, 226, 226, 1);
}
.ring-red-100\/15 {
  --tw-ring-color: rgba(254, 226, 226, 0.15);
}
.ring-red-100\/20 {
  --tw-ring-color: rgba(254, 226, 226, 0.2);
}
.ring-red-100\/25 {
  --tw-ring-color: rgba(254, 226, 226, 0.25);
}
.ring-red-100\/30 {
  --tw-ring-color: rgba(254, 226, 226, 0.3);
}
.ring-red-100\/35 {
  --tw-ring-color: rgba(254, 226, 226, 0.35);
}
.ring-red-100\/40 {
  --tw-ring-color: rgba(254, 226, 226, 0.4);
}
.ring-red-100\/45 {
  --tw-ring-color: rgba(254, 226, 226, 0.45);
}
.ring-red-100\/5 {
  --tw-ring-color: rgba(254, 226, 226, 0.05);
}
.ring-red-100\/50 {
  --tw-ring-color: rgba(254, 226, 226, 0.5);
}
.ring-red-100\/55 {
  --tw-ring-color: rgba(254, 226, 226, 0.55);
}
.ring-red-100\/60 {
  --tw-ring-color: rgba(254, 226, 226, 0.6);
}
.ring-red-100\/65 {
  --tw-ring-color: rgba(254, 226, 226, 0.65);
}
.ring-red-100\/70 {
  --tw-ring-color: rgba(254, 226, 226, 0.7);
}
.ring-red-100\/75 {
  --tw-ring-color: rgba(254, 226, 226, 0.75);
}
.ring-red-100\/80 {
  --tw-ring-color: rgba(254, 226, 226, 0.8);
}
.ring-red-100\/85 {
  --tw-ring-color: rgba(254, 226, 226, 0.85);
}
.ring-red-100\/90 {
  --tw-ring-color: rgba(254, 226, 226, 0.9);
}
.ring-red-100\/95 {
  --tw-ring-color: rgba(254, 226, 226, 0.95);
}
.ring-red-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity));
}
.ring-red-200\/0 {
  --tw-ring-color: rgba(254, 202, 202, 0);
}
.ring-red-200\/10 {
  --tw-ring-color: rgba(254, 202, 202, 0.1);
}
.ring-red-200\/100 {
  --tw-ring-color: rgba(254, 202, 202, 1);
}
.ring-red-200\/15 {
  --tw-ring-color: rgba(254, 202, 202, 0.15);
}
.ring-red-200\/20 {
  --tw-ring-color: rgba(254, 202, 202, 0.2);
}
.ring-red-200\/25 {
  --tw-ring-color: rgba(254, 202, 202, 0.25);
}
.ring-red-200\/30 {
  --tw-ring-color: rgba(254, 202, 202, 0.3);
}
.ring-red-200\/35 {
  --tw-ring-color: rgba(254, 202, 202, 0.35);
}
.ring-red-200\/40 {
  --tw-ring-color: rgba(254, 202, 202, 0.4);
}
.ring-red-200\/45 {
  --tw-ring-color: rgba(254, 202, 202, 0.45);
}
.ring-red-200\/5 {
  --tw-ring-color: rgba(254, 202, 202, 0.05);
}
.ring-red-200\/50 {
  --tw-ring-color: rgba(254, 202, 202, 0.5);
}
.ring-red-200\/55 {
  --tw-ring-color: rgba(254, 202, 202, 0.55);
}
.ring-red-200\/60 {
  --tw-ring-color: rgba(254, 202, 202, 0.6);
}
.ring-red-200\/65 {
  --tw-ring-color: rgba(254, 202, 202, 0.65);
}
.ring-red-200\/70 {
  --tw-ring-color: rgba(254, 202, 202, 0.7);
}
.ring-red-200\/75 {
  --tw-ring-color: rgba(254, 202, 202, 0.75);
}
.ring-red-200\/80 {
  --tw-ring-color: rgba(254, 202, 202, 0.8);
}
.ring-red-200\/85 {
  --tw-ring-color: rgba(254, 202, 202, 0.85);
}
.ring-red-200\/90 {
  --tw-ring-color: rgba(254, 202, 202, 0.9);
}
.ring-red-200\/95 {
  --tw-ring-color: rgba(254, 202, 202, 0.95);
}
.ring-red-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity));
}
.ring-red-300\/0 {
  --tw-ring-color: rgba(252, 165, 165, 0);
}
.ring-red-300\/10 {
  --tw-ring-color: rgba(252, 165, 165, 0.1);
}
.ring-red-300\/100 {
  --tw-ring-color: rgba(252, 165, 165, 1);
}
.ring-red-300\/15 {
  --tw-ring-color: rgba(252, 165, 165, 0.15);
}
.ring-red-300\/20 {
  --tw-ring-color: rgba(252, 165, 165, 0.2);
}
.ring-red-300\/25 {
  --tw-ring-color: rgba(252, 165, 165, 0.25);
}
.ring-red-300\/30 {
  --tw-ring-color: rgba(252, 165, 165, 0.3);
}
.ring-red-300\/35 {
  --tw-ring-color: rgba(252, 165, 165, 0.35);
}
.ring-red-300\/40 {
  --tw-ring-color: rgba(252, 165, 165, 0.4);
}
.ring-red-300\/45 {
  --tw-ring-color: rgba(252, 165, 165, 0.45);
}
.ring-red-300\/5 {
  --tw-ring-color: rgba(252, 165, 165, 0.05);
}
.ring-red-300\/50 {
  --tw-ring-color: rgba(252, 165, 165, 0.5);
}
.ring-red-300\/55 {
  --tw-ring-color: rgba(252, 165, 165, 0.55);
}
.ring-red-300\/60 {
  --tw-ring-color: rgba(252, 165, 165, 0.6);
}
.ring-red-300\/65 {
  --tw-ring-color: rgba(252, 165, 165, 0.65);
}
.ring-red-300\/70 {
  --tw-ring-color: rgba(252, 165, 165, 0.7);
}
.ring-red-300\/75 {
  --tw-ring-color: rgba(252, 165, 165, 0.75);
}
.ring-red-300\/80 {
  --tw-ring-color: rgba(252, 165, 165, 0.8);
}
.ring-red-300\/85 {
  --tw-ring-color: rgba(252, 165, 165, 0.85);
}
.ring-red-300\/90 {
  --tw-ring-color: rgba(252, 165, 165, 0.9);
}
.ring-red-300\/95 {
  --tw-ring-color: rgba(252, 165, 165, 0.95);
}
.ring-red-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity));
}
.ring-red-400\/0 {
  --tw-ring-color: rgba(248, 113, 113, 0);
}
.ring-red-400\/10 {
  --tw-ring-color: rgba(248, 113, 113, 0.1);
}
.ring-red-400\/100 {
  --tw-ring-color: rgba(248, 113, 113, 1);
}
.ring-red-400\/15 {
  --tw-ring-color: rgba(248, 113, 113, 0.15);
}
.ring-red-400\/20 {
  --tw-ring-color: rgba(248, 113, 113, 0.2);
}
.ring-red-400\/25 {
  --tw-ring-color: rgba(248, 113, 113, 0.25);
}
.ring-red-400\/30 {
  --tw-ring-color: rgba(248, 113, 113, 0.3);
}
.ring-red-400\/35 {
  --tw-ring-color: rgba(248, 113, 113, 0.35);
}
.ring-red-400\/40 {
  --tw-ring-color: rgba(248, 113, 113, 0.4);
}
.ring-red-400\/45 {
  --tw-ring-color: rgba(248, 113, 113, 0.45);
}
.ring-red-400\/5 {
  --tw-ring-color: rgba(248, 113, 113, 0.05);
}
.ring-red-400\/50 {
  --tw-ring-color: rgba(248, 113, 113, 0.5);
}
.ring-red-400\/55 {
  --tw-ring-color: rgba(248, 113, 113, 0.55);
}
.ring-red-400\/60 {
  --tw-ring-color: rgba(248, 113, 113, 0.6);
}
.ring-red-400\/65 {
  --tw-ring-color: rgba(248, 113, 113, 0.65);
}
.ring-red-400\/70 {
  --tw-ring-color: rgba(248, 113, 113, 0.7);
}
.ring-red-400\/75 {
  --tw-ring-color: rgba(248, 113, 113, 0.75);
}
.ring-red-400\/80 {
  --tw-ring-color: rgba(248, 113, 113, 0.8);
}
.ring-red-400\/85 {
  --tw-ring-color: rgba(248, 113, 113, 0.85);
}
.ring-red-400\/90 {
  --tw-ring-color: rgba(248, 113, 113, 0.9);
}
.ring-red-400\/95 {
  --tw-ring-color: rgba(248, 113, 113, 0.95);
}
.ring-red-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity));
}
.ring-red-50\/0 {
  --tw-ring-color: rgba(254, 242, 242, 0);
}
.ring-red-50\/10 {
  --tw-ring-color: rgba(254, 242, 242, 0.1);
}
.ring-red-50\/100 {
  --tw-ring-color: rgba(254, 242, 242, 1);
}
.ring-red-50\/15 {
  --tw-ring-color: rgba(254, 242, 242, 0.15);
}
.ring-red-50\/20 {
  --tw-ring-color: rgba(254, 242, 242, 0.2);
}
.ring-red-50\/25 {
  --tw-ring-color: rgba(254, 242, 242, 0.25);
}
.ring-red-50\/30 {
  --tw-ring-color: rgba(254, 242, 242, 0.3);
}
.ring-red-50\/35 {
  --tw-ring-color: rgba(254, 242, 242, 0.35);
}
.ring-red-50\/40 {
  --tw-ring-color: rgba(254, 242, 242, 0.4);
}
.ring-red-50\/45 {
  --tw-ring-color: rgba(254, 242, 242, 0.45);
}
.ring-red-50\/5 {
  --tw-ring-color: rgba(254, 242, 242, 0.05);
}
.ring-red-50\/50 {
  --tw-ring-color: rgba(254, 242, 242, 0.5);
}
.ring-red-50\/55 {
  --tw-ring-color: rgba(254, 242, 242, 0.55);
}
.ring-red-50\/60 {
  --tw-ring-color: rgba(254, 242, 242, 0.6);
}
.ring-red-50\/65 {
  --tw-ring-color: rgba(254, 242, 242, 0.65);
}
.ring-red-50\/70 {
  --tw-ring-color: rgba(254, 242, 242, 0.7);
}
.ring-red-50\/75 {
  --tw-ring-color: rgba(254, 242, 242, 0.75);
}
.ring-red-50\/80 {
  --tw-ring-color: rgba(254, 242, 242, 0.8);
}
.ring-red-50\/85 {
  --tw-ring-color: rgba(254, 242, 242, 0.85);
}
.ring-red-50\/90 {
  --tw-ring-color: rgba(254, 242, 242, 0.9);
}
.ring-red-50\/95 {
  --tw-ring-color: rgba(254, 242, 242, 0.95);
}
.ring-red-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity));
}
.ring-red-500\/0 {
  --tw-ring-color: rgba(239, 68, 68, 0);
}
.ring-red-500\/10 {
  --tw-ring-color: rgba(239, 68, 68, 0.1);
}
.ring-red-500\/100 {
  --tw-ring-color: rgba(239, 68, 68, 1);
}
.ring-red-500\/15 {
  --tw-ring-color: rgba(239, 68, 68, 0.15);
}
.ring-red-500\/20 {
  --tw-ring-color: rgba(239, 68, 68, 0.2);
}
.ring-red-500\/25 {
  --tw-ring-color: rgba(239, 68, 68, 0.25);
}
.ring-red-500\/30 {
  --tw-ring-color: rgba(239, 68, 68, 0.3);
}
.ring-red-500\/35 {
  --tw-ring-color: rgba(239, 68, 68, 0.35);
}
.ring-red-500\/40 {
  --tw-ring-color: rgba(239, 68, 68, 0.4);
}
.ring-red-500\/45 {
  --tw-ring-color: rgba(239, 68, 68, 0.45);
}
.ring-red-500\/5 {
  --tw-ring-color: rgba(239, 68, 68, 0.05);
}
.ring-red-500\/50 {
  --tw-ring-color: rgba(239, 68, 68, 0.5);
}
.ring-red-500\/55 {
  --tw-ring-color: rgba(239, 68, 68, 0.55);
}
.ring-red-500\/60 {
  --tw-ring-color: rgba(239, 68, 68, 0.6);
}
.ring-red-500\/65 {
  --tw-ring-color: rgba(239, 68, 68, 0.65);
}
.ring-red-500\/70 {
  --tw-ring-color: rgba(239, 68, 68, 0.7);
}
.ring-red-500\/75 {
  --tw-ring-color: rgba(239, 68, 68, 0.75);
}
.ring-red-500\/80 {
  --tw-ring-color: rgba(239, 68, 68, 0.8);
}
.ring-red-500\/85 {
  --tw-ring-color: rgba(239, 68, 68, 0.85);
}
.ring-red-500\/90 {
  --tw-ring-color: rgba(239, 68, 68, 0.9);
}
.ring-red-500\/95 {
  --tw-ring-color: rgba(239, 68, 68, 0.95);
}
.ring-red-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity));
}
.ring-red-600\/0 {
  --tw-ring-color: rgba(220, 38, 38, 0);
}
.ring-red-600\/10 {
  --tw-ring-color: rgba(220, 38, 38, 0.1);
}
.ring-red-600\/100 {
  --tw-ring-color: rgba(220, 38, 38, 1);
}
.ring-red-600\/15 {
  --tw-ring-color: rgba(220, 38, 38, 0.15);
}
.ring-red-600\/20 {
  --tw-ring-color: rgba(220, 38, 38, 0.2);
}
.ring-red-600\/25 {
  --tw-ring-color: rgba(220, 38, 38, 0.25);
}
.ring-red-600\/30 {
  --tw-ring-color: rgba(220, 38, 38, 0.3);
}
.ring-red-600\/35 {
  --tw-ring-color: rgba(220, 38, 38, 0.35);
}
.ring-red-600\/40 {
  --tw-ring-color: rgba(220, 38, 38, 0.4);
}
.ring-red-600\/45 {
  --tw-ring-color: rgba(220, 38, 38, 0.45);
}
.ring-red-600\/5 {
  --tw-ring-color: rgba(220, 38, 38, 0.05);
}
.ring-red-600\/50 {
  --tw-ring-color: rgba(220, 38, 38, 0.5);
}
.ring-red-600\/55 {
  --tw-ring-color: rgba(220, 38, 38, 0.55);
}
.ring-red-600\/60 {
  --tw-ring-color: rgba(220, 38, 38, 0.6);
}
.ring-red-600\/65 {
  --tw-ring-color: rgba(220, 38, 38, 0.65);
}
.ring-red-600\/70 {
  --tw-ring-color: rgba(220, 38, 38, 0.7);
}
.ring-red-600\/75 {
  --tw-ring-color: rgba(220, 38, 38, 0.75);
}
.ring-red-600\/80 {
  --tw-ring-color: rgba(220, 38, 38, 0.8);
}
.ring-red-600\/85 {
  --tw-ring-color: rgba(220, 38, 38, 0.85);
}
.ring-red-600\/90 {
  --tw-ring-color: rgba(220, 38, 38, 0.9);
}
.ring-red-600\/95 {
  --tw-ring-color: rgba(220, 38, 38, 0.95);
}
.ring-red-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity));
}
.ring-red-700\/0 {
  --tw-ring-color: rgba(185, 28, 28, 0);
}
.ring-red-700\/10 {
  --tw-ring-color: rgba(185, 28, 28, 0.1);
}
.ring-red-700\/100 {
  --tw-ring-color: rgba(185, 28, 28, 1);
}
.ring-red-700\/15 {
  --tw-ring-color: rgba(185, 28, 28, 0.15);
}
.ring-red-700\/20 {
  --tw-ring-color: rgba(185, 28, 28, 0.2);
}
.ring-red-700\/25 {
  --tw-ring-color: rgba(185, 28, 28, 0.25);
}
.ring-red-700\/30 {
  --tw-ring-color: rgba(185, 28, 28, 0.3);
}
.ring-red-700\/35 {
  --tw-ring-color: rgba(185, 28, 28, 0.35);
}
.ring-red-700\/40 {
  --tw-ring-color: rgba(185, 28, 28, 0.4);
}
.ring-red-700\/45 {
  --tw-ring-color: rgba(185, 28, 28, 0.45);
}
.ring-red-700\/5 {
  --tw-ring-color: rgba(185, 28, 28, 0.05);
}
.ring-red-700\/50 {
  --tw-ring-color: rgba(185, 28, 28, 0.5);
}
.ring-red-700\/55 {
  --tw-ring-color: rgba(185, 28, 28, 0.55);
}
.ring-red-700\/60 {
  --tw-ring-color: rgba(185, 28, 28, 0.6);
}
.ring-red-700\/65 {
  --tw-ring-color: rgba(185, 28, 28, 0.65);
}
.ring-red-700\/70 {
  --tw-ring-color: rgba(185, 28, 28, 0.7);
}
.ring-red-700\/75 {
  --tw-ring-color: rgba(185, 28, 28, 0.75);
}
.ring-red-700\/80 {
  --tw-ring-color: rgba(185, 28, 28, 0.8);
}
.ring-red-700\/85 {
  --tw-ring-color: rgba(185, 28, 28, 0.85);
}
.ring-red-700\/90 {
  --tw-ring-color: rgba(185, 28, 28, 0.9);
}
.ring-red-700\/95 {
  --tw-ring-color: rgba(185, 28, 28, 0.95);
}
.ring-red-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity));
}
.ring-red-800\/0 {
  --tw-ring-color: rgba(153, 27, 27, 0);
}
.ring-red-800\/10 {
  --tw-ring-color: rgba(153, 27, 27, 0.1);
}
.ring-red-800\/100 {
  --tw-ring-color: rgba(153, 27, 27, 1);
}
.ring-red-800\/15 {
  --tw-ring-color: rgba(153, 27, 27, 0.15);
}
.ring-red-800\/20 {
  --tw-ring-color: rgba(153, 27, 27, 0.2);
}
.ring-red-800\/25 {
  --tw-ring-color: rgba(153, 27, 27, 0.25);
}
.ring-red-800\/30 {
  --tw-ring-color: rgba(153, 27, 27, 0.3);
}
.ring-red-800\/35 {
  --tw-ring-color: rgba(153, 27, 27, 0.35);
}
.ring-red-800\/40 {
  --tw-ring-color: rgba(153, 27, 27, 0.4);
}
.ring-red-800\/45 {
  --tw-ring-color: rgba(153, 27, 27, 0.45);
}
.ring-red-800\/5 {
  --tw-ring-color: rgba(153, 27, 27, 0.05);
}
.ring-red-800\/50 {
  --tw-ring-color: rgba(153, 27, 27, 0.5);
}
.ring-red-800\/55 {
  --tw-ring-color: rgba(153, 27, 27, 0.55);
}
.ring-red-800\/60 {
  --tw-ring-color: rgba(153, 27, 27, 0.6);
}
.ring-red-800\/65 {
  --tw-ring-color: rgba(153, 27, 27, 0.65);
}
.ring-red-800\/70 {
  --tw-ring-color: rgba(153, 27, 27, 0.7);
}
.ring-red-800\/75 {
  --tw-ring-color: rgba(153, 27, 27, 0.75);
}
.ring-red-800\/80 {
  --tw-ring-color: rgba(153, 27, 27, 0.8);
}
.ring-red-800\/85 {
  --tw-ring-color: rgba(153, 27, 27, 0.85);
}
.ring-red-800\/90 {
  --tw-ring-color: rgba(153, 27, 27, 0.9);
}
.ring-red-800\/95 {
  --tw-ring-color: rgba(153, 27, 27, 0.95);
}
.ring-red-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity));
}
.ring-red-900\/0 {
  --tw-ring-color: rgba(127, 29, 29, 0);
}
.ring-red-900\/10 {
  --tw-ring-color: rgba(127, 29, 29, 0.1);
}
.ring-red-900\/100 {
  --tw-ring-color: rgba(127, 29, 29, 1);
}
.ring-red-900\/15 {
  --tw-ring-color: rgba(127, 29, 29, 0.15);
}
.ring-red-900\/20 {
  --tw-ring-color: rgba(127, 29, 29, 0.2);
}
.ring-red-900\/25 {
  --tw-ring-color: rgba(127, 29, 29, 0.25);
}
.ring-red-900\/30 {
  --tw-ring-color: rgba(127, 29, 29, 0.3);
}
.ring-red-900\/35 {
  --tw-ring-color: rgba(127, 29, 29, 0.35);
}
.ring-red-900\/40 {
  --tw-ring-color: rgba(127, 29, 29, 0.4);
}
.ring-red-900\/45 {
  --tw-ring-color: rgba(127, 29, 29, 0.45);
}
.ring-red-900\/5 {
  --tw-ring-color: rgba(127, 29, 29, 0.05);
}
.ring-red-900\/50 {
  --tw-ring-color: rgba(127, 29, 29, 0.5);
}
.ring-red-900\/55 {
  --tw-ring-color: rgba(127, 29, 29, 0.55);
}
.ring-red-900\/60 {
  --tw-ring-color: rgba(127, 29, 29, 0.6);
}
.ring-red-900\/65 {
  --tw-ring-color: rgba(127, 29, 29, 0.65);
}
.ring-red-900\/70 {
  --tw-ring-color: rgba(127, 29, 29, 0.7);
}
.ring-red-900\/75 {
  --tw-ring-color: rgba(127, 29, 29, 0.75);
}
.ring-red-900\/80 {
  --tw-ring-color: rgba(127, 29, 29, 0.8);
}
.ring-red-900\/85 {
  --tw-ring-color: rgba(127, 29, 29, 0.85);
}
.ring-red-900\/90 {
  --tw-ring-color: rgba(127, 29, 29, 0.9);
}
.ring-red-900\/95 {
  --tw-ring-color: rgba(127, 29, 29, 0.95);
}
.ring-red-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(69, 10, 10, var(--tw-ring-opacity));
}
.ring-red-950\/0 {
  --tw-ring-color: rgba(69, 10, 10, 0);
}
.ring-red-950\/10 {
  --tw-ring-color: rgba(69, 10, 10, 0.1);
}
.ring-red-950\/100 {
  --tw-ring-color: rgba(69, 10, 10, 1);
}
.ring-red-950\/15 {
  --tw-ring-color: rgba(69, 10, 10, 0.15);
}
.ring-red-950\/20 {
  --tw-ring-color: rgba(69, 10, 10, 0.2);
}
.ring-red-950\/25 {
  --tw-ring-color: rgba(69, 10, 10, 0.25);
}
.ring-red-950\/30 {
  --tw-ring-color: rgba(69, 10, 10, 0.3);
}
.ring-red-950\/35 {
  --tw-ring-color: rgba(69, 10, 10, 0.35);
}
.ring-red-950\/40 {
  --tw-ring-color: rgba(69, 10, 10, 0.4);
}
.ring-red-950\/45 {
  --tw-ring-color: rgba(69, 10, 10, 0.45);
}
.ring-red-950\/5 {
  --tw-ring-color: rgba(69, 10, 10, 0.05);
}
.ring-red-950\/50 {
  --tw-ring-color: rgba(69, 10, 10, 0.5);
}
.ring-red-950\/55 {
  --tw-ring-color: rgba(69, 10, 10, 0.55);
}
.ring-red-950\/60 {
  --tw-ring-color: rgba(69, 10, 10, 0.6);
}
.ring-red-950\/65 {
  --tw-ring-color: rgba(69, 10, 10, 0.65);
}
.ring-red-950\/70 {
  --tw-ring-color: rgba(69, 10, 10, 0.7);
}
.ring-red-950\/75 {
  --tw-ring-color: rgba(69, 10, 10, 0.75);
}
.ring-red-950\/80 {
  --tw-ring-color: rgba(69, 10, 10, 0.8);
}
.ring-red-950\/85 {
  --tw-ring-color: rgba(69, 10, 10, 0.85);
}
.ring-red-950\/90 {
  --tw-ring-color: rgba(69, 10, 10, 0.9);
}
.ring-red-950\/95 {
  --tw-ring-color: rgba(69, 10, 10, 0.95);
}
.ring-rose-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(255, 228, 230, var(--tw-ring-opacity));
}
.ring-rose-100\/0 {
  --tw-ring-color: rgba(255, 228, 230, 0);
}
.ring-rose-100\/10 {
  --tw-ring-color: rgba(255, 228, 230, 0.1);
}
.ring-rose-100\/100 {
  --tw-ring-color: rgba(255, 228, 230, 1);
}
.ring-rose-100\/15 {
  --tw-ring-color: rgba(255, 228, 230, 0.15);
}
.ring-rose-100\/20 {
  --tw-ring-color: rgba(255, 228, 230, 0.2);
}
.ring-rose-100\/25 {
  --tw-ring-color: rgba(255, 228, 230, 0.25);
}
.ring-rose-100\/30 {
  --tw-ring-color: rgba(255, 228, 230, 0.3);
}
.ring-rose-100\/35 {
  --tw-ring-color: rgba(255, 228, 230, 0.35);
}
.ring-rose-100\/40 {
  --tw-ring-color: rgba(255, 228, 230, 0.4);
}
.ring-rose-100\/45 {
  --tw-ring-color: rgba(255, 228, 230, 0.45);
}
.ring-rose-100\/5 {
  --tw-ring-color: rgba(255, 228, 230, 0.05);
}
.ring-rose-100\/50 {
  --tw-ring-color: rgba(255, 228, 230, 0.5);
}
.ring-rose-100\/55 {
  --tw-ring-color: rgba(255, 228, 230, 0.55);
}
.ring-rose-100\/60 {
  --tw-ring-color: rgba(255, 228, 230, 0.6);
}
.ring-rose-100\/65 {
  --tw-ring-color: rgba(255, 228, 230, 0.65);
}
.ring-rose-100\/70 {
  --tw-ring-color: rgba(255, 228, 230, 0.7);
}
.ring-rose-100\/75 {
  --tw-ring-color: rgba(255, 228, 230, 0.75);
}
.ring-rose-100\/80 {
  --tw-ring-color: rgba(255, 228, 230, 0.8);
}
.ring-rose-100\/85 {
  --tw-ring-color: rgba(255, 228, 230, 0.85);
}
.ring-rose-100\/90 {
  --tw-ring-color: rgba(255, 228, 230, 0.9);
}
.ring-rose-100\/95 {
  --tw-ring-color: rgba(255, 228, 230, 0.95);
}
.ring-rose-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(254, 205, 211, var(--tw-ring-opacity));
}
.ring-rose-200\/0 {
  --tw-ring-color: rgba(254, 205, 211, 0);
}
.ring-rose-200\/10 {
  --tw-ring-color: rgba(254, 205, 211, 0.1);
}
.ring-rose-200\/100 {
  --tw-ring-color: rgba(254, 205, 211, 1);
}
.ring-rose-200\/15 {
  --tw-ring-color: rgba(254, 205, 211, 0.15);
}
.ring-rose-200\/20 {
  --tw-ring-color: rgba(254, 205, 211, 0.2);
}
.ring-rose-200\/25 {
  --tw-ring-color: rgba(254, 205, 211, 0.25);
}
.ring-rose-200\/30 {
  --tw-ring-color: rgba(254, 205, 211, 0.3);
}
.ring-rose-200\/35 {
  --tw-ring-color: rgba(254, 205, 211, 0.35);
}
.ring-rose-200\/40 {
  --tw-ring-color: rgba(254, 205, 211, 0.4);
}
.ring-rose-200\/45 {
  --tw-ring-color: rgba(254, 205, 211, 0.45);
}
.ring-rose-200\/5 {
  --tw-ring-color: rgba(254, 205, 211, 0.05);
}
.ring-rose-200\/50 {
  --tw-ring-color: rgba(254, 205, 211, 0.5);
}
.ring-rose-200\/55 {
  --tw-ring-color: rgba(254, 205, 211, 0.55);
}
.ring-rose-200\/60 {
  --tw-ring-color: rgba(254, 205, 211, 0.6);
}
.ring-rose-200\/65 {
  --tw-ring-color: rgba(254, 205, 211, 0.65);
}
.ring-rose-200\/70 {
  --tw-ring-color: rgba(254, 205, 211, 0.7);
}
.ring-rose-200\/75 {
  --tw-ring-color: rgba(254, 205, 211, 0.75);
}
.ring-rose-200\/80 {
  --tw-ring-color: rgba(254, 205, 211, 0.8);
}
.ring-rose-200\/85 {
  --tw-ring-color: rgba(254, 205, 211, 0.85);
}
.ring-rose-200\/90 {
  --tw-ring-color: rgba(254, 205, 211, 0.9);
}
.ring-rose-200\/95 {
  --tw-ring-color: rgba(254, 205, 211, 0.95);
}
.ring-rose-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(253, 164, 175, var(--tw-ring-opacity));
}
.ring-rose-300\/0 {
  --tw-ring-color: rgba(253, 164, 175, 0);
}
.ring-rose-300\/10 {
  --tw-ring-color: rgba(253, 164, 175, 0.1);
}
.ring-rose-300\/100 {
  --tw-ring-color: rgba(253, 164, 175, 1);
}
.ring-rose-300\/15 {
  --tw-ring-color: rgba(253, 164, 175, 0.15);
}
.ring-rose-300\/20 {
  --tw-ring-color: rgba(253, 164, 175, 0.2);
}
.ring-rose-300\/25 {
  --tw-ring-color: rgba(253, 164, 175, 0.25);
}
.ring-rose-300\/30 {
  --tw-ring-color: rgba(253, 164, 175, 0.3);
}
.ring-rose-300\/35 {
  --tw-ring-color: rgba(253, 164, 175, 0.35);
}
.ring-rose-300\/40 {
  --tw-ring-color: rgba(253, 164, 175, 0.4);
}
.ring-rose-300\/45 {
  --tw-ring-color: rgba(253, 164, 175, 0.45);
}
.ring-rose-300\/5 {
  --tw-ring-color: rgba(253, 164, 175, 0.05);
}
.ring-rose-300\/50 {
  --tw-ring-color: rgba(253, 164, 175, 0.5);
}
.ring-rose-300\/55 {
  --tw-ring-color: rgba(253, 164, 175, 0.55);
}
.ring-rose-300\/60 {
  --tw-ring-color: rgba(253, 164, 175, 0.6);
}
.ring-rose-300\/65 {
  --tw-ring-color: rgba(253, 164, 175, 0.65);
}
.ring-rose-300\/70 {
  --tw-ring-color: rgba(253, 164, 175, 0.7);
}
.ring-rose-300\/75 {
  --tw-ring-color: rgba(253, 164, 175, 0.75);
}
.ring-rose-300\/80 {
  --tw-ring-color: rgba(253, 164, 175, 0.8);
}
.ring-rose-300\/85 {
  --tw-ring-color: rgba(253, 164, 175, 0.85);
}
.ring-rose-300\/90 {
  --tw-ring-color: rgba(253, 164, 175, 0.9);
}
.ring-rose-300\/95 {
  --tw-ring-color: rgba(253, 164, 175, 0.95);
}
.ring-rose-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(251, 113, 133, var(--tw-ring-opacity));
}
.ring-rose-400\/0 {
  --tw-ring-color: rgba(251, 113, 133, 0);
}
.ring-rose-400\/10 {
  --tw-ring-color: rgba(251, 113, 133, 0.1);
}
.ring-rose-400\/100 {
  --tw-ring-color: rgba(251, 113, 133, 1);
}
.ring-rose-400\/15 {
  --tw-ring-color: rgba(251, 113, 133, 0.15);
}
.ring-rose-400\/20 {
  --tw-ring-color: rgba(251, 113, 133, 0.2);
}
.ring-rose-400\/25 {
  --tw-ring-color: rgba(251, 113, 133, 0.25);
}
.ring-rose-400\/30 {
  --tw-ring-color: rgba(251, 113, 133, 0.3);
}
.ring-rose-400\/35 {
  --tw-ring-color: rgba(251, 113, 133, 0.35);
}
.ring-rose-400\/40 {
  --tw-ring-color: rgba(251, 113, 133, 0.4);
}
.ring-rose-400\/45 {
  --tw-ring-color: rgba(251, 113, 133, 0.45);
}
.ring-rose-400\/5 {
  --tw-ring-color: rgba(251, 113, 133, 0.05);
}
.ring-rose-400\/50 {
  --tw-ring-color: rgba(251, 113, 133, 0.5);
}
.ring-rose-400\/55 {
  --tw-ring-color: rgba(251, 113, 133, 0.55);
}
.ring-rose-400\/60 {
  --tw-ring-color: rgba(251, 113, 133, 0.6);
}
.ring-rose-400\/65 {
  --tw-ring-color: rgba(251, 113, 133, 0.65);
}
.ring-rose-400\/70 {
  --tw-ring-color: rgba(251, 113, 133, 0.7);
}
.ring-rose-400\/75 {
  --tw-ring-color: rgba(251, 113, 133, 0.75);
}
.ring-rose-400\/80 {
  --tw-ring-color: rgba(251, 113, 133, 0.8);
}
.ring-rose-400\/85 {
  --tw-ring-color: rgba(251, 113, 133, 0.85);
}
.ring-rose-400\/90 {
  --tw-ring-color: rgba(251, 113, 133, 0.9);
}
.ring-rose-400\/95 {
  --tw-ring-color: rgba(251, 113, 133, 0.95);
}
.ring-rose-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(255, 241, 242, var(--tw-ring-opacity));
}
.ring-rose-50\/0 {
  --tw-ring-color: rgba(255, 241, 242, 0);
}
.ring-rose-50\/10 {
  --tw-ring-color: rgba(255, 241, 242, 0.1);
}
.ring-rose-50\/100 {
  --tw-ring-color: rgba(255, 241, 242, 1);
}
.ring-rose-50\/15 {
  --tw-ring-color: rgba(255, 241, 242, 0.15);
}
.ring-rose-50\/20 {
  --tw-ring-color: rgba(255, 241, 242, 0.2);
}
.ring-rose-50\/25 {
  --tw-ring-color: rgba(255, 241, 242, 0.25);
}
.ring-rose-50\/30 {
  --tw-ring-color: rgba(255, 241, 242, 0.3);
}
.ring-rose-50\/35 {
  --tw-ring-color: rgba(255, 241, 242, 0.35);
}
.ring-rose-50\/40 {
  --tw-ring-color: rgba(255, 241, 242, 0.4);
}
.ring-rose-50\/45 {
  --tw-ring-color: rgba(255, 241, 242, 0.45);
}
.ring-rose-50\/5 {
  --tw-ring-color: rgba(255, 241, 242, 0.05);
}
.ring-rose-50\/50 {
  --tw-ring-color: rgba(255, 241, 242, 0.5);
}
.ring-rose-50\/55 {
  --tw-ring-color: rgba(255, 241, 242, 0.55);
}
.ring-rose-50\/60 {
  --tw-ring-color: rgba(255, 241, 242, 0.6);
}
.ring-rose-50\/65 {
  --tw-ring-color: rgba(255, 241, 242, 0.65);
}
.ring-rose-50\/70 {
  --tw-ring-color: rgba(255, 241, 242, 0.7);
}
.ring-rose-50\/75 {
  --tw-ring-color: rgba(255, 241, 242, 0.75);
}
.ring-rose-50\/80 {
  --tw-ring-color: rgba(255, 241, 242, 0.8);
}
.ring-rose-50\/85 {
  --tw-ring-color: rgba(255, 241, 242, 0.85);
}
.ring-rose-50\/90 {
  --tw-ring-color: rgba(255, 241, 242, 0.9);
}
.ring-rose-50\/95 {
  --tw-ring-color: rgba(255, 241, 242, 0.95);
}
.ring-rose-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(244, 63, 94, var(--tw-ring-opacity));
}
.ring-rose-500\/0 {
  --tw-ring-color: rgba(244, 63, 94, 0);
}
.ring-rose-500\/10 {
  --tw-ring-color: rgba(244, 63, 94, 0.1);
}
.ring-rose-500\/100 {
  --tw-ring-color: rgba(244, 63, 94, 1);
}
.ring-rose-500\/15 {
  --tw-ring-color: rgba(244, 63, 94, 0.15);
}
.ring-rose-500\/20 {
  --tw-ring-color: rgba(244, 63, 94, 0.2);
}
.ring-rose-500\/25 {
  --tw-ring-color: rgba(244, 63, 94, 0.25);
}
.ring-rose-500\/30 {
  --tw-ring-color: rgba(244, 63, 94, 0.3);
}
.ring-rose-500\/35 {
  --tw-ring-color: rgba(244, 63, 94, 0.35);
}
.ring-rose-500\/40 {
  --tw-ring-color: rgba(244, 63, 94, 0.4);
}
.ring-rose-500\/45 {
  --tw-ring-color: rgba(244, 63, 94, 0.45);
}
.ring-rose-500\/5 {
  --tw-ring-color: rgba(244, 63, 94, 0.05);
}
.ring-rose-500\/50 {
  --tw-ring-color: rgba(244, 63, 94, 0.5);
}
.ring-rose-500\/55 {
  --tw-ring-color: rgba(244, 63, 94, 0.55);
}
.ring-rose-500\/60 {
  --tw-ring-color: rgba(244, 63, 94, 0.6);
}
.ring-rose-500\/65 {
  --tw-ring-color: rgba(244, 63, 94, 0.65);
}
.ring-rose-500\/70 {
  --tw-ring-color: rgba(244, 63, 94, 0.7);
}
.ring-rose-500\/75 {
  --tw-ring-color: rgba(244, 63, 94, 0.75);
}
.ring-rose-500\/80 {
  --tw-ring-color: rgba(244, 63, 94, 0.8);
}
.ring-rose-500\/85 {
  --tw-ring-color: rgba(244, 63, 94, 0.85);
}
.ring-rose-500\/90 {
  --tw-ring-color: rgba(244, 63, 94, 0.9);
}
.ring-rose-500\/95 {
  --tw-ring-color: rgba(244, 63, 94, 0.95);
}
.ring-rose-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(225, 29, 72, var(--tw-ring-opacity));
}
.ring-rose-600\/0 {
  --tw-ring-color: rgba(225, 29, 72, 0);
}
.ring-rose-600\/10 {
  --tw-ring-color: rgba(225, 29, 72, 0.1);
}
.ring-rose-600\/100 {
  --tw-ring-color: rgba(225, 29, 72, 1);
}
.ring-rose-600\/15 {
  --tw-ring-color: rgba(225, 29, 72, 0.15);
}
.ring-rose-600\/20 {
  --tw-ring-color: rgba(225, 29, 72, 0.2);
}
.ring-rose-600\/25 {
  --tw-ring-color: rgba(225, 29, 72, 0.25);
}
.ring-rose-600\/30 {
  --tw-ring-color: rgba(225, 29, 72, 0.3);
}
.ring-rose-600\/35 {
  --tw-ring-color: rgba(225, 29, 72, 0.35);
}
.ring-rose-600\/40 {
  --tw-ring-color: rgba(225, 29, 72, 0.4);
}
.ring-rose-600\/45 {
  --tw-ring-color: rgba(225, 29, 72, 0.45);
}
.ring-rose-600\/5 {
  --tw-ring-color: rgba(225, 29, 72, 0.05);
}
.ring-rose-600\/50 {
  --tw-ring-color: rgba(225, 29, 72, 0.5);
}
.ring-rose-600\/55 {
  --tw-ring-color: rgba(225, 29, 72, 0.55);
}
.ring-rose-600\/60 {
  --tw-ring-color: rgba(225, 29, 72, 0.6);
}
.ring-rose-600\/65 {
  --tw-ring-color: rgba(225, 29, 72, 0.65);
}
.ring-rose-600\/70 {
  --tw-ring-color: rgba(225, 29, 72, 0.7);
}
.ring-rose-600\/75 {
  --tw-ring-color: rgba(225, 29, 72, 0.75);
}
.ring-rose-600\/80 {
  --tw-ring-color: rgba(225, 29, 72, 0.8);
}
.ring-rose-600\/85 {
  --tw-ring-color: rgba(225, 29, 72, 0.85);
}
.ring-rose-600\/90 {
  --tw-ring-color: rgba(225, 29, 72, 0.9);
}
.ring-rose-600\/95 {
  --tw-ring-color: rgba(225, 29, 72, 0.95);
}
.ring-rose-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(190, 18, 60, var(--tw-ring-opacity));
}
.ring-rose-700\/0 {
  --tw-ring-color: rgba(190, 18, 60, 0);
}
.ring-rose-700\/10 {
  --tw-ring-color: rgba(190, 18, 60, 0.1);
}
.ring-rose-700\/100 {
  --tw-ring-color: rgba(190, 18, 60, 1);
}
.ring-rose-700\/15 {
  --tw-ring-color: rgba(190, 18, 60, 0.15);
}
.ring-rose-700\/20 {
  --tw-ring-color: rgba(190, 18, 60, 0.2);
}
.ring-rose-700\/25 {
  --tw-ring-color: rgba(190, 18, 60, 0.25);
}
.ring-rose-700\/30 {
  --tw-ring-color: rgba(190, 18, 60, 0.3);
}
.ring-rose-700\/35 {
  --tw-ring-color: rgba(190, 18, 60, 0.35);
}
.ring-rose-700\/40 {
  --tw-ring-color: rgba(190, 18, 60, 0.4);
}
.ring-rose-700\/45 {
  --tw-ring-color: rgba(190, 18, 60, 0.45);
}
.ring-rose-700\/5 {
  --tw-ring-color: rgba(190, 18, 60, 0.05);
}
.ring-rose-700\/50 {
  --tw-ring-color: rgba(190, 18, 60, 0.5);
}
.ring-rose-700\/55 {
  --tw-ring-color: rgba(190, 18, 60, 0.55);
}
.ring-rose-700\/60 {
  --tw-ring-color: rgba(190, 18, 60, 0.6);
}
.ring-rose-700\/65 {
  --tw-ring-color: rgba(190, 18, 60, 0.65);
}
.ring-rose-700\/70 {
  --tw-ring-color: rgba(190, 18, 60, 0.7);
}
.ring-rose-700\/75 {
  --tw-ring-color: rgba(190, 18, 60, 0.75);
}
.ring-rose-700\/80 {
  --tw-ring-color: rgba(190, 18, 60, 0.8);
}
.ring-rose-700\/85 {
  --tw-ring-color: rgba(190, 18, 60, 0.85);
}
.ring-rose-700\/90 {
  --tw-ring-color: rgba(190, 18, 60, 0.9);
}
.ring-rose-700\/95 {
  --tw-ring-color: rgba(190, 18, 60, 0.95);
}
.ring-rose-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(159, 18, 57, var(--tw-ring-opacity));
}
.ring-rose-800\/0 {
  --tw-ring-color: rgba(159, 18, 57, 0);
}
.ring-rose-800\/10 {
  --tw-ring-color: rgba(159, 18, 57, 0.1);
}
.ring-rose-800\/100 {
  --tw-ring-color: rgba(159, 18, 57, 1);
}
.ring-rose-800\/15 {
  --tw-ring-color: rgba(159, 18, 57, 0.15);
}
.ring-rose-800\/20 {
  --tw-ring-color: rgba(159, 18, 57, 0.2);
}
.ring-rose-800\/25 {
  --tw-ring-color: rgba(159, 18, 57, 0.25);
}
.ring-rose-800\/30 {
  --tw-ring-color: rgba(159, 18, 57, 0.3);
}
.ring-rose-800\/35 {
  --tw-ring-color: rgba(159, 18, 57, 0.35);
}
.ring-rose-800\/40 {
  --tw-ring-color: rgba(159, 18, 57, 0.4);
}
.ring-rose-800\/45 {
  --tw-ring-color: rgba(159, 18, 57, 0.45);
}
.ring-rose-800\/5 {
  --tw-ring-color: rgba(159, 18, 57, 0.05);
}
.ring-rose-800\/50 {
  --tw-ring-color: rgba(159, 18, 57, 0.5);
}
.ring-rose-800\/55 {
  --tw-ring-color: rgba(159, 18, 57, 0.55);
}
.ring-rose-800\/60 {
  --tw-ring-color: rgba(159, 18, 57, 0.6);
}
.ring-rose-800\/65 {
  --tw-ring-color: rgba(159, 18, 57, 0.65);
}
.ring-rose-800\/70 {
  --tw-ring-color: rgba(159, 18, 57, 0.7);
}
.ring-rose-800\/75 {
  --tw-ring-color: rgba(159, 18, 57, 0.75);
}
.ring-rose-800\/80 {
  --tw-ring-color: rgba(159, 18, 57, 0.8);
}
.ring-rose-800\/85 {
  --tw-ring-color: rgba(159, 18, 57, 0.85);
}
.ring-rose-800\/90 {
  --tw-ring-color: rgba(159, 18, 57, 0.9);
}
.ring-rose-800\/95 {
  --tw-ring-color: rgba(159, 18, 57, 0.95);
}
.ring-rose-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(136, 19, 55, var(--tw-ring-opacity));
}
.ring-rose-900\/0 {
  --tw-ring-color: rgba(136, 19, 55, 0);
}
.ring-rose-900\/10 {
  --tw-ring-color: rgba(136, 19, 55, 0.1);
}
.ring-rose-900\/100 {
  --tw-ring-color: rgba(136, 19, 55, 1);
}
.ring-rose-900\/15 {
  --tw-ring-color: rgba(136, 19, 55, 0.15);
}
.ring-rose-900\/20 {
  --tw-ring-color: rgba(136, 19, 55, 0.2);
}
.ring-rose-900\/25 {
  --tw-ring-color: rgba(136, 19, 55, 0.25);
}
.ring-rose-900\/30 {
  --tw-ring-color: rgba(136, 19, 55, 0.3);
}
.ring-rose-900\/35 {
  --tw-ring-color: rgba(136, 19, 55, 0.35);
}
.ring-rose-900\/40 {
  --tw-ring-color: rgba(136, 19, 55, 0.4);
}
.ring-rose-900\/45 {
  --tw-ring-color: rgba(136, 19, 55, 0.45);
}
.ring-rose-900\/5 {
  --tw-ring-color: rgba(136, 19, 55, 0.05);
}
.ring-rose-900\/50 {
  --tw-ring-color: rgba(136, 19, 55, 0.5);
}
.ring-rose-900\/55 {
  --tw-ring-color: rgba(136, 19, 55, 0.55);
}
.ring-rose-900\/60 {
  --tw-ring-color: rgba(136, 19, 55, 0.6);
}
.ring-rose-900\/65 {
  --tw-ring-color: rgba(136, 19, 55, 0.65);
}
.ring-rose-900\/70 {
  --tw-ring-color: rgba(136, 19, 55, 0.7);
}
.ring-rose-900\/75 {
  --tw-ring-color: rgba(136, 19, 55, 0.75);
}
.ring-rose-900\/80 {
  --tw-ring-color: rgba(136, 19, 55, 0.8);
}
.ring-rose-900\/85 {
  --tw-ring-color: rgba(136, 19, 55, 0.85);
}
.ring-rose-900\/90 {
  --tw-ring-color: rgba(136, 19, 55, 0.9);
}
.ring-rose-900\/95 {
  --tw-ring-color: rgba(136, 19, 55, 0.95);
}
.ring-rose-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(76, 5, 25, var(--tw-ring-opacity));
}
.ring-rose-950\/0 {
  --tw-ring-color: rgba(76, 5, 25, 0);
}
.ring-rose-950\/10 {
  --tw-ring-color: rgba(76, 5, 25, 0.1);
}
.ring-rose-950\/100 {
  --tw-ring-color: rgba(76, 5, 25, 1);
}
.ring-rose-950\/15 {
  --tw-ring-color: rgba(76, 5, 25, 0.15);
}
.ring-rose-950\/20 {
  --tw-ring-color: rgba(76, 5, 25, 0.2);
}
.ring-rose-950\/25 {
  --tw-ring-color: rgba(76, 5, 25, 0.25);
}
.ring-rose-950\/30 {
  --tw-ring-color: rgba(76, 5, 25, 0.3);
}
.ring-rose-950\/35 {
  --tw-ring-color: rgba(76, 5, 25, 0.35);
}
.ring-rose-950\/40 {
  --tw-ring-color: rgba(76, 5, 25, 0.4);
}
.ring-rose-950\/45 {
  --tw-ring-color: rgba(76, 5, 25, 0.45);
}
.ring-rose-950\/5 {
  --tw-ring-color: rgba(76, 5, 25, 0.05);
}
.ring-rose-950\/50 {
  --tw-ring-color: rgba(76, 5, 25, 0.5);
}
.ring-rose-950\/55 {
  --tw-ring-color: rgba(76, 5, 25, 0.55);
}
.ring-rose-950\/60 {
  --tw-ring-color: rgba(76, 5, 25, 0.6);
}
.ring-rose-950\/65 {
  --tw-ring-color: rgba(76, 5, 25, 0.65);
}
.ring-rose-950\/70 {
  --tw-ring-color: rgba(76, 5, 25, 0.7);
}
.ring-rose-950\/75 {
  --tw-ring-color: rgba(76, 5, 25, 0.75);
}
.ring-rose-950\/80 {
  --tw-ring-color: rgba(76, 5, 25, 0.8);
}
.ring-rose-950\/85 {
  --tw-ring-color: rgba(76, 5, 25, 0.85);
}
.ring-rose-950\/90 {
  --tw-ring-color: rgba(76, 5, 25, 0.9);
}
.ring-rose-950\/95 {
  --tw-ring-color: rgba(76, 5, 25, 0.95);
}
.ring-secondary {
  --tw-ring-opacity: 1;
  --tw-ring-color: var(--fallback-s,oklch(var(--s)/var(--tw-ring-opacity)));
}
.ring-secondary-content {
  --tw-ring-opacity: 1;
  --tw-ring-color: var(--fallback-sc,oklch(var(--sc)/var(--tw-ring-opacity)));
}
.ring-secondary-content\/0 {
  --tw-ring-color: var(--fallback-sc,oklch(var(--sc)/0));
}
.ring-secondary-content\/10 {
  --tw-ring-color: var(--fallback-sc,oklch(var(--sc)/0.1));
}
.ring-secondary-content\/100 {
  --tw-ring-color: var(--fallback-sc,oklch(var(--sc)/1));
}
.ring-secondary-content\/15 {
  --tw-ring-color: var(--fallback-sc,oklch(var(--sc)/0.15));
}
.ring-secondary-content\/20 {
  --tw-ring-color: var(--fallback-sc,oklch(var(--sc)/0.2));
}
.ring-secondary-content\/25 {
  --tw-ring-color: var(--fallback-sc,oklch(var(--sc)/0.25));
}
.ring-secondary-content\/30 {
  --tw-ring-color: var(--fallback-sc,oklch(var(--sc)/0.3));
}
.ring-secondary-content\/35 {
  --tw-ring-color: var(--fallback-sc,oklch(var(--sc)/0.35));
}
.ring-secondary-content\/40 {
  --tw-ring-color: var(--fallback-sc,oklch(var(--sc)/0.4));
}
.ring-secondary-content\/45 {
  --tw-ring-color: var(--fallback-sc,oklch(var(--sc)/0.45));
}
.ring-secondary-content\/5 {
  --tw-ring-color: var(--fallback-sc,oklch(var(--sc)/0.05));
}
.ring-secondary-content\/50 {
  --tw-ring-color: var(--fallback-sc,oklch(var(--sc)/0.5));
}
.ring-secondary-content\/55 {
  --tw-ring-color: var(--fallback-sc,oklch(var(--sc)/0.55));
}
.ring-secondary-content\/60 {
  --tw-ring-color: var(--fallback-sc,oklch(var(--sc)/0.6));
}
.ring-secondary-content\/65 {
  --tw-ring-color: var(--fallback-sc,oklch(var(--sc)/0.65));
}
.ring-secondary-content\/70 {
  --tw-ring-color: var(--fallback-sc,oklch(var(--sc)/0.7));
}
.ring-secondary-content\/75 {
  --tw-ring-color: var(--fallback-sc,oklch(var(--sc)/0.75));
}
.ring-secondary-content\/80 {
  --tw-ring-color: var(--fallback-sc,oklch(var(--sc)/0.8));
}
.ring-secondary-content\/85 {
  --tw-ring-color: var(--fallback-sc,oklch(var(--sc)/0.85));
}
.ring-secondary-content\/90 {
  --tw-ring-color: var(--fallback-sc,oklch(var(--sc)/0.9));
}
.ring-secondary-content\/95 {
  --tw-ring-color: var(--fallback-sc,oklch(var(--sc)/0.95));
}
.ring-secondary\/0 {
  --tw-ring-color: var(--fallback-s,oklch(var(--s)/0));
}
.ring-secondary\/10 {
  --tw-ring-color: var(--fallback-s,oklch(var(--s)/0.1));
}
.ring-secondary\/100 {
  --tw-ring-color: var(--fallback-s,oklch(var(--s)/1));
}
.ring-secondary\/15 {
  --tw-ring-color: var(--fallback-s,oklch(var(--s)/0.15));
}
.ring-secondary\/20 {
  --tw-ring-color: var(--fallback-s,oklch(var(--s)/0.2));
}
.ring-secondary\/25 {
  --tw-ring-color: var(--fallback-s,oklch(var(--s)/0.25));
}
.ring-secondary\/30 {
  --tw-ring-color: var(--fallback-s,oklch(var(--s)/0.3));
}
.ring-secondary\/35 {
  --tw-ring-color: var(--fallback-s,oklch(var(--s)/0.35));
}
.ring-secondary\/40 {
  --tw-ring-color: var(--fallback-s,oklch(var(--s)/0.4));
}
.ring-secondary\/45 {
  --tw-ring-color: var(--fallback-s,oklch(var(--s)/0.45));
}
.ring-secondary\/5 {
  --tw-ring-color: var(--fallback-s,oklch(var(--s)/0.05));
}
.ring-secondary\/50 {
  --tw-ring-color: var(--fallback-s,oklch(var(--s)/0.5));
}
.ring-secondary\/55 {
  --tw-ring-color: var(--fallback-s,oklch(var(--s)/0.55));
}
.ring-secondary\/60 {
  --tw-ring-color: var(--fallback-s,oklch(var(--s)/0.6));
}
.ring-secondary\/65 {
  --tw-ring-color: var(--fallback-s,oklch(var(--s)/0.65));
}
.ring-secondary\/70 {
  --tw-ring-color: var(--fallback-s,oklch(var(--s)/0.7));
}
.ring-secondary\/75 {
  --tw-ring-color: var(--fallback-s,oklch(var(--s)/0.75));
}
.ring-secondary\/80 {
  --tw-ring-color: var(--fallback-s,oklch(var(--s)/0.8));
}
.ring-secondary\/85 {
  --tw-ring-color: var(--fallback-s,oklch(var(--s)/0.85));
}
.ring-secondary\/90 {
  --tw-ring-color: var(--fallback-s,oklch(var(--s)/0.9));
}
.ring-secondary\/95 {
  --tw-ring-color: var(--fallback-s,oklch(var(--s)/0.95));
}
.ring-sky-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(224, 242, 254, var(--tw-ring-opacity));
}
.ring-sky-100\/0 {
  --tw-ring-color: rgba(224, 242, 254, 0);
}
.ring-sky-100\/10 {
  --tw-ring-color: rgba(224, 242, 254, 0.1);
}
.ring-sky-100\/100 {
  --tw-ring-color: rgba(224, 242, 254, 1);
}
.ring-sky-100\/15 {
  --tw-ring-color: rgba(224, 242, 254, 0.15);
}
.ring-sky-100\/20 {
  --tw-ring-color: rgba(224, 242, 254, 0.2);
}
.ring-sky-100\/25 {
  --tw-ring-color: rgba(224, 242, 254, 0.25);
}
.ring-sky-100\/30 {
  --tw-ring-color: rgba(224, 242, 254, 0.3);
}
.ring-sky-100\/35 {
  --tw-ring-color: rgba(224, 242, 254, 0.35);
}
.ring-sky-100\/40 {
  --tw-ring-color: rgba(224, 242, 254, 0.4);
}
.ring-sky-100\/45 {
  --tw-ring-color: rgba(224, 242, 254, 0.45);
}
.ring-sky-100\/5 {
  --tw-ring-color: rgba(224, 242, 254, 0.05);
}
.ring-sky-100\/50 {
  --tw-ring-color: rgba(224, 242, 254, 0.5);
}
.ring-sky-100\/55 {
  --tw-ring-color: rgba(224, 242, 254, 0.55);
}
.ring-sky-100\/60 {
  --tw-ring-color: rgba(224, 242, 254, 0.6);
}
.ring-sky-100\/65 {
  --tw-ring-color: rgba(224, 242, 254, 0.65);
}
.ring-sky-100\/70 {
  --tw-ring-color: rgba(224, 242, 254, 0.7);
}
.ring-sky-100\/75 {
  --tw-ring-color: rgba(224, 242, 254, 0.75);
}
.ring-sky-100\/80 {
  --tw-ring-color: rgba(224, 242, 254, 0.8);
}
.ring-sky-100\/85 {
  --tw-ring-color: rgba(224, 242, 254, 0.85);
}
.ring-sky-100\/90 {
  --tw-ring-color: rgba(224, 242, 254, 0.9);
}
.ring-sky-100\/95 {
  --tw-ring-color: rgba(224, 242, 254, 0.95);
}
.ring-sky-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(186, 230, 253, var(--tw-ring-opacity));
}
.ring-sky-200\/0 {
  --tw-ring-color: rgba(186, 230, 253, 0);
}
.ring-sky-200\/10 {
  --tw-ring-color: rgba(186, 230, 253, 0.1);
}
.ring-sky-200\/100 {
  --tw-ring-color: rgba(186, 230, 253, 1);
}
.ring-sky-200\/15 {
  --tw-ring-color: rgba(186, 230, 253, 0.15);
}
.ring-sky-200\/20 {
  --tw-ring-color: rgba(186, 230, 253, 0.2);
}
.ring-sky-200\/25 {
  --tw-ring-color: rgba(186, 230, 253, 0.25);
}
.ring-sky-200\/30 {
  --tw-ring-color: rgba(186, 230, 253, 0.3);
}
.ring-sky-200\/35 {
  --tw-ring-color: rgba(186, 230, 253, 0.35);
}
.ring-sky-200\/40 {
  --tw-ring-color: rgba(186, 230, 253, 0.4);
}
.ring-sky-200\/45 {
  --tw-ring-color: rgba(186, 230, 253, 0.45);
}
.ring-sky-200\/5 {
  --tw-ring-color: rgba(186, 230, 253, 0.05);
}
.ring-sky-200\/50 {
  --tw-ring-color: rgba(186, 230, 253, 0.5);
}
.ring-sky-200\/55 {
  --tw-ring-color: rgba(186, 230, 253, 0.55);
}
.ring-sky-200\/60 {
  --tw-ring-color: rgba(186, 230, 253, 0.6);
}
.ring-sky-200\/65 {
  --tw-ring-color: rgba(186, 230, 253, 0.65);
}
.ring-sky-200\/70 {
  --tw-ring-color: rgba(186, 230, 253, 0.7);
}
.ring-sky-200\/75 {
  --tw-ring-color: rgba(186, 230, 253, 0.75);
}
.ring-sky-200\/80 {
  --tw-ring-color: rgba(186, 230, 253, 0.8);
}
.ring-sky-200\/85 {
  --tw-ring-color: rgba(186, 230, 253, 0.85);
}
.ring-sky-200\/90 {
  --tw-ring-color: rgba(186, 230, 253, 0.9);
}
.ring-sky-200\/95 {
  --tw-ring-color: rgba(186, 230, 253, 0.95);
}
.ring-sky-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(125, 211, 252, var(--tw-ring-opacity));
}
.ring-sky-300\/0 {
  --tw-ring-color: rgba(125, 211, 252, 0);
}
.ring-sky-300\/10 {
  --tw-ring-color: rgba(125, 211, 252, 0.1);
}
.ring-sky-300\/100 {
  --tw-ring-color: rgba(125, 211, 252, 1);
}
.ring-sky-300\/15 {
  --tw-ring-color: rgba(125, 211, 252, 0.15);
}
.ring-sky-300\/20 {
  --tw-ring-color: rgba(125, 211, 252, 0.2);
}
.ring-sky-300\/25 {
  --tw-ring-color: rgba(125, 211, 252, 0.25);
}
.ring-sky-300\/30 {
  --tw-ring-color: rgba(125, 211, 252, 0.3);
}
.ring-sky-300\/35 {
  --tw-ring-color: rgba(125, 211, 252, 0.35);
}
.ring-sky-300\/40 {
  --tw-ring-color: rgba(125, 211, 252, 0.4);
}
.ring-sky-300\/45 {
  --tw-ring-color: rgba(125, 211, 252, 0.45);
}
.ring-sky-300\/5 {
  --tw-ring-color: rgba(125, 211, 252, 0.05);
}
.ring-sky-300\/50 {
  --tw-ring-color: rgba(125, 211, 252, 0.5);
}
.ring-sky-300\/55 {
  --tw-ring-color: rgba(125, 211, 252, 0.55);
}
.ring-sky-300\/60 {
  --tw-ring-color: rgba(125, 211, 252, 0.6);
}
.ring-sky-300\/65 {
  --tw-ring-color: rgba(125, 211, 252, 0.65);
}
.ring-sky-300\/70 {
  --tw-ring-color: rgba(125, 211, 252, 0.7);
}
.ring-sky-300\/75 {
  --tw-ring-color: rgba(125, 211, 252, 0.75);
}
.ring-sky-300\/80 {
  --tw-ring-color: rgba(125, 211, 252, 0.8);
}
.ring-sky-300\/85 {
  --tw-ring-color: rgba(125, 211, 252, 0.85);
}
.ring-sky-300\/90 {
  --tw-ring-color: rgba(125, 211, 252, 0.9);
}
.ring-sky-300\/95 {
  --tw-ring-color: rgba(125, 211, 252, 0.95);
}
.ring-sky-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(56, 189, 248, var(--tw-ring-opacity));
}
.ring-sky-400\/0 {
  --tw-ring-color: rgba(56, 189, 248, 0);
}
.ring-sky-400\/10 {
  --tw-ring-color: rgba(56, 189, 248, 0.1);
}
.ring-sky-400\/100 {
  --tw-ring-color: rgba(56, 189, 248, 1);
}
.ring-sky-400\/15 {
  --tw-ring-color: rgba(56, 189, 248, 0.15);
}
.ring-sky-400\/20 {
  --tw-ring-color: rgba(56, 189, 248, 0.2);
}
.ring-sky-400\/25 {
  --tw-ring-color: rgba(56, 189, 248, 0.25);
}
.ring-sky-400\/30 {
  --tw-ring-color: rgba(56, 189, 248, 0.3);
}
.ring-sky-400\/35 {
  --tw-ring-color: rgba(56, 189, 248, 0.35);
}
.ring-sky-400\/40 {
  --tw-ring-color: rgba(56, 189, 248, 0.4);
}
.ring-sky-400\/45 {
  --tw-ring-color: rgba(56, 189, 248, 0.45);
}
.ring-sky-400\/5 {
  --tw-ring-color: rgba(56, 189, 248, 0.05);
}
.ring-sky-400\/50 {
  --tw-ring-color: rgba(56, 189, 248, 0.5);
}
.ring-sky-400\/55 {
  --tw-ring-color: rgba(56, 189, 248, 0.55);
}
.ring-sky-400\/60 {
  --tw-ring-color: rgba(56, 189, 248, 0.6);
}
.ring-sky-400\/65 {
  --tw-ring-color: rgba(56, 189, 248, 0.65);
}
.ring-sky-400\/70 {
  --tw-ring-color: rgba(56, 189, 248, 0.7);
}
.ring-sky-400\/75 {
  --tw-ring-color: rgba(56, 189, 248, 0.75);
}
.ring-sky-400\/80 {
  --tw-ring-color: rgba(56, 189, 248, 0.8);
}
.ring-sky-400\/85 {
  --tw-ring-color: rgba(56, 189, 248, 0.85);
}
.ring-sky-400\/90 {
  --tw-ring-color: rgba(56, 189, 248, 0.9);
}
.ring-sky-400\/95 {
  --tw-ring-color: rgba(56, 189, 248, 0.95);
}
.ring-sky-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(240, 249, 255, var(--tw-ring-opacity));
}
.ring-sky-50\/0 {
  --tw-ring-color: rgba(240, 249, 255, 0);
}
.ring-sky-50\/10 {
  --tw-ring-color: rgba(240, 249, 255, 0.1);
}
.ring-sky-50\/100 {
  --tw-ring-color: rgba(240, 249, 255, 1);
}
.ring-sky-50\/15 {
  --tw-ring-color: rgba(240, 249, 255, 0.15);
}
.ring-sky-50\/20 {
  --tw-ring-color: rgba(240, 249, 255, 0.2);
}
.ring-sky-50\/25 {
  --tw-ring-color: rgba(240, 249, 255, 0.25);
}
.ring-sky-50\/30 {
  --tw-ring-color: rgba(240, 249, 255, 0.3);
}
.ring-sky-50\/35 {
  --tw-ring-color: rgba(240, 249, 255, 0.35);
}
.ring-sky-50\/40 {
  --tw-ring-color: rgba(240, 249, 255, 0.4);
}
.ring-sky-50\/45 {
  --tw-ring-color: rgba(240, 249, 255, 0.45);
}
.ring-sky-50\/5 {
  --tw-ring-color: rgba(240, 249, 255, 0.05);
}
.ring-sky-50\/50 {
  --tw-ring-color: rgba(240, 249, 255, 0.5);
}
.ring-sky-50\/55 {
  --tw-ring-color: rgba(240, 249, 255, 0.55);
}
.ring-sky-50\/60 {
  --tw-ring-color: rgba(240, 249, 255, 0.6);
}
.ring-sky-50\/65 {
  --tw-ring-color: rgba(240, 249, 255, 0.65);
}
.ring-sky-50\/70 {
  --tw-ring-color: rgba(240, 249, 255, 0.7);
}
.ring-sky-50\/75 {
  --tw-ring-color: rgba(240, 249, 255, 0.75);
}
.ring-sky-50\/80 {
  --tw-ring-color: rgba(240, 249, 255, 0.8);
}
.ring-sky-50\/85 {
  --tw-ring-color: rgba(240, 249, 255, 0.85);
}
.ring-sky-50\/90 {
  --tw-ring-color: rgba(240, 249, 255, 0.9);
}
.ring-sky-50\/95 {
  --tw-ring-color: rgba(240, 249, 255, 0.95);
}
.ring-sky-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(14, 165, 233, var(--tw-ring-opacity));
}
.ring-sky-500\/0 {
  --tw-ring-color: rgba(14, 165, 233, 0);
}
.ring-sky-500\/10 {
  --tw-ring-color: rgba(14, 165, 233, 0.1);
}
.ring-sky-500\/100 {
  --tw-ring-color: rgba(14, 165, 233, 1);
}
.ring-sky-500\/15 {
  --tw-ring-color: rgba(14, 165, 233, 0.15);
}
.ring-sky-500\/20 {
  --tw-ring-color: rgba(14, 165, 233, 0.2);
}
.ring-sky-500\/25 {
  --tw-ring-color: rgba(14, 165, 233, 0.25);
}
.ring-sky-500\/30 {
  --tw-ring-color: rgba(14, 165, 233, 0.3);
}
.ring-sky-500\/35 {
  --tw-ring-color: rgba(14, 165, 233, 0.35);
}
.ring-sky-500\/40 {
  --tw-ring-color: rgba(14, 165, 233, 0.4);
}
.ring-sky-500\/45 {
  --tw-ring-color: rgba(14, 165, 233, 0.45);
}
.ring-sky-500\/5 {
  --tw-ring-color: rgba(14, 165, 233, 0.05);
}
.ring-sky-500\/50 {
  --tw-ring-color: rgba(14, 165, 233, 0.5);
}
.ring-sky-500\/55 {
  --tw-ring-color: rgba(14, 165, 233, 0.55);
}
.ring-sky-500\/60 {
  --tw-ring-color: rgba(14, 165, 233, 0.6);
}
.ring-sky-500\/65 {
  --tw-ring-color: rgba(14, 165, 233, 0.65);
}
.ring-sky-500\/70 {
  --tw-ring-color: rgba(14, 165, 233, 0.7);
}
.ring-sky-500\/75 {
  --tw-ring-color: rgba(14, 165, 233, 0.75);
}
.ring-sky-500\/80 {
  --tw-ring-color: rgba(14, 165, 233, 0.8);
}
.ring-sky-500\/85 {
  --tw-ring-color: rgba(14, 165, 233, 0.85);
}
.ring-sky-500\/90 {
  --tw-ring-color: rgba(14, 165, 233, 0.9);
}
.ring-sky-500\/95 {
  --tw-ring-color: rgba(14, 165, 233, 0.95);
}
.ring-sky-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(2, 132, 199, var(--tw-ring-opacity));
}
.ring-sky-600\/0 {
  --tw-ring-color: rgba(2, 132, 199, 0);
}
.ring-sky-600\/10 {
  --tw-ring-color: rgba(2, 132, 199, 0.1);
}
.ring-sky-600\/100 {
  --tw-ring-color: rgba(2, 132, 199, 1);
}
.ring-sky-600\/15 {
  --tw-ring-color: rgba(2, 132, 199, 0.15);
}
.ring-sky-600\/20 {
  --tw-ring-color: rgba(2, 132, 199, 0.2);
}
.ring-sky-600\/25 {
  --tw-ring-color: rgba(2, 132, 199, 0.25);
}
.ring-sky-600\/30 {
  --tw-ring-color: rgba(2, 132, 199, 0.3);
}
.ring-sky-600\/35 {
  --tw-ring-color: rgba(2, 132, 199, 0.35);
}
.ring-sky-600\/40 {
  --tw-ring-color: rgba(2, 132, 199, 0.4);
}
.ring-sky-600\/45 {
  --tw-ring-color: rgba(2, 132, 199, 0.45);
}
.ring-sky-600\/5 {
  --tw-ring-color: rgba(2, 132, 199, 0.05);
}
.ring-sky-600\/50 {
  --tw-ring-color: rgba(2, 132, 199, 0.5);
}
.ring-sky-600\/55 {
  --tw-ring-color: rgba(2, 132, 199, 0.55);
}
.ring-sky-600\/60 {
  --tw-ring-color: rgba(2, 132, 199, 0.6);
}
.ring-sky-600\/65 {
  --tw-ring-color: rgba(2, 132, 199, 0.65);
}
.ring-sky-600\/70 {
  --tw-ring-color: rgba(2, 132, 199, 0.7);
}
.ring-sky-600\/75 {
  --tw-ring-color: rgba(2, 132, 199, 0.75);
}
.ring-sky-600\/80 {
  --tw-ring-color: rgba(2, 132, 199, 0.8);
}
.ring-sky-600\/85 {
  --tw-ring-color: rgba(2, 132, 199, 0.85);
}
.ring-sky-600\/90 {
  --tw-ring-color: rgba(2, 132, 199, 0.9);
}
.ring-sky-600\/95 {
  --tw-ring-color: rgba(2, 132, 199, 0.95);
}
.ring-sky-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(3, 105, 161, var(--tw-ring-opacity));
}
.ring-sky-700\/0 {
  --tw-ring-color: rgba(3, 105, 161, 0);
}
.ring-sky-700\/10 {
  --tw-ring-color: rgba(3, 105, 161, 0.1);
}
.ring-sky-700\/100 {
  --tw-ring-color: rgba(3, 105, 161, 1);
}
.ring-sky-700\/15 {
  --tw-ring-color: rgba(3, 105, 161, 0.15);
}
.ring-sky-700\/20 {
  --tw-ring-color: rgba(3, 105, 161, 0.2);
}
.ring-sky-700\/25 {
  --tw-ring-color: rgba(3, 105, 161, 0.25);
}
.ring-sky-700\/30 {
  --tw-ring-color: rgba(3, 105, 161, 0.3);
}
.ring-sky-700\/35 {
  --tw-ring-color: rgba(3, 105, 161, 0.35);
}
.ring-sky-700\/40 {
  --tw-ring-color: rgba(3, 105, 161, 0.4);
}
.ring-sky-700\/45 {
  --tw-ring-color: rgba(3, 105, 161, 0.45);
}
.ring-sky-700\/5 {
  --tw-ring-color: rgba(3, 105, 161, 0.05);
}
.ring-sky-700\/50 {
  --tw-ring-color: rgba(3, 105, 161, 0.5);
}
.ring-sky-700\/55 {
  --tw-ring-color: rgba(3, 105, 161, 0.55);
}
.ring-sky-700\/60 {
  --tw-ring-color: rgba(3, 105, 161, 0.6);
}
.ring-sky-700\/65 {
  --tw-ring-color: rgba(3, 105, 161, 0.65);
}
.ring-sky-700\/70 {
  --tw-ring-color: rgba(3, 105, 161, 0.7);
}
.ring-sky-700\/75 {
  --tw-ring-color: rgba(3, 105, 161, 0.75);
}
.ring-sky-700\/80 {
  --tw-ring-color: rgba(3, 105, 161, 0.8);
}
.ring-sky-700\/85 {
  --tw-ring-color: rgba(3, 105, 161, 0.85);
}
.ring-sky-700\/90 {
  --tw-ring-color: rgba(3, 105, 161, 0.9);
}
.ring-sky-700\/95 {
  --tw-ring-color: rgba(3, 105, 161, 0.95);
}
.ring-sky-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(7, 89, 133, var(--tw-ring-opacity));
}
.ring-sky-800\/0 {
  --tw-ring-color: rgba(7, 89, 133, 0);
}
.ring-sky-800\/10 {
  --tw-ring-color: rgba(7, 89, 133, 0.1);
}
.ring-sky-800\/100 {
  --tw-ring-color: rgba(7, 89, 133, 1);
}
.ring-sky-800\/15 {
  --tw-ring-color: rgba(7, 89, 133, 0.15);
}
.ring-sky-800\/20 {
  --tw-ring-color: rgba(7, 89, 133, 0.2);
}
.ring-sky-800\/25 {
  --tw-ring-color: rgba(7, 89, 133, 0.25);
}
.ring-sky-800\/30 {
  --tw-ring-color: rgba(7, 89, 133, 0.3);
}
.ring-sky-800\/35 {
  --tw-ring-color: rgba(7, 89, 133, 0.35);
}
.ring-sky-800\/40 {
  --tw-ring-color: rgba(7, 89, 133, 0.4);
}
.ring-sky-800\/45 {
  --tw-ring-color: rgba(7, 89, 133, 0.45);
}
.ring-sky-800\/5 {
  --tw-ring-color: rgba(7, 89, 133, 0.05);
}
.ring-sky-800\/50 {
  --tw-ring-color: rgba(7, 89, 133, 0.5);
}
.ring-sky-800\/55 {
  --tw-ring-color: rgba(7, 89, 133, 0.55);
}
.ring-sky-800\/60 {
  --tw-ring-color: rgba(7, 89, 133, 0.6);
}
.ring-sky-800\/65 {
  --tw-ring-color: rgba(7, 89, 133, 0.65);
}
.ring-sky-800\/70 {
  --tw-ring-color: rgba(7, 89, 133, 0.7);
}
.ring-sky-800\/75 {
  --tw-ring-color: rgba(7, 89, 133, 0.75);
}
.ring-sky-800\/80 {
  --tw-ring-color: rgba(7, 89, 133, 0.8);
}
.ring-sky-800\/85 {
  --tw-ring-color: rgba(7, 89, 133, 0.85);
}
.ring-sky-800\/90 {
  --tw-ring-color: rgba(7, 89, 133, 0.9);
}
.ring-sky-800\/95 {
  --tw-ring-color: rgba(7, 89, 133, 0.95);
}
.ring-sky-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(12, 74, 110, var(--tw-ring-opacity));
}
.ring-sky-900\/0 {
  --tw-ring-color: rgba(12, 74, 110, 0);
}
.ring-sky-900\/10 {
  --tw-ring-color: rgba(12, 74, 110, 0.1);
}
.ring-sky-900\/100 {
  --tw-ring-color: rgba(12, 74, 110, 1);
}
.ring-sky-900\/15 {
  --tw-ring-color: rgba(12, 74, 110, 0.15);
}
.ring-sky-900\/20 {
  --tw-ring-color: rgba(12, 74, 110, 0.2);
}
.ring-sky-900\/25 {
  --tw-ring-color: rgba(12, 74, 110, 0.25);
}
.ring-sky-900\/30 {
  --tw-ring-color: rgba(12, 74, 110, 0.3);
}
.ring-sky-900\/35 {
  --tw-ring-color: rgba(12, 74, 110, 0.35);
}
.ring-sky-900\/40 {
  --tw-ring-color: rgba(12, 74, 110, 0.4);
}
.ring-sky-900\/45 {
  --tw-ring-color: rgba(12, 74, 110, 0.45);
}
.ring-sky-900\/5 {
  --tw-ring-color: rgba(12, 74, 110, 0.05);
}
.ring-sky-900\/50 {
  --tw-ring-color: rgba(12, 74, 110, 0.5);
}
.ring-sky-900\/55 {
  --tw-ring-color: rgba(12, 74, 110, 0.55);
}
.ring-sky-900\/60 {
  --tw-ring-color: rgba(12, 74, 110, 0.6);
}
.ring-sky-900\/65 {
  --tw-ring-color: rgba(12, 74, 110, 0.65);
}
.ring-sky-900\/70 {
  --tw-ring-color: rgba(12, 74, 110, 0.7);
}
.ring-sky-900\/75 {
  --tw-ring-color: rgba(12, 74, 110, 0.75);
}
.ring-sky-900\/80 {
  --tw-ring-color: rgba(12, 74, 110, 0.8);
}
.ring-sky-900\/85 {
  --tw-ring-color: rgba(12, 74, 110, 0.85);
}
.ring-sky-900\/90 {
  --tw-ring-color: rgba(12, 74, 110, 0.9);
}
.ring-sky-900\/95 {
  --tw-ring-color: rgba(12, 74, 110, 0.95);
}
.ring-sky-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(8, 47, 73, var(--tw-ring-opacity));
}
.ring-sky-950\/0 {
  --tw-ring-color: rgba(8, 47, 73, 0);
}
.ring-sky-950\/10 {
  --tw-ring-color: rgba(8, 47, 73, 0.1);
}
.ring-sky-950\/100 {
  --tw-ring-color: rgba(8, 47, 73, 1);
}
.ring-sky-950\/15 {
  --tw-ring-color: rgba(8, 47, 73, 0.15);
}
.ring-sky-950\/20 {
  --tw-ring-color: rgba(8, 47, 73, 0.2);
}
.ring-sky-950\/25 {
  --tw-ring-color: rgba(8, 47, 73, 0.25);
}
.ring-sky-950\/30 {
  --tw-ring-color: rgba(8, 47, 73, 0.3);
}
.ring-sky-950\/35 {
  --tw-ring-color: rgba(8, 47, 73, 0.35);
}
.ring-sky-950\/40 {
  --tw-ring-color: rgba(8, 47, 73, 0.4);
}
.ring-sky-950\/45 {
  --tw-ring-color: rgba(8, 47, 73, 0.45);
}
.ring-sky-950\/5 {
  --tw-ring-color: rgba(8, 47, 73, 0.05);
}
.ring-sky-950\/50 {
  --tw-ring-color: rgba(8, 47, 73, 0.5);
}
.ring-sky-950\/55 {
  --tw-ring-color: rgba(8, 47, 73, 0.55);
}
.ring-sky-950\/60 {
  --tw-ring-color: rgba(8, 47, 73, 0.6);
}
.ring-sky-950\/65 {
  --tw-ring-color: rgba(8, 47, 73, 0.65);
}
.ring-sky-950\/70 {
  --tw-ring-color: rgba(8, 47, 73, 0.7);
}
.ring-sky-950\/75 {
  --tw-ring-color: rgba(8, 47, 73, 0.75);
}
.ring-sky-950\/80 {
  --tw-ring-color: rgba(8, 47, 73, 0.8);
}
.ring-sky-950\/85 {
  --tw-ring-color: rgba(8, 47, 73, 0.85);
}
.ring-sky-950\/90 {
  --tw-ring-color: rgba(8, 47, 73, 0.9);
}
.ring-sky-950\/95 {
  --tw-ring-color: rgba(8, 47, 73, 0.95);
}
.ring-slate-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(241, 245, 249, var(--tw-ring-opacity));
}
.ring-slate-100\/0 {
  --tw-ring-color: rgba(241, 245, 249, 0);
}
.ring-slate-100\/10 {
  --tw-ring-color: rgba(241, 245, 249, 0.1);
}
.ring-slate-100\/100 {
  --tw-ring-color: rgba(241, 245, 249, 1);
}
.ring-slate-100\/15 {
  --tw-ring-color: rgba(241, 245, 249, 0.15);
}
.ring-slate-100\/20 {
  --tw-ring-color: rgba(241, 245, 249, 0.2);
}
.ring-slate-100\/25 {
  --tw-ring-color: rgba(241, 245, 249, 0.25);
}
.ring-slate-100\/30 {
  --tw-ring-color: rgba(241, 245, 249, 0.3);
}
.ring-slate-100\/35 {
  --tw-ring-color: rgba(241, 245, 249, 0.35);
}
.ring-slate-100\/40 {
  --tw-ring-color: rgba(241, 245, 249, 0.4);
}
.ring-slate-100\/45 {
  --tw-ring-color: rgba(241, 245, 249, 0.45);
}
.ring-slate-100\/5 {
  --tw-ring-color: rgba(241, 245, 249, 0.05);
}
.ring-slate-100\/50 {
  --tw-ring-color: rgba(241, 245, 249, 0.5);
}
.ring-slate-100\/55 {
  --tw-ring-color: rgba(241, 245, 249, 0.55);
}
.ring-slate-100\/60 {
  --tw-ring-color: rgba(241, 245, 249, 0.6);
}
.ring-slate-100\/65 {
  --tw-ring-color: rgba(241, 245, 249, 0.65);
}
.ring-slate-100\/70 {
  --tw-ring-color: rgba(241, 245, 249, 0.7);
}
.ring-slate-100\/75 {
  --tw-ring-color: rgba(241, 245, 249, 0.75);
}
.ring-slate-100\/80 {
  --tw-ring-color: rgba(241, 245, 249, 0.8);
}
.ring-slate-100\/85 {
  --tw-ring-color: rgba(241, 245, 249, 0.85);
}
.ring-slate-100\/90 {
  --tw-ring-color: rgba(241, 245, 249, 0.9);
}
.ring-slate-100\/95 {
  --tw-ring-color: rgba(241, 245, 249, 0.95);
}
.ring-slate-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(226, 232, 240, var(--tw-ring-opacity));
}
.ring-slate-200\/0 {
  --tw-ring-color: rgba(226, 232, 240, 0);
}
.ring-slate-200\/10 {
  --tw-ring-color: rgba(226, 232, 240, 0.1);
}
.ring-slate-200\/100 {
  --tw-ring-color: rgba(226, 232, 240, 1);
}
.ring-slate-200\/15 {
  --tw-ring-color: rgba(226, 232, 240, 0.15);
}
.ring-slate-200\/20 {
  --tw-ring-color: rgba(226, 232, 240, 0.2);
}
.ring-slate-200\/25 {
  --tw-ring-color: rgba(226, 232, 240, 0.25);
}
.ring-slate-200\/30 {
  --tw-ring-color: rgba(226, 232, 240, 0.3);
}
.ring-slate-200\/35 {
  --tw-ring-color: rgba(226, 232, 240, 0.35);
}
.ring-slate-200\/40 {
  --tw-ring-color: rgba(226, 232, 240, 0.4);
}
.ring-slate-200\/45 {
  --tw-ring-color: rgba(226, 232, 240, 0.45);
}
.ring-slate-200\/5 {
  --tw-ring-color: rgba(226, 232, 240, 0.05);
}
.ring-slate-200\/50 {
  --tw-ring-color: rgba(226, 232, 240, 0.5);
}
.ring-slate-200\/55 {
  --tw-ring-color: rgba(226, 232, 240, 0.55);
}
.ring-slate-200\/60 {
  --tw-ring-color: rgba(226, 232, 240, 0.6);
}
.ring-slate-200\/65 {
  --tw-ring-color: rgba(226, 232, 240, 0.65);
}
.ring-slate-200\/70 {
  --tw-ring-color: rgba(226, 232, 240, 0.7);
}
.ring-slate-200\/75 {
  --tw-ring-color: rgba(226, 232, 240, 0.75);
}
.ring-slate-200\/80 {
  --tw-ring-color: rgba(226, 232, 240, 0.8);
}
.ring-slate-200\/85 {
  --tw-ring-color: rgba(226, 232, 240, 0.85);
}
.ring-slate-200\/90 {
  --tw-ring-color: rgba(226, 232, 240, 0.9);
}
.ring-slate-200\/95 {
  --tw-ring-color: rgba(226, 232, 240, 0.95);
}
.ring-slate-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(203, 213, 225, var(--tw-ring-opacity));
}
.ring-slate-300\/0 {
  --tw-ring-color: rgba(203, 213, 225, 0);
}
.ring-slate-300\/10 {
  --tw-ring-color: rgba(203, 213, 225, 0.1);
}
.ring-slate-300\/100 {
  --tw-ring-color: rgba(203, 213, 225, 1);
}
.ring-slate-300\/15 {
  --tw-ring-color: rgba(203, 213, 225, 0.15);
}
.ring-slate-300\/20 {
  --tw-ring-color: rgba(203, 213, 225, 0.2);
}
.ring-slate-300\/25 {
  --tw-ring-color: rgba(203, 213, 225, 0.25);
}
.ring-slate-300\/30 {
  --tw-ring-color: rgba(203, 213, 225, 0.3);
}
.ring-slate-300\/35 {
  --tw-ring-color: rgba(203, 213, 225, 0.35);
}
.ring-slate-300\/40 {
  --tw-ring-color: rgba(203, 213, 225, 0.4);
}
.ring-slate-300\/45 {
  --tw-ring-color: rgba(203, 213, 225, 0.45);
}
.ring-slate-300\/5 {
  --tw-ring-color: rgba(203, 213, 225, 0.05);
}
.ring-slate-300\/50 {
  --tw-ring-color: rgba(203, 213, 225, 0.5);
}
.ring-slate-300\/55 {
  --tw-ring-color: rgba(203, 213, 225, 0.55);
}
.ring-slate-300\/60 {
  --tw-ring-color: rgba(203, 213, 225, 0.6);
}
.ring-slate-300\/65 {
  --tw-ring-color: rgba(203, 213, 225, 0.65);
}
.ring-slate-300\/70 {
  --tw-ring-color: rgba(203, 213, 225, 0.7);
}
.ring-slate-300\/75 {
  --tw-ring-color: rgba(203, 213, 225, 0.75);
}
.ring-slate-300\/80 {
  --tw-ring-color: rgba(203, 213, 225, 0.8);
}
.ring-slate-300\/85 {
  --tw-ring-color: rgba(203, 213, 225, 0.85);
}
.ring-slate-300\/90 {
  --tw-ring-color: rgba(203, 213, 225, 0.9);
}
.ring-slate-300\/95 {
  --tw-ring-color: rgba(203, 213, 225, 0.95);
}
.ring-slate-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(148, 163, 184, var(--tw-ring-opacity));
}
.ring-slate-400\/0 {
  --tw-ring-color: rgba(148, 163, 184, 0);
}
.ring-slate-400\/10 {
  --tw-ring-color: rgba(148, 163, 184, 0.1);
}
.ring-slate-400\/100 {
  --tw-ring-color: rgba(148, 163, 184, 1);
}
.ring-slate-400\/15 {
  --tw-ring-color: rgba(148, 163, 184, 0.15);
}
.ring-slate-400\/20 {
  --tw-ring-color: rgba(148, 163, 184, 0.2);
}
.ring-slate-400\/25 {
  --tw-ring-color: rgba(148, 163, 184, 0.25);
}
.ring-slate-400\/30 {
  --tw-ring-color: rgba(148, 163, 184, 0.3);
}
.ring-slate-400\/35 {
  --tw-ring-color: rgba(148, 163, 184, 0.35);
}
.ring-slate-400\/40 {
  --tw-ring-color: rgba(148, 163, 184, 0.4);
}
.ring-slate-400\/45 {
  --tw-ring-color: rgba(148, 163, 184, 0.45);
}
.ring-slate-400\/5 {
  --tw-ring-color: rgba(148, 163, 184, 0.05);
}
.ring-slate-400\/50 {
  --tw-ring-color: rgba(148, 163, 184, 0.5);
}
.ring-slate-400\/55 {
  --tw-ring-color: rgba(148, 163, 184, 0.55);
}
.ring-slate-400\/60 {
  --tw-ring-color: rgba(148, 163, 184, 0.6);
}
.ring-slate-400\/65 {
  --tw-ring-color: rgba(148, 163, 184, 0.65);
}
.ring-slate-400\/70 {
  --tw-ring-color: rgba(148, 163, 184, 0.7);
}
.ring-slate-400\/75 {
  --tw-ring-color: rgba(148, 163, 184, 0.75);
}
.ring-slate-400\/80 {
  --tw-ring-color: rgba(148, 163, 184, 0.8);
}
.ring-slate-400\/85 {
  --tw-ring-color: rgba(148, 163, 184, 0.85);
}
.ring-slate-400\/90 {
  --tw-ring-color: rgba(148, 163, 184, 0.9);
}
.ring-slate-400\/95 {
  --tw-ring-color: rgba(148, 163, 184, 0.95);
}
.ring-slate-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(248, 250, 252, var(--tw-ring-opacity));
}
.ring-slate-50\/0 {
  --tw-ring-color: rgba(248, 250, 252, 0);
}
.ring-slate-50\/10 {
  --tw-ring-color: rgba(248, 250, 252, 0.1);
}
.ring-slate-50\/100 {
  --tw-ring-color: rgba(248, 250, 252, 1);
}
.ring-slate-50\/15 {
  --tw-ring-color: rgba(248, 250, 252, 0.15);
}
.ring-slate-50\/20 {
  --tw-ring-color: rgba(248, 250, 252, 0.2);
}
.ring-slate-50\/25 {
  --tw-ring-color: rgba(248, 250, 252, 0.25);
}
.ring-slate-50\/30 {
  --tw-ring-color: rgba(248, 250, 252, 0.3);
}
.ring-slate-50\/35 {
  --tw-ring-color: rgba(248, 250, 252, 0.35);
}
.ring-slate-50\/40 {
  --tw-ring-color: rgba(248, 250, 252, 0.4);
}
.ring-slate-50\/45 {
  --tw-ring-color: rgba(248, 250, 252, 0.45);
}
.ring-slate-50\/5 {
  --tw-ring-color: rgba(248, 250, 252, 0.05);
}
.ring-slate-50\/50 {
  --tw-ring-color: rgba(248, 250, 252, 0.5);
}
.ring-slate-50\/55 {
  --tw-ring-color: rgba(248, 250, 252, 0.55);
}
.ring-slate-50\/60 {
  --tw-ring-color: rgba(248, 250, 252, 0.6);
}
.ring-slate-50\/65 {
  --tw-ring-color: rgba(248, 250, 252, 0.65);
}
.ring-slate-50\/70 {
  --tw-ring-color: rgba(248, 250, 252, 0.7);
}
.ring-slate-50\/75 {
  --tw-ring-color: rgba(248, 250, 252, 0.75);
}
.ring-slate-50\/80 {
  --tw-ring-color: rgba(248, 250, 252, 0.8);
}
.ring-slate-50\/85 {
  --tw-ring-color: rgba(248, 250, 252, 0.85);
}
.ring-slate-50\/90 {
  --tw-ring-color: rgba(248, 250, 252, 0.9);
}
.ring-slate-50\/95 {
  --tw-ring-color: rgba(248, 250, 252, 0.95);
}
.ring-slate-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(100, 116, 139, var(--tw-ring-opacity));
}
.ring-slate-500\/0 {
  --tw-ring-color: rgba(100, 116, 139, 0);
}
.ring-slate-500\/10 {
  --tw-ring-color: rgba(100, 116, 139, 0.1);
}
.ring-slate-500\/100 {
  --tw-ring-color: rgba(100, 116, 139, 1);
}
.ring-slate-500\/15 {
  --tw-ring-color: rgba(100, 116, 139, 0.15);
}
.ring-slate-500\/20 {
  --tw-ring-color: rgba(100, 116, 139, 0.2);
}
.ring-slate-500\/25 {
  --tw-ring-color: rgba(100, 116, 139, 0.25);
}
.ring-slate-500\/30 {
  --tw-ring-color: rgba(100, 116, 139, 0.3);
}
.ring-slate-500\/35 {
  --tw-ring-color: rgba(100, 116, 139, 0.35);
}
.ring-slate-500\/40 {
  --tw-ring-color: rgba(100, 116, 139, 0.4);
}
.ring-slate-500\/45 {
  --tw-ring-color: rgba(100, 116, 139, 0.45);
}
.ring-slate-500\/5 {
  --tw-ring-color: rgba(100, 116, 139, 0.05);
}
.ring-slate-500\/50 {
  --tw-ring-color: rgba(100, 116, 139, 0.5);
}
.ring-slate-500\/55 {
  --tw-ring-color: rgba(100, 116, 139, 0.55);
}
.ring-slate-500\/60 {
  --tw-ring-color: rgba(100, 116, 139, 0.6);
}
.ring-slate-500\/65 {
  --tw-ring-color: rgba(100, 116, 139, 0.65);
}
.ring-slate-500\/70 {
  --tw-ring-color: rgba(100, 116, 139, 0.7);
}
.ring-slate-500\/75 {
  --tw-ring-color: rgba(100, 116, 139, 0.75);
}
.ring-slate-500\/80 {
  --tw-ring-color: rgba(100, 116, 139, 0.8);
}
.ring-slate-500\/85 {
  --tw-ring-color: rgba(100, 116, 139, 0.85);
}
.ring-slate-500\/90 {
  --tw-ring-color: rgba(100, 116, 139, 0.9);
}
.ring-slate-500\/95 {
  --tw-ring-color: rgba(100, 116, 139, 0.95);
}
.ring-slate-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(71, 85, 105, var(--tw-ring-opacity));
}
.ring-slate-600\/0 {
  --tw-ring-color: rgba(71, 85, 105, 0);
}
.ring-slate-600\/10 {
  --tw-ring-color: rgba(71, 85, 105, 0.1);
}
.ring-slate-600\/100 {
  --tw-ring-color: rgba(71, 85, 105, 1);
}
.ring-slate-600\/15 {
  --tw-ring-color: rgba(71, 85, 105, 0.15);
}
.ring-slate-600\/20 {
  --tw-ring-color: rgba(71, 85, 105, 0.2);
}
.ring-slate-600\/25 {
  --tw-ring-color: rgba(71, 85, 105, 0.25);
}
.ring-slate-600\/30 {
  --tw-ring-color: rgba(71, 85, 105, 0.3);
}
.ring-slate-600\/35 {
  --tw-ring-color: rgba(71, 85, 105, 0.35);
}
.ring-slate-600\/40 {
  --tw-ring-color: rgba(71, 85, 105, 0.4);
}
.ring-slate-600\/45 {
  --tw-ring-color: rgba(71, 85, 105, 0.45);
}
.ring-slate-600\/5 {
  --tw-ring-color: rgba(71, 85, 105, 0.05);
}
.ring-slate-600\/50 {
  --tw-ring-color: rgba(71, 85, 105, 0.5);
}
.ring-slate-600\/55 {
  --tw-ring-color: rgba(71, 85, 105, 0.55);
}
.ring-slate-600\/60 {
  --tw-ring-color: rgba(71, 85, 105, 0.6);
}
.ring-slate-600\/65 {
  --tw-ring-color: rgba(71, 85, 105, 0.65);
}
.ring-slate-600\/70 {
  --tw-ring-color: rgba(71, 85, 105, 0.7);
}
.ring-slate-600\/75 {
  --tw-ring-color: rgba(71, 85, 105, 0.75);
}
.ring-slate-600\/80 {
  --tw-ring-color: rgba(71, 85, 105, 0.8);
}
.ring-slate-600\/85 {
  --tw-ring-color: rgba(71, 85, 105, 0.85);
}
.ring-slate-600\/90 {
  --tw-ring-color: rgba(71, 85, 105, 0.9);
}
.ring-slate-600\/95 {
  --tw-ring-color: rgba(71, 85, 105, 0.95);
}
.ring-slate-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(51, 65, 85, var(--tw-ring-opacity));
}
.ring-slate-700\/0 {
  --tw-ring-color: rgba(51, 65, 85, 0);
}
.ring-slate-700\/10 {
  --tw-ring-color: rgba(51, 65, 85, 0.1);
}
.ring-slate-700\/100 {
  --tw-ring-color: rgba(51, 65, 85, 1);
}
.ring-slate-700\/15 {
  --tw-ring-color: rgba(51, 65, 85, 0.15);
}
.ring-slate-700\/20 {
  --tw-ring-color: rgba(51, 65, 85, 0.2);
}
.ring-slate-700\/25 {
  --tw-ring-color: rgba(51, 65, 85, 0.25);
}
.ring-slate-700\/30 {
  --tw-ring-color: rgba(51, 65, 85, 0.3);
}
.ring-slate-700\/35 {
  --tw-ring-color: rgba(51, 65, 85, 0.35);
}
.ring-slate-700\/40 {
  --tw-ring-color: rgba(51, 65, 85, 0.4);
}
.ring-slate-700\/45 {
  --tw-ring-color: rgba(51, 65, 85, 0.45);
}
.ring-slate-700\/5 {
  --tw-ring-color: rgba(51, 65, 85, 0.05);
}
.ring-slate-700\/50 {
  --tw-ring-color: rgba(51, 65, 85, 0.5);
}
.ring-slate-700\/55 {
  --tw-ring-color: rgba(51, 65, 85, 0.55);
}
.ring-slate-700\/60 {
  --tw-ring-color: rgba(51, 65, 85, 0.6);
}
.ring-slate-700\/65 {
  --tw-ring-color: rgba(51, 65, 85, 0.65);
}
.ring-slate-700\/70 {
  --tw-ring-color: rgba(51, 65, 85, 0.7);
}
.ring-slate-700\/75 {
  --tw-ring-color: rgba(51, 65, 85, 0.75);
}
.ring-slate-700\/80 {
  --tw-ring-color: rgba(51, 65, 85, 0.8);
}
.ring-slate-700\/85 {
  --tw-ring-color: rgba(51, 65, 85, 0.85);
}
.ring-slate-700\/90 {
  --tw-ring-color: rgba(51, 65, 85, 0.9);
}
.ring-slate-700\/95 {
  --tw-ring-color: rgba(51, 65, 85, 0.95);
}
.ring-slate-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(30, 41, 59, var(--tw-ring-opacity));
}
.ring-slate-800\/0 {
  --tw-ring-color: rgba(30, 41, 59, 0);
}
.ring-slate-800\/10 {
  --tw-ring-color: rgba(30, 41, 59, 0.1);
}
.ring-slate-800\/100 {
  --tw-ring-color: rgba(30, 41, 59, 1);
}
.ring-slate-800\/15 {
  --tw-ring-color: rgba(30, 41, 59, 0.15);
}
.ring-slate-800\/20 {
  --tw-ring-color: rgba(30, 41, 59, 0.2);
}
.ring-slate-800\/25 {
  --tw-ring-color: rgba(30, 41, 59, 0.25);
}
.ring-slate-800\/30 {
  --tw-ring-color: rgba(30, 41, 59, 0.3);
}
.ring-slate-800\/35 {
  --tw-ring-color: rgba(30, 41, 59, 0.35);
}
.ring-slate-800\/40 {
  --tw-ring-color: rgba(30, 41, 59, 0.4);
}
.ring-slate-800\/45 {
  --tw-ring-color: rgba(30, 41, 59, 0.45);
}
.ring-slate-800\/5 {
  --tw-ring-color: rgba(30, 41, 59, 0.05);
}
.ring-slate-800\/50 {
  --tw-ring-color: rgba(30, 41, 59, 0.5);
}
.ring-slate-800\/55 {
  --tw-ring-color: rgba(30, 41, 59, 0.55);
}
.ring-slate-800\/60 {
  --tw-ring-color: rgba(30, 41, 59, 0.6);
}
.ring-slate-800\/65 {
  --tw-ring-color: rgba(30, 41, 59, 0.65);
}
.ring-slate-800\/70 {
  --tw-ring-color: rgba(30, 41, 59, 0.7);
}
.ring-slate-800\/75 {
  --tw-ring-color: rgba(30, 41, 59, 0.75);
}
.ring-slate-800\/80 {
  --tw-ring-color: rgba(30, 41, 59, 0.8);
}
.ring-slate-800\/85 {
  --tw-ring-color: rgba(30, 41, 59, 0.85);
}
.ring-slate-800\/90 {
  --tw-ring-color: rgba(30, 41, 59, 0.9);
}
.ring-slate-800\/95 {
  --tw-ring-color: rgba(30, 41, 59, 0.95);
}
.ring-slate-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(15, 23, 42, var(--tw-ring-opacity));
}
.ring-slate-900\/0 {
  --tw-ring-color: rgba(15, 23, 42, 0);
}
.ring-slate-900\/10 {
  --tw-ring-color: rgba(15, 23, 42, 0.1);
}
.ring-slate-900\/100 {
  --tw-ring-color: rgba(15, 23, 42, 1);
}
.ring-slate-900\/15 {
  --tw-ring-color: rgba(15, 23, 42, 0.15);
}
.ring-slate-900\/20 {
  --tw-ring-color: rgba(15, 23, 42, 0.2);
}
.ring-slate-900\/25 {
  --tw-ring-color: rgba(15, 23, 42, 0.25);
}
.ring-slate-900\/30 {
  --tw-ring-color: rgba(15, 23, 42, 0.3);
}
.ring-slate-900\/35 {
  --tw-ring-color: rgba(15, 23, 42, 0.35);
}
.ring-slate-900\/40 {
  --tw-ring-color: rgba(15, 23, 42, 0.4);
}
.ring-slate-900\/45 {
  --tw-ring-color: rgba(15, 23, 42, 0.45);
}
.ring-slate-900\/5 {
  --tw-ring-color: rgba(15, 23, 42, 0.05);
}
.ring-slate-900\/50 {
  --tw-ring-color: rgba(15, 23, 42, 0.5);
}
.ring-slate-900\/55 {
  --tw-ring-color: rgba(15, 23, 42, 0.55);
}
.ring-slate-900\/60 {
  --tw-ring-color: rgba(15, 23, 42, 0.6);
}
.ring-slate-900\/65 {
  --tw-ring-color: rgba(15, 23, 42, 0.65);
}
.ring-slate-900\/70 {
  --tw-ring-color: rgba(15, 23, 42, 0.7);
}
.ring-slate-900\/75 {
  --tw-ring-color: rgba(15, 23, 42, 0.75);
}
.ring-slate-900\/80 {
  --tw-ring-color: rgba(15, 23, 42, 0.8);
}
.ring-slate-900\/85 {
  --tw-ring-color: rgba(15, 23, 42, 0.85);
}
.ring-slate-900\/90 {
  --tw-ring-color: rgba(15, 23, 42, 0.9);
}
.ring-slate-900\/95 {
  --tw-ring-color: rgba(15, 23, 42, 0.95);
}
.ring-slate-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(2, 6, 23, var(--tw-ring-opacity));
}
.ring-slate-950\/0 {
  --tw-ring-color: rgba(2, 6, 23, 0);
}
.ring-slate-950\/10 {
  --tw-ring-color: rgba(2, 6, 23, 0.1);
}
.ring-slate-950\/100 {
  --tw-ring-color: rgba(2, 6, 23, 1);
}
.ring-slate-950\/15 {
  --tw-ring-color: rgba(2, 6, 23, 0.15);
}
.ring-slate-950\/20 {
  --tw-ring-color: rgba(2, 6, 23, 0.2);
}
.ring-slate-950\/25 {
  --tw-ring-color: rgba(2, 6, 23, 0.25);
}
.ring-slate-950\/30 {
  --tw-ring-color: rgba(2, 6, 23, 0.3);
}
.ring-slate-950\/35 {
  --tw-ring-color: rgba(2, 6, 23, 0.35);
}
.ring-slate-950\/40 {
  --tw-ring-color: rgba(2, 6, 23, 0.4);
}
.ring-slate-950\/45 {
  --tw-ring-color: rgba(2, 6, 23, 0.45);
}
.ring-slate-950\/5 {
  --tw-ring-color: rgba(2, 6, 23, 0.05);
}
.ring-slate-950\/50 {
  --tw-ring-color: rgba(2, 6, 23, 0.5);
}
.ring-slate-950\/55 {
  --tw-ring-color: rgba(2, 6, 23, 0.55);
}
.ring-slate-950\/60 {
  --tw-ring-color: rgba(2, 6, 23, 0.6);
}
.ring-slate-950\/65 {
  --tw-ring-color: rgba(2, 6, 23, 0.65);
}
.ring-slate-950\/70 {
  --tw-ring-color: rgba(2, 6, 23, 0.7);
}
.ring-slate-950\/75 {
  --tw-ring-color: rgba(2, 6, 23, 0.75);
}
.ring-slate-950\/80 {
  --tw-ring-color: rgba(2, 6, 23, 0.8);
}
.ring-slate-950\/85 {
  --tw-ring-color: rgba(2, 6, 23, 0.85);
}
.ring-slate-950\/90 {
  --tw-ring-color: rgba(2, 6, 23, 0.9);
}
.ring-slate-950\/95 {
  --tw-ring-color: rgba(2, 6, 23, 0.95);
}
.ring-stone-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(245, 245, 244, var(--tw-ring-opacity));
}
.ring-stone-100\/0 {
  --tw-ring-color: rgba(245, 245, 244, 0);
}
.ring-stone-100\/10 {
  --tw-ring-color: rgba(245, 245, 244, 0.1);
}
.ring-stone-100\/100 {
  --tw-ring-color: rgba(245, 245, 244, 1);
}
.ring-stone-100\/15 {
  --tw-ring-color: rgba(245, 245, 244, 0.15);
}
.ring-stone-100\/20 {
  --tw-ring-color: rgba(245, 245, 244, 0.2);
}
.ring-stone-100\/25 {
  --tw-ring-color: rgba(245, 245, 244, 0.25);
}
.ring-stone-100\/30 {
  --tw-ring-color: rgba(245, 245, 244, 0.3);
}
.ring-stone-100\/35 {
  --tw-ring-color: rgba(245, 245, 244, 0.35);
}
.ring-stone-100\/40 {
  --tw-ring-color: rgba(245, 245, 244, 0.4);
}
.ring-stone-100\/45 {
  --tw-ring-color: rgba(245, 245, 244, 0.45);
}
.ring-stone-100\/5 {
  --tw-ring-color: rgba(245, 245, 244, 0.05);
}
.ring-stone-100\/50 {
  --tw-ring-color: rgba(245, 245, 244, 0.5);
}
.ring-stone-100\/55 {
  --tw-ring-color: rgba(245, 245, 244, 0.55);
}
.ring-stone-100\/60 {
  --tw-ring-color: rgba(245, 245, 244, 0.6);
}
.ring-stone-100\/65 {
  --tw-ring-color: rgba(245, 245, 244, 0.65);
}
.ring-stone-100\/70 {
  --tw-ring-color: rgba(245, 245, 244, 0.7);
}
.ring-stone-100\/75 {
  --tw-ring-color: rgba(245, 245, 244, 0.75);
}
.ring-stone-100\/80 {
  --tw-ring-color: rgba(245, 245, 244, 0.8);
}
.ring-stone-100\/85 {
  --tw-ring-color: rgba(245, 245, 244, 0.85);
}
.ring-stone-100\/90 {
  --tw-ring-color: rgba(245, 245, 244, 0.9);
}
.ring-stone-100\/95 {
  --tw-ring-color: rgba(245, 245, 244, 0.95);
}
.ring-stone-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(231, 229, 228, var(--tw-ring-opacity));
}
.ring-stone-200\/0 {
  --tw-ring-color: rgba(231, 229, 228, 0);
}
.ring-stone-200\/10 {
  --tw-ring-color: rgba(231, 229, 228, 0.1);
}
.ring-stone-200\/100 {
  --tw-ring-color: rgba(231, 229, 228, 1);
}
.ring-stone-200\/15 {
  --tw-ring-color: rgba(231, 229, 228, 0.15);
}
.ring-stone-200\/20 {
  --tw-ring-color: rgba(231, 229, 228, 0.2);
}
.ring-stone-200\/25 {
  --tw-ring-color: rgba(231, 229, 228, 0.25);
}
.ring-stone-200\/30 {
  --tw-ring-color: rgba(231, 229, 228, 0.3);
}
.ring-stone-200\/35 {
  --tw-ring-color: rgba(231, 229, 228, 0.35);
}
.ring-stone-200\/40 {
  --tw-ring-color: rgba(231, 229, 228, 0.4);
}
.ring-stone-200\/45 {
  --tw-ring-color: rgba(231, 229, 228, 0.45);
}
.ring-stone-200\/5 {
  --tw-ring-color: rgba(231, 229, 228, 0.05);
}
.ring-stone-200\/50 {
  --tw-ring-color: rgba(231, 229, 228, 0.5);
}
.ring-stone-200\/55 {
  --tw-ring-color: rgba(231, 229, 228, 0.55);
}
.ring-stone-200\/60 {
  --tw-ring-color: rgba(231, 229, 228, 0.6);
}
.ring-stone-200\/65 {
  --tw-ring-color: rgba(231, 229, 228, 0.65);
}
.ring-stone-200\/70 {
  --tw-ring-color: rgba(231, 229, 228, 0.7);
}
.ring-stone-200\/75 {
  --tw-ring-color: rgba(231, 229, 228, 0.75);
}
.ring-stone-200\/80 {
  --tw-ring-color: rgba(231, 229, 228, 0.8);
}
.ring-stone-200\/85 {
  --tw-ring-color: rgba(231, 229, 228, 0.85);
}
.ring-stone-200\/90 {
  --tw-ring-color: rgba(231, 229, 228, 0.9);
}
.ring-stone-200\/95 {
  --tw-ring-color: rgba(231, 229, 228, 0.95);
}
.ring-stone-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(214, 211, 209, var(--tw-ring-opacity));
}
.ring-stone-300\/0 {
  --tw-ring-color: rgba(214, 211, 209, 0);
}
.ring-stone-300\/10 {
  --tw-ring-color: rgba(214, 211, 209, 0.1);
}
.ring-stone-300\/100 {
  --tw-ring-color: rgba(214, 211, 209, 1);
}
.ring-stone-300\/15 {
  --tw-ring-color: rgba(214, 211, 209, 0.15);
}
.ring-stone-300\/20 {
  --tw-ring-color: rgba(214, 211, 209, 0.2);
}
.ring-stone-300\/25 {
  --tw-ring-color: rgba(214, 211, 209, 0.25);
}
.ring-stone-300\/30 {
  --tw-ring-color: rgba(214, 211, 209, 0.3);
}
.ring-stone-300\/35 {
  --tw-ring-color: rgba(214, 211, 209, 0.35);
}
.ring-stone-300\/40 {
  --tw-ring-color: rgba(214, 211, 209, 0.4);
}
.ring-stone-300\/45 {
  --tw-ring-color: rgba(214, 211, 209, 0.45);
}
.ring-stone-300\/5 {
  --tw-ring-color: rgba(214, 211, 209, 0.05);
}
.ring-stone-300\/50 {
  --tw-ring-color: rgba(214, 211, 209, 0.5);
}
.ring-stone-300\/55 {
  --tw-ring-color: rgba(214, 211, 209, 0.55);
}
.ring-stone-300\/60 {
  --tw-ring-color: rgba(214, 211, 209, 0.6);
}
.ring-stone-300\/65 {
  --tw-ring-color: rgba(214, 211, 209, 0.65);
}
.ring-stone-300\/70 {
  --tw-ring-color: rgba(214, 211, 209, 0.7);
}
.ring-stone-300\/75 {
  --tw-ring-color: rgba(214, 211, 209, 0.75);
}
.ring-stone-300\/80 {
  --tw-ring-color: rgba(214, 211, 209, 0.8);
}
.ring-stone-300\/85 {
  --tw-ring-color: rgba(214, 211, 209, 0.85);
}
.ring-stone-300\/90 {
  --tw-ring-color: rgba(214, 211, 209, 0.9);
}
.ring-stone-300\/95 {
  --tw-ring-color: rgba(214, 211, 209, 0.95);
}
.ring-stone-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(168, 162, 158, var(--tw-ring-opacity));
}
.ring-stone-400\/0 {
  --tw-ring-color: rgba(168, 162, 158, 0);
}
.ring-stone-400\/10 {
  --tw-ring-color: rgba(168, 162, 158, 0.1);
}
.ring-stone-400\/100 {
  --tw-ring-color: rgba(168, 162, 158, 1);
}
.ring-stone-400\/15 {
  --tw-ring-color: rgba(168, 162, 158, 0.15);
}
.ring-stone-400\/20 {
  --tw-ring-color: rgba(168, 162, 158, 0.2);
}
.ring-stone-400\/25 {
  --tw-ring-color: rgba(168, 162, 158, 0.25);
}
.ring-stone-400\/30 {
  --tw-ring-color: rgba(168, 162, 158, 0.3);
}
.ring-stone-400\/35 {
  --tw-ring-color: rgba(168, 162, 158, 0.35);
}
.ring-stone-400\/40 {
  --tw-ring-color: rgba(168, 162, 158, 0.4);
}
.ring-stone-400\/45 {
  --tw-ring-color: rgba(168, 162, 158, 0.45);
}
.ring-stone-400\/5 {
  --tw-ring-color: rgba(168, 162, 158, 0.05);
}
.ring-stone-400\/50 {
  --tw-ring-color: rgba(168, 162, 158, 0.5);
}
.ring-stone-400\/55 {
  --tw-ring-color: rgba(168, 162, 158, 0.55);
}
.ring-stone-400\/60 {
  --tw-ring-color: rgba(168, 162, 158, 0.6);
}
.ring-stone-400\/65 {
  --tw-ring-color: rgba(168, 162, 158, 0.65);
}
.ring-stone-400\/70 {
  --tw-ring-color: rgba(168, 162, 158, 0.7);
}
.ring-stone-400\/75 {
  --tw-ring-color: rgba(168, 162, 158, 0.75);
}
.ring-stone-400\/80 {
  --tw-ring-color: rgba(168, 162, 158, 0.8);
}
.ring-stone-400\/85 {
  --tw-ring-color: rgba(168, 162, 158, 0.85);
}
.ring-stone-400\/90 {
  --tw-ring-color: rgba(168, 162, 158, 0.9);
}
.ring-stone-400\/95 {
  --tw-ring-color: rgba(168, 162, 158, 0.95);
}
.ring-stone-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(250, 250, 249, var(--tw-ring-opacity));
}
.ring-stone-50\/0 {
  --tw-ring-color: rgba(250, 250, 249, 0);
}
.ring-stone-50\/10 {
  --tw-ring-color: rgba(250, 250, 249, 0.1);
}
.ring-stone-50\/100 {
  --tw-ring-color: rgba(250, 250, 249, 1);
}
.ring-stone-50\/15 {
  --tw-ring-color: rgba(250, 250, 249, 0.15);
}
.ring-stone-50\/20 {
  --tw-ring-color: rgba(250, 250, 249, 0.2);
}
.ring-stone-50\/25 {
  --tw-ring-color: rgba(250, 250, 249, 0.25);
}
.ring-stone-50\/30 {
  --tw-ring-color: rgba(250, 250, 249, 0.3);
}
.ring-stone-50\/35 {
  --tw-ring-color: rgba(250, 250, 249, 0.35);
}
.ring-stone-50\/40 {
  --tw-ring-color: rgba(250, 250, 249, 0.4);
}
.ring-stone-50\/45 {
  --tw-ring-color: rgba(250, 250, 249, 0.45);
}
.ring-stone-50\/5 {
  --tw-ring-color: rgba(250, 250, 249, 0.05);
}
.ring-stone-50\/50 {
  --tw-ring-color: rgba(250, 250, 249, 0.5);
}
.ring-stone-50\/55 {
  --tw-ring-color: rgba(250, 250, 249, 0.55);
}
.ring-stone-50\/60 {
  --tw-ring-color: rgba(250, 250, 249, 0.6);
}
.ring-stone-50\/65 {
  --tw-ring-color: rgba(250, 250, 249, 0.65);
}
.ring-stone-50\/70 {
  --tw-ring-color: rgba(250, 250, 249, 0.7);
}
.ring-stone-50\/75 {
  --tw-ring-color: rgba(250, 250, 249, 0.75);
}
.ring-stone-50\/80 {
  --tw-ring-color: rgba(250, 250, 249, 0.8);
}
.ring-stone-50\/85 {
  --tw-ring-color: rgba(250, 250, 249, 0.85);
}
.ring-stone-50\/90 {
  --tw-ring-color: rgba(250, 250, 249, 0.9);
}
.ring-stone-50\/95 {
  --tw-ring-color: rgba(250, 250, 249, 0.95);
}
.ring-stone-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(120, 113, 108, var(--tw-ring-opacity));
}
.ring-stone-500\/0 {
  --tw-ring-color: rgba(120, 113, 108, 0);
}
.ring-stone-500\/10 {
  --tw-ring-color: rgba(120, 113, 108, 0.1);
}
.ring-stone-500\/100 {
  --tw-ring-color: rgba(120, 113, 108, 1);
}
.ring-stone-500\/15 {
  --tw-ring-color: rgba(120, 113, 108, 0.15);
}
.ring-stone-500\/20 {
  --tw-ring-color: rgba(120, 113, 108, 0.2);
}
.ring-stone-500\/25 {
  --tw-ring-color: rgba(120, 113, 108, 0.25);
}
.ring-stone-500\/30 {
  --tw-ring-color: rgba(120, 113, 108, 0.3);
}
.ring-stone-500\/35 {
  --tw-ring-color: rgba(120, 113, 108, 0.35);
}
.ring-stone-500\/40 {
  --tw-ring-color: rgba(120, 113, 108, 0.4);
}
.ring-stone-500\/45 {
  --tw-ring-color: rgba(120, 113, 108, 0.45);
}
.ring-stone-500\/5 {
  --tw-ring-color: rgba(120, 113, 108, 0.05);
}
.ring-stone-500\/50 {
  --tw-ring-color: rgba(120, 113, 108, 0.5);
}
.ring-stone-500\/55 {
  --tw-ring-color: rgba(120, 113, 108, 0.55);
}
.ring-stone-500\/60 {
  --tw-ring-color: rgba(120, 113, 108, 0.6);
}
.ring-stone-500\/65 {
  --tw-ring-color: rgba(120, 113, 108, 0.65);
}
.ring-stone-500\/70 {
  --tw-ring-color: rgba(120, 113, 108, 0.7);
}
.ring-stone-500\/75 {
  --tw-ring-color: rgba(120, 113, 108, 0.75);
}
.ring-stone-500\/80 {
  --tw-ring-color: rgba(120, 113, 108, 0.8);
}
.ring-stone-500\/85 {
  --tw-ring-color: rgba(120, 113, 108, 0.85);
}
.ring-stone-500\/90 {
  --tw-ring-color: rgba(120, 113, 108, 0.9);
}
.ring-stone-500\/95 {
  --tw-ring-color: rgba(120, 113, 108, 0.95);
}
.ring-stone-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(87, 83, 78, var(--tw-ring-opacity));
}
.ring-stone-600\/0 {
  --tw-ring-color: rgba(87, 83, 78, 0);
}
.ring-stone-600\/10 {
  --tw-ring-color: rgba(87, 83, 78, 0.1);
}
.ring-stone-600\/100 {
  --tw-ring-color: rgba(87, 83, 78, 1);
}
.ring-stone-600\/15 {
  --tw-ring-color: rgba(87, 83, 78, 0.15);
}
.ring-stone-600\/20 {
  --tw-ring-color: rgba(87, 83, 78, 0.2);
}
.ring-stone-600\/25 {
  --tw-ring-color: rgba(87, 83, 78, 0.25);
}
.ring-stone-600\/30 {
  --tw-ring-color: rgba(87, 83, 78, 0.3);
}
.ring-stone-600\/35 {
  --tw-ring-color: rgba(87, 83, 78, 0.35);
}
.ring-stone-600\/40 {
  --tw-ring-color: rgba(87, 83, 78, 0.4);
}
.ring-stone-600\/45 {
  --tw-ring-color: rgba(87, 83, 78, 0.45);
}
.ring-stone-600\/5 {
  --tw-ring-color: rgba(87, 83, 78, 0.05);
}
.ring-stone-600\/50 {
  --tw-ring-color: rgba(87, 83, 78, 0.5);
}
.ring-stone-600\/55 {
  --tw-ring-color: rgba(87, 83, 78, 0.55);
}
.ring-stone-600\/60 {
  --tw-ring-color: rgba(87, 83, 78, 0.6);
}
.ring-stone-600\/65 {
  --tw-ring-color: rgba(87, 83, 78, 0.65);
}
.ring-stone-600\/70 {
  --tw-ring-color: rgba(87, 83, 78, 0.7);
}
.ring-stone-600\/75 {
  --tw-ring-color: rgba(87, 83, 78, 0.75);
}
.ring-stone-600\/80 {
  --tw-ring-color: rgba(87, 83, 78, 0.8);
}
.ring-stone-600\/85 {
  --tw-ring-color: rgba(87, 83, 78, 0.85);
}
.ring-stone-600\/90 {
  --tw-ring-color: rgba(87, 83, 78, 0.9);
}
.ring-stone-600\/95 {
  --tw-ring-color: rgba(87, 83, 78, 0.95);
}
.ring-stone-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(68, 64, 60, var(--tw-ring-opacity));
}
.ring-stone-700\/0 {
  --tw-ring-color: rgba(68, 64, 60, 0);
}
.ring-stone-700\/10 {
  --tw-ring-color: rgba(68, 64, 60, 0.1);
}
.ring-stone-700\/100 {
  --tw-ring-color: rgba(68, 64, 60, 1);
}
.ring-stone-700\/15 {
  --tw-ring-color: rgba(68, 64, 60, 0.15);
}
.ring-stone-700\/20 {
  --tw-ring-color: rgba(68, 64, 60, 0.2);
}
.ring-stone-700\/25 {
  --tw-ring-color: rgba(68, 64, 60, 0.25);
}
.ring-stone-700\/30 {
  --tw-ring-color: rgba(68, 64, 60, 0.3);
}
.ring-stone-700\/35 {
  --tw-ring-color: rgba(68, 64, 60, 0.35);
}
.ring-stone-700\/40 {
  --tw-ring-color: rgba(68, 64, 60, 0.4);
}
.ring-stone-700\/45 {
  --tw-ring-color: rgba(68, 64, 60, 0.45);
}
.ring-stone-700\/5 {
  --tw-ring-color: rgba(68, 64, 60, 0.05);
}
.ring-stone-700\/50 {
  --tw-ring-color: rgba(68, 64, 60, 0.5);
}
.ring-stone-700\/55 {
  --tw-ring-color: rgba(68, 64, 60, 0.55);
}
.ring-stone-700\/60 {
  --tw-ring-color: rgba(68, 64, 60, 0.6);
}
.ring-stone-700\/65 {
  --tw-ring-color: rgba(68, 64, 60, 0.65);
}
.ring-stone-700\/70 {
  --tw-ring-color: rgba(68, 64, 60, 0.7);
}
.ring-stone-700\/75 {
  --tw-ring-color: rgba(68, 64, 60, 0.75);
}
.ring-stone-700\/80 {
  --tw-ring-color: rgba(68, 64, 60, 0.8);
}
.ring-stone-700\/85 {
  --tw-ring-color: rgba(68, 64, 60, 0.85);
}
.ring-stone-700\/90 {
  --tw-ring-color: rgba(68, 64, 60, 0.9);
}
.ring-stone-700\/95 {
  --tw-ring-color: rgba(68, 64, 60, 0.95);
}
.ring-stone-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(41, 37, 36, var(--tw-ring-opacity));
}
.ring-stone-800\/0 {
  --tw-ring-color: rgba(41, 37, 36, 0);
}
.ring-stone-800\/10 {
  --tw-ring-color: rgba(41, 37, 36, 0.1);
}
.ring-stone-800\/100 {
  --tw-ring-color: rgba(41, 37, 36, 1);
}
.ring-stone-800\/15 {
  --tw-ring-color: rgba(41, 37, 36, 0.15);
}
.ring-stone-800\/20 {
  --tw-ring-color: rgba(41, 37, 36, 0.2);
}
.ring-stone-800\/25 {
  --tw-ring-color: rgba(41, 37, 36, 0.25);
}
.ring-stone-800\/30 {
  --tw-ring-color: rgba(41, 37, 36, 0.3);
}
.ring-stone-800\/35 {
  --tw-ring-color: rgba(41, 37, 36, 0.35);
}
.ring-stone-800\/40 {
  --tw-ring-color: rgba(41, 37, 36, 0.4);
}
.ring-stone-800\/45 {
  --tw-ring-color: rgba(41, 37, 36, 0.45);
}
.ring-stone-800\/5 {
  --tw-ring-color: rgba(41, 37, 36, 0.05);
}
.ring-stone-800\/50 {
  --tw-ring-color: rgba(41, 37, 36, 0.5);
}
.ring-stone-800\/55 {
  --tw-ring-color: rgba(41, 37, 36, 0.55);
}
.ring-stone-800\/60 {
  --tw-ring-color: rgba(41, 37, 36, 0.6);
}
.ring-stone-800\/65 {
  --tw-ring-color: rgba(41, 37, 36, 0.65);
}
.ring-stone-800\/70 {
  --tw-ring-color: rgba(41, 37, 36, 0.7);
}
.ring-stone-800\/75 {
  --tw-ring-color: rgba(41, 37, 36, 0.75);
}
.ring-stone-800\/80 {
  --tw-ring-color: rgba(41, 37, 36, 0.8);
}
.ring-stone-800\/85 {
  --tw-ring-color: rgba(41, 37, 36, 0.85);
}
.ring-stone-800\/90 {
  --tw-ring-color: rgba(41, 37, 36, 0.9);
}
.ring-stone-800\/95 {
  --tw-ring-color: rgba(41, 37, 36, 0.95);
}
.ring-stone-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(28, 25, 23, var(--tw-ring-opacity));
}
.ring-stone-900\/0 {
  --tw-ring-color: rgba(28, 25, 23, 0);
}
.ring-stone-900\/10 {
  --tw-ring-color: rgba(28, 25, 23, 0.1);
}
.ring-stone-900\/100 {
  --tw-ring-color: rgba(28, 25, 23, 1);
}
.ring-stone-900\/15 {
  --tw-ring-color: rgba(28, 25, 23, 0.15);
}
.ring-stone-900\/20 {
  --tw-ring-color: rgba(28, 25, 23, 0.2);
}
.ring-stone-900\/25 {
  --tw-ring-color: rgba(28, 25, 23, 0.25);
}
.ring-stone-900\/30 {
  --tw-ring-color: rgba(28, 25, 23, 0.3);
}
.ring-stone-900\/35 {
  --tw-ring-color: rgba(28, 25, 23, 0.35);
}
.ring-stone-900\/40 {
  --tw-ring-color: rgba(28, 25, 23, 0.4);
}
.ring-stone-900\/45 {
  --tw-ring-color: rgba(28, 25, 23, 0.45);
}
.ring-stone-900\/5 {
  --tw-ring-color: rgba(28, 25, 23, 0.05);
}
.ring-stone-900\/50 {
  --tw-ring-color: rgba(28, 25, 23, 0.5);
}
.ring-stone-900\/55 {
  --tw-ring-color: rgba(28, 25, 23, 0.55);
}
.ring-stone-900\/60 {
  --tw-ring-color: rgba(28, 25, 23, 0.6);
}
.ring-stone-900\/65 {
  --tw-ring-color: rgba(28, 25, 23, 0.65);
}
.ring-stone-900\/70 {
  --tw-ring-color: rgba(28, 25, 23, 0.7);
}
.ring-stone-900\/75 {
  --tw-ring-color: rgba(28, 25, 23, 0.75);
}
.ring-stone-900\/80 {
  --tw-ring-color: rgba(28, 25, 23, 0.8);
}
.ring-stone-900\/85 {
  --tw-ring-color: rgba(28, 25, 23, 0.85);
}
.ring-stone-900\/90 {
  --tw-ring-color: rgba(28, 25, 23, 0.9);
}
.ring-stone-900\/95 {
  --tw-ring-color: rgba(28, 25, 23, 0.95);
}
.ring-stone-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(12, 10, 9, var(--tw-ring-opacity));
}
.ring-stone-950\/0 {
  --tw-ring-color: rgba(12, 10, 9, 0);
}
.ring-stone-950\/10 {
  --tw-ring-color: rgba(12, 10, 9, 0.1);
}
.ring-stone-950\/100 {
  --tw-ring-color: rgba(12, 10, 9, 1);
}
.ring-stone-950\/15 {
  --tw-ring-color: rgba(12, 10, 9, 0.15);
}
.ring-stone-950\/20 {
  --tw-ring-color: rgba(12, 10, 9, 0.2);
}
.ring-stone-950\/25 {
  --tw-ring-color: rgba(12, 10, 9, 0.25);
}
.ring-stone-950\/30 {
  --tw-ring-color: rgba(12, 10, 9, 0.3);
}
.ring-stone-950\/35 {
  --tw-ring-color: rgba(12, 10, 9, 0.35);
}
.ring-stone-950\/40 {
  --tw-ring-color: rgba(12, 10, 9, 0.4);
}
.ring-stone-950\/45 {
  --tw-ring-color: rgba(12, 10, 9, 0.45);
}
.ring-stone-950\/5 {
  --tw-ring-color: rgba(12, 10, 9, 0.05);
}
.ring-stone-950\/50 {
  --tw-ring-color: rgba(12, 10, 9, 0.5);
}
.ring-stone-950\/55 {
  --tw-ring-color: rgba(12, 10, 9, 0.55);
}
.ring-stone-950\/60 {
  --tw-ring-color: rgba(12, 10, 9, 0.6);
}
.ring-stone-950\/65 {
  --tw-ring-color: rgba(12, 10, 9, 0.65);
}
.ring-stone-950\/70 {
  --tw-ring-color: rgba(12, 10, 9, 0.7);
}
.ring-stone-950\/75 {
  --tw-ring-color: rgba(12, 10, 9, 0.75);
}
.ring-stone-950\/80 {
  --tw-ring-color: rgba(12, 10, 9, 0.8);
}
.ring-stone-950\/85 {
  --tw-ring-color: rgba(12, 10, 9, 0.85);
}
.ring-stone-950\/90 {
  --tw-ring-color: rgba(12, 10, 9, 0.9);
}
.ring-stone-950\/95 {
  --tw-ring-color: rgba(12, 10, 9, 0.95);
}
.ring-success {
  --tw-ring-opacity: 1;
  --tw-ring-color: var(--fallback-su,oklch(var(--su)/var(--tw-ring-opacity)));
}
.ring-success-content {
  --tw-ring-opacity: 1;
  --tw-ring-color: var(--fallback-suc,oklch(var(--suc)/var(--tw-ring-opacity)));
}
.ring-success-content\/0 {
  --tw-ring-color: var(--fallback-suc,oklch(var(--suc)/0));
}
.ring-success-content\/10 {
  --tw-ring-color: var(--fallback-suc,oklch(var(--suc)/0.1));
}
.ring-success-content\/100 {
  --tw-ring-color: var(--fallback-suc,oklch(var(--suc)/1));
}
.ring-success-content\/15 {
  --tw-ring-color: var(--fallback-suc,oklch(var(--suc)/0.15));
}
.ring-success-content\/20 {
  --tw-ring-color: var(--fallback-suc,oklch(var(--suc)/0.2));
}
.ring-success-content\/25 {
  --tw-ring-color: var(--fallback-suc,oklch(var(--suc)/0.25));
}
.ring-success-content\/30 {
  --tw-ring-color: var(--fallback-suc,oklch(var(--suc)/0.3));
}
.ring-success-content\/35 {
  --tw-ring-color: var(--fallback-suc,oklch(var(--suc)/0.35));
}
.ring-success-content\/40 {
  --tw-ring-color: var(--fallback-suc,oklch(var(--suc)/0.4));
}
.ring-success-content\/45 {
  --tw-ring-color: var(--fallback-suc,oklch(var(--suc)/0.45));
}
.ring-success-content\/5 {
  --tw-ring-color: var(--fallback-suc,oklch(var(--suc)/0.05));
}
.ring-success-content\/50 {
  --tw-ring-color: var(--fallback-suc,oklch(var(--suc)/0.5));
}
.ring-success-content\/55 {
  --tw-ring-color: var(--fallback-suc,oklch(var(--suc)/0.55));
}
.ring-success-content\/60 {
  --tw-ring-color: var(--fallback-suc,oklch(var(--suc)/0.6));
}
.ring-success-content\/65 {
  --tw-ring-color: var(--fallback-suc,oklch(var(--suc)/0.65));
}
.ring-success-content\/70 {
  --tw-ring-color: var(--fallback-suc,oklch(var(--suc)/0.7));
}
.ring-success-content\/75 {
  --tw-ring-color: var(--fallback-suc,oklch(var(--suc)/0.75));
}
.ring-success-content\/80 {
  --tw-ring-color: var(--fallback-suc,oklch(var(--suc)/0.8));
}
.ring-success-content\/85 {
  --tw-ring-color: var(--fallback-suc,oklch(var(--suc)/0.85));
}
.ring-success-content\/90 {
  --tw-ring-color: var(--fallback-suc,oklch(var(--suc)/0.9));
}
.ring-success-content\/95 {
  --tw-ring-color: var(--fallback-suc,oklch(var(--suc)/0.95));
}
.ring-success\/0 {
  --tw-ring-color: var(--fallback-su,oklch(var(--su)/0));
}
.ring-success\/10 {
  --tw-ring-color: var(--fallback-su,oklch(var(--su)/0.1));
}
.ring-success\/100 {
  --tw-ring-color: var(--fallback-su,oklch(var(--su)/1));
}
.ring-success\/15 {
  --tw-ring-color: var(--fallback-su,oklch(var(--su)/0.15));
}
.ring-success\/20 {
  --tw-ring-color: var(--fallback-su,oklch(var(--su)/0.2));
}
.ring-success\/25 {
  --tw-ring-color: var(--fallback-su,oklch(var(--su)/0.25));
}
.ring-success\/30 {
  --tw-ring-color: var(--fallback-su,oklch(var(--su)/0.3));
}
.ring-success\/35 {
  --tw-ring-color: var(--fallback-su,oklch(var(--su)/0.35));
}
.ring-success\/40 {
  --tw-ring-color: var(--fallback-su,oklch(var(--su)/0.4));
}
.ring-success\/45 {
  --tw-ring-color: var(--fallback-su,oklch(var(--su)/0.45));
}
.ring-success\/5 {
  --tw-ring-color: var(--fallback-su,oklch(var(--su)/0.05));
}
.ring-success\/50 {
  --tw-ring-color: var(--fallback-su,oklch(var(--su)/0.5));
}
.ring-success\/55 {
  --tw-ring-color: var(--fallback-su,oklch(var(--su)/0.55));
}
.ring-success\/60 {
  --tw-ring-color: var(--fallback-su,oklch(var(--su)/0.6));
}
.ring-success\/65 {
  --tw-ring-color: var(--fallback-su,oklch(var(--su)/0.65));
}
.ring-success\/70 {
  --tw-ring-color: var(--fallback-su,oklch(var(--su)/0.7));
}
.ring-success\/75 {
  --tw-ring-color: var(--fallback-su,oklch(var(--su)/0.75));
}
.ring-success\/80 {
  --tw-ring-color: var(--fallback-su,oklch(var(--su)/0.8));
}
.ring-success\/85 {
  --tw-ring-color: var(--fallback-su,oklch(var(--su)/0.85));
}
.ring-success\/90 {
  --tw-ring-color: var(--fallback-su,oklch(var(--su)/0.9));
}
.ring-success\/95 {
  --tw-ring-color: var(--fallback-su,oklch(var(--su)/0.95));
}
.ring-teal-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(204, 251, 241, var(--tw-ring-opacity));
}
.ring-teal-100\/0 {
  --tw-ring-color: rgba(204, 251, 241, 0);
}
.ring-teal-100\/10 {
  --tw-ring-color: rgba(204, 251, 241, 0.1);
}
.ring-teal-100\/100 {
  --tw-ring-color: rgba(204, 251, 241, 1);
}
.ring-teal-100\/15 {
  --tw-ring-color: rgba(204, 251, 241, 0.15);
}
.ring-teal-100\/20 {
  --tw-ring-color: rgba(204, 251, 241, 0.2);
}
.ring-teal-100\/25 {
  --tw-ring-color: rgba(204, 251, 241, 0.25);
}
.ring-teal-100\/30 {
  --tw-ring-color: rgba(204, 251, 241, 0.3);
}
.ring-teal-100\/35 {
  --tw-ring-color: rgba(204, 251, 241, 0.35);
}
.ring-teal-100\/40 {
  --tw-ring-color: rgba(204, 251, 241, 0.4);
}
.ring-teal-100\/45 {
  --tw-ring-color: rgba(204, 251, 241, 0.45);
}
.ring-teal-100\/5 {
  --tw-ring-color: rgba(204, 251, 241, 0.05);
}
.ring-teal-100\/50 {
  --tw-ring-color: rgba(204, 251, 241, 0.5);
}
.ring-teal-100\/55 {
  --tw-ring-color: rgba(204, 251, 241, 0.55);
}
.ring-teal-100\/60 {
  --tw-ring-color: rgba(204, 251, 241, 0.6);
}
.ring-teal-100\/65 {
  --tw-ring-color: rgba(204, 251, 241, 0.65);
}
.ring-teal-100\/70 {
  --tw-ring-color: rgba(204, 251, 241, 0.7);
}
.ring-teal-100\/75 {
  --tw-ring-color: rgba(204, 251, 241, 0.75);
}
.ring-teal-100\/80 {
  --tw-ring-color: rgba(204, 251, 241, 0.8);
}
.ring-teal-100\/85 {
  --tw-ring-color: rgba(204, 251, 241, 0.85);
}
.ring-teal-100\/90 {
  --tw-ring-color: rgba(204, 251, 241, 0.9);
}
.ring-teal-100\/95 {
  --tw-ring-color: rgba(204, 251, 241, 0.95);
}
.ring-teal-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(153, 246, 228, var(--tw-ring-opacity));
}
.ring-teal-200\/0 {
  --tw-ring-color: rgba(153, 246, 228, 0);
}
.ring-teal-200\/10 {
  --tw-ring-color: rgba(153, 246, 228, 0.1);
}
.ring-teal-200\/100 {
  --tw-ring-color: rgba(153, 246, 228, 1);
}
.ring-teal-200\/15 {
  --tw-ring-color: rgba(153, 246, 228, 0.15);
}
.ring-teal-200\/20 {
  --tw-ring-color: rgba(153, 246, 228, 0.2);
}
.ring-teal-200\/25 {
  --tw-ring-color: rgba(153, 246, 228, 0.25);
}
.ring-teal-200\/30 {
  --tw-ring-color: rgba(153, 246, 228, 0.3);
}
.ring-teal-200\/35 {
  --tw-ring-color: rgba(153, 246, 228, 0.35);
}
.ring-teal-200\/40 {
  --tw-ring-color: rgba(153, 246, 228, 0.4);
}
.ring-teal-200\/45 {
  --tw-ring-color: rgba(153, 246, 228, 0.45);
}
.ring-teal-200\/5 {
  --tw-ring-color: rgba(153, 246, 228, 0.05);
}
.ring-teal-200\/50 {
  --tw-ring-color: rgba(153, 246, 228, 0.5);
}
.ring-teal-200\/55 {
  --tw-ring-color: rgba(153, 246, 228, 0.55);
}
.ring-teal-200\/60 {
  --tw-ring-color: rgba(153, 246, 228, 0.6);
}
.ring-teal-200\/65 {
  --tw-ring-color: rgba(153, 246, 228, 0.65);
}
.ring-teal-200\/70 {
  --tw-ring-color: rgba(153, 246, 228, 0.7);
}
.ring-teal-200\/75 {
  --tw-ring-color: rgba(153, 246, 228, 0.75);
}
.ring-teal-200\/80 {
  --tw-ring-color: rgba(153, 246, 228, 0.8);
}
.ring-teal-200\/85 {
  --tw-ring-color: rgba(153, 246, 228, 0.85);
}
.ring-teal-200\/90 {
  --tw-ring-color: rgba(153, 246, 228, 0.9);
}
.ring-teal-200\/95 {
  --tw-ring-color: rgba(153, 246, 228, 0.95);
}
.ring-teal-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(94, 234, 212, var(--tw-ring-opacity));
}
.ring-teal-300\/0 {
  --tw-ring-color: rgba(94, 234, 212, 0);
}
.ring-teal-300\/10 {
  --tw-ring-color: rgba(94, 234, 212, 0.1);
}
.ring-teal-300\/100 {
  --tw-ring-color: rgba(94, 234, 212, 1);
}
.ring-teal-300\/15 {
  --tw-ring-color: rgba(94, 234, 212, 0.15);
}
.ring-teal-300\/20 {
  --tw-ring-color: rgba(94, 234, 212, 0.2);
}
.ring-teal-300\/25 {
  --tw-ring-color: rgba(94, 234, 212, 0.25);
}
.ring-teal-300\/30 {
  --tw-ring-color: rgba(94, 234, 212, 0.3);
}
.ring-teal-300\/35 {
  --tw-ring-color: rgba(94, 234, 212, 0.35);
}
.ring-teal-300\/40 {
  --tw-ring-color: rgba(94, 234, 212, 0.4);
}
.ring-teal-300\/45 {
  --tw-ring-color: rgba(94, 234, 212, 0.45);
}
.ring-teal-300\/5 {
  --tw-ring-color: rgba(94, 234, 212, 0.05);
}
.ring-teal-300\/50 {
  --tw-ring-color: rgba(94, 234, 212, 0.5);
}
.ring-teal-300\/55 {
  --tw-ring-color: rgba(94, 234, 212, 0.55);
}
.ring-teal-300\/60 {
  --tw-ring-color: rgba(94, 234, 212, 0.6);
}
.ring-teal-300\/65 {
  --tw-ring-color: rgba(94, 234, 212, 0.65);
}
.ring-teal-300\/70 {
  --tw-ring-color: rgba(94, 234, 212, 0.7);
}
.ring-teal-300\/75 {
  --tw-ring-color: rgba(94, 234, 212, 0.75);
}
.ring-teal-300\/80 {
  --tw-ring-color: rgba(94, 234, 212, 0.8);
}
.ring-teal-300\/85 {
  --tw-ring-color: rgba(94, 234, 212, 0.85);
}
.ring-teal-300\/90 {
  --tw-ring-color: rgba(94, 234, 212, 0.9);
}
.ring-teal-300\/95 {
  --tw-ring-color: rgba(94, 234, 212, 0.95);
}
.ring-teal-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(45, 212, 191, var(--tw-ring-opacity));
}
.ring-teal-400\/0 {
  --tw-ring-color: rgba(45, 212, 191, 0);
}
.ring-teal-400\/10 {
  --tw-ring-color: rgba(45, 212, 191, 0.1);
}
.ring-teal-400\/100 {
  --tw-ring-color: rgba(45, 212, 191, 1);
}
.ring-teal-400\/15 {
  --tw-ring-color: rgba(45, 212, 191, 0.15);
}
.ring-teal-400\/20 {
  --tw-ring-color: rgba(45, 212, 191, 0.2);
}
.ring-teal-400\/25 {
  --tw-ring-color: rgba(45, 212, 191, 0.25);
}
.ring-teal-400\/30 {
  --tw-ring-color: rgba(45, 212, 191, 0.3);
}
.ring-teal-400\/35 {
  --tw-ring-color: rgba(45, 212, 191, 0.35);
}
.ring-teal-400\/40 {
  --tw-ring-color: rgba(45, 212, 191, 0.4);
}
.ring-teal-400\/45 {
  --tw-ring-color: rgba(45, 212, 191, 0.45);
}
.ring-teal-400\/5 {
  --tw-ring-color: rgba(45, 212, 191, 0.05);
}
.ring-teal-400\/50 {
  --tw-ring-color: rgba(45, 212, 191, 0.5);
}
.ring-teal-400\/55 {
  --tw-ring-color: rgba(45, 212, 191, 0.55);
}
.ring-teal-400\/60 {
  --tw-ring-color: rgba(45, 212, 191, 0.6);
}
.ring-teal-400\/65 {
  --tw-ring-color: rgba(45, 212, 191, 0.65);
}
.ring-teal-400\/70 {
  --tw-ring-color: rgba(45, 212, 191, 0.7);
}
.ring-teal-400\/75 {
  --tw-ring-color: rgba(45, 212, 191, 0.75);
}
.ring-teal-400\/80 {
  --tw-ring-color: rgba(45, 212, 191, 0.8);
}
.ring-teal-400\/85 {
  --tw-ring-color: rgba(45, 212, 191, 0.85);
}
.ring-teal-400\/90 {
  --tw-ring-color: rgba(45, 212, 191, 0.9);
}
.ring-teal-400\/95 {
  --tw-ring-color: rgba(45, 212, 191, 0.95);
}
.ring-teal-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(240, 253, 250, var(--tw-ring-opacity));
}
.ring-teal-50\/0 {
  --tw-ring-color: rgba(240, 253, 250, 0);
}
.ring-teal-50\/10 {
  --tw-ring-color: rgba(240, 253, 250, 0.1);
}
.ring-teal-50\/100 {
  --tw-ring-color: rgba(240, 253, 250, 1);
}
.ring-teal-50\/15 {
  --tw-ring-color: rgba(240, 253, 250, 0.15);
}
.ring-teal-50\/20 {
  --tw-ring-color: rgba(240, 253, 250, 0.2);
}
.ring-teal-50\/25 {
  --tw-ring-color: rgba(240, 253, 250, 0.25);
}
.ring-teal-50\/30 {
  --tw-ring-color: rgba(240, 253, 250, 0.3);
}
.ring-teal-50\/35 {
  --tw-ring-color: rgba(240, 253, 250, 0.35);
}
.ring-teal-50\/40 {
  --tw-ring-color: rgba(240, 253, 250, 0.4);
}
.ring-teal-50\/45 {
  --tw-ring-color: rgba(240, 253, 250, 0.45);
}
.ring-teal-50\/5 {
  --tw-ring-color: rgba(240, 253, 250, 0.05);
}
.ring-teal-50\/50 {
  --tw-ring-color: rgba(240, 253, 250, 0.5);
}
.ring-teal-50\/55 {
  --tw-ring-color: rgba(240, 253, 250, 0.55);
}
.ring-teal-50\/60 {
  --tw-ring-color: rgba(240, 253, 250, 0.6);
}
.ring-teal-50\/65 {
  --tw-ring-color: rgba(240, 253, 250, 0.65);
}
.ring-teal-50\/70 {
  --tw-ring-color: rgba(240, 253, 250, 0.7);
}
.ring-teal-50\/75 {
  --tw-ring-color: rgba(240, 253, 250, 0.75);
}
.ring-teal-50\/80 {
  --tw-ring-color: rgba(240, 253, 250, 0.8);
}
.ring-teal-50\/85 {
  --tw-ring-color: rgba(240, 253, 250, 0.85);
}
.ring-teal-50\/90 {
  --tw-ring-color: rgba(240, 253, 250, 0.9);
}
.ring-teal-50\/95 {
  --tw-ring-color: rgba(240, 253, 250, 0.95);
}
.ring-teal-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(20, 184, 166, var(--tw-ring-opacity));
}
.ring-teal-500\/0 {
  --tw-ring-color: rgba(20, 184, 166, 0);
}
.ring-teal-500\/10 {
  --tw-ring-color: rgba(20, 184, 166, 0.1);
}
.ring-teal-500\/100 {
  --tw-ring-color: rgba(20, 184, 166, 1);
}
.ring-teal-500\/15 {
  --tw-ring-color: rgba(20, 184, 166, 0.15);
}
.ring-teal-500\/20 {
  --tw-ring-color: rgba(20, 184, 166, 0.2);
}
.ring-teal-500\/25 {
  --tw-ring-color: rgba(20, 184, 166, 0.25);
}
.ring-teal-500\/30 {
  --tw-ring-color: rgba(20, 184, 166, 0.3);
}
.ring-teal-500\/35 {
  --tw-ring-color: rgba(20, 184, 166, 0.35);
}
.ring-teal-500\/40 {
  --tw-ring-color: rgba(20, 184, 166, 0.4);
}
.ring-teal-500\/45 {
  --tw-ring-color: rgba(20, 184, 166, 0.45);
}
.ring-teal-500\/5 {
  --tw-ring-color: rgba(20, 184, 166, 0.05);
}
.ring-teal-500\/50 {
  --tw-ring-color: rgba(20, 184, 166, 0.5);
}
.ring-teal-500\/55 {
  --tw-ring-color: rgba(20, 184, 166, 0.55);
}
.ring-teal-500\/60 {
  --tw-ring-color: rgba(20, 184, 166, 0.6);
}
.ring-teal-500\/65 {
  --tw-ring-color: rgba(20, 184, 166, 0.65);
}
.ring-teal-500\/70 {
  --tw-ring-color: rgba(20, 184, 166, 0.7);
}
.ring-teal-500\/75 {
  --tw-ring-color: rgba(20, 184, 166, 0.75);
}
.ring-teal-500\/80 {
  --tw-ring-color: rgba(20, 184, 166, 0.8);
}
.ring-teal-500\/85 {
  --tw-ring-color: rgba(20, 184, 166, 0.85);
}
.ring-teal-500\/90 {
  --tw-ring-color: rgba(20, 184, 166, 0.9);
}
.ring-teal-500\/95 {
  --tw-ring-color: rgba(20, 184, 166, 0.95);
}
.ring-teal-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(13, 148, 136, var(--tw-ring-opacity));
}
.ring-teal-600\/0 {
  --tw-ring-color: rgba(13, 148, 136, 0);
}
.ring-teal-600\/10 {
  --tw-ring-color: rgba(13, 148, 136, 0.1);
}
.ring-teal-600\/100 {
  --tw-ring-color: rgba(13, 148, 136, 1);
}
.ring-teal-600\/15 {
  --tw-ring-color: rgba(13, 148, 136, 0.15);
}
.ring-teal-600\/20 {
  --tw-ring-color: rgba(13, 148, 136, 0.2);
}
.ring-teal-600\/25 {
  --tw-ring-color: rgba(13, 148, 136, 0.25);
}
.ring-teal-600\/30 {
  --tw-ring-color: rgba(13, 148, 136, 0.3);
}
.ring-teal-600\/35 {
  --tw-ring-color: rgba(13, 148, 136, 0.35);
}
.ring-teal-600\/40 {
  --tw-ring-color: rgba(13, 148, 136, 0.4);
}
.ring-teal-600\/45 {
  --tw-ring-color: rgba(13, 148, 136, 0.45);
}
.ring-teal-600\/5 {
  --tw-ring-color: rgba(13, 148, 136, 0.05);
}
.ring-teal-600\/50 {
  --tw-ring-color: rgba(13, 148, 136, 0.5);
}
.ring-teal-600\/55 {
  --tw-ring-color: rgba(13, 148, 136, 0.55);
}
.ring-teal-600\/60 {
  --tw-ring-color: rgba(13, 148, 136, 0.6);
}
.ring-teal-600\/65 {
  --tw-ring-color: rgba(13, 148, 136, 0.65);
}
.ring-teal-600\/70 {
  --tw-ring-color: rgba(13, 148, 136, 0.7);
}
.ring-teal-600\/75 {
  --tw-ring-color: rgba(13, 148, 136, 0.75);
}
.ring-teal-600\/80 {
  --tw-ring-color: rgba(13, 148, 136, 0.8);
}
.ring-teal-600\/85 {
  --tw-ring-color: rgba(13, 148, 136, 0.85);
}
.ring-teal-600\/90 {
  --tw-ring-color: rgba(13, 148, 136, 0.9);
}
.ring-teal-600\/95 {
  --tw-ring-color: rgba(13, 148, 136, 0.95);
}
.ring-teal-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(15, 118, 110, var(--tw-ring-opacity));
}
.ring-teal-700\/0 {
  --tw-ring-color: rgba(15, 118, 110, 0);
}
.ring-teal-700\/10 {
  --tw-ring-color: rgba(15, 118, 110, 0.1);
}
.ring-teal-700\/100 {
  --tw-ring-color: rgba(15, 118, 110, 1);
}
.ring-teal-700\/15 {
  --tw-ring-color: rgba(15, 118, 110, 0.15);
}
.ring-teal-700\/20 {
  --tw-ring-color: rgba(15, 118, 110, 0.2);
}
.ring-teal-700\/25 {
  --tw-ring-color: rgba(15, 118, 110, 0.25);
}
.ring-teal-700\/30 {
  --tw-ring-color: rgba(15, 118, 110, 0.3);
}
.ring-teal-700\/35 {
  --tw-ring-color: rgba(15, 118, 110, 0.35);
}
.ring-teal-700\/40 {
  --tw-ring-color: rgba(15, 118, 110, 0.4);
}
.ring-teal-700\/45 {
  --tw-ring-color: rgba(15, 118, 110, 0.45);
}
.ring-teal-700\/5 {
  --tw-ring-color: rgba(15, 118, 110, 0.05);
}
.ring-teal-700\/50 {
  --tw-ring-color: rgba(15, 118, 110, 0.5);
}
.ring-teal-700\/55 {
  --tw-ring-color: rgba(15, 118, 110, 0.55);
}
.ring-teal-700\/60 {
  --tw-ring-color: rgba(15, 118, 110, 0.6);
}
.ring-teal-700\/65 {
  --tw-ring-color: rgba(15, 118, 110, 0.65);
}
.ring-teal-700\/70 {
  --tw-ring-color: rgba(15, 118, 110, 0.7);
}
.ring-teal-700\/75 {
  --tw-ring-color: rgba(15, 118, 110, 0.75);
}
.ring-teal-700\/80 {
  --tw-ring-color: rgba(15, 118, 110, 0.8);
}
.ring-teal-700\/85 {
  --tw-ring-color: rgba(15, 118, 110, 0.85);
}
.ring-teal-700\/90 {
  --tw-ring-color: rgba(15, 118, 110, 0.9);
}
.ring-teal-700\/95 {
  --tw-ring-color: rgba(15, 118, 110, 0.95);
}
.ring-teal-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(17, 94, 89, var(--tw-ring-opacity));
}
.ring-teal-800\/0 {
  --tw-ring-color: rgba(17, 94, 89, 0);
}
.ring-teal-800\/10 {
  --tw-ring-color: rgba(17, 94, 89, 0.1);
}
.ring-teal-800\/100 {
  --tw-ring-color: rgba(17, 94, 89, 1);
}
.ring-teal-800\/15 {
  --tw-ring-color: rgba(17, 94, 89, 0.15);
}
.ring-teal-800\/20 {
  --tw-ring-color: rgba(17, 94, 89, 0.2);
}
.ring-teal-800\/25 {
  --tw-ring-color: rgba(17, 94, 89, 0.25);
}
.ring-teal-800\/30 {
  --tw-ring-color: rgba(17, 94, 89, 0.3);
}
.ring-teal-800\/35 {
  --tw-ring-color: rgba(17, 94, 89, 0.35);
}
.ring-teal-800\/40 {
  --tw-ring-color: rgba(17, 94, 89, 0.4);
}
.ring-teal-800\/45 {
  --tw-ring-color: rgba(17, 94, 89, 0.45);
}
.ring-teal-800\/5 {
  --tw-ring-color: rgba(17, 94, 89, 0.05);
}
.ring-teal-800\/50 {
  --tw-ring-color: rgba(17, 94, 89, 0.5);
}
.ring-teal-800\/55 {
  --tw-ring-color: rgba(17, 94, 89, 0.55);
}
.ring-teal-800\/60 {
  --tw-ring-color: rgba(17, 94, 89, 0.6);
}
.ring-teal-800\/65 {
  --tw-ring-color: rgba(17, 94, 89, 0.65);
}
.ring-teal-800\/70 {
  --tw-ring-color: rgba(17, 94, 89, 0.7);
}
.ring-teal-800\/75 {
  --tw-ring-color: rgba(17, 94, 89, 0.75);
}
.ring-teal-800\/80 {
  --tw-ring-color: rgba(17, 94, 89, 0.8);
}
.ring-teal-800\/85 {
  --tw-ring-color: rgba(17, 94, 89, 0.85);
}
.ring-teal-800\/90 {
  --tw-ring-color: rgba(17, 94, 89, 0.9);
}
.ring-teal-800\/95 {
  --tw-ring-color: rgba(17, 94, 89, 0.95);
}
.ring-teal-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(19, 78, 74, var(--tw-ring-opacity));
}
.ring-teal-900\/0 {
  --tw-ring-color: rgba(19, 78, 74, 0);
}
.ring-teal-900\/10 {
  --tw-ring-color: rgba(19, 78, 74, 0.1);
}
.ring-teal-900\/100 {
  --tw-ring-color: rgba(19, 78, 74, 1);
}
.ring-teal-900\/15 {
  --tw-ring-color: rgba(19, 78, 74, 0.15);
}
.ring-teal-900\/20 {
  --tw-ring-color: rgba(19, 78, 74, 0.2);
}
.ring-teal-900\/25 {
  --tw-ring-color: rgba(19, 78, 74, 0.25);
}
.ring-teal-900\/30 {
  --tw-ring-color: rgba(19, 78, 74, 0.3);
}
.ring-teal-900\/35 {
  --tw-ring-color: rgba(19, 78, 74, 0.35);
}
.ring-teal-900\/40 {
  --tw-ring-color: rgba(19, 78, 74, 0.4);
}
.ring-teal-900\/45 {
  --tw-ring-color: rgba(19, 78, 74, 0.45);
}
.ring-teal-900\/5 {
  --tw-ring-color: rgba(19, 78, 74, 0.05);
}
.ring-teal-900\/50 {
  --tw-ring-color: rgba(19, 78, 74, 0.5);
}
.ring-teal-900\/55 {
  --tw-ring-color: rgba(19, 78, 74, 0.55);
}
.ring-teal-900\/60 {
  --tw-ring-color: rgba(19, 78, 74, 0.6);
}
.ring-teal-900\/65 {
  --tw-ring-color: rgba(19, 78, 74, 0.65);
}
.ring-teal-900\/70 {
  --tw-ring-color: rgba(19, 78, 74, 0.7);
}
.ring-teal-900\/75 {
  --tw-ring-color: rgba(19, 78, 74, 0.75);
}
.ring-teal-900\/80 {
  --tw-ring-color: rgba(19, 78, 74, 0.8);
}
.ring-teal-900\/85 {
  --tw-ring-color: rgba(19, 78, 74, 0.85);
}
.ring-teal-900\/90 {
  --tw-ring-color: rgba(19, 78, 74, 0.9);
}
.ring-teal-900\/95 {
  --tw-ring-color: rgba(19, 78, 74, 0.95);
}
.ring-teal-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(4, 47, 46, var(--tw-ring-opacity));
}
.ring-teal-950\/0 {
  --tw-ring-color: rgba(4, 47, 46, 0);
}
.ring-teal-950\/10 {
  --tw-ring-color: rgba(4, 47, 46, 0.1);
}
.ring-teal-950\/100 {
  --tw-ring-color: rgba(4, 47, 46, 1);
}
.ring-teal-950\/15 {
  --tw-ring-color: rgba(4, 47, 46, 0.15);
}
.ring-teal-950\/20 {
  --tw-ring-color: rgba(4, 47, 46, 0.2);
}
.ring-teal-950\/25 {
  --tw-ring-color: rgba(4, 47, 46, 0.25);
}
.ring-teal-950\/30 {
  --tw-ring-color: rgba(4, 47, 46, 0.3);
}
.ring-teal-950\/35 {
  --tw-ring-color: rgba(4, 47, 46, 0.35);
}
.ring-teal-950\/40 {
  --tw-ring-color: rgba(4, 47, 46, 0.4);
}
.ring-teal-950\/45 {
  --tw-ring-color: rgba(4, 47, 46, 0.45);
}
.ring-teal-950\/5 {
  --tw-ring-color: rgba(4, 47, 46, 0.05);
}
.ring-teal-950\/50 {
  --tw-ring-color: rgba(4, 47, 46, 0.5);
}
.ring-teal-950\/55 {
  --tw-ring-color: rgba(4, 47, 46, 0.55);
}
.ring-teal-950\/60 {
  --tw-ring-color: rgba(4, 47, 46, 0.6);
}
.ring-teal-950\/65 {
  --tw-ring-color: rgba(4, 47, 46, 0.65);
}
.ring-teal-950\/70 {
  --tw-ring-color: rgba(4, 47, 46, 0.7);
}
.ring-teal-950\/75 {
  --tw-ring-color: rgba(4, 47, 46, 0.75);
}
.ring-teal-950\/80 {
  --tw-ring-color: rgba(4, 47, 46, 0.8);
}
.ring-teal-950\/85 {
  --tw-ring-color: rgba(4, 47, 46, 0.85);
}
.ring-teal-950\/90 {
  --tw-ring-color: rgba(4, 47, 46, 0.9);
}
.ring-teal-950\/95 {
  --tw-ring-color: rgba(4, 47, 46, 0.95);
}
.ring-transparent {
  --tw-ring-color: transparent;
}
.ring-transparent\/0 {
  --tw-ring-color: rgba(0, 0, 0, 0);
}
.ring-transparent\/10 {
  --tw-ring-color: rgba(0, 0, 0, 0.1);
}
.ring-transparent\/100 {
  --tw-ring-color: rgba(0, 0, 0, 1);
}
.ring-transparent\/15 {
  --tw-ring-color: rgba(0, 0, 0, 0.15);
}
.ring-transparent\/20 {
  --tw-ring-color: rgba(0, 0, 0, 0.2);
}
.ring-transparent\/25 {
  --tw-ring-color: rgba(0, 0, 0, 0.25);
}
.ring-transparent\/30 {
  --tw-ring-color: rgba(0, 0, 0, 0.3);
}
.ring-transparent\/35 {
  --tw-ring-color: rgba(0, 0, 0, 0.35);
}
.ring-transparent\/40 {
  --tw-ring-color: rgba(0, 0, 0, 0.4);
}
.ring-transparent\/45 {
  --tw-ring-color: rgba(0, 0, 0, 0.45);
}
.ring-transparent\/5 {
  --tw-ring-color: rgba(0, 0, 0, 0.05);
}
.ring-transparent\/50 {
  --tw-ring-color: rgba(0, 0, 0, 0.5);
}
.ring-transparent\/55 {
  --tw-ring-color: rgba(0, 0, 0, 0.55);
}
.ring-transparent\/60 {
  --tw-ring-color: rgba(0, 0, 0, 0.6);
}
.ring-transparent\/65 {
  --tw-ring-color: rgba(0, 0, 0, 0.65);
}
.ring-transparent\/70 {
  --tw-ring-color: rgba(0, 0, 0, 0.7);
}
.ring-transparent\/75 {
  --tw-ring-color: rgba(0, 0, 0, 0.75);
}
.ring-transparent\/80 {
  --tw-ring-color: rgba(0, 0, 0, 0.8);
}
.ring-transparent\/85 {
  --tw-ring-color: rgba(0, 0, 0, 0.85);
}
.ring-transparent\/90 {
  --tw-ring-color: rgba(0, 0, 0, 0.9);
}
.ring-transparent\/95 {
  --tw-ring-color: rgba(0, 0, 0, 0.95);
}
.ring-violet-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity));
}
.ring-violet-100\/0 {
  --tw-ring-color: rgba(237, 233, 254, 0);
}
.ring-violet-100\/10 {
  --tw-ring-color: rgba(237, 233, 254, 0.1);
}
.ring-violet-100\/100 {
  --tw-ring-color: rgba(237, 233, 254, 1);
}
.ring-violet-100\/15 {
  --tw-ring-color: rgba(237, 233, 254, 0.15);
}
.ring-violet-100\/20 {
  --tw-ring-color: rgba(237, 233, 254, 0.2);
}
.ring-violet-100\/25 {
  --tw-ring-color: rgba(237, 233, 254, 0.25);
}
.ring-violet-100\/30 {
  --tw-ring-color: rgba(237, 233, 254, 0.3);
}
.ring-violet-100\/35 {
  --tw-ring-color: rgba(237, 233, 254, 0.35);
}
.ring-violet-100\/40 {
  --tw-ring-color: rgba(237, 233, 254, 0.4);
}
.ring-violet-100\/45 {
  --tw-ring-color: rgba(237, 233, 254, 0.45);
}
.ring-violet-100\/5 {
  --tw-ring-color: rgba(237, 233, 254, 0.05);
}
.ring-violet-100\/50 {
  --tw-ring-color: rgba(237, 233, 254, 0.5);
}
.ring-violet-100\/55 {
  --tw-ring-color: rgba(237, 233, 254, 0.55);
}
.ring-violet-100\/60 {
  --tw-ring-color: rgba(237, 233, 254, 0.6);
}
.ring-violet-100\/65 {
  --tw-ring-color: rgba(237, 233, 254, 0.65);
}
.ring-violet-100\/70 {
  --tw-ring-color: rgba(237, 233, 254, 0.7);
}
.ring-violet-100\/75 {
  --tw-ring-color: rgba(237, 233, 254, 0.75);
}
.ring-violet-100\/80 {
  --tw-ring-color: rgba(237, 233, 254, 0.8);
}
.ring-violet-100\/85 {
  --tw-ring-color: rgba(237, 233, 254, 0.85);
}
.ring-violet-100\/90 {
  --tw-ring-color: rgba(237, 233, 254, 0.9);
}
.ring-violet-100\/95 {
  --tw-ring-color: rgba(237, 233, 254, 0.95);
}
.ring-violet-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity));
}
.ring-violet-200\/0 {
  --tw-ring-color: rgba(221, 214, 254, 0);
}
.ring-violet-200\/10 {
  --tw-ring-color: rgba(221, 214, 254, 0.1);
}
.ring-violet-200\/100 {
  --tw-ring-color: rgba(221, 214, 254, 1);
}
.ring-violet-200\/15 {
  --tw-ring-color: rgba(221, 214, 254, 0.15);
}
.ring-violet-200\/20 {
  --tw-ring-color: rgba(221, 214, 254, 0.2);
}
.ring-violet-200\/25 {
  --tw-ring-color: rgba(221, 214, 254, 0.25);
}
.ring-violet-200\/30 {
  --tw-ring-color: rgba(221, 214, 254, 0.3);
}
.ring-violet-200\/35 {
  --tw-ring-color: rgba(221, 214, 254, 0.35);
}
.ring-violet-200\/40 {
  --tw-ring-color: rgba(221, 214, 254, 0.4);
}
.ring-violet-200\/45 {
  --tw-ring-color: rgba(221, 214, 254, 0.45);
}
.ring-violet-200\/5 {
  --tw-ring-color: rgba(221, 214, 254, 0.05);
}
.ring-violet-200\/50 {
  --tw-ring-color: rgba(221, 214, 254, 0.5);
}
.ring-violet-200\/55 {
  --tw-ring-color: rgba(221, 214, 254, 0.55);
}
.ring-violet-200\/60 {
  --tw-ring-color: rgba(221, 214, 254, 0.6);
}
.ring-violet-200\/65 {
  --tw-ring-color: rgba(221, 214, 254, 0.65);
}
.ring-violet-200\/70 {
  --tw-ring-color: rgba(221, 214, 254, 0.7);
}
.ring-violet-200\/75 {
  --tw-ring-color: rgba(221, 214, 254, 0.75);
}
.ring-violet-200\/80 {
  --tw-ring-color: rgba(221, 214, 254, 0.8);
}
.ring-violet-200\/85 {
  --tw-ring-color: rgba(221, 214, 254, 0.85);
}
.ring-violet-200\/90 {
  --tw-ring-color: rgba(221, 214, 254, 0.9);
}
.ring-violet-200\/95 {
  --tw-ring-color: rgba(221, 214, 254, 0.95);
}
.ring-violet-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity));
}
.ring-violet-300\/0 {
  --tw-ring-color: rgba(196, 181, 253, 0);
}
.ring-violet-300\/10 {
  --tw-ring-color: rgba(196, 181, 253, 0.1);
}
.ring-violet-300\/100 {
  --tw-ring-color: rgba(196, 181, 253, 1);
}
.ring-violet-300\/15 {
  --tw-ring-color: rgba(196, 181, 253, 0.15);
}
.ring-violet-300\/20 {
  --tw-ring-color: rgba(196, 181, 253, 0.2);
}
.ring-violet-300\/25 {
  --tw-ring-color: rgba(196, 181, 253, 0.25);
}
.ring-violet-300\/30 {
  --tw-ring-color: rgba(196, 181, 253, 0.3);
}
.ring-violet-300\/35 {
  --tw-ring-color: rgba(196, 181, 253, 0.35);
}
.ring-violet-300\/40 {
  --tw-ring-color: rgba(196, 181, 253, 0.4);
}
.ring-violet-300\/45 {
  --tw-ring-color: rgba(196, 181, 253, 0.45);
}
.ring-violet-300\/5 {
  --tw-ring-color: rgba(196, 181, 253, 0.05);
}
.ring-violet-300\/50 {
  --tw-ring-color: rgba(196, 181, 253, 0.5);
}
.ring-violet-300\/55 {
  --tw-ring-color: rgba(196, 181, 253, 0.55);
}
.ring-violet-300\/60 {
  --tw-ring-color: rgba(196, 181, 253, 0.6);
}
.ring-violet-300\/65 {
  --tw-ring-color: rgba(196, 181, 253, 0.65);
}
.ring-violet-300\/70 {
  --tw-ring-color: rgba(196, 181, 253, 0.7);
}
.ring-violet-300\/75 {
  --tw-ring-color: rgba(196, 181, 253, 0.75);
}
.ring-violet-300\/80 {
  --tw-ring-color: rgba(196, 181, 253, 0.8);
}
.ring-violet-300\/85 {
  --tw-ring-color: rgba(196, 181, 253, 0.85);
}
.ring-violet-300\/90 {
  --tw-ring-color: rgba(196, 181, 253, 0.9);
}
.ring-violet-300\/95 {
  --tw-ring-color: rgba(196, 181, 253, 0.95);
}
.ring-violet-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity));
}
.ring-violet-400\/0 {
  --tw-ring-color: rgba(167, 139, 250, 0);
}
.ring-violet-400\/10 {
  --tw-ring-color: rgba(167, 139, 250, 0.1);
}
.ring-violet-400\/100 {
  --tw-ring-color: rgba(167, 139, 250, 1);
}
.ring-violet-400\/15 {
  --tw-ring-color: rgba(167, 139, 250, 0.15);
}
.ring-violet-400\/20 {
  --tw-ring-color: rgba(167, 139, 250, 0.2);
}
.ring-violet-400\/25 {
  --tw-ring-color: rgba(167, 139, 250, 0.25);
}
.ring-violet-400\/30 {
  --tw-ring-color: rgba(167, 139, 250, 0.3);
}
.ring-violet-400\/35 {
  --tw-ring-color: rgba(167, 139, 250, 0.35);
}
.ring-violet-400\/40 {
  --tw-ring-color: rgba(167, 139, 250, 0.4);
}
.ring-violet-400\/45 {
  --tw-ring-color: rgba(167, 139, 250, 0.45);
}
.ring-violet-400\/5 {
  --tw-ring-color: rgba(167, 139, 250, 0.05);
}
.ring-violet-400\/50 {
  --tw-ring-color: rgba(167, 139, 250, 0.5);
}
.ring-violet-400\/55 {
  --tw-ring-color: rgba(167, 139, 250, 0.55);
}
.ring-violet-400\/60 {
  --tw-ring-color: rgba(167, 139, 250, 0.6);
}
.ring-violet-400\/65 {
  --tw-ring-color: rgba(167, 139, 250, 0.65);
}
.ring-violet-400\/70 {
  --tw-ring-color: rgba(167, 139, 250, 0.7);
}
.ring-violet-400\/75 {
  --tw-ring-color: rgba(167, 139, 250, 0.75);
}
.ring-violet-400\/80 {
  --tw-ring-color: rgba(167, 139, 250, 0.8);
}
.ring-violet-400\/85 {
  --tw-ring-color: rgba(167, 139, 250, 0.85);
}
.ring-violet-400\/90 {
  --tw-ring-color: rgba(167, 139, 250, 0.9);
}
.ring-violet-400\/95 {
  --tw-ring-color: rgba(167, 139, 250, 0.95);
}
.ring-violet-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity));
}
.ring-violet-50\/0 {
  --tw-ring-color: rgba(245, 243, 255, 0);
}
.ring-violet-50\/10 {
  --tw-ring-color: rgba(245, 243, 255, 0.1);
}
.ring-violet-50\/100 {
  --tw-ring-color: rgba(245, 243, 255, 1);
}
.ring-violet-50\/15 {
  --tw-ring-color: rgba(245, 243, 255, 0.15);
}
.ring-violet-50\/20 {
  --tw-ring-color: rgba(245, 243, 255, 0.2);
}
.ring-violet-50\/25 {
  --tw-ring-color: rgba(245, 243, 255, 0.25);
}
.ring-violet-50\/30 {
  --tw-ring-color: rgba(245, 243, 255, 0.3);
}
.ring-violet-50\/35 {
  --tw-ring-color: rgba(245, 243, 255, 0.35);
}
.ring-violet-50\/40 {
  --tw-ring-color: rgba(245, 243, 255, 0.4);
}
.ring-violet-50\/45 {
  --tw-ring-color: rgba(245, 243, 255, 0.45);
}
.ring-violet-50\/5 {
  --tw-ring-color: rgba(245, 243, 255, 0.05);
}
.ring-violet-50\/50 {
  --tw-ring-color: rgba(245, 243, 255, 0.5);
}
.ring-violet-50\/55 {
  --tw-ring-color: rgba(245, 243, 255, 0.55);
}
.ring-violet-50\/60 {
  --tw-ring-color: rgba(245, 243, 255, 0.6);
}
.ring-violet-50\/65 {
  --tw-ring-color: rgba(245, 243, 255, 0.65);
}
.ring-violet-50\/70 {
  --tw-ring-color: rgba(245, 243, 255, 0.7);
}
.ring-violet-50\/75 {
  --tw-ring-color: rgba(245, 243, 255, 0.75);
}
.ring-violet-50\/80 {
  --tw-ring-color: rgba(245, 243, 255, 0.8);
}
.ring-violet-50\/85 {
  --tw-ring-color: rgba(245, 243, 255, 0.85);
}
.ring-violet-50\/90 {
  --tw-ring-color: rgba(245, 243, 255, 0.9);
}
.ring-violet-50\/95 {
  --tw-ring-color: rgba(245, 243, 255, 0.95);
}
.ring-violet-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity));
}
.ring-violet-500\/0 {
  --tw-ring-color: rgba(139, 92, 246, 0);
}
.ring-violet-500\/10 {
  --tw-ring-color: rgba(139, 92, 246, 0.1);
}
.ring-violet-500\/100 {
  --tw-ring-color: rgba(139, 92, 246, 1);
}
.ring-violet-500\/15 {
  --tw-ring-color: rgba(139, 92, 246, 0.15);
}
.ring-violet-500\/20 {
  --tw-ring-color: rgba(139, 92, 246, 0.2);
}
.ring-violet-500\/25 {
  --tw-ring-color: rgba(139, 92, 246, 0.25);
}
.ring-violet-500\/30 {
  --tw-ring-color: rgba(139, 92, 246, 0.3);
}
.ring-violet-500\/35 {
  --tw-ring-color: rgba(139, 92, 246, 0.35);
}
.ring-violet-500\/40 {
  --tw-ring-color: rgba(139, 92, 246, 0.4);
}
.ring-violet-500\/45 {
  --tw-ring-color: rgba(139, 92, 246, 0.45);
}
.ring-violet-500\/5 {
  --tw-ring-color: rgba(139, 92, 246, 0.05);
}
.ring-violet-500\/50 {
  --tw-ring-color: rgba(139, 92, 246, 0.5);
}
.ring-violet-500\/55 {
  --tw-ring-color: rgba(139, 92, 246, 0.55);
}
.ring-violet-500\/60 {
  --tw-ring-color: rgba(139, 92, 246, 0.6);
}
.ring-violet-500\/65 {
  --tw-ring-color: rgba(139, 92, 246, 0.65);
}
.ring-violet-500\/70 {
  --tw-ring-color: rgba(139, 92, 246, 0.7);
}
.ring-violet-500\/75 {
  --tw-ring-color: rgba(139, 92, 246, 0.75);
}
.ring-violet-500\/80 {
  --tw-ring-color: rgba(139, 92, 246, 0.8);
}
.ring-violet-500\/85 {
  --tw-ring-color: rgba(139, 92, 246, 0.85);
}
.ring-violet-500\/90 {
  --tw-ring-color: rgba(139, 92, 246, 0.9);
}
.ring-violet-500\/95 {
  --tw-ring-color: rgba(139, 92, 246, 0.95);
}
.ring-violet-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity));
}
.ring-violet-600\/0 {
  --tw-ring-color: rgba(124, 58, 237, 0);
}
.ring-violet-600\/10 {
  --tw-ring-color: rgba(124, 58, 237, 0.1);
}
.ring-violet-600\/100 {
  --tw-ring-color: rgba(124, 58, 237, 1);
}
.ring-violet-600\/15 {
  --tw-ring-color: rgba(124, 58, 237, 0.15);
}
.ring-violet-600\/20 {
  --tw-ring-color: rgba(124, 58, 237, 0.2);
}
.ring-violet-600\/25 {
  --tw-ring-color: rgba(124, 58, 237, 0.25);
}
.ring-violet-600\/30 {
  --tw-ring-color: rgba(124, 58, 237, 0.3);
}
.ring-violet-600\/35 {
  --tw-ring-color: rgba(124, 58, 237, 0.35);
}
.ring-violet-600\/40 {
  --tw-ring-color: rgba(124, 58, 237, 0.4);
}
.ring-violet-600\/45 {
  --tw-ring-color: rgba(124, 58, 237, 0.45);
}
.ring-violet-600\/5 {
  --tw-ring-color: rgba(124, 58, 237, 0.05);
}
.ring-violet-600\/50 {
  --tw-ring-color: rgba(124, 58, 237, 0.5);
}
.ring-violet-600\/55 {
  --tw-ring-color: rgba(124, 58, 237, 0.55);
}
.ring-violet-600\/60 {
  --tw-ring-color: rgba(124, 58, 237, 0.6);
}
.ring-violet-600\/65 {
  --tw-ring-color: rgba(124, 58, 237, 0.65);
}
.ring-violet-600\/70 {
  --tw-ring-color: rgba(124, 58, 237, 0.7);
}
.ring-violet-600\/75 {
  --tw-ring-color: rgba(124, 58, 237, 0.75);
}
.ring-violet-600\/80 {
  --tw-ring-color: rgba(124, 58, 237, 0.8);
}
.ring-violet-600\/85 {
  --tw-ring-color: rgba(124, 58, 237, 0.85);
}
.ring-violet-600\/90 {
  --tw-ring-color: rgba(124, 58, 237, 0.9);
}
.ring-violet-600\/95 {
  --tw-ring-color: rgba(124, 58, 237, 0.95);
}
.ring-violet-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity));
}
.ring-violet-700\/0 {
  --tw-ring-color: rgba(109, 40, 217, 0);
}
.ring-violet-700\/10 {
  --tw-ring-color: rgba(109, 40, 217, 0.1);
}
.ring-violet-700\/100 {
  --tw-ring-color: rgba(109, 40, 217, 1);
}
.ring-violet-700\/15 {
  --tw-ring-color: rgba(109, 40, 217, 0.15);
}
.ring-violet-700\/20 {
  --tw-ring-color: rgba(109, 40, 217, 0.2);
}
.ring-violet-700\/25 {
  --tw-ring-color: rgba(109, 40, 217, 0.25);
}
.ring-violet-700\/30 {
  --tw-ring-color: rgba(109, 40, 217, 0.3);
}
.ring-violet-700\/35 {
  --tw-ring-color: rgba(109, 40, 217, 0.35);
}
.ring-violet-700\/40 {
  --tw-ring-color: rgba(109, 40, 217, 0.4);
}
.ring-violet-700\/45 {
  --tw-ring-color: rgba(109, 40, 217, 0.45);
}
.ring-violet-700\/5 {
  --tw-ring-color: rgba(109, 40, 217, 0.05);
}
.ring-violet-700\/50 {
  --tw-ring-color: rgba(109, 40, 217, 0.5);
}
.ring-violet-700\/55 {
  --tw-ring-color: rgba(109, 40, 217, 0.55);
}
.ring-violet-700\/60 {
  --tw-ring-color: rgba(109, 40, 217, 0.6);
}
.ring-violet-700\/65 {
  --tw-ring-color: rgba(109, 40, 217, 0.65);
}
.ring-violet-700\/70 {
  --tw-ring-color: rgba(109, 40, 217, 0.7);
}
.ring-violet-700\/75 {
  --tw-ring-color: rgba(109, 40, 217, 0.75);
}
.ring-violet-700\/80 {
  --tw-ring-color: rgba(109, 40, 217, 0.8);
}
.ring-violet-700\/85 {
  --tw-ring-color: rgba(109, 40, 217, 0.85);
}
.ring-violet-700\/90 {
  --tw-ring-color: rgba(109, 40, 217, 0.9);
}
.ring-violet-700\/95 {
  --tw-ring-color: rgba(109, 40, 217, 0.95);
}
.ring-violet-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity));
}
.ring-violet-800\/0 {
  --tw-ring-color: rgba(91, 33, 182, 0);
}
.ring-violet-800\/10 {
  --tw-ring-color: rgba(91, 33, 182, 0.1);
}
.ring-violet-800\/100 {
  --tw-ring-color: rgba(91, 33, 182, 1);
}
.ring-violet-800\/15 {
  --tw-ring-color: rgba(91, 33, 182, 0.15);
}
.ring-violet-800\/20 {
  --tw-ring-color: rgba(91, 33, 182, 0.2);
}
.ring-violet-800\/25 {
  --tw-ring-color: rgba(91, 33, 182, 0.25);
}
.ring-violet-800\/30 {
  --tw-ring-color: rgba(91, 33, 182, 0.3);
}
.ring-violet-800\/35 {
  --tw-ring-color: rgba(91, 33, 182, 0.35);
}
.ring-violet-800\/40 {
  --tw-ring-color: rgba(91, 33, 182, 0.4);
}
.ring-violet-800\/45 {
  --tw-ring-color: rgba(91, 33, 182, 0.45);
}
.ring-violet-800\/5 {
  --tw-ring-color: rgba(91, 33, 182, 0.05);
}
.ring-violet-800\/50 {
  --tw-ring-color: rgba(91, 33, 182, 0.5);
}
.ring-violet-800\/55 {
  --tw-ring-color: rgba(91, 33, 182, 0.55);
}
.ring-violet-800\/60 {
  --tw-ring-color: rgba(91, 33, 182, 0.6);
}
.ring-violet-800\/65 {
  --tw-ring-color: rgba(91, 33, 182, 0.65);
}
.ring-violet-800\/70 {
  --tw-ring-color: rgba(91, 33, 182, 0.7);
}
.ring-violet-800\/75 {
  --tw-ring-color: rgba(91, 33, 182, 0.75);
}
.ring-violet-800\/80 {
  --tw-ring-color: rgba(91, 33, 182, 0.8);
}
.ring-violet-800\/85 {
  --tw-ring-color: rgba(91, 33, 182, 0.85);
}
.ring-violet-800\/90 {
  --tw-ring-color: rgba(91, 33, 182, 0.9);
}
.ring-violet-800\/95 {
  --tw-ring-color: rgba(91, 33, 182, 0.95);
}
.ring-violet-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity));
}
.ring-violet-900\/0 {
  --tw-ring-color: rgba(76, 29, 149, 0);
}
.ring-violet-900\/10 {
  --tw-ring-color: rgba(76, 29, 149, 0.1);
}
.ring-violet-900\/100 {
  --tw-ring-color: rgba(76, 29, 149, 1);
}
.ring-violet-900\/15 {
  --tw-ring-color: rgba(76, 29, 149, 0.15);
}
.ring-violet-900\/20 {
  --tw-ring-color: rgba(76, 29, 149, 0.2);
}
.ring-violet-900\/25 {
  --tw-ring-color: rgba(76, 29, 149, 0.25);
}
.ring-violet-900\/30 {
  --tw-ring-color: rgba(76, 29, 149, 0.3);
}
.ring-violet-900\/35 {
  --tw-ring-color: rgba(76, 29, 149, 0.35);
}
.ring-violet-900\/40 {
  --tw-ring-color: rgba(76, 29, 149, 0.4);
}
.ring-violet-900\/45 {
  --tw-ring-color: rgba(76, 29, 149, 0.45);
}
.ring-violet-900\/5 {
  --tw-ring-color: rgba(76, 29, 149, 0.05);
}
.ring-violet-900\/50 {
  --tw-ring-color: rgba(76, 29, 149, 0.5);
}
.ring-violet-900\/55 {
  --tw-ring-color: rgba(76, 29, 149, 0.55);
}
.ring-violet-900\/60 {
  --tw-ring-color: rgba(76, 29, 149, 0.6);
}
.ring-violet-900\/65 {
  --tw-ring-color: rgba(76, 29, 149, 0.65);
}
.ring-violet-900\/70 {
  --tw-ring-color: rgba(76, 29, 149, 0.7);
}
.ring-violet-900\/75 {
  --tw-ring-color: rgba(76, 29, 149, 0.75);
}
.ring-violet-900\/80 {
  --tw-ring-color: rgba(76, 29, 149, 0.8);
}
.ring-violet-900\/85 {
  --tw-ring-color: rgba(76, 29, 149, 0.85);
}
.ring-violet-900\/90 {
  --tw-ring-color: rgba(76, 29, 149, 0.9);
}
.ring-violet-900\/95 {
  --tw-ring-color: rgba(76, 29, 149, 0.95);
}
.ring-violet-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(46, 16, 101, var(--tw-ring-opacity));
}
.ring-violet-950\/0 {
  --tw-ring-color: rgba(46, 16, 101, 0);
}
.ring-violet-950\/10 {
  --tw-ring-color: rgba(46, 16, 101, 0.1);
}
.ring-violet-950\/100 {
  --tw-ring-color: rgba(46, 16, 101, 1);
}
.ring-violet-950\/15 {
  --tw-ring-color: rgba(46, 16, 101, 0.15);
}
.ring-violet-950\/20 {
  --tw-ring-color: rgba(46, 16, 101, 0.2);
}
.ring-violet-950\/25 {
  --tw-ring-color: rgba(46, 16, 101, 0.25);
}
.ring-violet-950\/30 {
  --tw-ring-color: rgba(46, 16, 101, 0.3);
}
.ring-violet-950\/35 {
  --tw-ring-color: rgba(46, 16, 101, 0.35);
}
.ring-violet-950\/40 {
  --tw-ring-color: rgba(46, 16, 101, 0.4);
}
.ring-violet-950\/45 {
  --tw-ring-color: rgba(46, 16, 101, 0.45);
}
.ring-violet-950\/5 {
  --tw-ring-color: rgba(46, 16, 101, 0.05);
}
.ring-violet-950\/50 {
  --tw-ring-color: rgba(46, 16, 101, 0.5);
}
.ring-violet-950\/55 {
  --tw-ring-color: rgba(46, 16, 101, 0.55);
}
.ring-violet-950\/60 {
  --tw-ring-color: rgba(46, 16, 101, 0.6);
}
.ring-violet-950\/65 {
  --tw-ring-color: rgba(46, 16, 101, 0.65);
}
.ring-violet-950\/70 {
  --tw-ring-color: rgba(46, 16, 101, 0.7);
}
.ring-violet-950\/75 {
  --tw-ring-color: rgba(46, 16, 101, 0.75);
}
.ring-violet-950\/80 {
  --tw-ring-color: rgba(46, 16, 101, 0.8);
}
.ring-violet-950\/85 {
  --tw-ring-color: rgba(46, 16, 101, 0.85);
}
.ring-violet-950\/90 {
  --tw-ring-color: rgba(46, 16, 101, 0.9);
}
.ring-violet-950\/95 {
  --tw-ring-color: rgba(46, 16, 101, 0.95);
}
.ring-warning {
  --tw-ring-opacity: 1;
  --tw-ring-color: var(--fallback-wa,oklch(var(--wa)/var(--tw-ring-opacity)));
}
.ring-warning-content {
  --tw-ring-opacity: 1;
  --tw-ring-color: var(--fallback-wac,oklch(var(--wac)/var(--tw-ring-opacity)));
}
.ring-warning-content\/0 {
  --tw-ring-color: var(--fallback-wac,oklch(var(--wac)/0));
}
.ring-warning-content\/10 {
  --tw-ring-color: var(--fallback-wac,oklch(var(--wac)/0.1));
}
.ring-warning-content\/100 {
  --tw-ring-color: var(--fallback-wac,oklch(var(--wac)/1));
}
.ring-warning-content\/15 {
  --tw-ring-color: var(--fallback-wac,oklch(var(--wac)/0.15));
}
.ring-warning-content\/20 {
  --tw-ring-color: var(--fallback-wac,oklch(var(--wac)/0.2));
}
.ring-warning-content\/25 {
  --tw-ring-color: var(--fallback-wac,oklch(var(--wac)/0.25));
}
.ring-warning-content\/30 {
  --tw-ring-color: var(--fallback-wac,oklch(var(--wac)/0.3));
}
.ring-warning-content\/35 {
  --tw-ring-color: var(--fallback-wac,oklch(var(--wac)/0.35));
}
.ring-warning-content\/40 {
  --tw-ring-color: var(--fallback-wac,oklch(var(--wac)/0.4));
}
.ring-warning-content\/45 {
  --tw-ring-color: var(--fallback-wac,oklch(var(--wac)/0.45));
}
.ring-warning-content\/5 {
  --tw-ring-color: var(--fallback-wac,oklch(var(--wac)/0.05));
}
.ring-warning-content\/50 {
  --tw-ring-color: var(--fallback-wac,oklch(var(--wac)/0.5));
}
.ring-warning-content\/55 {
  --tw-ring-color: var(--fallback-wac,oklch(var(--wac)/0.55));
}
.ring-warning-content\/60 {
  --tw-ring-color: var(--fallback-wac,oklch(var(--wac)/0.6));
}
.ring-warning-content\/65 {
  --tw-ring-color: var(--fallback-wac,oklch(var(--wac)/0.65));
}
.ring-warning-content\/70 {
  --tw-ring-color: var(--fallback-wac,oklch(var(--wac)/0.7));
}
.ring-warning-content\/75 {
  --tw-ring-color: var(--fallback-wac,oklch(var(--wac)/0.75));
}
.ring-warning-content\/80 {
  --tw-ring-color: var(--fallback-wac,oklch(var(--wac)/0.8));
}
.ring-warning-content\/85 {
  --tw-ring-color: var(--fallback-wac,oklch(var(--wac)/0.85));
}
.ring-warning-content\/90 {
  --tw-ring-color: var(--fallback-wac,oklch(var(--wac)/0.9));
}
.ring-warning-content\/95 {
  --tw-ring-color: var(--fallback-wac,oklch(var(--wac)/0.95));
}
.ring-warning\/0 {
  --tw-ring-color: var(--fallback-wa,oklch(var(--wa)/0));
}
.ring-warning\/10 {
  --tw-ring-color: var(--fallback-wa,oklch(var(--wa)/0.1));
}
.ring-warning\/100 {
  --tw-ring-color: var(--fallback-wa,oklch(var(--wa)/1));
}
.ring-warning\/15 {
  --tw-ring-color: var(--fallback-wa,oklch(var(--wa)/0.15));
}
.ring-warning\/20 {
  --tw-ring-color: var(--fallback-wa,oklch(var(--wa)/0.2));
}
.ring-warning\/25 {
  --tw-ring-color: var(--fallback-wa,oklch(var(--wa)/0.25));
}
.ring-warning\/30 {
  --tw-ring-color: var(--fallback-wa,oklch(var(--wa)/0.3));
}
.ring-warning\/35 {
  --tw-ring-color: var(--fallback-wa,oklch(var(--wa)/0.35));
}
.ring-warning\/40 {
  --tw-ring-color: var(--fallback-wa,oklch(var(--wa)/0.4));
}
.ring-warning\/45 {
  --tw-ring-color: var(--fallback-wa,oklch(var(--wa)/0.45));
}
.ring-warning\/5 {
  --tw-ring-color: var(--fallback-wa,oklch(var(--wa)/0.05));
}
.ring-warning\/50 {
  --tw-ring-color: var(--fallback-wa,oklch(var(--wa)/0.5));
}
.ring-warning\/55 {
  --tw-ring-color: var(--fallback-wa,oklch(var(--wa)/0.55));
}
.ring-warning\/60 {
  --tw-ring-color: var(--fallback-wa,oklch(var(--wa)/0.6));
}
.ring-warning\/65 {
  --tw-ring-color: var(--fallback-wa,oklch(var(--wa)/0.65));
}
.ring-warning\/70 {
  --tw-ring-color: var(--fallback-wa,oklch(var(--wa)/0.7));
}
.ring-warning\/75 {
  --tw-ring-color: var(--fallback-wa,oklch(var(--wa)/0.75));
}
.ring-warning\/80 {
  --tw-ring-color: var(--fallback-wa,oklch(var(--wa)/0.8));
}
.ring-warning\/85 {
  --tw-ring-color: var(--fallback-wa,oklch(var(--wa)/0.85));
}
.ring-warning\/90 {
  --tw-ring-color: var(--fallback-wa,oklch(var(--wa)/0.9));
}
.ring-warning\/95 {
  --tw-ring-color: var(--fallback-wa,oklch(var(--wa)/0.95));
}
.ring-white {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity));
}
.ring-white\/0 {
  --tw-ring-color: rgba(255, 255, 255, 0);
}
.ring-white\/10 {
  --tw-ring-color: rgba(255, 255, 255, 0.1);
}
.ring-white\/100 {
  --tw-ring-color: rgba(255, 255, 255, 1);
}
.ring-white\/15 {
  --tw-ring-color: rgba(255, 255, 255, 0.15);
}
.ring-white\/20 {
  --tw-ring-color: rgba(255, 255, 255, 0.2);
}
.ring-white\/25 {
  --tw-ring-color: rgba(255, 255, 255, 0.25);
}
.ring-white\/30 {
  --tw-ring-color: rgba(255, 255, 255, 0.3);
}
.ring-white\/35 {
  --tw-ring-color: rgba(255, 255, 255, 0.35);
}
.ring-white\/40 {
  --tw-ring-color: rgba(255, 255, 255, 0.4);
}
.ring-white\/45 {
  --tw-ring-color: rgba(255, 255, 255, 0.45);
}
.ring-white\/5 {
  --tw-ring-color: rgba(255, 255, 255, 0.05);
}
.ring-white\/50 {
  --tw-ring-color: rgba(255, 255, 255, 0.5);
}
.ring-white\/55 {
  --tw-ring-color: rgba(255, 255, 255, 0.55);
}
.ring-white\/60 {
  --tw-ring-color: rgba(255, 255, 255, 0.6);
}
.ring-white\/65 {
  --tw-ring-color: rgba(255, 255, 255, 0.65);
}
.ring-white\/70 {
  --tw-ring-color: rgba(255, 255, 255, 0.7);
}
.ring-white\/75 {
  --tw-ring-color: rgba(255, 255, 255, 0.75);
}
.ring-white\/80 {
  --tw-ring-color: rgba(255, 255, 255, 0.8);
}
.ring-white\/85 {
  --tw-ring-color: rgba(255, 255, 255, 0.85);
}
.ring-white\/90 {
  --tw-ring-color: rgba(255, 255, 255, 0.9);
}
.ring-white\/95 {
  --tw-ring-color: rgba(255, 255, 255, 0.95);
}
.ring-yellow-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(254, 249, 195, var(--tw-ring-opacity));
}
.ring-yellow-100\/0 {
  --tw-ring-color: rgba(254, 249, 195, 0);
}
.ring-yellow-100\/10 {
  --tw-ring-color: rgba(254, 249, 195, 0.1);
}
.ring-yellow-100\/100 {
  --tw-ring-color: rgba(254, 249, 195, 1);
}
.ring-yellow-100\/15 {
  --tw-ring-color: rgba(254, 249, 195, 0.15);
}
.ring-yellow-100\/20 {
  --tw-ring-color: rgba(254, 249, 195, 0.2);
}
.ring-yellow-100\/25 {
  --tw-ring-color: rgba(254, 249, 195, 0.25);
}
.ring-yellow-100\/30 {
  --tw-ring-color: rgba(254, 249, 195, 0.3);
}
.ring-yellow-100\/35 {
  --tw-ring-color: rgba(254, 249, 195, 0.35);
}
.ring-yellow-100\/40 {
  --tw-ring-color: rgba(254, 249, 195, 0.4);
}
.ring-yellow-100\/45 {
  --tw-ring-color: rgba(254, 249, 195, 0.45);
}
.ring-yellow-100\/5 {
  --tw-ring-color: rgba(254, 249, 195, 0.05);
}
.ring-yellow-100\/50 {
  --tw-ring-color: rgba(254, 249, 195, 0.5);
}
.ring-yellow-100\/55 {
  --tw-ring-color: rgba(254, 249, 195, 0.55);
}
.ring-yellow-100\/60 {
  --tw-ring-color: rgba(254, 249, 195, 0.6);
}
.ring-yellow-100\/65 {
  --tw-ring-color: rgba(254, 249, 195, 0.65);
}
.ring-yellow-100\/70 {
  --tw-ring-color: rgba(254, 249, 195, 0.7);
}
.ring-yellow-100\/75 {
  --tw-ring-color: rgba(254, 249, 195, 0.75);
}
.ring-yellow-100\/80 {
  --tw-ring-color: rgba(254, 249, 195, 0.8);
}
.ring-yellow-100\/85 {
  --tw-ring-color: rgba(254, 249, 195, 0.85);
}
.ring-yellow-100\/90 {
  --tw-ring-color: rgba(254, 249, 195, 0.9);
}
.ring-yellow-100\/95 {
  --tw-ring-color: rgba(254, 249, 195, 0.95);
}
.ring-yellow-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(254, 240, 138, var(--tw-ring-opacity));
}
.ring-yellow-200\/0 {
  --tw-ring-color: rgba(254, 240, 138, 0);
}
.ring-yellow-200\/10 {
  --tw-ring-color: rgba(254, 240, 138, 0.1);
}
.ring-yellow-200\/100 {
  --tw-ring-color: rgba(254, 240, 138, 1);
}
.ring-yellow-200\/15 {
  --tw-ring-color: rgba(254, 240, 138, 0.15);
}
.ring-yellow-200\/20 {
  --tw-ring-color: rgba(254, 240, 138, 0.2);
}
.ring-yellow-200\/25 {
  --tw-ring-color: rgba(254, 240, 138, 0.25);
}
.ring-yellow-200\/30 {
  --tw-ring-color: rgba(254, 240, 138, 0.3);
}
.ring-yellow-200\/35 {
  --tw-ring-color: rgba(254, 240, 138, 0.35);
}
.ring-yellow-200\/40 {
  --tw-ring-color: rgba(254, 240, 138, 0.4);
}
.ring-yellow-200\/45 {
  --tw-ring-color: rgba(254, 240, 138, 0.45);
}
.ring-yellow-200\/5 {
  --tw-ring-color: rgba(254, 240, 138, 0.05);
}
.ring-yellow-200\/50 {
  --tw-ring-color: rgba(254, 240, 138, 0.5);
}
.ring-yellow-200\/55 {
  --tw-ring-color: rgba(254, 240, 138, 0.55);
}
.ring-yellow-200\/60 {
  --tw-ring-color: rgba(254, 240, 138, 0.6);
}
.ring-yellow-200\/65 {
  --tw-ring-color: rgba(254, 240, 138, 0.65);
}
.ring-yellow-200\/70 {
  --tw-ring-color: rgba(254, 240, 138, 0.7);
}
.ring-yellow-200\/75 {
  --tw-ring-color: rgba(254, 240, 138, 0.75);
}
.ring-yellow-200\/80 {
  --tw-ring-color: rgba(254, 240, 138, 0.8);
}
.ring-yellow-200\/85 {
  --tw-ring-color: rgba(254, 240, 138, 0.85);
}
.ring-yellow-200\/90 {
  --tw-ring-color: rgba(254, 240, 138, 0.9);
}
.ring-yellow-200\/95 {
  --tw-ring-color: rgba(254, 240, 138, 0.95);
}
.ring-yellow-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(253, 224, 71, var(--tw-ring-opacity));
}
.ring-yellow-300\/0 {
  --tw-ring-color: rgba(253, 224, 71, 0);
}
.ring-yellow-300\/10 {
  --tw-ring-color: rgba(253, 224, 71, 0.1);
}
.ring-yellow-300\/100 {
  --tw-ring-color: rgba(253, 224, 71, 1);
}
.ring-yellow-300\/15 {
  --tw-ring-color: rgba(253, 224, 71, 0.15);
}
.ring-yellow-300\/20 {
  --tw-ring-color: rgba(253, 224, 71, 0.2);
}
.ring-yellow-300\/25 {
  --tw-ring-color: rgba(253, 224, 71, 0.25);
}
.ring-yellow-300\/30 {
  --tw-ring-color: rgba(253, 224, 71, 0.3);
}
.ring-yellow-300\/35 {
  --tw-ring-color: rgba(253, 224, 71, 0.35);
}
.ring-yellow-300\/40 {
  --tw-ring-color: rgba(253, 224, 71, 0.4);
}
.ring-yellow-300\/45 {
  --tw-ring-color: rgba(253, 224, 71, 0.45);
}
.ring-yellow-300\/5 {
  --tw-ring-color: rgba(253, 224, 71, 0.05);
}
.ring-yellow-300\/50 {
  --tw-ring-color: rgba(253, 224, 71, 0.5);
}
.ring-yellow-300\/55 {
  --tw-ring-color: rgba(253, 224, 71, 0.55);
}
.ring-yellow-300\/60 {
  --tw-ring-color: rgba(253, 224, 71, 0.6);
}
.ring-yellow-300\/65 {
  --tw-ring-color: rgba(253, 224, 71, 0.65);
}
.ring-yellow-300\/70 {
  --tw-ring-color: rgba(253, 224, 71, 0.7);
}
.ring-yellow-300\/75 {
  --tw-ring-color: rgba(253, 224, 71, 0.75);
}
.ring-yellow-300\/80 {
  --tw-ring-color: rgba(253, 224, 71, 0.8);
}
.ring-yellow-300\/85 {
  --tw-ring-color: rgba(253, 224, 71, 0.85);
}
.ring-yellow-300\/90 {
  --tw-ring-color: rgba(253, 224, 71, 0.9);
}
.ring-yellow-300\/95 {
  --tw-ring-color: rgba(253, 224, 71, 0.95);
}
.ring-yellow-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(250, 204, 21, var(--tw-ring-opacity));
}
.ring-yellow-400\/0 {
  --tw-ring-color: rgba(250, 204, 21, 0);
}
.ring-yellow-400\/10 {
  --tw-ring-color: rgba(250, 204, 21, 0.1);
}
.ring-yellow-400\/100 {
  --tw-ring-color: rgba(250, 204, 21, 1);
}
.ring-yellow-400\/15 {
  --tw-ring-color: rgba(250, 204, 21, 0.15);
}
.ring-yellow-400\/20 {
  --tw-ring-color: rgba(250, 204, 21, 0.2);
}
.ring-yellow-400\/25 {
  --tw-ring-color: rgba(250, 204, 21, 0.25);
}
.ring-yellow-400\/30 {
  --tw-ring-color: rgba(250, 204, 21, 0.3);
}
.ring-yellow-400\/35 {
  --tw-ring-color: rgba(250, 204, 21, 0.35);
}
.ring-yellow-400\/40 {
  --tw-ring-color: rgba(250, 204, 21, 0.4);
}
.ring-yellow-400\/45 {
  --tw-ring-color: rgba(250, 204, 21, 0.45);
}
.ring-yellow-400\/5 {
  --tw-ring-color: rgba(250, 204, 21, 0.05);
}
.ring-yellow-400\/50 {
  --tw-ring-color: rgba(250, 204, 21, 0.5);
}
.ring-yellow-400\/55 {
  --tw-ring-color: rgba(250, 204, 21, 0.55);
}
.ring-yellow-400\/60 {
  --tw-ring-color: rgba(250, 204, 21, 0.6);
}
.ring-yellow-400\/65 {
  --tw-ring-color: rgba(250, 204, 21, 0.65);
}
.ring-yellow-400\/70 {
  --tw-ring-color: rgba(250, 204, 21, 0.7);
}
.ring-yellow-400\/75 {
  --tw-ring-color: rgba(250, 204, 21, 0.75);
}
.ring-yellow-400\/80 {
  --tw-ring-color: rgba(250, 204, 21, 0.8);
}
.ring-yellow-400\/85 {
  --tw-ring-color: rgba(250, 204, 21, 0.85);
}
.ring-yellow-400\/90 {
  --tw-ring-color: rgba(250, 204, 21, 0.9);
}
.ring-yellow-400\/95 {
  --tw-ring-color: rgba(250, 204, 21, 0.95);
}
.ring-yellow-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(254, 252, 232, var(--tw-ring-opacity));
}
.ring-yellow-50\/0 {
  --tw-ring-color: rgba(254, 252, 232, 0);
}
.ring-yellow-50\/10 {
  --tw-ring-color: rgba(254, 252, 232, 0.1);
}
.ring-yellow-50\/100 {
  --tw-ring-color: rgba(254, 252, 232, 1);
}
.ring-yellow-50\/15 {
  --tw-ring-color: rgba(254, 252, 232, 0.15);
}
.ring-yellow-50\/20 {
  --tw-ring-color: rgba(254, 252, 232, 0.2);
}
.ring-yellow-50\/25 {
  --tw-ring-color: rgba(254, 252, 232, 0.25);
}
.ring-yellow-50\/30 {
  --tw-ring-color: rgba(254, 252, 232, 0.3);
}
.ring-yellow-50\/35 {
  --tw-ring-color: rgba(254, 252, 232, 0.35);
}
.ring-yellow-50\/40 {
  --tw-ring-color: rgba(254, 252, 232, 0.4);
}
.ring-yellow-50\/45 {
  --tw-ring-color: rgba(254, 252, 232, 0.45);
}
.ring-yellow-50\/5 {
  --tw-ring-color: rgba(254, 252, 232, 0.05);
}
.ring-yellow-50\/50 {
  --tw-ring-color: rgba(254, 252, 232, 0.5);
}
.ring-yellow-50\/55 {
  --tw-ring-color: rgba(254, 252, 232, 0.55);
}
.ring-yellow-50\/60 {
  --tw-ring-color: rgba(254, 252, 232, 0.6);
}
.ring-yellow-50\/65 {
  --tw-ring-color: rgba(254, 252, 232, 0.65);
}
.ring-yellow-50\/70 {
  --tw-ring-color: rgba(254, 252, 232, 0.7);
}
.ring-yellow-50\/75 {
  --tw-ring-color: rgba(254, 252, 232, 0.75);
}
.ring-yellow-50\/80 {
  --tw-ring-color: rgba(254, 252, 232, 0.8);
}
.ring-yellow-50\/85 {
  --tw-ring-color: rgba(254, 252, 232, 0.85);
}
.ring-yellow-50\/90 {
  --tw-ring-color: rgba(254, 252, 232, 0.9);
}
.ring-yellow-50\/95 {
  --tw-ring-color: rgba(254, 252, 232, 0.95);
}
.ring-yellow-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(234, 179, 8, var(--tw-ring-opacity));
}
.ring-yellow-500\/0 {
  --tw-ring-color: rgba(234, 179, 8, 0);
}
.ring-yellow-500\/10 {
  --tw-ring-color: rgba(234, 179, 8, 0.1);
}
.ring-yellow-500\/100 {
  --tw-ring-color: rgba(234, 179, 8, 1);
}
.ring-yellow-500\/15 {
  --tw-ring-color: rgba(234, 179, 8, 0.15);
}
.ring-yellow-500\/20 {
  --tw-ring-color: rgba(234, 179, 8, 0.2);
}
.ring-yellow-500\/25 {
  --tw-ring-color: rgba(234, 179, 8, 0.25);
}
.ring-yellow-500\/30 {
  --tw-ring-color: rgba(234, 179, 8, 0.3);
}
.ring-yellow-500\/35 {
  --tw-ring-color: rgba(234, 179, 8, 0.35);
}
.ring-yellow-500\/40 {
  --tw-ring-color: rgba(234, 179, 8, 0.4);
}
.ring-yellow-500\/45 {
  --tw-ring-color: rgba(234, 179, 8, 0.45);
}
.ring-yellow-500\/5 {
  --tw-ring-color: rgba(234, 179, 8, 0.05);
}
.ring-yellow-500\/50 {
  --tw-ring-color: rgba(234, 179, 8, 0.5);
}
.ring-yellow-500\/55 {
  --tw-ring-color: rgba(234, 179, 8, 0.55);
}
.ring-yellow-500\/60 {
  --tw-ring-color: rgba(234, 179, 8, 0.6);
}
.ring-yellow-500\/65 {
  --tw-ring-color: rgba(234, 179, 8, 0.65);
}
.ring-yellow-500\/70 {
  --tw-ring-color: rgba(234, 179, 8, 0.7);
}
.ring-yellow-500\/75 {
  --tw-ring-color: rgba(234, 179, 8, 0.75);
}
.ring-yellow-500\/80 {
  --tw-ring-color: rgba(234, 179, 8, 0.8);
}
.ring-yellow-500\/85 {
  --tw-ring-color: rgba(234, 179, 8, 0.85);
}
.ring-yellow-500\/90 {
  --tw-ring-color: rgba(234, 179, 8, 0.9);
}
.ring-yellow-500\/95 {
  --tw-ring-color: rgba(234, 179, 8, 0.95);
}
.ring-yellow-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(202, 138, 4, var(--tw-ring-opacity));
}
.ring-yellow-600\/0 {
  --tw-ring-color: rgba(202, 138, 4, 0);
}
.ring-yellow-600\/10 {
  --tw-ring-color: rgba(202, 138, 4, 0.1);
}
.ring-yellow-600\/100 {
  --tw-ring-color: rgba(202, 138, 4, 1);
}
.ring-yellow-600\/15 {
  --tw-ring-color: rgba(202, 138, 4, 0.15);
}
.ring-yellow-600\/20 {
  --tw-ring-color: rgba(202, 138, 4, 0.2);
}
.ring-yellow-600\/25 {
  --tw-ring-color: rgba(202, 138, 4, 0.25);
}
.ring-yellow-600\/30 {
  --tw-ring-color: rgba(202, 138, 4, 0.3);
}
.ring-yellow-600\/35 {
  --tw-ring-color: rgba(202, 138, 4, 0.35);
}
.ring-yellow-600\/40 {
  --tw-ring-color: rgba(202, 138, 4, 0.4);
}
.ring-yellow-600\/45 {
  --tw-ring-color: rgba(202, 138, 4, 0.45);
}
.ring-yellow-600\/5 {
  --tw-ring-color: rgba(202, 138, 4, 0.05);
}
.ring-yellow-600\/50 {
  --tw-ring-color: rgba(202, 138, 4, 0.5);
}
.ring-yellow-600\/55 {
  --tw-ring-color: rgba(202, 138, 4, 0.55);
}
.ring-yellow-600\/60 {
  --tw-ring-color: rgba(202, 138, 4, 0.6);
}
.ring-yellow-600\/65 {
  --tw-ring-color: rgba(202, 138, 4, 0.65);
}
.ring-yellow-600\/70 {
  --tw-ring-color: rgba(202, 138, 4, 0.7);
}
.ring-yellow-600\/75 {
  --tw-ring-color: rgba(202, 138, 4, 0.75);
}
.ring-yellow-600\/80 {
  --tw-ring-color: rgba(202, 138, 4, 0.8);
}
.ring-yellow-600\/85 {
  --tw-ring-color: rgba(202, 138, 4, 0.85);
}
.ring-yellow-600\/90 {
  --tw-ring-color: rgba(202, 138, 4, 0.9);
}
.ring-yellow-600\/95 {
  --tw-ring-color: rgba(202, 138, 4, 0.95);
}
.ring-yellow-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(161, 98, 7, var(--tw-ring-opacity));
}
.ring-yellow-700\/0 {
  --tw-ring-color: rgba(161, 98, 7, 0);
}
.ring-yellow-700\/10 {
  --tw-ring-color: rgba(161, 98, 7, 0.1);
}
.ring-yellow-700\/100 {
  --tw-ring-color: rgba(161, 98, 7, 1);
}
.ring-yellow-700\/15 {
  --tw-ring-color: rgba(161, 98, 7, 0.15);
}
.ring-yellow-700\/20 {
  --tw-ring-color: rgba(161, 98, 7, 0.2);
}
.ring-yellow-700\/25 {
  --tw-ring-color: rgba(161, 98, 7, 0.25);
}
.ring-yellow-700\/30 {
  --tw-ring-color: rgba(161, 98, 7, 0.3);
}
.ring-yellow-700\/35 {
  --tw-ring-color: rgba(161, 98, 7, 0.35);
}
.ring-yellow-700\/40 {
  --tw-ring-color: rgba(161, 98, 7, 0.4);
}
.ring-yellow-700\/45 {
  --tw-ring-color: rgba(161, 98, 7, 0.45);
}
.ring-yellow-700\/5 {
  --tw-ring-color: rgba(161, 98, 7, 0.05);
}
.ring-yellow-700\/50 {
  --tw-ring-color: rgba(161, 98, 7, 0.5);
}
.ring-yellow-700\/55 {
  --tw-ring-color: rgba(161, 98, 7, 0.55);
}
.ring-yellow-700\/60 {
  --tw-ring-color: rgba(161, 98, 7, 0.6);
}
.ring-yellow-700\/65 {
  --tw-ring-color: rgba(161, 98, 7, 0.65);
}
.ring-yellow-700\/70 {
  --tw-ring-color: rgba(161, 98, 7, 0.7);
}
.ring-yellow-700\/75 {
  --tw-ring-color: rgba(161, 98, 7, 0.75);
}
.ring-yellow-700\/80 {
  --tw-ring-color: rgba(161, 98, 7, 0.8);
}
.ring-yellow-700\/85 {
  --tw-ring-color: rgba(161, 98, 7, 0.85);
}
.ring-yellow-700\/90 {
  --tw-ring-color: rgba(161, 98, 7, 0.9);
}
.ring-yellow-700\/95 {
  --tw-ring-color: rgba(161, 98, 7, 0.95);
}
.ring-yellow-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(133, 77, 14, var(--tw-ring-opacity));
}
.ring-yellow-800\/0 {
  --tw-ring-color: rgba(133, 77, 14, 0);
}
.ring-yellow-800\/10 {
  --tw-ring-color: rgba(133, 77, 14, 0.1);
}
.ring-yellow-800\/100 {
  --tw-ring-color: rgba(133, 77, 14, 1);
}
.ring-yellow-800\/15 {
  --tw-ring-color: rgba(133, 77, 14, 0.15);
}
.ring-yellow-800\/20 {
  --tw-ring-color: rgba(133, 77, 14, 0.2);
}
.ring-yellow-800\/25 {
  --tw-ring-color: rgba(133, 77, 14, 0.25);
}
.ring-yellow-800\/30 {
  --tw-ring-color: rgba(133, 77, 14, 0.3);
}
.ring-yellow-800\/35 {
  --tw-ring-color: rgba(133, 77, 14, 0.35);
}
.ring-yellow-800\/40 {
  --tw-ring-color: rgba(133, 77, 14, 0.4);
}
.ring-yellow-800\/45 {
  --tw-ring-color: rgba(133, 77, 14, 0.45);
}
.ring-yellow-800\/5 {
  --tw-ring-color: rgba(133, 77, 14, 0.05);
}
.ring-yellow-800\/50 {
  --tw-ring-color: rgba(133, 77, 14, 0.5);
}
.ring-yellow-800\/55 {
  --tw-ring-color: rgba(133, 77, 14, 0.55);
}
.ring-yellow-800\/60 {
  --tw-ring-color: rgba(133, 77, 14, 0.6);
}
.ring-yellow-800\/65 {
  --tw-ring-color: rgba(133, 77, 14, 0.65);
}
.ring-yellow-800\/70 {
  --tw-ring-color: rgba(133, 77, 14, 0.7);
}
.ring-yellow-800\/75 {
  --tw-ring-color: rgba(133, 77, 14, 0.75);
}
.ring-yellow-800\/80 {
  --tw-ring-color: rgba(133, 77, 14, 0.8);
}
.ring-yellow-800\/85 {
  --tw-ring-color: rgba(133, 77, 14, 0.85);
}
.ring-yellow-800\/90 {
  --tw-ring-color: rgba(133, 77, 14, 0.9);
}
.ring-yellow-800\/95 {
  --tw-ring-color: rgba(133, 77, 14, 0.95);
}
.ring-yellow-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(113, 63, 18, var(--tw-ring-opacity));
}
.ring-yellow-900\/0 {
  --tw-ring-color: rgba(113, 63, 18, 0);
}
.ring-yellow-900\/10 {
  --tw-ring-color: rgba(113, 63, 18, 0.1);
}
.ring-yellow-900\/100 {
  --tw-ring-color: rgba(113, 63, 18, 1);
}
.ring-yellow-900\/15 {
  --tw-ring-color: rgba(113, 63, 18, 0.15);
}
.ring-yellow-900\/20 {
  --tw-ring-color: rgba(113, 63, 18, 0.2);
}
.ring-yellow-900\/25 {
  --tw-ring-color: rgba(113, 63, 18, 0.25);
}
.ring-yellow-900\/30 {
  --tw-ring-color: rgba(113, 63, 18, 0.3);
}
.ring-yellow-900\/35 {
  --tw-ring-color: rgba(113, 63, 18, 0.35);
}
.ring-yellow-900\/40 {
  --tw-ring-color: rgba(113, 63, 18, 0.4);
}
.ring-yellow-900\/45 {
  --tw-ring-color: rgba(113, 63, 18, 0.45);
}
.ring-yellow-900\/5 {
  --tw-ring-color: rgba(113, 63, 18, 0.05);
}
.ring-yellow-900\/50 {
  --tw-ring-color: rgba(113, 63, 18, 0.5);
}
.ring-yellow-900\/55 {
  --tw-ring-color: rgba(113, 63, 18, 0.55);
}
.ring-yellow-900\/60 {
  --tw-ring-color: rgba(113, 63, 18, 0.6);
}
.ring-yellow-900\/65 {
  --tw-ring-color: rgba(113, 63, 18, 0.65);
}
.ring-yellow-900\/70 {
  --tw-ring-color: rgba(113, 63, 18, 0.7);
}
.ring-yellow-900\/75 {
  --tw-ring-color: rgba(113, 63, 18, 0.75);
}
.ring-yellow-900\/80 {
  --tw-ring-color: rgba(113, 63, 18, 0.8);
}
.ring-yellow-900\/85 {
  --tw-ring-color: rgba(113, 63, 18, 0.85);
}
.ring-yellow-900\/90 {
  --tw-ring-color: rgba(113, 63, 18, 0.9);
}
.ring-yellow-900\/95 {
  --tw-ring-color: rgba(113, 63, 18, 0.95);
}
.ring-yellow-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(66, 32, 6, var(--tw-ring-opacity));
}
.ring-yellow-950\/0 {
  --tw-ring-color: rgba(66, 32, 6, 0);
}
.ring-yellow-950\/10 {
  --tw-ring-color: rgba(66, 32, 6, 0.1);
}
.ring-yellow-950\/100 {
  --tw-ring-color: rgba(66, 32, 6, 1);
}
.ring-yellow-950\/15 {
  --tw-ring-color: rgba(66, 32, 6, 0.15);
}
.ring-yellow-950\/20 {
  --tw-ring-color: rgba(66, 32, 6, 0.2);
}
.ring-yellow-950\/25 {
  --tw-ring-color: rgba(66, 32, 6, 0.25);
}
.ring-yellow-950\/30 {
  --tw-ring-color: rgba(66, 32, 6, 0.3);
}
.ring-yellow-950\/35 {
  --tw-ring-color: rgba(66, 32, 6, 0.35);
}
.ring-yellow-950\/40 {
  --tw-ring-color: rgba(66, 32, 6, 0.4);
}
.ring-yellow-950\/45 {
  --tw-ring-color: rgba(66, 32, 6, 0.45);
}
.ring-yellow-950\/5 {
  --tw-ring-color: rgba(66, 32, 6, 0.05);
}
.ring-yellow-950\/50 {
  --tw-ring-color: rgba(66, 32, 6, 0.5);
}
.ring-yellow-950\/55 {
  --tw-ring-color: rgba(66, 32, 6, 0.55);
}
.ring-yellow-950\/60 {
  --tw-ring-color: rgba(66, 32, 6, 0.6);
}
.ring-yellow-950\/65 {
  --tw-ring-color: rgba(66, 32, 6, 0.65);
}
.ring-yellow-950\/70 {
  --tw-ring-color: rgba(66, 32, 6, 0.7);
}
.ring-yellow-950\/75 {
  --tw-ring-color: rgba(66, 32, 6, 0.75);
}
.ring-yellow-950\/80 {
  --tw-ring-color: rgba(66, 32, 6, 0.8);
}
.ring-yellow-950\/85 {
  --tw-ring-color: rgba(66, 32, 6, 0.85);
}
.ring-yellow-950\/90 {
  --tw-ring-color: rgba(66, 32, 6, 0.9);
}
.ring-yellow-950\/95 {
  --tw-ring-color: rgba(66, 32, 6, 0.95);
}
.ring-zinc-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(244, 244, 245, var(--tw-ring-opacity));
}
.ring-zinc-100\/0 {
  --tw-ring-color: rgba(244, 244, 245, 0);
}
.ring-zinc-100\/10 {
  --tw-ring-color: rgba(244, 244, 245, 0.1);
}
.ring-zinc-100\/100 {
  --tw-ring-color: rgba(244, 244, 245, 1);
}
.ring-zinc-100\/15 {
  --tw-ring-color: rgba(244, 244, 245, 0.15);
}
.ring-zinc-100\/20 {
  --tw-ring-color: rgba(244, 244, 245, 0.2);
}
.ring-zinc-100\/25 {
  --tw-ring-color: rgba(244, 244, 245, 0.25);
}
.ring-zinc-100\/30 {
  --tw-ring-color: rgba(244, 244, 245, 0.3);
}
.ring-zinc-100\/35 {
  --tw-ring-color: rgba(244, 244, 245, 0.35);
}
.ring-zinc-100\/40 {
  --tw-ring-color: rgba(244, 244, 245, 0.4);
}
.ring-zinc-100\/45 {
  --tw-ring-color: rgba(244, 244, 245, 0.45);
}
.ring-zinc-100\/5 {
  --tw-ring-color: rgba(244, 244, 245, 0.05);
}
.ring-zinc-100\/50 {
  --tw-ring-color: rgba(244, 244, 245, 0.5);
}
.ring-zinc-100\/55 {
  --tw-ring-color: rgba(244, 244, 245, 0.55);
}
.ring-zinc-100\/60 {
  --tw-ring-color: rgba(244, 244, 245, 0.6);
}
.ring-zinc-100\/65 {
  --tw-ring-color: rgba(244, 244, 245, 0.65);
}
.ring-zinc-100\/70 {
  --tw-ring-color: rgba(244, 244, 245, 0.7);
}
.ring-zinc-100\/75 {
  --tw-ring-color: rgba(244, 244, 245, 0.75);
}
.ring-zinc-100\/80 {
  --tw-ring-color: rgba(244, 244, 245, 0.8);
}
.ring-zinc-100\/85 {
  --tw-ring-color: rgba(244, 244, 245, 0.85);
}
.ring-zinc-100\/90 {
  --tw-ring-color: rgba(244, 244, 245, 0.9);
}
.ring-zinc-100\/95 {
  --tw-ring-color: rgba(244, 244, 245, 0.95);
}
.ring-zinc-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(228, 228, 231, var(--tw-ring-opacity));
}
.ring-zinc-200\/0 {
  --tw-ring-color: rgba(228, 228, 231, 0);
}
.ring-zinc-200\/10 {
  --tw-ring-color: rgba(228, 228, 231, 0.1);
}
.ring-zinc-200\/100 {
  --tw-ring-color: rgba(228, 228, 231, 1);
}
.ring-zinc-200\/15 {
  --tw-ring-color: rgba(228, 228, 231, 0.15);
}
.ring-zinc-200\/20 {
  --tw-ring-color: rgba(228, 228, 231, 0.2);
}
.ring-zinc-200\/25 {
  --tw-ring-color: rgba(228, 228, 231, 0.25);
}
.ring-zinc-200\/30 {
  --tw-ring-color: rgba(228, 228, 231, 0.3);
}
.ring-zinc-200\/35 {
  --tw-ring-color: rgba(228, 228, 231, 0.35);
}
.ring-zinc-200\/40 {
  --tw-ring-color: rgba(228, 228, 231, 0.4);
}
.ring-zinc-200\/45 {
  --tw-ring-color: rgba(228, 228, 231, 0.45);
}
.ring-zinc-200\/5 {
  --tw-ring-color: rgba(228, 228, 231, 0.05);
}
.ring-zinc-200\/50 {
  --tw-ring-color: rgba(228, 228, 231, 0.5);
}
.ring-zinc-200\/55 {
  --tw-ring-color: rgba(228, 228, 231, 0.55);
}
.ring-zinc-200\/60 {
  --tw-ring-color: rgba(228, 228, 231, 0.6);
}
.ring-zinc-200\/65 {
  --tw-ring-color: rgba(228, 228, 231, 0.65);
}
.ring-zinc-200\/70 {
  --tw-ring-color: rgba(228, 228, 231, 0.7);
}
.ring-zinc-200\/75 {
  --tw-ring-color: rgba(228, 228, 231, 0.75);
}
.ring-zinc-200\/80 {
  --tw-ring-color: rgba(228, 228, 231, 0.8);
}
.ring-zinc-200\/85 {
  --tw-ring-color: rgba(228, 228, 231, 0.85);
}
.ring-zinc-200\/90 {
  --tw-ring-color: rgba(228, 228, 231, 0.9);
}
.ring-zinc-200\/95 {
  --tw-ring-color: rgba(228, 228, 231, 0.95);
}
.ring-zinc-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(212, 212, 216, var(--tw-ring-opacity));
}
.ring-zinc-300\/0 {
  --tw-ring-color: rgba(212, 212, 216, 0);
}
.ring-zinc-300\/10 {
  --tw-ring-color: rgba(212, 212, 216, 0.1);
}
.ring-zinc-300\/100 {
  --tw-ring-color: rgba(212, 212, 216, 1);
}
.ring-zinc-300\/15 {
  --tw-ring-color: rgba(212, 212, 216, 0.15);
}
.ring-zinc-300\/20 {
  --tw-ring-color: rgba(212, 212, 216, 0.2);
}
.ring-zinc-300\/25 {
  --tw-ring-color: rgba(212, 212, 216, 0.25);
}
.ring-zinc-300\/30 {
  --tw-ring-color: rgba(212, 212, 216, 0.3);
}
.ring-zinc-300\/35 {
  --tw-ring-color: rgba(212, 212, 216, 0.35);
}
.ring-zinc-300\/40 {
  --tw-ring-color: rgba(212, 212, 216, 0.4);
}
.ring-zinc-300\/45 {
  --tw-ring-color: rgba(212, 212, 216, 0.45);
}
.ring-zinc-300\/5 {
  --tw-ring-color: rgba(212, 212, 216, 0.05);
}
.ring-zinc-300\/50 {
  --tw-ring-color: rgba(212, 212, 216, 0.5);
}
.ring-zinc-300\/55 {
  --tw-ring-color: rgba(212, 212, 216, 0.55);
}
.ring-zinc-300\/60 {
  --tw-ring-color: rgba(212, 212, 216, 0.6);
}
.ring-zinc-300\/65 {
  --tw-ring-color: rgba(212, 212, 216, 0.65);
}
.ring-zinc-300\/70 {
  --tw-ring-color: rgba(212, 212, 216, 0.7);
}
.ring-zinc-300\/75 {
  --tw-ring-color: rgba(212, 212, 216, 0.75);
}
.ring-zinc-300\/80 {
  --tw-ring-color: rgba(212, 212, 216, 0.8);
}
.ring-zinc-300\/85 {
  --tw-ring-color: rgba(212, 212, 216, 0.85);
}
.ring-zinc-300\/90 {
  --tw-ring-color: rgba(212, 212, 216, 0.9);
}
.ring-zinc-300\/95 {
  --tw-ring-color: rgba(212, 212, 216, 0.95);
}
.ring-zinc-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(161, 161, 170, var(--tw-ring-opacity));
}
.ring-zinc-400\/0 {
  --tw-ring-color: rgba(161, 161, 170, 0);
}
.ring-zinc-400\/10 {
  --tw-ring-color: rgba(161, 161, 170, 0.1);
}
.ring-zinc-400\/100 {
  --tw-ring-color: rgba(161, 161, 170, 1);
}
.ring-zinc-400\/15 {
  --tw-ring-color: rgba(161, 161, 170, 0.15);
}
.ring-zinc-400\/20 {
  --tw-ring-color: rgba(161, 161, 170, 0.2);
}
.ring-zinc-400\/25 {
  --tw-ring-color: rgba(161, 161, 170, 0.25);
}
.ring-zinc-400\/30 {
  --tw-ring-color: rgba(161, 161, 170, 0.3);
}
.ring-zinc-400\/35 {
  --tw-ring-color: rgba(161, 161, 170, 0.35);
}
.ring-zinc-400\/40 {
  --tw-ring-color: rgba(161, 161, 170, 0.4);
}
.ring-zinc-400\/45 {
  --tw-ring-color: rgba(161, 161, 170, 0.45);
}
.ring-zinc-400\/5 {
  --tw-ring-color: rgba(161, 161, 170, 0.05);
}
.ring-zinc-400\/50 {
  --tw-ring-color: rgba(161, 161, 170, 0.5);
}
.ring-zinc-400\/55 {
  --tw-ring-color: rgba(161, 161, 170, 0.55);
}
.ring-zinc-400\/60 {
  --tw-ring-color: rgba(161, 161, 170, 0.6);
}
.ring-zinc-400\/65 {
  --tw-ring-color: rgba(161, 161, 170, 0.65);
}
.ring-zinc-400\/70 {
  --tw-ring-color: rgba(161, 161, 170, 0.7);
}
.ring-zinc-400\/75 {
  --tw-ring-color: rgba(161, 161, 170, 0.75);
}
.ring-zinc-400\/80 {
  --tw-ring-color: rgba(161, 161, 170, 0.8);
}
.ring-zinc-400\/85 {
  --tw-ring-color: rgba(161, 161, 170, 0.85);
}
.ring-zinc-400\/90 {
  --tw-ring-color: rgba(161, 161, 170, 0.9);
}
.ring-zinc-400\/95 {
  --tw-ring-color: rgba(161, 161, 170, 0.95);
}
.ring-zinc-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(250, 250, 250, var(--tw-ring-opacity));
}
.ring-zinc-50\/0 {
  --tw-ring-color: rgba(250, 250, 250, 0);
}
.ring-zinc-50\/10 {
  --tw-ring-color: rgba(250, 250, 250, 0.1);
}
.ring-zinc-50\/100 {
  --tw-ring-color: rgba(250, 250, 250, 1);
}
.ring-zinc-50\/15 {
  --tw-ring-color: rgba(250, 250, 250, 0.15);
}
.ring-zinc-50\/20 {
  --tw-ring-color: rgba(250, 250, 250, 0.2);
}
.ring-zinc-50\/25 {
  --tw-ring-color: rgba(250, 250, 250, 0.25);
}
.ring-zinc-50\/30 {
  --tw-ring-color: rgba(250, 250, 250, 0.3);
}
.ring-zinc-50\/35 {
  --tw-ring-color: rgba(250, 250, 250, 0.35);
}
.ring-zinc-50\/40 {
  --tw-ring-color: rgba(250, 250, 250, 0.4);
}
.ring-zinc-50\/45 {
  --tw-ring-color: rgba(250, 250, 250, 0.45);
}
.ring-zinc-50\/5 {
  --tw-ring-color: rgba(250, 250, 250, 0.05);
}
.ring-zinc-50\/50 {
  --tw-ring-color: rgba(250, 250, 250, 0.5);
}
.ring-zinc-50\/55 {
  --tw-ring-color: rgba(250, 250, 250, 0.55);
}
.ring-zinc-50\/60 {
  --tw-ring-color: rgba(250, 250, 250, 0.6);
}
.ring-zinc-50\/65 {
  --tw-ring-color: rgba(250, 250, 250, 0.65);
}
.ring-zinc-50\/70 {
  --tw-ring-color: rgba(250, 250, 250, 0.7);
}
.ring-zinc-50\/75 {
  --tw-ring-color: rgba(250, 250, 250, 0.75);
}
.ring-zinc-50\/80 {
  --tw-ring-color: rgba(250, 250, 250, 0.8);
}
.ring-zinc-50\/85 {
  --tw-ring-color: rgba(250, 250, 250, 0.85);
}
.ring-zinc-50\/90 {
  --tw-ring-color: rgba(250, 250, 250, 0.9);
}
.ring-zinc-50\/95 {
  --tw-ring-color: rgba(250, 250, 250, 0.95);
}
.ring-zinc-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(113, 113, 122, var(--tw-ring-opacity));
}
.ring-zinc-500\/0 {
  --tw-ring-color: rgba(113, 113, 122, 0);
}
.ring-zinc-500\/10 {
  --tw-ring-color: rgba(113, 113, 122, 0.1);
}
.ring-zinc-500\/100 {
  --tw-ring-color: rgba(113, 113, 122, 1);
}
.ring-zinc-500\/15 {
  --tw-ring-color: rgba(113, 113, 122, 0.15);
}
.ring-zinc-500\/20 {
  --tw-ring-color: rgba(113, 113, 122, 0.2);
}
.ring-zinc-500\/25 {
  --tw-ring-color: rgba(113, 113, 122, 0.25);
}
.ring-zinc-500\/30 {
  --tw-ring-color: rgba(113, 113, 122, 0.3);
}
.ring-zinc-500\/35 {
  --tw-ring-color: rgba(113, 113, 122, 0.35);
}
.ring-zinc-500\/40 {
  --tw-ring-color: rgba(113, 113, 122, 0.4);
}
.ring-zinc-500\/45 {
  --tw-ring-color: rgba(113, 113, 122, 0.45);
}
.ring-zinc-500\/5 {
  --tw-ring-color: rgba(113, 113, 122, 0.05);
}
.ring-zinc-500\/50 {
  --tw-ring-color: rgba(113, 113, 122, 0.5);
}
.ring-zinc-500\/55 {
  --tw-ring-color: rgba(113, 113, 122, 0.55);
}
.ring-zinc-500\/60 {
  --tw-ring-color: rgba(113, 113, 122, 0.6);
}
.ring-zinc-500\/65 {
  --tw-ring-color: rgba(113, 113, 122, 0.65);
}
.ring-zinc-500\/70 {
  --tw-ring-color: rgba(113, 113, 122, 0.7);
}
.ring-zinc-500\/75 {
  --tw-ring-color: rgba(113, 113, 122, 0.75);
}
.ring-zinc-500\/80 {
  --tw-ring-color: rgba(113, 113, 122, 0.8);
}
.ring-zinc-500\/85 {
  --tw-ring-color: rgba(113, 113, 122, 0.85);
}
.ring-zinc-500\/90 {
  --tw-ring-color: rgba(113, 113, 122, 0.9);
}
.ring-zinc-500\/95 {
  --tw-ring-color: rgba(113, 113, 122, 0.95);
}
.ring-zinc-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(82, 82, 91, var(--tw-ring-opacity));
}
.ring-zinc-600\/0 {
  --tw-ring-color: rgba(82, 82, 91, 0);
}
.ring-zinc-600\/10 {
  --tw-ring-color: rgba(82, 82, 91, 0.1);
}
.ring-zinc-600\/100 {
  --tw-ring-color: rgba(82, 82, 91, 1);
}
.ring-zinc-600\/15 {
  --tw-ring-color: rgba(82, 82, 91, 0.15);
}
.ring-zinc-600\/20 {
  --tw-ring-color: rgba(82, 82, 91, 0.2);
}
.ring-zinc-600\/25 {
  --tw-ring-color: rgba(82, 82, 91, 0.25);
}
.ring-zinc-600\/30 {
  --tw-ring-color: rgba(82, 82, 91, 0.3);
}
.ring-zinc-600\/35 {
  --tw-ring-color: rgba(82, 82, 91, 0.35);
}
.ring-zinc-600\/40 {
  --tw-ring-color: rgba(82, 82, 91, 0.4);
}
.ring-zinc-600\/45 {
  --tw-ring-color: rgba(82, 82, 91, 0.45);
}
.ring-zinc-600\/5 {
  --tw-ring-color: rgba(82, 82, 91, 0.05);
}
.ring-zinc-600\/50 {
  --tw-ring-color: rgba(82, 82, 91, 0.5);
}
.ring-zinc-600\/55 {
  --tw-ring-color: rgba(82, 82, 91, 0.55);
}
.ring-zinc-600\/60 {
  --tw-ring-color: rgba(82, 82, 91, 0.6);
}
.ring-zinc-600\/65 {
  --tw-ring-color: rgba(82, 82, 91, 0.65);
}
.ring-zinc-600\/70 {
  --tw-ring-color: rgba(82, 82, 91, 0.7);
}
.ring-zinc-600\/75 {
  --tw-ring-color: rgba(82, 82, 91, 0.75);
}
.ring-zinc-600\/80 {
  --tw-ring-color: rgba(82, 82, 91, 0.8);
}
.ring-zinc-600\/85 {
  --tw-ring-color: rgba(82, 82, 91, 0.85);
}
.ring-zinc-600\/90 {
  --tw-ring-color: rgba(82, 82, 91, 0.9);
}
.ring-zinc-600\/95 {
  --tw-ring-color: rgba(82, 82, 91, 0.95);
}
.ring-zinc-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(63, 63, 70, var(--tw-ring-opacity));
}
.ring-zinc-700\/0 {
  --tw-ring-color: rgba(63, 63, 70, 0);
}
.ring-zinc-700\/10 {
  --tw-ring-color: rgba(63, 63, 70, 0.1);
}
.ring-zinc-700\/100 {
  --tw-ring-color: rgba(63, 63, 70, 1);
}
.ring-zinc-700\/15 {
  --tw-ring-color: rgba(63, 63, 70, 0.15);
}
.ring-zinc-700\/20 {
  --tw-ring-color: rgba(63, 63, 70, 0.2);
}
.ring-zinc-700\/25 {
  --tw-ring-color: rgba(63, 63, 70, 0.25);
}
.ring-zinc-700\/30 {
  --tw-ring-color: rgba(63, 63, 70, 0.3);
}
.ring-zinc-700\/35 {
  --tw-ring-color: rgba(63, 63, 70, 0.35);
}
.ring-zinc-700\/40 {
  --tw-ring-color: rgba(63, 63, 70, 0.4);
}
.ring-zinc-700\/45 {
  --tw-ring-color: rgba(63, 63, 70, 0.45);
}
.ring-zinc-700\/5 {
  --tw-ring-color: rgba(63, 63, 70, 0.05);
}
.ring-zinc-700\/50 {
  --tw-ring-color: rgba(63, 63, 70, 0.5);
}
.ring-zinc-700\/55 {
  --tw-ring-color: rgba(63, 63, 70, 0.55);
}
.ring-zinc-700\/60 {
  --tw-ring-color: rgba(63, 63, 70, 0.6);
}
.ring-zinc-700\/65 {
  --tw-ring-color: rgba(63, 63, 70, 0.65);
}
.ring-zinc-700\/70 {
  --tw-ring-color: rgba(63, 63, 70, 0.7);
}
.ring-zinc-700\/75 {
  --tw-ring-color: rgba(63, 63, 70, 0.75);
}
.ring-zinc-700\/80 {
  --tw-ring-color: rgba(63, 63, 70, 0.8);
}
.ring-zinc-700\/85 {
  --tw-ring-color: rgba(63, 63, 70, 0.85);
}
.ring-zinc-700\/90 {
  --tw-ring-color: rgba(63, 63, 70, 0.9);
}
.ring-zinc-700\/95 {
  --tw-ring-color: rgba(63, 63, 70, 0.95);
}
.ring-zinc-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(39, 39, 42, var(--tw-ring-opacity));
}
.ring-zinc-800\/0 {
  --tw-ring-color: rgba(39, 39, 42, 0);
}
.ring-zinc-800\/10 {
  --tw-ring-color: rgba(39, 39, 42, 0.1);
}
.ring-zinc-800\/100 {
  --tw-ring-color: rgba(39, 39, 42, 1);
}
.ring-zinc-800\/15 {
  --tw-ring-color: rgba(39, 39, 42, 0.15);
}
.ring-zinc-800\/20 {
  --tw-ring-color: rgba(39, 39, 42, 0.2);
}
.ring-zinc-800\/25 {
  --tw-ring-color: rgba(39, 39, 42, 0.25);
}
.ring-zinc-800\/30 {
  --tw-ring-color: rgba(39, 39, 42, 0.3);
}
.ring-zinc-800\/35 {
  --tw-ring-color: rgba(39, 39, 42, 0.35);
}
.ring-zinc-800\/40 {
  --tw-ring-color: rgba(39, 39, 42, 0.4);
}
.ring-zinc-800\/45 {
  --tw-ring-color: rgba(39, 39, 42, 0.45);
}
.ring-zinc-800\/5 {
  --tw-ring-color: rgba(39, 39, 42, 0.05);
}
.ring-zinc-800\/50 {
  --tw-ring-color: rgba(39, 39, 42, 0.5);
}
.ring-zinc-800\/55 {
  --tw-ring-color: rgba(39, 39, 42, 0.55);
}
.ring-zinc-800\/60 {
  --tw-ring-color: rgba(39, 39, 42, 0.6);
}
.ring-zinc-800\/65 {
  --tw-ring-color: rgba(39, 39, 42, 0.65);
}
.ring-zinc-800\/70 {
  --tw-ring-color: rgba(39, 39, 42, 0.7);
}
.ring-zinc-800\/75 {
  --tw-ring-color: rgba(39, 39, 42, 0.75);
}
.ring-zinc-800\/80 {
  --tw-ring-color: rgba(39, 39, 42, 0.8);
}
.ring-zinc-800\/85 {
  --tw-ring-color: rgba(39, 39, 42, 0.85);
}
.ring-zinc-800\/90 {
  --tw-ring-color: rgba(39, 39, 42, 0.9);
}
.ring-zinc-800\/95 {
  --tw-ring-color: rgba(39, 39, 42, 0.95);
}
.ring-zinc-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(24, 24, 27, var(--tw-ring-opacity));
}
.ring-zinc-900\/0 {
  --tw-ring-color: rgba(24, 24, 27, 0);
}
.ring-zinc-900\/10 {
  --tw-ring-color: rgba(24, 24, 27, 0.1);
}
.ring-zinc-900\/100 {
  --tw-ring-color: rgba(24, 24, 27, 1);
}
.ring-zinc-900\/15 {
  --tw-ring-color: rgba(24, 24, 27, 0.15);
}
.ring-zinc-900\/20 {
  --tw-ring-color: rgba(24, 24, 27, 0.2);
}
.ring-zinc-900\/25 {
  --tw-ring-color: rgba(24, 24, 27, 0.25);
}
.ring-zinc-900\/30 {
  --tw-ring-color: rgba(24, 24, 27, 0.3);
}
.ring-zinc-900\/35 {
  --tw-ring-color: rgba(24, 24, 27, 0.35);
}
.ring-zinc-900\/40 {
  --tw-ring-color: rgba(24, 24, 27, 0.4);
}
.ring-zinc-900\/45 {
  --tw-ring-color: rgba(24, 24, 27, 0.45);
}
.ring-zinc-900\/5 {
  --tw-ring-color: rgba(24, 24, 27, 0.05);
}
.ring-zinc-900\/50 {
  --tw-ring-color: rgba(24, 24, 27, 0.5);
}
.ring-zinc-900\/55 {
  --tw-ring-color: rgba(24, 24, 27, 0.55);
}
.ring-zinc-900\/60 {
  --tw-ring-color: rgba(24, 24, 27, 0.6);
}
.ring-zinc-900\/65 {
  --tw-ring-color: rgba(24, 24, 27, 0.65);
}
.ring-zinc-900\/70 {
  --tw-ring-color: rgba(24, 24, 27, 0.7);
}
.ring-zinc-900\/75 {
  --tw-ring-color: rgba(24, 24, 27, 0.75);
}
.ring-zinc-900\/80 {
  --tw-ring-color: rgba(24, 24, 27, 0.8);
}
.ring-zinc-900\/85 {
  --tw-ring-color: rgba(24, 24, 27, 0.85);
}
.ring-zinc-900\/90 {
  --tw-ring-color: rgba(24, 24, 27, 0.9);
}
.ring-zinc-900\/95 {
  --tw-ring-color: rgba(24, 24, 27, 0.95);
}
.ring-zinc-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(9, 9, 11, var(--tw-ring-opacity));
}
.ring-zinc-950\/0 {
  --tw-ring-color: rgba(9, 9, 11, 0);
}
.ring-zinc-950\/10 {
  --tw-ring-color: rgba(9, 9, 11, 0.1);
}
.ring-zinc-950\/100 {
  --tw-ring-color: rgba(9, 9, 11, 1);
}
.ring-zinc-950\/15 {
  --tw-ring-color: rgba(9, 9, 11, 0.15);
}
.ring-zinc-950\/20 {
  --tw-ring-color: rgba(9, 9, 11, 0.2);
}
.ring-zinc-950\/25 {
  --tw-ring-color: rgba(9, 9, 11, 0.25);
}
.ring-zinc-950\/30 {
  --tw-ring-color: rgba(9, 9, 11, 0.3);
}
.ring-zinc-950\/35 {
  --tw-ring-color: rgba(9, 9, 11, 0.35);
}
.ring-zinc-950\/40 {
  --tw-ring-color: rgba(9, 9, 11, 0.4);
}
.ring-zinc-950\/45 {
  --tw-ring-color: rgba(9, 9, 11, 0.45);
}
.ring-zinc-950\/5 {
  --tw-ring-color: rgba(9, 9, 11, 0.05);
}
.ring-zinc-950\/50 {
  --tw-ring-color: rgba(9, 9, 11, 0.5);
}
.ring-zinc-950\/55 {
  --tw-ring-color: rgba(9, 9, 11, 0.55);
}
.ring-zinc-950\/60 {
  --tw-ring-color: rgba(9, 9, 11, 0.6);
}
.ring-zinc-950\/65 {
  --tw-ring-color: rgba(9, 9, 11, 0.65);
}
.ring-zinc-950\/70 {
  --tw-ring-color: rgba(9, 9, 11, 0.7);
}
.ring-zinc-950\/75 {
  --tw-ring-color: rgba(9, 9, 11, 0.75);
}
.ring-zinc-950\/80 {
  --tw-ring-color: rgba(9, 9, 11, 0.8);
}
.ring-zinc-950\/85 {
  --tw-ring-color: rgba(9, 9, 11, 0.85);
}
.ring-zinc-950\/90 {
  --tw-ring-color: rgba(9, 9, 11, 0.9);
}
.ring-zinc-950\/95 {
  --tw-ring-color: rgba(9, 9, 11, 0.95);
}
.ring-opacity-0 {
  --tw-ring-opacity: 0;
}
.ring-opacity-10 {
  --tw-ring-opacity: 0.1;
}
.ring-opacity-100 {
  --tw-ring-opacity: 1;
}
.ring-opacity-15 {
  --tw-ring-opacity: 0.15;
}
.ring-opacity-20 {
  --tw-ring-opacity: 0.2;
}
.ring-opacity-25 {
  --tw-ring-opacity: 0.25;
}
.ring-opacity-30 {
  --tw-ring-opacity: 0.3;
}
.ring-opacity-35 {
  --tw-ring-opacity: 0.35;
}
.ring-opacity-40 {
  --tw-ring-opacity: 0.4;
}
.ring-opacity-45 {
  --tw-ring-opacity: 0.45;
}
.ring-opacity-5 {
  --tw-ring-opacity: 0.05;
}
.ring-opacity-50 {
  --tw-ring-opacity: 0.5;
}
.ring-opacity-55 {
  --tw-ring-opacity: 0.55;
}
.ring-opacity-60 {
  --tw-ring-opacity: 0.6;
}
.ring-opacity-65 {
  --tw-ring-opacity: 0.65;
}
.ring-opacity-70 {
  --tw-ring-opacity: 0.7;
}
.ring-opacity-75 {
  --tw-ring-opacity: 0.75;
}
.ring-opacity-80 {
  --tw-ring-opacity: 0.8;
}
.ring-opacity-85 {
  --tw-ring-opacity: 0.85;
}
.ring-opacity-90 {
  --tw-ring-opacity: 0.9;
}
.ring-opacity-95 {
  --tw-ring-opacity: 0.95;
}
.ring-offset-0 {
  --tw-ring-offset-width: 0px;
}
.ring-offset-1 {
  --tw-ring-offset-width: 1px;
}
.ring-offset-2 {
  --tw-ring-offset-width: 2px;
}
.ring-offset-4 {
  --tw-ring-offset-width: 4px;
}
.ring-offset-8 {
  --tw-ring-offset-width: 8px;
}
.ring-offset-accent {
  --tw-ring-offset-color: var(--fallback-a,oklch(var(--a)/1));
}
.ring-offset-accent-content {
  --tw-ring-offset-color: var(--fallback-ac,oklch(var(--ac)/1));
}
.ring-offset-accent-content\/0 {
  --tw-ring-offset-color: var(--fallback-ac,oklch(var(--ac)/0));
}
.ring-offset-accent-content\/10 {
  --tw-ring-offset-color: var(--fallback-ac,oklch(var(--ac)/0.1));
}
.ring-offset-accent-content\/100 {
  --tw-ring-offset-color: var(--fallback-ac,oklch(var(--ac)/1));
}
.ring-offset-accent-content\/15 {
  --tw-ring-offset-color: var(--fallback-ac,oklch(var(--ac)/0.15));
}
.ring-offset-accent-content\/20 {
  --tw-ring-offset-color: var(--fallback-ac,oklch(var(--ac)/0.2));
}
.ring-offset-accent-content\/25 {
  --tw-ring-offset-color: var(--fallback-ac,oklch(var(--ac)/0.25));
}
.ring-offset-accent-content\/30 {
  --tw-ring-offset-color: var(--fallback-ac,oklch(var(--ac)/0.3));
}
.ring-offset-accent-content\/35 {
  --tw-ring-offset-color: var(--fallback-ac,oklch(var(--ac)/0.35));
}
.ring-offset-accent-content\/40 {
  --tw-ring-offset-color: var(--fallback-ac,oklch(var(--ac)/0.4));
}
.ring-offset-accent-content\/45 {
  --tw-ring-offset-color: var(--fallback-ac,oklch(var(--ac)/0.45));
}
.ring-offset-accent-content\/5 {
  --tw-ring-offset-color: var(--fallback-ac,oklch(var(--ac)/0.05));
}
.ring-offset-accent-content\/50 {
  --tw-ring-offset-color: var(--fallback-ac,oklch(var(--ac)/0.5));
}
.ring-offset-accent-content\/55 {
  --tw-ring-offset-color: var(--fallback-ac,oklch(var(--ac)/0.55));
}
.ring-offset-accent-content\/60 {
  --tw-ring-offset-color: var(--fallback-ac,oklch(var(--ac)/0.6));
}
.ring-offset-accent-content\/65 {
  --tw-ring-offset-color: var(--fallback-ac,oklch(var(--ac)/0.65));
}
.ring-offset-accent-content\/70 {
  --tw-ring-offset-color: var(--fallback-ac,oklch(var(--ac)/0.7));
}
.ring-offset-accent-content\/75 {
  --tw-ring-offset-color: var(--fallback-ac,oklch(var(--ac)/0.75));
}
.ring-offset-accent-content\/80 {
  --tw-ring-offset-color: var(--fallback-ac,oklch(var(--ac)/0.8));
}
.ring-offset-accent-content\/85 {
  --tw-ring-offset-color: var(--fallback-ac,oklch(var(--ac)/0.85));
}
.ring-offset-accent-content\/90 {
  --tw-ring-offset-color: var(--fallback-ac,oklch(var(--ac)/0.9));
}
.ring-offset-accent-content\/95 {
  --tw-ring-offset-color: var(--fallback-ac,oklch(var(--ac)/0.95));
}
.ring-offset-accent\/0 {
  --tw-ring-offset-color: var(--fallback-a,oklch(var(--a)/0));
}
.ring-offset-accent\/10 {
  --tw-ring-offset-color: var(--fallback-a,oklch(var(--a)/0.1));
}
.ring-offset-accent\/100 {
  --tw-ring-offset-color: var(--fallback-a,oklch(var(--a)/1));
}
.ring-offset-accent\/15 {
  --tw-ring-offset-color: var(--fallback-a,oklch(var(--a)/0.15));
}
.ring-offset-accent\/20 {
  --tw-ring-offset-color: var(--fallback-a,oklch(var(--a)/0.2));
}
.ring-offset-accent\/25 {
  --tw-ring-offset-color: var(--fallback-a,oklch(var(--a)/0.25));
}
.ring-offset-accent\/30 {
  --tw-ring-offset-color: var(--fallback-a,oklch(var(--a)/0.3));
}
.ring-offset-accent\/35 {
  --tw-ring-offset-color: var(--fallback-a,oklch(var(--a)/0.35));
}
.ring-offset-accent\/40 {
  --tw-ring-offset-color: var(--fallback-a,oklch(var(--a)/0.4));
}
.ring-offset-accent\/45 {
  --tw-ring-offset-color: var(--fallback-a,oklch(var(--a)/0.45));
}
.ring-offset-accent\/5 {
  --tw-ring-offset-color: var(--fallback-a,oklch(var(--a)/0.05));
}
.ring-offset-accent\/50 {
  --tw-ring-offset-color: var(--fallback-a,oklch(var(--a)/0.5));
}
.ring-offset-accent\/55 {
  --tw-ring-offset-color: var(--fallback-a,oklch(var(--a)/0.55));
}
.ring-offset-accent\/60 {
  --tw-ring-offset-color: var(--fallback-a,oklch(var(--a)/0.6));
}
.ring-offset-accent\/65 {
  --tw-ring-offset-color: var(--fallback-a,oklch(var(--a)/0.65));
}
.ring-offset-accent\/70 {
  --tw-ring-offset-color: var(--fallback-a,oklch(var(--a)/0.7));
}
.ring-offset-accent\/75 {
  --tw-ring-offset-color: var(--fallback-a,oklch(var(--a)/0.75));
}
.ring-offset-accent\/80 {
  --tw-ring-offset-color: var(--fallback-a,oklch(var(--a)/0.8));
}
.ring-offset-accent\/85 {
  --tw-ring-offset-color: var(--fallback-a,oklch(var(--a)/0.85));
}
.ring-offset-accent\/90 {
  --tw-ring-offset-color: var(--fallback-a,oklch(var(--a)/0.9));
}
.ring-offset-accent\/95 {
  --tw-ring-offset-color: var(--fallback-a,oklch(var(--a)/0.95));
}
.ring-offset-amber-100 {
  --tw-ring-offset-color: #fef3c7;
}
.ring-offset-amber-100\/0 {
  --tw-ring-offset-color: rgba(254, 243, 199, 0);
}
.ring-offset-amber-100\/10 {
  --tw-ring-offset-color: rgba(254, 243, 199, 0.1);
}
.ring-offset-amber-100\/100 {
  --tw-ring-offset-color: rgba(254, 243, 199, 1);
}
.ring-offset-amber-100\/15 {
  --tw-ring-offset-color: rgba(254, 243, 199, 0.15);
}
.ring-offset-amber-100\/20 {
  --tw-ring-offset-color: rgba(254, 243, 199, 0.2);
}
.ring-offset-amber-100\/25 {
  --tw-ring-offset-color: rgba(254, 243, 199, 0.25);
}
.ring-offset-amber-100\/30 {
  --tw-ring-offset-color: rgba(254, 243, 199, 0.3);
}
.ring-offset-amber-100\/35 {
  --tw-ring-offset-color: rgba(254, 243, 199, 0.35);
}
.ring-offset-amber-100\/40 {
  --tw-ring-offset-color: rgba(254, 243, 199, 0.4);
}
.ring-offset-amber-100\/45 {
  --tw-ring-offset-color: rgba(254, 243, 199, 0.45);
}
.ring-offset-amber-100\/5 {
  --tw-ring-offset-color: rgba(254, 243, 199, 0.05);
}
.ring-offset-amber-100\/50 {
  --tw-ring-offset-color: rgba(254, 243, 199, 0.5);
}
.ring-offset-amber-100\/55 {
  --tw-ring-offset-color: rgba(254, 243, 199, 0.55);
}
.ring-offset-amber-100\/60 {
  --tw-ring-offset-color: rgba(254, 243, 199, 0.6);
}
.ring-offset-amber-100\/65 {
  --tw-ring-offset-color: rgba(254, 243, 199, 0.65);
}
.ring-offset-amber-100\/70 {
  --tw-ring-offset-color: rgba(254, 243, 199, 0.7);
}
.ring-offset-amber-100\/75 {
  --tw-ring-offset-color: rgba(254, 243, 199, 0.75);
}
.ring-offset-amber-100\/80 {
  --tw-ring-offset-color: rgba(254, 243, 199, 0.8);
}
.ring-offset-amber-100\/85 {
  --tw-ring-offset-color: rgba(254, 243, 199, 0.85);
}
.ring-offset-amber-100\/90 {
  --tw-ring-offset-color: rgba(254, 243, 199, 0.9);
}
.ring-offset-amber-100\/95 {
  --tw-ring-offset-color: rgba(254, 243, 199, 0.95);
}
.ring-offset-amber-200 {
  --tw-ring-offset-color: #fde68a;
}
.ring-offset-amber-200\/0 {
  --tw-ring-offset-color: rgba(253, 230, 138, 0);
}
.ring-offset-amber-200\/10 {
  --tw-ring-offset-color: rgba(253, 230, 138, 0.1);
}
.ring-offset-amber-200\/100 {
  --tw-ring-offset-color: rgba(253, 230, 138, 1);
}
.ring-offset-amber-200\/15 {
  --tw-ring-offset-color: rgba(253, 230, 138, 0.15);
}
.ring-offset-amber-200\/20 {
  --tw-ring-offset-color: rgba(253, 230, 138, 0.2);
}
.ring-offset-amber-200\/25 {
  --tw-ring-offset-color: rgba(253, 230, 138, 0.25);
}
.ring-offset-amber-200\/30 {
  --tw-ring-offset-color: rgba(253, 230, 138, 0.3);
}
.ring-offset-amber-200\/35 {
  --tw-ring-offset-color: rgba(253, 230, 138, 0.35);
}
.ring-offset-amber-200\/40 {
  --tw-ring-offset-color: rgba(253, 230, 138, 0.4);
}
.ring-offset-amber-200\/45 {
  --tw-ring-offset-color: rgba(253, 230, 138, 0.45);
}
.ring-offset-amber-200\/5 {
  --tw-ring-offset-color: rgba(253, 230, 138, 0.05);
}
.ring-offset-amber-200\/50 {
  --tw-ring-offset-color: rgba(253, 230, 138, 0.5);
}
.ring-offset-amber-200\/55 {
  --tw-ring-offset-color: rgba(253, 230, 138, 0.55);
}
.ring-offset-amber-200\/60 {
  --tw-ring-offset-color: rgba(253, 230, 138, 0.6);
}
.ring-offset-amber-200\/65 {
  --tw-ring-offset-color: rgba(253, 230, 138, 0.65);
}
.ring-offset-amber-200\/70 {
  --tw-ring-offset-color: rgba(253, 230, 138, 0.7);
}
.ring-offset-amber-200\/75 {
  --tw-ring-offset-color: rgba(253, 230, 138, 0.75);
}
.ring-offset-amber-200\/80 {
  --tw-ring-offset-color: rgba(253, 230, 138, 0.8);
}
.ring-offset-amber-200\/85 {
  --tw-ring-offset-color: rgba(253, 230, 138, 0.85);
}
.ring-offset-amber-200\/90 {
  --tw-ring-offset-color: rgba(253, 230, 138, 0.9);
}
.ring-offset-amber-200\/95 {
  --tw-ring-offset-color: rgba(253, 230, 138, 0.95);
}
.ring-offset-amber-300 {
  --tw-ring-offset-color: #fcd34d;
}
.ring-offset-amber-300\/0 {
  --tw-ring-offset-color: rgba(252, 211, 77, 0);
}
.ring-offset-amber-300\/10 {
  --tw-ring-offset-color: rgba(252, 211, 77, 0.1);
}
.ring-offset-amber-300\/100 {
  --tw-ring-offset-color: rgba(252, 211, 77, 1);
}
.ring-offset-amber-300\/15 {
  --tw-ring-offset-color: rgba(252, 211, 77, 0.15);
}
.ring-offset-amber-300\/20 {
  --tw-ring-offset-color: rgba(252, 211, 77, 0.2);
}
.ring-offset-amber-300\/25 {
  --tw-ring-offset-color: rgba(252, 211, 77, 0.25);
}
.ring-offset-amber-300\/30 {
  --tw-ring-offset-color: rgba(252, 211, 77, 0.3);
}
.ring-offset-amber-300\/35 {
  --tw-ring-offset-color: rgba(252, 211, 77, 0.35);
}
.ring-offset-amber-300\/40 {
  --tw-ring-offset-color: rgba(252, 211, 77, 0.4);
}
.ring-offset-amber-300\/45 {
  --tw-ring-offset-color: rgba(252, 211, 77, 0.45);
}
.ring-offset-amber-300\/5 {
  --tw-ring-offset-color: rgba(252, 211, 77, 0.05);
}
.ring-offset-amber-300\/50 {
  --tw-ring-offset-color: rgba(252, 211, 77, 0.5);
}
.ring-offset-amber-300\/55 {
  --tw-ring-offset-color: rgba(252, 211, 77, 0.55);
}
.ring-offset-amber-300\/60 {
  --tw-ring-offset-color: rgba(252, 211, 77, 0.6);
}
.ring-offset-amber-300\/65 {
  --tw-ring-offset-color: rgba(252, 211, 77, 0.65);
}
.ring-offset-amber-300\/70 {
  --tw-ring-offset-color: rgba(252, 211, 77, 0.7);
}
.ring-offset-amber-300\/75 {
  --tw-ring-offset-color: rgba(252, 211, 77, 0.75);
}
.ring-offset-amber-300\/80 {
  --tw-ring-offset-color: rgba(252, 211, 77, 0.8);
}
.ring-offset-amber-300\/85 {
  --tw-ring-offset-color: rgba(252, 211, 77, 0.85);
}
.ring-offset-amber-300\/90 {
  --tw-ring-offset-color: rgba(252, 211, 77, 0.9);
}
.ring-offset-amber-300\/95 {
  --tw-ring-offset-color: rgba(252, 211, 77, 0.95);
}
.ring-offset-amber-400 {
  --tw-ring-offset-color: #fbbf24;
}
.ring-offset-amber-400\/0 {
  --tw-ring-offset-color: rgba(251, 191, 36, 0);
}
.ring-offset-amber-400\/10 {
  --tw-ring-offset-color: rgba(251, 191, 36, 0.1);
}
.ring-offset-amber-400\/100 {
  --tw-ring-offset-color: rgba(251, 191, 36, 1);
}
.ring-offset-amber-400\/15 {
  --tw-ring-offset-color: rgba(251, 191, 36, 0.15);
}
.ring-offset-amber-400\/20 {
  --tw-ring-offset-color: rgba(251, 191, 36, 0.2);
}
.ring-offset-amber-400\/25 {
  --tw-ring-offset-color: rgba(251, 191, 36, 0.25);
}
.ring-offset-amber-400\/30 {
  --tw-ring-offset-color: rgba(251, 191, 36, 0.3);
}
.ring-offset-amber-400\/35 {
  --tw-ring-offset-color: rgba(251, 191, 36, 0.35);
}
.ring-offset-amber-400\/40 {
  --tw-ring-offset-color: rgba(251, 191, 36, 0.4);
}
.ring-offset-amber-400\/45 {
  --tw-ring-offset-color: rgba(251, 191, 36, 0.45);
}
.ring-offset-amber-400\/5 {
  --tw-ring-offset-color: rgba(251, 191, 36, 0.05);
}
.ring-offset-amber-400\/50 {
  --tw-ring-offset-color: rgba(251, 191, 36, 0.5);
}
.ring-offset-amber-400\/55 {
  --tw-ring-offset-color: rgba(251, 191, 36, 0.55);
}
.ring-offset-amber-400\/60 {
  --tw-ring-offset-color: rgba(251, 191, 36, 0.6);
}
.ring-offset-amber-400\/65 {
  --tw-ring-offset-color: rgba(251, 191, 36, 0.65);
}
.ring-offset-amber-400\/70 {
  --tw-ring-offset-color: rgba(251, 191, 36, 0.7);
}
.ring-offset-amber-400\/75 {
  --tw-ring-offset-color: rgba(251, 191, 36, 0.75);
}
.ring-offset-amber-400\/80 {
  --tw-ring-offset-color: rgba(251, 191, 36, 0.8);
}
.ring-offset-amber-400\/85 {
  --tw-ring-offset-color: rgba(251, 191, 36, 0.85);
}
.ring-offset-amber-400\/90 {
  --tw-ring-offset-color: rgba(251, 191, 36, 0.9);
}
.ring-offset-amber-400\/95 {
  --tw-ring-offset-color: rgba(251, 191, 36, 0.95);
}
.ring-offset-amber-50 {
  --tw-ring-offset-color: #fffbeb;
}
.ring-offset-amber-50\/0 {
  --tw-ring-offset-color: rgba(255, 251, 235, 0);
}
.ring-offset-amber-50\/10 {
  --tw-ring-offset-color: rgba(255, 251, 235, 0.1);
}
.ring-offset-amber-50\/100 {
  --tw-ring-offset-color: rgba(255, 251, 235, 1);
}
.ring-offset-amber-50\/15 {
  --tw-ring-offset-color: rgba(255, 251, 235, 0.15);
}
.ring-offset-amber-50\/20 {
  --tw-ring-offset-color: rgba(255, 251, 235, 0.2);
}
.ring-offset-amber-50\/25 {
  --tw-ring-offset-color: rgba(255, 251, 235, 0.25);
}
.ring-offset-amber-50\/30 {
  --tw-ring-offset-color: rgba(255, 251, 235, 0.3);
}
.ring-offset-amber-50\/35 {
  --tw-ring-offset-color: rgba(255, 251, 235, 0.35);
}
.ring-offset-amber-50\/40 {
  --tw-ring-offset-color: rgba(255, 251, 235, 0.4);
}
.ring-offset-amber-50\/45 {
  --tw-ring-offset-color: rgba(255, 251, 235, 0.45);
}
.ring-offset-amber-50\/5 {
  --tw-ring-offset-color: rgba(255, 251, 235, 0.05);
}
.ring-offset-amber-50\/50 {
  --tw-ring-offset-color: rgba(255, 251, 235, 0.5);
}
.ring-offset-amber-50\/55 {
  --tw-ring-offset-color: rgba(255, 251, 235, 0.55);
}
.ring-offset-amber-50\/60 {
  --tw-ring-offset-color: rgba(255, 251, 235, 0.6);
}
.ring-offset-amber-50\/65 {
  --tw-ring-offset-color: rgba(255, 251, 235, 0.65);
}
.ring-offset-amber-50\/70 {
  --tw-ring-offset-color: rgba(255, 251, 235, 0.7);
}
.ring-offset-amber-50\/75 {
  --tw-ring-offset-color: rgba(255, 251, 235, 0.75);
}
.ring-offset-amber-50\/80 {
  --tw-ring-offset-color: rgba(255, 251, 235, 0.8);
}
.ring-offset-amber-50\/85 {
  --tw-ring-offset-color: rgba(255, 251, 235, 0.85);
}
.ring-offset-amber-50\/90 {
  --tw-ring-offset-color: rgba(255, 251, 235, 0.9);
}
.ring-offset-amber-50\/95 {
  --tw-ring-offset-color: rgba(255, 251, 235, 0.95);
}
.ring-offset-amber-500 {
  --tw-ring-offset-color: #f59e0b;
}
.ring-offset-amber-500\/0 {
  --tw-ring-offset-color: rgba(245, 158, 11, 0);
}
.ring-offset-amber-500\/10 {
  --tw-ring-offset-color: rgba(245, 158, 11, 0.1);
}
.ring-offset-amber-500\/100 {
  --tw-ring-offset-color: rgba(245, 158, 11, 1);
}
.ring-offset-amber-500\/15 {
  --tw-ring-offset-color: rgba(245, 158, 11, 0.15);
}
.ring-offset-amber-500\/20 {
  --tw-ring-offset-color: rgba(245, 158, 11, 0.2);
}
.ring-offset-amber-500\/25 {
  --tw-ring-offset-color: rgba(245, 158, 11, 0.25);
}
.ring-offset-amber-500\/30 {
  --tw-ring-offset-color: rgba(245, 158, 11, 0.3);
}
.ring-offset-amber-500\/35 {
  --tw-ring-offset-color: rgba(245, 158, 11, 0.35);
}
.ring-offset-amber-500\/40 {
  --tw-ring-offset-color: rgba(245, 158, 11, 0.4);
}
.ring-offset-amber-500\/45 {
  --tw-ring-offset-color: rgba(245, 158, 11, 0.45);
}
.ring-offset-amber-500\/5 {
  --tw-ring-offset-color: rgba(245, 158, 11, 0.05);
}
.ring-offset-amber-500\/50 {
  --tw-ring-offset-color: rgba(245, 158, 11, 0.5);
}
.ring-offset-amber-500\/55 {
  --tw-ring-offset-color: rgba(245, 158, 11, 0.55);
}
.ring-offset-amber-500\/60 {
  --tw-ring-offset-color: rgba(245, 158, 11, 0.6);
}
.ring-offset-amber-500\/65 {
  --tw-ring-offset-color: rgba(245, 158, 11, 0.65);
}
.ring-offset-amber-500\/70 {
  --tw-ring-offset-color: rgba(245, 158, 11, 0.7);
}
.ring-offset-amber-500\/75 {
  --tw-ring-offset-color: rgba(245, 158, 11, 0.75);
}
.ring-offset-amber-500\/80 {
  --tw-ring-offset-color: rgba(245, 158, 11, 0.8);
}
.ring-offset-amber-500\/85 {
  --tw-ring-offset-color: rgba(245, 158, 11, 0.85);
}
.ring-offset-amber-500\/90 {
  --tw-ring-offset-color: rgba(245, 158, 11, 0.9);
}
.ring-offset-amber-500\/95 {
  --tw-ring-offset-color: rgba(245, 158, 11, 0.95);
}
.ring-offset-amber-600 {
  --tw-ring-offset-color: #d97706;
}
.ring-offset-amber-600\/0 {
  --tw-ring-offset-color: rgba(217, 119, 6, 0);
}
.ring-offset-amber-600\/10 {
  --tw-ring-offset-color: rgba(217, 119, 6, 0.1);
}
.ring-offset-amber-600\/100 {
  --tw-ring-offset-color: rgba(217, 119, 6, 1);
}
.ring-offset-amber-600\/15 {
  --tw-ring-offset-color: rgba(217, 119, 6, 0.15);
}
.ring-offset-amber-600\/20 {
  --tw-ring-offset-color: rgba(217, 119, 6, 0.2);
}
.ring-offset-amber-600\/25 {
  --tw-ring-offset-color: rgba(217, 119, 6, 0.25);
}
.ring-offset-amber-600\/30 {
  --tw-ring-offset-color: rgba(217, 119, 6, 0.3);
}
.ring-offset-amber-600\/35 {
  --tw-ring-offset-color: rgba(217, 119, 6, 0.35);
}
.ring-offset-amber-600\/40 {
  --tw-ring-offset-color: rgba(217, 119, 6, 0.4);
}
.ring-offset-amber-600\/45 {
  --tw-ring-offset-color: rgba(217, 119, 6, 0.45);
}
.ring-offset-amber-600\/5 {
  --tw-ring-offset-color: rgba(217, 119, 6, 0.05);
}
.ring-offset-amber-600\/50 {
  --tw-ring-offset-color: rgba(217, 119, 6, 0.5);
}
.ring-offset-amber-600\/55 {
  --tw-ring-offset-color: rgba(217, 119, 6, 0.55);
}
.ring-offset-amber-600\/60 {
  --tw-ring-offset-color: rgba(217, 119, 6, 0.6);
}
.ring-offset-amber-600\/65 {
  --tw-ring-offset-color: rgba(217, 119, 6, 0.65);
}
.ring-offset-amber-600\/70 {
  --tw-ring-offset-color: rgba(217, 119, 6, 0.7);
}
.ring-offset-amber-600\/75 {
  --tw-ring-offset-color: rgba(217, 119, 6, 0.75);
}
.ring-offset-amber-600\/80 {
  --tw-ring-offset-color: rgba(217, 119, 6, 0.8);
}
.ring-offset-amber-600\/85 {
  --tw-ring-offset-color: rgba(217, 119, 6, 0.85);
}
.ring-offset-amber-600\/90 {
  --tw-ring-offset-color: rgba(217, 119, 6, 0.9);
}
.ring-offset-amber-600\/95 {
  --tw-ring-offset-color: rgba(217, 119, 6, 0.95);
}
.ring-offset-amber-700 {
  --tw-ring-offset-color: #b45309;
}
.ring-offset-amber-700\/0 {
  --tw-ring-offset-color: rgba(180, 83, 9, 0);
}
.ring-offset-amber-700\/10 {
  --tw-ring-offset-color: rgba(180, 83, 9, 0.1);
}
.ring-offset-amber-700\/100 {
  --tw-ring-offset-color: rgba(180, 83, 9, 1);
}
.ring-offset-amber-700\/15 {
  --tw-ring-offset-color: rgba(180, 83, 9, 0.15);
}
.ring-offset-amber-700\/20 {
  --tw-ring-offset-color: rgba(180, 83, 9, 0.2);
}
.ring-offset-amber-700\/25 {
  --tw-ring-offset-color: rgba(180, 83, 9, 0.25);
}
.ring-offset-amber-700\/30 {
  --tw-ring-offset-color: rgba(180, 83, 9, 0.3);
}
.ring-offset-amber-700\/35 {
  --tw-ring-offset-color: rgba(180, 83, 9, 0.35);
}
.ring-offset-amber-700\/40 {
  --tw-ring-offset-color: rgba(180, 83, 9, 0.4);
}
.ring-offset-amber-700\/45 {
  --tw-ring-offset-color: rgba(180, 83, 9, 0.45);
}
.ring-offset-amber-700\/5 {
  --tw-ring-offset-color: rgba(180, 83, 9, 0.05);
}
.ring-offset-amber-700\/50 {
  --tw-ring-offset-color: rgba(180, 83, 9, 0.5);
}
.ring-offset-amber-700\/55 {
  --tw-ring-offset-color: rgba(180, 83, 9, 0.55);
}
.ring-offset-amber-700\/60 {
  --tw-ring-offset-color: rgba(180, 83, 9, 0.6);
}
.ring-offset-amber-700\/65 {
  --tw-ring-offset-color: rgba(180, 83, 9, 0.65);
}
.ring-offset-amber-700\/70 {
  --tw-ring-offset-color: rgba(180, 83, 9, 0.7);
}
.ring-offset-amber-700\/75 {
  --tw-ring-offset-color: rgba(180, 83, 9, 0.75);
}
.ring-offset-amber-700\/80 {
  --tw-ring-offset-color: rgba(180, 83, 9, 0.8);
}
.ring-offset-amber-700\/85 {
  --tw-ring-offset-color: rgba(180, 83, 9, 0.85);
}
.ring-offset-amber-700\/90 {
  --tw-ring-offset-color: rgba(180, 83, 9, 0.9);
}
.ring-offset-amber-700\/95 {
  --tw-ring-offset-color: rgba(180, 83, 9, 0.95);
}
.ring-offset-amber-800 {
  --tw-ring-offset-color: #92400e;
}
.ring-offset-amber-800\/0 {
  --tw-ring-offset-color: rgba(146, 64, 14, 0);
}
.ring-offset-amber-800\/10 {
  --tw-ring-offset-color: rgba(146, 64, 14, 0.1);
}
.ring-offset-amber-800\/100 {
  --tw-ring-offset-color: rgba(146, 64, 14, 1);
}
.ring-offset-amber-800\/15 {
  --tw-ring-offset-color: rgba(146, 64, 14, 0.15);
}
.ring-offset-amber-800\/20 {
  --tw-ring-offset-color: rgba(146, 64, 14, 0.2);
}
.ring-offset-amber-800\/25 {
  --tw-ring-offset-color: rgba(146, 64, 14, 0.25);
}
.ring-offset-amber-800\/30 {
  --tw-ring-offset-color: rgba(146, 64, 14, 0.3);
}
.ring-offset-amber-800\/35 {
  --tw-ring-offset-color: rgba(146, 64, 14, 0.35);
}
.ring-offset-amber-800\/40 {
  --tw-ring-offset-color: rgba(146, 64, 14, 0.4);
}
.ring-offset-amber-800\/45 {
  --tw-ring-offset-color: rgba(146, 64, 14, 0.45);
}
.ring-offset-amber-800\/5 {
  --tw-ring-offset-color: rgba(146, 64, 14, 0.05);
}
.ring-offset-amber-800\/50 {
  --tw-ring-offset-color: rgba(146, 64, 14, 0.5);
}
.ring-offset-amber-800\/55 {
  --tw-ring-offset-color: rgba(146, 64, 14, 0.55);
}
.ring-offset-amber-800\/60 {
  --tw-ring-offset-color: rgba(146, 64, 14, 0.6);
}
.ring-offset-amber-800\/65 {
  --tw-ring-offset-color: rgba(146, 64, 14, 0.65);
}
.ring-offset-amber-800\/70 {
  --tw-ring-offset-color: rgba(146, 64, 14, 0.7);
}
.ring-offset-amber-800\/75 {
  --tw-ring-offset-color: rgba(146, 64, 14, 0.75);
}
.ring-offset-amber-800\/80 {
  --tw-ring-offset-color: rgba(146, 64, 14, 0.8);
}
.ring-offset-amber-800\/85 {
  --tw-ring-offset-color: rgba(146, 64, 14, 0.85);
}
.ring-offset-amber-800\/90 {
  --tw-ring-offset-color: rgba(146, 64, 14, 0.9);
}
.ring-offset-amber-800\/95 {
  --tw-ring-offset-color: rgba(146, 64, 14, 0.95);
}
.ring-offset-amber-900 {
  --tw-ring-offset-color: #78350f;
}
.ring-offset-amber-900\/0 {
  --tw-ring-offset-color: rgba(120, 53, 15, 0);
}
.ring-offset-amber-900\/10 {
  --tw-ring-offset-color: rgba(120, 53, 15, 0.1);
}
.ring-offset-amber-900\/100 {
  --tw-ring-offset-color: rgba(120, 53, 15, 1);
}
.ring-offset-amber-900\/15 {
  --tw-ring-offset-color: rgba(120, 53, 15, 0.15);
}
.ring-offset-amber-900\/20 {
  --tw-ring-offset-color: rgba(120, 53, 15, 0.2);
}
.ring-offset-amber-900\/25 {
  --tw-ring-offset-color: rgba(120, 53, 15, 0.25);
}
.ring-offset-amber-900\/30 {
  --tw-ring-offset-color: rgba(120, 53, 15, 0.3);
}
.ring-offset-amber-900\/35 {
  --tw-ring-offset-color: rgba(120, 53, 15, 0.35);
}
.ring-offset-amber-900\/40 {
  --tw-ring-offset-color: rgba(120, 53, 15, 0.4);
}
.ring-offset-amber-900\/45 {
  --tw-ring-offset-color: rgba(120, 53, 15, 0.45);
}
.ring-offset-amber-900\/5 {
  --tw-ring-offset-color: rgba(120, 53, 15, 0.05);
}
.ring-offset-amber-900\/50 {
  --tw-ring-offset-color: rgba(120, 53, 15, 0.5);
}
.ring-offset-amber-900\/55 {
  --tw-ring-offset-color: rgba(120, 53, 15, 0.55);
}
.ring-offset-amber-900\/60 {
  --tw-ring-offset-color: rgba(120, 53, 15, 0.6);
}
.ring-offset-amber-900\/65 {
  --tw-ring-offset-color: rgba(120, 53, 15, 0.65);
}
.ring-offset-amber-900\/70 {
  --tw-ring-offset-color: rgba(120, 53, 15, 0.7);
}
.ring-offset-amber-900\/75 {
  --tw-ring-offset-color: rgba(120, 53, 15, 0.75);
}
.ring-offset-amber-900\/80 {
  --tw-ring-offset-color: rgba(120, 53, 15, 0.8);
}
.ring-offset-amber-900\/85 {
  --tw-ring-offset-color: rgba(120, 53, 15, 0.85);
}
.ring-offset-amber-900\/90 {
  --tw-ring-offset-color: rgba(120, 53, 15, 0.9);
}
.ring-offset-amber-900\/95 {
  --tw-ring-offset-color: rgba(120, 53, 15, 0.95);
}
.ring-offset-amber-950 {
  --tw-ring-offset-color: #451a03;
}
.ring-offset-amber-950\/0 {
  --tw-ring-offset-color: rgba(69, 26, 3, 0);
}
.ring-offset-amber-950\/10 {
  --tw-ring-offset-color: rgba(69, 26, 3, 0.1);
}
.ring-offset-amber-950\/100 {
  --tw-ring-offset-color: rgba(69, 26, 3, 1);
}
.ring-offset-amber-950\/15 {
  --tw-ring-offset-color: rgba(69, 26, 3, 0.15);
}
.ring-offset-amber-950\/20 {
  --tw-ring-offset-color: rgba(69, 26, 3, 0.2);
}
.ring-offset-amber-950\/25 {
  --tw-ring-offset-color: rgba(69, 26, 3, 0.25);
}
.ring-offset-amber-950\/30 {
  --tw-ring-offset-color: rgba(69, 26, 3, 0.3);
}
.ring-offset-amber-950\/35 {
  --tw-ring-offset-color: rgba(69, 26, 3, 0.35);
}
.ring-offset-amber-950\/40 {
  --tw-ring-offset-color: rgba(69, 26, 3, 0.4);
}
.ring-offset-amber-950\/45 {
  --tw-ring-offset-color: rgba(69, 26, 3, 0.45);
}
.ring-offset-amber-950\/5 {
  --tw-ring-offset-color: rgba(69, 26, 3, 0.05);
}
.ring-offset-amber-950\/50 {
  --tw-ring-offset-color: rgba(69, 26, 3, 0.5);
}
.ring-offset-amber-950\/55 {
  --tw-ring-offset-color: rgba(69, 26, 3, 0.55);
}
.ring-offset-amber-950\/60 {
  --tw-ring-offset-color: rgba(69, 26, 3, 0.6);
}
.ring-offset-amber-950\/65 {
  --tw-ring-offset-color: rgba(69, 26, 3, 0.65);
}
.ring-offset-amber-950\/70 {
  --tw-ring-offset-color: rgba(69, 26, 3, 0.7);
}
.ring-offset-amber-950\/75 {
  --tw-ring-offset-color: rgba(69, 26, 3, 0.75);
}
.ring-offset-amber-950\/80 {
  --tw-ring-offset-color: rgba(69, 26, 3, 0.8);
}
.ring-offset-amber-950\/85 {
  --tw-ring-offset-color: rgba(69, 26, 3, 0.85);
}
.ring-offset-amber-950\/90 {
  --tw-ring-offset-color: rgba(69, 26, 3, 0.9);
}
.ring-offset-amber-950\/95 {
  --tw-ring-offset-color: rgba(69, 26, 3, 0.95);
}
.ring-offset-base-100 {
  --tw-ring-offset-color: var(--fallback-b1,oklch(var(--b1)/1));
}
.ring-offset-base-100\/0 {
  --tw-ring-offset-color: var(--fallback-b1,oklch(var(--b1)/0));
}
.ring-offset-base-100\/10 {
  --tw-ring-offset-color: var(--fallback-b1,oklch(var(--b1)/0.1));
}
.ring-offset-base-100\/100 {
  --tw-ring-offset-color: var(--fallback-b1,oklch(var(--b1)/1));
}
.ring-offset-base-100\/15 {
  --tw-ring-offset-color: var(--fallback-b1,oklch(var(--b1)/0.15));
}
.ring-offset-base-100\/20 {
  --tw-ring-offset-color: var(--fallback-b1,oklch(var(--b1)/0.2));
}
.ring-offset-base-100\/25 {
  --tw-ring-offset-color: var(--fallback-b1,oklch(var(--b1)/0.25));
}
.ring-offset-base-100\/30 {
  --tw-ring-offset-color: var(--fallback-b1,oklch(var(--b1)/0.3));
}
.ring-offset-base-100\/35 {
  --tw-ring-offset-color: var(--fallback-b1,oklch(var(--b1)/0.35));
}
.ring-offset-base-100\/40 {
  --tw-ring-offset-color: var(--fallback-b1,oklch(var(--b1)/0.4));
}
.ring-offset-base-100\/45 {
  --tw-ring-offset-color: var(--fallback-b1,oklch(var(--b1)/0.45));
}
.ring-offset-base-100\/5 {
  --tw-ring-offset-color: var(--fallback-b1,oklch(var(--b1)/0.05));
}
.ring-offset-base-100\/50 {
  --tw-ring-offset-color: var(--fallback-b1,oklch(var(--b1)/0.5));
}
.ring-offset-base-100\/55 {
  --tw-ring-offset-color: var(--fallback-b1,oklch(var(--b1)/0.55));
}
.ring-offset-base-100\/60 {
  --tw-ring-offset-color: var(--fallback-b1,oklch(var(--b1)/0.6));
}
.ring-offset-base-100\/65 {
  --tw-ring-offset-color: var(--fallback-b1,oklch(var(--b1)/0.65));
}
.ring-offset-base-100\/70 {
  --tw-ring-offset-color: var(--fallback-b1,oklch(var(--b1)/0.7));
}
.ring-offset-base-100\/75 {
  --tw-ring-offset-color: var(--fallback-b1,oklch(var(--b1)/0.75));
}
.ring-offset-base-100\/80 {
  --tw-ring-offset-color: var(--fallback-b1,oklch(var(--b1)/0.8));
}
.ring-offset-base-100\/85 {
  --tw-ring-offset-color: var(--fallback-b1,oklch(var(--b1)/0.85));
}
.ring-offset-base-100\/90 {
  --tw-ring-offset-color: var(--fallback-b1,oklch(var(--b1)/0.9));
}
.ring-offset-base-100\/95 {
  --tw-ring-offset-color: var(--fallback-b1,oklch(var(--b1)/0.95));
}
.ring-offset-base-200 {
  --tw-ring-offset-color: var(--fallback-b2,oklch(var(--b2)/1));
}
.ring-offset-base-200\/0 {
  --tw-ring-offset-color: var(--fallback-b2,oklch(var(--b2)/0));
}
.ring-offset-base-200\/10 {
  --tw-ring-offset-color: var(--fallback-b2,oklch(var(--b2)/0.1));
}
.ring-offset-base-200\/100 {
  --tw-ring-offset-color: var(--fallback-b2,oklch(var(--b2)/1));
}
.ring-offset-base-200\/15 {
  --tw-ring-offset-color: var(--fallback-b2,oklch(var(--b2)/0.15));
}
.ring-offset-base-200\/20 {
  --tw-ring-offset-color: var(--fallback-b2,oklch(var(--b2)/0.2));
}
.ring-offset-base-200\/25 {
  --tw-ring-offset-color: var(--fallback-b2,oklch(var(--b2)/0.25));
}
.ring-offset-base-200\/30 {
  --tw-ring-offset-color: var(--fallback-b2,oklch(var(--b2)/0.3));
}
.ring-offset-base-200\/35 {
  --tw-ring-offset-color: var(--fallback-b2,oklch(var(--b2)/0.35));
}
.ring-offset-base-200\/40 {
  --tw-ring-offset-color: var(--fallback-b2,oklch(var(--b2)/0.4));
}
.ring-offset-base-200\/45 {
  --tw-ring-offset-color: var(--fallback-b2,oklch(var(--b2)/0.45));
}
.ring-offset-base-200\/5 {
  --tw-ring-offset-color: var(--fallback-b2,oklch(var(--b2)/0.05));
}
.ring-offset-base-200\/50 {
  --tw-ring-offset-color: var(--fallback-b2,oklch(var(--b2)/0.5));
}
.ring-offset-base-200\/55 {
  --tw-ring-offset-color: var(--fallback-b2,oklch(var(--b2)/0.55));
}
.ring-offset-base-200\/60 {
  --tw-ring-offset-color: var(--fallback-b2,oklch(var(--b2)/0.6));
}
.ring-offset-base-200\/65 {
  --tw-ring-offset-color: var(--fallback-b2,oklch(var(--b2)/0.65));
}
.ring-offset-base-200\/70 {
  --tw-ring-offset-color: var(--fallback-b2,oklch(var(--b2)/0.7));
}
.ring-offset-base-200\/75 {
  --tw-ring-offset-color: var(--fallback-b2,oklch(var(--b2)/0.75));
}
.ring-offset-base-200\/80 {
  --tw-ring-offset-color: var(--fallback-b2,oklch(var(--b2)/0.8));
}
.ring-offset-base-200\/85 {
  --tw-ring-offset-color: var(--fallback-b2,oklch(var(--b2)/0.85));
}
.ring-offset-base-200\/90 {
  --tw-ring-offset-color: var(--fallback-b2,oklch(var(--b2)/0.9));
}
.ring-offset-base-200\/95 {
  --tw-ring-offset-color: var(--fallback-b2,oklch(var(--b2)/0.95));
}
.ring-offset-base-300 {
  --tw-ring-offset-color: var(--fallback-b3,oklch(var(--b3)/1));
}
.ring-offset-base-300\/0 {
  --tw-ring-offset-color: var(--fallback-b3,oklch(var(--b3)/0));
}
.ring-offset-base-300\/10 {
  --tw-ring-offset-color: var(--fallback-b3,oklch(var(--b3)/0.1));
}
.ring-offset-base-300\/100 {
  --tw-ring-offset-color: var(--fallback-b3,oklch(var(--b3)/1));
}
.ring-offset-base-300\/15 {
  --tw-ring-offset-color: var(--fallback-b3,oklch(var(--b3)/0.15));
}
.ring-offset-base-300\/20 {
  --tw-ring-offset-color: var(--fallback-b3,oklch(var(--b3)/0.2));
}
.ring-offset-base-300\/25 {
  --tw-ring-offset-color: var(--fallback-b3,oklch(var(--b3)/0.25));
}
.ring-offset-base-300\/30 {
  --tw-ring-offset-color: var(--fallback-b3,oklch(var(--b3)/0.3));
}
.ring-offset-base-300\/35 {
  --tw-ring-offset-color: var(--fallback-b3,oklch(var(--b3)/0.35));
}
.ring-offset-base-300\/40 {
  --tw-ring-offset-color: var(--fallback-b3,oklch(var(--b3)/0.4));
}
.ring-offset-base-300\/45 {
  --tw-ring-offset-color: var(--fallback-b3,oklch(var(--b3)/0.45));
}
.ring-offset-base-300\/5 {
  --tw-ring-offset-color: var(--fallback-b3,oklch(var(--b3)/0.05));
}
.ring-offset-base-300\/50 {
  --tw-ring-offset-color: var(--fallback-b3,oklch(var(--b3)/0.5));
}
.ring-offset-base-300\/55 {
  --tw-ring-offset-color: var(--fallback-b3,oklch(var(--b3)/0.55));
}
.ring-offset-base-300\/60 {
  --tw-ring-offset-color: var(--fallback-b3,oklch(var(--b3)/0.6));
}
.ring-offset-base-300\/65 {
  --tw-ring-offset-color: var(--fallback-b3,oklch(var(--b3)/0.65));
}
.ring-offset-base-300\/70 {
  --tw-ring-offset-color: var(--fallback-b3,oklch(var(--b3)/0.7));
}
.ring-offset-base-300\/75 {
  --tw-ring-offset-color: var(--fallback-b3,oklch(var(--b3)/0.75));
}
.ring-offset-base-300\/80 {
  --tw-ring-offset-color: var(--fallback-b3,oklch(var(--b3)/0.8));
}
.ring-offset-base-300\/85 {
  --tw-ring-offset-color: var(--fallback-b3,oklch(var(--b3)/0.85));
}
.ring-offset-base-300\/90 {
  --tw-ring-offset-color: var(--fallback-b3,oklch(var(--b3)/0.9));
}
.ring-offset-base-300\/95 {
  --tw-ring-offset-color: var(--fallback-b3,oklch(var(--b3)/0.95));
}
.ring-offset-base-content {
  --tw-ring-offset-color: var(--fallback-bc,oklch(var(--bc)/1));
}
.ring-offset-base-content\/0 {
  --tw-ring-offset-color: var(--fallback-bc,oklch(var(--bc)/0));
}
.ring-offset-base-content\/10 {
  --tw-ring-offset-color: var(--fallback-bc,oklch(var(--bc)/0.1));
}
.ring-offset-base-content\/100 {
  --tw-ring-offset-color: var(--fallback-bc,oklch(var(--bc)/1));
}
.ring-offset-base-content\/15 {
  --tw-ring-offset-color: var(--fallback-bc,oklch(var(--bc)/0.15));
}
.ring-offset-base-content\/20 {
  --tw-ring-offset-color: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.ring-offset-base-content\/25 {
  --tw-ring-offset-color: var(--fallback-bc,oklch(var(--bc)/0.25));
}
.ring-offset-base-content\/30 {
  --tw-ring-offset-color: var(--fallback-bc,oklch(var(--bc)/0.3));
}
.ring-offset-base-content\/35 {
  --tw-ring-offset-color: var(--fallback-bc,oklch(var(--bc)/0.35));
}
.ring-offset-base-content\/40 {
  --tw-ring-offset-color: var(--fallback-bc,oklch(var(--bc)/0.4));
}
.ring-offset-base-content\/45 {
  --tw-ring-offset-color: var(--fallback-bc,oklch(var(--bc)/0.45));
}
.ring-offset-base-content\/5 {
  --tw-ring-offset-color: var(--fallback-bc,oklch(var(--bc)/0.05));
}
.ring-offset-base-content\/50 {
  --tw-ring-offset-color: var(--fallback-bc,oklch(var(--bc)/0.5));
}
.ring-offset-base-content\/55 {
  --tw-ring-offset-color: var(--fallback-bc,oklch(var(--bc)/0.55));
}
.ring-offset-base-content\/60 {
  --tw-ring-offset-color: var(--fallback-bc,oklch(var(--bc)/0.6));
}
.ring-offset-base-content\/65 {
  --tw-ring-offset-color: var(--fallback-bc,oklch(var(--bc)/0.65));
}
.ring-offset-base-content\/70 {
  --tw-ring-offset-color: var(--fallback-bc,oklch(var(--bc)/0.7));
}
.ring-offset-base-content\/75 {
  --tw-ring-offset-color: var(--fallback-bc,oklch(var(--bc)/0.75));
}
.ring-offset-base-content\/80 {
  --tw-ring-offset-color: var(--fallback-bc,oklch(var(--bc)/0.8));
}
.ring-offset-base-content\/85 {
  --tw-ring-offset-color: var(--fallback-bc,oklch(var(--bc)/0.85));
}
.ring-offset-base-content\/90 {
  --tw-ring-offset-color: var(--fallback-bc,oklch(var(--bc)/0.9));
}
.ring-offset-base-content\/95 {
  --tw-ring-offset-color: var(--fallback-bc,oklch(var(--bc)/0.95));
}
.ring-offset-black {
  --tw-ring-offset-color: #000;
}
.ring-offset-black\/0 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0);
}
.ring-offset-black\/10 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.1);
}
.ring-offset-black\/100 {
  --tw-ring-offset-color: rgba(0, 0, 0, 1);
}
.ring-offset-black\/15 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.15);
}
.ring-offset-black\/20 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.2);
}
.ring-offset-black\/25 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.25);
}
.ring-offset-black\/30 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.3);
}
.ring-offset-black\/35 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.35);
}
.ring-offset-black\/40 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.4);
}
.ring-offset-black\/45 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.45);
}
.ring-offset-black\/5 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.05);
}
.ring-offset-black\/50 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.5);
}
.ring-offset-black\/55 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.55);
}
.ring-offset-black\/60 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.6);
}
.ring-offset-black\/65 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.65);
}
.ring-offset-black\/70 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.7);
}
.ring-offset-black\/75 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.75);
}
.ring-offset-black\/80 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.8);
}
.ring-offset-black\/85 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.85);
}
.ring-offset-black\/90 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.9);
}
.ring-offset-black\/95 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.95);
}
.ring-offset-blue-100 {
  --tw-ring-offset-color: #dbeafe;
}
.ring-offset-blue-100\/0 {
  --tw-ring-offset-color: rgba(219, 234, 254, 0);
}
.ring-offset-blue-100\/10 {
  --tw-ring-offset-color: rgba(219, 234, 254, 0.1);
}
.ring-offset-blue-100\/100 {
  --tw-ring-offset-color: rgba(219, 234, 254, 1);
}
.ring-offset-blue-100\/15 {
  --tw-ring-offset-color: rgba(219, 234, 254, 0.15);
}
.ring-offset-blue-100\/20 {
  --tw-ring-offset-color: rgba(219, 234, 254, 0.2);
}
.ring-offset-blue-100\/25 {
  --tw-ring-offset-color: rgba(219, 234, 254, 0.25);
}
.ring-offset-blue-100\/30 {
  --tw-ring-offset-color: rgba(219, 234, 254, 0.3);
}
.ring-offset-blue-100\/35 {
  --tw-ring-offset-color: rgba(219, 234, 254, 0.35);
}
.ring-offset-blue-100\/40 {
  --tw-ring-offset-color: rgba(219, 234, 254, 0.4);
}
.ring-offset-blue-100\/45 {
  --tw-ring-offset-color: rgba(219, 234, 254, 0.45);
}
.ring-offset-blue-100\/5 {
  --tw-ring-offset-color: rgba(219, 234, 254, 0.05);
}
.ring-offset-blue-100\/50 {
  --tw-ring-offset-color: rgba(219, 234, 254, 0.5);
}
.ring-offset-blue-100\/55 {
  --tw-ring-offset-color: rgba(219, 234, 254, 0.55);
}
.ring-offset-blue-100\/60 {
  --tw-ring-offset-color: rgba(219, 234, 254, 0.6);
}
.ring-offset-blue-100\/65 {
  --tw-ring-offset-color: rgba(219, 234, 254, 0.65);
}
.ring-offset-blue-100\/70 {
  --tw-ring-offset-color: rgba(219, 234, 254, 0.7);
}
.ring-offset-blue-100\/75 {
  --tw-ring-offset-color: rgba(219, 234, 254, 0.75);
}
.ring-offset-blue-100\/80 {
  --tw-ring-offset-color: rgba(219, 234, 254, 0.8);
}
.ring-offset-blue-100\/85 {
  --tw-ring-offset-color: rgba(219, 234, 254, 0.85);
}
.ring-offset-blue-100\/90 {
  --tw-ring-offset-color: rgba(219, 234, 254, 0.9);
}
.ring-offset-blue-100\/95 {
  --tw-ring-offset-color: rgba(219, 234, 254, 0.95);
}
.ring-offset-blue-200 {
  --tw-ring-offset-color: #bfdbfe;
}
.ring-offset-blue-200\/0 {
  --tw-ring-offset-color: rgba(191, 219, 254, 0);
}
.ring-offset-blue-200\/10 {
  --tw-ring-offset-color: rgba(191, 219, 254, 0.1);
}
.ring-offset-blue-200\/100 {
  --tw-ring-offset-color: rgba(191, 219, 254, 1);
}
.ring-offset-blue-200\/15 {
  --tw-ring-offset-color: rgba(191, 219, 254, 0.15);
}
.ring-offset-blue-200\/20 {
  --tw-ring-offset-color: rgba(191, 219, 254, 0.2);
}
.ring-offset-blue-200\/25 {
  --tw-ring-offset-color: rgba(191, 219, 254, 0.25);
}
.ring-offset-blue-200\/30 {
  --tw-ring-offset-color: rgba(191, 219, 254, 0.3);
}
.ring-offset-blue-200\/35 {
  --tw-ring-offset-color: rgba(191, 219, 254, 0.35);
}
.ring-offset-blue-200\/40 {
  --tw-ring-offset-color: rgba(191, 219, 254, 0.4);
}
.ring-offset-blue-200\/45 {
  --tw-ring-offset-color: rgba(191, 219, 254, 0.45);
}
.ring-offset-blue-200\/5 {
  --tw-ring-offset-color: rgba(191, 219, 254, 0.05);
}
.ring-offset-blue-200\/50 {
  --tw-ring-offset-color: rgba(191, 219, 254, 0.5);
}
.ring-offset-blue-200\/55 {
  --tw-ring-offset-color: rgba(191, 219, 254, 0.55);
}
.ring-offset-blue-200\/60 {
  --tw-ring-offset-color: rgba(191, 219, 254, 0.6);
}
.ring-offset-blue-200\/65 {
  --tw-ring-offset-color: rgba(191, 219, 254, 0.65);
}
.ring-offset-blue-200\/70 {
  --tw-ring-offset-color: rgba(191, 219, 254, 0.7);
}
.ring-offset-blue-200\/75 {
  --tw-ring-offset-color: rgba(191, 219, 254, 0.75);
}
.ring-offset-blue-200\/80 {
  --tw-ring-offset-color: rgba(191, 219, 254, 0.8);
}
.ring-offset-blue-200\/85 {
  --tw-ring-offset-color: rgba(191, 219, 254, 0.85);
}
.ring-offset-blue-200\/90 {
  --tw-ring-offset-color: rgba(191, 219, 254, 0.9);
}
.ring-offset-blue-200\/95 {
  --tw-ring-offset-color: rgba(191, 219, 254, 0.95);
}
.ring-offset-blue-300 {
  --tw-ring-offset-color: #93c5fd;
}
.ring-offset-blue-300\/0 {
  --tw-ring-offset-color: rgba(147, 197, 253, 0);
}
.ring-offset-blue-300\/10 {
  --tw-ring-offset-color: rgba(147, 197, 253, 0.1);
}
.ring-offset-blue-300\/100 {
  --tw-ring-offset-color: rgba(147, 197, 253, 1);
}
.ring-offset-blue-300\/15 {
  --tw-ring-offset-color: rgba(147, 197, 253, 0.15);
}
.ring-offset-blue-300\/20 {
  --tw-ring-offset-color: rgba(147, 197, 253, 0.2);
}
.ring-offset-blue-300\/25 {
  --tw-ring-offset-color: rgba(147, 197, 253, 0.25);
}
.ring-offset-blue-300\/30 {
  --tw-ring-offset-color: rgba(147, 197, 253, 0.3);
}
.ring-offset-blue-300\/35 {
  --tw-ring-offset-color: rgba(147, 197, 253, 0.35);
}
.ring-offset-blue-300\/40 {
  --tw-ring-offset-color: rgba(147, 197, 253, 0.4);
}
.ring-offset-blue-300\/45 {
  --tw-ring-offset-color: rgba(147, 197, 253, 0.45);
}
.ring-offset-blue-300\/5 {
  --tw-ring-offset-color: rgba(147, 197, 253, 0.05);
}
.ring-offset-blue-300\/50 {
  --tw-ring-offset-color: rgba(147, 197, 253, 0.5);
}
.ring-offset-blue-300\/55 {
  --tw-ring-offset-color: rgba(147, 197, 253, 0.55);
}
.ring-offset-blue-300\/60 {
  --tw-ring-offset-color: rgba(147, 197, 253, 0.6);
}
.ring-offset-blue-300\/65 {
  --tw-ring-offset-color: rgba(147, 197, 253, 0.65);
}
.ring-offset-blue-300\/70 {
  --tw-ring-offset-color: rgba(147, 197, 253, 0.7);
}
.ring-offset-blue-300\/75 {
  --tw-ring-offset-color: rgba(147, 197, 253, 0.75);
}
.ring-offset-blue-300\/80 {
  --tw-ring-offset-color: rgba(147, 197, 253, 0.8);
}
.ring-offset-blue-300\/85 {
  --tw-ring-offset-color: rgba(147, 197, 253, 0.85);
}
.ring-offset-blue-300\/90 {
  --tw-ring-offset-color: rgba(147, 197, 253, 0.9);
}
.ring-offset-blue-300\/95 {
  --tw-ring-offset-color: rgba(147, 197, 253, 0.95);
}
.ring-offset-blue-400 {
  --tw-ring-offset-color: #60a5fa;
}
.ring-offset-blue-400\/0 {
  --tw-ring-offset-color: rgba(96, 165, 250, 0);
}
.ring-offset-blue-400\/10 {
  --tw-ring-offset-color: rgba(96, 165, 250, 0.1);
}
.ring-offset-blue-400\/100 {
  --tw-ring-offset-color: rgba(96, 165, 250, 1);
}
.ring-offset-blue-400\/15 {
  --tw-ring-offset-color: rgba(96, 165, 250, 0.15);
}
.ring-offset-blue-400\/20 {
  --tw-ring-offset-color: rgba(96, 165, 250, 0.2);
}
.ring-offset-blue-400\/25 {
  --tw-ring-offset-color: rgba(96, 165, 250, 0.25);
}
.ring-offset-blue-400\/30 {
  --tw-ring-offset-color: rgba(96, 165, 250, 0.3);
}
.ring-offset-blue-400\/35 {
  --tw-ring-offset-color: rgba(96, 165, 250, 0.35);
}
.ring-offset-blue-400\/40 {
  --tw-ring-offset-color: rgba(96, 165, 250, 0.4);
}
.ring-offset-blue-400\/45 {
  --tw-ring-offset-color: rgba(96, 165, 250, 0.45);
}
.ring-offset-blue-400\/5 {
  --tw-ring-offset-color: rgba(96, 165, 250, 0.05);
}
.ring-offset-blue-400\/50 {
  --tw-ring-offset-color: rgba(96, 165, 250, 0.5);
}
.ring-offset-blue-400\/55 {
  --tw-ring-offset-color: rgba(96, 165, 250, 0.55);
}
.ring-offset-blue-400\/60 {
  --tw-ring-offset-color: rgba(96, 165, 250, 0.6);
}
.ring-offset-blue-400\/65 {
  --tw-ring-offset-color: rgba(96, 165, 250, 0.65);
}
.ring-offset-blue-400\/70 {
  --tw-ring-offset-color: rgba(96, 165, 250, 0.7);
}
.ring-offset-blue-400\/75 {
  --tw-ring-offset-color: rgba(96, 165, 250, 0.75);
}
.ring-offset-blue-400\/80 {
  --tw-ring-offset-color: rgba(96, 165, 250, 0.8);
}
.ring-offset-blue-400\/85 {
  --tw-ring-offset-color: rgba(96, 165, 250, 0.85);
}
.ring-offset-blue-400\/90 {
  --tw-ring-offset-color: rgba(96, 165, 250, 0.9);
}
.ring-offset-blue-400\/95 {
  --tw-ring-offset-color: rgba(96, 165, 250, 0.95);
}
.ring-offset-blue-50 {
  --tw-ring-offset-color: #eff6ff;
}
.ring-offset-blue-50\/0 {
  --tw-ring-offset-color: rgba(239, 246, 255, 0);
}
.ring-offset-blue-50\/10 {
  --tw-ring-offset-color: rgba(239, 246, 255, 0.1);
}
.ring-offset-blue-50\/100 {
  --tw-ring-offset-color: rgba(239, 246, 255, 1);
}
.ring-offset-blue-50\/15 {
  --tw-ring-offset-color: rgba(239, 246, 255, 0.15);
}
.ring-offset-blue-50\/20 {
  --tw-ring-offset-color: rgba(239, 246, 255, 0.2);
}
.ring-offset-blue-50\/25 {
  --tw-ring-offset-color: rgba(239, 246, 255, 0.25);
}
.ring-offset-blue-50\/30 {
  --tw-ring-offset-color: rgba(239, 246, 255, 0.3);
}
.ring-offset-blue-50\/35 {
  --tw-ring-offset-color: rgba(239, 246, 255, 0.35);
}
.ring-offset-blue-50\/40 {
  --tw-ring-offset-color: rgba(239, 246, 255, 0.4);
}
.ring-offset-blue-50\/45 {
  --tw-ring-offset-color: rgba(239, 246, 255, 0.45);
}
.ring-offset-blue-50\/5 {
  --tw-ring-offset-color: rgba(239, 246, 255, 0.05);
}
.ring-offset-blue-50\/50 {
  --tw-ring-offset-color: rgba(239, 246, 255, 0.5);
}
.ring-offset-blue-50\/55 {
  --tw-ring-offset-color: rgba(239, 246, 255, 0.55);
}
.ring-offset-blue-50\/60 {
  --tw-ring-offset-color: rgba(239, 246, 255, 0.6);
}
.ring-offset-blue-50\/65 {
  --tw-ring-offset-color: rgba(239, 246, 255, 0.65);
}
.ring-offset-blue-50\/70 {
  --tw-ring-offset-color: rgba(239, 246, 255, 0.7);
}
.ring-offset-blue-50\/75 {
  --tw-ring-offset-color: rgba(239, 246, 255, 0.75);
}
.ring-offset-blue-50\/80 {
  --tw-ring-offset-color: rgba(239, 246, 255, 0.8);
}
.ring-offset-blue-50\/85 {
  --tw-ring-offset-color: rgba(239, 246, 255, 0.85);
}
.ring-offset-blue-50\/90 {
  --tw-ring-offset-color: rgba(239, 246, 255, 0.9);
}
.ring-offset-blue-50\/95 {
  --tw-ring-offset-color: rgba(239, 246, 255, 0.95);
}
.ring-offset-blue-500 {
  --tw-ring-offset-color: #3b82f6;
}
.ring-offset-blue-500\/0 {
  --tw-ring-offset-color: rgba(59, 130, 246, 0);
}
.ring-offset-blue-500\/10 {
  --tw-ring-offset-color: rgba(59, 130, 246, 0.1);
}
.ring-offset-blue-500\/100 {
  --tw-ring-offset-color: rgba(59, 130, 246, 1);
}
.ring-offset-blue-500\/15 {
  --tw-ring-offset-color: rgba(59, 130, 246, 0.15);
}
.ring-offset-blue-500\/20 {
  --tw-ring-offset-color: rgba(59, 130, 246, 0.2);
}
.ring-offset-blue-500\/25 {
  --tw-ring-offset-color: rgba(59, 130, 246, 0.25);
}
.ring-offset-blue-500\/30 {
  --tw-ring-offset-color: rgba(59, 130, 246, 0.3);
}
.ring-offset-blue-500\/35 {
  --tw-ring-offset-color: rgba(59, 130, 246, 0.35);
}
.ring-offset-blue-500\/40 {
  --tw-ring-offset-color: rgba(59, 130, 246, 0.4);
}
.ring-offset-blue-500\/45 {
  --tw-ring-offset-color: rgba(59, 130, 246, 0.45);
}
.ring-offset-blue-500\/5 {
  --tw-ring-offset-color: rgba(59, 130, 246, 0.05);
}
.ring-offset-blue-500\/50 {
  --tw-ring-offset-color: rgba(59, 130, 246, 0.5);
}
.ring-offset-blue-500\/55 {
  --tw-ring-offset-color: rgba(59, 130, 246, 0.55);
}
.ring-offset-blue-500\/60 {
  --tw-ring-offset-color: rgba(59, 130, 246, 0.6);
}
.ring-offset-blue-500\/65 {
  --tw-ring-offset-color: rgba(59, 130, 246, 0.65);
}
.ring-offset-blue-500\/70 {
  --tw-ring-offset-color: rgba(59, 130, 246, 0.7);
}
.ring-offset-blue-500\/75 {
  --tw-ring-offset-color: rgba(59, 130, 246, 0.75);
}
.ring-offset-blue-500\/80 {
  --tw-ring-offset-color: rgba(59, 130, 246, 0.8);
}
.ring-offset-blue-500\/85 {
  --tw-ring-offset-color: rgba(59, 130, 246, 0.85);
}
.ring-offset-blue-500\/90 {
  --tw-ring-offset-color: rgba(59, 130, 246, 0.9);
}
.ring-offset-blue-500\/95 {
  --tw-ring-offset-color: rgba(59, 130, 246, 0.95);
}
.ring-offset-blue-600 {
  --tw-ring-offset-color: #2563eb;
}
.ring-offset-blue-600\/0 {
  --tw-ring-offset-color: rgba(37, 99, 235, 0);
}
.ring-offset-blue-600\/10 {
  --tw-ring-offset-color: rgba(37, 99, 235, 0.1);
}
.ring-offset-blue-600\/100 {
  --tw-ring-offset-color: rgba(37, 99, 235, 1);
}
.ring-offset-blue-600\/15 {
  --tw-ring-offset-color: rgba(37, 99, 235, 0.15);
}
.ring-offset-blue-600\/20 {
  --tw-ring-offset-color: rgba(37, 99, 235, 0.2);
}
.ring-offset-blue-600\/25 {
  --tw-ring-offset-color: rgba(37, 99, 235, 0.25);
}
.ring-offset-blue-600\/30 {
  --tw-ring-offset-color: rgba(37, 99, 235, 0.3);
}
.ring-offset-blue-600\/35 {
  --tw-ring-offset-color: rgba(37, 99, 235, 0.35);
}
.ring-offset-blue-600\/40 {
  --tw-ring-offset-color: rgba(37, 99, 235, 0.4);
}
.ring-offset-blue-600\/45 {
  --tw-ring-offset-color: rgba(37, 99, 235, 0.45);
}
.ring-offset-blue-600\/5 {
  --tw-ring-offset-color: rgba(37, 99, 235, 0.05);
}
.ring-offset-blue-600\/50 {
  --tw-ring-offset-color: rgba(37, 99, 235, 0.5);
}
.ring-offset-blue-600\/55 {
  --tw-ring-offset-color: rgba(37, 99, 235, 0.55);
}
.ring-offset-blue-600\/60 {
  --tw-ring-offset-color: rgba(37, 99, 235, 0.6);
}
.ring-offset-blue-600\/65 {
  --tw-ring-offset-color: rgba(37, 99, 235, 0.65);
}
.ring-offset-blue-600\/70 {
  --tw-ring-offset-color: rgba(37, 99, 235, 0.7);
}
.ring-offset-blue-600\/75 {
  --tw-ring-offset-color: rgba(37, 99, 235, 0.75);
}
.ring-offset-blue-600\/80 {
  --tw-ring-offset-color: rgba(37, 99, 235, 0.8);
}
.ring-offset-blue-600\/85 {
  --tw-ring-offset-color: rgba(37, 99, 235, 0.85);
}
.ring-offset-blue-600\/90 {
  --tw-ring-offset-color: rgba(37, 99, 235, 0.9);
}
.ring-offset-blue-600\/95 {
  --tw-ring-offset-color: rgba(37, 99, 235, 0.95);
}
.ring-offset-blue-700 {
  --tw-ring-offset-color: #1d4ed8;
}
.ring-offset-blue-700\/0 {
  --tw-ring-offset-color: rgba(29, 78, 216, 0);
}
.ring-offset-blue-700\/10 {
  --tw-ring-offset-color: rgba(29, 78, 216, 0.1);
}
.ring-offset-blue-700\/100 {
  --tw-ring-offset-color: rgba(29, 78, 216, 1);
}
.ring-offset-blue-700\/15 {
  --tw-ring-offset-color: rgba(29, 78, 216, 0.15);
}
.ring-offset-blue-700\/20 {
  --tw-ring-offset-color: rgba(29, 78, 216, 0.2);
}
.ring-offset-blue-700\/25 {
  --tw-ring-offset-color: rgba(29, 78, 216, 0.25);
}
.ring-offset-blue-700\/30 {
  --tw-ring-offset-color: rgba(29, 78, 216, 0.3);
}
.ring-offset-blue-700\/35 {
  --tw-ring-offset-color: rgba(29, 78, 216, 0.35);
}
.ring-offset-blue-700\/40 {
  --tw-ring-offset-color: rgba(29, 78, 216, 0.4);
}
.ring-offset-blue-700\/45 {
  --tw-ring-offset-color: rgba(29, 78, 216, 0.45);
}
.ring-offset-blue-700\/5 {
  --tw-ring-offset-color: rgba(29, 78, 216, 0.05);
}
.ring-offset-blue-700\/50 {
  --tw-ring-offset-color: rgba(29, 78, 216, 0.5);
}
.ring-offset-blue-700\/55 {
  --tw-ring-offset-color: rgba(29, 78, 216, 0.55);
}
.ring-offset-blue-700\/60 {
  --tw-ring-offset-color: rgba(29, 78, 216, 0.6);
}
.ring-offset-blue-700\/65 {
  --tw-ring-offset-color: rgba(29, 78, 216, 0.65);
}
.ring-offset-blue-700\/70 {
  --tw-ring-offset-color: rgba(29, 78, 216, 0.7);
}
.ring-offset-blue-700\/75 {
  --tw-ring-offset-color: rgba(29, 78, 216, 0.75);
}
.ring-offset-blue-700\/80 {
  --tw-ring-offset-color: rgba(29, 78, 216, 0.8);
}
.ring-offset-blue-700\/85 {
  --tw-ring-offset-color: rgba(29, 78, 216, 0.85);
}
.ring-offset-blue-700\/90 {
  --tw-ring-offset-color: rgba(29, 78, 216, 0.9);
}
.ring-offset-blue-700\/95 {
  --tw-ring-offset-color: rgba(29, 78, 216, 0.95);
}
.ring-offset-blue-800 {
  --tw-ring-offset-color: #1e40af;
}
.ring-offset-blue-800\/0 {
  --tw-ring-offset-color: rgba(30, 64, 175, 0);
}
.ring-offset-blue-800\/10 {
  --tw-ring-offset-color: rgba(30, 64, 175, 0.1);
}
.ring-offset-blue-800\/100 {
  --tw-ring-offset-color: rgba(30, 64, 175, 1);
}
.ring-offset-blue-800\/15 {
  --tw-ring-offset-color: rgba(30, 64, 175, 0.15);
}
.ring-offset-blue-800\/20 {
  --tw-ring-offset-color: rgba(30, 64, 175, 0.2);
}
.ring-offset-blue-800\/25 {
  --tw-ring-offset-color: rgba(30, 64, 175, 0.25);
}
.ring-offset-blue-800\/30 {
  --tw-ring-offset-color: rgba(30, 64, 175, 0.3);
}
.ring-offset-blue-800\/35 {
  --tw-ring-offset-color: rgba(30, 64, 175, 0.35);
}
.ring-offset-blue-800\/40 {
  --tw-ring-offset-color: rgba(30, 64, 175, 0.4);
}
.ring-offset-blue-800\/45 {
  --tw-ring-offset-color: rgba(30, 64, 175, 0.45);
}
.ring-offset-blue-800\/5 {
  --tw-ring-offset-color: rgba(30, 64, 175, 0.05);
}
.ring-offset-blue-800\/50 {
  --tw-ring-offset-color: rgba(30, 64, 175, 0.5);
}
.ring-offset-blue-800\/55 {
  --tw-ring-offset-color: rgba(30, 64, 175, 0.55);
}
.ring-offset-blue-800\/60 {
  --tw-ring-offset-color: rgba(30, 64, 175, 0.6);
}
.ring-offset-blue-800\/65 {
  --tw-ring-offset-color: rgba(30, 64, 175, 0.65);
}
.ring-offset-blue-800\/70 {
  --tw-ring-offset-color: rgba(30, 64, 175, 0.7);
}
.ring-offset-blue-800\/75 {
  --tw-ring-offset-color: rgba(30, 64, 175, 0.75);
}
.ring-offset-blue-800\/80 {
  --tw-ring-offset-color: rgba(30, 64, 175, 0.8);
}
.ring-offset-blue-800\/85 {
  --tw-ring-offset-color: rgba(30, 64, 175, 0.85);
}
.ring-offset-blue-800\/90 {
  --tw-ring-offset-color: rgba(30, 64, 175, 0.9);
}
.ring-offset-blue-800\/95 {
  --tw-ring-offset-color: rgba(30, 64, 175, 0.95);
}
.ring-offset-blue-900 {
  --tw-ring-offset-color: #1e3a8a;
}
.ring-offset-blue-900\/0 {
  --tw-ring-offset-color: rgba(30, 58, 138, 0);
}
.ring-offset-blue-900\/10 {
  --tw-ring-offset-color: rgba(30, 58, 138, 0.1);
}
.ring-offset-blue-900\/100 {
  --tw-ring-offset-color: rgba(30, 58, 138, 1);
}
.ring-offset-blue-900\/15 {
  --tw-ring-offset-color: rgba(30, 58, 138, 0.15);
}
.ring-offset-blue-900\/20 {
  --tw-ring-offset-color: rgba(30, 58, 138, 0.2);
}
.ring-offset-blue-900\/25 {
  --tw-ring-offset-color: rgba(30, 58, 138, 0.25);
}
.ring-offset-blue-900\/30 {
  --tw-ring-offset-color: rgba(30, 58, 138, 0.3);
}
.ring-offset-blue-900\/35 {
  --tw-ring-offset-color: rgba(30, 58, 138, 0.35);
}
.ring-offset-blue-900\/40 {
  --tw-ring-offset-color: rgba(30, 58, 138, 0.4);
}
.ring-offset-blue-900\/45 {
  --tw-ring-offset-color: rgba(30, 58, 138, 0.45);
}
.ring-offset-blue-900\/5 {
  --tw-ring-offset-color: rgba(30, 58, 138, 0.05);
}
.ring-offset-blue-900\/50 {
  --tw-ring-offset-color: rgba(30, 58, 138, 0.5);
}
.ring-offset-blue-900\/55 {
  --tw-ring-offset-color: rgba(30, 58, 138, 0.55);
}
.ring-offset-blue-900\/60 {
  --tw-ring-offset-color: rgba(30, 58, 138, 0.6);
}
.ring-offset-blue-900\/65 {
  --tw-ring-offset-color: rgba(30, 58, 138, 0.65);
}
.ring-offset-blue-900\/70 {
  --tw-ring-offset-color: rgba(30, 58, 138, 0.7);
}
.ring-offset-blue-900\/75 {
  --tw-ring-offset-color: rgba(30, 58, 138, 0.75);
}
.ring-offset-blue-900\/80 {
  --tw-ring-offset-color: rgba(30, 58, 138, 0.8);
}
.ring-offset-blue-900\/85 {
  --tw-ring-offset-color: rgba(30, 58, 138, 0.85);
}
.ring-offset-blue-900\/90 {
  --tw-ring-offset-color: rgba(30, 58, 138, 0.9);
}
.ring-offset-blue-900\/95 {
  --tw-ring-offset-color: rgba(30, 58, 138, 0.95);
}
.ring-offset-blue-950 {
  --tw-ring-offset-color: #172554;
}
.ring-offset-blue-950\/0 {
  --tw-ring-offset-color: rgba(23, 37, 84, 0);
}
.ring-offset-blue-950\/10 {
  --tw-ring-offset-color: rgba(23, 37, 84, 0.1);
}
.ring-offset-blue-950\/100 {
  --tw-ring-offset-color: rgba(23, 37, 84, 1);
}
.ring-offset-blue-950\/15 {
  --tw-ring-offset-color: rgba(23, 37, 84, 0.15);
}
.ring-offset-blue-950\/20 {
  --tw-ring-offset-color: rgba(23, 37, 84, 0.2);
}
.ring-offset-blue-950\/25 {
  --tw-ring-offset-color: rgba(23, 37, 84, 0.25);
}
.ring-offset-blue-950\/30 {
  --tw-ring-offset-color: rgba(23, 37, 84, 0.3);
}
.ring-offset-blue-950\/35 {
  --tw-ring-offset-color: rgba(23, 37, 84, 0.35);
}
.ring-offset-blue-950\/40 {
  --tw-ring-offset-color: rgba(23, 37, 84, 0.4);
}
.ring-offset-blue-950\/45 {
  --tw-ring-offset-color: rgba(23, 37, 84, 0.45);
}
.ring-offset-blue-950\/5 {
  --tw-ring-offset-color: rgba(23, 37, 84, 0.05);
}
.ring-offset-blue-950\/50 {
  --tw-ring-offset-color: rgba(23, 37, 84, 0.5);
}
.ring-offset-blue-950\/55 {
  --tw-ring-offset-color: rgba(23, 37, 84, 0.55);
}
.ring-offset-blue-950\/60 {
  --tw-ring-offset-color: rgba(23, 37, 84, 0.6);
}
.ring-offset-blue-950\/65 {
  --tw-ring-offset-color: rgba(23, 37, 84, 0.65);
}
.ring-offset-blue-950\/70 {
  --tw-ring-offset-color: rgba(23, 37, 84, 0.7);
}
.ring-offset-blue-950\/75 {
  --tw-ring-offset-color: rgba(23, 37, 84, 0.75);
}
.ring-offset-blue-950\/80 {
  --tw-ring-offset-color: rgba(23, 37, 84, 0.8);
}
.ring-offset-blue-950\/85 {
  --tw-ring-offset-color: rgba(23, 37, 84, 0.85);
}
.ring-offset-blue-950\/90 {
  --tw-ring-offset-color: rgba(23, 37, 84, 0.9);
}
.ring-offset-blue-950\/95 {
  --tw-ring-offset-color: rgba(23, 37, 84, 0.95);
}
.ring-offset-current {
  --tw-ring-offset-color: currentColor;
}
.ring-offset-cyan-100 {
  --tw-ring-offset-color: #cffafe;
}
.ring-offset-cyan-100\/0 {
  --tw-ring-offset-color: rgba(207, 250, 254, 0);
}
.ring-offset-cyan-100\/10 {
  --tw-ring-offset-color: rgba(207, 250, 254, 0.1);
}
.ring-offset-cyan-100\/100 {
  --tw-ring-offset-color: rgba(207, 250, 254, 1);
}
.ring-offset-cyan-100\/15 {
  --tw-ring-offset-color: rgba(207, 250, 254, 0.15);
}
.ring-offset-cyan-100\/20 {
  --tw-ring-offset-color: rgba(207, 250, 254, 0.2);
}
.ring-offset-cyan-100\/25 {
  --tw-ring-offset-color: rgba(207, 250, 254, 0.25);
}
.ring-offset-cyan-100\/30 {
  --tw-ring-offset-color: rgba(207, 250, 254, 0.3);
}
.ring-offset-cyan-100\/35 {
  --tw-ring-offset-color: rgba(207, 250, 254, 0.35);
}
.ring-offset-cyan-100\/40 {
  --tw-ring-offset-color: rgba(207, 250, 254, 0.4);
}
.ring-offset-cyan-100\/45 {
  --tw-ring-offset-color: rgba(207, 250, 254, 0.45);
}
.ring-offset-cyan-100\/5 {
  --tw-ring-offset-color: rgba(207, 250, 254, 0.05);
}
.ring-offset-cyan-100\/50 {
  --tw-ring-offset-color: rgba(207, 250, 254, 0.5);
}
.ring-offset-cyan-100\/55 {
  --tw-ring-offset-color: rgba(207, 250, 254, 0.55);
}
.ring-offset-cyan-100\/60 {
  --tw-ring-offset-color: rgba(207, 250, 254, 0.6);
}
.ring-offset-cyan-100\/65 {
  --tw-ring-offset-color: rgba(207, 250, 254, 0.65);
}
.ring-offset-cyan-100\/70 {
  --tw-ring-offset-color: rgba(207, 250, 254, 0.7);
}
.ring-offset-cyan-100\/75 {
  --tw-ring-offset-color: rgba(207, 250, 254, 0.75);
}
.ring-offset-cyan-100\/80 {
  --tw-ring-offset-color: rgba(207, 250, 254, 0.8);
}
.ring-offset-cyan-100\/85 {
  --tw-ring-offset-color: rgba(207, 250, 254, 0.85);
}
.ring-offset-cyan-100\/90 {
  --tw-ring-offset-color: rgba(207, 250, 254, 0.9);
}
.ring-offset-cyan-100\/95 {
  --tw-ring-offset-color: rgba(207, 250, 254, 0.95);
}
.ring-offset-cyan-200 {
  --tw-ring-offset-color: #a5f3fc;
}
.ring-offset-cyan-200\/0 {
  --tw-ring-offset-color: rgba(165, 243, 252, 0);
}
.ring-offset-cyan-200\/10 {
  --tw-ring-offset-color: rgba(165, 243, 252, 0.1);
}
.ring-offset-cyan-200\/100 {
  --tw-ring-offset-color: rgba(165, 243, 252, 1);
}
.ring-offset-cyan-200\/15 {
  --tw-ring-offset-color: rgba(165, 243, 252, 0.15);
}
.ring-offset-cyan-200\/20 {
  --tw-ring-offset-color: rgba(165, 243, 252, 0.2);
}
.ring-offset-cyan-200\/25 {
  --tw-ring-offset-color: rgba(165, 243, 252, 0.25);
}
.ring-offset-cyan-200\/30 {
  --tw-ring-offset-color: rgba(165, 243, 252, 0.3);
}
.ring-offset-cyan-200\/35 {
  --tw-ring-offset-color: rgba(165, 243, 252, 0.35);
}
.ring-offset-cyan-200\/40 {
  --tw-ring-offset-color: rgba(165, 243, 252, 0.4);
}
.ring-offset-cyan-200\/45 {
  --tw-ring-offset-color: rgba(165, 243, 252, 0.45);
}
.ring-offset-cyan-200\/5 {
  --tw-ring-offset-color: rgba(165, 243, 252, 0.05);
}
.ring-offset-cyan-200\/50 {
  --tw-ring-offset-color: rgba(165, 243, 252, 0.5);
}
.ring-offset-cyan-200\/55 {
  --tw-ring-offset-color: rgba(165, 243, 252, 0.55);
}
.ring-offset-cyan-200\/60 {
  --tw-ring-offset-color: rgba(165, 243, 252, 0.6);
}
.ring-offset-cyan-200\/65 {
  --tw-ring-offset-color: rgba(165, 243, 252, 0.65);
}
.ring-offset-cyan-200\/70 {
  --tw-ring-offset-color: rgba(165, 243, 252, 0.7);
}
.ring-offset-cyan-200\/75 {
  --tw-ring-offset-color: rgba(165, 243, 252, 0.75);
}
.ring-offset-cyan-200\/80 {
  --tw-ring-offset-color: rgba(165, 243, 252, 0.8);
}
.ring-offset-cyan-200\/85 {
  --tw-ring-offset-color: rgba(165, 243, 252, 0.85);
}
.ring-offset-cyan-200\/90 {
  --tw-ring-offset-color: rgba(165, 243, 252, 0.9);
}
.ring-offset-cyan-200\/95 {
  --tw-ring-offset-color: rgba(165, 243, 252, 0.95);
}
.ring-offset-cyan-300 {
  --tw-ring-offset-color: #67e8f9;
}
.ring-offset-cyan-300\/0 {
  --tw-ring-offset-color: rgba(103, 232, 249, 0);
}
.ring-offset-cyan-300\/10 {
  --tw-ring-offset-color: rgba(103, 232, 249, 0.1);
}
.ring-offset-cyan-300\/100 {
  --tw-ring-offset-color: rgba(103, 232, 249, 1);
}
.ring-offset-cyan-300\/15 {
  --tw-ring-offset-color: rgba(103, 232, 249, 0.15);
}
.ring-offset-cyan-300\/20 {
  --tw-ring-offset-color: rgba(103, 232, 249, 0.2);
}
.ring-offset-cyan-300\/25 {
  --tw-ring-offset-color: rgba(103, 232, 249, 0.25);
}
.ring-offset-cyan-300\/30 {
  --tw-ring-offset-color: rgba(103, 232, 249, 0.3);
}
.ring-offset-cyan-300\/35 {
  --tw-ring-offset-color: rgba(103, 232, 249, 0.35);
}
.ring-offset-cyan-300\/40 {
  --tw-ring-offset-color: rgba(103, 232, 249, 0.4);
}
.ring-offset-cyan-300\/45 {
  --tw-ring-offset-color: rgba(103, 232, 249, 0.45);
}
.ring-offset-cyan-300\/5 {
  --tw-ring-offset-color: rgba(103, 232, 249, 0.05);
}
.ring-offset-cyan-300\/50 {
  --tw-ring-offset-color: rgba(103, 232, 249, 0.5);
}
.ring-offset-cyan-300\/55 {
  --tw-ring-offset-color: rgba(103, 232, 249, 0.55);
}
.ring-offset-cyan-300\/60 {
  --tw-ring-offset-color: rgba(103, 232, 249, 0.6);
}
.ring-offset-cyan-300\/65 {
  --tw-ring-offset-color: rgba(103, 232, 249, 0.65);
}
.ring-offset-cyan-300\/70 {
  --tw-ring-offset-color: rgba(103, 232, 249, 0.7);
}
.ring-offset-cyan-300\/75 {
  --tw-ring-offset-color: rgba(103, 232, 249, 0.75);
}
.ring-offset-cyan-300\/80 {
  --tw-ring-offset-color: rgba(103, 232, 249, 0.8);
}
.ring-offset-cyan-300\/85 {
  --tw-ring-offset-color: rgba(103, 232, 249, 0.85);
}
.ring-offset-cyan-300\/90 {
  --tw-ring-offset-color: rgba(103, 232, 249, 0.9);
}
.ring-offset-cyan-300\/95 {
  --tw-ring-offset-color: rgba(103, 232, 249, 0.95);
}
.ring-offset-cyan-400 {
  --tw-ring-offset-color: #22d3ee;
}
.ring-offset-cyan-400\/0 {
  --tw-ring-offset-color: rgba(34, 211, 238, 0);
}
.ring-offset-cyan-400\/10 {
  --tw-ring-offset-color: rgba(34, 211, 238, 0.1);
}
.ring-offset-cyan-400\/100 {
  --tw-ring-offset-color: rgba(34, 211, 238, 1);
}
.ring-offset-cyan-400\/15 {
  --tw-ring-offset-color: rgba(34, 211, 238, 0.15);
}
.ring-offset-cyan-400\/20 {
  --tw-ring-offset-color: rgba(34, 211, 238, 0.2);
}
.ring-offset-cyan-400\/25 {
  --tw-ring-offset-color: rgba(34, 211, 238, 0.25);
}
.ring-offset-cyan-400\/30 {
  --tw-ring-offset-color: rgba(34, 211, 238, 0.3);
}
.ring-offset-cyan-400\/35 {
  --tw-ring-offset-color: rgba(34, 211, 238, 0.35);
}
.ring-offset-cyan-400\/40 {
  --tw-ring-offset-color: rgba(34, 211, 238, 0.4);
}
.ring-offset-cyan-400\/45 {
  --tw-ring-offset-color: rgba(34, 211, 238, 0.45);
}
.ring-offset-cyan-400\/5 {
  --tw-ring-offset-color: rgba(34, 211, 238, 0.05);
}
.ring-offset-cyan-400\/50 {
  --tw-ring-offset-color: rgba(34, 211, 238, 0.5);
}
.ring-offset-cyan-400\/55 {
  --tw-ring-offset-color: rgba(34, 211, 238, 0.55);
}
.ring-offset-cyan-400\/60 {
  --tw-ring-offset-color: rgba(34, 211, 238, 0.6);
}
.ring-offset-cyan-400\/65 {
  --tw-ring-offset-color: rgba(34, 211, 238, 0.65);
}
.ring-offset-cyan-400\/70 {
  --tw-ring-offset-color: rgba(34, 211, 238, 0.7);
}
.ring-offset-cyan-400\/75 {
  --tw-ring-offset-color: rgba(34, 211, 238, 0.75);
}
.ring-offset-cyan-400\/80 {
  --tw-ring-offset-color: rgba(34, 211, 238, 0.8);
}
.ring-offset-cyan-400\/85 {
  --tw-ring-offset-color: rgba(34, 211, 238, 0.85);
}
.ring-offset-cyan-400\/90 {
  --tw-ring-offset-color: rgba(34, 211, 238, 0.9);
}
.ring-offset-cyan-400\/95 {
  --tw-ring-offset-color: rgba(34, 211, 238, 0.95);
}
.ring-offset-cyan-50 {
  --tw-ring-offset-color: #ecfeff;
}
.ring-offset-cyan-50\/0 {
  --tw-ring-offset-color: rgba(236, 254, 255, 0);
}
.ring-offset-cyan-50\/10 {
  --tw-ring-offset-color: rgba(236, 254, 255, 0.1);
}
.ring-offset-cyan-50\/100 {
  --tw-ring-offset-color: rgba(236, 254, 255, 1);
}
.ring-offset-cyan-50\/15 {
  --tw-ring-offset-color: rgba(236, 254, 255, 0.15);
}
.ring-offset-cyan-50\/20 {
  --tw-ring-offset-color: rgba(236, 254, 255, 0.2);
}
.ring-offset-cyan-50\/25 {
  --tw-ring-offset-color: rgba(236, 254, 255, 0.25);
}
.ring-offset-cyan-50\/30 {
  --tw-ring-offset-color: rgba(236, 254, 255, 0.3);
}
.ring-offset-cyan-50\/35 {
  --tw-ring-offset-color: rgba(236, 254, 255, 0.35);
}
.ring-offset-cyan-50\/40 {
  --tw-ring-offset-color: rgba(236, 254, 255, 0.4);
}
.ring-offset-cyan-50\/45 {
  --tw-ring-offset-color: rgba(236, 254, 255, 0.45);
}
.ring-offset-cyan-50\/5 {
  --tw-ring-offset-color: rgba(236, 254, 255, 0.05);
}
.ring-offset-cyan-50\/50 {
  --tw-ring-offset-color: rgba(236, 254, 255, 0.5);
}
.ring-offset-cyan-50\/55 {
  --tw-ring-offset-color: rgba(236, 254, 255, 0.55);
}
.ring-offset-cyan-50\/60 {
  --tw-ring-offset-color: rgba(236, 254, 255, 0.6);
}
.ring-offset-cyan-50\/65 {
  --tw-ring-offset-color: rgba(236, 254, 255, 0.65);
}
.ring-offset-cyan-50\/70 {
  --tw-ring-offset-color: rgba(236, 254, 255, 0.7);
}
.ring-offset-cyan-50\/75 {
  --tw-ring-offset-color: rgba(236, 254, 255, 0.75);
}
.ring-offset-cyan-50\/80 {
  --tw-ring-offset-color: rgba(236, 254, 255, 0.8);
}
.ring-offset-cyan-50\/85 {
  --tw-ring-offset-color: rgba(236, 254, 255, 0.85);
}
.ring-offset-cyan-50\/90 {
  --tw-ring-offset-color: rgba(236, 254, 255, 0.9);
}
.ring-offset-cyan-50\/95 {
  --tw-ring-offset-color: rgba(236, 254, 255, 0.95);
}
.ring-offset-cyan-500 {
  --tw-ring-offset-color: #06b6d4;
}
.ring-offset-cyan-500\/0 {
  --tw-ring-offset-color: rgba(6, 182, 212, 0);
}
.ring-offset-cyan-500\/10 {
  --tw-ring-offset-color: rgba(6, 182, 212, 0.1);
}
.ring-offset-cyan-500\/100 {
  --tw-ring-offset-color: rgba(6, 182, 212, 1);
}
.ring-offset-cyan-500\/15 {
  --tw-ring-offset-color: rgba(6, 182, 212, 0.15);
}
.ring-offset-cyan-500\/20 {
  --tw-ring-offset-color: rgba(6, 182, 212, 0.2);
}
.ring-offset-cyan-500\/25 {
  --tw-ring-offset-color: rgba(6, 182, 212, 0.25);
}
.ring-offset-cyan-500\/30 {
  --tw-ring-offset-color: rgba(6, 182, 212, 0.3);
}
.ring-offset-cyan-500\/35 {
  --tw-ring-offset-color: rgba(6, 182, 212, 0.35);
}
.ring-offset-cyan-500\/40 {
  --tw-ring-offset-color: rgba(6, 182, 212, 0.4);
}
.ring-offset-cyan-500\/45 {
  --tw-ring-offset-color: rgba(6, 182, 212, 0.45);
}
.ring-offset-cyan-500\/5 {
  --tw-ring-offset-color: rgba(6, 182, 212, 0.05);
}
.ring-offset-cyan-500\/50 {
  --tw-ring-offset-color: rgba(6, 182, 212, 0.5);
}
.ring-offset-cyan-500\/55 {
  --tw-ring-offset-color: rgba(6, 182, 212, 0.55);
}
.ring-offset-cyan-500\/60 {
  --tw-ring-offset-color: rgba(6, 182, 212, 0.6);
}
.ring-offset-cyan-500\/65 {
  --tw-ring-offset-color: rgba(6, 182, 212, 0.65);
}
.ring-offset-cyan-500\/70 {
  --tw-ring-offset-color: rgba(6, 182, 212, 0.7);
}
.ring-offset-cyan-500\/75 {
  --tw-ring-offset-color: rgba(6, 182, 212, 0.75);
}
.ring-offset-cyan-500\/80 {
  --tw-ring-offset-color: rgba(6, 182, 212, 0.8);
}
.ring-offset-cyan-500\/85 {
  --tw-ring-offset-color: rgba(6, 182, 212, 0.85);
}
.ring-offset-cyan-500\/90 {
  --tw-ring-offset-color: rgba(6, 182, 212, 0.9);
}
.ring-offset-cyan-500\/95 {
  --tw-ring-offset-color: rgba(6, 182, 212, 0.95);
}
.ring-offset-cyan-600 {
  --tw-ring-offset-color: #0891b2;
}
.ring-offset-cyan-600\/0 {
  --tw-ring-offset-color: rgba(8, 145, 178, 0);
}
.ring-offset-cyan-600\/10 {
  --tw-ring-offset-color: rgba(8, 145, 178, 0.1);
}
.ring-offset-cyan-600\/100 {
  --tw-ring-offset-color: rgba(8, 145, 178, 1);
}
.ring-offset-cyan-600\/15 {
  --tw-ring-offset-color: rgba(8, 145, 178, 0.15);
}
.ring-offset-cyan-600\/20 {
  --tw-ring-offset-color: rgba(8, 145, 178, 0.2);
}
.ring-offset-cyan-600\/25 {
  --tw-ring-offset-color: rgba(8, 145, 178, 0.25);
}
.ring-offset-cyan-600\/30 {
  --tw-ring-offset-color: rgba(8, 145, 178, 0.3);
}
.ring-offset-cyan-600\/35 {
  --tw-ring-offset-color: rgba(8, 145, 178, 0.35);
}
.ring-offset-cyan-600\/40 {
  --tw-ring-offset-color: rgba(8, 145, 178, 0.4);
}
.ring-offset-cyan-600\/45 {
  --tw-ring-offset-color: rgba(8, 145, 178, 0.45);
}
.ring-offset-cyan-600\/5 {
  --tw-ring-offset-color: rgba(8, 145, 178, 0.05);
}
.ring-offset-cyan-600\/50 {
  --tw-ring-offset-color: rgba(8, 145, 178, 0.5);
}
.ring-offset-cyan-600\/55 {
  --tw-ring-offset-color: rgba(8, 145, 178, 0.55);
}
.ring-offset-cyan-600\/60 {
  --tw-ring-offset-color: rgba(8, 145, 178, 0.6);
}
.ring-offset-cyan-600\/65 {
  --tw-ring-offset-color: rgba(8, 145, 178, 0.65);
}
.ring-offset-cyan-600\/70 {
  --tw-ring-offset-color: rgba(8, 145, 178, 0.7);
}
.ring-offset-cyan-600\/75 {
  --tw-ring-offset-color: rgba(8, 145, 178, 0.75);
}
.ring-offset-cyan-600\/80 {
  --tw-ring-offset-color: rgba(8, 145, 178, 0.8);
}
.ring-offset-cyan-600\/85 {
  --tw-ring-offset-color: rgba(8, 145, 178, 0.85);
}
.ring-offset-cyan-600\/90 {
  --tw-ring-offset-color: rgba(8, 145, 178, 0.9);
}
.ring-offset-cyan-600\/95 {
  --tw-ring-offset-color: rgba(8, 145, 178, 0.95);
}
.ring-offset-cyan-700 {
  --tw-ring-offset-color: #0e7490;
}
.ring-offset-cyan-700\/0 {
  --tw-ring-offset-color: rgba(14, 116, 144, 0);
}
.ring-offset-cyan-700\/10 {
  --tw-ring-offset-color: rgba(14, 116, 144, 0.1);
}
.ring-offset-cyan-700\/100 {
  --tw-ring-offset-color: rgba(14, 116, 144, 1);
}
.ring-offset-cyan-700\/15 {
  --tw-ring-offset-color: rgba(14, 116, 144, 0.15);
}
.ring-offset-cyan-700\/20 {
  --tw-ring-offset-color: rgba(14, 116, 144, 0.2);
}
.ring-offset-cyan-700\/25 {
  --tw-ring-offset-color: rgba(14, 116, 144, 0.25);
}
.ring-offset-cyan-700\/30 {
  --tw-ring-offset-color: rgba(14, 116, 144, 0.3);
}
.ring-offset-cyan-700\/35 {
  --tw-ring-offset-color: rgba(14, 116, 144, 0.35);
}
.ring-offset-cyan-700\/40 {
  --tw-ring-offset-color: rgba(14, 116, 144, 0.4);
}
.ring-offset-cyan-700\/45 {
  --tw-ring-offset-color: rgba(14, 116, 144, 0.45);
}
.ring-offset-cyan-700\/5 {
  --tw-ring-offset-color: rgba(14, 116, 144, 0.05);
}
.ring-offset-cyan-700\/50 {
  --tw-ring-offset-color: rgba(14, 116, 144, 0.5);
}
.ring-offset-cyan-700\/55 {
  --tw-ring-offset-color: rgba(14, 116, 144, 0.55);
}
.ring-offset-cyan-700\/60 {
  --tw-ring-offset-color: rgba(14, 116, 144, 0.6);
}
.ring-offset-cyan-700\/65 {
  --tw-ring-offset-color: rgba(14, 116, 144, 0.65);
}
.ring-offset-cyan-700\/70 {
  --tw-ring-offset-color: rgba(14, 116, 144, 0.7);
}
.ring-offset-cyan-700\/75 {
  --tw-ring-offset-color: rgba(14, 116, 144, 0.75);
}
.ring-offset-cyan-700\/80 {
  --tw-ring-offset-color: rgba(14, 116, 144, 0.8);
}
.ring-offset-cyan-700\/85 {
  --tw-ring-offset-color: rgba(14, 116, 144, 0.85);
}
.ring-offset-cyan-700\/90 {
  --tw-ring-offset-color: rgba(14, 116, 144, 0.9);
}
.ring-offset-cyan-700\/95 {
  --tw-ring-offset-color: rgba(14, 116, 144, 0.95);
}
.ring-offset-cyan-800 {
  --tw-ring-offset-color: #155e75;
}
.ring-offset-cyan-800\/0 {
  --tw-ring-offset-color: rgba(21, 94, 117, 0);
}
.ring-offset-cyan-800\/10 {
  --tw-ring-offset-color: rgba(21, 94, 117, 0.1);
}
.ring-offset-cyan-800\/100 {
  --tw-ring-offset-color: rgba(21, 94, 117, 1);
}
.ring-offset-cyan-800\/15 {
  --tw-ring-offset-color: rgba(21, 94, 117, 0.15);
}
.ring-offset-cyan-800\/20 {
  --tw-ring-offset-color: rgba(21, 94, 117, 0.2);
}
.ring-offset-cyan-800\/25 {
  --tw-ring-offset-color: rgba(21, 94, 117, 0.25);
}
.ring-offset-cyan-800\/30 {
  --tw-ring-offset-color: rgba(21, 94, 117, 0.3);
}
.ring-offset-cyan-800\/35 {
  --tw-ring-offset-color: rgba(21, 94, 117, 0.35);
}
.ring-offset-cyan-800\/40 {
  --tw-ring-offset-color: rgba(21, 94, 117, 0.4);
}
.ring-offset-cyan-800\/45 {
  --tw-ring-offset-color: rgba(21, 94, 117, 0.45);
}
.ring-offset-cyan-800\/5 {
  --tw-ring-offset-color: rgba(21, 94, 117, 0.05);
}
.ring-offset-cyan-800\/50 {
  --tw-ring-offset-color: rgba(21, 94, 117, 0.5);
}
.ring-offset-cyan-800\/55 {
  --tw-ring-offset-color: rgba(21, 94, 117, 0.55);
}
.ring-offset-cyan-800\/60 {
  --tw-ring-offset-color: rgba(21, 94, 117, 0.6);
}
.ring-offset-cyan-800\/65 {
  --tw-ring-offset-color: rgba(21, 94, 117, 0.65);
}
.ring-offset-cyan-800\/70 {
  --tw-ring-offset-color: rgba(21, 94, 117, 0.7);
}
.ring-offset-cyan-800\/75 {
  --tw-ring-offset-color: rgba(21, 94, 117, 0.75);
}
.ring-offset-cyan-800\/80 {
  --tw-ring-offset-color: rgba(21, 94, 117, 0.8);
}
.ring-offset-cyan-800\/85 {
  --tw-ring-offset-color: rgba(21, 94, 117, 0.85);
}
.ring-offset-cyan-800\/90 {
  --tw-ring-offset-color: rgba(21, 94, 117, 0.9);
}
.ring-offset-cyan-800\/95 {
  --tw-ring-offset-color: rgba(21, 94, 117, 0.95);
}
.ring-offset-cyan-900 {
  --tw-ring-offset-color: #164e63;
}
.ring-offset-cyan-900\/0 {
  --tw-ring-offset-color: rgba(22, 78, 99, 0);
}
.ring-offset-cyan-900\/10 {
  --tw-ring-offset-color: rgba(22, 78, 99, 0.1);
}
.ring-offset-cyan-900\/100 {
  --tw-ring-offset-color: rgba(22, 78, 99, 1);
}
.ring-offset-cyan-900\/15 {
  --tw-ring-offset-color: rgba(22, 78, 99, 0.15);
}
.ring-offset-cyan-900\/20 {
  --tw-ring-offset-color: rgba(22, 78, 99, 0.2);
}
.ring-offset-cyan-900\/25 {
  --tw-ring-offset-color: rgba(22, 78, 99, 0.25);
}
.ring-offset-cyan-900\/30 {
  --tw-ring-offset-color: rgba(22, 78, 99, 0.3);
}
.ring-offset-cyan-900\/35 {
  --tw-ring-offset-color: rgba(22, 78, 99, 0.35);
}
.ring-offset-cyan-900\/40 {
  --tw-ring-offset-color: rgba(22, 78, 99, 0.4);
}
.ring-offset-cyan-900\/45 {
  --tw-ring-offset-color: rgba(22, 78, 99, 0.45);
}
.ring-offset-cyan-900\/5 {
  --tw-ring-offset-color: rgba(22, 78, 99, 0.05);
}
.ring-offset-cyan-900\/50 {
  --tw-ring-offset-color: rgba(22, 78, 99, 0.5);
}
.ring-offset-cyan-900\/55 {
  --tw-ring-offset-color: rgba(22, 78, 99, 0.55);
}
.ring-offset-cyan-900\/60 {
  --tw-ring-offset-color: rgba(22, 78, 99, 0.6);
}
.ring-offset-cyan-900\/65 {
  --tw-ring-offset-color: rgba(22, 78, 99, 0.65);
}
.ring-offset-cyan-900\/70 {
  --tw-ring-offset-color: rgba(22, 78, 99, 0.7);
}
.ring-offset-cyan-900\/75 {
  --tw-ring-offset-color: rgba(22, 78, 99, 0.75);
}
.ring-offset-cyan-900\/80 {
  --tw-ring-offset-color: rgba(22, 78, 99, 0.8);
}
.ring-offset-cyan-900\/85 {
  --tw-ring-offset-color: rgba(22, 78, 99, 0.85);
}
.ring-offset-cyan-900\/90 {
  --tw-ring-offset-color: rgba(22, 78, 99, 0.9);
}
.ring-offset-cyan-900\/95 {
  --tw-ring-offset-color: rgba(22, 78, 99, 0.95);
}
.ring-offset-cyan-950 {
  --tw-ring-offset-color: #083344;
}
.ring-offset-cyan-950\/0 {
  --tw-ring-offset-color: rgba(8, 51, 68, 0);
}
.ring-offset-cyan-950\/10 {
  --tw-ring-offset-color: rgba(8, 51, 68, 0.1);
}
.ring-offset-cyan-950\/100 {
  --tw-ring-offset-color: rgba(8, 51, 68, 1);
}
.ring-offset-cyan-950\/15 {
  --tw-ring-offset-color: rgba(8, 51, 68, 0.15);
}
.ring-offset-cyan-950\/20 {
  --tw-ring-offset-color: rgba(8, 51, 68, 0.2);
}
.ring-offset-cyan-950\/25 {
  --tw-ring-offset-color: rgba(8, 51, 68, 0.25);
}
.ring-offset-cyan-950\/30 {
  --tw-ring-offset-color: rgba(8, 51, 68, 0.3);
}
.ring-offset-cyan-950\/35 {
  --tw-ring-offset-color: rgba(8, 51, 68, 0.35);
}
.ring-offset-cyan-950\/40 {
  --tw-ring-offset-color: rgba(8, 51, 68, 0.4);
}
.ring-offset-cyan-950\/45 {
  --tw-ring-offset-color: rgba(8, 51, 68, 0.45);
}
.ring-offset-cyan-950\/5 {
  --tw-ring-offset-color: rgba(8, 51, 68, 0.05);
}
.ring-offset-cyan-950\/50 {
  --tw-ring-offset-color: rgba(8, 51, 68, 0.5);
}
.ring-offset-cyan-950\/55 {
  --tw-ring-offset-color: rgba(8, 51, 68, 0.55);
}
.ring-offset-cyan-950\/60 {
  --tw-ring-offset-color: rgba(8, 51, 68, 0.6);
}
.ring-offset-cyan-950\/65 {
  --tw-ring-offset-color: rgba(8, 51, 68, 0.65);
}
.ring-offset-cyan-950\/70 {
  --tw-ring-offset-color: rgba(8, 51, 68, 0.7);
}
.ring-offset-cyan-950\/75 {
  --tw-ring-offset-color: rgba(8, 51, 68, 0.75);
}
.ring-offset-cyan-950\/80 {
  --tw-ring-offset-color: rgba(8, 51, 68, 0.8);
}
.ring-offset-cyan-950\/85 {
  --tw-ring-offset-color: rgba(8, 51, 68, 0.85);
}
.ring-offset-cyan-950\/90 {
  --tw-ring-offset-color: rgba(8, 51, 68, 0.9);
}
.ring-offset-cyan-950\/95 {
  --tw-ring-offset-color: rgba(8, 51, 68, 0.95);
}
.ring-offset-emerald-100 {
  --tw-ring-offset-color: #d1fae5;
}
.ring-offset-emerald-100\/0 {
  --tw-ring-offset-color: rgba(209, 250, 229, 0);
}
.ring-offset-emerald-100\/10 {
  --tw-ring-offset-color: rgba(209, 250, 229, 0.1);
}
.ring-offset-emerald-100\/100 {
  --tw-ring-offset-color: rgba(209, 250, 229, 1);
}
.ring-offset-emerald-100\/15 {
  --tw-ring-offset-color: rgba(209, 250, 229, 0.15);
}
.ring-offset-emerald-100\/20 {
  --tw-ring-offset-color: rgba(209, 250, 229, 0.2);
}
.ring-offset-emerald-100\/25 {
  --tw-ring-offset-color: rgba(209, 250, 229, 0.25);
}
.ring-offset-emerald-100\/30 {
  --tw-ring-offset-color: rgba(209, 250, 229, 0.3);
}
.ring-offset-emerald-100\/35 {
  --tw-ring-offset-color: rgba(209, 250, 229, 0.35);
}
.ring-offset-emerald-100\/40 {
  --tw-ring-offset-color: rgba(209, 250, 229, 0.4);
}
.ring-offset-emerald-100\/45 {
  --tw-ring-offset-color: rgba(209, 250, 229, 0.45);
}
.ring-offset-emerald-100\/5 {
  --tw-ring-offset-color: rgba(209, 250, 229, 0.05);
}
.ring-offset-emerald-100\/50 {
  --tw-ring-offset-color: rgba(209, 250, 229, 0.5);
}
.ring-offset-emerald-100\/55 {
  --tw-ring-offset-color: rgba(209, 250, 229, 0.55);
}
.ring-offset-emerald-100\/60 {
  --tw-ring-offset-color: rgba(209, 250, 229, 0.6);
}
.ring-offset-emerald-100\/65 {
  --tw-ring-offset-color: rgba(209, 250, 229, 0.65);
}
.ring-offset-emerald-100\/70 {
  --tw-ring-offset-color: rgba(209, 250, 229, 0.7);
}
.ring-offset-emerald-100\/75 {
  --tw-ring-offset-color: rgba(209, 250, 229, 0.75);
}
.ring-offset-emerald-100\/80 {
  --tw-ring-offset-color: rgba(209, 250, 229, 0.8);
}
.ring-offset-emerald-100\/85 {
  --tw-ring-offset-color: rgba(209, 250, 229, 0.85);
}
.ring-offset-emerald-100\/90 {
  --tw-ring-offset-color: rgba(209, 250, 229, 0.9);
}
.ring-offset-emerald-100\/95 {
  --tw-ring-offset-color: rgba(209, 250, 229, 0.95);
}
.ring-offset-emerald-200 {
  --tw-ring-offset-color: #a7f3d0;
}
.ring-offset-emerald-200\/0 {
  --tw-ring-offset-color: rgba(167, 243, 208, 0);
}
.ring-offset-emerald-200\/10 {
  --tw-ring-offset-color: rgba(167, 243, 208, 0.1);
}
.ring-offset-emerald-200\/100 {
  --tw-ring-offset-color: rgba(167, 243, 208, 1);
}
.ring-offset-emerald-200\/15 {
  --tw-ring-offset-color: rgba(167, 243, 208, 0.15);
}
.ring-offset-emerald-200\/20 {
  --tw-ring-offset-color: rgba(167, 243, 208, 0.2);
}
.ring-offset-emerald-200\/25 {
  --tw-ring-offset-color: rgba(167, 243, 208, 0.25);
}
.ring-offset-emerald-200\/30 {
  --tw-ring-offset-color: rgba(167, 243, 208, 0.3);
}
.ring-offset-emerald-200\/35 {
  --tw-ring-offset-color: rgba(167, 243, 208, 0.35);
}
.ring-offset-emerald-200\/40 {
  --tw-ring-offset-color: rgba(167, 243, 208, 0.4);
}
.ring-offset-emerald-200\/45 {
  --tw-ring-offset-color: rgba(167, 243, 208, 0.45);
}
.ring-offset-emerald-200\/5 {
  --tw-ring-offset-color: rgba(167, 243, 208, 0.05);
}
.ring-offset-emerald-200\/50 {
  --tw-ring-offset-color: rgba(167, 243, 208, 0.5);
}
.ring-offset-emerald-200\/55 {
  --tw-ring-offset-color: rgba(167, 243, 208, 0.55);
}
.ring-offset-emerald-200\/60 {
  --tw-ring-offset-color: rgba(167, 243, 208, 0.6);
}
.ring-offset-emerald-200\/65 {
  --tw-ring-offset-color: rgba(167, 243, 208, 0.65);
}
.ring-offset-emerald-200\/70 {
  --tw-ring-offset-color: rgba(167, 243, 208, 0.7);
}
.ring-offset-emerald-200\/75 {
  --tw-ring-offset-color: rgba(167, 243, 208, 0.75);
}
.ring-offset-emerald-200\/80 {
  --tw-ring-offset-color: rgba(167, 243, 208, 0.8);
}
.ring-offset-emerald-200\/85 {
  --tw-ring-offset-color: rgba(167, 243, 208, 0.85);
}
.ring-offset-emerald-200\/90 {
  --tw-ring-offset-color: rgba(167, 243, 208, 0.9);
}
.ring-offset-emerald-200\/95 {
  --tw-ring-offset-color: rgba(167, 243, 208, 0.95);
}
.ring-offset-emerald-300 {
  --tw-ring-offset-color: #6ee7b7;
}
.ring-offset-emerald-300\/0 {
  --tw-ring-offset-color: rgba(110, 231, 183, 0);
}
.ring-offset-emerald-300\/10 {
  --tw-ring-offset-color: rgba(110, 231, 183, 0.1);
}
.ring-offset-emerald-300\/100 {
  --tw-ring-offset-color: rgba(110, 231, 183, 1);
}
.ring-offset-emerald-300\/15 {
  --tw-ring-offset-color: rgba(110, 231, 183, 0.15);
}
.ring-offset-emerald-300\/20 {
  --tw-ring-offset-color: rgba(110, 231, 183, 0.2);
}
.ring-offset-emerald-300\/25 {
  --tw-ring-offset-color: rgba(110, 231, 183, 0.25);
}
.ring-offset-emerald-300\/30 {
  --tw-ring-offset-color: rgba(110, 231, 183, 0.3);
}
.ring-offset-emerald-300\/35 {
  --tw-ring-offset-color: rgba(110, 231, 183, 0.35);
}
.ring-offset-emerald-300\/40 {
  --tw-ring-offset-color: rgba(110, 231, 183, 0.4);
}
.ring-offset-emerald-300\/45 {
  --tw-ring-offset-color: rgba(110, 231, 183, 0.45);
}
.ring-offset-emerald-300\/5 {
  --tw-ring-offset-color: rgba(110, 231, 183, 0.05);
}
.ring-offset-emerald-300\/50 {
  --tw-ring-offset-color: rgba(110, 231, 183, 0.5);
}
.ring-offset-emerald-300\/55 {
  --tw-ring-offset-color: rgba(110, 231, 183, 0.55);
}
.ring-offset-emerald-300\/60 {
  --tw-ring-offset-color: rgba(110, 231, 183, 0.6);
}
.ring-offset-emerald-300\/65 {
  --tw-ring-offset-color: rgba(110, 231, 183, 0.65);
}
.ring-offset-emerald-300\/70 {
  --tw-ring-offset-color: rgba(110, 231, 183, 0.7);
}
.ring-offset-emerald-300\/75 {
  --tw-ring-offset-color: rgba(110, 231, 183, 0.75);
}
.ring-offset-emerald-300\/80 {
  --tw-ring-offset-color: rgba(110, 231, 183, 0.8);
}
.ring-offset-emerald-300\/85 {
  --tw-ring-offset-color: rgba(110, 231, 183, 0.85);
}
.ring-offset-emerald-300\/90 {
  --tw-ring-offset-color: rgba(110, 231, 183, 0.9);
}
.ring-offset-emerald-300\/95 {
  --tw-ring-offset-color: rgba(110, 231, 183, 0.95);
}
.ring-offset-emerald-400 {
  --tw-ring-offset-color: #34d399;
}
.ring-offset-emerald-400\/0 {
  --tw-ring-offset-color: rgba(52, 211, 153, 0);
}
.ring-offset-emerald-400\/10 {
  --tw-ring-offset-color: rgba(52, 211, 153, 0.1);
}
.ring-offset-emerald-400\/100 {
  --tw-ring-offset-color: rgba(52, 211, 153, 1);
}
.ring-offset-emerald-400\/15 {
  --tw-ring-offset-color: rgba(52, 211, 153, 0.15);
}
.ring-offset-emerald-400\/20 {
  --tw-ring-offset-color: rgba(52, 211, 153, 0.2);
}
.ring-offset-emerald-400\/25 {
  --tw-ring-offset-color: rgba(52, 211, 153, 0.25);
}
.ring-offset-emerald-400\/30 {
  --tw-ring-offset-color: rgba(52, 211, 153, 0.3);
}
.ring-offset-emerald-400\/35 {
  --tw-ring-offset-color: rgba(52, 211, 153, 0.35);
}
.ring-offset-emerald-400\/40 {
  --tw-ring-offset-color: rgba(52, 211, 153, 0.4);
}
.ring-offset-emerald-400\/45 {
  --tw-ring-offset-color: rgba(52, 211, 153, 0.45);
}
.ring-offset-emerald-400\/5 {
  --tw-ring-offset-color: rgba(52, 211, 153, 0.05);
}
.ring-offset-emerald-400\/50 {
  --tw-ring-offset-color: rgba(52, 211, 153, 0.5);
}
.ring-offset-emerald-400\/55 {
  --tw-ring-offset-color: rgba(52, 211, 153, 0.55);
}
.ring-offset-emerald-400\/60 {
  --tw-ring-offset-color: rgba(52, 211, 153, 0.6);
}
.ring-offset-emerald-400\/65 {
  --tw-ring-offset-color: rgba(52, 211, 153, 0.65);
}
.ring-offset-emerald-400\/70 {
  --tw-ring-offset-color: rgba(52, 211, 153, 0.7);
}
.ring-offset-emerald-400\/75 {
  --tw-ring-offset-color: rgba(52, 211, 153, 0.75);
}
.ring-offset-emerald-400\/80 {
  --tw-ring-offset-color: rgba(52, 211, 153, 0.8);
}
.ring-offset-emerald-400\/85 {
  --tw-ring-offset-color: rgba(52, 211, 153, 0.85);
}
.ring-offset-emerald-400\/90 {
  --tw-ring-offset-color: rgba(52, 211, 153, 0.9);
}
.ring-offset-emerald-400\/95 {
  --tw-ring-offset-color: rgba(52, 211, 153, 0.95);
}
.ring-offset-emerald-50 {
  --tw-ring-offset-color: #ecfdf5;
}
.ring-offset-emerald-50\/0 {
  --tw-ring-offset-color: rgba(236, 253, 245, 0);
}
.ring-offset-emerald-50\/10 {
  --tw-ring-offset-color: rgba(236, 253, 245, 0.1);
}
.ring-offset-emerald-50\/100 {
  --tw-ring-offset-color: rgba(236, 253, 245, 1);
}
.ring-offset-emerald-50\/15 {
  --tw-ring-offset-color: rgba(236, 253, 245, 0.15);
}
.ring-offset-emerald-50\/20 {
  --tw-ring-offset-color: rgba(236, 253, 245, 0.2);
}
.ring-offset-emerald-50\/25 {
  --tw-ring-offset-color: rgba(236, 253, 245, 0.25);
}
.ring-offset-emerald-50\/30 {
  --tw-ring-offset-color: rgba(236, 253, 245, 0.3);
}
.ring-offset-emerald-50\/35 {
  --tw-ring-offset-color: rgba(236, 253, 245, 0.35);
}
.ring-offset-emerald-50\/40 {
  --tw-ring-offset-color: rgba(236, 253, 245, 0.4);
}
.ring-offset-emerald-50\/45 {
  --tw-ring-offset-color: rgba(236, 253, 245, 0.45);
}
.ring-offset-emerald-50\/5 {
  --tw-ring-offset-color: rgba(236, 253, 245, 0.05);
}
.ring-offset-emerald-50\/50 {
  --tw-ring-offset-color: rgba(236, 253, 245, 0.5);
}
.ring-offset-emerald-50\/55 {
  --tw-ring-offset-color: rgba(236, 253, 245, 0.55);
}
.ring-offset-emerald-50\/60 {
  --tw-ring-offset-color: rgba(236, 253, 245, 0.6);
}
.ring-offset-emerald-50\/65 {
  --tw-ring-offset-color: rgba(236, 253, 245, 0.65);
}
.ring-offset-emerald-50\/70 {
  --tw-ring-offset-color: rgba(236, 253, 245, 0.7);
}
.ring-offset-emerald-50\/75 {
  --tw-ring-offset-color: rgba(236, 253, 245, 0.75);
}
.ring-offset-emerald-50\/80 {
  --tw-ring-offset-color: rgba(236, 253, 245, 0.8);
}
.ring-offset-emerald-50\/85 {
  --tw-ring-offset-color: rgba(236, 253, 245, 0.85);
}
.ring-offset-emerald-50\/90 {
  --tw-ring-offset-color: rgba(236, 253, 245, 0.9);
}
.ring-offset-emerald-50\/95 {
  --tw-ring-offset-color: rgba(236, 253, 245, 0.95);
}
.ring-offset-emerald-500 {
  --tw-ring-offset-color: #10b981;
}
.ring-offset-emerald-500\/0 {
  --tw-ring-offset-color: rgba(16, 185, 129, 0);
}
.ring-offset-emerald-500\/10 {
  --tw-ring-offset-color: rgba(16, 185, 129, 0.1);
}
.ring-offset-emerald-500\/100 {
  --tw-ring-offset-color: rgba(16, 185, 129, 1);
}
.ring-offset-emerald-500\/15 {
  --tw-ring-offset-color: rgba(16, 185, 129, 0.15);
}
.ring-offset-emerald-500\/20 {
  --tw-ring-offset-color: rgba(16, 185, 129, 0.2);
}
.ring-offset-emerald-500\/25 {
  --tw-ring-offset-color: rgba(16, 185, 129, 0.25);
}
.ring-offset-emerald-500\/30 {
  --tw-ring-offset-color: rgba(16, 185, 129, 0.3);
}
.ring-offset-emerald-500\/35 {
  --tw-ring-offset-color: rgba(16, 185, 129, 0.35);
}
.ring-offset-emerald-500\/40 {
  --tw-ring-offset-color: rgba(16, 185, 129, 0.4);
}
.ring-offset-emerald-500\/45 {
  --tw-ring-offset-color: rgba(16, 185, 129, 0.45);
}
.ring-offset-emerald-500\/5 {
  --tw-ring-offset-color: rgba(16, 185, 129, 0.05);
}
.ring-offset-emerald-500\/50 {
  --tw-ring-offset-color: rgba(16, 185, 129, 0.5);
}
.ring-offset-emerald-500\/55 {
  --tw-ring-offset-color: rgba(16, 185, 129, 0.55);
}
.ring-offset-emerald-500\/60 {
  --tw-ring-offset-color: rgba(16, 185, 129, 0.6);
}
.ring-offset-emerald-500\/65 {
  --tw-ring-offset-color: rgba(16, 185, 129, 0.65);
}
.ring-offset-emerald-500\/70 {
  --tw-ring-offset-color: rgba(16, 185, 129, 0.7);
}
.ring-offset-emerald-500\/75 {
  --tw-ring-offset-color: rgba(16, 185, 129, 0.75);
}
.ring-offset-emerald-500\/80 {
  --tw-ring-offset-color: rgba(16, 185, 129, 0.8);
}
.ring-offset-emerald-500\/85 {
  --tw-ring-offset-color: rgba(16, 185, 129, 0.85);
}
.ring-offset-emerald-500\/90 {
  --tw-ring-offset-color: rgba(16, 185, 129, 0.9);
}
.ring-offset-emerald-500\/95 {
  --tw-ring-offset-color: rgba(16, 185, 129, 0.95);
}
.ring-offset-emerald-600 {
  --tw-ring-offset-color: #059669;
}
.ring-offset-emerald-600\/0 {
  --tw-ring-offset-color: rgba(5, 150, 105, 0);
}
.ring-offset-emerald-600\/10 {
  --tw-ring-offset-color: rgba(5, 150, 105, 0.1);
}
.ring-offset-emerald-600\/100 {
  --tw-ring-offset-color: rgba(5, 150, 105, 1);
}
.ring-offset-emerald-600\/15 {
  --tw-ring-offset-color: rgba(5, 150, 105, 0.15);
}
.ring-offset-emerald-600\/20 {
  --tw-ring-offset-color: rgba(5, 150, 105, 0.2);
}
.ring-offset-emerald-600\/25 {
  --tw-ring-offset-color: rgba(5, 150, 105, 0.25);
}
.ring-offset-emerald-600\/30 {
  --tw-ring-offset-color: rgba(5, 150, 105, 0.3);
}
.ring-offset-emerald-600\/35 {
  --tw-ring-offset-color: rgba(5, 150, 105, 0.35);
}
.ring-offset-emerald-600\/40 {
  --tw-ring-offset-color: rgba(5, 150, 105, 0.4);
}
.ring-offset-emerald-600\/45 {
  --tw-ring-offset-color: rgba(5, 150, 105, 0.45);
}
.ring-offset-emerald-600\/5 {
  --tw-ring-offset-color: rgba(5, 150, 105, 0.05);
}
.ring-offset-emerald-600\/50 {
  --tw-ring-offset-color: rgba(5, 150, 105, 0.5);
}
.ring-offset-emerald-600\/55 {
  --tw-ring-offset-color: rgba(5, 150, 105, 0.55);
}
.ring-offset-emerald-600\/60 {
  --tw-ring-offset-color: rgba(5, 150, 105, 0.6);
}
.ring-offset-emerald-600\/65 {
  --tw-ring-offset-color: rgba(5, 150, 105, 0.65);
}
.ring-offset-emerald-600\/70 {
  --tw-ring-offset-color: rgba(5, 150, 105, 0.7);
}
.ring-offset-emerald-600\/75 {
  --tw-ring-offset-color: rgba(5, 150, 105, 0.75);
}
.ring-offset-emerald-600\/80 {
  --tw-ring-offset-color: rgba(5, 150, 105, 0.8);
}
.ring-offset-emerald-600\/85 {
  --tw-ring-offset-color: rgba(5, 150, 105, 0.85);
}
.ring-offset-emerald-600\/90 {
  --tw-ring-offset-color: rgba(5, 150, 105, 0.9);
}
.ring-offset-emerald-600\/95 {
  --tw-ring-offset-color: rgba(5, 150, 105, 0.95);
}
.ring-offset-emerald-700 {
  --tw-ring-offset-color: #047857;
}
.ring-offset-emerald-700\/0 {
  --tw-ring-offset-color: rgba(4, 120, 87, 0);
}
.ring-offset-emerald-700\/10 {
  --tw-ring-offset-color: rgba(4, 120, 87, 0.1);
}
.ring-offset-emerald-700\/100 {
  --tw-ring-offset-color: rgba(4, 120, 87, 1);
}
.ring-offset-emerald-700\/15 {
  --tw-ring-offset-color: rgba(4, 120, 87, 0.15);
}
.ring-offset-emerald-700\/20 {
  --tw-ring-offset-color: rgba(4, 120, 87, 0.2);
}
.ring-offset-emerald-700\/25 {
  --tw-ring-offset-color: rgba(4, 120, 87, 0.25);
}
.ring-offset-emerald-700\/30 {
  --tw-ring-offset-color: rgba(4, 120, 87, 0.3);
}
.ring-offset-emerald-700\/35 {
  --tw-ring-offset-color: rgba(4, 120, 87, 0.35);
}
.ring-offset-emerald-700\/40 {
  --tw-ring-offset-color: rgba(4, 120, 87, 0.4);
}
.ring-offset-emerald-700\/45 {
  --tw-ring-offset-color: rgba(4, 120, 87, 0.45);
}
.ring-offset-emerald-700\/5 {
  --tw-ring-offset-color: rgba(4, 120, 87, 0.05);
}
.ring-offset-emerald-700\/50 {
  --tw-ring-offset-color: rgba(4, 120, 87, 0.5);
}
.ring-offset-emerald-700\/55 {
  --tw-ring-offset-color: rgba(4, 120, 87, 0.55);
}
.ring-offset-emerald-700\/60 {
  --tw-ring-offset-color: rgba(4, 120, 87, 0.6);
}
.ring-offset-emerald-700\/65 {
  --tw-ring-offset-color: rgba(4, 120, 87, 0.65);
}
.ring-offset-emerald-700\/70 {
  --tw-ring-offset-color: rgba(4, 120, 87, 0.7);
}
.ring-offset-emerald-700\/75 {
  --tw-ring-offset-color: rgba(4, 120, 87, 0.75);
}
.ring-offset-emerald-700\/80 {
  --tw-ring-offset-color: rgba(4, 120, 87, 0.8);
}
.ring-offset-emerald-700\/85 {
  --tw-ring-offset-color: rgba(4, 120, 87, 0.85);
}
.ring-offset-emerald-700\/90 {
  --tw-ring-offset-color: rgba(4, 120, 87, 0.9);
}
.ring-offset-emerald-700\/95 {
  --tw-ring-offset-color: rgba(4, 120, 87, 0.95);
}
.ring-offset-emerald-800 {
  --tw-ring-offset-color: #065f46;
}
.ring-offset-emerald-800\/0 {
  --tw-ring-offset-color: rgba(6, 95, 70, 0);
}
.ring-offset-emerald-800\/10 {
  --tw-ring-offset-color: rgba(6, 95, 70, 0.1);
}
.ring-offset-emerald-800\/100 {
  --tw-ring-offset-color: rgba(6, 95, 70, 1);
}
.ring-offset-emerald-800\/15 {
  --tw-ring-offset-color: rgba(6, 95, 70, 0.15);
}
.ring-offset-emerald-800\/20 {
  --tw-ring-offset-color: rgba(6, 95, 70, 0.2);
}
.ring-offset-emerald-800\/25 {
  --tw-ring-offset-color: rgba(6, 95, 70, 0.25);
}
.ring-offset-emerald-800\/30 {
  --tw-ring-offset-color: rgba(6, 95, 70, 0.3);
}
.ring-offset-emerald-800\/35 {
  --tw-ring-offset-color: rgba(6, 95, 70, 0.35);
}
.ring-offset-emerald-800\/40 {
  --tw-ring-offset-color: rgba(6, 95, 70, 0.4);
}
.ring-offset-emerald-800\/45 {
  --tw-ring-offset-color: rgba(6, 95, 70, 0.45);
}
.ring-offset-emerald-800\/5 {
  --tw-ring-offset-color: rgba(6, 95, 70, 0.05);
}
.ring-offset-emerald-800\/50 {
  --tw-ring-offset-color: rgba(6, 95, 70, 0.5);
}
.ring-offset-emerald-800\/55 {
  --tw-ring-offset-color: rgba(6, 95, 70, 0.55);
}
.ring-offset-emerald-800\/60 {
  --tw-ring-offset-color: rgba(6, 95, 70, 0.6);
}
.ring-offset-emerald-800\/65 {
  --tw-ring-offset-color: rgba(6, 95, 70, 0.65);
}
.ring-offset-emerald-800\/70 {
  --tw-ring-offset-color: rgba(6, 95, 70, 0.7);
}
.ring-offset-emerald-800\/75 {
  --tw-ring-offset-color: rgba(6, 95, 70, 0.75);
}
.ring-offset-emerald-800\/80 {
  --tw-ring-offset-color: rgba(6, 95, 70, 0.8);
}
.ring-offset-emerald-800\/85 {
  --tw-ring-offset-color: rgba(6, 95, 70, 0.85);
}
.ring-offset-emerald-800\/90 {
  --tw-ring-offset-color: rgba(6, 95, 70, 0.9);
}
.ring-offset-emerald-800\/95 {
  --tw-ring-offset-color: rgba(6, 95, 70, 0.95);
}
.ring-offset-emerald-900 {
  --tw-ring-offset-color: #064e3b;
}
.ring-offset-emerald-900\/0 {
  --tw-ring-offset-color: rgba(6, 78, 59, 0);
}
.ring-offset-emerald-900\/10 {
  --tw-ring-offset-color: rgba(6, 78, 59, 0.1);
}
.ring-offset-emerald-900\/100 {
  --tw-ring-offset-color: rgba(6, 78, 59, 1);
}
.ring-offset-emerald-900\/15 {
  --tw-ring-offset-color: rgba(6, 78, 59, 0.15);
}
.ring-offset-emerald-900\/20 {
  --tw-ring-offset-color: rgba(6, 78, 59, 0.2);
}
.ring-offset-emerald-900\/25 {
  --tw-ring-offset-color: rgba(6, 78, 59, 0.25);
}
.ring-offset-emerald-900\/30 {
  --tw-ring-offset-color: rgba(6, 78, 59, 0.3);
}
.ring-offset-emerald-900\/35 {
  --tw-ring-offset-color: rgba(6, 78, 59, 0.35);
}
.ring-offset-emerald-900\/40 {
  --tw-ring-offset-color: rgba(6, 78, 59, 0.4);
}
.ring-offset-emerald-900\/45 {
  --tw-ring-offset-color: rgba(6, 78, 59, 0.45);
}
.ring-offset-emerald-900\/5 {
  --tw-ring-offset-color: rgba(6, 78, 59, 0.05);
}
.ring-offset-emerald-900\/50 {
  --tw-ring-offset-color: rgba(6, 78, 59, 0.5);
}
.ring-offset-emerald-900\/55 {
  --tw-ring-offset-color: rgba(6, 78, 59, 0.55);
}
.ring-offset-emerald-900\/60 {
  --tw-ring-offset-color: rgba(6, 78, 59, 0.6);
}
.ring-offset-emerald-900\/65 {
  --tw-ring-offset-color: rgba(6, 78, 59, 0.65);
}
.ring-offset-emerald-900\/70 {
  --tw-ring-offset-color: rgba(6, 78, 59, 0.7);
}
.ring-offset-emerald-900\/75 {
  --tw-ring-offset-color: rgba(6, 78, 59, 0.75);
}
.ring-offset-emerald-900\/80 {
  --tw-ring-offset-color: rgba(6, 78, 59, 0.8);
}
.ring-offset-emerald-900\/85 {
  --tw-ring-offset-color: rgba(6, 78, 59, 0.85);
}
.ring-offset-emerald-900\/90 {
  --tw-ring-offset-color: rgba(6, 78, 59, 0.9);
}
.ring-offset-emerald-900\/95 {
  --tw-ring-offset-color: rgba(6, 78, 59, 0.95);
}
.ring-offset-emerald-950 {
  --tw-ring-offset-color: #022c22;
}
.ring-offset-emerald-950\/0 {
  --tw-ring-offset-color: rgba(2, 44, 34, 0);
}
.ring-offset-emerald-950\/10 {
  --tw-ring-offset-color: rgba(2, 44, 34, 0.1);
}
.ring-offset-emerald-950\/100 {
  --tw-ring-offset-color: rgba(2, 44, 34, 1);
}
.ring-offset-emerald-950\/15 {
  --tw-ring-offset-color: rgba(2, 44, 34, 0.15);
}
.ring-offset-emerald-950\/20 {
  --tw-ring-offset-color: rgba(2, 44, 34, 0.2);
}
.ring-offset-emerald-950\/25 {
  --tw-ring-offset-color: rgba(2, 44, 34, 0.25);
}
.ring-offset-emerald-950\/30 {
  --tw-ring-offset-color: rgba(2, 44, 34, 0.3);
}
.ring-offset-emerald-950\/35 {
  --tw-ring-offset-color: rgba(2, 44, 34, 0.35);
}
.ring-offset-emerald-950\/40 {
  --tw-ring-offset-color: rgba(2, 44, 34, 0.4);
}
.ring-offset-emerald-950\/45 {
  --tw-ring-offset-color: rgba(2, 44, 34, 0.45);
}
.ring-offset-emerald-950\/5 {
  --tw-ring-offset-color: rgba(2, 44, 34, 0.05);
}
.ring-offset-emerald-950\/50 {
  --tw-ring-offset-color: rgba(2, 44, 34, 0.5);
}
.ring-offset-emerald-950\/55 {
  --tw-ring-offset-color: rgba(2, 44, 34, 0.55);
}
.ring-offset-emerald-950\/60 {
  --tw-ring-offset-color: rgba(2, 44, 34, 0.6);
}
.ring-offset-emerald-950\/65 {
  --tw-ring-offset-color: rgba(2, 44, 34, 0.65);
}
.ring-offset-emerald-950\/70 {
  --tw-ring-offset-color: rgba(2, 44, 34, 0.7);
}
.ring-offset-emerald-950\/75 {
  --tw-ring-offset-color: rgba(2, 44, 34, 0.75);
}
.ring-offset-emerald-950\/80 {
  --tw-ring-offset-color: rgba(2, 44, 34, 0.8);
}
.ring-offset-emerald-950\/85 {
  --tw-ring-offset-color: rgba(2, 44, 34, 0.85);
}
.ring-offset-emerald-950\/90 {
  --tw-ring-offset-color: rgba(2, 44, 34, 0.9);
}
.ring-offset-emerald-950\/95 {
  --tw-ring-offset-color: rgba(2, 44, 34, 0.95);
}
.ring-offset-error {
  --tw-ring-offset-color: var(--fallback-er,oklch(var(--er)/1));
}
.ring-offset-error-content {
  --tw-ring-offset-color: var(--fallback-erc,oklch(var(--erc)/1));
}
.ring-offset-error-content\/0 {
  --tw-ring-offset-color: var(--fallback-erc,oklch(var(--erc)/0));
}
.ring-offset-error-content\/10 {
  --tw-ring-offset-color: var(--fallback-erc,oklch(var(--erc)/0.1));
}
.ring-offset-error-content\/100 {
  --tw-ring-offset-color: var(--fallback-erc,oklch(var(--erc)/1));
}
.ring-offset-error-content\/15 {
  --tw-ring-offset-color: var(--fallback-erc,oklch(var(--erc)/0.15));
}
.ring-offset-error-content\/20 {
  --tw-ring-offset-color: var(--fallback-erc,oklch(var(--erc)/0.2));
}
.ring-offset-error-content\/25 {
  --tw-ring-offset-color: var(--fallback-erc,oklch(var(--erc)/0.25));
}
.ring-offset-error-content\/30 {
  --tw-ring-offset-color: var(--fallback-erc,oklch(var(--erc)/0.3));
}
.ring-offset-error-content\/35 {
  --tw-ring-offset-color: var(--fallback-erc,oklch(var(--erc)/0.35));
}
.ring-offset-error-content\/40 {
  --tw-ring-offset-color: var(--fallback-erc,oklch(var(--erc)/0.4));
}
.ring-offset-error-content\/45 {
  --tw-ring-offset-color: var(--fallback-erc,oklch(var(--erc)/0.45));
}
.ring-offset-error-content\/5 {
  --tw-ring-offset-color: var(--fallback-erc,oklch(var(--erc)/0.05));
}
.ring-offset-error-content\/50 {
  --tw-ring-offset-color: var(--fallback-erc,oklch(var(--erc)/0.5));
}
.ring-offset-error-content\/55 {
  --tw-ring-offset-color: var(--fallback-erc,oklch(var(--erc)/0.55));
}
.ring-offset-error-content\/60 {
  --tw-ring-offset-color: var(--fallback-erc,oklch(var(--erc)/0.6));
}
.ring-offset-error-content\/65 {
  --tw-ring-offset-color: var(--fallback-erc,oklch(var(--erc)/0.65));
}
.ring-offset-error-content\/70 {
  --tw-ring-offset-color: var(--fallback-erc,oklch(var(--erc)/0.7));
}
.ring-offset-error-content\/75 {
  --tw-ring-offset-color: var(--fallback-erc,oklch(var(--erc)/0.75));
}
.ring-offset-error-content\/80 {
  --tw-ring-offset-color: var(--fallback-erc,oklch(var(--erc)/0.8));
}
.ring-offset-error-content\/85 {
  --tw-ring-offset-color: var(--fallback-erc,oklch(var(--erc)/0.85));
}
.ring-offset-error-content\/90 {
  --tw-ring-offset-color: var(--fallback-erc,oklch(var(--erc)/0.9));
}
.ring-offset-error-content\/95 {
  --tw-ring-offset-color: var(--fallback-erc,oklch(var(--erc)/0.95));
}
.ring-offset-error\/0 {
  --tw-ring-offset-color: var(--fallback-er,oklch(var(--er)/0));
}
.ring-offset-error\/10 {
  --tw-ring-offset-color: var(--fallback-er,oklch(var(--er)/0.1));
}
.ring-offset-error\/100 {
  --tw-ring-offset-color: var(--fallback-er,oklch(var(--er)/1));
}
.ring-offset-error\/15 {
  --tw-ring-offset-color: var(--fallback-er,oklch(var(--er)/0.15));
}
.ring-offset-error\/20 {
  --tw-ring-offset-color: var(--fallback-er,oklch(var(--er)/0.2));
}
.ring-offset-error\/25 {
  --tw-ring-offset-color: var(--fallback-er,oklch(var(--er)/0.25));
}
.ring-offset-error\/30 {
  --tw-ring-offset-color: var(--fallback-er,oklch(var(--er)/0.3));
}
.ring-offset-error\/35 {
  --tw-ring-offset-color: var(--fallback-er,oklch(var(--er)/0.35));
}
.ring-offset-error\/40 {
  --tw-ring-offset-color: var(--fallback-er,oklch(var(--er)/0.4));
}
.ring-offset-error\/45 {
  --tw-ring-offset-color: var(--fallback-er,oklch(var(--er)/0.45));
}
.ring-offset-error\/5 {
  --tw-ring-offset-color: var(--fallback-er,oklch(var(--er)/0.05));
}
.ring-offset-error\/50 {
  --tw-ring-offset-color: var(--fallback-er,oklch(var(--er)/0.5));
}
.ring-offset-error\/55 {
  --tw-ring-offset-color: var(--fallback-er,oklch(var(--er)/0.55));
}
.ring-offset-error\/60 {
  --tw-ring-offset-color: var(--fallback-er,oklch(var(--er)/0.6));
}
.ring-offset-error\/65 {
  --tw-ring-offset-color: var(--fallback-er,oklch(var(--er)/0.65));
}
.ring-offset-error\/70 {
  --tw-ring-offset-color: var(--fallback-er,oklch(var(--er)/0.7));
}
.ring-offset-error\/75 {
  --tw-ring-offset-color: var(--fallback-er,oklch(var(--er)/0.75));
}
.ring-offset-error\/80 {
  --tw-ring-offset-color: var(--fallback-er,oklch(var(--er)/0.8));
}
.ring-offset-error\/85 {
  --tw-ring-offset-color: var(--fallback-er,oklch(var(--er)/0.85));
}
.ring-offset-error\/90 {
  --tw-ring-offset-color: var(--fallback-er,oklch(var(--er)/0.9));
}
.ring-offset-error\/95 {
  --tw-ring-offset-color: var(--fallback-er,oklch(var(--er)/0.95));
}
.ring-offset-fuchsia-100 {
  --tw-ring-offset-color: #fae8ff;
}
.ring-offset-fuchsia-100\/0 {
  --tw-ring-offset-color: rgba(250, 232, 255, 0);
}
.ring-offset-fuchsia-100\/10 {
  --tw-ring-offset-color: rgba(250, 232, 255, 0.1);
}
.ring-offset-fuchsia-100\/100 {
  --tw-ring-offset-color: rgba(250, 232, 255, 1);
}
.ring-offset-fuchsia-100\/15 {
  --tw-ring-offset-color: rgba(250, 232, 255, 0.15);
}
.ring-offset-fuchsia-100\/20 {
  --tw-ring-offset-color: rgba(250, 232, 255, 0.2);
}
.ring-offset-fuchsia-100\/25 {
  --tw-ring-offset-color: rgba(250, 232, 255, 0.25);
}
.ring-offset-fuchsia-100\/30 {
  --tw-ring-offset-color: rgba(250, 232, 255, 0.3);
}
.ring-offset-fuchsia-100\/35 {
  --tw-ring-offset-color: rgba(250, 232, 255, 0.35);
}
.ring-offset-fuchsia-100\/40 {
  --tw-ring-offset-color: rgba(250, 232, 255, 0.4);
}
.ring-offset-fuchsia-100\/45 {
  --tw-ring-offset-color: rgba(250, 232, 255, 0.45);
}
.ring-offset-fuchsia-100\/5 {
  --tw-ring-offset-color: rgba(250, 232, 255, 0.05);
}
.ring-offset-fuchsia-100\/50 {
  --tw-ring-offset-color: rgba(250, 232, 255, 0.5);
}
.ring-offset-fuchsia-100\/55 {
  --tw-ring-offset-color: rgba(250, 232, 255, 0.55);
}
.ring-offset-fuchsia-100\/60 {
  --tw-ring-offset-color: rgba(250, 232, 255, 0.6);
}
.ring-offset-fuchsia-100\/65 {
  --tw-ring-offset-color: rgba(250, 232, 255, 0.65);
}
.ring-offset-fuchsia-100\/70 {
  --tw-ring-offset-color: rgba(250, 232, 255, 0.7);
}
.ring-offset-fuchsia-100\/75 {
  --tw-ring-offset-color: rgba(250, 232, 255, 0.75);
}
.ring-offset-fuchsia-100\/80 {
  --tw-ring-offset-color: rgba(250, 232, 255, 0.8);
}
.ring-offset-fuchsia-100\/85 {
  --tw-ring-offset-color: rgba(250, 232, 255, 0.85);
}
.ring-offset-fuchsia-100\/90 {
  --tw-ring-offset-color: rgba(250, 232, 255, 0.9);
}
.ring-offset-fuchsia-100\/95 {
  --tw-ring-offset-color: rgba(250, 232, 255, 0.95);
}
.ring-offset-fuchsia-200 {
  --tw-ring-offset-color: #f5d0fe;
}
.ring-offset-fuchsia-200\/0 {
  --tw-ring-offset-color: rgba(245, 208, 254, 0);
}
.ring-offset-fuchsia-200\/10 {
  --tw-ring-offset-color: rgba(245, 208, 254, 0.1);
}
.ring-offset-fuchsia-200\/100 {
  --tw-ring-offset-color: rgba(245, 208, 254, 1);
}
.ring-offset-fuchsia-200\/15 {
  --tw-ring-offset-color: rgba(245, 208, 254, 0.15);
}
.ring-offset-fuchsia-200\/20 {
  --tw-ring-offset-color: rgba(245, 208, 254, 0.2);
}
.ring-offset-fuchsia-200\/25 {
  --tw-ring-offset-color: rgba(245, 208, 254, 0.25);
}
.ring-offset-fuchsia-200\/30 {
  --tw-ring-offset-color: rgba(245, 208, 254, 0.3);
}
.ring-offset-fuchsia-200\/35 {
  --tw-ring-offset-color: rgba(245, 208, 254, 0.35);
}
.ring-offset-fuchsia-200\/40 {
  --tw-ring-offset-color: rgba(245, 208, 254, 0.4);
}
.ring-offset-fuchsia-200\/45 {
  --tw-ring-offset-color: rgba(245, 208, 254, 0.45);
}
.ring-offset-fuchsia-200\/5 {
  --tw-ring-offset-color: rgba(245, 208, 254, 0.05);
}
.ring-offset-fuchsia-200\/50 {
  --tw-ring-offset-color: rgba(245, 208, 254, 0.5);
}
.ring-offset-fuchsia-200\/55 {
  --tw-ring-offset-color: rgba(245, 208, 254, 0.55);
}
.ring-offset-fuchsia-200\/60 {
  --tw-ring-offset-color: rgba(245, 208, 254, 0.6);
}
.ring-offset-fuchsia-200\/65 {
  --tw-ring-offset-color: rgba(245, 208, 254, 0.65);
}
.ring-offset-fuchsia-200\/70 {
  --tw-ring-offset-color: rgba(245, 208, 254, 0.7);
}
.ring-offset-fuchsia-200\/75 {
  --tw-ring-offset-color: rgba(245, 208, 254, 0.75);
}
.ring-offset-fuchsia-200\/80 {
  --tw-ring-offset-color: rgba(245, 208, 254, 0.8);
}
.ring-offset-fuchsia-200\/85 {
  --tw-ring-offset-color: rgba(245, 208, 254, 0.85);
}
.ring-offset-fuchsia-200\/90 {
  --tw-ring-offset-color: rgba(245, 208, 254, 0.9);
}
.ring-offset-fuchsia-200\/95 {
  --tw-ring-offset-color: rgba(245, 208, 254, 0.95);
}
.ring-offset-fuchsia-300 {
  --tw-ring-offset-color: #f0abfc;
}
.ring-offset-fuchsia-300\/0 {
  --tw-ring-offset-color: rgba(240, 171, 252, 0);
}
.ring-offset-fuchsia-300\/10 {
  --tw-ring-offset-color: rgba(240, 171, 252, 0.1);
}
.ring-offset-fuchsia-300\/100 {
  --tw-ring-offset-color: rgba(240, 171, 252, 1);
}
.ring-offset-fuchsia-300\/15 {
  --tw-ring-offset-color: rgba(240, 171, 252, 0.15);
}
.ring-offset-fuchsia-300\/20 {
  --tw-ring-offset-color: rgba(240, 171, 252, 0.2);
}
.ring-offset-fuchsia-300\/25 {
  --tw-ring-offset-color: rgba(240, 171, 252, 0.25);
}
.ring-offset-fuchsia-300\/30 {
  --tw-ring-offset-color: rgba(240, 171, 252, 0.3);
}
.ring-offset-fuchsia-300\/35 {
  --tw-ring-offset-color: rgba(240, 171, 252, 0.35);
}
.ring-offset-fuchsia-300\/40 {
  --tw-ring-offset-color: rgba(240, 171, 252, 0.4);
}
.ring-offset-fuchsia-300\/45 {
  --tw-ring-offset-color: rgba(240, 171, 252, 0.45);
}
.ring-offset-fuchsia-300\/5 {
  --tw-ring-offset-color: rgba(240, 171, 252, 0.05);
}
.ring-offset-fuchsia-300\/50 {
  --tw-ring-offset-color: rgba(240, 171, 252, 0.5);
}
.ring-offset-fuchsia-300\/55 {
  --tw-ring-offset-color: rgba(240, 171, 252, 0.55);
}
.ring-offset-fuchsia-300\/60 {
  --tw-ring-offset-color: rgba(240, 171, 252, 0.6);
}
.ring-offset-fuchsia-300\/65 {
  --tw-ring-offset-color: rgba(240, 171, 252, 0.65);
}
.ring-offset-fuchsia-300\/70 {
  --tw-ring-offset-color: rgba(240, 171, 252, 0.7);
}
.ring-offset-fuchsia-300\/75 {
  --tw-ring-offset-color: rgba(240, 171, 252, 0.75);
}
.ring-offset-fuchsia-300\/80 {
  --tw-ring-offset-color: rgba(240, 171, 252, 0.8);
}
.ring-offset-fuchsia-300\/85 {
  --tw-ring-offset-color: rgba(240, 171, 252, 0.85);
}
.ring-offset-fuchsia-300\/90 {
  --tw-ring-offset-color: rgba(240, 171, 252, 0.9);
}
.ring-offset-fuchsia-300\/95 {
  --tw-ring-offset-color: rgba(240, 171, 252, 0.95);
}
.ring-offset-fuchsia-400 {
  --tw-ring-offset-color: #e879f9;
}
.ring-offset-fuchsia-400\/0 {
  --tw-ring-offset-color: rgba(232, 121, 249, 0);
}
.ring-offset-fuchsia-400\/10 {
  --tw-ring-offset-color: rgba(232, 121, 249, 0.1);
}
.ring-offset-fuchsia-400\/100 {
  --tw-ring-offset-color: rgba(232, 121, 249, 1);
}
.ring-offset-fuchsia-400\/15 {
  --tw-ring-offset-color: rgba(232, 121, 249, 0.15);
}
.ring-offset-fuchsia-400\/20 {
  --tw-ring-offset-color: rgba(232, 121, 249, 0.2);
}
.ring-offset-fuchsia-400\/25 {
  --tw-ring-offset-color: rgba(232, 121, 249, 0.25);
}
.ring-offset-fuchsia-400\/30 {
  --tw-ring-offset-color: rgba(232, 121, 249, 0.3);
}
.ring-offset-fuchsia-400\/35 {
  --tw-ring-offset-color: rgba(232, 121, 249, 0.35);
}
.ring-offset-fuchsia-400\/40 {
  --tw-ring-offset-color: rgba(232, 121, 249, 0.4);
}
.ring-offset-fuchsia-400\/45 {
  --tw-ring-offset-color: rgba(232, 121, 249, 0.45);
}
.ring-offset-fuchsia-400\/5 {
  --tw-ring-offset-color: rgba(232, 121, 249, 0.05);
}
.ring-offset-fuchsia-400\/50 {
  --tw-ring-offset-color: rgba(232, 121, 249, 0.5);
}
.ring-offset-fuchsia-400\/55 {
  --tw-ring-offset-color: rgba(232, 121, 249, 0.55);
}
.ring-offset-fuchsia-400\/60 {
  --tw-ring-offset-color: rgba(232, 121, 249, 0.6);
}
.ring-offset-fuchsia-400\/65 {
  --tw-ring-offset-color: rgba(232, 121, 249, 0.65);
}
.ring-offset-fuchsia-400\/70 {
  --tw-ring-offset-color: rgba(232, 121, 249, 0.7);
}
.ring-offset-fuchsia-400\/75 {
  --tw-ring-offset-color: rgba(232, 121, 249, 0.75);
}
.ring-offset-fuchsia-400\/80 {
  --tw-ring-offset-color: rgba(232, 121, 249, 0.8);
}
.ring-offset-fuchsia-400\/85 {
  --tw-ring-offset-color: rgba(232, 121, 249, 0.85);
}
.ring-offset-fuchsia-400\/90 {
  --tw-ring-offset-color: rgba(232, 121, 249, 0.9);
}
.ring-offset-fuchsia-400\/95 {
  --tw-ring-offset-color: rgba(232, 121, 249, 0.95);
}
.ring-offset-fuchsia-50 {
  --tw-ring-offset-color: #fdf4ff;
}
.ring-offset-fuchsia-50\/0 {
  --tw-ring-offset-color: rgba(253, 244, 255, 0);
}
.ring-offset-fuchsia-50\/10 {
  --tw-ring-offset-color: rgba(253, 244, 255, 0.1);
}
.ring-offset-fuchsia-50\/100 {
  --tw-ring-offset-color: rgba(253, 244, 255, 1);
}
.ring-offset-fuchsia-50\/15 {
  --tw-ring-offset-color: rgba(253, 244, 255, 0.15);
}
.ring-offset-fuchsia-50\/20 {
  --tw-ring-offset-color: rgba(253, 244, 255, 0.2);
}
.ring-offset-fuchsia-50\/25 {
  --tw-ring-offset-color: rgba(253, 244, 255, 0.25);
}
.ring-offset-fuchsia-50\/30 {
  --tw-ring-offset-color: rgba(253, 244, 255, 0.3);
}
.ring-offset-fuchsia-50\/35 {
  --tw-ring-offset-color: rgba(253, 244, 255, 0.35);
}
.ring-offset-fuchsia-50\/40 {
  --tw-ring-offset-color: rgba(253, 244, 255, 0.4);
}
.ring-offset-fuchsia-50\/45 {
  --tw-ring-offset-color: rgba(253, 244, 255, 0.45);
}
.ring-offset-fuchsia-50\/5 {
  --tw-ring-offset-color: rgba(253, 244, 255, 0.05);
}
.ring-offset-fuchsia-50\/50 {
  --tw-ring-offset-color: rgba(253, 244, 255, 0.5);
}
.ring-offset-fuchsia-50\/55 {
  --tw-ring-offset-color: rgba(253, 244, 255, 0.55);
}
.ring-offset-fuchsia-50\/60 {
  --tw-ring-offset-color: rgba(253, 244, 255, 0.6);
}
.ring-offset-fuchsia-50\/65 {
  --tw-ring-offset-color: rgba(253, 244, 255, 0.65);
}
.ring-offset-fuchsia-50\/70 {
  --tw-ring-offset-color: rgba(253, 244, 255, 0.7);
}
.ring-offset-fuchsia-50\/75 {
  --tw-ring-offset-color: rgba(253, 244, 255, 0.75);
}
.ring-offset-fuchsia-50\/80 {
  --tw-ring-offset-color: rgba(253, 244, 255, 0.8);
}
.ring-offset-fuchsia-50\/85 {
  --tw-ring-offset-color: rgba(253, 244, 255, 0.85);
}
.ring-offset-fuchsia-50\/90 {
  --tw-ring-offset-color: rgba(253, 244, 255, 0.9);
}
.ring-offset-fuchsia-50\/95 {
  --tw-ring-offset-color: rgba(253, 244, 255, 0.95);
}
.ring-offset-fuchsia-500 {
  --tw-ring-offset-color: #d946ef;
}
.ring-offset-fuchsia-500\/0 {
  --tw-ring-offset-color: rgba(217, 70, 239, 0);
}
.ring-offset-fuchsia-500\/10 {
  --tw-ring-offset-color: rgba(217, 70, 239, 0.1);
}
.ring-offset-fuchsia-500\/100 {
  --tw-ring-offset-color: rgba(217, 70, 239, 1);
}
.ring-offset-fuchsia-500\/15 {
  --tw-ring-offset-color: rgba(217, 70, 239, 0.15);
}
.ring-offset-fuchsia-500\/20 {
  --tw-ring-offset-color: rgba(217, 70, 239, 0.2);
}
.ring-offset-fuchsia-500\/25 {
  --tw-ring-offset-color: rgba(217, 70, 239, 0.25);
}
.ring-offset-fuchsia-500\/30 {
  --tw-ring-offset-color: rgba(217, 70, 239, 0.3);
}
.ring-offset-fuchsia-500\/35 {
  --tw-ring-offset-color: rgba(217, 70, 239, 0.35);
}
.ring-offset-fuchsia-500\/40 {
  --tw-ring-offset-color: rgba(217, 70, 239, 0.4);
}
.ring-offset-fuchsia-500\/45 {
  --tw-ring-offset-color: rgba(217, 70, 239, 0.45);
}
.ring-offset-fuchsia-500\/5 {
  --tw-ring-offset-color: rgba(217, 70, 239, 0.05);
}
.ring-offset-fuchsia-500\/50 {
  --tw-ring-offset-color: rgba(217, 70, 239, 0.5);
}
.ring-offset-fuchsia-500\/55 {
  --tw-ring-offset-color: rgba(217, 70, 239, 0.55);
}
.ring-offset-fuchsia-500\/60 {
  --tw-ring-offset-color: rgba(217, 70, 239, 0.6);
}
.ring-offset-fuchsia-500\/65 {
  --tw-ring-offset-color: rgba(217, 70, 239, 0.65);
}
.ring-offset-fuchsia-500\/70 {
  --tw-ring-offset-color: rgba(217, 70, 239, 0.7);
}
.ring-offset-fuchsia-500\/75 {
  --tw-ring-offset-color: rgba(217, 70, 239, 0.75);
}
.ring-offset-fuchsia-500\/80 {
  --tw-ring-offset-color: rgba(217, 70, 239, 0.8);
}
.ring-offset-fuchsia-500\/85 {
  --tw-ring-offset-color: rgba(217, 70, 239, 0.85);
}
.ring-offset-fuchsia-500\/90 {
  --tw-ring-offset-color: rgba(217, 70, 239, 0.9);
}
.ring-offset-fuchsia-500\/95 {
  --tw-ring-offset-color: rgba(217, 70, 239, 0.95);
}
.ring-offset-fuchsia-600 {
  --tw-ring-offset-color: #c026d3;
}
.ring-offset-fuchsia-600\/0 {
  --tw-ring-offset-color: rgba(192, 38, 211, 0);
}
.ring-offset-fuchsia-600\/10 {
  --tw-ring-offset-color: rgba(192, 38, 211, 0.1);
}
.ring-offset-fuchsia-600\/100 {
  --tw-ring-offset-color: rgba(192, 38, 211, 1);
}
.ring-offset-fuchsia-600\/15 {
  --tw-ring-offset-color: rgba(192, 38, 211, 0.15);
}
.ring-offset-fuchsia-600\/20 {
  --tw-ring-offset-color: rgba(192, 38, 211, 0.2);
}
.ring-offset-fuchsia-600\/25 {
  --tw-ring-offset-color: rgba(192, 38, 211, 0.25);
}
.ring-offset-fuchsia-600\/30 {
  --tw-ring-offset-color: rgba(192, 38, 211, 0.3);
}
.ring-offset-fuchsia-600\/35 {
  --tw-ring-offset-color: rgba(192, 38, 211, 0.35);
}
.ring-offset-fuchsia-600\/40 {
  --tw-ring-offset-color: rgba(192, 38, 211, 0.4);
}
.ring-offset-fuchsia-600\/45 {
  --tw-ring-offset-color: rgba(192, 38, 211, 0.45);
}
.ring-offset-fuchsia-600\/5 {
  --tw-ring-offset-color: rgba(192, 38, 211, 0.05);
}
.ring-offset-fuchsia-600\/50 {
  --tw-ring-offset-color: rgba(192, 38, 211, 0.5);
}
.ring-offset-fuchsia-600\/55 {
  --tw-ring-offset-color: rgba(192, 38, 211, 0.55);
}
.ring-offset-fuchsia-600\/60 {
  --tw-ring-offset-color: rgba(192, 38, 211, 0.6);
}
.ring-offset-fuchsia-600\/65 {
  --tw-ring-offset-color: rgba(192, 38, 211, 0.65);
}
.ring-offset-fuchsia-600\/70 {
  --tw-ring-offset-color: rgba(192, 38, 211, 0.7);
}
.ring-offset-fuchsia-600\/75 {
  --tw-ring-offset-color: rgba(192, 38, 211, 0.75);
}
.ring-offset-fuchsia-600\/80 {
  --tw-ring-offset-color: rgba(192, 38, 211, 0.8);
}
.ring-offset-fuchsia-600\/85 {
  --tw-ring-offset-color: rgba(192, 38, 211, 0.85);
}
.ring-offset-fuchsia-600\/90 {
  --tw-ring-offset-color: rgba(192, 38, 211, 0.9);
}
.ring-offset-fuchsia-600\/95 {
  --tw-ring-offset-color: rgba(192, 38, 211, 0.95);
}
.ring-offset-fuchsia-700 {
  --tw-ring-offset-color: #a21caf;
}
.ring-offset-fuchsia-700\/0 {
  --tw-ring-offset-color: rgba(162, 28, 175, 0);
}
.ring-offset-fuchsia-700\/10 {
  --tw-ring-offset-color: rgba(162, 28, 175, 0.1);
}
.ring-offset-fuchsia-700\/100 {
  --tw-ring-offset-color: rgba(162, 28, 175, 1);
}
.ring-offset-fuchsia-700\/15 {
  --tw-ring-offset-color: rgba(162, 28, 175, 0.15);
}
.ring-offset-fuchsia-700\/20 {
  --tw-ring-offset-color: rgba(162, 28, 175, 0.2);
}
.ring-offset-fuchsia-700\/25 {
  --tw-ring-offset-color: rgba(162, 28, 175, 0.25);
}
.ring-offset-fuchsia-700\/30 {
  --tw-ring-offset-color: rgba(162, 28, 175, 0.3);
}
.ring-offset-fuchsia-700\/35 {
  --tw-ring-offset-color: rgba(162, 28, 175, 0.35);
}
.ring-offset-fuchsia-700\/40 {
  --tw-ring-offset-color: rgba(162, 28, 175, 0.4);
}
.ring-offset-fuchsia-700\/45 {
  --tw-ring-offset-color: rgba(162, 28, 175, 0.45);
}
.ring-offset-fuchsia-700\/5 {
  --tw-ring-offset-color: rgba(162, 28, 175, 0.05);
}
.ring-offset-fuchsia-700\/50 {
  --tw-ring-offset-color: rgba(162, 28, 175, 0.5);
}
.ring-offset-fuchsia-700\/55 {
  --tw-ring-offset-color: rgba(162, 28, 175, 0.55);
}
.ring-offset-fuchsia-700\/60 {
  --tw-ring-offset-color: rgba(162, 28, 175, 0.6);
}
.ring-offset-fuchsia-700\/65 {
  --tw-ring-offset-color: rgba(162, 28, 175, 0.65);
}
.ring-offset-fuchsia-700\/70 {
  --tw-ring-offset-color: rgba(162, 28, 175, 0.7);
}
.ring-offset-fuchsia-700\/75 {
  --tw-ring-offset-color: rgba(162, 28, 175, 0.75);
}
.ring-offset-fuchsia-700\/80 {
  --tw-ring-offset-color: rgba(162, 28, 175, 0.8);
}
.ring-offset-fuchsia-700\/85 {
  --tw-ring-offset-color: rgba(162, 28, 175, 0.85);
}
.ring-offset-fuchsia-700\/90 {
  --tw-ring-offset-color: rgba(162, 28, 175, 0.9);
}
.ring-offset-fuchsia-700\/95 {
  --tw-ring-offset-color: rgba(162, 28, 175, 0.95);
}
.ring-offset-fuchsia-800 {
  --tw-ring-offset-color: #86198f;
}
.ring-offset-fuchsia-800\/0 {
  --tw-ring-offset-color: rgba(134, 25, 143, 0);
}
.ring-offset-fuchsia-800\/10 {
  --tw-ring-offset-color: rgba(134, 25, 143, 0.1);
}
.ring-offset-fuchsia-800\/100 {
  --tw-ring-offset-color: rgba(134, 25, 143, 1);
}
.ring-offset-fuchsia-800\/15 {
  --tw-ring-offset-color: rgba(134, 25, 143, 0.15);
}
.ring-offset-fuchsia-800\/20 {
  --tw-ring-offset-color: rgba(134, 25, 143, 0.2);
}
.ring-offset-fuchsia-800\/25 {
  --tw-ring-offset-color: rgba(134, 25, 143, 0.25);
}
.ring-offset-fuchsia-800\/30 {
  --tw-ring-offset-color: rgba(134, 25, 143, 0.3);
}
.ring-offset-fuchsia-800\/35 {
  --tw-ring-offset-color: rgba(134, 25, 143, 0.35);
}
.ring-offset-fuchsia-800\/40 {
  --tw-ring-offset-color: rgba(134, 25, 143, 0.4);
}
.ring-offset-fuchsia-800\/45 {
  --tw-ring-offset-color: rgba(134, 25, 143, 0.45);
}
.ring-offset-fuchsia-800\/5 {
  --tw-ring-offset-color: rgba(134, 25, 143, 0.05);
}
.ring-offset-fuchsia-800\/50 {
  --tw-ring-offset-color: rgba(134, 25, 143, 0.5);
}
.ring-offset-fuchsia-800\/55 {
  --tw-ring-offset-color: rgba(134, 25, 143, 0.55);
}
.ring-offset-fuchsia-800\/60 {
  --tw-ring-offset-color: rgba(134, 25, 143, 0.6);
}
.ring-offset-fuchsia-800\/65 {
  --tw-ring-offset-color: rgba(134, 25, 143, 0.65);
}
.ring-offset-fuchsia-800\/70 {
  --tw-ring-offset-color: rgba(134, 25, 143, 0.7);
}
.ring-offset-fuchsia-800\/75 {
  --tw-ring-offset-color: rgba(134, 25, 143, 0.75);
}
.ring-offset-fuchsia-800\/80 {
  --tw-ring-offset-color: rgba(134, 25, 143, 0.8);
}
.ring-offset-fuchsia-800\/85 {
  --tw-ring-offset-color: rgba(134, 25, 143, 0.85);
}
.ring-offset-fuchsia-800\/90 {
  --tw-ring-offset-color: rgba(134, 25, 143, 0.9);
}
.ring-offset-fuchsia-800\/95 {
  --tw-ring-offset-color: rgba(134, 25, 143, 0.95);
}
.ring-offset-fuchsia-900 {
  --tw-ring-offset-color: #701a75;
}
.ring-offset-fuchsia-900\/0 {
  --tw-ring-offset-color: rgba(112, 26, 117, 0);
}
.ring-offset-fuchsia-900\/10 {
  --tw-ring-offset-color: rgba(112, 26, 117, 0.1);
}
.ring-offset-fuchsia-900\/100 {
  --tw-ring-offset-color: rgba(112, 26, 117, 1);
}
.ring-offset-fuchsia-900\/15 {
  --tw-ring-offset-color: rgba(112, 26, 117, 0.15);
}
.ring-offset-fuchsia-900\/20 {
  --tw-ring-offset-color: rgba(112, 26, 117, 0.2);
}
.ring-offset-fuchsia-900\/25 {
  --tw-ring-offset-color: rgba(112, 26, 117, 0.25);
}
.ring-offset-fuchsia-900\/30 {
  --tw-ring-offset-color: rgba(112, 26, 117, 0.3);
}
.ring-offset-fuchsia-900\/35 {
  --tw-ring-offset-color: rgba(112, 26, 117, 0.35);
}
.ring-offset-fuchsia-900\/40 {
  --tw-ring-offset-color: rgba(112, 26, 117, 0.4);
}
.ring-offset-fuchsia-900\/45 {
  --tw-ring-offset-color: rgba(112, 26, 117, 0.45);
}
.ring-offset-fuchsia-900\/5 {
  --tw-ring-offset-color: rgba(112, 26, 117, 0.05);
}
.ring-offset-fuchsia-900\/50 {
  --tw-ring-offset-color: rgba(112, 26, 117, 0.5);
}
.ring-offset-fuchsia-900\/55 {
  --tw-ring-offset-color: rgba(112, 26, 117, 0.55);
}
.ring-offset-fuchsia-900\/60 {
  --tw-ring-offset-color: rgba(112, 26, 117, 0.6);
}
.ring-offset-fuchsia-900\/65 {
  --tw-ring-offset-color: rgba(112, 26, 117, 0.65);
}
.ring-offset-fuchsia-900\/70 {
  --tw-ring-offset-color: rgba(112, 26, 117, 0.7);
}
.ring-offset-fuchsia-900\/75 {
  --tw-ring-offset-color: rgba(112, 26, 117, 0.75);
}
.ring-offset-fuchsia-900\/80 {
  --tw-ring-offset-color: rgba(112, 26, 117, 0.8);
}
.ring-offset-fuchsia-900\/85 {
  --tw-ring-offset-color: rgba(112, 26, 117, 0.85);
}
.ring-offset-fuchsia-900\/90 {
  --tw-ring-offset-color: rgba(112, 26, 117, 0.9);
}
.ring-offset-fuchsia-900\/95 {
  --tw-ring-offset-color: rgba(112, 26, 117, 0.95);
}
.ring-offset-fuchsia-950 {
  --tw-ring-offset-color: #4a044e;
}
.ring-offset-fuchsia-950\/0 {
  --tw-ring-offset-color: rgba(74, 4, 78, 0);
}
.ring-offset-fuchsia-950\/10 {
  --tw-ring-offset-color: rgba(74, 4, 78, 0.1);
}
.ring-offset-fuchsia-950\/100 {
  --tw-ring-offset-color: rgba(74, 4, 78, 1);
}
.ring-offset-fuchsia-950\/15 {
  --tw-ring-offset-color: rgba(74, 4, 78, 0.15);
}
.ring-offset-fuchsia-950\/20 {
  --tw-ring-offset-color: rgba(74, 4, 78, 0.2);
}
.ring-offset-fuchsia-950\/25 {
  --tw-ring-offset-color: rgba(74, 4, 78, 0.25);
}
.ring-offset-fuchsia-950\/30 {
  --tw-ring-offset-color: rgba(74, 4, 78, 0.3);
}
.ring-offset-fuchsia-950\/35 {
  --tw-ring-offset-color: rgba(74, 4, 78, 0.35);
}
.ring-offset-fuchsia-950\/40 {
  --tw-ring-offset-color: rgba(74, 4, 78, 0.4);
}
.ring-offset-fuchsia-950\/45 {
  --tw-ring-offset-color: rgba(74, 4, 78, 0.45);
}
.ring-offset-fuchsia-950\/5 {
  --tw-ring-offset-color: rgba(74, 4, 78, 0.05);
}
.ring-offset-fuchsia-950\/50 {
  --tw-ring-offset-color: rgba(74, 4, 78, 0.5);
}
.ring-offset-fuchsia-950\/55 {
  --tw-ring-offset-color: rgba(74, 4, 78, 0.55);
}
.ring-offset-fuchsia-950\/60 {
  --tw-ring-offset-color: rgba(74, 4, 78, 0.6);
}
.ring-offset-fuchsia-950\/65 {
  --tw-ring-offset-color: rgba(74, 4, 78, 0.65);
}
.ring-offset-fuchsia-950\/70 {
  --tw-ring-offset-color: rgba(74, 4, 78, 0.7);
}
.ring-offset-fuchsia-950\/75 {
  --tw-ring-offset-color: rgba(74, 4, 78, 0.75);
}
.ring-offset-fuchsia-950\/80 {
  --tw-ring-offset-color: rgba(74, 4, 78, 0.8);
}
.ring-offset-fuchsia-950\/85 {
  --tw-ring-offset-color: rgba(74, 4, 78, 0.85);
}
.ring-offset-fuchsia-950\/90 {
  --tw-ring-offset-color: rgba(74, 4, 78, 0.9);
}
.ring-offset-fuchsia-950\/95 {
  --tw-ring-offset-color: rgba(74, 4, 78, 0.95);
}
.ring-offset-gray-100 {
  --tw-ring-offset-color: #f3f4f6;
}
.ring-offset-gray-100\/0 {
  --tw-ring-offset-color: rgba(243, 244, 246, 0);
}
.ring-offset-gray-100\/10 {
  --tw-ring-offset-color: rgba(243, 244, 246, 0.1);
}
.ring-offset-gray-100\/100 {
  --tw-ring-offset-color: rgba(243, 244, 246, 1);
}
.ring-offset-gray-100\/15 {
  --tw-ring-offset-color: rgba(243, 244, 246, 0.15);
}
.ring-offset-gray-100\/20 {
  --tw-ring-offset-color: rgba(243, 244, 246, 0.2);
}
.ring-offset-gray-100\/25 {
  --tw-ring-offset-color: rgba(243, 244, 246, 0.25);
}
.ring-offset-gray-100\/30 {
  --tw-ring-offset-color: rgba(243, 244, 246, 0.3);
}
.ring-offset-gray-100\/35 {
  --tw-ring-offset-color: rgba(243, 244, 246, 0.35);
}
.ring-offset-gray-100\/40 {
  --tw-ring-offset-color: rgba(243, 244, 246, 0.4);
}
.ring-offset-gray-100\/45 {
  --tw-ring-offset-color: rgba(243, 244, 246, 0.45);
}
.ring-offset-gray-100\/5 {
  --tw-ring-offset-color: rgba(243, 244, 246, 0.05);
}
.ring-offset-gray-100\/50 {
  --tw-ring-offset-color: rgba(243, 244, 246, 0.5);
}
.ring-offset-gray-100\/55 {
  --tw-ring-offset-color: rgba(243, 244, 246, 0.55);
}
.ring-offset-gray-100\/60 {
  --tw-ring-offset-color: rgba(243, 244, 246, 0.6);
}
.ring-offset-gray-100\/65 {
  --tw-ring-offset-color: rgba(243, 244, 246, 0.65);
}
.ring-offset-gray-100\/70 {
  --tw-ring-offset-color: rgba(243, 244, 246, 0.7);
}
.ring-offset-gray-100\/75 {
  --tw-ring-offset-color: rgba(243, 244, 246, 0.75);
}
.ring-offset-gray-100\/80 {
  --tw-ring-offset-color: rgba(243, 244, 246, 0.8);
}
.ring-offset-gray-100\/85 {
  --tw-ring-offset-color: rgba(243, 244, 246, 0.85);
}
.ring-offset-gray-100\/90 {
  --tw-ring-offset-color: rgba(243, 244, 246, 0.9);
}
.ring-offset-gray-100\/95 {
  --tw-ring-offset-color: rgba(243, 244, 246, 0.95);
}
.ring-offset-gray-200 {
  --tw-ring-offset-color: #e5e7eb;
}
.ring-offset-gray-200\/0 {
  --tw-ring-offset-color: rgba(229, 231, 235, 0);
}
.ring-offset-gray-200\/10 {
  --tw-ring-offset-color: rgba(229, 231, 235, 0.1);
}
.ring-offset-gray-200\/100 {
  --tw-ring-offset-color: rgba(229, 231, 235, 1);
}
.ring-offset-gray-200\/15 {
  --tw-ring-offset-color: rgba(229, 231, 235, 0.15);
}
.ring-offset-gray-200\/20 {
  --tw-ring-offset-color: rgba(229, 231, 235, 0.2);
}
.ring-offset-gray-200\/25 {
  --tw-ring-offset-color: rgba(229, 231, 235, 0.25);
}
.ring-offset-gray-200\/30 {
  --tw-ring-offset-color: rgba(229, 231, 235, 0.3);
}
.ring-offset-gray-200\/35 {
  --tw-ring-offset-color: rgba(229, 231, 235, 0.35);
}
.ring-offset-gray-200\/40 {
  --tw-ring-offset-color: rgba(229, 231, 235, 0.4);
}
.ring-offset-gray-200\/45 {
  --tw-ring-offset-color: rgba(229, 231, 235, 0.45);
}
.ring-offset-gray-200\/5 {
  --tw-ring-offset-color: rgba(229, 231, 235, 0.05);
}
.ring-offset-gray-200\/50 {
  --tw-ring-offset-color: rgba(229, 231, 235, 0.5);
}
.ring-offset-gray-200\/55 {
  --tw-ring-offset-color: rgba(229, 231, 235, 0.55);
}
.ring-offset-gray-200\/60 {
  --tw-ring-offset-color: rgba(229, 231, 235, 0.6);
}
.ring-offset-gray-200\/65 {
  --tw-ring-offset-color: rgba(229, 231, 235, 0.65);
}
.ring-offset-gray-200\/70 {
  --tw-ring-offset-color: rgba(229, 231, 235, 0.7);
}
.ring-offset-gray-200\/75 {
  --tw-ring-offset-color: rgba(229, 231, 235, 0.75);
}
.ring-offset-gray-200\/80 {
  --tw-ring-offset-color: rgba(229, 231, 235, 0.8);
}
.ring-offset-gray-200\/85 {
  --tw-ring-offset-color: rgba(229, 231, 235, 0.85);
}
.ring-offset-gray-200\/90 {
  --tw-ring-offset-color: rgba(229, 231, 235, 0.9);
}
.ring-offset-gray-200\/95 {
  --tw-ring-offset-color: rgba(229, 231, 235, 0.95);
}
.ring-offset-gray-300 {
  --tw-ring-offset-color: #d1d5db;
}
.ring-offset-gray-300\/0 {
  --tw-ring-offset-color: rgba(209, 213, 219, 0);
}
.ring-offset-gray-300\/10 {
  --tw-ring-offset-color: rgba(209, 213, 219, 0.1);
}
.ring-offset-gray-300\/100 {
  --tw-ring-offset-color: rgba(209, 213, 219, 1);
}
.ring-offset-gray-300\/15 {
  --tw-ring-offset-color: rgba(209, 213, 219, 0.15);
}
.ring-offset-gray-300\/20 {
  --tw-ring-offset-color: rgba(209, 213, 219, 0.2);
}
.ring-offset-gray-300\/25 {
  --tw-ring-offset-color: rgba(209, 213, 219, 0.25);
}
.ring-offset-gray-300\/30 {
  --tw-ring-offset-color: rgba(209, 213, 219, 0.3);
}
.ring-offset-gray-300\/35 {
  --tw-ring-offset-color: rgba(209, 213, 219, 0.35);
}
.ring-offset-gray-300\/40 {
  --tw-ring-offset-color: rgba(209, 213, 219, 0.4);
}
.ring-offset-gray-300\/45 {
  --tw-ring-offset-color: rgba(209, 213, 219, 0.45);
}
.ring-offset-gray-300\/5 {
  --tw-ring-offset-color: rgba(209, 213, 219, 0.05);
}
.ring-offset-gray-300\/50 {
  --tw-ring-offset-color: rgba(209, 213, 219, 0.5);
}
.ring-offset-gray-300\/55 {
  --tw-ring-offset-color: rgba(209, 213, 219, 0.55);
}
.ring-offset-gray-300\/60 {
  --tw-ring-offset-color: rgba(209, 213, 219, 0.6);
}
.ring-offset-gray-300\/65 {
  --tw-ring-offset-color: rgba(209, 213, 219, 0.65);
}
.ring-offset-gray-300\/70 {
  --tw-ring-offset-color: rgba(209, 213, 219, 0.7);
}
.ring-offset-gray-300\/75 {
  --tw-ring-offset-color: rgba(209, 213, 219, 0.75);
}
.ring-offset-gray-300\/80 {
  --tw-ring-offset-color: rgba(209, 213, 219, 0.8);
}
.ring-offset-gray-300\/85 {
  --tw-ring-offset-color: rgba(209, 213, 219, 0.85);
}
.ring-offset-gray-300\/90 {
  --tw-ring-offset-color: rgba(209, 213, 219, 0.9);
}
.ring-offset-gray-300\/95 {
  --tw-ring-offset-color: rgba(209, 213, 219, 0.95);
}
.ring-offset-gray-400 {
  --tw-ring-offset-color: #9ca3af;
}
.ring-offset-gray-400\/0 {
  --tw-ring-offset-color: rgba(156, 163, 175, 0);
}
.ring-offset-gray-400\/10 {
  --tw-ring-offset-color: rgba(156, 163, 175, 0.1);
}
.ring-offset-gray-400\/100 {
  --tw-ring-offset-color: rgba(156, 163, 175, 1);
}
.ring-offset-gray-400\/15 {
  --tw-ring-offset-color: rgba(156, 163, 175, 0.15);
}
.ring-offset-gray-400\/20 {
  --tw-ring-offset-color: rgba(156, 163, 175, 0.2);
}
.ring-offset-gray-400\/25 {
  --tw-ring-offset-color: rgba(156, 163, 175, 0.25);
}
.ring-offset-gray-400\/30 {
  --tw-ring-offset-color: rgba(156, 163, 175, 0.3);
}
.ring-offset-gray-400\/35 {
  --tw-ring-offset-color: rgba(156, 163, 175, 0.35);
}
.ring-offset-gray-400\/40 {
  --tw-ring-offset-color: rgba(156, 163, 175, 0.4);
}
.ring-offset-gray-400\/45 {
  --tw-ring-offset-color: rgba(156, 163, 175, 0.45);
}
.ring-offset-gray-400\/5 {
  --tw-ring-offset-color: rgba(156, 163, 175, 0.05);
}
.ring-offset-gray-400\/50 {
  --tw-ring-offset-color: rgba(156, 163, 175, 0.5);
}
.ring-offset-gray-400\/55 {
  --tw-ring-offset-color: rgba(156, 163, 175, 0.55);
}
.ring-offset-gray-400\/60 {
  --tw-ring-offset-color: rgba(156, 163, 175, 0.6);
}
.ring-offset-gray-400\/65 {
  --tw-ring-offset-color: rgba(156, 163, 175, 0.65);
}
.ring-offset-gray-400\/70 {
  --tw-ring-offset-color: rgba(156, 163, 175, 0.7);
}
.ring-offset-gray-400\/75 {
  --tw-ring-offset-color: rgba(156, 163, 175, 0.75);
}
.ring-offset-gray-400\/80 {
  --tw-ring-offset-color: rgba(156, 163, 175, 0.8);
}
.ring-offset-gray-400\/85 {
  --tw-ring-offset-color: rgba(156, 163, 175, 0.85);
}
.ring-offset-gray-400\/90 {
  --tw-ring-offset-color: rgba(156, 163, 175, 0.9);
}
.ring-offset-gray-400\/95 {
  --tw-ring-offset-color: rgba(156, 163, 175, 0.95);
}
.ring-offset-gray-50 {
  --tw-ring-offset-color: #f9fafb;
}
.ring-offset-gray-50\/0 {
  --tw-ring-offset-color: rgba(249, 250, 251, 0);
}
.ring-offset-gray-50\/10 {
  --tw-ring-offset-color: rgba(249, 250, 251, 0.1);
}
.ring-offset-gray-50\/100 {
  --tw-ring-offset-color: rgba(249, 250, 251, 1);
}
.ring-offset-gray-50\/15 {
  --tw-ring-offset-color: rgba(249, 250, 251, 0.15);
}
.ring-offset-gray-50\/20 {
  --tw-ring-offset-color: rgba(249, 250, 251, 0.2);
}
.ring-offset-gray-50\/25 {
  --tw-ring-offset-color: rgba(249, 250, 251, 0.25);
}
.ring-offset-gray-50\/30 {
  --tw-ring-offset-color: rgba(249, 250, 251, 0.3);
}
.ring-offset-gray-50\/35 {
  --tw-ring-offset-color: rgba(249, 250, 251, 0.35);
}
.ring-offset-gray-50\/40 {
  --tw-ring-offset-color: rgba(249, 250, 251, 0.4);
}
.ring-offset-gray-50\/45 {
  --tw-ring-offset-color: rgba(249, 250, 251, 0.45);
}
.ring-offset-gray-50\/5 {
  --tw-ring-offset-color: rgba(249, 250, 251, 0.05);
}
.ring-offset-gray-50\/50 {
  --tw-ring-offset-color: rgba(249, 250, 251, 0.5);
}
.ring-offset-gray-50\/55 {
  --tw-ring-offset-color: rgba(249, 250, 251, 0.55);
}
.ring-offset-gray-50\/60 {
  --tw-ring-offset-color: rgba(249, 250, 251, 0.6);
}
.ring-offset-gray-50\/65 {
  --tw-ring-offset-color: rgba(249, 250, 251, 0.65);
}
.ring-offset-gray-50\/70 {
  --tw-ring-offset-color: rgba(249, 250, 251, 0.7);
}
.ring-offset-gray-50\/75 {
  --tw-ring-offset-color: rgba(249, 250, 251, 0.75);
}
.ring-offset-gray-50\/80 {
  --tw-ring-offset-color: rgba(249, 250, 251, 0.8);
}
.ring-offset-gray-50\/85 {
  --tw-ring-offset-color: rgba(249, 250, 251, 0.85);
}
.ring-offset-gray-50\/90 {
  --tw-ring-offset-color: rgba(249, 250, 251, 0.9);
}
.ring-offset-gray-50\/95 {
  --tw-ring-offset-color: rgba(249, 250, 251, 0.95);
}
.ring-offset-gray-500 {
  --tw-ring-offset-color: #6b7280;
}
.ring-offset-gray-500\/0 {
  --tw-ring-offset-color: rgba(107, 114, 128, 0);
}
.ring-offset-gray-500\/10 {
  --tw-ring-offset-color: rgba(107, 114, 128, 0.1);
}
.ring-offset-gray-500\/100 {
  --tw-ring-offset-color: rgba(107, 114, 128, 1);
}
.ring-offset-gray-500\/15 {
  --tw-ring-offset-color: rgba(107, 114, 128, 0.15);
}
.ring-offset-gray-500\/20 {
  --tw-ring-offset-color: rgba(107, 114, 128, 0.2);
}
.ring-offset-gray-500\/25 {
  --tw-ring-offset-color: rgba(107, 114, 128, 0.25);
}
.ring-offset-gray-500\/30 {
  --tw-ring-offset-color: rgba(107, 114, 128, 0.3);
}
.ring-offset-gray-500\/35 {
  --tw-ring-offset-color: rgba(107, 114, 128, 0.35);
}
.ring-offset-gray-500\/40 {
  --tw-ring-offset-color: rgba(107, 114, 128, 0.4);
}
.ring-offset-gray-500\/45 {
  --tw-ring-offset-color: rgba(107, 114, 128, 0.45);
}
.ring-offset-gray-500\/5 {
  --tw-ring-offset-color: rgba(107, 114, 128, 0.05);
}
.ring-offset-gray-500\/50 {
  --tw-ring-offset-color: rgba(107, 114, 128, 0.5);
}
.ring-offset-gray-500\/55 {
  --tw-ring-offset-color: rgba(107, 114, 128, 0.55);
}
.ring-offset-gray-500\/60 {
  --tw-ring-offset-color: rgba(107, 114, 128, 0.6);
}
.ring-offset-gray-500\/65 {
  --tw-ring-offset-color: rgba(107, 114, 128, 0.65);
}
.ring-offset-gray-500\/70 {
  --tw-ring-offset-color: rgba(107, 114, 128, 0.7);
}
.ring-offset-gray-500\/75 {
  --tw-ring-offset-color: rgba(107, 114, 128, 0.75);
}
.ring-offset-gray-500\/80 {
  --tw-ring-offset-color: rgba(107, 114, 128, 0.8);
}
.ring-offset-gray-500\/85 {
  --tw-ring-offset-color: rgba(107, 114, 128, 0.85);
}
.ring-offset-gray-500\/90 {
  --tw-ring-offset-color: rgba(107, 114, 128, 0.9);
}
.ring-offset-gray-500\/95 {
  --tw-ring-offset-color: rgba(107, 114, 128, 0.95);
}
.ring-offset-gray-600 {
  --tw-ring-offset-color: #4b5563;
}
.ring-offset-gray-600\/0 {
  --tw-ring-offset-color: rgba(75, 85, 99, 0);
}
.ring-offset-gray-600\/10 {
  --tw-ring-offset-color: rgba(75, 85, 99, 0.1);
}
.ring-offset-gray-600\/100 {
  --tw-ring-offset-color: rgba(75, 85, 99, 1);
}
.ring-offset-gray-600\/15 {
  --tw-ring-offset-color: rgba(75, 85, 99, 0.15);
}
.ring-offset-gray-600\/20 {
  --tw-ring-offset-color: rgba(75, 85, 99, 0.2);
}
.ring-offset-gray-600\/25 {
  --tw-ring-offset-color: rgba(75, 85, 99, 0.25);
}
.ring-offset-gray-600\/30 {
  --tw-ring-offset-color: rgba(75, 85, 99, 0.3);
}
.ring-offset-gray-600\/35 {
  --tw-ring-offset-color: rgba(75, 85, 99, 0.35);
}
.ring-offset-gray-600\/40 {
  --tw-ring-offset-color: rgba(75, 85, 99, 0.4);
}
.ring-offset-gray-600\/45 {
  --tw-ring-offset-color: rgba(75, 85, 99, 0.45);
}
.ring-offset-gray-600\/5 {
  --tw-ring-offset-color: rgba(75, 85, 99, 0.05);
}
.ring-offset-gray-600\/50 {
  --tw-ring-offset-color: rgba(75, 85, 99, 0.5);
}
.ring-offset-gray-600\/55 {
  --tw-ring-offset-color: rgba(75, 85, 99, 0.55);
}
.ring-offset-gray-600\/60 {
  --tw-ring-offset-color: rgba(75, 85, 99, 0.6);
}
.ring-offset-gray-600\/65 {
  --tw-ring-offset-color: rgba(75, 85, 99, 0.65);
}
.ring-offset-gray-600\/70 {
  --tw-ring-offset-color: rgba(75, 85, 99, 0.7);
}
.ring-offset-gray-600\/75 {
  --tw-ring-offset-color: rgba(75, 85, 99, 0.75);
}
.ring-offset-gray-600\/80 {
  --tw-ring-offset-color: rgba(75, 85, 99, 0.8);
}
.ring-offset-gray-600\/85 {
  --tw-ring-offset-color: rgba(75, 85, 99, 0.85);
}
.ring-offset-gray-600\/90 {
  --tw-ring-offset-color: rgba(75, 85, 99, 0.9);
}
.ring-offset-gray-600\/95 {
  --tw-ring-offset-color: rgba(75, 85, 99, 0.95);
}
.ring-offset-gray-700 {
  --tw-ring-offset-color: #374151;
}
.ring-offset-gray-700\/0 {
  --tw-ring-offset-color: rgba(55, 65, 81, 0);
}
.ring-offset-gray-700\/10 {
  --tw-ring-offset-color: rgba(55, 65, 81, 0.1);
}
.ring-offset-gray-700\/100 {
  --tw-ring-offset-color: rgba(55, 65, 81, 1);
}
.ring-offset-gray-700\/15 {
  --tw-ring-offset-color: rgba(55, 65, 81, 0.15);
}
.ring-offset-gray-700\/20 {
  --tw-ring-offset-color: rgba(55, 65, 81, 0.2);
}
.ring-offset-gray-700\/25 {
  --tw-ring-offset-color: rgba(55, 65, 81, 0.25);
}
.ring-offset-gray-700\/30 {
  --tw-ring-offset-color: rgba(55, 65, 81, 0.3);
}
.ring-offset-gray-700\/35 {
  --tw-ring-offset-color: rgba(55, 65, 81, 0.35);
}
.ring-offset-gray-700\/40 {
  --tw-ring-offset-color: rgba(55, 65, 81, 0.4);
}
.ring-offset-gray-700\/45 {
  --tw-ring-offset-color: rgba(55, 65, 81, 0.45);
}
.ring-offset-gray-700\/5 {
  --tw-ring-offset-color: rgba(55, 65, 81, 0.05);
}
.ring-offset-gray-700\/50 {
  --tw-ring-offset-color: rgba(55, 65, 81, 0.5);
}
.ring-offset-gray-700\/55 {
  --tw-ring-offset-color: rgba(55, 65, 81, 0.55);
}
.ring-offset-gray-700\/60 {
  --tw-ring-offset-color: rgba(55, 65, 81, 0.6);
}
.ring-offset-gray-700\/65 {
  --tw-ring-offset-color: rgba(55, 65, 81, 0.65);
}
.ring-offset-gray-700\/70 {
  --tw-ring-offset-color: rgba(55, 65, 81, 0.7);
}
.ring-offset-gray-700\/75 {
  --tw-ring-offset-color: rgba(55, 65, 81, 0.75);
}
.ring-offset-gray-700\/80 {
  --tw-ring-offset-color: rgba(55, 65, 81, 0.8);
}
.ring-offset-gray-700\/85 {
  --tw-ring-offset-color: rgba(55, 65, 81, 0.85);
}
.ring-offset-gray-700\/90 {
  --tw-ring-offset-color: rgba(55, 65, 81, 0.9);
}
.ring-offset-gray-700\/95 {
  --tw-ring-offset-color: rgba(55, 65, 81, 0.95);
}
.ring-offset-gray-800 {
  --tw-ring-offset-color: #1f2937;
}
.ring-offset-gray-800\/0 {
  --tw-ring-offset-color: rgba(31, 41, 55, 0);
}
.ring-offset-gray-800\/10 {
  --tw-ring-offset-color: rgba(31, 41, 55, 0.1);
}
.ring-offset-gray-800\/100 {
  --tw-ring-offset-color: rgba(31, 41, 55, 1);
}
.ring-offset-gray-800\/15 {
  --tw-ring-offset-color: rgba(31, 41, 55, 0.15);
}
.ring-offset-gray-800\/20 {
  --tw-ring-offset-color: rgba(31, 41, 55, 0.2);
}
.ring-offset-gray-800\/25 {
  --tw-ring-offset-color: rgba(31, 41, 55, 0.25);
}
.ring-offset-gray-800\/30 {
  --tw-ring-offset-color: rgba(31, 41, 55, 0.3);
}
.ring-offset-gray-800\/35 {
  --tw-ring-offset-color: rgba(31, 41, 55, 0.35);
}
.ring-offset-gray-800\/40 {
  --tw-ring-offset-color: rgba(31, 41, 55, 0.4);
}
.ring-offset-gray-800\/45 {
  --tw-ring-offset-color: rgba(31, 41, 55, 0.45);
}
.ring-offset-gray-800\/5 {
  --tw-ring-offset-color: rgba(31, 41, 55, 0.05);
}
.ring-offset-gray-800\/50 {
  --tw-ring-offset-color: rgba(31, 41, 55, 0.5);
}
.ring-offset-gray-800\/55 {
  --tw-ring-offset-color: rgba(31, 41, 55, 0.55);
}
.ring-offset-gray-800\/60 {
  --tw-ring-offset-color: rgba(31, 41, 55, 0.6);
}
.ring-offset-gray-800\/65 {
  --tw-ring-offset-color: rgba(31, 41, 55, 0.65);
}
.ring-offset-gray-800\/70 {
  --tw-ring-offset-color: rgba(31, 41, 55, 0.7);
}
.ring-offset-gray-800\/75 {
  --tw-ring-offset-color: rgba(31, 41, 55, 0.75);
}
.ring-offset-gray-800\/80 {
  --tw-ring-offset-color: rgba(31, 41, 55, 0.8);
}
.ring-offset-gray-800\/85 {
  --tw-ring-offset-color: rgba(31, 41, 55, 0.85);
}
.ring-offset-gray-800\/90 {
  --tw-ring-offset-color: rgba(31, 41, 55, 0.9);
}
.ring-offset-gray-800\/95 {
  --tw-ring-offset-color: rgba(31, 41, 55, 0.95);
}
.ring-offset-gray-900 {
  --tw-ring-offset-color: #111827;
}
.ring-offset-gray-900\/0 {
  --tw-ring-offset-color: rgba(17, 24, 39, 0);
}
.ring-offset-gray-900\/10 {
  --tw-ring-offset-color: rgba(17, 24, 39, 0.1);
}
.ring-offset-gray-900\/100 {
  --tw-ring-offset-color: rgba(17, 24, 39, 1);
}
.ring-offset-gray-900\/15 {
  --tw-ring-offset-color: rgba(17, 24, 39, 0.15);
}
.ring-offset-gray-900\/20 {
  --tw-ring-offset-color: rgba(17, 24, 39, 0.2);
}
.ring-offset-gray-900\/25 {
  --tw-ring-offset-color: rgba(17, 24, 39, 0.25);
}
.ring-offset-gray-900\/30 {
  --tw-ring-offset-color: rgba(17, 24, 39, 0.3);
}
.ring-offset-gray-900\/35 {
  --tw-ring-offset-color: rgba(17, 24, 39, 0.35);
}
.ring-offset-gray-900\/40 {
  --tw-ring-offset-color: rgba(17, 24, 39, 0.4);
}
.ring-offset-gray-900\/45 {
  --tw-ring-offset-color: rgba(17, 24, 39, 0.45);
}
.ring-offset-gray-900\/5 {
  --tw-ring-offset-color: rgba(17, 24, 39, 0.05);
}
.ring-offset-gray-900\/50 {
  --tw-ring-offset-color: rgba(17, 24, 39, 0.5);
}
.ring-offset-gray-900\/55 {
  --tw-ring-offset-color: rgba(17, 24, 39, 0.55);
}
.ring-offset-gray-900\/60 {
  --tw-ring-offset-color: rgba(17, 24, 39, 0.6);
}
.ring-offset-gray-900\/65 {
  --tw-ring-offset-color: rgba(17, 24, 39, 0.65);
}
.ring-offset-gray-900\/70 {
  --tw-ring-offset-color: rgba(17, 24, 39, 0.7);
}
.ring-offset-gray-900\/75 {
  --tw-ring-offset-color: rgba(17, 24, 39, 0.75);
}
.ring-offset-gray-900\/80 {
  --tw-ring-offset-color: rgba(17, 24, 39, 0.8);
}
.ring-offset-gray-900\/85 {
  --tw-ring-offset-color: rgba(17, 24, 39, 0.85);
}
.ring-offset-gray-900\/90 {
  --tw-ring-offset-color: rgba(17, 24, 39, 0.9);
}
.ring-offset-gray-900\/95 {
  --tw-ring-offset-color: rgba(17, 24, 39, 0.95);
}
.ring-offset-gray-950 {
  --tw-ring-offset-color: #030712;
}
.ring-offset-gray-950\/0 {
  --tw-ring-offset-color: rgba(3, 7, 18, 0);
}
.ring-offset-gray-950\/10 {
  --tw-ring-offset-color: rgba(3, 7, 18, 0.1);
}
.ring-offset-gray-950\/100 {
  --tw-ring-offset-color: rgba(3, 7, 18, 1);
}
.ring-offset-gray-950\/15 {
  --tw-ring-offset-color: rgba(3, 7, 18, 0.15);
}
.ring-offset-gray-950\/20 {
  --tw-ring-offset-color: rgba(3, 7, 18, 0.2);
}
.ring-offset-gray-950\/25 {
  --tw-ring-offset-color: rgba(3, 7, 18, 0.25);
}
.ring-offset-gray-950\/30 {
  --tw-ring-offset-color: rgba(3, 7, 18, 0.3);
}
.ring-offset-gray-950\/35 {
  --tw-ring-offset-color: rgba(3, 7, 18, 0.35);
}
.ring-offset-gray-950\/40 {
  --tw-ring-offset-color: rgba(3, 7, 18, 0.4);
}
.ring-offset-gray-950\/45 {
  --tw-ring-offset-color: rgba(3, 7, 18, 0.45);
}
.ring-offset-gray-950\/5 {
  --tw-ring-offset-color: rgba(3, 7, 18, 0.05);
}
.ring-offset-gray-950\/50 {
  --tw-ring-offset-color: rgba(3, 7, 18, 0.5);
}
.ring-offset-gray-950\/55 {
  --tw-ring-offset-color: rgba(3, 7, 18, 0.55);
}
.ring-offset-gray-950\/60 {
  --tw-ring-offset-color: rgba(3, 7, 18, 0.6);
}
.ring-offset-gray-950\/65 {
  --tw-ring-offset-color: rgba(3, 7, 18, 0.65);
}
.ring-offset-gray-950\/70 {
  --tw-ring-offset-color: rgba(3, 7, 18, 0.7);
}
.ring-offset-gray-950\/75 {
  --tw-ring-offset-color: rgba(3, 7, 18, 0.75);
}
.ring-offset-gray-950\/80 {
  --tw-ring-offset-color: rgba(3, 7, 18, 0.8);
}
.ring-offset-gray-950\/85 {
  --tw-ring-offset-color: rgba(3, 7, 18, 0.85);
}
.ring-offset-gray-950\/90 {
  --tw-ring-offset-color: rgba(3, 7, 18, 0.9);
}
.ring-offset-gray-950\/95 {
  --tw-ring-offset-color: rgba(3, 7, 18, 0.95);
}
.ring-offset-green-100 {
  --tw-ring-offset-color: #dcfce7;
}
.ring-offset-green-100\/0 {
  --tw-ring-offset-color: rgba(220, 252, 231, 0);
}
.ring-offset-green-100\/10 {
  --tw-ring-offset-color: rgba(220, 252, 231, 0.1);
}
.ring-offset-green-100\/100 {
  --tw-ring-offset-color: rgba(220, 252, 231, 1);
}
.ring-offset-green-100\/15 {
  --tw-ring-offset-color: rgba(220, 252, 231, 0.15);
}
.ring-offset-green-100\/20 {
  --tw-ring-offset-color: rgba(220, 252, 231, 0.2);
}
.ring-offset-green-100\/25 {
  --tw-ring-offset-color: rgba(220, 252, 231, 0.25);
}
.ring-offset-green-100\/30 {
  --tw-ring-offset-color: rgba(220, 252, 231, 0.3);
}
.ring-offset-green-100\/35 {
  --tw-ring-offset-color: rgba(220, 252, 231, 0.35);
}
.ring-offset-green-100\/40 {
  --tw-ring-offset-color: rgba(220, 252, 231, 0.4);
}
.ring-offset-green-100\/45 {
  --tw-ring-offset-color: rgba(220, 252, 231, 0.45);
}
.ring-offset-green-100\/5 {
  --tw-ring-offset-color: rgba(220, 252, 231, 0.05);
}
.ring-offset-green-100\/50 {
  --tw-ring-offset-color: rgba(220, 252, 231, 0.5);
}
.ring-offset-green-100\/55 {
  --tw-ring-offset-color: rgba(220, 252, 231, 0.55);
}
.ring-offset-green-100\/60 {
  --tw-ring-offset-color: rgba(220, 252, 231, 0.6);
}
.ring-offset-green-100\/65 {
  --tw-ring-offset-color: rgba(220, 252, 231, 0.65);
}
.ring-offset-green-100\/70 {
  --tw-ring-offset-color: rgba(220, 252, 231, 0.7);
}
.ring-offset-green-100\/75 {
  --tw-ring-offset-color: rgba(220, 252, 231, 0.75);
}
.ring-offset-green-100\/80 {
  --tw-ring-offset-color: rgba(220, 252, 231, 0.8);
}
.ring-offset-green-100\/85 {
  --tw-ring-offset-color: rgba(220, 252, 231, 0.85);
}
.ring-offset-green-100\/90 {
  --tw-ring-offset-color: rgba(220, 252, 231, 0.9);
}
.ring-offset-green-100\/95 {
  --tw-ring-offset-color: rgba(220, 252, 231, 0.95);
}
.ring-offset-green-200 {
  --tw-ring-offset-color: #bbf7d0;
}
.ring-offset-green-200\/0 {
  --tw-ring-offset-color: rgba(187, 247, 208, 0);
}
.ring-offset-green-200\/10 {
  --tw-ring-offset-color: rgba(187, 247, 208, 0.1);
}
.ring-offset-green-200\/100 {
  --tw-ring-offset-color: rgba(187, 247, 208, 1);
}
.ring-offset-green-200\/15 {
  --tw-ring-offset-color: rgba(187, 247, 208, 0.15);
}
.ring-offset-green-200\/20 {
  --tw-ring-offset-color: rgba(187, 247, 208, 0.2);
}
.ring-offset-green-200\/25 {
  --tw-ring-offset-color: rgba(187, 247, 208, 0.25);
}
.ring-offset-green-200\/30 {
  --tw-ring-offset-color: rgba(187, 247, 208, 0.3);
}
.ring-offset-green-200\/35 {
  --tw-ring-offset-color: rgba(187, 247, 208, 0.35);
}
.ring-offset-green-200\/40 {
  --tw-ring-offset-color: rgba(187, 247, 208, 0.4);
}
.ring-offset-green-200\/45 {
  --tw-ring-offset-color: rgba(187, 247, 208, 0.45);
}
.ring-offset-green-200\/5 {
  --tw-ring-offset-color: rgba(187, 247, 208, 0.05);
}
.ring-offset-green-200\/50 {
  --tw-ring-offset-color: rgba(187, 247, 208, 0.5);
}
.ring-offset-green-200\/55 {
  --tw-ring-offset-color: rgba(187, 247, 208, 0.55);
}
.ring-offset-green-200\/60 {
  --tw-ring-offset-color: rgba(187, 247, 208, 0.6);
}
.ring-offset-green-200\/65 {
  --tw-ring-offset-color: rgba(187, 247, 208, 0.65);
}
.ring-offset-green-200\/70 {
  --tw-ring-offset-color: rgba(187, 247, 208, 0.7);
}
.ring-offset-green-200\/75 {
  --tw-ring-offset-color: rgba(187, 247, 208, 0.75);
}
.ring-offset-green-200\/80 {
  --tw-ring-offset-color: rgba(187, 247, 208, 0.8);
}
.ring-offset-green-200\/85 {
  --tw-ring-offset-color: rgba(187, 247, 208, 0.85);
}
.ring-offset-green-200\/90 {
  --tw-ring-offset-color: rgba(187, 247, 208, 0.9);
}
.ring-offset-green-200\/95 {
  --tw-ring-offset-color: rgba(187, 247, 208, 0.95);
}
.ring-offset-green-300 {
  --tw-ring-offset-color: #86efac;
}
.ring-offset-green-300\/0 {
  --tw-ring-offset-color: rgba(134, 239, 172, 0);
}
.ring-offset-green-300\/10 {
  --tw-ring-offset-color: rgba(134, 239, 172, 0.1);
}
.ring-offset-green-300\/100 {
  --tw-ring-offset-color: rgba(134, 239, 172, 1);
}
.ring-offset-green-300\/15 {
  --tw-ring-offset-color: rgba(134, 239, 172, 0.15);
}
.ring-offset-green-300\/20 {
  --tw-ring-offset-color: rgba(134, 239, 172, 0.2);
}
.ring-offset-green-300\/25 {
  --tw-ring-offset-color: rgba(134, 239, 172, 0.25);
}
.ring-offset-green-300\/30 {
  --tw-ring-offset-color: rgba(134, 239, 172, 0.3);
}
.ring-offset-green-300\/35 {
  --tw-ring-offset-color: rgba(134, 239, 172, 0.35);
}
.ring-offset-green-300\/40 {
  --tw-ring-offset-color: rgba(134, 239, 172, 0.4);
}
.ring-offset-green-300\/45 {
  --tw-ring-offset-color: rgba(134, 239, 172, 0.45);
}
.ring-offset-green-300\/5 {
  --tw-ring-offset-color: rgba(134, 239, 172, 0.05);
}
.ring-offset-green-300\/50 {
  --tw-ring-offset-color: rgba(134, 239, 172, 0.5);
}
.ring-offset-green-300\/55 {
  --tw-ring-offset-color: rgba(134, 239, 172, 0.55);
}
.ring-offset-green-300\/60 {
  --tw-ring-offset-color: rgba(134, 239, 172, 0.6);
}
.ring-offset-green-300\/65 {
  --tw-ring-offset-color: rgba(134, 239, 172, 0.65);
}
.ring-offset-green-300\/70 {
  --tw-ring-offset-color: rgba(134, 239, 172, 0.7);
}
.ring-offset-green-300\/75 {
  --tw-ring-offset-color: rgba(134, 239, 172, 0.75);
}
.ring-offset-green-300\/80 {
  --tw-ring-offset-color: rgba(134, 239, 172, 0.8);
}
.ring-offset-green-300\/85 {
  --tw-ring-offset-color: rgba(134, 239, 172, 0.85);
}
.ring-offset-green-300\/90 {
  --tw-ring-offset-color: rgba(134, 239, 172, 0.9);
}
.ring-offset-green-300\/95 {
  --tw-ring-offset-color: rgba(134, 239, 172, 0.95);
}
.ring-offset-green-400 {
  --tw-ring-offset-color: #4ade80;
}
.ring-offset-green-400\/0 {
  --tw-ring-offset-color: rgba(74, 222, 128, 0);
}
.ring-offset-green-400\/10 {
  --tw-ring-offset-color: rgba(74, 222, 128, 0.1);
}
.ring-offset-green-400\/100 {
  --tw-ring-offset-color: rgba(74, 222, 128, 1);
}
.ring-offset-green-400\/15 {
  --tw-ring-offset-color: rgba(74, 222, 128, 0.15);
}
.ring-offset-green-400\/20 {
  --tw-ring-offset-color: rgba(74, 222, 128, 0.2);
}
.ring-offset-green-400\/25 {
  --tw-ring-offset-color: rgba(74, 222, 128, 0.25);
}
.ring-offset-green-400\/30 {
  --tw-ring-offset-color: rgba(74, 222, 128, 0.3);
}
.ring-offset-green-400\/35 {
  --tw-ring-offset-color: rgba(74, 222, 128, 0.35);
}
.ring-offset-green-400\/40 {
  --tw-ring-offset-color: rgba(74, 222, 128, 0.4);
}
.ring-offset-green-400\/45 {
  --tw-ring-offset-color: rgba(74, 222, 128, 0.45);
}
.ring-offset-green-400\/5 {
  --tw-ring-offset-color: rgba(74, 222, 128, 0.05);
}
.ring-offset-green-400\/50 {
  --tw-ring-offset-color: rgba(74, 222, 128, 0.5);
}
.ring-offset-green-400\/55 {
  --tw-ring-offset-color: rgba(74, 222, 128, 0.55);
}
.ring-offset-green-400\/60 {
  --tw-ring-offset-color: rgba(74, 222, 128, 0.6);
}
.ring-offset-green-400\/65 {
  --tw-ring-offset-color: rgba(74, 222, 128, 0.65);
}
.ring-offset-green-400\/70 {
  --tw-ring-offset-color: rgba(74, 222, 128, 0.7);
}
.ring-offset-green-400\/75 {
  --tw-ring-offset-color: rgba(74, 222, 128, 0.75);
}
.ring-offset-green-400\/80 {
  --tw-ring-offset-color: rgba(74, 222, 128, 0.8);
}
.ring-offset-green-400\/85 {
  --tw-ring-offset-color: rgba(74, 222, 128, 0.85);
}
.ring-offset-green-400\/90 {
  --tw-ring-offset-color: rgba(74, 222, 128, 0.9);
}
.ring-offset-green-400\/95 {
  --tw-ring-offset-color: rgba(74, 222, 128, 0.95);
}
.ring-offset-green-50 {
  --tw-ring-offset-color: #f0fdf4;
}
.ring-offset-green-50\/0 {
  --tw-ring-offset-color: rgba(240, 253, 244, 0);
}
.ring-offset-green-50\/10 {
  --tw-ring-offset-color: rgba(240, 253, 244, 0.1);
}
.ring-offset-green-50\/100 {
  --tw-ring-offset-color: rgba(240, 253, 244, 1);
}
.ring-offset-green-50\/15 {
  --tw-ring-offset-color: rgba(240, 253, 244, 0.15);
}
.ring-offset-green-50\/20 {
  --tw-ring-offset-color: rgba(240, 253, 244, 0.2);
}
.ring-offset-green-50\/25 {
  --tw-ring-offset-color: rgba(240, 253, 244, 0.25);
}
.ring-offset-green-50\/30 {
  --tw-ring-offset-color: rgba(240, 253, 244, 0.3);
}
.ring-offset-green-50\/35 {
  --tw-ring-offset-color: rgba(240, 253, 244, 0.35);
}
.ring-offset-green-50\/40 {
  --tw-ring-offset-color: rgba(240, 253, 244, 0.4);
}
.ring-offset-green-50\/45 {
  --tw-ring-offset-color: rgba(240, 253, 244, 0.45);
}
.ring-offset-green-50\/5 {
  --tw-ring-offset-color: rgba(240, 253, 244, 0.05);
}
.ring-offset-green-50\/50 {
  --tw-ring-offset-color: rgba(240, 253, 244, 0.5);
}
.ring-offset-green-50\/55 {
  --tw-ring-offset-color: rgba(240, 253, 244, 0.55);
}
.ring-offset-green-50\/60 {
  --tw-ring-offset-color: rgba(240, 253, 244, 0.6);
}
.ring-offset-green-50\/65 {
  --tw-ring-offset-color: rgba(240, 253, 244, 0.65);
}
.ring-offset-green-50\/70 {
  --tw-ring-offset-color: rgba(240, 253, 244, 0.7);
}
.ring-offset-green-50\/75 {
  --tw-ring-offset-color: rgba(240, 253, 244, 0.75);
}
.ring-offset-green-50\/80 {
  --tw-ring-offset-color: rgba(240, 253, 244, 0.8);
}
.ring-offset-green-50\/85 {
  --tw-ring-offset-color: rgba(240, 253, 244, 0.85);
}
.ring-offset-green-50\/90 {
  --tw-ring-offset-color: rgba(240, 253, 244, 0.9);
}
.ring-offset-green-50\/95 {
  --tw-ring-offset-color: rgba(240, 253, 244, 0.95);
}
.ring-offset-green-500 {
  --tw-ring-offset-color: #22c55e;
}
.ring-offset-green-500\/0 {
  --tw-ring-offset-color: rgba(34, 197, 94, 0);
}
.ring-offset-green-500\/10 {
  --tw-ring-offset-color: rgba(34, 197, 94, 0.1);
}
.ring-offset-green-500\/100 {
  --tw-ring-offset-color: rgba(34, 197, 94, 1);
}
.ring-offset-green-500\/15 {
  --tw-ring-offset-color: rgba(34, 197, 94, 0.15);
}
.ring-offset-green-500\/20 {
  --tw-ring-offset-color: rgba(34, 197, 94, 0.2);
}
.ring-offset-green-500\/25 {
  --tw-ring-offset-color: rgba(34, 197, 94, 0.25);
}
.ring-offset-green-500\/30 {
  --tw-ring-offset-color: rgba(34, 197, 94, 0.3);
}
.ring-offset-green-500\/35 {
  --tw-ring-offset-color: rgba(34, 197, 94, 0.35);
}
.ring-offset-green-500\/40 {
  --tw-ring-offset-color: rgba(34, 197, 94, 0.4);
}
.ring-offset-green-500\/45 {
  --tw-ring-offset-color: rgba(34, 197, 94, 0.45);
}
.ring-offset-green-500\/5 {
  --tw-ring-offset-color: rgba(34, 197, 94, 0.05);
}
.ring-offset-green-500\/50 {
  --tw-ring-offset-color: rgba(34, 197, 94, 0.5);
}
.ring-offset-green-500\/55 {
  --tw-ring-offset-color: rgba(34, 197, 94, 0.55);
}
.ring-offset-green-500\/60 {
  --tw-ring-offset-color: rgba(34, 197, 94, 0.6);
}
.ring-offset-green-500\/65 {
  --tw-ring-offset-color: rgba(34, 197, 94, 0.65);
}
.ring-offset-green-500\/70 {
  --tw-ring-offset-color: rgba(34, 197, 94, 0.7);
}
.ring-offset-green-500\/75 {
  --tw-ring-offset-color: rgba(34, 197, 94, 0.75);
}
.ring-offset-green-500\/80 {
  --tw-ring-offset-color: rgba(34, 197, 94, 0.8);
}
.ring-offset-green-500\/85 {
  --tw-ring-offset-color: rgba(34, 197, 94, 0.85);
}
.ring-offset-green-500\/90 {
  --tw-ring-offset-color: rgba(34, 197, 94, 0.9);
}
.ring-offset-green-500\/95 {
  --tw-ring-offset-color: rgba(34, 197, 94, 0.95);
}
.ring-offset-green-600 {
  --tw-ring-offset-color: #16a34a;
}
.ring-offset-green-600\/0 {
  --tw-ring-offset-color: rgba(22, 163, 74, 0);
}
.ring-offset-green-600\/10 {
  --tw-ring-offset-color: rgba(22, 163, 74, 0.1);
}
.ring-offset-green-600\/100 {
  --tw-ring-offset-color: rgba(22, 163, 74, 1);
}
.ring-offset-green-600\/15 {
  --tw-ring-offset-color: rgba(22, 163, 74, 0.15);
}
.ring-offset-green-600\/20 {
  --tw-ring-offset-color: rgba(22, 163, 74, 0.2);
}
.ring-offset-green-600\/25 {
  --tw-ring-offset-color: rgba(22, 163, 74, 0.25);
}
.ring-offset-green-600\/30 {
  --tw-ring-offset-color: rgba(22, 163, 74, 0.3);
}
.ring-offset-green-600\/35 {
  --tw-ring-offset-color: rgba(22, 163, 74, 0.35);
}
.ring-offset-green-600\/40 {
  --tw-ring-offset-color: rgba(22, 163, 74, 0.4);
}
.ring-offset-green-600\/45 {
  --tw-ring-offset-color: rgba(22, 163, 74, 0.45);
}
.ring-offset-green-600\/5 {
  --tw-ring-offset-color: rgba(22, 163, 74, 0.05);
}
.ring-offset-green-600\/50 {
  --tw-ring-offset-color: rgba(22, 163, 74, 0.5);
}
.ring-offset-green-600\/55 {
  --tw-ring-offset-color: rgba(22, 163, 74, 0.55);
}
.ring-offset-green-600\/60 {
  --tw-ring-offset-color: rgba(22, 163, 74, 0.6);
}
.ring-offset-green-600\/65 {
  --tw-ring-offset-color: rgba(22, 163, 74, 0.65);
}
.ring-offset-green-600\/70 {
  --tw-ring-offset-color: rgba(22, 163, 74, 0.7);
}
.ring-offset-green-600\/75 {
  --tw-ring-offset-color: rgba(22, 163, 74, 0.75);
}
.ring-offset-green-600\/80 {
  --tw-ring-offset-color: rgba(22, 163, 74, 0.8);
}
.ring-offset-green-600\/85 {
  --tw-ring-offset-color: rgba(22, 163, 74, 0.85);
}
.ring-offset-green-600\/90 {
  --tw-ring-offset-color: rgba(22, 163, 74, 0.9);
}
.ring-offset-green-600\/95 {
  --tw-ring-offset-color: rgba(22, 163, 74, 0.95);
}
.ring-offset-green-700 {
  --tw-ring-offset-color: #15803d;
}
.ring-offset-green-700\/0 {
  --tw-ring-offset-color: rgba(21, 128, 61, 0);
}
.ring-offset-green-700\/10 {
  --tw-ring-offset-color: rgba(21, 128, 61, 0.1);
}
.ring-offset-green-700\/100 {
  --tw-ring-offset-color: rgba(21, 128, 61, 1);
}
.ring-offset-green-700\/15 {
  --tw-ring-offset-color: rgba(21, 128, 61, 0.15);
}
.ring-offset-green-700\/20 {
  --tw-ring-offset-color: rgba(21, 128, 61, 0.2);
}
.ring-offset-green-700\/25 {
  --tw-ring-offset-color: rgba(21, 128, 61, 0.25);
}
.ring-offset-green-700\/30 {
  --tw-ring-offset-color: rgba(21, 128, 61, 0.3);
}
.ring-offset-green-700\/35 {
  --tw-ring-offset-color: rgba(21, 128, 61, 0.35);
}
.ring-offset-green-700\/40 {
  --tw-ring-offset-color: rgba(21, 128, 61, 0.4);
}
.ring-offset-green-700\/45 {
  --tw-ring-offset-color: rgba(21, 128, 61, 0.45);
}
.ring-offset-green-700\/5 {
  --tw-ring-offset-color: rgba(21, 128, 61, 0.05);
}
.ring-offset-green-700\/50 {
  --tw-ring-offset-color: rgba(21, 128, 61, 0.5);
}
.ring-offset-green-700\/55 {
  --tw-ring-offset-color: rgba(21, 128, 61, 0.55);
}
.ring-offset-green-700\/60 {
  --tw-ring-offset-color: rgba(21, 128, 61, 0.6);
}
.ring-offset-green-700\/65 {
  --tw-ring-offset-color: rgba(21, 128, 61, 0.65);
}
.ring-offset-green-700\/70 {
  --tw-ring-offset-color: rgba(21, 128, 61, 0.7);
}
.ring-offset-green-700\/75 {
  --tw-ring-offset-color: rgba(21, 128, 61, 0.75);
}
.ring-offset-green-700\/80 {
  --tw-ring-offset-color: rgba(21, 128, 61, 0.8);
}
.ring-offset-green-700\/85 {
  --tw-ring-offset-color: rgba(21, 128, 61, 0.85);
}
.ring-offset-green-700\/90 {
  --tw-ring-offset-color: rgba(21, 128, 61, 0.9);
}
.ring-offset-green-700\/95 {
  --tw-ring-offset-color: rgba(21, 128, 61, 0.95);
}
.ring-offset-green-800 {
  --tw-ring-offset-color: #166534;
}
.ring-offset-green-800\/0 {
  --tw-ring-offset-color: rgba(22, 101, 52, 0);
}
.ring-offset-green-800\/10 {
  --tw-ring-offset-color: rgba(22, 101, 52, 0.1);
}
.ring-offset-green-800\/100 {
  --tw-ring-offset-color: rgba(22, 101, 52, 1);
}
.ring-offset-green-800\/15 {
  --tw-ring-offset-color: rgba(22, 101, 52, 0.15);
}
.ring-offset-green-800\/20 {
  --tw-ring-offset-color: rgba(22, 101, 52, 0.2);
}
.ring-offset-green-800\/25 {
  --tw-ring-offset-color: rgba(22, 101, 52, 0.25);
}
.ring-offset-green-800\/30 {
  --tw-ring-offset-color: rgba(22, 101, 52, 0.3);
}
.ring-offset-green-800\/35 {
  --tw-ring-offset-color: rgba(22, 101, 52, 0.35);
}
.ring-offset-green-800\/40 {
  --tw-ring-offset-color: rgba(22, 101, 52, 0.4);
}
.ring-offset-green-800\/45 {
  --tw-ring-offset-color: rgba(22, 101, 52, 0.45);
}
.ring-offset-green-800\/5 {
  --tw-ring-offset-color: rgba(22, 101, 52, 0.05);
}
.ring-offset-green-800\/50 {
  --tw-ring-offset-color: rgba(22, 101, 52, 0.5);
}
.ring-offset-green-800\/55 {
  --tw-ring-offset-color: rgba(22, 101, 52, 0.55);
}
.ring-offset-green-800\/60 {
  --tw-ring-offset-color: rgba(22, 101, 52, 0.6);
}
.ring-offset-green-800\/65 {
  --tw-ring-offset-color: rgba(22, 101, 52, 0.65);
}
.ring-offset-green-800\/70 {
  --tw-ring-offset-color: rgba(22, 101, 52, 0.7);
}
.ring-offset-green-800\/75 {
  --tw-ring-offset-color: rgba(22, 101, 52, 0.75);
}
.ring-offset-green-800\/80 {
  --tw-ring-offset-color: rgba(22, 101, 52, 0.8);
}
.ring-offset-green-800\/85 {
  --tw-ring-offset-color: rgba(22, 101, 52, 0.85);
}
.ring-offset-green-800\/90 {
  --tw-ring-offset-color: rgba(22, 101, 52, 0.9);
}
.ring-offset-green-800\/95 {
  --tw-ring-offset-color: rgba(22, 101, 52, 0.95);
}
.ring-offset-green-900 {
  --tw-ring-offset-color: #14532d;
}
.ring-offset-green-900\/0 {
  --tw-ring-offset-color: rgba(20, 83, 45, 0);
}
.ring-offset-green-900\/10 {
  --tw-ring-offset-color: rgba(20, 83, 45, 0.1);
}
.ring-offset-green-900\/100 {
  --tw-ring-offset-color: rgba(20, 83, 45, 1);
}
.ring-offset-green-900\/15 {
  --tw-ring-offset-color: rgba(20, 83, 45, 0.15);
}
.ring-offset-green-900\/20 {
  --tw-ring-offset-color: rgba(20, 83, 45, 0.2);
}
.ring-offset-green-900\/25 {
  --tw-ring-offset-color: rgba(20, 83, 45, 0.25);
}
.ring-offset-green-900\/30 {
  --tw-ring-offset-color: rgba(20, 83, 45, 0.3);
}
.ring-offset-green-900\/35 {
  --tw-ring-offset-color: rgba(20, 83, 45, 0.35);
}
.ring-offset-green-900\/40 {
  --tw-ring-offset-color: rgba(20, 83, 45, 0.4);
}
.ring-offset-green-900\/45 {
  --tw-ring-offset-color: rgba(20, 83, 45, 0.45);
}
.ring-offset-green-900\/5 {
  --tw-ring-offset-color: rgba(20, 83, 45, 0.05);
}
.ring-offset-green-900\/50 {
  --tw-ring-offset-color: rgba(20, 83, 45, 0.5);
}
.ring-offset-green-900\/55 {
  --tw-ring-offset-color: rgba(20, 83, 45, 0.55);
}
.ring-offset-green-900\/60 {
  --tw-ring-offset-color: rgba(20, 83, 45, 0.6);
}
.ring-offset-green-900\/65 {
  --tw-ring-offset-color: rgba(20, 83, 45, 0.65);
}
.ring-offset-green-900\/70 {
  --tw-ring-offset-color: rgba(20, 83, 45, 0.7);
}
.ring-offset-green-900\/75 {
  --tw-ring-offset-color: rgba(20, 83, 45, 0.75);
}
.ring-offset-green-900\/80 {
  --tw-ring-offset-color: rgba(20, 83, 45, 0.8);
}
.ring-offset-green-900\/85 {
  --tw-ring-offset-color: rgba(20, 83, 45, 0.85);
}
.ring-offset-green-900\/90 {
  --tw-ring-offset-color: rgba(20, 83, 45, 0.9);
}
.ring-offset-green-900\/95 {
  --tw-ring-offset-color: rgba(20, 83, 45, 0.95);
}
.ring-offset-green-950 {
  --tw-ring-offset-color: #052e16;
}
.ring-offset-green-950\/0 {
  --tw-ring-offset-color: rgba(5, 46, 22, 0);
}
.ring-offset-green-950\/10 {
  --tw-ring-offset-color: rgba(5, 46, 22, 0.1);
}
.ring-offset-green-950\/100 {
  --tw-ring-offset-color: rgba(5, 46, 22, 1);
}
.ring-offset-green-950\/15 {
  --tw-ring-offset-color: rgba(5, 46, 22, 0.15);
}
.ring-offset-green-950\/20 {
  --tw-ring-offset-color: rgba(5, 46, 22, 0.2);
}
.ring-offset-green-950\/25 {
  --tw-ring-offset-color: rgba(5, 46, 22, 0.25);
}
.ring-offset-green-950\/30 {
  --tw-ring-offset-color: rgba(5, 46, 22, 0.3);
}
.ring-offset-green-950\/35 {
  --tw-ring-offset-color: rgba(5, 46, 22, 0.35);
}
.ring-offset-green-950\/40 {
  --tw-ring-offset-color: rgba(5, 46, 22, 0.4);
}
.ring-offset-green-950\/45 {
  --tw-ring-offset-color: rgba(5, 46, 22, 0.45);
}
.ring-offset-green-950\/5 {
  --tw-ring-offset-color: rgba(5, 46, 22, 0.05);
}
.ring-offset-green-950\/50 {
  --tw-ring-offset-color: rgba(5, 46, 22, 0.5);
}
.ring-offset-green-950\/55 {
  --tw-ring-offset-color: rgba(5, 46, 22, 0.55);
}
.ring-offset-green-950\/60 {
  --tw-ring-offset-color: rgba(5, 46, 22, 0.6);
}
.ring-offset-green-950\/65 {
  --tw-ring-offset-color: rgba(5, 46, 22, 0.65);
}
.ring-offset-green-950\/70 {
  --tw-ring-offset-color: rgba(5, 46, 22, 0.7);
}
.ring-offset-green-950\/75 {
  --tw-ring-offset-color: rgba(5, 46, 22, 0.75);
}
.ring-offset-green-950\/80 {
  --tw-ring-offset-color: rgba(5, 46, 22, 0.8);
}
.ring-offset-green-950\/85 {
  --tw-ring-offset-color: rgba(5, 46, 22, 0.85);
}
.ring-offset-green-950\/90 {
  --tw-ring-offset-color: rgba(5, 46, 22, 0.9);
}
.ring-offset-green-950\/95 {
  --tw-ring-offset-color: rgba(5, 46, 22, 0.95);
}
.ring-offset-indigo-100 {
  --tw-ring-offset-color: #e0e7ff;
}
.ring-offset-indigo-100\/0 {
  --tw-ring-offset-color: rgba(224, 231, 255, 0);
}
.ring-offset-indigo-100\/10 {
  --tw-ring-offset-color: rgba(224, 231, 255, 0.1);
}
.ring-offset-indigo-100\/100 {
  --tw-ring-offset-color: rgba(224, 231, 255, 1);
}
.ring-offset-indigo-100\/15 {
  --tw-ring-offset-color: rgba(224, 231, 255, 0.15);
}
.ring-offset-indigo-100\/20 {
  --tw-ring-offset-color: rgba(224, 231, 255, 0.2);
}
.ring-offset-indigo-100\/25 {
  --tw-ring-offset-color: rgba(224, 231, 255, 0.25);
}
.ring-offset-indigo-100\/30 {
  --tw-ring-offset-color: rgba(224, 231, 255, 0.3);
}
.ring-offset-indigo-100\/35 {
  --tw-ring-offset-color: rgba(224, 231, 255, 0.35);
}
.ring-offset-indigo-100\/40 {
  --tw-ring-offset-color: rgba(224, 231, 255, 0.4);
}
.ring-offset-indigo-100\/45 {
  --tw-ring-offset-color: rgba(224, 231, 255, 0.45);
}
.ring-offset-indigo-100\/5 {
  --tw-ring-offset-color: rgba(224, 231, 255, 0.05);
}
.ring-offset-indigo-100\/50 {
  --tw-ring-offset-color: rgba(224, 231, 255, 0.5);
}
.ring-offset-indigo-100\/55 {
  --tw-ring-offset-color: rgba(224, 231, 255, 0.55);
}
.ring-offset-indigo-100\/60 {
  --tw-ring-offset-color: rgba(224, 231, 255, 0.6);
}
.ring-offset-indigo-100\/65 {
  --tw-ring-offset-color: rgba(224, 231, 255, 0.65);
}
.ring-offset-indigo-100\/70 {
  --tw-ring-offset-color: rgba(224, 231, 255, 0.7);
}
.ring-offset-indigo-100\/75 {
  --tw-ring-offset-color: rgba(224, 231, 255, 0.75);
}
.ring-offset-indigo-100\/80 {
  --tw-ring-offset-color: rgba(224, 231, 255, 0.8);
}
.ring-offset-indigo-100\/85 {
  --tw-ring-offset-color: rgba(224, 231, 255, 0.85);
}
.ring-offset-indigo-100\/90 {
  --tw-ring-offset-color: rgba(224, 231, 255, 0.9);
}
.ring-offset-indigo-100\/95 {
  --tw-ring-offset-color: rgba(224, 231, 255, 0.95);
}
.ring-offset-indigo-200 {
  --tw-ring-offset-color: #c7d2fe;
}
.ring-offset-indigo-200\/0 {
  --tw-ring-offset-color: rgba(199, 210, 254, 0);
}
.ring-offset-indigo-200\/10 {
  --tw-ring-offset-color: rgba(199, 210, 254, 0.1);
}
.ring-offset-indigo-200\/100 {
  --tw-ring-offset-color: rgba(199, 210, 254, 1);
}
.ring-offset-indigo-200\/15 {
  --tw-ring-offset-color: rgba(199, 210, 254, 0.15);
}
.ring-offset-indigo-200\/20 {
  --tw-ring-offset-color: rgba(199, 210, 254, 0.2);
}
.ring-offset-indigo-200\/25 {
  --tw-ring-offset-color: rgba(199, 210, 254, 0.25);
}
.ring-offset-indigo-200\/30 {
  --tw-ring-offset-color: rgba(199, 210, 254, 0.3);
}
.ring-offset-indigo-200\/35 {
  --tw-ring-offset-color: rgba(199, 210, 254, 0.35);
}
.ring-offset-indigo-200\/40 {
  --tw-ring-offset-color: rgba(199, 210, 254, 0.4);
}
.ring-offset-indigo-200\/45 {
  --tw-ring-offset-color: rgba(199, 210, 254, 0.45);
}
.ring-offset-indigo-200\/5 {
  --tw-ring-offset-color: rgba(199, 210, 254, 0.05);
}
.ring-offset-indigo-200\/50 {
  --tw-ring-offset-color: rgba(199, 210, 254, 0.5);
}
.ring-offset-indigo-200\/55 {
  --tw-ring-offset-color: rgba(199, 210, 254, 0.55);
}
.ring-offset-indigo-200\/60 {
  --tw-ring-offset-color: rgba(199, 210, 254, 0.6);
}
.ring-offset-indigo-200\/65 {
  --tw-ring-offset-color: rgba(199, 210, 254, 0.65);
}
.ring-offset-indigo-200\/70 {
  --tw-ring-offset-color: rgba(199, 210, 254, 0.7);
}
.ring-offset-indigo-200\/75 {
  --tw-ring-offset-color: rgba(199, 210, 254, 0.75);
}
.ring-offset-indigo-200\/80 {
  --tw-ring-offset-color: rgba(199, 210, 254, 0.8);
}
.ring-offset-indigo-200\/85 {
  --tw-ring-offset-color: rgba(199, 210, 254, 0.85);
}
.ring-offset-indigo-200\/90 {
  --tw-ring-offset-color: rgba(199, 210, 254, 0.9);
}
.ring-offset-indigo-200\/95 {
  --tw-ring-offset-color: rgba(199, 210, 254, 0.95);
}
.ring-offset-indigo-300 {
  --tw-ring-offset-color: #a5b4fc;
}
.ring-offset-indigo-300\/0 {
  --tw-ring-offset-color: rgba(165, 180, 252, 0);
}
.ring-offset-indigo-300\/10 {
  --tw-ring-offset-color: rgba(165, 180, 252, 0.1);
}
.ring-offset-indigo-300\/100 {
  --tw-ring-offset-color: rgba(165, 180, 252, 1);
}
.ring-offset-indigo-300\/15 {
  --tw-ring-offset-color: rgba(165, 180, 252, 0.15);
}
.ring-offset-indigo-300\/20 {
  --tw-ring-offset-color: rgba(165, 180, 252, 0.2);
}
.ring-offset-indigo-300\/25 {
  --tw-ring-offset-color: rgba(165, 180, 252, 0.25);
}
.ring-offset-indigo-300\/30 {
  --tw-ring-offset-color: rgba(165, 180, 252, 0.3);
}
.ring-offset-indigo-300\/35 {
  --tw-ring-offset-color: rgba(165, 180, 252, 0.35);
}
.ring-offset-indigo-300\/40 {
  --tw-ring-offset-color: rgba(165, 180, 252, 0.4);
}
.ring-offset-indigo-300\/45 {
  --tw-ring-offset-color: rgba(165, 180, 252, 0.45);
}
.ring-offset-indigo-300\/5 {
  --tw-ring-offset-color: rgba(165, 180, 252, 0.05);
}
.ring-offset-indigo-300\/50 {
  --tw-ring-offset-color: rgba(165, 180, 252, 0.5);
}
.ring-offset-indigo-300\/55 {
  --tw-ring-offset-color: rgba(165, 180, 252, 0.55);
}
.ring-offset-indigo-300\/60 {
  --tw-ring-offset-color: rgba(165, 180, 252, 0.6);
}
.ring-offset-indigo-300\/65 {
  --tw-ring-offset-color: rgba(165, 180, 252, 0.65);
}
.ring-offset-indigo-300\/70 {
  --tw-ring-offset-color: rgba(165, 180, 252, 0.7);
}
.ring-offset-indigo-300\/75 {
  --tw-ring-offset-color: rgba(165, 180, 252, 0.75);
}
.ring-offset-indigo-300\/80 {
  --tw-ring-offset-color: rgba(165, 180, 252, 0.8);
}
.ring-offset-indigo-300\/85 {
  --tw-ring-offset-color: rgba(165, 180, 252, 0.85);
}
.ring-offset-indigo-300\/90 {
  --tw-ring-offset-color: rgba(165, 180, 252, 0.9);
}
.ring-offset-indigo-300\/95 {
  --tw-ring-offset-color: rgba(165, 180, 252, 0.95);
}
.ring-offset-indigo-400 {
  --tw-ring-offset-color: #818cf8;
}
.ring-offset-indigo-400\/0 {
  --tw-ring-offset-color: rgba(129, 140, 248, 0);
}
.ring-offset-indigo-400\/10 {
  --tw-ring-offset-color: rgba(129, 140, 248, 0.1);
}
.ring-offset-indigo-400\/100 {
  --tw-ring-offset-color: rgba(129, 140, 248, 1);
}
.ring-offset-indigo-400\/15 {
  --tw-ring-offset-color: rgba(129, 140, 248, 0.15);
}
.ring-offset-indigo-400\/20 {
  --tw-ring-offset-color: rgba(129, 140, 248, 0.2);
}
.ring-offset-indigo-400\/25 {
  --tw-ring-offset-color: rgba(129, 140, 248, 0.25);
}
.ring-offset-indigo-400\/30 {
  --tw-ring-offset-color: rgba(129, 140, 248, 0.3);
}
.ring-offset-indigo-400\/35 {
  --tw-ring-offset-color: rgba(129, 140, 248, 0.35);
}
.ring-offset-indigo-400\/40 {
  --tw-ring-offset-color: rgba(129, 140, 248, 0.4);
}
.ring-offset-indigo-400\/45 {
  --tw-ring-offset-color: rgba(129, 140, 248, 0.45);
}
.ring-offset-indigo-400\/5 {
  --tw-ring-offset-color: rgba(129, 140, 248, 0.05);
}
.ring-offset-indigo-400\/50 {
  --tw-ring-offset-color: rgba(129, 140, 248, 0.5);
}
.ring-offset-indigo-400\/55 {
  --tw-ring-offset-color: rgba(129, 140, 248, 0.55);
}
.ring-offset-indigo-400\/60 {
  --tw-ring-offset-color: rgba(129, 140, 248, 0.6);
}
.ring-offset-indigo-400\/65 {
  --tw-ring-offset-color: rgba(129, 140, 248, 0.65);
}
.ring-offset-indigo-400\/70 {
  --tw-ring-offset-color: rgba(129, 140, 248, 0.7);
}
.ring-offset-indigo-400\/75 {
  --tw-ring-offset-color: rgba(129, 140, 248, 0.75);
}
.ring-offset-indigo-400\/80 {
  --tw-ring-offset-color: rgba(129, 140, 248, 0.8);
}
.ring-offset-indigo-400\/85 {
  --tw-ring-offset-color: rgba(129, 140, 248, 0.85);
}
.ring-offset-indigo-400\/90 {
  --tw-ring-offset-color: rgba(129, 140, 248, 0.9);
}
.ring-offset-indigo-400\/95 {
  --tw-ring-offset-color: rgba(129, 140, 248, 0.95);
}
.ring-offset-indigo-50 {
  --tw-ring-offset-color: #eef2ff;
}
.ring-offset-indigo-50\/0 {
  --tw-ring-offset-color: rgba(238, 242, 255, 0);
}
.ring-offset-indigo-50\/10 {
  --tw-ring-offset-color: rgba(238, 242, 255, 0.1);
}
.ring-offset-indigo-50\/100 {
  --tw-ring-offset-color: rgba(238, 242, 255, 1);
}
.ring-offset-indigo-50\/15 {
  --tw-ring-offset-color: rgba(238, 242, 255, 0.15);
}
.ring-offset-indigo-50\/20 {
  --tw-ring-offset-color: rgba(238, 242, 255, 0.2);
}
.ring-offset-indigo-50\/25 {
  --tw-ring-offset-color: rgba(238, 242, 255, 0.25);
}
.ring-offset-indigo-50\/30 {
  --tw-ring-offset-color: rgba(238, 242, 255, 0.3);
}
.ring-offset-indigo-50\/35 {
  --tw-ring-offset-color: rgba(238, 242, 255, 0.35);
}
.ring-offset-indigo-50\/40 {
  --tw-ring-offset-color: rgba(238, 242, 255, 0.4);
}
.ring-offset-indigo-50\/45 {
  --tw-ring-offset-color: rgba(238, 242, 255, 0.45);
}
.ring-offset-indigo-50\/5 {
  --tw-ring-offset-color: rgba(238, 242, 255, 0.05);
}
.ring-offset-indigo-50\/50 {
  --tw-ring-offset-color: rgba(238, 242, 255, 0.5);
}
.ring-offset-indigo-50\/55 {
  --tw-ring-offset-color: rgba(238, 242, 255, 0.55);
}
.ring-offset-indigo-50\/60 {
  --tw-ring-offset-color: rgba(238, 242, 255, 0.6);
}
.ring-offset-indigo-50\/65 {
  --tw-ring-offset-color: rgba(238, 242, 255, 0.65);
}
.ring-offset-indigo-50\/70 {
  --tw-ring-offset-color: rgba(238, 242, 255, 0.7);
}
.ring-offset-indigo-50\/75 {
  --tw-ring-offset-color: rgba(238, 242, 255, 0.75);
}
.ring-offset-indigo-50\/80 {
  --tw-ring-offset-color: rgba(238, 242, 255, 0.8);
}
.ring-offset-indigo-50\/85 {
  --tw-ring-offset-color: rgba(238, 242, 255, 0.85);
}
.ring-offset-indigo-50\/90 {
  --tw-ring-offset-color: rgba(238, 242, 255, 0.9);
}
.ring-offset-indigo-50\/95 {
  --tw-ring-offset-color: rgba(238, 242, 255, 0.95);
}
.ring-offset-indigo-500 {
  --tw-ring-offset-color: #6366f1;
}
.ring-offset-indigo-500\/0 {
  --tw-ring-offset-color: rgba(99, 102, 241, 0);
}
.ring-offset-indigo-500\/10 {
  --tw-ring-offset-color: rgba(99, 102, 241, 0.1);
}
.ring-offset-indigo-500\/100 {
  --tw-ring-offset-color: rgba(99, 102, 241, 1);
}
.ring-offset-indigo-500\/15 {
  --tw-ring-offset-color: rgba(99, 102, 241, 0.15);
}
.ring-offset-indigo-500\/20 {
  --tw-ring-offset-color: rgba(99, 102, 241, 0.2);
}
.ring-offset-indigo-500\/25 {
  --tw-ring-offset-color: rgba(99, 102, 241, 0.25);
}
.ring-offset-indigo-500\/30 {
  --tw-ring-offset-color: rgba(99, 102, 241, 0.3);
}
.ring-offset-indigo-500\/35 {
  --tw-ring-offset-color: rgba(99, 102, 241, 0.35);
}
.ring-offset-indigo-500\/40 {
  --tw-ring-offset-color: rgba(99, 102, 241, 0.4);
}
.ring-offset-indigo-500\/45 {
  --tw-ring-offset-color: rgba(99, 102, 241, 0.45);
}
.ring-offset-indigo-500\/5 {
  --tw-ring-offset-color: rgba(99, 102, 241, 0.05);
}
.ring-offset-indigo-500\/50 {
  --tw-ring-offset-color: rgba(99, 102, 241, 0.5);
}
.ring-offset-indigo-500\/55 {
  --tw-ring-offset-color: rgba(99, 102, 241, 0.55);
}
.ring-offset-indigo-500\/60 {
  --tw-ring-offset-color: rgba(99, 102, 241, 0.6);
}
.ring-offset-indigo-500\/65 {
  --tw-ring-offset-color: rgba(99, 102, 241, 0.65);
}
.ring-offset-indigo-500\/70 {
  --tw-ring-offset-color: rgba(99, 102, 241, 0.7);
}
.ring-offset-indigo-500\/75 {
  --tw-ring-offset-color: rgba(99, 102, 241, 0.75);
}
.ring-offset-indigo-500\/80 {
  --tw-ring-offset-color: rgba(99, 102, 241, 0.8);
}
.ring-offset-indigo-500\/85 {
  --tw-ring-offset-color: rgba(99, 102, 241, 0.85);
}
.ring-offset-indigo-500\/90 {
  --tw-ring-offset-color: rgba(99, 102, 241, 0.9);
}
.ring-offset-indigo-500\/95 {
  --tw-ring-offset-color: rgba(99, 102, 241, 0.95);
}
.ring-offset-indigo-600 {
  --tw-ring-offset-color: #4f46e5;
}
.ring-offset-indigo-600\/0 {
  --tw-ring-offset-color: rgba(79, 70, 229, 0);
}
.ring-offset-indigo-600\/10 {
  --tw-ring-offset-color: rgba(79, 70, 229, 0.1);
}
.ring-offset-indigo-600\/100 {
  --tw-ring-offset-color: rgba(79, 70, 229, 1);
}
.ring-offset-indigo-600\/15 {
  --tw-ring-offset-color: rgba(79, 70, 229, 0.15);
}
.ring-offset-indigo-600\/20 {
  --tw-ring-offset-color: rgba(79, 70, 229, 0.2);
}
.ring-offset-indigo-600\/25 {
  --tw-ring-offset-color: rgba(79, 70, 229, 0.25);
}
.ring-offset-indigo-600\/30 {
  --tw-ring-offset-color: rgba(79, 70, 229, 0.3);
}
.ring-offset-indigo-600\/35 {
  --tw-ring-offset-color: rgba(79, 70, 229, 0.35);
}
.ring-offset-indigo-600\/40 {
  --tw-ring-offset-color: rgba(79, 70, 229, 0.4);
}
.ring-offset-indigo-600\/45 {
  --tw-ring-offset-color: rgba(79, 70, 229, 0.45);
}
.ring-offset-indigo-600\/5 {
  --tw-ring-offset-color: rgba(79, 70, 229, 0.05);
}
.ring-offset-indigo-600\/50 {
  --tw-ring-offset-color: rgba(79, 70, 229, 0.5);
}
.ring-offset-indigo-600\/55 {
  --tw-ring-offset-color: rgba(79, 70, 229, 0.55);
}
.ring-offset-indigo-600\/60 {
  --tw-ring-offset-color: rgba(79, 70, 229, 0.6);
}
.ring-offset-indigo-600\/65 {
  --tw-ring-offset-color: rgba(79, 70, 229, 0.65);
}
.ring-offset-indigo-600\/70 {
  --tw-ring-offset-color: rgba(79, 70, 229, 0.7);
}
.ring-offset-indigo-600\/75 {
  --tw-ring-offset-color: rgba(79, 70, 229, 0.75);
}
.ring-offset-indigo-600\/80 {
  --tw-ring-offset-color: rgba(79, 70, 229, 0.8);
}
.ring-offset-indigo-600\/85 {
  --tw-ring-offset-color: rgba(79, 70, 229, 0.85);
}
.ring-offset-indigo-600\/90 {
  --tw-ring-offset-color: rgba(79, 70, 229, 0.9);
}
.ring-offset-indigo-600\/95 {
  --tw-ring-offset-color: rgba(79, 70, 229, 0.95);
}
.ring-offset-indigo-700 {
  --tw-ring-offset-color: #4338ca;
}
.ring-offset-indigo-700\/0 {
  --tw-ring-offset-color: rgba(67, 56, 202, 0);
}
.ring-offset-indigo-700\/10 {
  --tw-ring-offset-color: rgba(67, 56, 202, 0.1);
}
.ring-offset-indigo-700\/100 {
  --tw-ring-offset-color: rgba(67, 56, 202, 1);
}
.ring-offset-indigo-700\/15 {
  --tw-ring-offset-color: rgba(67, 56, 202, 0.15);
}
.ring-offset-indigo-700\/20 {
  --tw-ring-offset-color: rgba(67, 56, 202, 0.2);
}
.ring-offset-indigo-700\/25 {
  --tw-ring-offset-color: rgba(67, 56, 202, 0.25);
}
.ring-offset-indigo-700\/30 {
  --tw-ring-offset-color: rgba(67, 56, 202, 0.3);
}
.ring-offset-indigo-700\/35 {
  --tw-ring-offset-color: rgba(67, 56, 202, 0.35);
}
.ring-offset-indigo-700\/40 {
  --tw-ring-offset-color: rgba(67, 56, 202, 0.4);
}
.ring-offset-indigo-700\/45 {
  --tw-ring-offset-color: rgba(67, 56, 202, 0.45);
}
.ring-offset-indigo-700\/5 {
  --tw-ring-offset-color: rgba(67, 56, 202, 0.05);
}
.ring-offset-indigo-700\/50 {
  --tw-ring-offset-color: rgba(67, 56, 202, 0.5);
}
.ring-offset-indigo-700\/55 {
  --tw-ring-offset-color: rgba(67, 56, 202, 0.55);
}
.ring-offset-indigo-700\/60 {
  --tw-ring-offset-color: rgba(67, 56, 202, 0.6);
}
.ring-offset-indigo-700\/65 {
  --tw-ring-offset-color: rgba(67, 56, 202, 0.65);
}
.ring-offset-indigo-700\/70 {
  --tw-ring-offset-color: rgba(67, 56, 202, 0.7);
}
.ring-offset-indigo-700\/75 {
  --tw-ring-offset-color: rgba(67, 56, 202, 0.75);
}
.ring-offset-indigo-700\/80 {
  --tw-ring-offset-color: rgba(67, 56, 202, 0.8);
}
.ring-offset-indigo-700\/85 {
  --tw-ring-offset-color: rgba(67, 56, 202, 0.85);
}
.ring-offset-indigo-700\/90 {
  --tw-ring-offset-color: rgba(67, 56, 202, 0.9);
}
.ring-offset-indigo-700\/95 {
  --tw-ring-offset-color: rgba(67, 56, 202, 0.95);
}
.ring-offset-indigo-800 {
  --tw-ring-offset-color: #3730a3;
}
.ring-offset-indigo-800\/0 {
  --tw-ring-offset-color: rgba(55, 48, 163, 0);
}
.ring-offset-indigo-800\/10 {
  --tw-ring-offset-color: rgba(55, 48, 163, 0.1);
}
.ring-offset-indigo-800\/100 {
  --tw-ring-offset-color: rgba(55, 48, 163, 1);
}
.ring-offset-indigo-800\/15 {
  --tw-ring-offset-color: rgba(55, 48, 163, 0.15);
}
.ring-offset-indigo-800\/20 {
  --tw-ring-offset-color: rgba(55, 48, 163, 0.2);
}
.ring-offset-indigo-800\/25 {
  --tw-ring-offset-color: rgba(55, 48, 163, 0.25);
}
.ring-offset-indigo-800\/30 {
  --tw-ring-offset-color: rgba(55, 48, 163, 0.3);
}
.ring-offset-indigo-800\/35 {
  --tw-ring-offset-color: rgba(55, 48, 163, 0.35);
}
.ring-offset-indigo-800\/40 {
  --tw-ring-offset-color: rgba(55, 48, 163, 0.4);
}
.ring-offset-indigo-800\/45 {
  --tw-ring-offset-color: rgba(55, 48, 163, 0.45);
}
.ring-offset-indigo-800\/5 {
  --tw-ring-offset-color: rgba(55, 48, 163, 0.05);
}
.ring-offset-indigo-800\/50 {
  --tw-ring-offset-color: rgba(55, 48, 163, 0.5);
}
.ring-offset-indigo-800\/55 {
  --tw-ring-offset-color: rgba(55, 48, 163, 0.55);
}
.ring-offset-indigo-800\/60 {
  --tw-ring-offset-color: rgba(55, 48, 163, 0.6);
}
.ring-offset-indigo-800\/65 {
  --tw-ring-offset-color: rgba(55, 48, 163, 0.65);
}
.ring-offset-indigo-800\/70 {
  --tw-ring-offset-color: rgba(55, 48, 163, 0.7);
}
.ring-offset-indigo-800\/75 {
  --tw-ring-offset-color: rgba(55, 48, 163, 0.75);
}
.ring-offset-indigo-800\/80 {
  --tw-ring-offset-color: rgba(55, 48, 163, 0.8);
}
.ring-offset-indigo-800\/85 {
  --tw-ring-offset-color: rgba(55, 48, 163, 0.85);
}
.ring-offset-indigo-800\/90 {
  --tw-ring-offset-color: rgba(55, 48, 163, 0.9);
}
.ring-offset-indigo-800\/95 {
  --tw-ring-offset-color: rgba(55, 48, 163, 0.95);
}
.ring-offset-indigo-900 {
  --tw-ring-offset-color: #312e81;
}
.ring-offset-indigo-900\/0 {
  --tw-ring-offset-color: rgba(49, 46, 129, 0);
}
.ring-offset-indigo-900\/10 {
  --tw-ring-offset-color: rgba(49, 46, 129, 0.1);
}
.ring-offset-indigo-900\/100 {
  --tw-ring-offset-color: rgba(49, 46, 129, 1);
}
.ring-offset-indigo-900\/15 {
  --tw-ring-offset-color: rgba(49, 46, 129, 0.15);
}
.ring-offset-indigo-900\/20 {
  --tw-ring-offset-color: rgba(49, 46, 129, 0.2);
}
.ring-offset-indigo-900\/25 {
  --tw-ring-offset-color: rgba(49, 46, 129, 0.25);
}
.ring-offset-indigo-900\/30 {
  --tw-ring-offset-color: rgba(49, 46, 129, 0.3);
}
.ring-offset-indigo-900\/35 {
  --tw-ring-offset-color: rgba(49, 46, 129, 0.35);
}
.ring-offset-indigo-900\/40 {
  --tw-ring-offset-color: rgba(49, 46, 129, 0.4);
}
.ring-offset-indigo-900\/45 {
  --tw-ring-offset-color: rgba(49, 46, 129, 0.45);
}
.ring-offset-indigo-900\/5 {
  --tw-ring-offset-color: rgba(49, 46, 129, 0.05);
}
.ring-offset-indigo-900\/50 {
  --tw-ring-offset-color: rgba(49, 46, 129, 0.5);
}
.ring-offset-indigo-900\/55 {
  --tw-ring-offset-color: rgba(49, 46, 129, 0.55);
}
.ring-offset-indigo-900\/60 {
  --tw-ring-offset-color: rgba(49, 46, 129, 0.6);
}
.ring-offset-indigo-900\/65 {
  --tw-ring-offset-color: rgba(49, 46, 129, 0.65);
}
.ring-offset-indigo-900\/70 {
  --tw-ring-offset-color: rgba(49, 46, 129, 0.7);
}
.ring-offset-indigo-900\/75 {
  --tw-ring-offset-color: rgba(49, 46, 129, 0.75);
}
.ring-offset-indigo-900\/80 {
  --tw-ring-offset-color: rgba(49, 46, 129, 0.8);
}
.ring-offset-indigo-900\/85 {
  --tw-ring-offset-color: rgba(49, 46, 129, 0.85);
}
.ring-offset-indigo-900\/90 {
  --tw-ring-offset-color: rgba(49, 46, 129, 0.9);
}
.ring-offset-indigo-900\/95 {
  --tw-ring-offset-color: rgba(49, 46, 129, 0.95);
}
.ring-offset-indigo-950 {
  --tw-ring-offset-color: #1e1b4b;
}
.ring-offset-indigo-950\/0 {
  --tw-ring-offset-color: rgba(30, 27, 75, 0);
}
.ring-offset-indigo-950\/10 {
  --tw-ring-offset-color: rgba(30, 27, 75, 0.1);
}
.ring-offset-indigo-950\/100 {
  --tw-ring-offset-color: rgba(30, 27, 75, 1);
}
.ring-offset-indigo-950\/15 {
  --tw-ring-offset-color: rgba(30, 27, 75, 0.15);
}
.ring-offset-indigo-950\/20 {
  --tw-ring-offset-color: rgba(30, 27, 75, 0.2);
}
.ring-offset-indigo-950\/25 {
  --tw-ring-offset-color: rgba(30, 27, 75, 0.25);
}
.ring-offset-indigo-950\/30 {
  --tw-ring-offset-color: rgba(30, 27, 75, 0.3);
}
.ring-offset-indigo-950\/35 {
  --tw-ring-offset-color: rgba(30, 27, 75, 0.35);
}
.ring-offset-indigo-950\/40 {
  --tw-ring-offset-color: rgba(30, 27, 75, 0.4);
}
.ring-offset-indigo-950\/45 {
  --tw-ring-offset-color: rgba(30, 27, 75, 0.45);
}
.ring-offset-indigo-950\/5 {
  --tw-ring-offset-color: rgba(30, 27, 75, 0.05);
}
.ring-offset-indigo-950\/50 {
  --tw-ring-offset-color: rgba(30, 27, 75, 0.5);
}
.ring-offset-indigo-950\/55 {
  --tw-ring-offset-color: rgba(30, 27, 75, 0.55);
}
.ring-offset-indigo-950\/60 {
  --tw-ring-offset-color: rgba(30, 27, 75, 0.6);
}
.ring-offset-indigo-950\/65 {
  --tw-ring-offset-color: rgba(30, 27, 75, 0.65);
}
.ring-offset-indigo-950\/70 {
  --tw-ring-offset-color: rgba(30, 27, 75, 0.7);
}
.ring-offset-indigo-950\/75 {
  --tw-ring-offset-color: rgba(30, 27, 75, 0.75);
}
.ring-offset-indigo-950\/80 {
  --tw-ring-offset-color: rgba(30, 27, 75, 0.8);
}
.ring-offset-indigo-950\/85 {
  --tw-ring-offset-color: rgba(30, 27, 75, 0.85);
}
.ring-offset-indigo-950\/90 {
  --tw-ring-offset-color: rgba(30, 27, 75, 0.9);
}
.ring-offset-indigo-950\/95 {
  --tw-ring-offset-color: rgba(30, 27, 75, 0.95);
}
.ring-offset-info {
  --tw-ring-offset-color: var(--fallback-in,oklch(var(--in)/1));
}
.ring-offset-info-content {
  --tw-ring-offset-color: var(--fallback-inc,oklch(var(--inc)/1));
}
.ring-offset-info-content\/0 {
  --tw-ring-offset-color: var(--fallback-inc,oklch(var(--inc)/0));
}
.ring-offset-info-content\/10 {
  --tw-ring-offset-color: var(--fallback-inc,oklch(var(--inc)/0.1));
}
.ring-offset-info-content\/100 {
  --tw-ring-offset-color: var(--fallback-inc,oklch(var(--inc)/1));
}
.ring-offset-info-content\/15 {
  --tw-ring-offset-color: var(--fallback-inc,oklch(var(--inc)/0.15));
}
.ring-offset-info-content\/20 {
  --tw-ring-offset-color: var(--fallback-inc,oklch(var(--inc)/0.2));
}
.ring-offset-info-content\/25 {
  --tw-ring-offset-color: var(--fallback-inc,oklch(var(--inc)/0.25));
}
.ring-offset-info-content\/30 {
  --tw-ring-offset-color: var(--fallback-inc,oklch(var(--inc)/0.3));
}
.ring-offset-info-content\/35 {
  --tw-ring-offset-color: var(--fallback-inc,oklch(var(--inc)/0.35));
}
.ring-offset-info-content\/40 {
  --tw-ring-offset-color: var(--fallback-inc,oklch(var(--inc)/0.4));
}
.ring-offset-info-content\/45 {
  --tw-ring-offset-color: var(--fallback-inc,oklch(var(--inc)/0.45));
}
.ring-offset-info-content\/5 {
  --tw-ring-offset-color: var(--fallback-inc,oklch(var(--inc)/0.05));
}
.ring-offset-info-content\/50 {
  --tw-ring-offset-color: var(--fallback-inc,oklch(var(--inc)/0.5));
}
.ring-offset-info-content\/55 {
  --tw-ring-offset-color: var(--fallback-inc,oklch(var(--inc)/0.55));
}
.ring-offset-info-content\/60 {
  --tw-ring-offset-color: var(--fallback-inc,oklch(var(--inc)/0.6));
}
.ring-offset-info-content\/65 {
  --tw-ring-offset-color: var(--fallback-inc,oklch(var(--inc)/0.65));
}
.ring-offset-info-content\/70 {
  --tw-ring-offset-color: var(--fallback-inc,oklch(var(--inc)/0.7));
}
.ring-offset-info-content\/75 {
  --tw-ring-offset-color: var(--fallback-inc,oklch(var(--inc)/0.75));
}
.ring-offset-info-content\/80 {
  --tw-ring-offset-color: var(--fallback-inc,oklch(var(--inc)/0.8));
}
.ring-offset-info-content\/85 {
  --tw-ring-offset-color: var(--fallback-inc,oklch(var(--inc)/0.85));
}
.ring-offset-info-content\/90 {
  --tw-ring-offset-color: var(--fallback-inc,oklch(var(--inc)/0.9));
}
.ring-offset-info-content\/95 {
  --tw-ring-offset-color: var(--fallback-inc,oklch(var(--inc)/0.95));
}
.ring-offset-info\/0 {
  --tw-ring-offset-color: var(--fallback-in,oklch(var(--in)/0));
}
.ring-offset-info\/10 {
  --tw-ring-offset-color: var(--fallback-in,oklch(var(--in)/0.1));
}
.ring-offset-info\/100 {
  --tw-ring-offset-color: var(--fallback-in,oklch(var(--in)/1));
}
.ring-offset-info\/15 {
  --tw-ring-offset-color: var(--fallback-in,oklch(var(--in)/0.15));
}
.ring-offset-info\/20 {
  --tw-ring-offset-color: var(--fallback-in,oklch(var(--in)/0.2));
}
.ring-offset-info\/25 {
  --tw-ring-offset-color: var(--fallback-in,oklch(var(--in)/0.25));
}
.ring-offset-info\/30 {
  --tw-ring-offset-color: var(--fallback-in,oklch(var(--in)/0.3));
}
.ring-offset-info\/35 {
  --tw-ring-offset-color: var(--fallback-in,oklch(var(--in)/0.35));
}
.ring-offset-info\/40 {
  --tw-ring-offset-color: var(--fallback-in,oklch(var(--in)/0.4));
}
.ring-offset-info\/45 {
  --tw-ring-offset-color: var(--fallback-in,oklch(var(--in)/0.45));
}
.ring-offset-info\/5 {
  --tw-ring-offset-color: var(--fallback-in,oklch(var(--in)/0.05));
}
.ring-offset-info\/50 {
  --tw-ring-offset-color: var(--fallback-in,oklch(var(--in)/0.5));
}
.ring-offset-info\/55 {
  --tw-ring-offset-color: var(--fallback-in,oklch(var(--in)/0.55));
}
.ring-offset-info\/60 {
  --tw-ring-offset-color: var(--fallback-in,oklch(var(--in)/0.6));
}
.ring-offset-info\/65 {
  --tw-ring-offset-color: var(--fallback-in,oklch(var(--in)/0.65));
}
.ring-offset-info\/70 {
  --tw-ring-offset-color: var(--fallback-in,oklch(var(--in)/0.7));
}
.ring-offset-info\/75 {
  --tw-ring-offset-color: var(--fallback-in,oklch(var(--in)/0.75));
}
.ring-offset-info\/80 {
  --tw-ring-offset-color: var(--fallback-in,oklch(var(--in)/0.8));
}
.ring-offset-info\/85 {
  --tw-ring-offset-color: var(--fallback-in,oklch(var(--in)/0.85));
}
.ring-offset-info\/90 {
  --tw-ring-offset-color: var(--fallback-in,oklch(var(--in)/0.9));
}
.ring-offset-info\/95 {
  --tw-ring-offset-color: var(--fallback-in,oklch(var(--in)/0.95));
}
.ring-offset-inherit {
  --tw-ring-offset-color: inherit;
}
.ring-offset-lime-100 {
  --tw-ring-offset-color: #ecfccb;
}
.ring-offset-lime-100\/0 {
  --tw-ring-offset-color: rgba(236, 252, 203, 0);
}
.ring-offset-lime-100\/10 {
  --tw-ring-offset-color: rgba(236, 252, 203, 0.1);
}
.ring-offset-lime-100\/100 {
  --tw-ring-offset-color: rgba(236, 252, 203, 1);
}
.ring-offset-lime-100\/15 {
  --tw-ring-offset-color: rgba(236, 252, 203, 0.15);
}
.ring-offset-lime-100\/20 {
  --tw-ring-offset-color: rgba(236, 252, 203, 0.2);
}
.ring-offset-lime-100\/25 {
  --tw-ring-offset-color: rgba(236, 252, 203, 0.25);
}
.ring-offset-lime-100\/30 {
  --tw-ring-offset-color: rgba(236, 252, 203, 0.3);
}
.ring-offset-lime-100\/35 {
  --tw-ring-offset-color: rgba(236, 252, 203, 0.35);
}
.ring-offset-lime-100\/40 {
  --tw-ring-offset-color: rgba(236, 252, 203, 0.4);
}
.ring-offset-lime-100\/45 {
  --tw-ring-offset-color: rgba(236, 252, 203, 0.45);
}
.ring-offset-lime-100\/5 {
  --tw-ring-offset-color: rgba(236, 252, 203, 0.05);
}
.ring-offset-lime-100\/50 {
  --tw-ring-offset-color: rgba(236, 252, 203, 0.5);
}
.ring-offset-lime-100\/55 {
  --tw-ring-offset-color: rgba(236, 252, 203, 0.55);
}
.ring-offset-lime-100\/60 {
  --tw-ring-offset-color: rgba(236, 252, 203, 0.6);
}
.ring-offset-lime-100\/65 {
  --tw-ring-offset-color: rgba(236, 252, 203, 0.65);
}
.ring-offset-lime-100\/70 {
  --tw-ring-offset-color: rgba(236, 252, 203, 0.7);
}
.ring-offset-lime-100\/75 {
  --tw-ring-offset-color: rgba(236, 252, 203, 0.75);
}
.ring-offset-lime-100\/80 {
  --tw-ring-offset-color: rgba(236, 252, 203, 0.8);
}
.ring-offset-lime-100\/85 {
  --tw-ring-offset-color: rgba(236, 252, 203, 0.85);
}
.ring-offset-lime-100\/90 {
  --tw-ring-offset-color: rgba(236, 252, 203, 0.9);
}
.ring-offset-lime-100\/95 {
  --tw-ring-offset-color: rgba(236, 252, 203, 0.95);
}
.ring-offset-lime-200 {
  --tw-ring-offset-color: #d9f99d;
}
.ring-offset-lime-200\/0 {
  --tw-ring-offset-color: rgba(217, 249, 157, 0);
}
.ring-offset-lime-200\/10 {
  --tw-ring-offset-color: rgba(217, 249, 157, 0.1);
}
.ring-offset-lime-200\/100 {
  --tw-ring-offset-color: rgba(217, 249, 157, 1);
}
.ring-offset-lime-200\/15 {
  --tw-ring-offset-color: rgba(217, 249, 157, 0.15);
}
.ring-offset-lime-200\/20 {
  --tw-ring-offset-color: rgba(217, 249, 157, 0.2);
}
.ring-offset-lime-200\/25 {
  --tw-ring-offset-color: rgba(217, 249, 157, 0.25);
}
.ring-offset-lime-200\/30 {
  --tw-ring-offset-color: rgba(217, 249, 157, 0.3);
}
.ring-offset-lime-200\/35 {
  --tw-ring-offset-color: rgba(217, 249, 157, 0.35);
}
.ring-offset-lime-200\/40 {
  --tw-ring-offset-color: rgba(217, 249, 157, 0.4);
}
.ring-offset-lime-200\/45 {
  --tw-ring-offset-color: rgba(217, 249, 157, 0.45);
}
.ring-offset-lime-200\/5 {
  --tw-ring-offset-color: rgba(217, 249, 157, 0.05);
}
.ring-offset-lime-200\/50 {
  --tw-ring-offset-color: rgba(217, 249, 157, 0.5);
}
.ring-offset-lime-200\/55 {
  --tw-ring-offset-color: rgba(217, 249, 157, 0.55);
}
.ring-offset-lime-200\/60 {
  --tw-ring-offset-color: rgba(217, 249, 157, 0.6);
}
.ring-offset-lime-200\/65 {
  --tw-ring-offset-color: rgba(217, 249, 157, 0.65);
}
.ring-offset-lime-200\/70 {
  --tw-ring-offset-color: rgba(217, 249, 157, 0.7);
}
.ring-offset-lime-200\/75 {
  --tw-ring-offset-color: rgba(217, 249, 157, 0.75);
}
.ring-offset-lime-200\/80 {
  --tw-ring-offset-color: rgba(217, 249, 157, 0.8);
}
.ring-offset-lime-200\/85 {
  --tw-ring-offset-color: rgba(217, 249, 157, 0.85);
}
.ring-offset-lime-200\/90 {
  --tw-ring-offset-color: rgba(217, 249, 157, 0.9);
}
.ring-offset-lime-200\/95 {
  --tw-ring-offset-color: rgba(217, 249, 157, 0.95);
}
.ring-offset-lime-300 {
  --tw-ring-offset-color: #bef264;
}
.ring-offset-lime-300\/0 {
  --tw-ring-offset-color: rgba(190, 242, 100, 0);
}
.ring-offset-lime-300\/10 {
  --tw-ring-offset-color: rgba(190, 242, 100, 0.1);
}
.ring-offset-lime-300\/100 {
  --tw-ring-offset-color: rgba(190, 242, 100, 1);
}
.ring-offset-lime-300\/15 {
  --tw-ring-offset-color: rgba(190, 242, 100, 0.15);
}
.ring-offset-lime-300\/20 {
  --tw-ring-offset-color: rgba(190, 242, 100, 0.2);
}
.ring-offset-lime-300\/25 {
  --tw-ring-offset-color: rgba(190, 242, 100, 0.25);
}
.ring-offset-lime-300\/30 {
  --tw-ring-offset-color: rgba(190, 242, 100, 0.3);
}
.ring-offset-lime-300\/35 {
  --tw-ring-offset-color: rgba(190, 242, 100, 0.35);
}
.ring-offset-lime-300\/40 {
  --tw-ring-offset-color: rgba(190, 242, 100, 0.4);
}
.ring-offset-lime-300\/45 {
  --tw-ring-offset-color: rgba(190, 242, 100, 0.45);
}
.ring-offset-lime-300\/5 {
  --tw-ring-offset-color: rgba(190, 242, 100, 0.05);
}
.ring-offset-lime-300\/50 {
  --tw-ring-offset-color: rgba(190, 242, 100, 0.5);
}
.ring-offset-lime-300\/55 {
  --tw-ring-offset-color: rgba(190, 242, 100, 0.55);
}
.ring-offset-lime-300\/60 {
  --tw-ring-offset-color: rgba(190, 242, 100, 0.6);
}
.ring-offset-lime-300\/65 {
  --tw-ring-offset-color: rgba(190, 242, 100, 0.65);
}
.ring-offset-lime-300\/70 {
  --tw-ring-offset-color: rgba(190, 242, 100, 0.7);
}
.ring-offset-lime-300\/75 {
  --tw-ring-offset-color: rgba(190, 242, 100, 0.75);
}
.ring-offset-lime-300\/80 {
  --tw-ring-offset-color: rgba(190, 242, 100, 0.8);
}
.ring-offset-lime-300\/85 {
  --tw-ring-offset-color: rgba(190, 242, 100, 0.85);
}
.ring-offset-lime-300\/90 {
  --tw-ring-offset-color: rgba(190, 242, 100, 0.9);
}
.ring-offset-lime-300\/95 {
  --tw-ring-offset-color: rgba(190, 242, 100, 0.95);
}
.ring-offset-lime-400 {
  --tw-ring-offset-color: #a3e635;
}
.ring-offset-lime-400\/0 {
  --tw-ring-offset-color: rgba(163, 230, 53, 0);
}
.ring-offset-lime-400\/10 {
  --tw-ring-offset-color: rgba(163, 230, 53, 0.1);
}
.ring-offset-lime-400\/100 {
  --tw-ring-offset-color: rgba(163, 230, 53, 1);
}
.ring-offset-lime-400\/15 {
  --tw-ring-offset-color: rgba(163, 230, 53, 0.15);
}
.ring-offset-lime-400\/20 {
  --tw-ring-offset-color: rgba(163, 230, 53, 0.2);
}
.ring-offset-lime-400\/25 {
  --tw-ring-offset-color: rgba(163, 230, 53, 0.25);
}
.ring-offset-lime-400\/30 {
  --tw-ring-offset-color: rgba(163, 230, 53, 0.3);
}
.ring-offset-lime-400\/35 {
  --tw-ring-offset-color: rgba(163, 230, 53, 0.35);
}
.ring-offset-lime-400\/40 {
  --tw-ring-offset-color: rgba(163, 230, 53, 0.4);
}
.ring-offset-lime-400\/45 {
  --tw-ring-offset-color: rgba(163, 230, 53, 0.45);
}
.ring-offset-lime-400\/5 {
  --tw-ring-offset-color: rgba(163, 230, 53, 0.05);
}
.ring-offset-lime-400\/50 {
  --tw-ring-offset-color: rgba(163, 230, 53, 0.5);
}
.ring-offset-lime-400\/55 {
  --tw-ring-offset-color: rgba(163, 230, 53, 0.55);
}
.ring-offset-lime-400\/60 {
  --tw-ring-offset-color: rgba(163, 230, 53, 0.6);
}
.ring-offset-lime-400\/65 {
  --tw-ring-offset-color: rgba(163, 230, 53, 0.65);
}
.ring-offset-lime-400\/70 {
  --tw-ring-offset-color: rgba(163, 230, 53, 0.7);
}
.ring-offset-lime-400\/75 {
  --tw-ring-offset-color: rgba(163, 230, 53, 0.75);
}
.ring-offset-lime-400\/80 {
  --tw-ring-offset-color: rgba(163, 230, 53, 0.8);
}
.ring-offset-lime-400\/85 {
  --tw-ring-offset-color: rgba(163, 230, 53, 0.85);
}
.ring-offset-lime-400\/90 {
  --tw-ring-offset-color: rgba(163, 230, 53, 0.9);
}
.ring-offset-lime-400\/95 {
  --tw-ring-offset-color: rgba(163, 230, 53, 0.95);
}
.ring-offset-lime-50 {
  --tw-ring-offset-color: #f7fee7;
}
.ring-offset-lime-50\/0 {
  --tw-ring-offset-color: rgba(247, 254, 231, 0);
}
.ring-offset-lime-50\/10 {
  --tw-ring-offset-color: rgba(247, 254, 231, 0.1);
}
.ring-offset-lime-50\/100 {
  --tw-ring-offset-color: rgba(247, 254, 231, 1);
}
.ring-offset-lime-50\/15 {
  --tw-ring-offset-color: rgba(247, 254, 231, 0.15);
}
.ring-offset-lime-50\/20 {
  --tw-ring-offset-color: rgba(247, 254, 231, 0.2);
}
.ring-offset-lime-50\/25 {
  --tw-ring-offset-color: rgba(247, 254, 231, 0.25);
}
.ring-offset-lime-50\/30 {
  --tw-ring-offset-color: rgba(247, 254, 231, 0.3);
}
.ring-offset-lime-50\/35 {
  --tw-ring-offset-color: rgba(247, 254, 231, 0.35);
}
.ring-offset-lime-50\/40 {
  --tw-ring-offset-color: rgba(247, 254, 231, 0.4);
}
.ring-offset-lime-50\/45 {
  --tw-ring-offset-color: rgba(247, 254, 231, 0.45);
}
.ring-offset-lime-50\/5 {
  --tw-ring-offset-color: rgba(247, 254, 231, 0.05);
}
.ring-offset-lime-50\/50 {
  --tw-ring-offset-color: rgba(247, 254, 231, 0.5);
}
.ring-offset-lime-50\/55 {
  --tw-ring-offset-color: rgba(247, 254, 231, 0.55);
}
.ring-offset-lime-50\/60 {
  --tw-ring-offset-color: rgba(247, 254, 231, 0.6);
}
.ring-offset-lime-50\/65 {
  --tw-ring-offset-color: rgba(247, 254, 231, 0.65);
}
.ring-offset-lime-50\/70 {
  --tw-ring-offset-color: rgba(247, 254, 231, 0.7);
}
.ring-offset-lime-50\/75 {
  --tw-ring-offset-color: rgba(247, 254, 231, 0.75);
}
.ring-offset-lime-50\/80 {
  --tw-ring-offset-color: rgba(247, 254, 231, 0.8);
}
.ring-offset-lime-50\/85 {
  --tw-ring-offset-color: rgba(247, 254, 231, 0.85);
}
.ring-offset-lime-50\/90 {
  --tw-ring-offset-color: rgba(247, 254, 231, 0.9);
}
.ring-offset-lime-50\/95 {
  --tw-ring-offset-color: rgba(247, 254, 231, 0.95);
}
.ring-offset-lime-500 {
  --tw-ring-offset-color: #84cc16;
}
.ring-offset-lime-500\/0 {
  --tw-ring-offset-color: rgba(132, 204, 22, 0);
}
.ring-offset-lime-500\/10 {
  --tw-ring-offset-color: rgba(132, 204, 22, 0.1);
}
.ring-offset-lime-500\/100 {
  --tw-ring-offset-color: rgba(132, 204, 22, 1);
}
.ring-offset-lime-500\/15 {
  --tw-ring-offset-color: rgba(132, 204, 22, 0.15);
}
.ring-offset-lime-500\/20 {
  --tw-ring-offset-color: rgba(132, 204, 22, 0.2);
}
.ring-offset-lime-500\/25 {
  --tw-ring-offset-color: rgba(132, 204, 22, 0.25);
}
.ring-offset-lime-500\/30 {
  --tw-ring-offset-color: rgba(132, 204, 22, 0.3);
}
.ring-offset-lime-500\/35 {
  --tw-ring-offset-color: rgba(132, 204, 22, 0.35);
}
.ring-offset-lime-500\/40 {
  --tw-ring-offset-color: rgba(132, 204, 22, 0.4);
}
.ring-offset-lime-500\/45 {
  --tw-ring-offset-color: rgba(132, 204, 22, 0.45);
}
.ring-offset-lime-500\/5 {
  --tw-ring-offset-color: rgba(132, 204, 22, 0.05);
}
.ring-offset-lime-500\/50 {
  --tw-ring-offset-color: rgba(132, 204, 22, 0.5);
}
.ring-offset-lime-500\/55 {
  --tw-ring-offset-color: rgba(132, 204, 22, 0.55);
}
.ring-offset-lime-500\/60 {
  --tw-ring-offset-color: rgba(132, 204, 22, 0.6);
}
.ring-offset-lime-500\/65 {
  --tw-ring-offset-color: rgba(132, 204, 22, 0.65);
}
.ring-offset-lime-500\/70 {
  --tw-ring-offset-color: rgba(132, 204, 22, 0.7);
}
.ring-offset-lime-500\/75 {
  --tw-ring-offset-color: rgba(132, 204, 22, 0.75);
}
.ring-offset-lime-500\/80 {
  --tw-ring-offset-color: rgba(132, 204, 22, 0.8);
}
.ring-offset-lime-500\/85 {
  --tw-ring-offset-color: rgba(132, 204, 22, 0.85);
}
.ring-offset-lime-500\/90 {
  --tw-ring-offset-color: rgba(132, 204, 22, 0.9);
}
.ring-offset-lime-500\/95 {
  --tw-ring-offset-color: rgba(132, 204, 22, 0.95);
}
.ring-offset-lime-600 {
  --tw-ring-offset-color: #65a30d;
}
.ring-offset-lime-600\/0 {
  --tw-ring-offset-color: rgba(101, 163, 13, 0);
}
.ring-offset-lime-600\/10 {
  --tw-ring-offset-color: rgba(101, 163, 13, 0.1);
}
.ring-offset-lime-600\/100 {
  --tw-ring-offset-color: rgba(101, 163, 13, 1);
}
.ring-offset-lime-600\/15 {
  --tw-ring-offset-color: rgba(101, 163, 13, 0.15);
}
.ring-offset-lime-600\/20 {
  --tw-ring-offset-color: rgba(101, 163, 13, 0.2);
}
.ring-offset-lime-600\/25 {
  --tw-ring-offset-color: rgba(101, 163, 13, 0.25);
}
.ring-offset-lime-600\/30 {
  --tw-ring-offset-color: rgba(101, 163, 13, 0.3);
}
.ring-offset-lime-600\/35 {
  --tw-ring-offset-color: rgba(101, 163, 13, 0.35);
}
.ring-offset-lime-600\/40 {
  --tw-ring-offset-color: rgba(101, 163, 13, 0.4);
}
.ring-offset-lime-600\/45 {
  --tw-ring-offset-color: rgba(101, 163, 13, 0.45);
}
.ring-offset-lime-600\/5 {
  --tw-ring-offset-color: rgba(101, 163, 13, 0.05);
}
.ring-offset-lime-600\/50 {
  --tw-ring-offset-color: rgba(101, 163, 13, 0.5);
}
.ring-offset-lime-600\/55 {
  --tw-ring-offset-color: rgba(101, 163, 13, 0.55);
}
.ring-offset-lime-600\/60 {
  --tw-ring-offset-color: rgba(101, 163, 13, 0.6);
}
.ring-offset-lime-600\/65 {
  --tw-ring-offset-color: rgba(101, 163, 13, 0.65);
}
.ring-offset-lime-600\/70 {
  --tw-ring-offset-color: rgba(101, 163, 13, 0.7);
}
.ring-offset-lime-600\/75 {
  --tw-ring-offset-color: rgba(101, 163, 13, 0.75);
}
.ring-offset-lime-600\/80 {
  --tw-ring-offset-color: rgba(101, 163, 13, 0.8);
}
.ring-offset-lime-600\/85 {
  --tw-ring-offset-color: rgba(101, 163, 13, 0.85);
}
.ring-offset-lime-600\/90 {
  --tw-ring-offset-color: rgba(101, 163, 13, 0.9);
}
.ring-offset-lime-600\/95 {
  --tw-ring-offset-color: rgba(101, 163, 13, 0.95);
}
.ring-offset-lime-700 {
  --tw-ring-offset-color: #4d7c0f;
}
.ring-offset-lime-700\/0 {
  --tw-ring-offset-color: rgba(77, 124, 15, 0);
}
.ring-offset-lime-700\/10 {
  --tw-ring-offset-color: rgba(77, 124, 15, 0.1);
}
.ring-offset-lime-700\/100 {
  --tw-ring-offset-color: rgba(77, 124, 15, 1);
}
.ring-offset-lime-700\/15 {
  --tw-ring-offset-color: rgba(77, 124, 15, 0.15);
}
.ring-offset-lime-700\/20 {
  --tw-ring-offset-color: rgba(77, 124, 15, 0.2);
}
.ring-offset-lime-700\/25 {
  --tw-ring-offset-color: rgba(77, 124, 15, 0.25);
}
.ring-offset-lime-700\/30 {
  --tw-ring-offset-color: rgba(77, 124, 15, 0.3);
}
.ring-offset-lime-700\/35 {
  --tw-ring-offset-color: rgba(77, 124, 15, 0.35);
}
.ring-offset-lime-700\/40 {
  --tw-ring-offset-color: rgba(77, 124, 15, 0.4);
}
.ring-offset-lime-700\/45 {
  --tw-ring-offset-color: rgba(77, 124, 15, 0.45);
}
.ring-offset-lime-700\/5 {
  --tw-ring-offset-color: rgba(77, 124, 15, 0.05);
}
.ring-offset-lime-700\/50 {
  --tw-ring-offset-color: rgba(77, 124, 15, 0.5);
}
.ring-offset-lime-700\/55 {
  --tw-ring-offset-color: rgba(77, 124, 15, 0.55);
}
.ring-offset-lime-700\/60 {
  --tw-ring-offset-color: rgba(77, 124, 15, 0.6);
}
.ring-offset-lime-700\/65 {
  --tw-ring-offset-color: rgba(77, 124, 15, 0.65);
}
.ring-offset-lime-700\/70 {
  --tw-ring-offset-color: rgba(77, 124, 15, 0.7);
}
.ring-offset-lime-700\/75 {
  --tw-ring-offset-color: rgba(77, 124, 15, 0.75);
}
.ring-offset-lime-700\/80 {
  --tw-ring-offset-color: rgba(77, 124, 15, 0.8);
}
.ring-offset-lime-700\/85 {
  --tw-ring-offset-color: rgba(77, 124, 15, 0.85);
}
.ring-offset-lime-700\/90 {
  --tw-ring-offset-color: rgba(77, 124, 15, 0.9);
}
.ring-offset-lime-700\/95 {
  --tw-ring-offset-color: rgba(77, 124, 15, 0.95);
}
.ring-offset-lime-800 {
  --tw-ring-offset-color: #3f6212;
}
.ring-offset-lime-800\/0 {
  --tw-ring-offset-color: rgba(63, 98, 18, 0);
}
.ring-offset-lime-800\/10 {
  --tw-ring-offset-color: rgba(63, 98, 18, 0.1);
}
.ring-offset-lime-800\/100 {
  --tw-ring-offset-color: rgba(63, 98, 18, 1);
}
.ring-offset-lime-800\/15 {
  --tw-ring-offset-color: rgba(63, 98, 18, 0.15);
}
.ring-offset-lime-800\/20 {
  --tw-ring-offset-color: rgba(63, 98, 18, 0.2);
}
.ring-offset-lime-800\/25 {
  --tw-ring-offset-color: rgba(63, 98, 18, 0.25);
}
.ring-offset-lime-800\/30 {
  --tw-ring-offset-color: rgba(63, 98, 18, 0.3);
}
.ring-offset-lime-800\/35 {
  --tw-ring-offset-color: rgba(63, 98, 18, 0.35);
}
.ring-offset-lime-800\/40 {
  --tw-ring-offset-color: rgba(63, 98, 18, 0.4);
}
.ring-offset-lime-800\/45 {
  --tw-ring-offset-color: rgba(63, 98, 18, 0.45);
}
.ring-offset-lime-800\/5 {
  --tw-ring-offset-color: rgba(63, 98, 18, 0.05);
}
.ring-offset-lime-800\/50 {
  --tw-ring-offset-color: rgba(63, 98, 18, 0.5);
}
.ring-offset-lime-800\/55 {
  --tw-ring-offset-color: rgba(63, 98, 18, 0.55);
}
.ring-offset-lime-800\/60 {
  --tw-ring-offset-color: rgba(63, 98, 18, 0.6);
}
.ring-offset-lime-800\/65 {
  --tw-ring-offset-color: rgba(63, 98, 18, 0.65);
}
.ring-offset-lime-800\/70 {
  --tw-ring-offset-color: rgba(63, 98, 18, 0.7);
}
.ring-offset-lime-800\/75 {
  --tw-ring-offset-color: rgba(63, 98, 18, 0.75);
}
.ring-offset-lime-800\/80 {
  --tw-ring-offset-color: rgba(63, 98, 18, 0.8);
}
.ring-offset-lime-800\/85 {
  --tw-ring-offset-color: rgba(63, 98, 18, 0.85);
}
.ring-offset-lime-800\/90 {
  --tw-ring-offset-color: rgba(63, 98, 18, 0.9);
}
.ring-offset-lime-800\/95 {
  --tw-ring-offset-color: rgba(63, 98, 18, 0.95);
}
.ring-offset-lime-900 {
  --tw-ring-offset-color: #365314;
}
.ring-offset-lime-900\/0 {
  --tw-ring-offset-color: rgba(54, 83, 20, 0);
}
.ring-offset-lime-900\/10 {
  --tw-ring-offset-color: rgba(54, 83, 20, 0.1);
}
.ring-offset-lime-900\/100 {
  --tw-ring-offset-color: rgba(54, 83, 20, 1);
}
.ring-offset-lime-900\/15 {
  --tw-ring-offset-color: rgba(54, 83, 20, 0.15);
}
.ring-offset-lime-900\/20 {
  --tw-ring-offset-color: rgba(54, 83, 20, 0.2);
}
.ring-offset-lime-900\/25 {
  --tw-ring-offset-color: rgba(54, 83, 20, 0.25);
}
.ring-offset-lime-900\/30 {
  --tw-ring-offset-color: rgba(54, 83, 20, 0.3);
}
.ring-offset-lime-900\/35 {
  --tw-ring-offset-color: rgba(54, 83, 20, 0.35);
}
.ring-offset-lime-900\/40 {
  --tw-ring-offset-color: rgba(54, 83, 20, 0.4);
}
.ring-offset-lime-900\/45 {
  --tw-ring-offset-color: rgba(54, 83, 20, 0.45);
}
.ring-offset-lime-900\/5 {
  --tw-ring-offset-color: rgba(54, 83, 20, 0.05);
}
.ring-offset-lime-900\/50 {
  --tw-ring-offset-color: rgba(54, 83, 20, 0.5);
}
.ring-offset-lime-900\/55 {
  --tw-ring-offset-color: rgba(54, 83, 20, 0.55);
}
.ring-offset-lime-900\/60 {
  --tw-ring-offset-color: rgba(54, 83, 20, 0.6);
}
.ring-offset-lime-900\/65 {
  --tw-ring-offset-color: rgba(54, 83, 20, 0.65);
}
.ring-offset-lime-900\/70 {
  --tw-ring-offset-color: rgba(54, 83, 20, 0.7);
}
.ring-offset-lime-900\/75 {
  --tw-ring-offset-color: rgba(54, 83, 20, 0.75);
}
.ring-offset-lime-900\/80 {
  --tw-ring-offset-color: rgba(54, 83, 20, 0.8);
}
.ring-offset-lime-900\/85 {
  --tw-ring-offset-color: rgba(54, 83, 20, 0.85);
}
.ring-offset-lime-900\/90 {
  --tw-ring-offset-color: rgba(54, 83, 20, 0.9);
}
.ring-offset-lime-900\/95 {
  --tw-ring-offset-color: rgba(54, 83, 20, 0.95);
}
.ring-offset-lime-950 {
  --tw-ring-offset-color: #1a2e05;
}
.ring-offset-lime-950\/0 {
  --tw-ring-offset-color: rgba(26, 46, 5, 0);
}
.ring-offset-lime-950\/10 {
  --tw-ring-offset-color: rgba(26, 46, 5, 0.1);
}
.ring-offset-lime-950\/100 {
  --tw-ring-offset-color: rgba(26, 46, 5, 1);
}
.ring-offset-lime-950\/15 {
  --tw-ring-offset-color: rgba(26, 46, 5, 0.15);
}
.ring-offset-lime-950\/20 {
  --tw-ring-offset-color: rgba(26, 46, 5, 0.2);
}
.ring-offset-lime-950\/25 {
  --tw-ring-offset-color: rgba(26, 46, 5, 0.25);
}
.ring-offset-lime-950\/30 {
  --tw-ring-offset-color: rgba(26, 46, 5, 0.3);
}
.ring-offset-lime-950\/35 {
  --tw-ring-offset-color: rgba(26, 46, 5, 0.35);
}
.ring-offset-lime-950\/40 {
  --tw-ring-offset-color: rgba(26, 46, 5, 0.4);
}
.ring-offset-lime-950\/45 {
  --tw-ring-offset-color: rgba(26, 46, 5, 0.45);
}
.ring-offset-lime-950\/5 {
  --tw-ring-offset-color: rgba(26, 46, 5, 0.05);
}
.ring-offset-lime-950\/50 {
  --tw-ring-offset-color: rgba(26, 46, 5, 0.5);
}
.ring-offset-lime-950\/55 {
  --tw-ring-offset-color: rgba(26, 46, 5, 0.55);
}
.ring-offset-lime-950\/60 {
  --tw-ring-offset-color: rgba(26, 46, 5, 0.6);
}
.ring-offset-lime-950\/65 {
  --tw-ring-offset-color: rgba(26, 46, 5, 0.65);
}
.ring-offset-lime-950\/70 {
  --tw-ring-offset-color: rgba(26, 46, 5, 0.7);
}
.ring-offset-lime-950\/75 {
  --tw-ring-offset-color: rgba(26, 46, 5, 0.75);
}
.ring-offset-lime-950\/80 {
  --tw-ring-offset-color: rgba(26, 46, 5, 0.8);
}
.ring-offset-lime-950\/85 {
  --tw-ring-offset-color: rgba(26, 46, 5, 0.85);
}
.ring-offset-lime-950\/90 {
  --tw-ring-offset-color: rgba(26, 46, 5, 0.9);
}
.ring-offset-lime-950\/95 {
  --tw-ring-offset-color: rgba(26, 46, 5, 0.95);
}
.ring-offset-neutral {
  --tw-ring-offset-color: var(--fallback-n,oklch(var(--n)/1));
}
.ring-offset-neutral-100 {
  --tw-ring-offset-color: #f5f5f5;
}
.ring-offset-neutral-100\/0 {
  --tw-ring-offset-color: rgba(245, 245, 245, 0);
}
.ring-offset-neutral-100\/10 {
  --tw-ring-offset-color: rgba(245, 245, 245, 0.1);
}
.ring-offset-neutral-100\/100 {
  --tw-ring-offset-color: rgba(245, 245, 245, 1);
}
.ring-offset-neutral-100\/15 {
  --tw-ring-offset-color: rgba(245, 245, 245, 0.15);
}
.ring-offset-neutral-100\/20 {
  --tw-ring-offset-color: rgba(245, 245, 245, 0.2);
}
.ring-offset-neutral-100\/25 {
  --tw-ring-offset-color: rgba(245, 245, 245, 0.25);
}
.ring-offset-neutral-100\/30 {
  --tw-ring-offset-color: rgba(245, 245, 245, 0.3);
}
.ring-offset-neutral-100\/35 {
  --tw-ring-offset-color: rgba(245, 245, 245, 0.35);
}
.ring-offset-neutral-100\/40 {
  --tw-ring-offset-color: rgba(245, 245, 245, 0.4);
}
.ring-offset-neutral-100\/45 {
  --tw-ring-offset-color: rgba(245, 245, 245, 0.45);
}
.ring-offset-neutral-100\/5 {
  --tw-ring-offset-color: rgba(245, 245, 245, 0.05);
}
.ring-offset-neutral-100\/50 {
  --tw-ring-offset-color: rgba(245, 245, 245, 0.5);
}
.ring-offset-neutral-100\/55 {
  --tw-ring-offset-color: rgba(245, 245, 245, 0.55);
}
.ring-offset-neutral-100\/60 {
  --tw-ring-offset-color: rgba(245, 245, 245, 0.6);
}
.ring-offset-neutral-100\/65 {
  --tw-ring-offset-color: rgba(245, 245, 245, 0.65);
}
.ring-offset-neutral-100\/70 {
  --tw-ring-offset-color: rgba(245, 245, 245, 0.7);
}
.ring-offset-neutral-100\/75 {
  --tw-ring-offset-color: rgba(245, 245, 245, 0.75);
}
.ring-offset-neutral-100\/80 {
  --tw-ring-offset-color: rgba(245, 245, 245, 0.8);
}
.ring-offset-neutral-100\/85 {
  --tw-ring-offset-color: rgba(245, 245, 245, 0.85);
}
.ring-offset-neutral-100\/90 {
  --tw-ring-offset-color: rgba(245, 245, 245, 0.9);
}
.ring-offset-neutral-100\/95 {
  --tw-ring-offset-color: rgba(245, 245, 245, 0.95);
}
.ring-offset-neutral-200 {
  --tw-ring-offset-color: #e5e5e5;
}
.ring-offset-neutral-200\/0 {
  --tw-ring-offset-color: rgba(229, 229, 229, 0);
}
.ring-offset-neutral-200\/10 {
  --tw-ring-offset-color: rgba(229, 229, 229, 0.1);
}
.ring-offset-neutral-200\/100 {
  --tw-ring-offset-color: rgba(229, 229, 229, 1);
}
.ring-offset-neutral-200\/15 {
  --tw-ring-offset-color: rgba(229, 229, 229, 0.15);
}
.ring-offset-neutral-200\/20 {
  --tw-ring-offset-color: rgba(229, 229, 229, 0.2);
}
.ring-offset-neutral-200\/25 {
  --tw-ring-offset-color: rgba(229, 229, 229, 0.25);
}
.ring-offset-neutral-200\/30 {
  --tw-ring-offset-color: rgba(229, 229, 229, 0.3);
}
.ring-offset-neutral-200\/35 {
  --tw-ring-offset-color: rgba(229, 229, 229, 0.35);
}
.ring-offset-neutral-200\/40 {
  --tw-ring-offset-color: rgba(229, 229, 229, 0.4);
}
.ring-offset-neutral-200\/45 {
  --tw-ring-offset-color: rgba(229, 229, 229, 0.45);
}
.ring-offset-neutral-200\/5 {
  --tw-ring-offset-color: rgba(229, 229, 229, 0.05);
}
.ring-offset-neutral-200\/50 {
  --tw-ring-offset-color: rgba(229, 229, 229, 0.5);
}
.ring-offset-neutral-200\/55 {
  --tw-ring-offset-color: rgba(229, 229, 229, 0.55);
}
.ring-offset-neutral-200\/60 {
  --tw-ring-offset-color: rgba(229, 229, 229, 0.6);
}
.ring-offset-neutral-200\/65 {
  --tw-ring-offset-color: rgba(229, 229, 229, 0.65);
}
.ring-offset-neutral-200\/70 {
  --tw-ring-offset-color: rgba(229, 229, 229, 0.7);
}
.ring-offset-neutral-200\/75 {
  --tw-ring-offset-color: rgba(229, 229, 229, 0.75);
}
.ring-offset-neutral-200\/80 {
  --tw-ring-offset-color: rgba(229, 229, 229, 0.8);
}
.ring-offset-neutral-200\/85 {
  --tw-ring-offset-color: rgba(229, 229, 229, 0.85);
}
.ring-offset-neutral-200\/90 {
  --tw-ring-offset-color: rgba(229, 229, 229, 0.9);
}
.ring-offset-neutral-200\/95 {
  --tw-ring-offset-color: rgba(229, 229, 229, 0.95);
}
.ring-offset-neutral-300 {
  --tw-ring-offset-color: #d4d4d4;
}
.ring-offset-neutral-300\/0 {
  --tw-ring-offset-color: rgba(212, 212, 212, 0);
}
.ring-offset-neutral-300\/10 {
  --tw-ring-offset-color: rgba(212, 212, 212, 0.1);
}
.ring-offset-neutral-300\/100 {
  --tw-ring-offset-color: rgba(212, 212, 212, 1);
}
.ring-offset-neutral-300\/15 {
  --tw-ring-offset-color: rgba(212, 212, 212, 0.15);
}
.ring-offset-neutral-300\/20 {
  --tw-ring-offset-color: rgba(212, 212, 212, 0.2);
}
.ring-offset-neutral-300\/25 {
  --tw-ring-offset-color: rgba(212, 212, 212, 0.25);
}
.ring-offset-neutral-300\/30 {
  --tw-ring-offset-color: rgba(212, 212, 212, 0.3);
}
.ring-offset-neutral-300\/35 {
  --tw-ring-offset-color: rgba(212, 212, 212, 0.35);
}
.ring-offset-neutral-300\/40 {
  --tw-ring-offset-color: rgba(212, 212, 212, 0.4);
}
.ring-offset-neutral-300\/45 {
  --tw-ring-offset-color: rgba(212, 212, 212, 0.45);
}
.ring-offset-neutral-300\/5 {
  --tw-ring-offset-color: rgba(212, 212, 212, 0.05);
}
.ring-offset-neutral-300\/50 {
  --tw-ring-offset-color: rgba(212, 212, 212, 0.5);
}
.ring-offset-neutral-300\/55 {
  --tw-ring-offset-color: rgba(212, 212, 212, 0.55);
}
.ring-offset-neutral-300\/60 {
  --tw-ring-offset-color: rgba(212, 212, 212, 0.6);
}
.ring-offset-neutral-300\/65 {
  --tw-ring-offset-color: rgba(212, 212, 212, 0.65);
}
.ring-offset-neutral-300\/70 {
  --tw-ring-offset-color: rgba(212, 212, 212, 0.7);
}
.ring-offset-neutral-300\/75 {
  --tw-ring-offset-color: rgba(212, 212, 212, 0.75);
}
.ring-offset-neutral-300\/80 {
  --tw-ring-offset-color: rgba(212, 212, 212, 0.8);
}
.ring-offset-neutral-300\/85 {
  --tw-ring-offset-color: rgba(212, 212, 212, 0.85);
}
.ring-offset-neutral-300\/90 {
  --tw-ring-offset-color: rgba(212, 212, 212, 0.9);
}
.ring-offset-neutral-300\/95 {
  --tw-ring-offset-color: rgba(212, 212, 212, 0.95);
}
.ring-offset-neutral-400 {
  --tw-ring-offset-color: #a3a3a3;
}
.ring-offset-neutral-400\/0 {
  --tw-ring-offset-color: rgba(163, 163, 163, 0);
}
.ring-offset-neutral-400\/10 {
  --tw-ring-offset-color: rgba(163, 163, 163, 0.1);
}
.ring-offset-neutral-400\/100 {
  --tw-ring-offset-color: rgba(163, 163, 163, 1);
}
.ring-offset-neutral-400\/15 {
  --tw-ring-offset-color: rgba(163, 163, 163, 0.15);
}
.ring-offset-neutral-400\/20 {
  --tw-ring-offset-color: rgba(163, 163, 163, 0.2);
}
.ring-offset-neutral-400\/25 {
  --tw-ring-offset-color: rgba(163, 163, 163, 0.25);
}
.ring-offset-neutral-400\/30 {
  --tw-ring-offset-color: rgba(163, 163, 163, 0.3);
}
.ring-offset-neutral-400\/35 {
  --tw-ring-offset-color: rgba(163, 163, 163, 0.35);
}
.ring-offset-neutral-400\/40 {
  --tw-ring-offset-color: rgba(163, 163, 163, 0.4);
}
.ring-offset-neutral-400\/45 {
  --tw-ring-offset-color: rgba(163, 163, 163, 0.45);
}
.ring-offset-neutral-400\/5 {
  --tw-ring-offset-color: rgba(163, 163, 163, 0.05);
}
.ring-offset-neutral-400\/50 {
  --tw-ring-offset-color: rgba(163, 163, 163, 0.5);
}
.ring-offset-neutral-400\/55 {
  --tw-ring-offset-color: rgba(163, 163, 163, 0.55);
}
.ring-offset-neutral-400\/60 {
  --tw-ring-offset-color: rgba(163, 163, 163, 0.6);
}
.ring-offset-neutral-400\/65 {
  --tw-ring-offset-color: rgba(163, 163, 163, 0.65);
}
.ring-offset-neutral-400\/70 {
  --tw-ring-offset-color: rgba(163, 163, 163, 0.7);
}
.ring-offset-neutral-400\/75 {
  --tw-ring-offset-color: rgba(163, 163, 163, 0.75);
}
.ring-offset-neutral-400\/80 {
  --tw-ring-offset-color: rgba(163, 163, 163, 0.8);
}
.ring-offset-neutral-400\/85 {
  --tw-ring-offset-color: rgba(163, 163, 163, 0.85);
}
.ring-offset-neutral-400\/90 {
  --tw-ring-offset-color: rgba(163, 163, 163, 0.9);
}
.ring-offset-neutral-400\/95 {
  --tw-ring-offset-color: rgba(163, 163, 163, 0.95);
}
.ring-offset-neutral-50 {
  --tw-ring-offset-color: #fafafa;
}
.ring-offset-neutral-50\/0 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0);
}
.ring-offset-neutral-50\/10 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.1);
}
.ring-offset-neutral-50\/100 {
  --tw-ring-offset-color: rgba(250, 250, 250, 1);
}
.ring-offset-neutral-50\/15 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.15);
}
.ring-offset-neutral-50\/20 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.2);
}
.ring-offset-neutral-50\/25 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.25);
}
.ring-offset-neutral-50\/30 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.3);
}
.ring-offset-neutral-50\/35 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.35);
}
.ring-offset-neutral-50\/40 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.4);
}
.ring-offset-neutral-50\/45 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.45);
}
.ring-offset-neutral-50\/5 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.05);
}
.ring-offset-neutral-50\/50 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.5);
}
.ring-offset-neutral-50\/55 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.55);
}
.ring-offset-neutral-50\/60 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.6);
}
.ring-offset-neutral-50\/65 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.65);
}
.ring-offset-neutral-50\/70 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.7);
}
.ring-offset-neutral-50\/75 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.75);
}
.ring-offset-neutral-50\/80 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.8);
}
.ring-offset-neutral-50\/85 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.85);
}
.ring-offset-neutral-50\/90 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.9);
}
.ring-offset-neutral-50\/95 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.95);
}
.ring-offset-neutral-500 {
  --tw-ring-offset-color: #737373;
}
.ring-offset-neutral-500\/0 {
  --tw-ring-offset-color: rgba(115, 115, 115, 0);
}
.ring-offset-neutral-500\/10 {
  --tw-ring-offset-color: rgba(115, 115, 115, 0.1);
}
.ring-offset-neutral-500\/100 {
  --tw-ring-offset-color: rgba(115, 115, 115, 1);
}
.ring-offset-neutral-500\/15 {
  --tw-ring-offset-color: rgba(115, 115, 115, 0.15);
}
.ring-offset-neutral-500\/20 {
  --tw-ring-offset-color: rgba(115, 115, 115, 0.2);
}
.ring-offset-neutral-500\/25 {
  --tw-ring-offset-color: rgba(115, 115, 115, 0.25);
}
.ring-offset-neutral-500\/30 {
  --tw-ring-offset-color: rgba(115, 115, 115, 0.3);
}
.ring-offset-neutral-500\/35 {
  --tw-ring-offset-color: rgba(115, 115, 115, 0.35);
}
.ring-offset-neutral-500\/40 {
  --tw-ring-offset-color: rgba(115, 115, 115, 0.4);
}
.ring-offset-neutral-500\/45 {
  --tw-ring-offset-color: rgba(115, 115, 115, 0.45);
}
.ring-offset-neutral-500\/5 {
  --tw-ring-offset-color: rgba(115, 115, 115, 0.05);
}
.ring-offset-neutral-500\/50 {
  --tw-ring-offset-color: rgba(115, 115, 115, 0.5);
}
.ring-offset-neutral-500\/55 {
  --tw-ring-offset-color: rgba(115, 115, 115, 0.55);
}
.ring-offset-neutral-500\/60 {
  --tw-ring-offset-color: rgba(115, 115, 115, 0.6);
}
.ring-offset-neutral-500\/65 {
  --tw-ring-offset-color: rgba(115, 115, 115, 0.65);
}
.ring-offset-neutral-500\/70 {
  --tw-ring-offset-color: rgba(115, 115, 115, 0.7);
}
.ring-offset-neutral-500\/75 {
  --tw-ring-offset-color: rgba(115, 115, 115, 0.75);
}
.ring-offset-neutral-500\/80 {
  --tw-ring-offset-color: rgba(115, 115, 115, 0.8);
}
.ring-offset-neutral-500\/85 {
  --tw-ring-offset-color: rgba(115, 115, 115, 0.85);
}
.ring-offset-neutral-500\/90 {
  --tw-ring-offset-color: rgba(115, 115, 115, 0.9);
}
.ring-offset-neutral-500\/95 {
  --tw-ring-offset-color: rgba(115, 115, 115, 0.95);
}
.ring-offset-neutral-600 {
  --tw-ring-offset-color: #525252;
}
.ring-offset-neutral-600\/0 {
  --tw-ring-offset-color: rgba(82, 82, 82, 0);
}
.ring-offset-neutral-600\/10 {
  --tw-ring-offset-color: rgba(82, 82, 82, 0.1);
}
.ring-offset-neutral-600\/100 {
  --tw-ring-offset-color: rgba(82, 82, 82, 1);
}
.ring-offset-neutral-600\/15 {
  --tw-ring-offset-color: rgba(82, 82, 82, 0.15);
}
.ring-offset-neutral-600\/20 {
  --tw-ring-offset-color: rgba(82, 82, 82, 0.2);
}
.ring-offset-neutral-600\/25 {
  --tw-ring-offset-color: rgba(82, 82, 82, 0.25);
}
.ring-offset-neutral-600\/30 {
  --tw-ring-offset-color: rgba(82, 82, 82, 0.3);
}
.ring-offset-neutral-600\/35 {
  --tw-ring-offset-color: rgba(82, 82, 82, 0.35);
}
.ring-offset-neutral-600\/40 {
  --tw-ring-offset-color: rgba(82, 82, 82, 0.4);
}
.ring-offset-neutral-600\/45 {
  --tw-ring-offset-color: rgba(82, 82, 82, 0.45);
}
.ring-offset-neutral-600\/5 {
  --tw-ring-offset-color: rgba(82, 82, 82, 0.05);
}
.ring-offset-neutral-600\/50 {
  --tw-ring-offset-color: rgba(82, 82, 82, 0.5);
}
.ring-offset-neutral-600\/55 {
  --tw-ring-offset-color: rgba(82, 82, 82, 0.55);
}
.ring-offset-neutral-600\/60 {
  --tw-ring-offset-color: rgba(82, 82, 82, 0.6);
}
.ring-offset-neutral-600\/65 {
  --tw-ring-offset-color: rgba(82, 82, 82, 0.65);
}
.ring-offset-neutral-600\/70 {
  --tw-ring-offset-color: rgba(82, 82, 82, 0.7);
}
.ring-offset-neutral-600\/75 {
  --tw-ring-offset-color: rgba(82, 82, 82, 0.75);
}
.ring-offset-neutral-600\/80 {
  --tw-ring-offset-color: rgba(82, 82, 82, 0.8);
}
.ring-offset-neutral-600\/85 {
  --tw-ring-offset-color: rgba(82, 82, 82, 0.85);
}
.ring-offset-neutral-600\/90 {
  --tw-ring-offset-color: rgba(82, 82, 82, 0.9);
}
.ring-offset-neutral-600\/95 {
  --tw-ring-offset-color: rgba(82, 82, 82, 0.95);
}
.ring-offset-neutral-700 {
  --tw-ring-offset-color: #404040;
}
.ring-offset-neutral-700\/0 {
  --tw-ring-offset-color: rgba(64, 64, 64, 0);
}
.ring-offset-neutral-700\/10 {
  --tw-ring-offset-color: rgba(64, 64, 64, 0.1);
}
.ring-offset-neutral-700\/100 {
  --tw-ring-offset-color: rgba(64, 64, 64, 1);
}
.ring-offset-neutral-700\/15 {
  --tw-ring-offset-color: rgba(64, 64, 64, 0.15);
}
.ring-offset-neutral-700\/20 {
  --tw-ring-offset-color: rgba(64, 64, 64, 0.2);
}
.ring-offset-neutral-700\/25 {
  --tw-ring-offset-color: rgba(64, 64, 64, 0.25);
}
.ring-offset-neutral-700\/30 {
  --tw-ring-offset-color: rgba(64, 64, 64, 0.3);
}
.ring-offset-neutral-700\/35 {
  --tw-ring-offset-color: rgba(64, 64, 64, 0.35);
}
.ring-offset-neutral-700\/40 {
  --tw-ring-offset-color: rgba(64, 64, 64, 0.4);
}
.ring-offset-neutral-700\/45 {
  --tw-ring-offset-color: rgba(64, 64, 64, 0.45);
}
.ring-offset-neutral-700\/5 {
  --tw-ring-offset-color: rgba(64, 64, 64, 0.05);
}
.ring-offset-neutral-700\/50 {
  --tw-ring-offset-color: rgba(64, 64, 64, 0.5);
}
.ring-offset-neutral-700\/55 {
  --tw-ring-offset-color: rgba(64, 64, 64, 0.55);
}
.ring-offset-neutral-700\/60 {
  --tw-ring-offset-color: rgba(64, 64, 64, 0.6);
}
.ring-offset-neutral-700\/65 {
  --tw-ring-offset-color: rgba(64, 64, 64, 0.65);
}
.ring-offset-neutral-700\/70 {
  --tw-ring-offset-color: rgba(64, 64, 64, 0.7);
}
.ring-offset-neutral-700\/75 {
  --tw-ring-offset-color: rgba(64, 64, 64, 0.75);
}
.ring-offset-neutral-700\/80 {
  --tw-ring-offset-color: rgba(64, 64, 64, 0.8);
}
.ring-offset-neutral-700\/85 {
  --tw-ring-offset-color: rgba(64, 64, 64, 0.85);
}
.ring-offset-neutral-700\/90 {
  --tw-ring-offset-color: rgba(64, 64, 64, 0.9);
}
.ring-offset-neutral-700\/95 {
  --tw-ring-offset-color: rgba(64, 64, 64, 0.95);
}
.ring-offset-neutral-800 {
  --tw-ring-offset-color: #262626;
}
.ring-offset-neutral-800\/0 {
  --tw-ring-offset-color: rgba(38, 38, 38, 0);
}
.ring-offset-neutral-800\/10 {
  --tw-ring-offset-color: rgba(38, 38, 38, 0.1);
}
.ring-offset-neutral-800\/100 {
  --tw-ring-offset-color: rgba(38, 38, 38, 1);
}
.ring-offset-neutral-800\/15 {
  --tw-ring-offset-color: rgba(38, 38, 38, 0.15);
}
.ring-offset-neutral-800\/20 {
  --tw-ring-offset-color: rgba(38, 38, 38, 0.2);
}
.ring-offset-neutral-800\/25 {
  --tw-ring-offset-color: rgba(38, 38, 38, 0.25);
}
.ring-offset-neutral-800\/30 {
  --tw-ring-offset-color: rgba(38, 38, 38, 0.3);
}
.ring-offset-neutral-800\/35 {
  --tw-ring-offset-color: rgba(38, 38, 38, 0.35);
}
.ring-offset-neutral-800\/40 {
  --tw-ring-offset-color: rgba(38, 38, 38, 0.4);
}
.ring-offset-neutral-800\/45 {
  --tw-ring-offset-color: rgba(38, 38, 38, 0.45);
}
.ring-offset-neutral-800\/5 {
  --tw-ring-offset-color: rgba(38, 38, 38, 0.05);
}
.ring-offset-neutral-800\/50 {
  --tw-ring-offset-color: rgba(38, 38, 38, 0.5);
}
.ring-offset-neutral-800\/55 {
  --tw-ring-offset-color: rgba(38, 38, 38, 0.55);
}
.ring-offset-neutral-800\/60 {
  --tw-ring-offset-color: rgba(38, 38, 38, 0.6);
}
.ring-offset-neutral-800\/65 {
  --tw-ring-offset-color: rgba(38, 38, 38, 0.65);
}
.ring-offset-neutral-800\/70 {
  --tw-ring-offset-color: rgba(38, 38, 38, 0.7);
}
.ring-offset-neutral-800\/75 {
  --tw-ring-offset-color: rgba(38, 38, 38, 0.75);
}
.ring-offset-neutral-800\/80 {
  --tw-ring-offset-color: rgba(38, 38, 38, 0.8);
}
.ring-offset-neutral-800\/85 {
  --tw-ring-offset-color: rgba(38, 38, 38, 0.85);
}
.ring-offset-neutral-800\/90 {
  --tw-ring-offset-color: rgba(38, 38, 38, 0.9);
}
.ring-offset-neutral-800\/95 {
  --tw-ring-offset-color: rgba(38, 38, 38, 0.95);
}
.ring-offset-neutral-900 {
  --tw-ring-offset-color: #171717;
}
.ring-offset-neutral-900\/0 {
  --tw-ring-offset-color: rgba(23, 23, 23, 0);
}
.ring-offset-neutral-900\/10 {
  --tw-ring-offset-color: rgba(23, 23, 23, 0.1);
}
.ring-offset-neutral-900\/100 {
  --tw-ring-offset-color: rgba(23, 23, 23, 1);
}
.ring-offset-neutral-900\/15 {
  --tw-ring-offset-color: rgba(23, 23, 23, 0.15);
}
.ring-offset-neutral-900\/20 {
  --tw-ring-offset-color: rgba(23, 23, 23, 0.2);
}
.ring-offset-neutral-900\/25 {
  --tw-ring-offset-color: rgba(23, 23, 23, 0.25);
}
.ring-offset-neutral-900\/30 {
  --tw-ring-offset-color: rgba(23, 23, 23, 0.3);
}
.ring-offset-neutral-900\/35 {
  --tw-ring-offset-color: rgba(23, 23, 23, 0.35);
}
.ring-offset-neutral-900\/40 {
  --tw-ring-offset-color: rgba(23, 23, 23, 0.4);
}
.ring-offset-neutral-900\/45 {
  --tw-ring-offset-color: rgba(23, 23, 23, 0.45);
}
.ring-offset-neutral-900\/5 {
  --tw-ring-offset-color: rgba(23, 23, 23, 0.05);
}
.ring-offset-neutral-900\/50 {
  --tw-ring-offset-color: rgba(23, 23, 23, 0.5);
}
.ring-offset-neutral-900\/55 {
  --tw-ring-offset-color: rgba(23, 23, 23, 0.55);
}
.ring-offset-neutral-900\/60 {
  --tw-ring-offset-color: rgba(23, 23, 23, 0.6);
}
.ring-offset-neutral-900\/65 {
  --tw-ring-offset-color: rgba(23, 23, 23, 0.65);
}
.ring-offset-neutral-900\/70 {
  --tw-ring-offset-color: rgba(23, 23, 23, 0.7);
}
.ring-offset-neutral-900\/75 {
  --tw-ring-offset-color: rgba(23, 23, 23, 0.75);
}
.ring-offset-neutral-900\/80 {
  --tw-ring-offset-color: rgba(23, 23, 23, 0.8);
}
.ring-offset-neutral-900\/85 {
  --tw-ring-offset-color: rgba(23, 23, 23, 0.85);
}
.ring-offset-neutral-900\/90 {
  --tw-ring-offset-color: rgba(23, 23, 23, 0.9);
}
.ring-offset-neutral-900\/95 {
  --tw-ring-offset-color: rgba(23, 23, 23, 0.95);
}
.ring-offset-neutral-950 {
  --tw-ring-offset-color: #0a0a0a;
}
.ring-offset-neutral-950\/0 {
  --tw-ring-offset-color: rgba(10, 10, 10, 0);
}
.ring-offset-neutral-950\/10 {
  --tw-ring-offset-color: rgba(10, 10, 10, 0.1);
}
.ring-offset-neutral-950\/100 {
  --tw-ring-offset-color: rgba(10, 10, 10, 1);
}
.ring-offset-neutral-950\/15 {
  --tw-ring-offset-color: rgba(10, 10, 10, 0.15);
}
.ring-offset-neutral-950\/20 {
  --tw-ring-offset-color: rgba(10, 10, 10, 0.2);
}
.ring-offset-neutral-950\/25 {
  --tw-ring-offset-color: rgba(10, 10, 10, 0.25);
}
.ring-offset-neutral-950\/30 {
  --tw-ring-offset-color: rgba(10, 10, 10, 0.3);
}
.ring-offset-neutral-950\/35 {
  --tw-ring-offset-color: rgba(10, 10, 10, 0.35);
}
.ring-offset-neutral-950\/40 {
  --tw-ring-offset-color: rgba(10, 10, 10, 0.4);
}
.ring-offset-neutral-950\/45 {
  --tw-ring-offset-color: rgba(10, 10, 10, 0.45);
}
.ring-offset-neutral-950\/5 {
  --tw-ring-offset-color: rgba(10, 10, 10, 0.05);
}
.ring-offset-neutral-950\/50 {
  --tw-ring-offset-color: rgba(10, 10, 10, 0.5);
}
.ring-offset-neutral-950\/55 {
  --tw-ring-offset-color: rgba(10, 10, 10, 0.55);
}
.ring-offset-neutral-950\/60 {
  --tw-ring-offset-color: rgba(10, 10, 10, 0.6);
}
.ring-offset-neutral-950\/65 {
  --tw-ring-offset-color: rgba(10, 10, 10, 0.65);
}
.ring-offset-neutral-950\/70 {
  --tw-ring-offset-color: rgba(10, 10, 10, 0.7);
}
.ring-offset-neutral-950\/75 {
  --tw-ring-offset-color: rgba(10, 10, 10, 0.75);
}
.ring-offset-neutral-950\/80 {
  --tw-ring-offset-color: rgba(10, 10, 10, 0.8);
}
.ring-offset-neutral-950\/85 {
  --tw-ring-offset-color: rgba(10, 10, 10, 0.85);
}
.ring-offset-neutral-950\/90 {
  --tw-ring-offset-color: rgba(10, 10, 10, 0.9);
}
.ring-offset-neutral-950\/95 {
  --tw-ring-offset-color: rgba(10, 10, 10, 0.95);
}
.ring-offset-neutral-content {
  --tw-ring-offset-color: var(--fallback-nc,oklch(var(--nc)/1));
}
.ring-offset-neutral-content\/0 {
  --tw-ring-offset-color: var(--fallback-nc,oklch(var(--nc)/0));
}
.ring-offset-neutral-content\/10 {
  --tw-ring-offset-color: var(--fallback-nc,oklch(var(--nc)/0.1));
}
.ring-offset-neutral-content\/100 {
  --tw-ring-offset-color: var(--fallback-nc,oklch(var(--nc)/1));
}
.ring-offset-neutral-content\/15 {
  --tw-ring-offset-color: var(--fallback-nc,oklch(var(--nc)/0.15));
}
.ring-offset-neutral-content\/20 {
  --tw-ring-offset-color: var(--fallback-nc,oklch(var(--nc)/0.2));
}
.ring-offset-neutral-content\/25 {
  --tw-ring-offset-color: var(--fallback-nc,oklch(var(--nc)/0.25));
}
.ring-offset-neutral-content\/30 {
  --tw-ring-offset-color: var(--fallback-nc,oklch(var(--nc)/0.3));
}
.ring-offset-neutral-content\/35 {
  --tw-ring-offset-color: var(--fallback-nc,oklch(var(--nc)/0.35));
}
.ring-offset-neutral-content\/40 {
  --tw-ring-offset-color: var(--fallback-nc,oklch(var(--nc)/0.4));
}
.ring-offset-neutral-content\/45 {
  --tw-ring-offset-color: var(--fallback-nc,oklch(var(--nc)/0.45));
}
.ring-offset-neutral-content\/5 {
  --tw-ring-offset-color: var(--fallback-nc,oklch(var(--nc)/0.05));
}
.ring-offset-neutral-content\/50 {
  --tw-ring-offset-color: var(--fallback-nc,oklch(var(--nc)/0.5));
}
.ring-offset-neutral-content\/55 {
  --tw-ring-offset-color: var(--fallback-nc,oklch(var(--nc)/0.55));
}
.ring-offset-neutral-content\/60 {
  --tw-ring-offset-color: var(--fallback-nc,oklch(var(--nc)/0.6));
}
.ring-offset-neutral-content\/65 {
  --tw-ring-offset-color: var(--fallback-nc,oklch(var(--nc)/0.65));
}
.ring-offset-neutral-content\/70 {
  --tw-ring-offset-color: var(--fallback-nc,oklch(var(--nc)/0.7));
}
.ring-offset-neutral-content\/75 {
  --tw-ring-offset-color: var(--fallback-nc,oklch(var(--nc)/0.75));
}
.ring-offset-neutral-content\/80 {
  --tw-ring-offset-color: var(--fallback-nc,oklch(var(--nc)/0.8));
}
.ring-offset-neutral-content\/85 {
  --tw-ring-offset-color: var(--fallback-nc,oklch(var(--nc)/0.85));
}
.ring-offset-neutral-content\/90 {
  --tw-ring-offset-color: var(--fallback-nc,oklch(var(--nc)/0.9));
}
.ring-offset-neutral-content\/95 {
  --tw-ring-offset-color: var(--fallback-nc,oklch(var(--nc)/0.95));
}
.ring-offset-neutral\/0 {
  --tw-ring-offset-color: var(--fallback-n,oklch(var(--n)/0));
}
.ring-offset-neutral\/10 {
  --tw-ring-offset-color: var(--fallback-n,oklch(var(--n)/0.1));
}
.ring-offset-neutral\/100 {
  --tw-ring-offset-color: var(--fallback-n,oklch(var(--n)/1));
}
.ring-offset-neutral\/15 {
  --tw-ring-offset-color: var(--fallback-n,oklch(var(--n)/0.15));
}
.ring-offset-neutral\/20 {
  --tw-ring-offset-color: var(--fallback-n,oklch(var(--n)/0.2));
}
.ring-offset-neutral\/25 {
  --tw-ring-offset-color: var(--fallback-n,oklch(var(--n)/0.25));
}
.ring-offset-neutral\/30 {
  --tw-ring-offset-color: var(--fallback-n,oklch(var(--n)/0.3));
}
.ring-offset-neutral\/35 {
  --tw-ring-offset-color: var(--fallback-n,oklch(var(--n)/0.35));
}
.ring-offset-neutral\/40 {
  --tw-ring-offset-color: var(--fallback-n,oklch(var(--n)/0.4));
}
.ring-offset-neutral\/45 {
  --tw-ring-offset-color: var(--fallback-n,oklch(var(--n)/0.45));
}
.ring-offset-neutral\/5 {
  --tw-ring-offset-color: var(--fallback-n,oklch(var(--n)/0.05));
}
.ring-offset-neutral\/50 {
  --tw-ring-offset-color: var(--fallback-n,oklch(var(--n)/0.5));
}
.ring-offset-neutral\/55 {
  --tw-ring-offset-color: var(--fallback-n,oklch(var(--n)/0.55));
}
.ring-offset-neutral\/60 {
  --tw-ring-offset-color: var(--fallback-n,oklch(var(--n)/0.6));
}
.ring-offset-neutral\/65 {
  --tw-ring-offset-color: var(--fallback-n,oklch(var(--n)/0.65));
}
.ring-offset-neutral\/70 {
  --tw-ring-offset-color: var(--fallback-n,oklch(var(--n)/0.7));
}
.ring-offset-neutral\/75 {
  --tw-ring-offset-color: var(--fallback-n,oklch(var(--n)/0.75));
}
.ring-offset-neutral\/80 {
  --tw-ring-offset-color: var(--fallback-n,oklch(var(--n)/0.8));
}
.ring-offset-neutral\/85 {
  --tw-ring-offset-color: var(--fallback-n,oklch(var(--n)/0.85));
}
.ring-offset-neutral\/90 {
  --tw-ring-offset-color: var(--fallback-n,oklch(var(--n)/0.9));
}
.ring-offset-neutral\/95 {
  --tw-ring-offset-color: var(--fallback-n,oklch(var(--n)/0.95));
}
.ring-offset-orange-100 {
  --tw-ring-offset-color: #ffedd5;
}
.ring-offset-orange-100\/0 {
  --tw-ring-offset-color: rgba(255, 237, 213, 0);
}
.ring-offset-orange-100\/10 {
  --tw-ring-offset-color: rgba(255, 237, 213, 0.1);
}
.ring-offset-orange-100\/100 {
  --tw-ring-offset-color: rgba(255, 237, 213, 1);
}
.ring-offset-orange-100\/15 {
  --tw-ring-offset-color: rgba(255, 237, 213, 0.15);
}
.ring-offset-orange-100\/20 {
  --tw-ring-offset-color: rgba(255, 237, 213, 0.2);
}
.ring-offset-orange-100\/25 {
  --tw-ring-offset-color: rgba(255, 237, 213, 0.25);
}
.ring-offset-orange-100\/30 {
  --tw-ring-offset-color: rgba(255, 237, 213, 0.3);
}
.ring-offset-orange-100\/35 {
  --tw-ring-offset-color: rgba(255, 237, 213, 0.35);
}
.ring-offset-orange-100\/40 {
  --tw-ring-offset-color: rgba(255, 237, 213, 0.4);
}
.ring-offset-orange-100\/45 {
  --tw-ring-offset-color: rgba(255, 237, 213, 0.45);
}
.ring-offset-orange-100\/5 {
  --tw-ring-offset-color: rgba(255, 237, 213, 0.05);
}
.ring-offset-orange-100\/50 {
  --tw-ring-offset-color: rgba(255, 237, 213, 0.5);
}
.ring-offset-orange-100\/55 {
  --tw-ring-offset-color: rgba(255, 237, 213, 0.55);
}
.ring-offset-orange-100\/60 {
  --tw-ring-offset-color: rgba(255, 237, 213, 0.6);
}
.ring-offset-orange-100\/65 {
  --tw-ring-offset-color: rgba(255, 237, 213, 0.65);
}
.ring-offset-orange-100\/70 {
  --tw-ring-offset-color: rgba(255, 237, 213, 0.7);
}
.ring-offset-orange-100\/75 {
  --tw-ring-offset-color: rgba(255, 237, 213, 0.75);
}
.ring-offset-orange-100\/80 {
  --tw-ring-offset-color: rgba(255, 237, 213, 0.8);
}
.ring-offset-orange-100\/85 {
  --tw-ring-offset-color: rgba(255, 237, 213, 0.85);
}
.ring-offset-orange-100\/90 {
  --tw-ring-offset-color: rgba(255, 237, 213, 0.9);
}
.ring-offset-orange-100\/95 {
  --tw-ring-offset-color: rgba(255, 237, 213, 0.95);
}
.ring-offset-orange-200 {
  --tw-ring-offset-color: #fed7aa;
}
.ring-offset-orange-200\/0 {
  --tw-ring-offset-color: rgba(254, 215, 170, 0);
}
.ring-offset-orange-200\/10 {
  --tw-ring-offset-color: rgba(254, 215, 170, 0.1);
}
.ring-offset-orange-200\/100 {
  --tw-ring-offset-color: rgba(254, 215, 170, 1);
}
.ring-offset-orange-200\/15 {
  --tw-ring-offset-color: rgba(254, 215, 170, 0.15);
}
.ring-offset-orange-200\/20 {
  --tw-ring-offset-color: rgba(254, 215, 170, 0.2);
}
.ring-offset-orange-200\/25 {
  --tw-ring-offset-color: rgba(254, 215, 170, 0.25);
}
.ring-offset-orange-200\/30 {
  --tw-ring-offset-color: rgba(254, 215, 170, 0.3);
}
.ring-offset-orange-200\/35 {
  --tw-ring-offset-color: rgba(254, 215, 170, 0.35);
}
.ring-offset-orange-200\/40 {
  --tw-ring-offset-color: rgba(254, 215, 170, 0.4);
}
.ring-offset-orange-200\/45 {
  --tw-ring-offset-color: rgba(254, 215, 170, 0.45);
}
.ring-offset-orange-200\/5 {
  --tw-ring-offset-color: rgba(254, 215, 170, 0.05);
}
.ring-offset-orange-200\/50 {
  --tw-ring-offset-color: rgba(254, 215, 170, 0.5);
}
.ring-offset-orange-200\/55 {
  --tw-ring-offset-color: rgba(254, 215, 170, 0.55);
}
.ring-offset-orange-200\/60 {
  --tw-ring-offset-color: rgba(254, 215, 170, 0.6);
}
.ring-offset-orange-200\/65 {
  --tw-ring-offset-color: rgba(254, 215, 170, 0.65);
}
.ring-offset-orange-200\/70 {
  --tw-ring-offset-color: rgba(254, 215, 170, 0.7);
}
.ring-offset-orange-200\/75 {
  --tw-ring-offset-color: rgba(254, 215, 170, 0.75);
}
.ring-offset-orange-200\/80 {
  --tw-ring-offset-color: rgba(254, 215, 170, 0.8);
}
.ring-offset-orange-200\/85 {
  --tw-ring-offset-color: rgba(254, 215, 170, 0.85);
}
.ring-offset-orange-200\/90 {
  --tw-ring-offset-color: rgba(254, 215, 170, 0.9);
}
.ring-offset-orange-200\/95 {
  --tw-ring-offset-color: rgba(254, 215, 170, 0.95);
}
.ring-offset-orange-300 {
  --tw-ring-offset-color: #fdba74;
}
.ring-offset-orange-300\/0 {
  --tw-ring-offset-color: rgba(253, 186, 116, 0);
}
.ring-offset-orange-300\/10 {
  --tw-ring-offset-color: rgba(253, 186, 116, 0.1);
}
.ring-offset-orange-300\/100 {
  --tw-ring-offset-color: rgba(253, 186, 116, 1);
}
.ring-offset-orange-300\/15 {
  --tw-ring-offset-color: rgba(253, 186, 116, 0.15);
}
.ring-offset-orange-300\/20 {
  --tw-ring-offset-color: rgba(253, 186, 116, 0.2);
}
.ring-offset-orange-300\/25 {
  --tw-ring-offset-color: rgba(253, 186, 116, 0.25);
}
.ring-offset-orange-300\/30 {
  --tw-ring-offset-color: rgba(253, 186, 116, 0.3);
}
.ring-offset-orange-300\/35 {
  --tw-ring-offset-color: rgba(253, 186, 116, 0.35);
}
.ring-offset-orange-300\/40 {
  --tw-ring-offset-color: rgba(253, 186, 116, 0.4);
}
.ring-offset-orange-300\/45 {
  --tw-ring-offset-color: rgba(253, 186, 116, 0.45);
}
.ring-offset-orange-300\/5 {
  --tw-ring-offset-color: rgba(253, 186, 116, 0.05);
}
.ring-offset-orange-300\/50 {
  --tw-ring-offset-color: rgba(253, 186, 116, 0.5);
}
.ring-offset-orange-300\/55 {
  --tw-ring-offset-color: rgba(253, 186, 116, 0.55);
}
.ring-offset-orange-300\/60 {
  --tw-ring-offset-color: rgba(253, 186, 116, 0.6);
}
.ring-offset-orange-300\/65 {
  --tw-ring-offset-color: rgba(253, 186, 116, 0.65);
}
.ring-offset-orange-300\/70 {
  --tw-ring-offset-color: rgba(253, 186, 116, 0.7);
}
.ring-offset-orange-300\/75 {
  --tw-ring-offset-color: rgba(253, 186, 116, 0.75);
}
.ring-offset-orange-300\/80 {
  --tw-ring-offset-color: rgba(253, 186, 116, 0.8);
}
.ring-offset-orange-300\/85 {
  --tw-ring-offset-color: rgba(253, 186, 116, 0.85);
}
.ring-offset-orange-300\/90 {
  --tw-ring-offset-color: rgba(253, 186, 116, 0.9);
}
.ring-offset-orange-300\/95 {
  --tw-ring-offset-color: rgba(253, 186, 116, 0.95);
}
.ring-offset-orange-400 {
  --tw-ring-offset-color: #fb923c;
}
.ring-offset-orange-400\/0 {
  --tw-ring-offset-color: rgba(251, 146, 60, 0);
}
.ring-offset-orange-400\/10 {
  --tw-ring-offset-color: rgba(251, 146, 60, 0.1);
}
.ring-offset-orange-400\/100 {
  --tw-ring-offset-color: rgba(251, 146, 60, 1);
}
.ring-offset-orange-400\/15 {
  --tw-ring-offset-color: rgba(251, 146, 60, 0.15);
}
.ring-offset-orange-400\/20 {
  --tw-ring-offset-color: rgba(251, 146, 60, 0.2);
}
.ring-offset-orange-400\/25 {
  --tw-ring-offset-color: rgba(251, 146, 60, 0.25);
}
.ring-offset-orange-400\/30 {
  --tw-ring-offset-color: rgba(251, 146, 60, 0.3);
}
.ring-offset-orange-400\/35 {
  --tw-ring-offset-color: rgba(251, 146, 60, 0.35);
}
.ring-offset-orange-400\/40 {
  --tw-ring-offset-color: rgba(251, 146, 60, 0.4);
}
.ring-offset-orange-400\/45 {
  --tw-ring-offset-color: rgba(251, 146, 60, 0.45);
}
.ring-offset-orange-400\/5 {
  --tw-ring-offset-color: rgba(251, 146, 60, 0.05);
}
.ring-offset-orange-400\/50 {
  --tw-ring-offset-color: rgba(251, 146, 60, 0.5);
}
.ring-offset-orange-400\/55 {
  --tw-ring-offset-color: rgba(251, 146, 60, 0.55);
}
.ring-offset-orange-400\/60 {
  --tw-ring-offset-color: rgba(251, 146, 60, 0.6);
}
.ring-offset-orange-400\/65 {
  --tw-ring-offset-color: rgba(251, 146, 60, 0.65);
}
.ring-offset-orange-400\/70 {
  --tw-ring-offset-color: rgba(251, 146, 60, 0.7);
}
.ring-offset-orange-400\/75 {
  --tw-ring-offset-color: rgba(251, 146, 60, 0.75);
}
.ring-offset-orange-400\/80 {
  --tw-ring-offset-color: rgba(251, 146, 60, 0.8);
}
.ring-offset-orange-400\/85 {
  --tw-ring-offset-color: rgba(251, 146, 60, 0.85);
}
.ring-offset-orange-400\/90 {
  --tw-ring-offset-color: rgba(251, 146, 60, 0.9);
}
.ring-offset-orange-400\/95 {
  --tw-ring-offset-color: rgba(251, 146, 60, 0.95);
}
.ring-offset-orange-50 {
  --tw-ring-offset-color: #fff7ed;
}
.ring-offset-orange-50\/0 {
  --tw-ring-offset-color: rgba(255, 247, 237, 0);
}
.ring-offset-orange-50\/10 {
  --tw-ring-offset-color: rgba(255, 247, 237, 0.1);
}
.ring-offset-orange-50\/100 {
  --tw-ring-offset-color: rgba(255, 247, 237, 1);
}
.ring-offset-orange-50\/15 {
  --tw-ring-offset-color: rgba(255, 247, 237, 0.15);
}
.ring-offset-orange-50\/20 {
  --tw-ring-offset-color: rgba(255, 247, 237, 0.2);
}
.ring-offset-orange-50\/25 {
  --tw-ring-offset-color: rgba(255, 247, 237, 0.25);
}
.ring-offset-orange-50\/30 {
  --tw-ring-offset-color: rgba(255, 247, 237, 0.3);
}
.ring-offset-orange-50\/35 {
  --tw-ring-offset-color: rgba(255, 247, 237, 0.35);
}
.ring-offset-orange-50\/40 {
  --tw-ring-offset-color: rgba(255, 247, 237, 0.4);
}
.ring-offset-orange-50\/45 {
  --tw-ring-offset-color: rgba(255, 247, 237, 0.45);
}
.ring-offset-orange-50\/5 {
  --tw-ring-offset-color: rgba(255, 247, 237, 0.05);
}
.ring-offset-orange-50\/50 {
  --tw-ring-offset-color: rgba(255, 247, 237, 0.5);
}
.ring-offset-orange-50\/55 {
  --tw-ring-offset-color: rgba(255, 247, 237, 0.55);
}
.ring-offset-orange-50\/60 {
  --tw-ring-offset-color: rgba(255, 247, 237, 0.6);
}
.ring-offset-orange-50\/65 {
  --tw-ring-offset-color: rgba(255, 247, 237, 0.65);
}
.ring-offset-orange-50\/70 {
  --tw-ring-offset-color: rgba(255, 247, 237, 0.7);
}
.ring-offset-orange-50\/75 {
  --tw-ring-offset-color: rgba(255, 247, 237, 0.75);
}
.ring-offset-orange-50\/80 {
  --tw-ring-offset-color: rgba(255, 247, 237, 0.8);
}
.ring-offset-orange-50\/85 {
  --tw-ring-offset-color: rgba(255, 247, 237, 0.85);
}
.ring-offset-orange-50\/90 {
  --tw-ring-offset-color: rgba(255, 247, 237, 0.9);
}
.ring-offset-orange-50\/95 {
  --tw-ring-offset-color: rgba(255, 247, 237, 0.95);
}
.ring-offset-orange-500 {
  --tw-ring-offset-color: #f97316;
}
.ring-offset-orange-500\/0 {
  --tw-ring-offset-color: rgba(249, 115, 22, 0);
}
.ring-offset-orange-500\/10 {
  --tw-ring-offset-color: rgba(249, 115, 22, 0.1);
}
.ring-offset-orange-500\/100 {
  --tw-ring-offset-color: rgba(249, 115, 22, 1);
}
.ring-offset-orange-500\/15 {
  --tw-ring-offset-color: rgba(249, 115, 22, 0.15);
}
.ring-offset-orange-500\/20 {
  --tw-ring-offset-color: rgba(249, 115, 22, 0.2);
}
.ring-offset-orange-500\/25 {
  --tw-ring-offset-color: rgba(249, 115, 22, 0.25);
}
.ring-offset-orange-500\/30 {
  --tw-ring-offset-color: rgba(249, 115, 22, 0.3);
}
.ring-offset-orange-500\/35 {
  --tw-ring-offset-color: rgba(249, 115, 22, 0.35);
}
.ring-offset-orange-500\/40 {
  --tw-ring-offset-color: rgba(249, 115, 22, 0.4);
}
.ring-offset-orange-500\/45 {
  --tw-ring-offset-color: rgba(249, 115, 22, 0.45);
}
.ring-offset-orange-500\/5 {
  --tw-ring-offset-color: rgba(249, 115, 22, 0.05);
}
.ring-offset-orange-500\/50 {
  --tw-ring-offset-color: rgba(249, 115, 22, 0.5);
}
.ring-offset-orange-500\/55 {
  --tw-ring-offset-color: rgba(249, 115, 22, 0.55);
}
.ring-offset-orange-500\/60 {
  --tw-ring-offset-color: rgba(249, 115, 22, 0.6);
}
.ring-offset-orange-500\/65 {
  --tw-ring-offset-color: rgba(249, 115, 22, 0.65);
}
.ring-offset-orange-500\/70 {
  --tw-ring-offset-color: rgba(249, 115, 22, 0.7);
}
.ring-offset-orange-500\/75 {
  --tw-ring-offset-color: rgba(249, 115, 22, 0.75);
}
.ring-offset-orange-500\/80 {
  --tw-ring-offset-color: rgba(249, 115, 22, 0.8);
}
.ring-offset-orange-500\/85 {
  --tw-ring-offset-color: rgba(249, 115, 22, 0.85);
}
.ring-offset-orange-500\/90 {
  --tw-ring-offset-color: rgba(249, 115, 22, 0.9);
}
.ring-offset-orange-500\/95 {
  --tw-ring-offset-color: rgba(249, 115, 22, 0.95);
}
.ring-offset-orange-600 {
  --tw-ring-offset-color: #ea580c;
}
.ring-offset-orange-600\/0 {
  --tw-ring-offset-color: rgba(234, 88, 12, 0);
}
.ring-offset-orange-600\/10 {
  --tw-ring-offset-color: rgba(234, 88, 12, 0.1);
}
.ring-offset-orange-600\/100 {
  --tw-ring-offset-color: rgba(234, 88, 12, 1);
}
.ring-offset-orange-600\/15 {
  --tw-ring-offset-color: rgba(234, 88, 12, 0.15);
}
.ring-offset-orange-600\/20 {
  --tw-ring-offset-color: rgba(234, 88, 12, 0.2);
}
.ring-offset-orange-600\/25 {
  --tw-ring-offset-color: rgba(234, 88, 12, 0.25);
}
.ring-offset-orange-600\/30 {
  --tw-ring-offset-color: rgba(234, 88, 12, 0.3);
}
.ring-offset-orange-600\/35 {
  --tw-ring-offset-color: rgba(234, 88, 12, 0.35);
}
.ring-offset-orange-600\/40 {
  --tw-ring-offset-color: rgba(234, 88, 12, 0.4);
}
.ring-offset-orange-600\/45 {
  --tw-ring-offset-color: rgba(234, 88, 12, 0.45);
}
.ring-offset-orange-600\/5 {
  --tw-ring-offset-color: rgba(234, 88, 12, 0.05);
}
.ring-offset-orange-600\/50 {
  --tw-ring-offset-color: rgba(234, 88, 12, 0.5);
}
.ring-offset-orange-600\/55 {
  --tw-ring-offset-color: rgba(234, 88, 12, 0.55);
}
.ring-offset-orange-600\/60 {
  --tw-ring-offset-color: rgba(234, 88, 12, 0.6);
}
.ring-offset-orange-600\/65 {
  --tw-ring-offset-color: rgba(234, 88, 12, 0.65);
}
.ring-offset-orange-600\/70 {
  --tw-ring-offset-color: rgba(234, 88, 12, 0.7);
}
.ring-offset-orange-600\/75 {
  --tw-ring-offset-color: rgba(234, 88, 12, 0.75);
}
.ring-offset-orange-600\/80 {
  --tw-ring-offset-color: rgba(234, 88, 12, 0.8);
}
.ring-offset-orange-600\/85 {
  --tw-ring-offset-color: rgba(234, 88, 12, 0.85);
}
.ring-offset-orange-600\/90 {
  --tw-ring-offset-color: rgba(234, 88, 12, 0.9);
}
.ring-offset-orange-600\/95 {
  --tw-ring-offset-color: rgba(234, 88, 12, 0.95);
}
.ring-offset-orange-700 {
  --tw-ring-offset-color: #c2410c;
}
.ring-offset-orange-700\/0 {
  --tw-ring-offset-color: rgba(194, 65, 12, 0);
}
.ring-offset-orange-700\/10 {
  --tw-ring-offset-color: rgba(194, 65, 12, 0.1);
}
.ring-offset-orange-700\/100 {
  --tw-ring-offset-color: rgba(194, 65, 12, 1);
}
.ring-offset-orange-700\/15 {
  --tw-ring-offset-color: rgba(194, 65, 12, 0.15);
}
.ring-offset-orange-700\/20 {
  --tw-ring-offset-color: rgba(194, 65, 12, 0.2);
}
.ring-offset-orange-700\/25 {
  --tw-ring-offset-color: rgba(194, 65, 12, 0.25);
}
.ring-offset-orange-700\/30 {
  --tw-ring-offset-color: rgba(194, 65, 12, 0.3);
}
.ring-offset-orange-700\/35 {
  --tw-ring-offset-color: rgba(194, 65, 12, 0.35);
}
.ring-offset-orange-700\/40 {
  --tw-ring-offset-color: rgba(194, 65, 12, 0.4);
}
.ring-offset-orange-700\/45 {
  --tw-ring-offset-color: rgba(194, 65, 12, 0.45);
}
.ring-offset-orange-700\/5 {
  --tw-ring-offset-color: rgba(194, 65, 12, 0.05);
}
.ring-offset-orange-700\/50 {
  --tw-ring-offset-color: rgba(194, 65, 12, 0.5);
}
.ring-offset-orange-700\/55 {
  --tw-ring-offset-color: rgba(194, 65, 12, 0.55);
}
.ring-offset-orange-700\/60 {
  --tw-ring-offset-color: rgba(194, 65, 12, 0.6);
}
.ring-offset-orange-700\/65 {
  --tw-ring-offset-color: rgba(194, 65, 12, 0.65);
}
.ring-offset-orange-700\/70 {
  --tw-ring-offset-color: rgba(194, 65, 12, 0.7);
}
.ring-offset-orange-700\/75 {
  --tw-ring-offset-color: rgba(194, 65, 12, 0.75);
}
.ring-offset-orange-700\/80 {
  --tw-ring-offset-color: rgba(194, 65, 12, 0.8);
}
.ring-offset-orange-700\/85 {
  --tw-ring-offset-color: rgba(194, 65, 12, 0.85);
}
.ring-offset-orange-700\/90 {
  --tw-ring-offset-color: rgba(194, 65, 12, 0.9);
}
.ring-offset-orange-700\/95 {
  --tw-ring-offset-color: rgba(194, 65, 12, 0.95);
}
.ring-offset-orange-800 {
  --tw-ring-offset-color: #9a3412;
}
.ring-offset-orange-800\/0 {
  --tw-ring-offset-color: rgba(154, 52, 18, 0);
}
.ring-offset-orange-800\/10 {
  --tw-ring-offset-color: rgba(154, 52, 18, 0.1);
}
.ring-offset-orange-800\/100 {
  --tw-ring-offset-color: rgba(154, 52, 18, 1);
}
.ring-offset-orange-800\/15 {
  --tw-ring-offset-color: rgba(154, 52, 18, 0.15);
}
.ring-offset-orange-800\/20 {
  --tw-ring-offset-color: rgba(154, 52, 18, 0.2);
}
.ring-offset-orange-800\/25 {
  --tw-ring-offset-color: rgba(154, 52, 18, 0.25);
}
.ring-offset-orange-800\/30 {
  --tw-ring-offset-color: rgba(154, 52, 18, 0.3);
}
.ring-offset-orange-800\/35 {
  --tw-ring-offset-color: rgba(154, 52, 18, 0.35);
}
.ring-offset-orange-800\/40 {
  --tw-ring-offset-color: rgba(154, 52, 18, 0.4);
}
.ring-offset-orange-800\/45 {
  --tw-ring-offset-color: rgba(154, 52, 18, 0.45);
}
.ring-offset-orange-800\/5 {
  --tw-ring-offset-color: rgba(154, 52, 18, 0.05);
}
.ring-offset-orange-800\/50 {
  --tw-ring-offset-color: rgba(154, 52, 18, 0.5);
}
.ring-offset-orange-800\/55 {
  --tw-ring-offset-color: rgba(154, 52, 18, 0.55);
}
.ring-offset-orange-800\/60 {
  --tw-ring-offset-color: rgba(154, 52, 18, 0.6);
}
.ring-offset-orange-800\/65 {
  --tw-ring-offset-color: rgba(154, 52, 18, 0.65);
}
.ring-offset-orange-800\/70 {
  --tw-ring-offset-color: rgba(154, 52, 18, 0.7);
}
.ring-offset-orange-800\/75 {
  --tw-ring-offset-color: rgba(154, 52, 18, 0.75);
}
.ring-offset-orange-800\/80 {
  --tw-ring-offset-color: rgba(154, 52, 18, 0.8);
}
.ring-offset-orange-800\/85 {
  --tw-ring-offset-color: rgba(154, 52, 18, 0.85);
}
.ring-offset-orange-800\/90 {
  --tw-ring-offset-color: rgba(154, 52, 18, 0.9);
}
.ring-offset-orange-800\/95 {
  --tw-ring-offset-color: rgba(154, 52, 18, 0.95);
}
.ring-offset-orange-900 {
  --tw-ring-offset-color: #7c2d12;
}
.ring-offset-orange-900\/0 {
  --tw-ring-offset-color: rgba(124, 45, 18, 0);
}
.ring-offset-orange-900\/10 {
  --tw-ring-offset-color: rgba(124, 45, 18, 0.1);
}
.ring-offset-orange-900\/100 {
  --tw-ring-offset-color: rgba(124, 45, 18, 1);
}
.ring-offset-orange-900\/15 {
  --tw-ring-offset-color: rgba(124, 45, 18, 0.15);
}
.ring-offset-orange-900\/20 {
  --tw-ring-offset-color: rgba(124, 45, 18, 0.2);
}
.ring-offset-orange-900\/25 {
  --tw-ring-offset-color: rgba(124, 45, 18, 0.25);
}
.ring-offset-orange-900\/30 {
  --tw-ring-offset-color: rgba(124, 45, 18, 0.3);
}
.ring-offset-orange-900\/35 {
  --tw-ring-offset-color: rgba(124, 45, 18, 0.35);
}
.ring-offset-orange-900\/40 {
  --tw-ring-offset-color: rgba(124, 45, 18, 0.4);
}
.ring-offset-orange-900\/45 {
  --tw-ring-offset-color: rgba(124, 45, 18, 0.45);
}
.ring-offset-orange-900\/5 {
  --tw-ring-offset-color: rgba(124, 45, 18, 0.05);
}
.ring-offset-orange-900\/50 {
  --tw-ring-offset-color: rgba(124, 45, 18, 0.5);
}
.ring-offset-orange-900\/55 {
  --tw-ring-offset-color: rgba(124, 45, 18, 0.55);
}
.ring-offset-orange-900\/60 {
  --tw-ring-offset-color: rgba(124, 45, 18, 0.6);
}
.ring-offset-orange-900\/65 {
  --tw-ring-offset-color: rgba(124, 45, 18, 0.65);
}
.ring-offset-orange-900\/70 {
  --tw-ring-offset-color: rgba(124, 45, 18, 0.7);
}
.ring-offset-orange-900\/75 {
  --tw-ring-offset-color: rgba(124, 45, 18, 0.75);
}
.ring-offset-orange-900\/80 {
  --tw-ring-offset-color: rgba(124, 45, 18, 0.8);
}
.ring-offset-orange-900\/85 {
  --tw-ring-offset-color: rgba(124, 45, 18, 0.85);
}
.ring-offset-orange-900\/90 {
  --tw-ring-offset-color: rgba(124, 45, 18, 0.9);
}
.ring-offset-orange-900\/95 {
  --tw-ring-offset-color: rgba(124, 45, 18, 0.95);
}
.ring-offset-orange-950 {
  --tw-ring-offset-color: #431407;
}
.ring-offset-orange-950\/0 {
  --tw-ring-offset-color: rgba(67, 20, 7, 0);
}
.ring-offset-orange-950\/10 {
  --tw-ring-offset-color: rgba(67, 20, 7, 0.1);
}
.ring-offset-orange-950\/100 {
  --tw-ring-offset-color: rgba(67, 20, 7, 1);
}
.ring-offset-orange-950\/15 {
  --tw-ring-offset-color: rgba(67, 20, 7, 0.15);
}
.ring-offset-orange-950\/20 {
  --tw-ring-offset-color: rgba(67, 20, 7, 0.2);
}
.ring-offset-orange-950\/25 {
  --tw-ring-offset-color: rgba(67, 20, 7, 0.25);
}
.ring-offset-orange-950\/30 {
  --tw-ring-offset-color: rgba(67, 20, 7, 0.3);
}
.ring-offset-orange-950\/35 {
  --tw-ring-offset-color: rgba(67, 20, 7, 0.35);
}
.ring-offset-orange-950\/40 {
  --tw-ring-offset-color: rgba(67, 20, 7, 0.4);
}
.ring-offset-orange-950\/45 {
  --tw-ring-offset-color: rgba(67, 20, 7, 0.45);
}
.ring-offset-orange-950\/5 {
  --tw-ring-offset-color: rgba(67, 20, 7, 0.05);
}
.ring-offset-orange-950\/50 {
  --tw-ring-offset-color: rgba(67, 20, 7, 0.5);
}
.ring-offset-orange-950\/55 {
  --tw-ring-offset-color: rgba(67, 20, 7, 0.55);
}
.ring-offset-orange-950\/60 {
  --tw-ring-offset-color: rgba(67, 20, 7, 0.6);
}
.ring-offset-orange-950\/65 {
  --tw-ring-offset-color: rgba(67, 20, 7, 0.65);
}
.ring-offset-orange-950\/70 {
  --tw-ring-offset-color: rgba(67, 20, 7, 0.7);
}
.ring-offset-orange-950\/75 {
  --tw-ring-offset-color: rgba(67, 20, 7, 0.75);
}
.ring-offset-orange-950\/80 {
  --tw-ring-offset-color: rgba(67, 20, 7, 0.8);
}
.ring-offset-orange-950\/85 {
  --tw-ring-offset-color: rgba(67, 20, 7, 0.85);
}
.ring-offset-orange-950\/90 {
  --tw-ring-offset-color: rgba(67, 20, 7, 0.9);
}
.ring-offset-orange-950\/95 {
  --tw-ring-offset-color: rgba(67, 20, 7, 0.95);
}
.ring-offset-pink-100 {
  --tw-ring-offset-color: #fce7f3;
}
.ring-offset-pink-100\/0 {
  --tw-ring-offset-color: rgba(252, 231, 243, 0);
}
.ring-offset-pink-100\/10 {
  --tw-ring-offset-color: rgba(252, 231, 243, 0.1);
}
.ring-offset-pink-100\/100 {
  --tw-ring-offset-color: rgba(252, 231, 243, 1);
}
.ring-offset-pink-100\/15 {
  --tw-ring-offset-color: rgba(252, 231, 243, 0.15);
}
.ring-offset-pink-100\/20 {
  --tw-ring-offset-color: rgba(252, 231, 243, 0.2);
}
.ring-offset-pink-100\/25 {
  --tw-ring-offset-color: rgba(252, 231, 243, 0.25);
}
.ring-offset-pink-100\/30 {
  --tw-ring-offset-color: rgba(252, 231, 243, 0.3);
}
.ring-offset-pink-100\/35 {
  --tw-ring-offset-color: rgba(252, 231, 243, 0.35);
}
.ring-offset-pink-100\/40 {
  --tw-ring-offset-color: rgba(252, 231, 243, 0.4);
}
.ring-offset-pink-100\/45 {
  --tw-ring-offset-color: rgba(252, 231, 243, 0.45);
}
.ring-offset-pink-100\/5 {
  --tw-ring-offset-color: rgba(252, 231, 243, 0.05);
}
.ring-offset-pink-100\/50 {
  --tw-ring-offset-color: rgba(252, 231, 243, 0.5);
}
.ring-offset-pink-100\/55 {
  --tw-ring-offset-color: rgba(252, 231, 243, 0.55);
}
.ring-offset-pink-100\/60 {
  --tw-ring-offset-color: rgba(252, 231, 243, 0.6);
}
.ring-offset-pink-100\/65 {
  --tw-ring-offset-color: rgba(252, 231, 243, 0.65);
}
.ring-offset-pink-100\/70 {
  --tw-ring-offset-color: rgba(252, 231, 243, 0.7);
}
.ring-offset-pink-100\/75 {
  --tw-ring-offset-color: rgba(252, 231, 243, 0.75);
}
.ring-offset-pink-100\/80 {
  --tw-ring-offset-color: rgba(252, 231, 243, 0.8);
}
.ring-offset-pink-100\/85 {
  --tw-ring-offset-color: rgba(252, 231, 243, 0.85);
}
.ring-offset-pink-100\/90 {
  --tw-ring-offset-color: rgba(252, 231, 243, 0.9);
}
.ring-offset-pink-100\/95 {
  --tw-ring-offset-color: rgba(252, 231, 243, 0.95);
}
.ring-offset-pink-200 {
  --tw-ring-offset-color: #fbcfe8;
}
.ring-offset-pink-200\/0 {
  --tw-ring-offset-color: rgba(251, 207, 232, 0);
}
.ring-offset-pink-200\/10 {
  --tw-ring-offset-color: rgba(251, 207, 232, 0.1);
}
.ring-offset-pink-200\/100 {
  --tw-ring-offset-color: rgba(251, 207, 232, 1);
}
.ring-offset-pink-200\/15 {
  --tw-ring-offset-color: rgba(251, 207, 232, 0.15);
}
.ring-offset-pink-200\/20 {
  --tw-ring-offset-color: rgba(251, 207, 232, 0.2);
}
.ring-offset-pink-200\/25 {
  --tw-ring-offset-color: rgba(251, 207, 232, 0.25);
}
.ring-offset-pink-200\/30 {
  --tw-ring-offset-color: rgba(251, 207, 232, 0.3);
}
.ring-offset-pink-200\/35 {
  --tw-ring-offset-color: rgba(251, 207, 232, 0.35);
}
.ring-offset-pink-200\/40 {
  --tw-ring-offset-color: rgba(251, 207, 232, 0.4);
}
.ring-offset-pink-200\/45 {
  --tw-ring-offset-color: rgba(251, 207, 232, 0.45);
}
.ring-offset-pink-200\/5 {
  --tw-ring-offset-color: rgba(251, 207, 232, 0.05);
}
.ring-offset-pink-200\/50 {
  --tw-ring-offset-color: rgba(251, 207, 232, 0.5);
}
.ring-offset-pink-200\/55 {
  --tw-ring-offset-color: rgba(251, 207, 232, 0.55);
}
.ring-offset-pink-200\/60 {
  --tw-ring-offset-color: rgba(251, 207, 232, 0.6);
}
.ring-offset-pink-200\/65 {
  --tw-ring-offset-color: rgba(251, 207, 232, 0.65);
}
.ring-offset-pink-200\/70 {
  --tw-ring-offset-color: rgba(251, 207, 232, 0.7);
}
.ring-offset-pink-200\/75 {
  --tw-ring-offset-color: rgba(251, 207, 232, 0.75);
}
.ring-offset-pink-200\/80 {
  --tw-ring-offset-color: rgba(251, 207, 232, 0.8);
}
.ring-offset-pink-200\/85 {
  --tw-ring-offset-color: rgba(251, 207, 232, 0.85);
}
.ring-offset-pink-200\/90 {
  --tw-ring-offset-color: rgba(251, 207, 232, 0.9);
}
.ring-offset-pink-200\/95 {
  --tw-ring-offset-color: rgba(251, 207, 232, 0.95);
}
.ring-offset-pink-300 {
  --tw-ring-offset-color: #f9a8d4;
}
.ring-offset-pink-300\/0 {
  --tw-ring-offset-color: rgba(249, 168, 212, 0);
}
.ring-offset-pink-300\/10 {
  --tw-ring-offset-color: rgba(249, 168, 212, 0.1);
}
.ring-offset-pink-300\/100 {
  --tw-ring-offset-color: rgba(249, 168, 212, 1);
}
.ring-offset-pink-300\/15 {
  --tw-ring-offset-color: rgba(249, 168, 212, 0.15);
}
.ring-offset-pink-300\/20 {
  --tw-ring-offset-color: rgba(249, 168, 212, 0.2);
}
.ring-offset-pink-300\/25 {
  --tw-ring-offset-color: rgba(249, 168, 212, 0.25);
}
.ring-offset-pink-300\/30 {
  --tw-ring-offset-color: rgba(249, 168, 212, 0.3);
}
.ring-offset-pink-300\/35 {
  --tw-ring-offset-color: rgba(249, 168, 212, 0.35);
}
.ring-offset-pink-300\/40 {
  --tw-ring-offset-color: rgba(249, 168, 212, 0.4);
}
.ring-offset-pink-300\/45 {
  --tw-ring-offset-color: rgba(249, 168, 212, 0.45);
}
.ring-offset-pink-300\/5 {
  --tw-ring-offset-color: rgba(249, 168, 212, 0.05);
}
.ring-offset-pink-300\/50 {
  --tw-ring-offset-color: rgba(249, 168, 212, 0.5);
}
.ring-offset-pink-300\/55 {
  --tw-ring-offset-color: rgba(249, 168, 212, 0.55);
}
.ring-offset-pink-300\/60 {
  --tw-ring-offset-color: rgba(249, 168, 212, 0.6);
}
.ring-offset-pink-300\/65 {
  --tw-ring-offset-color: rgba(249, 168, 212, 0.65);
}
.ring-offset-pink-300\/70 {
  --tw-ring-offset-color: rgba(249, 168, 212, 0.7);
}
.ring-offset-pink-300\/75 {
  --tw-ring-offset-color: rgba(249, 168, 212, 0.75);
}
.ring-offset-pink-300\/80 {
  --tw-ring-offset-color: rgba(249, 168, 212, 0.8);
}
.ring-offset-pink-300\/85 {
  --tw-ring-offset-color: rgba(249, 168, 212, 0.85);
}
.ring-offset-pink-300\/90 {
  --tw-ring-offset-color: rgba(249, 168, 212, 0.9);
}
.ring-offset-pink-300\/95 {
  --tw-ring-offset-color: rgba(249, 168, 212, 0.95);
}
.ring-offset-pink-400 {
  --tw-ring-offset-color: #f472b6;
}
.ring-offset-pink-400\/0 {
  --tw-ring-offset-color: rgba(244, 114, 182, 0);
}
.ring-offset-pink-400\/10 {
  --tw-ring-offset-color: rgba(244, 114, 182, 0.1);
}
.ring-offset-pink-400\/100 {
  --tw-ring-offset-color: rgba(244, 114, 182, 1);
}
.ring-offset-pink-400\/15 {
  --tw-ring-offset-color: rgba(244, 114, 182, 0.15);
}
.ring-offset-pink-400\/20 {
  --tw-ring-offset-color: rgba(244, 114, 182, 0.2);
}
.ring-offset-pink-400\/25 {
  --tw-ring-offset-color: rgba(244, 114, 182, 0.25);
}
.ring-offset-pink-400\/30 {
  --tw-ring-offset-color: rgba(244, 114, 182, 0.3);
}
.ring-offset-pink-400\/35 {
  --tw-ring-offset-color: rgba(244, 114, 182, 0.35);
}
.ring-offset-pink-400\/40 {
  --tw-ring-offset-color: rgba(244, 114, 182, 0.4);
}
.ring-offset-pink-400\/45 {
  --tw-ring-offset-color: rgba(244, 114, 182, 0.45);
}
.ring-offset-pink-400\/5 {
  --tw-ring-offset-color: rgba(244, 114, 182, 0.05);
}
.ring-offset-pink-400\/50 {
  --tw-ring-offset-color: rgba(244, 114, 182, 0.5);
}
.ring-offset-pink-400\/55 {
  --tw-ring-offset-color: rgba(244, 114, 182, 0.55);
}
.ring-offset-pink-400\/60 {
  --tw-ring-offset-color: rgba(244, 114, 182, 0.6);
}
.ring-offset-pink-400\/65 {
  --tw-ring-offset-color: rgba(244, 114, 182, 0.65);
}
.ring-offset-pink-400\/70 {
  --tw-ring-offset-color: rgba(244, 114, 182, 0.7);
}
.ring-offset-pink-400\/75 {
  --tw-ring-offset-color: rgba(244, 114, 182, 0.75);
}
.ring-offset-pink-400\/80 {
  --tw-ring-offset-color: rgba(244, 114, 182, 0.8);
}
.ring-offset-pink-400\/85 {
  --tw-ring-offset-color: rgba(244, 114, 182, 0.85);
}
.ring-offset-pink-400\/90 {
  --tw-ring-offset-color: rgba(244, 114, 182, 0.9);
}
.ring-offset-pink-400\/95 {
  --tw-ring-offset-color: rgba(244, 114, 182, 0.95);
}
.ring-offset-pink-50 {
  --tw-ring-offset-color: #fdf2f8;
}
.ring-offset-pink-50\/0 {
  --tw-ring-offset-color: rgba(253, 242, 248, 0);
}
.ring-offset-pink-50\/10 {
  --tw-ring-offset-color: rgba(253, 242, 248, 0.1);
}
.ring-offset-pink-50\/100 {
  --tw-ring-offset-color: rgba(253, 242, 248, 1);
}
.ring-offset-pink-50\/15 {
  --tw-ring-offset-color: rgba(253, 242, 248, 0.15);
}
.ring-offset-pink-50\/20 {
  --tw-ring-offset-color: rgba(253, 242, 248, 0.2);
}
.ring-offset-pink-50\/25 {
  --tw-ring-offset-color: rgba(253, 242, 248, 0.25);
}
.ring-offset-pink-50\/30 {
  --tw-ring-offset-color: rgba(253, 242, 248, 0.3);
}
.ring-offset-pink-50\/35 {
  --tw-ring-offset-color: rgba(253, 242, 248, 0.35);
}
.ring-offset-pink-50\/40 {
  --tw-ring-offset-color: rgba(253, 242, 248, 0.4);
}
.ring-offset-pink-50\/45 {
  --tw-ring-offset-color: rgba(253, 242, 248, 0.45);
}
.ring-offset-pink-50\/5 {
  --tw-ring-offset-color: rgba(253, 242, 248, 0.05);
}
.ring-offset-pink-50\/50 {
  --tw-ring-offset-color: rgba(253, 242, 248, 0.5);
}
.ring-offset-pink-50\/55 {
  --tw-ring-offset-color: rgba(253, 242, 248, 0.55);
}
.ring-offset-pink-50\/60 {
  --tw-ring-offset-color: rgba(253, 242, 248, 0.6);
}
.ring-offset-pink-50\/65 {
  --tw-ring-offset-color: rgba(253, 242, 248, 0.65);
}
.ring-offset-pink-50\/70 {
  --tw-ring-offset-color: rgba(253, 242, 248, 0.7);
}
.ring-offset-pink-50\/75 {
  --tw-ring-offset-color: rgba(253, 242, 248, 0.75);
}
.ring-offset-pink-50\/80 {
  --tw-ring-offset-color: rgba(253, 242, 248, 0.8);
}
.ring-offset-pink-50\/85 {
  --tw-ring-offset-color: rgba(253, 242, 248, 0.85);
}
.ring-offset-pink-50\/90 {
  --tw-ring-offset-color: rgba(253, 242, 248, 0.9);
}
.ring-offset-pink-50\/95 {
  --tw-ring-offset-color: rgba(253, 242, 248, 0.95);
}
.ring-offset-pink-500 {
  --tw-ring-offset-color: #ec4899;
}
.ring-offset-pink-500\/0 {
  --tw-ring-offset-color: rgba(236, 72, 153, 0);
}
.ring-offset-pink-500\/10 {
  --tw-ring-offset-color: rgba(236, 72, 153, 0.1);
}
.ring-offset-pink-500\/100 {
  --tw-ring-offset-color: rgba(236, 72, 153, 1);
}
.ring-offset-pink-500\/15 {
  --tw-ring-offset-color: rgba(236, 72, 153, 0.15);
}
.ring-offset-pink-500\/20 {
  --tw-ring-offset-color: rgba(236, 72, 153, 0.2);
}
.ring-offset-pink-500\/25 {
  --tw-ring-offset-color: rgba(236, 72, 153, 0.25);
}
.ring-offset-pink-500\/30 {
  --tw-ring-offset-color: rgba(236, 72, 153, 0.3);
}
.ring-offset-pink-500\/35 {
  --tw-ring-offset-color: rgba(236, 72, 153, 0.35);
}
.ring-offset-pink-500\/40 {
  --tw-ring-offset-color: rgba(236, 72, 153, 0.4);
}
.ring-offset-pink-500\/45 {
  --tw-ring-offset-color: rgba(236, 72, 153, 0.45);
}
.ring-offset-pink-500\/5 {
  --tw-ring-offset-color: rgba(236, 72, 153, 0.05);
}
.ring-offset-pink-500\/50 {
  --tw-ring-offset-color: rgba(236, 72, 153, 0.5);
}
.ring-offset-pink-500\/55 {
  --tw-ring-offset-color: rgba(236, 72, 153, 0.55);
}
.ring-offset-pink-500\/60 {
  --tw-ring-offset-color: rgba(236, 72, 153, 0.6);
}
.ring-offset-pink-500\/65 {
  --tw-ring-offset-color: rgba(236, 72, 153, 0.65);
}
.ring-offset-pink-500\/70 {
  --tw-ring-offset-color: rgba(236, 72, 153, 0.7);
}
.ring-offset-pink-500\/75 {
  --tw-ring-offset-color: rgba(236, 72, 153, 0.75);
}
.ring-offset-pink-500\/80 {
  --tw-ring-offset-color: rgba(236, 72, 153, 0.8);
}
.ring-offset-pink-500\/85 {
  --tw-ring-offset-color: rgba(236, 72, 153, 0.85);
}
.ring-offset-pink-500\/90 {
  --tw-ring-offset-color: rgba(236, 72, 153, 0.9);
}
.ring-offset-pink-500\/95 {
  --tw-ring-offset-color: rgba(236, 72, 153, 0.95);
}
.ring-offset-pink-600 {
  --tw-ring-offset-color: #db2777;
}
.ring-offset-pink-600\/0 {
  --tw-ring-offset-color: rgba(219, 39, 119, 0);
}
.ring-offset-pink-600\/10 {
  --tw-ring-offset-color: rgba(219, 39, 119, 0.1);
}
.ring-offset-pink-600\/100 {
  --tw-ring-offset-color: rgba(219, 39, 119, 1);
}
.ring-offset-pink-600\/15 {
  --tw-ring-offset-color: rgba(219, 39, 119, 0.15);
}
.ring-offset-pink-600\/20 {
  --tw-ring-offset-color: rgba(219, 39, 119, 0.2);
}
.ring-offset-pink-600\/25 {
  --tw-ring-offset-color: rgba(219, 39, 119, 0.25);
}
.ring-offset-pink-600\/30 {
  --tw-ring-offset-color: rgba(219, 39, 119, 0.3);
}
.ring-offset-pink-600\/35 {
  --tw-ring-offset-color: rgba(219, 39, 119, 0.35);
}
.ring-offset-pink-600\/40 {
  --tw-ring-offset-color: rgba(219, 39, 119, 0.4);
}
.ring-offset-pink-600\/45 {
  --tw-ring-offset-color: rgba(219, 39, 119, 0.45);
}
.ring-offset-pink-600\/5 {
  --tw-ring-offset-color: rgba(219, 39, 119, 0.05);
}
.ring-offset-pink-600\/50 {
  --tw-ring-offset-color: rgba(219, 39, 119, 0.5);
}
.ring-offset-pink-600\/55 {
  --tw-ring-offset-color: rgba(219, 39, 119, 0.55);
}
.ring-offset-pink-600\/60 {
  --tw-ring-offset-color: rgba(219, 39, 119, 0.6);
}
.ring-offset-pink-600\/65 {
  --tw-ring-offset-color: rgba(219, 39, 119, 0.65);
}
.ring-offset-pink-600\/70 {
  --tw-ring-offset-color: rgba(219, 39, 119, 0.7);
}
.ring-offset-pink-600\/75 {
  --tw-ring-offset-color: rgba(219, 39, 119, 0.75);
}
.ring-offset-pink-600\/80 {
  --tw-ring-offset-color: rgba(219, 39, 119, 0.8);
}
.ring-offset-pink-600\/85 {
  --tw-ring-offset-color: rgba(219, 39, 119, 0.85);
}
.ring-offset-pink-600\/90 {
  --tw-ring-offset-color: rgba(219, 39, 119, 0.9);
}
.ring-offset-pink-600\/95 {
  --tw-ring-offset-color: rgba(219, 39, 119, 0.95);
}
.ring-offset-pink-700 {
  --tw-ring-offset-color: #be185d;
}
.ring-offset-pink-700\/0 {
  --tw-ring-offset-color: rgba(190, 24, 93, 0);
}
.ring-offset-pink-700\/10 {
  --tw-ring-offset-color: rgba(190, 24, 93, 0.1);
}
.ring-offset-pink-700\/100 {
  --tw-ring-offset-color: rgba(190, 24, 93, 1);
}
.ring-offset-pink-700\/15 {
  --tw-ring-offset-color: rgba(190, 24, 93, 0.15);
}
.ring-offset-pink-700\/20 {
  --tw-ring-offset-color: rgba(190, 24, 93, 0.2);
}
.ring-offset-pink-700\/25 {
  --tw-ring-offset-color: rgba(190, 24, 93, 0.25);
}
.ring-offset-pink-700\/30 {
  --tw-ring-offset-color: rgba(190, 24, 93, 0.3);
}
.ring-offset-pink-700\/35 {
  --tw-ring-offset-color: rgba(190, 24, 93, 0.35);
}
.ring-offset-pink-700\/40 {
  --tw-ring-offset-color: rgba(190, 24, 93, 0.4);
}
.ring-offset-pink-700\/45 {
  --tw-ring-offset-color: rgba(190, 24, 93, 0.45);
}
.ring-offset-pink-700\/5 {
  --tw-ring-offset-color: rgba(190, 24, 93, 0.05);
}
.ring-offset-pink-700\/50 {
  --tw-ring-offset-color: rgba(190, 24, 93, 0.5);
}
.ring-offset-pink-700\/55 {
  --tw-ring-offset-color: rgba(190, 24, 93, 0.55);
}
.ring-offset-pink-700\/60 {
  --tw-ring-offset-color: rgba(190, 24, 93, 0.6);
}
.ring-offset-pink-700\/65 {
  --tw-ring-offset-color: rgba(190, 24, 93, 0.65);
}
.ring-offset-pink-700\/70 {
  --tw-ring-offset-color: rgba(190, 24, 93, 0.7);
}
.ring-offset-pink-700\/75 {
  --tw-ring-offset-color: rgba(190, 24, 93, 0.75);
}
.ring-offset-pink-700\/80 {
  --tw-ring-offset-color: rgba(190, 24, 93, 0.8);
}
.ring-offset-pink-700\/85 {
  --tw-ring-offset-color: rgba(190, 24, 93, 0.85);
}
.ring-offset-pink-700\/90 {
  --tw-ring-offset-color: rgba(190, 24, 93, 0.9);
}
.ring-offset-pink-700\/95 {
  --tw-ring-offset-color: rgba(190, 24, 93, 0.95);
}
.ring-offset-pink-800 {
  --tw-ring-offset-color: #9d174d;
}
.ring-offset-pink-800\/0 {
  --tw-ring-offset-color: rgba(157, 23, 77, 0);
}
.ring-offset-pink-800\/10 {
  --tw-ring-offset-color: rgba(157, 23, 77, 0.1);
}
.ring-offset-pink-800\/100 {
  --tw-ring-offset-color: rgba(157, 23, 77, 1);
}
.ring-offset-pink-800\/15 {
  --tw-ring-offset-color: rgba(157, 23, 77, 0.15);
}
.ring-offset-pink-800\/20 {
  --tw-ring-offset-color: rgba(157, 23, 77, 0.2);
}
.ring-offset-pink-800\/25 {
  --tw-ring-offset-color: rgba(157, 23, 77, 0.25);
}
.ring-offset-pink-800\/30 {
  --tw-ring-offset-color: rgba(157, 23, 77, 0.3);
}
.ring-offset-pink-800\/35 {
  --tw-ring-offset-color: rgba(157, 23, 77, 0.35);
}
.ring-offset-pink-800\/40 {
  --tw-ring-offset-color: rgba(157, 23, 77, 0.4);
}
.ring-offset-pink-800\/45 {
  --tw-ring-offset-color: rgba(157, 23, 77, 0.45);
}
.ring-offset-pink-800\/5 {
  --tw-ring-offset-color: rgba(157, 23, 77, 0.05);
}
.ring-offset-pink-800\/50 {
  --tw-ring-offset-color: rgba(157, 23, 77, 0.5);
}
.ring-offset-pink-800\/55 {
  --tw-ring-offset-color: rgba(157, 23, 77, 0.55);
}
.ring-offset-pink-800\/60 {
  --tw-ring-offset-color: rgba(157, 23, 77, 0.6);
}
.ring-offset-pink-800\/65 {
  --tw-ring-offset-color: rgba(157, 23, 77, 0.65);
}
.ring-offset-pink-800\/70 {
  --tw-ring-offset-color: rgba(157, 23, 77, 0.7);
}
.ring-offset-pink-800\/75 {
  --tw-ring-offset-color: rgba(157, 23, 77, 0.75);
}
.ring-offset-pink-800\/80 {
  --tw-ring-offset-color: rgba(157, 23, 77, 0.8);
}
.ring-offset-pink-800\/85 {
  --tw-ring-offset-color: rgba(157, 23, 77, 0.85);
}
.ring-offset-pink-800\/90 {
  --tw-ring-offset-color: rgba(157, 23, 77, 0.9);
}
.ring-offset-pink-800\/95 {
  --tw-ring-offset-color: rgba(157, 23, 77, 0.95);
}
.ring-offset-pink-900 {
  --tw-ring-offset-color: #831843;
}
.ring-offset-pink-900\/0 {
  --tw-ring-offset-color: rgba(131, 24, 67, 0);
}
.ring-offset-pink-900\/10 {
  --tw-ring-offset-color: rgba(131, 24, 67, 0.1);
}
.ring-offset-pink-900\/100 {
  --tw-ring-offset-color: rgba(131, 24, 67, 1);
}
.ring-offset-pink-900\/15 {
  --tw-ring-offset-color: rgba(131, 24, 67, 0.15);
}
.ring-offset-pink-900\/20 {
  --tw-ring-offset-color: rgba(131, 24, 67, 0.2);
}
.ring-offset-pink-900\/25 {
  --tw-ring-offset-color: rgba(131, 24, 67, 0.25);
}
.ring-offset-pink-900\/30 {
  --tw-ring-offset-color: rgba(131, 24, 67, 0.3);
}
.ring-offset-pink-900\/35 {
  --tw-ring-offset-color: rgba(131, 24, 67, 0.35);
}
.ring-offset-pink-900\/40 {
  --tw-ring-offset-color: rgba(131, 24, 67, 0.4);
}
.ring-offset-pink-900\/45 {
  --tw-ring-offset-color: rgba(131, 24, 67, 0.45);
}
.ring-offset-pink-900\/5 {
  --tw-ring-offset-color: rgba(131, 24, 67, 0.05);
}
.ring-offset-pink-900\/50 {
  --tw-ring-offset-color: rgba(131, 24, 67, 0.5);
}
.ring-offset-pink-900\/55 {
  --tw-ring-offset-color: rgba(131, 24, 67, 0.55);
}
.ring-offset-pink-900\/60 {
  --tw-ring-offset-color: rgba(131, 24, 67, 0.6);
}
.ring-offset-pink-900\/65 {
  --tw-ring-offset-color: rgba(131, 24, 67, 0.65);
}
.ring-offset-pink-900\/70 {
  --tw-ring-offset-color: rgba(131, 24, 67, 0.7);
}
.ring-offset-pink-900\/75 {
  --tw-ring-offset-color: rgba(131, 24, 67, 0.75);
}
.ring-offset-pink-900\/80 {
  --tw-ring-offset-color: rgba(131, 24, 67, 0.8);
}
.ring-offset-pink-900\/85 {
  --tw-ring-offset-color: rgba(131, 24, 67, 0.85);
}
.ring-offset-pink-900\/90 {
  --tw-ring-offset-color: rgba(131, 24, 67, 0.9);
}
.ring-offset-pink-900\/95 {
  --tw-ring-offset-color: rgba(131, 24, 67, 0.95);
}
.ring-offset-pink-950 {
  --tw-ring-offset-color: #500724;
}
.ring-offset-pink-950\/0 {
  --tw-ring-offset-color: rgba(80, 7, 36, 0);
}
.ring-offset-pink-950\/10 {
  --tw-ring-offset-color: rgba(80, 7, 36, 0.1);
}
.ring-offset-pink-950\/100 {
  --tw-ring-offset-color: rgba(80, 7, 36, 1);
}
.ring-offset-pink-950\/15 {
  --tw-ring-offset-color: rgba(80, 7, 36, 0.15);
}
.ring-offset-pink-950\/20 {
  --tw-ring-offset-color: rgba(80, 7, 36, 0.2);
}
.ring-offset-pink-950\/25 {
  --tw-ring-offset-color: rgba(80, 7, 36, 0.25);
}
.ring-offset-pink-950\/30 {
  --tw-ring-offset-color: rgba(80, 7, 36, 0.3);
}
.ring-offset-pink-950\/35 {
  --tw-ring-offset-color: rgba(80, 7, 36, 0.35);
}
.ring-offset-pink-950\/40 {
  --tw-ring-offset-color: rgba(80, 7, 36, 0.4);
}
.ring-offset-pink-950\/45 {
  --tw-ring-offset-color: rgba(80, 7, 36, 0.45);
}
.ring-offset-pink-950\/5 {
  --tw-ring-offset-color: rgba(80, 7, 36, 0.05);
}
.ring-offset-pink-950\/50 {
  --tw-ring-offset-color: rgba(80, 7, 36, 0.5);
}
.ring-offset-pink-950\/55 {
  --tw-ring-offset-color: rgba(80, 7, 36, 0.55);
}
.ring-offset-pink-950\/60 {
  --tw-ring-offset-color: rgba(80, 7, 36, 0.6);
}
.ring-offset-pink-950\/65 {
  --tw-ring-offset-color: rgba(80, 7, 36, 0.65);
}
.ring-offset-pink-950\/70 {
  --tw-ring-offset-color: rgba(80, 7, 36, 0.7);
}
.ring-offset-pink-950\/75 {
  --tw-ring-offset-color: rgba(80, 7, 36, 0.75);
}
.ring-offset-pink-950\/80 {
  --tw-ring-offset-color: rgba(80, 7, 36, 0.8);
}
.ring-offset-pink-950\/85 {
  --tw-ring-offset-color: rgba(80, 7, 36, 0.85);
}
.ring-offset-pink-950\/90 {
  --tw-ring-offset-color: rgba(80, 7, 36, 0.9);
}
.ring-offset-pink-950\/95 {
  --tw-ring-offset-color: rgba(80, 7, 36, 0.95);
}
.ring-offset-primary {
  --tw-ring-offset-color: var(--fallback-p,oklch(var(--p)/1));
}
.ring-offset-primary-content {
  --tw-ring-offset-color: var(--fallback-pc,oklch(var(--pc)/1));
}
.ring-offset-primary-content\/0 {
  --tw-ring-offset-color: var(--fallback-pc,oklch(var(--pc)/0));
}
.ring-offset-primary-content\/10 {
  --tw-ring-offset-color: var(--fallback-pc,oklch(var(--pc)/0.1));
}
.ring-offset-primary-content\/100 {
  --tw-ring-offset-color: var(--fallback-pc,oklch(var(--pc)/1));
}
.ring-offset-primary-content\/15 {
  --tw-ring-offset-color: var(--fallback-pc,oklch(var(--pc)/0.15));
}
.ring-offset-primary-content\/20 {
  --tw-ring-offset-color: var(--fallback-pc,oklch(var(--pc)/0.2));
}
.ring-offset-primary-content\/25 {
  --tw-ring-offset-color: var(--fallback-pc,oklch(var(--pc)/0.25));
}
.ring-offset-primary-content\/30 {
  --tw-ring-offset-color: var(--fallback-pc,oklch(var(--pc)/0.3));
}
.ring-offset-primary-content\/35 {
  --tw-ring-offset-color: var(--fallback-pc,oklch(var(--pc)/0.35));
}
.ring-offset-primary-content\/40 {
  --tw-ring-offset-color: var(--fallback-pc,oklch(var(--pc)/0.4));
}
.ring-offset-primary-content\/45 {
  --tw-ring-offset-color: var(--fallback-pc,oklch(var(--pc)/0.45));
}
.ring-offset-primary-content\/5 {
  --tw-ring-offset-color: var(--fallback-pc,oklch(var(--pc)/0.05));
}
.ring-offset-primary-content\/50 {
  --tw-ring-offset-color: var(--fallback-pc,oklch(var(--pc)/0.5));
}
.ring-offset-primary-content\/55 {
  --tw-ring-offset-color: var(--fallback-pc,oklch(var(--pc)/0.55));
}
.ring-offset-primary-content\/60 {
  --tw-ring-offset-color: var(--fallback-pc,oklch(var(--pc)/0.6));
}
.ring-offset-primary-content\/65 {
  --tw-ring-offset-color: var(--fallback-pc,oklch(var(--pc)/0.65));
}
.ring-offset-primary-content\/70 {
  --tw-ring-offset-color: var(--fallback-pc,oklch(var(--pc)/0.7));
}
.ring-offset-primary-content\/75 {
  --tw-ring-offset-color: var(--fallback-pc,oklch(var(--pc)/0.75));
}
.ring-offset-primary-content\/80 {
  --tw-ring-offset-color: var(--fallback-pc,oklch(var(--pc)/0.8));
}
.ring-offset-primary-content\/85 {
  --tw-ring-offset-color: var(--fallback-pc,oklch(var(--pc)/0.85));
}
.ring-offset-primary-content\/90 {
  --tw-ring-offset-color: var(--fallback-pc,oklch(var(--pc)/0.9));
}
.ring-offset-primary-content\/95 {
  --tw-ring-offset-color: var(--fallback-pc,oklch(var(--pc)/0.95));
}
.ring-offset-primary\/0 {
  --tw-ring-offset-color: var(--fallback-p,oklch(var(--p)/0));
}
.ring-offset-primary\/10 {
  --tw-ring-offset-color: var(--fallback-p,oklch(var(--p)/0.1));
}
.ring-offset-primary\/100 {
  --tw-ring-offset-color: var(--fallback-p,oklch(var(--p)/1));
}
.ring-offset-primary\/15 {
  --tw-ring-offset-color: var(--fallback-p,oklch(var(--p)/0.15));
}
.ring-offset-primary\/20 {
  --tw-ring-offset-color: var(--fallback-p,oklch(var(--p)/0.2));
}
.ring-offset-primary\/25 {
  --tw-ring-offset-color: var(--fallback-p,oklch(var(--p)/0.25));
}
.ring-offset-primary\/30 {
  --tw-ring-offset-color: var(--fallback-p,oklch(var(--p)/0.3));
}
.ring-offset-primary\/35 {
  --tw-ring-offset-color: var(--fallback-p,oklch(var(--p)/0.35));
}
.ring-offset-primary\/40 {
  --tw-ring-offset-color: var(--fallback-p,oklch(var(--p)/0.4));
}
.ring-offset-primary\/45 {
  --tw-ring-offset-color: var(--fallback-p,oklch(var(--p)/0.45));
}
.ring-offset-primary\/5 {
  --tw-ring-offset-color: var(--fallback-p,oklch(var(--p)/0.05));
}
.ring-offset-primary\/50 {
  --tw-ring-offset-color: var(--fallback-p,oklch(var(--p)/0.5));
}
.ring-offset-primary\/55 {
  --tw-ring-offset-color: var(--fallback-p,oklch(var(--p)/0.55));
}
.ring-offset-primary\/60 {
  --tw-ring-offset-color: var(--fallback-p,oklch(var(--p)/0.6));
}
.ring-offset-primary\/65 {
  --tw-ring-offset-color: var(--fallback-p,oklch(var(--p)/0.65));
}
.ring-offset-primary\/70 {
  --tw-ring-offset-color: var(--fallback-p,oklch(var(--p)/0.7));
}
.ring-offset-primary\/75 {
  --tw-ring-offset-color: var(--fallback-p,oklch(var(--p)/0.75));
}
.ring-offset-primary\/80 {
  --tw-ring-offset-color: var(--fallback-p,oklch(var(--p)/0.8));
}
.ring-offset-primary\/85 {
  --tw-ring-offset-color: var(--fallback-p,oklch(var(--p)/0.85));
}
.ring-offset-primary\/90 {
  --tw-ring-offset-color: var(--fallback-p,oklch(var(--p)/0.9));
}
.ring-offset-primary\/95 {
  --tw-ring-offset-color: var(--fallback-p,oklch(var(--p)/0.95));
}
.ring-offset-purple-100 {
  --tw-ring-offset-color: #f3e8ff;
}
.ring-offset-purple-100\/0 {
  --tw-ring-offset-color: rgba(243, 232, 255, 0);
}
.ring-offset-purple-100\/10 {
  --tw-ring-offset-color: rgba(243, 232, 255, 0.1);
}
.ring-offset-purple-100\/100 {
  --tw-ring-offset-color: rgba(243, 232, 255, 1);
}
.ring-offset-purple-100\/15 {
  --tw-ring-offset-color: rgba(243, 232, 255, 0.15);
}
.ring-offset-purple-100\/20 {
  --tw-ring-offset-color: rgba(243, 232, 255, 0.2);
}
.ring-offset-purple-100\/25 {
  --tw-ring-offset-color: rgba(243, 232, 255, 0.25);
}
.ring-offset-purple-100\/30 {
  --tw-ring-offset-color: rgba(243, 232, 255, 0.3);
}
.ring-offset-purple-100\/35 {
  --tw-ring-offset-color: rgba(243, 232, 255, 0.35);
}
.ring-offset-purple-100\/40 {
  --tw-ring-offset-color: rgba(243, 232, 255, 0.4);
}
.ring-offset-purple-100\/45 {
  --tw-ring-offset-color: rgba(243, 232, 255, 0.45);
}
.ring-offset-purple-100\/5 {
  --tw-ring-offset-color: rgba(243, 232, 255, 0.05);
}
.ring-offset-purple-100\/50 {
  --tw-ring-offset-color: rgba(243, 232, 255, 0.5);
}
.ring-offset-purple-100\/55 {
  --tw-ring-offset-color: rgba(243, 232, 255, 0.55);
}
.ring-offset-purple-100\/60 {
  --tw-ring-offset-color: rgba(243, 232, 255, 0.6);
}
.ring-offset-purple-100\/65 {
  --tw-ring-offset-color: rgba(243, 232, 255, 0.65);
}
.ring-offset-purple-100\/70 {
  --tw-ring-offset-color: rgba(243, 232, 255, 0.7);
}
.ring-offset-purple-100\/75 {
  --tw-ring-offset-color: rgba(243, 232, 255, 0.75);
}
.ring-offset-purple-100\/80 {
  --tw-ring-offset-color: rgba(243, 232, 255, 0.8);
}
.ring-offset-purple-100\/85 {
  --tw-ring-offset-color: rgba(243, 232, 255, 0.85);
}
.ring-offset-purple-100\/90 {
  --tw-ring-offset-color: rgba(243, 232, 255, 0.9);
}
.ring-offset-purple-100\/95 {
  --tw-ring-offset-color: rgba(243, 232, 255, 0.95);
}
.ring-offset-purple-200 {
  --tw-ring-offset-color: #e9d5ff;
}
.ring-offset-purple-200\/0 {
  --tw-ring-offset-color: rgba(233, 213, 255, 0);
}
.ring-offset-purple-200\/10 {
  --tw-ring-offset-color: rgba(233, 213, 255, 0.1);
}
.ring-offset-purple-200\/100 {
  --tw-ring-offset-color: rgba(233, 213, 255, 1);
}
.ring-offset-purple-200\/15 {
  --tw-ring-offset-color: rgba(233, 213, 255, 0.15);
}
.ring-offset-purple-200\/20 {
  --tw-ring-offset-color: rgba(233, 213, 255, 0.2);
}
.ring-offset-purple-200\/25 {
  --tw-ring-offset-color: rgba(233, 213, 255, 0.25);
}
.ring-offset-purple-200\/30 {
  --tw-ring-offset-color: rgba(233, 213, 255, 0.3);
}
.ring-offset-purple-200\/35 {
  --tw-ring-offset-color: rgba(233, 213, 255, 0.35);
}
.ring-offset-purple-200\/40 {
  --tw-ring-offset-color: rgba(233, 213, 255, 0.4);
}
.ring-offset-purple-200\/45 {
  --tw-ring-offset-color: rgba(233, 213, 255, 0.45);
}
.ring-offset-purple-200\/5 {
  --tw-ring-offset-color: rgba(233, 213, 255, 0.05);
}
.ring-offset-purple-200\/50 {
  --tw-ring-offset-color: rgba(233, 213, 255, 0.5);
}
.ring-offset-purple-200\/55 {
  --tw-ring-offset-color: rgba(233, 213, 255, 0.55);
}
.ring-offset-purple-200\/60 {
  --tw-ring-offset-color: rgba(233, 213, 255, 0.6);
}
.ring-offset-purple-200\/65 {
  --tw-ring-offset-color: rgba(233, 213, 255, 0.65);
}
.ring-offset-purple-200\/70 {
  --tw-ring-offset-color: rgba(233, 213, 255, 0.7);
}
.ring-offset-purple-200\/75 {
  --tw-ring-offset-color: rgba(233, 213, 255, 0.75);
}
.ring-offset-purple-200\/80 {
  --tw-ring-offset-color: rgba(233, 213, 255, 0.8);
}
.ring-offset-purple-200\/85 {
  --tw-ring-offset-color: rgba(233, 213, 255, 0.85);
}
.ring-offset-purple-200\/90 {
  --tw-ring-offset-color: rgba(233, 213, 255, 0.9);
}
.ring-offset-purple-200\/95 {
  --tw-ring-offset-color: rgba(233, 213, 255, 0.95);
}
.ring-offset-purple-300 {
  --tw-ring-offset-color: #d8b4fe;
}
.ring-offset-purple-300\/0 {
  --tw-ring-offset-color: rgba(216, 180, 254, 0);
}
.ring-offset-purple-300\/10 {
  --tw-ring-offset-color: rgba(216, 180, 254, 0.1);
}
.ring-offset-purple-300\/100 {
  --tw-ring-offset-color: rgba(216, 180, 254, 1);
}
.ring-offset-purple-300\/15 {
  --tw-ring-offset-color: rgba(216, 180, 254, 0.15);
}
.ring-offset-purple-300\/20 {
  --tw-ring-offset-color: rgba(216, 180, 254, 0.2);
}
.ring-offset-purple-300\/25 {
  --tw-ring-offset-color: rgba(216, 180, 254, 0.25);
}
.ring-offset-purple-300\/30 {
  --tw-ring-offset-color: rgba(216, 180, 254, 0.3);
}
.ring-offset-purple-300\/35 {
  --tw-ring-offset-color: rgba(216, 180, 254, 0.35);
}
.ring-offset-purple-300\/40 {
  --tw-ring-offset-color: rgba(216, 180, 254, 0.4);
}
.ring-offset-purple-300\/45 {
  --tw-ring-offset-color: rgba(216, 180, 254, 0.45);
}
.ring-offset-purple-300\/5 {
  --tw-ring-offset-color: rgba(216, 180, 254, 0.05);
}
.ring-offset-purple-300\/50 {
  --tw-ring-offset-color: rgba(216, 180, 254, 0.5);
}
.ring-offset-purple-300\/55 {
  --tw-ring-offset-color: rgba(216, 180, 254, 0.55);
}
.ring-offset-purple-300\/60 {
  --tw-ring-offset-color: rgba(216, 180, 254, 0.6);
}
.ring-offset-purple-300\/65 {
  --tw-ring-offset-color: rgba(216, 180, 254, 0.65);
}
.ring-offset-purple-300\/70 {
  --tw-ring-offset-color: rgba(216, 180, 254, 0.7);
}
.ring-offset-purple-300\/75 {
  --tw-ring-offset-color: rgba(216, 180, 254, 0.75);
}
.ring-offset-purple-300\/80 {
  --tw-ring-offset-color: rgba(216, 180, 254, 0.8);
}
.ring-offset-purple-300\/85 {
  --tw-ring-offset-color: rgba(216, 180, 254, 0.85);
}
.ring-offset-purple-300\/90 {
  --tw-ring-offset-color: rgba(216, 180, 254, 0.9);
}
.ring-offset-purple-300\/95 {
  --tw-ring-offset-color: rgba(216, 180, 254, 0.95);
}
.ring-offset-purple-400 {
  --tw-ring-offset-color: #c084fc;
}
.ring-offset-purple-400\/0 {
  --tw-ring-offset-color: rgba(192, 132, 252, 0);
}
.ring-offset-purple-400\/10 {
  --tw-ring-offset-color: rgba(192, 132, 252, 0.1);
}
.ring-offset-purple-400\/100 {
  --tw-ring-offset-color: rgba(192, 132, 252, 1);
}
.ring-offset-purple-400\/15 {
  --tw-ring-offset-color: rgba(192, 132, 252, 0.15);
}
.ring-offset-purple-400\/20 {
  --tw-ring-offset-color: rgba(192, 132, 252, 0.2);
}
.ring-offset-purple-400\/25 {
  --tw-ring-offset-color: rgba(192, 132, 252, 0.25);
}
.ring-offset-purple-400\/30 {
  --tw-ring-offset-color: rgba(192, 132, 252, 0.3);
}
.ring-offset-purple-400\/35 {
  --tw-ring-offset-color: rgba(192, 132, 252, 0.35);
}
.ring-offset-purple-400\/40 {
  --tw-ring-offset-color: rgba(192, 132, 252, 0.4);
}
.ring-offset-purple-400\/45 {
  --tw-ring-offset-color: rgba(192, 132, 252, 0.45);
}
.ring-offset-purple-400\/5 {
  --tw-ring-offset-color: rgba(192, 132, 252, 0.05);
}
.ring-offset-purple-400\/50 {
  --tw-ring-offset-color: rgba(192, 132, 252, 0.5);
}
.ring-offset-purple-400\/55 {
  --tw-ring-offset-color: rgba(192, 132, 252, 0.55);
}
.ring-offset-purple-400\/60 {
  --tw-ring-offset-color: rgba(192, 132, 252, 0.6);
}
.ring-offset-purple-400\/65 {
  --tw-ring-offset-color: rgba(192, 132, 252, 0.65);
}
.ring-offset-purple-400\/70 {
  --tw-ring-offset-color: rgba(192, 132, 252, 0.7);
}
.ring-offset-purple-400\/75 {
  --tw-ring-offset-color: rgba(192, 132, 252, 0.75);
}
.ring-offset-purple-400\/80 {
  --tw-ring-offset-color: rgba(192, 132, 252, 0.8);
}
.ring-offset-purple-400\/85 {
  --tw-ring-offset-color: rgba(192, 132, 252, 0.85);
}
.ring-offset-purple-400\/90 {
  --tw-ring-offset-color: rgba(192, 132, 252, 0.9);
}
.ring-offset-purple-400\/95 {
  --tw-ring-offset-color: rgba(192, 132, 252, 0.95);
}
.ring-offset-purple-50 {
  --tw-ring-offset-color: #faf5ff;
}
.ring-offset-purple-50\/0 {
  --tw-ring-offset-color: rgba(250, 245, 255, 0);
}
.ring-offset-purple-50\/10 {
  --tw-ring-offset-color: rgba(250, 245, 255, 0.1);
}
.ring-offset-purple-50\/100 {
  --tw-ring-offset-color: rgba(250, 245, 255, 1);
}
.ring-offset-purple-50\/15 {
  --tw-ring-offset-color: rgba(250, 245, 255, 0.15);
}
.ring-offset-purple-50\/20 {
  --tw-ring-offset-color: rgba(250, 245, 255, 0.2);
}
.ring-offset-purple-50\/25 {
  --tw-ring-offset-color: rgba(250, 245, 255, 0.25);
}
.ring-offset-purple-50\/30 {
  --tw-ring-offset-color: rgba(250, 245, 255, 0.3);
}
.ring-offset-purple-50\/35 {
  --tw-ring-offset-color: rgba(250, 245, 255, 0.35);
}
.ring-offset-purple-50\/40 {
  --tw-ring-offset-color: rgba(250, 245, 255, 0.4);
}
.ring-offset-purple-50\/45 {
  --tw-ring-offset-color: rgba(250, 245, 255, 0.45);
}
.ring-offset-purple-50\/5 {
  --tw-ring-offset-color: rgba(250, 245, 255, 0.05);
}
.ring-offset-purple-50\/50 {
  --tw-ring-offset-color: rgba(250, 245, 255, 0.5);
}
.ring-offset-purple-50\/55 {
  --tw-ring-offset-color: rgba(250, 245, 255, 0.55);
}
.ring-offset-purple-50\/60 {
  --tw-ring-offset-color: rgba(250, 245, 255, 0.6);
}
.ring-offset-purple-50\/65 {
  --tw-ring-offset-color: rgba(250, 245, 255, 0.65);
}
.ring-offset-purple-50\/70 {
  --tw-ring-offset-color: rgba(250, 245, 255, 0.7);
}
.ring-offset-purple-50\/75 {
  --tw-ring-offset-color: rgba(250, 245, 255, 0.75);
}
.ring-offset-purple-50\/80 {
  --tw-ring-offset-color: rgba(250, 245, 255, 0.8);
}
.ring-offset-purple-50\/85 {
  --tw-ring-offset-color: rgba(250, 245, 255, 0.85);
}
.ring-offset-purple-50\/90 {
  --tw-ring-offset-color: rgba(250, 245, 255, 0.9);
}
.ring-offset-purple-50\/95 {
  --tw-ring-offset-color: rgba(250, 245, 255, 0.95);
}
.ring-offset-purple-500 {
  --tw-ring-offset-color: #a855f7;
}
.ring-offset-purple-500\/0 {
  --tw-ring-offset-color: rgba(168, 85, 247, 0);
}
.ring-offset-purple-500\/10 {
  --tw-ring-offset-color: rgba(168, 85, 247, 0.1);
}
.ring-offset-purple-500\/100 {
  --tw-ring-offset-color: rgba(168, 85, 247, 1);
}
.ring-offset-purple-500\/15 {
  --tw-ring-offset-color: rgba(168, 85, 247, 0.15);
}
.ring-offset-purple-500\/20 {
  --tw-ring-offset-color: rgba(168, 85, 247, 0.2);
}
.ring-offset-purple-500\/25 {
  --tw-ring-offset-color: rgba(168, 85, 247, 0.25);
}
.ring-offset-purple-500\/30 {
  --tw-ring-offset-color: rgba(168, 85, 247, 0.3);
}
.ring-offset-purple-500\/35 {
  --tw-ring-offset-color: rgba(168, 85, 247, 0.35);
}
.ring-offset-purple-500\/40 {
  --tw-ring-offset-color: rgba(168, 85, 247, 0.4);
}
.ring-offset-purple-500\/45 {
  --tw-ring-offset-color: rgba(168, 85, 247, 0.45);
}
.ring-offset-purple-500\/5 {
  --tw-ring-offset-color: rgba(168, 85, 247, 0.05);
}
.ring-offset-purple-500\/50 {
  --tw-ring-offset-color: rgba(168, 85, 247, 0.5);
}
.ring-offset-purple-500\/55 {
  --tw-ring-offset-color: rgba(168, 85, 247, 0.55);
}
.ring-offset-purple-500\/60 {
  --tw-ring-offset-color: rgba(168, 85, 247, 0.6);
}
.ring-offset-purple-500\/65 {
  --tw-ring-offset-color: rgba(168, 85, 247, 0.65);
}
.ring-offset-purple-500\/70 {
  --tw-ring-offset-color: rgba(168, 85, 247, 0.7);
}
.ring-offset-purple-500\/75 {
  --tw-ring-offset-color: rgba(168, 85, 247, 0.75);
}
.ring-offset-purple-500\/80 {
  --tw-ring-offset-color: rgba(168, 85, 247, 0.8);
}
.ring-offset-purple-500\/85 {
  --tw-ring-offset-color: rgba(168, 85, 247, 0.85);
}
.ring-offset-purple-500\/90 {
  --tw-ring-offset-color: rgba(168, 85, 247, 0.9);
}
.ring-offset-purple-500\/95 {
  --tw-ring-offset-color: rgba(168, 85, 247, 0.95);
}
.ring-offset-purple-600 {
  --tw-ring-offset-color: #9333ea;
}
.ring-offset-purple-600\/0 {
  --tw-ring-offset-color: rgba(147, 51, 234, 0);
}
.ring-offset-purple-600\/10 {
  --tw-ring-offset-color: rgba(147, 51, 234, 0.1);
}
.ring-offset-purple-600\/100 {
  --tw-ring-offset-color: rgba(147, 51, 234, 1);
}
.ring-offset-purple-600\/15 {
  --tw-ring-offset-color: rgba(147, 51, 234, 0.15);
}
.ring-offset-purple-600\/20 {
  --tw-ring-offset-color: rgba(147, 51, 234, 0.2);
}
.ring-offset-purple-600\/25 {
  --tw-ring-offset-color: rgba(147, 51, 234, 0.25);
}
.ring-offset-purple-600\/30 {
  --tw-ring-offset-color: rgba(147, 51, 234, 0.3);
}
.ring-offset-purple-600\/35 {
  --tw-ring-offset-color: rgba(147, 51, 234, 0.35);
}
.ring-offset-purple-600\/40 {
  --tw-ring-offset-color: rgba(147, 51, 234, 0.4);
}
.ring-offset-purple-600\/45 {
  --tw-ring-offset-color: rgba(147, 51, 234, 0.45);
}
.ring-offset-purple-600\/5 {
  --tw-ring-offset-color: rgba(147, 51, 234, 0.05);
}
.ring-offset-purple-600\/50 {
  --tw-ring-offset-color: rgba(147, 51, 234, 0.5);
}
.ring-offset-purple-600\/55 {
  --tw-ring-offset-color: rgba(147, 51, 234, 0.55);
}
.ring-offset-purple-600\/60 {
  --tw-ring-offset-color: rgba(147, 51, 234, 0.6);
}
.ring-offset-purple-600\/65 {
  --tw-ring-offset-color: rgba(147, 51, 234, 0.65);
}
.ring-offset-purple-600\/70 {
  --tw-ring-offset-color: rgba(147, 51, 234, 0.7);
}
.ring-offset-purple-600\/75 {
  --tw-ring-offset-color: rgba(147, 51, 234, 0.75);
}
.ring-offset-purple-600\/80 {
  --tw-ring-offset-color: rgba(147, 51, 234, 0.8);
}
.ring-offset-purple-600\/85 {
  --tw-ring-offset-color: rgba(147, 51, 234, 0.85);
}
.ring-offset-purple-600\/90 {
  --tw-ring-offset-color: rgba(147, 51, 234, 0.9);
}
.ring-offset-purple-600\/95 {
  --tw-ring-offset-color: rgba(147, 51, 234, 0.95);
}
.ring-offset-purple-700 {
  --tw-ring-offset-color: #7e22ce;
}
.ring-offset-purple-700\/0 {
  --tw-ring-offset-color: rgba(126, 34, 206, 0);
}
.ring-offset-purple-700\/10 {
  --tw-ring-offset-color: rgba(126, 34, 206, 0.1);
}
.ring-offset-purple-700\/100 {
  --tw-ring-offset-color: rgba(126, 34, 206, 1);
}
.ring-offset-purple-700\/15 {
  --tw-ring-offset-color: rgba(126, 34, 206, 0.15);
}
.ring-offset-purple-700\/20 {
  --tw-ring-offset-color: rgba(126, 34, 206, 0.2);
}
.ring-offset-purple-700\/25 {
  --tw-ring-offset-color: rgba(126, 34, 206, 0.25);
}
.ring-offset-purple-700\/30 {
  --tw-ring-offset-color: rgba(126, 34, 206, 0.3);
}
.ring-offset-purple-700\/35 {
  --tw-ring-offset-color: rgba(126, 34, 206, 0.35);
}
.ring-offset-purple-700\/40 {
  --tw-ring-offset-color: rgba(126, 34, 206, 0.4);
}
.ring-offset-purple-700\/45 {
  --tw-ring-offset-color: rgba(126, 34, 206, 0.45);
}
.ring-offset-purple-700\/5 {
  --tw-ring-offset-color: rgba(126, 34, 206, 0.05);
}
.ring-offset-purple-700\/50 {
  --tw-ring-offset-color: rgba(126, 34, 206, 0.5);
}
.ring-offset-purple-700\/55 {
  --tw-ring-offset-color: rgba(126, 34, 206, 0.55);
}
.ring-offset-purple-700\/60 {
  --tw-ring-offset-color: rgba(126, 34, 206, 0.6);
}
.ring-offset-purple-700\/65 {
  --tw-ring-offset-color: rgba(126, 34, 206, 0.65);
}
.ring-offset-purple-700\/70 {
  --tw-ring-offset-color: rgba(126, 34, 206, 0.7);
}
.ring-offset-purple-700\/75 {
  --tw-ring-offset-color: rgba(126, 34, 206, 0.75);
}
.ring-offset-purple-700\/80 {
  --tw-ring-offset-color: rgba(126, 34, 206, 0.8);
}
.ring-offset-purple-700\/85 {
  --tw-ring-offset-color: rgba(126, 34, 206, 0.85);
}
.ring-offset-purple-700\/90 {
  --tw-ring-offset-color: rgba(126, 34, 206, 0.9);
}
.ring-offset-purple-700\/95 {
  --tw-ring-offset-color: rgba(126, 34, 206, 0.95);
}
.ring-offset-purple-800 {
  --tw-ring-offset-color: #6b21a8;
}
.ring-offset-purple-800\/0 {
  --tw-ring-offset-color: rgba(107, 33, 168, 0);
}
.ring-offset-purple-800\/10 {
  --tw-ring-offset-color: rgba(107, 33, 168, 0.1);
}
.ring-offset-purple-800\/100 {
  --tw-ring-offset-color: rgba(107, 33, 168, 1);
}
.ring-offset-purple-800\/15 {
  --tw-ring-offset-color: rgba(107, 33, 168, 0.15);
}
.ring-offset-purple-800\/20 {
  --tw-ring-offset-color: rgba(107, 33, 168, 0.2);
}
.ring-offset-purple-800\/25 {
  --tw-ring-offset-color: rgba(107, 33, 168, 0.25);
}
.ring-offset-purple-800\/30 {
  --tw-ring-offset-color: rgba(107, 33, 168, 0.3);
}
.ring-offset-purple-800\/35 {
  --tw-ring-offset-color: rgba(107, 33, 168, 0.35);
}
.ring-offset-purple-800\/40 {
  --tw-ring-offset-color: rgba(107, 33, 168, 0.4);
}
.ring-offset-purple-800\/45 {
  --tw-ring-offset-color: rgba(107, 33, 168, 0.45);
}
.ring-offset-purple-800\/5 {
  --tw-ring-offset-color: rgba(107, 33, 168, 0.05);
}
.ring-offset-purple-800\/50 {
  --tw-ring-offset-color: rgba(107, 33, 168, 0.5);
}
.ring-offset-purple-800\/55 {
  --tw-ring-offset-color: rgba(107, 33, 168, 0.55);
}
.ring-offset-purple-800\/60 {
  --tw-ring-offset-color: rgba(107, 33, 168, 0.6);
}
.ring-offset-purple-800\/65 {
  --tw-ring-offset-color: rgba(107, 33, 168, 0.65);
}
.ring-offset-purple-800\/70 {
  --tw-ring-offset-color: rgba(107, 33, 168, 0.7);
}
.ring-offset-purple-800\/75 {
  --tw-ring-offset-color: rgba(107, 33, 168, 0.75);
}
.ring-offset-purple-800\/80 {
  --tw-ring-offset-color: rgba(107, 33, 168, 0.8);
}
.ring-offset-purple-800\/85 {
  --tw-ring-offset-color: rgba(107, 33, 168, 0.85);
}
.ring-offset-purple-800\/90 {
  --tw-ring-offset-color: rgba(107, 33, 168, 0.9);
}
.ring-offset-purple-800\/95 {
  --tw-ring-offset-color: rgba(107, 33, 168, 0.95);
}
.ring-offset-purple-900 {
  --tw-ring-offset-color: #581c87;
}
.ring-offset-purple-900\/0 {
  --tw-ring-offset-color: rgba(88, 28, 135, 0);
}
.ring-offset-purple-900\/10 {
  --tw-ring-offset-color: rgba(88, 28, 135, 0.1);
}
.ring-offset-purple-900\/100 {
  --tw-ring-offset-color: rgba(88, 28, 135, 1);
}
.ring-offset-purple-900\/15 {
  --tw-ring-offset-color: rgba(88, 28, 135, 0.15);
}
.ring-offset-purple-900\/20 {
  --tw-ring-offset-color: rgba(88, 28, 135, 0.2);
}
.ring-offset-purple-900\/25 {
  --tw-ring-offset-color: rgba(88, 28, 135, 0.25);
}
.ring-offset-purple-900\/30 {
  --tw-ring-offset-color: rgba(88, 28, 135, 0.3);
}
.ring-offset-purple-900\/35 {
  --tw-ring-offset-color: rgba(88, 28, 135, 0.35);
}
.ring-offset-purple-900\/40 {
  --tw-ring-offset-color: rgba(88, 28, 135, 0.4);
}
.ring-offset-purple-900\/45 {
  --tw-ring-offset-color: rgba(88, 28, 135, 0.45);
}
.ring-offset-purple-900\/5 {
  --tw-ring-offset-color: rgba(88, 28, 135, 0.05);
}
.ring-offset-purple-900\/50 {
  --tw-ring-offset-color: rgba(88, 28, 135, 0.5);
}
.ring-offset-purple-900\/55 {
  --tw-ring-offset-color: rgba(88, 28, 135, 0.55);
}
.ring-offset-purple-900\/60 {
  --tw-ring-offset-color: rgba(88, 28, 135, 0.6);
}
.ring-offset-purple-900\/65 {
  --tw-ring-offset-color: rgba(88, 28, 135, 0.65);
}
.ring-offset-purple-900\/70 {
  --tw-ring-offset-color: rgba(88, 28, 135, 0.7);
}
.ring-offset-purple-900\/75 {
  --tw-ring-offset-color: rgba(88, 28, 135, 0.75);
}
.ring-offset-purple-900\/80 {
  --tw-ring-offset-color: rgba(88, 28, 135, 0.8);
}
.ring-offset-purple-900\/85 {
  --tw-ring-offset-color: rgba(88, 28, 135, 0.85);
}
.ring-offset-purple-900\/90 {
  --tw-ring-offset-color: rgba(88, 28, 135, 0.9);
}
.ring-offset-purple-900\/95 {
  --tw-ring-offset-color: rgba(88, 28, 135, 0.95);
}
.ring-offset-purple-950 {
  --tw-ring-offset-color: #3b0764;
}
.ring-offset-purple-950\/0 {
  --tw-ring-offset-color: rgba(59, 7, 100, 0);
}
.ring-offset-purple-950\/10 {
  --tw-ring-offset-color: rgba(59, 7, 100, 0.1);
}
.ring-offset-purple-950\/100 {
  --tw-ring-offset-color: rgba(59, 7, 100, 1);
}
.ring-offset-purple-950\/15 {
  --tw-ring-offset-color: rgba(59, 7, 100, 0.15);
}
.ring-offset-purple-950\/20 {
  --tw-ring-offset-color: rgba(59, 7, 100, 0.2);
}
.ring-offset-purple-950\/25 {
  --tw-ring-offset-color: rgba(59, 7, 100, 0.25);
}
.ring-offset-purple-950\/30 {
  --tw-ring-offset-color: rgba(59, 7, 100, 0.3);
}
.ring-offset-purple-950\/35 {
  --tw-ring-offset-color: rgba(59, 7, 100, 0.35);
}
.ring-offset-purple-950\/40 {
  --tw-ring-offset-color: rgba(59, 7, 100, 0.4);
}
.ring-offset-purple-950\/45 {
  --tw-ring-offset-color: rgba(59, 7, 100, 0.45);
}
.ring-offset-purple-950\/5 {
  --tw-ring-offset-color: rgba(59, 7, 100, 0.05);
}
.ring-offset-purple-950\/50 {
  --tw-ring-offset-color: rgba(59, 7, 100, 0.5);
}
.ring-offset-purple-950\/55 {
  --tw-ring-offset-color: rgba(59, 7, 100, 0.55);
}
.ring-offset-purple-950\/60 {
  --tw-ring-offset-color: rgba(59, 7, 100, 0.6);
}
.ring-offset-purple-950\/65 {
  --tw-ring-offset-color: rgba(59, 7, 100, 0.65);
}
.ring-offset-purple-950\/70 {
  --tw-ring-offset-color: rgba(59, 7, 100, 0.7);
}
.ring-offset-purple-950\/75 {
  --tw-ring-offset-color: rgba(59, 7, 100, 0.75);
}
.ring-offset-purple-950\/80 {
  --tw-ring-offset-color: rgba(59, 7, 100, 0.8);
}
.ring-offset-purple-950\/85 {
  --tw-ring-offset-color: rgba(59, 7, 100, 0.85);
}
.ring-offset-purple-950\/90 {
  --tw-ring-offset-color: rgba(59, 7, 100, 0.9);
}
.ring-offset-purple-950\/95 {
  --tw-ring-offset-color: rgba(59, 7, 100, 0.95);
}
.ring-offset-red-100 {
  --tw-ring-offset-color: #fee2e2;
}
.ring-offset-red-100\/0 {
  --tw-ring-offset-color: rgba(254, 226, 226, 0);
}
.ring-offset-red-100\/10 {
  --tw-ring-offset-color: rgba(254, 226, 226, 0.1);
}
.ring-offset-red-100\/100 {
  --tw-ring-offset-color: rgba(254, 226, 226, 1);
}
.ring-offset-red-100\/15 {
  --tw-ring-offset-color: rgba(254, 226, 226, 0.15);
}
.ring-offset-red-100\/20 {
  --tw-ring-offset-color: rgba(254, 226, 226, 0.2);
}
.ring-offset-red-100\/25 {
  --tw-ring-offset-color: rgba(254, 226, 226, 0.25);
}
.ring-offset-red-100\/30 {
  --tw-ring-offset-color: rgba(254, 226, 226, 0.3);
}
.ring-offset-red-100\/35 {
  --tw-ring-offset-color: rgba(254, 226, 226, 0.35);
}
.ring-offset-red-100\/40 {
  --tw-ring-offset-color: rgba(254, 226, 226, 0.4);
}
.ring-offset-red-100\/45 {
  --tw-ring-offset-color: rgba(254, 226, 226, 0.45);
}
.ring-offset-red-100\/5 {
  --tw-ring-offset-color: rgba(254, 226, 226, 0.05);
}
.ring-offset-red-100\/50 {
  --tw-ring-offset-color: rgba(254, 226, 226, 0.5);
}
.ring-offset-red-100\/55 {
  --tw-ring-offset-color: rgba(254, 226, 226, 0.55);
}
.ring-offset-red-100\/60 {
  --tw-ring-offset-color: rgba(254, 226, 226, 0.6);
}
.ring-offset-red-100\/65 {
  --tw-ring-offset-color: rgba(254, 226, 226, 0.65);
}
.ring-offset-red-100\/70 {
  --tw-ring-offset-color: rgba(254, 226, 226, 0.7);
}
.ring-offset-red-100\/75 {
  --tw-ring-offset-color: rgba(254, 226, 226, 0.75);
}
.ring-offset-red-100\/80 {
  --tw-ring-offset-color: rgba(254, 226, 226, 0.8);
}
.ring-offset-red-100\/85 {
  --tw-ring-offset-color: rgba(254, 226, 226, 0.85);
}
.ring-offset-red-100\/90 {
  --tw-ring-offset-color: rgba(254, 226, 226, 0.9);
}
.ring-offset-red-100\/95 {
  --tw-ring-offset-color: rgba(254, 226, 226, 0.95);
}
.ring-offset-red-200 {
  --tw-ring-offset-color: #fecaca;
}
.ring-offset-red-200\/0 {
  --tw-ring-offset-color: rgba(254, 202, 202, 0);
}
.ring-offset-red-200\/10 {
  --tw-ring-offset-color: rgba(254, 202, 202, 0.1);
}
.ring-offset-red-200\/100 {
  --tw-ring-offset-color: rgba(254, 202, 202, 1);
}
.ring-offset-red-200\/15 {
  --tw-ring-offset-color: rgba(254, 202, 202, 0.15);
}
.ring-offset-red-200\/20 {
  --tw-ring-offset-color: rgba(254, 202, 202, 0.2);
}
.ring-offset-red-200\/25 {
  --tw-ring-offset-color: rgba(254, 202, 202, 0.25);
}
.ring-offset-red-200\/30 {
  --tw-ring-offset-color: rgba(254, 202, 202, 0.3);
}
.ring-offset-red-200\/35 {
  --tw-ring-offset-color: rgba(254, 202, 202, 0.35);
}
.ring-offset-red-200\/40 {
  --tw-ring-offset-color: rgba(254, 202, 202, 0.4);
}
.ring-offset-red-200\/45 {
  --tw-ring-offset-color: rgba(254, 202, 202, 0.45);
}
.ring-offset-red-200\/5 {
  --tw-ring-offset-color: rgba(254, 202, 202, 0.05);
}
.ring-offset-red-200\/50 {
  --tw-ring-offset-color: rgba(254, 202, 202, 0.5);
}
.ring-offset-red-200\/55 {
  --tw-ring-offset-color: rgba(254, 202, 202, 0.55);
}
.ring-offset-red-200\/60 {
  --tw-ring-offset-color: rgba(254, 202, 202, 0.6);
}
.ring-offset-red-200\/65 {
  --tw-ring-offset-color: rgba(254, 202, 202, 0.65);
}
.ring-offset-red-200\/70 {
  --tw-ring-offset-color: rgba(254, 202, 202, 0.7);
}
.ring-offset-red-200\/75 {
  --tw-ring-offset-color: rgba(254, 202, 202, 0.75);
}
.ring-offset-red-200\/80 {
  --tw-ring-offset-color: rgba(254, 202, 202, 0.8);
}
.ring-offset-red-200\/85 {
  --tw-ring-offset-color: rgba(254, 202, 202, 0.85);
}
.ring-offset-red-200\/90 {
  --tw-ring-offset-color: rgba(254, 202, 202, 0.9);
}
.ring-offset-red-200\/95 {
  --tw-ring-offset-color: rgba(254, 202, 202, 0.95);
}
.ring-offset-red-300 {
  --tw-ring-offset-color: #fca5a5;
}
.ring-offset-red-300\/0 {
  --tw-ring-offset-color: rgba(252, 165, 165, 0);
}
.ring-offset-red-300\/10 {
  --tw-ring-offset-color: rgba(252, 165, 165, 0.1);
}
.ring-offset-red-300\/100 {
  --tw-ring-offset-color: rgba(252, 165, 165, 1);
}
.ring-offset-red-300\/15 {
  --tw-ring-offset-color: rgba(252, 165, 165, 0.15);
}
.ring-offset-red-300\/20 {
  --tw-ring-offset-color: rgba(252, 165, 165, 0.2);
}
.ring-offset-red-300\/25 {
  --tw-ring-offset-color: rgba(252, 165, 165, 0.25);
}
.ring-offset-red-300\/30 {
  --tw-ring-offset-color: rgba(252, 165, 165, 0.3);
}
.ring-offset-red-300\/35 {
  --tw-ring-offset-color: rgba(252, 165, 165, 0.35);
}
.ring-offset-red-300\/40 {
  --tw-ring-offset-color: rgba(252, 165, 165, 0.4);
}
.ring-offset-red-300\/45 {
  --tw-ring-offset-color: rgba(252, 165, 165, 0.45);
}
.ring-offset-red-300\/5 {
  --tw-ring-offset-color: rgba(252, 165, 165, 0.05);
}
.ring-offset-red-300\/50 {
  --tw-ring-offset-color: rgba(252, 165, 165, 0.5);
}
.ring-offset-red-300\/55 {
  --tw-ring-offset-color: rgba(252, 165, 165, 0.55);
}
.ring-offset-red-300\/60 {
  --tw-ring-offset-color: rgba(252, 165, 165, 0.6);
}
.ring-offset-red-300\/65 {
  --tw-ring-offset-color: rgba(252, 165, 165, 0.65);
}
.ring-offset-red-300\/70 {
  --tw-ring-offset-color: rgba(252, 165, 165, 0.7);
}
.ring-offset-red-300\/75 {
  --tw-ring-offset-color: rgba(252, 165, 165, 0.75);
}
.ring-offset-red-300\/80 {
  --tw-ring-offset-color: rgba(252, 165, 165, 0.8);
}
.ring-offset-red-300\/85 {
  --tw-ring-offset-color: rgba(252, 165, 165, 0.85);
}
.ring-offset-red-300\/90 {
  --tw-ring-offset-color: rgba(252, 165, 165, 0.9);
}
.ring-offset-red-300\/95 {
  --tw-ring-offset-color: rgba(252, 165, 165, 0.95);
}
.ring-offset-red-400 {
  --tw-ring-offset-color: #f87171;
}
.ring-offset-red-400\/0 {
  --tw-ring-offset-color: rgba(248, 113, 113, 0);
}
.ring-offset-red-400\/10 {
  --tw-ring-offset-color: rgba(248, 113, 113, 0.1);
}
.ring-offset-red-400\/100 {
  --tw-ring-offset-color: rgba(248, 113, 113, 1);
}
.ring-offset-red-400\/15 {
  --tw-ring-offset-color: rgba(248, 113, 113, 0.15);
}
.ring-offset-red-400\/20 {
  --tw-ring-offset-color: rgba(248, 113, 113, 0.2);
}
.ring-offset-red-400\/25 {
  --tw-ring-offset-color: rgba(248, 113, 113, 0.25);
}
.ring-offset-red-400\/30 {
  --tw-ring-offset-color: rgba(248, 113, 113, 0.3);
}
.ring-offset-red-400\/35 {
  --tw-ring-offset-color: rgba(248, 113, 113, 0.35);
}
.ring-offset-red-400\/40 {
  --tw-ring-offset-color: rgba(248, 113, 113, 0.4);
}
.ring-offset-red-400\/45 {
  --tw-ring-offset-color: rgba(248, 113, 113, 0.45);
}
.ring-offset-red-400\/5 {
  --tw-ring-offset-color: rgba(248, 113, 113, 0.05);
}
.ring-offset-red-400\/50 {
  --tw-ring-offset-color: rgba(248, 113, 113, 0.5);
}
.ring-offset-red-400\/55 {
  --tw-ring-offset-color: rgba(248, 113, 113, 0.55);
}
.ring-offset-red-400\/60 {
  --tw-ring-offset-color: rgba(248, 113, 113, 0.6);
}
.ring-offset-red-400\/65 {
  --tw-ring-offset-color: rgba(248, 113, 113, 0.65);
}
.ring-offset-red-400\/70 {
  --tw-ring-offset-color: rgba(248, 113, 113, 0.7);
}
.ring-offset-red-400\/75 {
  --tw-ring-offset-color: rgba(248, 113, 113, 0.75);
}
.ring-offset-red-400\/80 {
  --tw-ring-offset-color: rgba(248, 113, 113, 0.8);
}
.ring-offset-red-400\/85 {
  --tw-ring-offset-color: rgba(248, 113, 113, 0.85);
}
.ring-offset-red-400\/90 {
  --tw-ring-offset-color: rgba(248, 113, 113, 0.9);
}
.ring-offset-red-400\/95 {
  --tw-ring-offset-color: rgba(248, 113, 113, 0.95);
}
.ring-offset-red-50 {
  --tw-ring-offset-color: #fef2f2;
}
.ring-offset-red-50\/0 {
  --tw-ring-offset-color: rgba(254, 242, 242, 0);
}
.ring-offset-red-50\/10 {
  --tw-ring-offset-color: rgba(254, 242, 242, 0.1);
}
.ring-offset-red-50\/100 {
  --tw-ring-offset-color: rgba(254, 242, 242, 1);
}
.ring-offset-red-50\/15 {
  --tw-ring-offset-color: rgba(254, 242, 242, 0.15);
}
.ring-offset-red-50\/20 {
  --tw-ring-offset-color: rgba(254, 242, 242, 0.2);
}
.ring-offset-red-50\/25 {
  --tw-ring-offset-color: rgba(254, 242, 242, 0.25);
}
.ring-offset-red-50\/30 {
  --tw-ring-offset-color: rgba(254, 242, 242, 0.3);
}
.ring-offset-red-50\/35 {
  --tw-ring-offset-color: rgba(254, 242, 242, 0.35);
}
.ring-offset-red-50\/40 {
  --tw-ring-offset-color: rgba(254, 242, 242, 0.4);
}
.ring-offset-red-50\/45 {
  --tw-ring-offset-color: rgba(254, 242, 242, 0.45);
}
.ring-offset-red-50\/5 {
  --tw-ring-offset-color: rgba(254, 242, 242, 0.05);
}
.ring-offset-red-50\/50 {
  --tw-ring-offset-color: rgba(254, 242, 242, 0.5);
}
.ring-offset-red-50\/55 {
  --tw-ring-offset-color: rgba(254, 242, 242, 0.55);
}
.ring-offset-red-50\/60 {
  --tw-ring-offset-color: rgba(254, 242, 242, 0.6);
}
.ring-offset-red-50\/65 {
  --tw-ring-offset-color: rgba(254, 242, 242, 0.65);
}
.ring-offset-red-50\/70 {
  --tw-ring-offset-color: rgba(254, 242, 242, 0.7);
}
.ring-offset-red-50\/75 {
  --tw-ring-offset-color: rgba(254, 242, 242, 0.75);
}
.ring-offset-red-50\/80 {
  --tw-ring-offset-color: rgba(254, 242, 242, 0.8);
}
.ring-offset-red-50\/85 {
  --tw-ring-offset-color: rgba(254, 242, 242, 0.85);
}
.ring-offset-red-50\/90 {
  --tw-ring-offset-color: rgba(254, 242, 242, 0.9);
}
.ring-offset-red-50\/95 {
  --tw-ring-offset-color: rgba(254, 242, 242, 0.95);
}
.ring-offset-red-500 {
  --tw-ring-offset-color: #ef4444;
}
.ring-offset-red-500\/0 {
  --tw-ring-offset-color: rgba(239, 68, 68, 0);
}
.ring-offset-red-500\/10 {
  --tw-ring-offset-color: rgba(239, 68, 68, 0.1);
}
.ring-offset-red-500\/100 {
  --tw-ring-offset-color: rgba(239, 68, 68, 1);
}
.ring-offset-red-500\/15 {
  --tw-ring-offset-color: rgba(239, 68, 68, 0.15);
}
.ring-offset-red-500\/20 {
  --tw-ring-offset-color: rgba(239, 68, 68, 0.2);
}
.ring-offset-red-500\/25 {
  --tw-ring-offset-color: rgba(239, 68, 68, 0.25);
}
.ring-offset-red-500\/30 {
  --tw-ring-offset-color: rgba(239, 68, 68, 0.3);
}
.ring-offset-red-500\/35 {
  --tw-ring-offset-color: rgba(239, 68, 68, 0.35);
}
.ring-offset-red-500\/40 {
  --tw-ring-offset-color: rgba(239, 68, 68, 0.4);
}
.ring-offset-red-500\/45 {
  --tw-ring-offset-color: rgba(239, 68, 68, 0.45);
}
.ring-offset-red-500\/5 {
  --tw-ring-offset-color: rgba(239, 68, 68, 0.05);
}
.ring-offset-red-500\/50 {
  --tw-ring-offset-color: rgba(239, 68, 68, 0.5);
}
.ring-offset-red-500\/55 {
  --tw-ring-offset-color: rgba(239, 68, 68, 0.55);
}
.ring-offset-red-500\/60 {
  --tw-ring-offset-color: rgba(239, 68, 68, 0.6);
}
.ring-offset-red-500\/65 {
  --tw-ring-offset-color: rgba(239, 68, 68, 0.65);
}
.ring-offset-red-500\/70 {
  --tw-ring-offset-color: rgba(239, 68, 68, 0.7);
}
.ring-offset-red-500\/75 {
  --tw-ring-offset-color: rgba(239, 68, 68, 0.75);
}
.ring-offset-red-500\/80 {
  --tw-ring-offset-color: rgba(239, 68, 68, 0.8);
}
.ring-offset-red-500\/85 {
  --tw-ring-offset-color: rgba(239, 68, 68, 0.85);
}
.ring-offset-red-500\/90 {
  --tw-ring-offset-color: rgba(239, 68, 68, 0.9);
}
.ring-offset-red-500\/95 {
  --tw-ring-offset-color: rgba(239, 68, 68, 0.95);
}
.ring-offset-red-600 {
  --tw-ring-offset-color: #dc2626;
}
.ring-offset-red-600\/0 {
  --tw-ring-offset-color: rgba(220, 38, 38, 0);
}
.ring-offset-red-600\/10 {
  --tw-ring-offset-color: rgba(220, 38, 38, 0.1);
}
.ring-offset-red-600\/100 {
  --tw-ring-offset-color: rgba(220, 38, 38, 1);
}
.ring-offset-red-600\/15 {
  --tw-ring-offset-color: rgba(220, 38, 38, 0.15);
}
.ring-offset-red-600\/20 {
  --tw-ring-offset-color: rgba(220, 38, 38, 0.2);
}
.ring-offset-red-600\/25 {
  --tw-ring-offset-color: rgba(220, 38, 38, 0.25);
}
.ring-offset-red-600\/30 {
  --tw-ring-offset-color: rgba(220, 38, 38, 0.3);
}
.ring-offset-red-600\/35 {
  --tw-ring-offset-color: rgba(220, 38, 38, 0.35);
}
.ring-offset-red-600\/40 {
  --tw-ring-offset-color: rgba(220, 38, 38, 0.4);
}
.ring-offset-red-600\/45 {
  --tw-ring-offset-color: rgba(220, 38, 38, 0.45);
}
.ring-offset-red-600\/5 {
  --tw-ring-offset-color: rgba(220, 38, 38, 0.05);
}
.ring-offset-red-600\/50 {
  --tw-ring-offset-color: rgba(220, 38, 38, 0.5);
}
.ring-offset-red-600\/55 {
  --tw-ring-offset-color: rgba(220, 38, 38, 0.55);
}
.ring-offset-red-600\/60 {
  --tw-ring-offset-color: rgba(220, 38, 38, 0.6);
}
.ring-offset-red-600\/65 {
  --tw-ring-offset-color: rgba(220, 38, 38, 0.65);
}
.ring-offset-red-600\/70 {
  --tw-ring-offset-color: rgba(220, 38, 38, 0.7);
}
.ring-offset-red-600\/75 {
  --tw-ring-offset-color: rgba(220, 38, 38, 0.75);
}
.ring-offset-red-600\/80 {
  --tw-ring-offset-color: rgba(220, 38, 38, 0.8);
}
.ring-offset-red-600\/85 {
  --tw-ring-offset-color: rgba(220, 38, 38, 0.85);
}
.ring-offset-red-600\/90 {
  --tw-ring-offset-color: rgba(220, 38, 38, 0.9);
}
.ring-offset-red-600\/95 {
  --tw-ring-offset-color: rgba(220, 38, 38, 0.95);
}
.ring-offset-red-700 {
  --tw-ring-offset-color: #b91c1c;
}
.ring-offset-red-700\/0 {
  --tw-ring-offset-color: rgba(185, 28, 28, 0);
}
.ring-offset-red-700\/10 {
  --tw-ring-offset-color: rgba(185, 28, 28, 0.1);
}
.ring-offset-red-700\/100 {
  --tw-ring-offset-color: rgba(185, 28, 28, 1);
}
.ring-offset-red-700\/15 {
  --tw-ring-offset-color: rgba(185, 28, 28, 0.15);
}
.ring-offset-red-700\/20 {
  --tw-ring-offset-color: rgba(185, 28, 28, 0.2);
}
.ring-offset-red-700\/25 {
  --tw-ring-offset-color: rgba(185, 28, 28, 0.25);
}
.ring-offset-red-700\/30 {
  --tw-ring-offset-color: rgba(185, 28, 28, 0.3);
}
.ring-offset-red-700\/35 {
  --tw-ring-offset-color: rgba(185, 28, 28, 0.35);
}
.ring-offset-red-700\/40 {
  --tw-ring-offset-color: rgba(185, 28, 28, 0.4);
}
.ring-offset-red-700\/45 {
  --tw-ring-offset-color: rgba(185, 28, 28, 0.45);
}
.ring-offset-red-700\/5 {
  --tw-ring-offset-color: rgba(185, 28, 28, 0.05);
}
.ring-offset-red-700\/50 {
  --tw-ring-offset-color: rgba(185, 28, 28, 0.5);
}
.ring-offset-red-700\/55 {
  --tw-ring-offset-color: rgba(185, 28, 28, 0.55);
}
.ring-offset-red-700\/60 {
  --tw-ring-offset-color: rgba(185, 28, 28, 0.6);
}
.ring-offset-red-700\/65 {
  --tw-ring-offset-color: rgba(185, 28, 28, 0.65);
}
.ring-offset-red-700\/70 {
  --tw-ring-offset-color: rgba(185, 28, 28, 0.7);
}
.ring-offset-red-700\/75 {
  --tw-ring-offset-color: rgba(185, 28, 28, 0.75);
}
.ring-offset-red-700\/80 {
  --tw-ring-offset-color: rgba(185, 28, 28, 0.8);
}
.ring-offset-red-700\/85 {
  --tw-ring-offset-color: rgba(185, 28, 28, 0.85);
}
.ring-offset-red-700\/90 {
  --tw-ring-offset-color: rgba(185, 28, 28, 0.9);
}
.ring-offset-red-700\/95 {
  --tw-ring-offset-color: rgba(185, 28, 28, 0.95);
}
.ring-offset-red-800 {
  --tw-ring-offset-color: #991b1b;
}
.ring-offset-red-800\/0 {
  --tw-ring-offset-color: rgba(153, 27, 27, 0);
}
.ring-offset-red-800\/10 {
  --tw-ring-offset-color: rgba(153, 27, 27, 0.1);
}
.ring-offset-red-800\/100 {
  --tw-ring-offset-color: rgba(153, 27, 27, 1);
}
.ring-offset-red-800\/15 {
  --tw-ring-offset-color: rgba(153, 27, 27, 0.15);
}
.ring-offset-red-800\/20 {
  --tw-ring-offset-color: rgba(153, 27, 27, 0.2);
}
.ring-offset-red-800\/25 {
  --tw-ring-offset-color: rgba(153, 27, 27, 0.25);
}
.ring-offset-red-800\/30 {
  --tw-ring-offset-color: rgba(153, 27, 27, 0.3);
}
.ring-offset-red-800\/35 {
  --tw-ring-offset-color: rgba(153, 27, 27, 0.35);
}
.ring-offset-red-800\/40 {
  --tw-ring-offset-color: rgba(153, 27, 27, 0.4);
}
.ring-offset-red-800\/45 {
  --tw-ring-offset-color: rgba(153, 27, 27, 0.45);
}
.ring-offset-red-800\/5 {
  --tw-ring-offset-color: rgba(153, 27, 27, 0.05);
}
.ring-offset-red-800\/50 {
  --tw-ring-offset-color: rgba(153, 27, 27, 0.5);
}
.ring-offset-red-800\/55 {
  --tw-ring-offset-color: rgba(153, 27, 27, 0.55);
}
.ring-offset-red-800\/60 {
  --tw-ring-offset-color: rgba(153, 27, 27, 0.6);
}
.ring-offset-red-800\/65 {
  --tw-ring-offset-color: rgba(153, 27, 27, 0.65);
}
.ring-offset-red-800\/70 {
  --tw-ring-offset-color: rgba(153, 27, 27, 0.7);
}
.ring-offset-red-800\/75 {
  --tw-ring-offset-color: rgba(153, 27, 27, 0.75);
}
.ring-offset-red-800\/80 {
  --tw-ring-offset-color: rgba(153, 27, 27, 0.8);
}
.ring-offset-red-800\/85 {
  --tw-ring-offset-color: rgba(153, 27, 27, 0.85);
}
.ring-offset-red-800\/90 {
  --tw-ring-offset-color: rgba(153, 27, 27, 0.9);
}
.ring-offset-red-800\/95 {
  --tw-ring-offset-color: rgba(153, 27, 27, 0.95);
}
.ring-offset-red-900 {
  --tw-ring-offset-color: #7f1d1d;
}
.ring-offset-red-900\/0 {
  --tw-ring-offset-color: rgba(127, 29, 29, 0);
}
.ring-offset-red-900\/10 {
  --tw-ring-offset-color: rgba(127, 29, 29, 0.1);
}
.ring-offset-red-900\/100 {
  --tw-ring-offset-color: rgba(127, 29, 29, 1);
}
.ring-offset-red-900\/15 {
  --tw-ring-offset-color: rgba(127, 29, 29, 0.15);
}
.ring-offset-red-900\/20 {
  --tw-ring-offset-color: rgba(127, 29, 29, 0.2);
}
.ring-offset-red-900\/25 {
  --tw-ring-offset-color: rgba(127, 29, 29, 0.25);
}
.ring-offset-red-900\/30 {
  --tw-ring-offset-color: rgba(127, 29, 29, 0.3);
}
.ring-offset-red-900\/35 {
  --tw-ring-offset-color: rgba(127, 29, 29, 0.35);
}
.ring-offset-red-900\/40 {
  --tw-ring-offset-color: rgba(127, 29, 29, 0.4);
}
.ring-offset-red-900\/45 {
  --tw-ring-offset-color: rgba(127, 29, 29, 0.45);
}
.ring-offset-red-900\/5 {
  --tw-ring-offset-color: rgba(127, 29, 29, 0.05);
}
.ring-offset-red-900\/50 {
  --tw-ring-offset-color: rgba(127, 29, 29, 0.5);
}
.ring-offset-red-900\/55 {
  --tw-ring-offset-color: rgba(127, 29, 29, 0.55);
}
.ring-offset-red-900\/60 {
  --tw-ring-offset-color: rgba(127, 29, 29, 0.6);
}
.ring-offset-red-900\/65 {
  --tw-ring-offset-color: rgba(127, 29, 29, 0.65);
}
.ring-offset-red-900\/70 {
  --tw-ring-offset-color: rgba(127, 29, 29, 0.7);
}
.ring-offset-red-900\/75 {
  --tw-ring-offset-color: rgba(127, 29, 29, 0.75);
}
.ring-offset-red-900\/80 {
  --tw-ring-offset-color: rgba(127, 29, 29, 0.8);
}
.ring-offset-red-900\/85 {
  --tw-ring-offset-color: rgba(127, 29, 29, 0.85);
}
.ring-offset-red-900\/90 {
  --tw-ring-offset-color: rgba(127, 29, 29, 0.9);
}
.ring-offset-red-900\/95 {
  --tw-ring-offset-color: rgba(127, 29, 29, 0.95);
}
.ring-offset-red-950 {
  --tw-ring-offset-color: #450a0a;
}
.ring-offset-red-950\/0 {
  --tw-ring-offset-color: rgba(69, 10, 10, 0);
}
.ring-offset-red-950\/10 {
  --tw-ring-offset-color: rgba(69, 10, 10, 0.1);
}
.ring-offset-red-950\/100 {
  --tw-ring-offset-color: rgba(69, 10, 10, 1);
}
.ring-offset-red-950\/15 {
  --tw-ring-offset-color: rgba(69, 10, 10, 0.15);
}
.ring-offset-red-950\/20 {
  --tw-ring-offset-color: rgba(69, 10, 10, 0.2);
}
.ring-offset-red-950\/25 {
  --tw-ring-offset-color: rgba(69, 10, 10, 0.25);
}
.ring-offset-red-950\/30 {
  --tw-ring-offset-color: rgba(69, 10, 10, 0.3);
}
.ring-offset-red-950\/35 {
  --tw-ring-offset-color: rgba(69, 10, 10, 0.35);
}
.ring-offset-red-950\/40 {
  --tw-ring-offset-color: rgba(69, 10, 10, 0.4);
}
.ring-offset-red-950\/45 {
  --tw-ring-offset-color: rgba(69, 10, 10, 0.45);
}
.ring-offset-red-950\/5 {
  --tw-ring-offset-color: rgba(69, 10, 10, 0.05);
}
.ring-offset-red-950\/50 {
  --tw-ring-offset-color: rgba(69, 10, 10, 0.5);
}
.ring-offset-red-950\/55 {
  --tw-ring-offset-color: rgba(69, 10, 10, 0.55);
}
.ring-offset-red-950\/60 {
  --tw-ring-offset-color: rgba(69, 10, 10, 0.6);
}
.ring-offset-red-950\/65 {
  --tw-ring-offset-color: rgba(69, 10, 10, 0.65);
}
.ring-offset-red-950\/70 {
  --tw-ring-offset-color: rgba(69, 10, 10, 0.7);
}
.ring-offset-red-950\/75 {
  --tw-ring-offset-color: rgba(69, 10, 10, 0.75);
}
.ring-offset-red-950\/80 {
  --tw-ring-offset-color: rgba(69, 10, 10, 0.8);
}
.ring-offset-red-950\/85 {
  --tw-ring-offset-color: rgba(69, 10, 10, 0.85);
}
.ring-offset-red-950\/90 {
  --tw-ring-offset-color: rgba(69, 10, 10, 0.9);
}
.ring-offset-red-950\/95 {
  --tw-ring-offset-color: rgba(69, 10, 10, 0.95);
}
.ring-offset-rose-100 {
  --tw-ring-offset-color: #ffe4e6;
}
.ring-offset-rose-100\/0 {
  --tw-ring-offset-color: rgba(255, 228, 230, 0);
}
.ring-offset-rose-100\/10 {
  --tw-ring-offset-color: rgba(255, 228, 230, 0.1);
}
.ring-offset-rose-100\/100 {
  --tw-ring-offset-color: rgba(255, 228, 230, 1);
}
.ring-offset-rose-100\/15 {
  --tw-ring-offset-color: rgba(255, 228, 230, 0.15);
}
.ring-offset-rose-100\/20 {
  --tw-ring-offset-color: rgba(255, 228, 230, 0.2);
}
.ring-offset-rose-100\/25 {
  --tw-ring-offset-color: rgba(255, 228, 230, 0.25);
}
.ring-offset-rose-100\/30 {
  --tw-ring-offset-color: rgba(255, 228, 230, 0.3);
}
.ring-offset-rose-100\/35 {
  --tw-ring-offset-color: rgba(255, 228, 230, 0.35);
}
.ring-offset-rose-100\/40 {
  --tw-ring-offset-color: rgba(255, 228, 230, 0.4);
}
.ring-offset-rose-100\/45 {
  --tw-ring-offset-color: rgba(255, 228, 230, 0.45);
}
.ring-offset-rose-100\/5 {
  --tw-ring-offset-color: rgba(255, 228, 230, 0.05);
}
.ring-offset-rose-100\/50 {
  --tw-ring-offset-color: rgba(255, 228, 230, 0.5);
}
.ring-offset-rose-100\/55 {
  --tw-ring-offset-color: rgba(255, 228, 230, 0.55);
}
.ring-offset-rose-100\/60 {
  --tw-ring-offset-color: rgba(255, 228, 230, 0.6);
}
.ring-offset-rose-100\/65 {
  --tw-ring-offset-color: rgba(255, 228, 230, 0.65);
}
.ring-offset-rose-100\/70 {
  --tw-ring-offset-color: rgba(255, 228, 230, 0.7);
}
.ring-offset-rose-100\/75 {
  --tw-ring-offset-color: rgba(255, 228, 230, 0.75);
}
.ring-offset-rose-100\/80 {
  --tw-ring-offset-color: rgba(255, 228, 230, 0.8);
}
.ring-offset-rose-100\/85 {
  --tw-ring-offset-color: rgba(255, 228, 230, 0.85);
}
.ring-offset-rose-100\/90 {
  --tw-ring-offset-color: rgba(255, 228, 230, 0.9);
}
.ring-offset-rose-100\/95 {
  --tw-ring-offset-color: rgba(255, 228, 230, 0.95);
}
.ring-offset-rose-200 {
  --tw-ring-offset-color: #fecdd3;
}
.ring-offset-rose-200\/0 {
  --tw-ring-offset-color: rgba(254, 205, 211, 0);
}
.ring-offset-rose-200\/10 {
  --tw-ring-offset-color: rgba(254, 205, 211, 0.1);
}
.ring-offset-rose-200\/100 {
  --tw-ring-offset-color: rgba(254, 205, 211, 1);
}
.ring-offset-rose-200\/15 {
  --tw-ring-offset-color: rgba(254, 205, 211, 0.15);
}
.ring-offset-rose-200\/20 {
  --tw-ring-offset-color: rgba(254, 205, 211, 0.2);
}
.ring-offset-rose-200\/25 {
  --tw-ring-offset-color: rgba(254, 205, 211, 0.25);
}
.ring-offset-rose-200\/30 {
  --tw-ring-offset-color: rgba(254, 205, 211, 0.3);
}
.ring-offset-rose-200\/35 {
  --tw-ring-offset-color: rgba(254, 205, 211, 0.35);
}
.ring-offset-rose-200\/40 {
  --tw-ring-offset-color: rgba(254, 205, 211, 0.4);
}
.ring-offset-rose-200\/45 {
  --tw-ring-offset-color: rgba(254, 205, 211, 0.45);
}
.ring-offset-rose-200\/5 {
  --tw-ring-offset-color: rgba(254, 205, 211, 0.05);
}
.ring-offset-rose-200\/50 {
  --tw-ring-offset-color: rgba(254, 205, 211, 0.5);
}
.ring-offset-rose-200\/55 {
  --tw-ring-offset-color: rgba(254, 205, 211, 0.55);
}
.ring-offset-rose-200\/60 {
  --tw-ring-offset-color: rgba(254, 205, 211, 0.6);
}
.ring-offset-rose-200\/65 {
  --tw-ring-offset-color: rgba(254, 205, 211, 0.65);
}
.ring-offset-rose-200\/70 {
  --tw-ring-offset-color: rgba(254, 205, 211, 0.7);
}
.ring-offset-rose-200\/75 {
  --tw-ring-offset-color: rgba(254, 205, 211, 0.75);
}
.ring-offset-rose-200\/80 {
  --tw-ring-offset-color: rgba(254, 205, 211, 0.8);
}
.ring-offset-rose-200\/85 {
  --tw-ring-offset-color: rgba(254, 205, 211, 0.85);
}
.ring-offset-rose-200\/90 {
  --tw-ring-offset-color: rgba(254, 205, 211, 0.9);
}
.ring-offset-rose-200\/95 {
  --tw-ring-offset-color: rgba(254, 205, 211, 0.95);
}
.ring-offset-rose-300 {
  --tw-ring-offset-color: #fda4af;
}
.ring-offset-rose-300\/0 {
  --tw-ring-offset-color: rgba(253, 164, 175, 0);
}
.ring-offset-rose-300\/10 {
  --tw-ring-offset-color: rgba(253, 164, 175, 0.1);
}
.ring-offset-rose-300\/100 {
  --tw-ring-offset-color: rgba(253, 164, 175, 1);
}
.ring-offset-rose-300\/15 {
  --tw-ring-offset-color: rgba(253, 164, 175, 0.15);
}
.ring-offset-rose-300\/20 {
  --tw-ring-offset-color: rgba(253, 164, 175, 0.2);
}
.ring-offset-rose-300\/25 {
  --tw-ring-offset-color: rgba(253, 164, 175, 0.25);
}
.ring-offset-rose-300\/30 {
  --tw-ring-offset-color: rgba(253, 164, 175, 0.3);
}
.ring-offset-rose-300\/35 {
  --tw-ring-offset-color: rgba(253, 164, 175, 0.35);
}
.ring-offset-rose-300\/40 {
  --tw-ring-offset-color: rgba(253, 164, 175, 0.4);
}
.ring-offset-rose-300\/45 {
  --tw-ring-offset-color: rgba(253, 164, 175, 0.45);
}
.ring-offset-rose-300\/5 {
  --tw-ring-offset-color: rgba(253, 164, 175, 0.05);
}
.ring-offset-rose-300\/50 {
  --tw-ring-offset-color: rgba(253, 164, 175, 0.5);
}
.ring-offset-rose-300\/55 {
  --tw-ring-offset-color: rgba(253, 164, 175, 0.55);
}
.ring-offset-rose-300\/60 {
  --tw-ring-offset-color: rgba(253, 164, 175, 0.6);
}
.ring-offset-rose-300\/65 {
  --tw-ring-offset-color: rgba(253, 164, 175, 0.65);
}
.ring-offset-rose-300\/70 {
  --tw-ring-offset-color: rgba(253, 164, 175, 0.7);
}
.ring-offset-rose-300\/75 {
  --tw-ring-offset-color: rgba(253, 164, 175, 0.75);
}
.ring-offset-rose-300\/80 {
  --tw-ring-offset-color: rgba(253, 164, 175, 0.8);
}
.ring-offset-rose-300\/85 {
  --tw-ring-offset-color: rgba(253, 164, 175, 0.85);
}
.ring-offset-rose-300\/90 {
  --tw-ring-offset-color: rgba(253, 164, 175, 0.9);
}
.ring-offset-rose-300\/95 {
  --tw-ring-offset-color: rgba(253, 164, 175, 0.95);
}
.ring-offset-rose-400 {
  --tw-ring-offset-color: #fb7185;
}
.ring-offset-rose-400\/0 {
  --tw-ring-offset-color: rgba(251, 113, 133, 0);
}
.ring-offset-rose-400\/10 {
  --tw-ring-offset-color: rgba(251, 113, 133, 0.1);
}
.ring-offset-rose-400\/100 {
  --tw-ring-offset-color: rgba(251, 113, 133, 1);
}
.ring-offset-rose-400\/15 {
  --tw-ring-offset-color: rgba(251, 113, 133, 0.15);
}
.ring-offset-rose-400\/20 {
  --tw-ring-offset-color: rgba(251, 113, 133, 0.2);
}
.ring-offset-rose-400\/25 {
  --tw-ring-offset-color: rgba(251, 113, 133, 0.25);
}
.ring-offset-rose-400\/30 {
  --tw-ring-offset-color: rgba(251, 113, 133, 0.3);
}
.ring-offset-rose-400\/35 {
  --tw-ring-offset-color: rgba(251, 113, 133, 0.35);
}
.ring-offset-rose-400\/40 {
  --tw-ring-offset-color: rgba(251, 113, 133, 0.4);
}
.ring-offset-rose-400\/45 {
  --tw-ring-offset-color: rgba(251, 113, 133, 0.45);
}
.ring-offset-rose-400\/5 {
  --tw-ring-offset-color: rgba(251, 113, 133, 0.05);
}
.ring-offset-rose-400\/50 {
  --tw-ring-offset-color: rgba(251, 113, 133, 0.5);
}
.ring-offset-rose-400\/55 {
  --tw-ring-offset-color: rgba(251, 113, 133, 0.55);
}
.ring-offset-rose-400\/60 {
  --tw-ring-offset-color: rgba(251, 113, 133, 0.6);
}
.ring-offset-rose-400\/65 {
  --tw-ring-offset-color: rgba(251, 113, 133, 0.65);
}
.ring-offset-rose-400\/70 {
  --tw-ring-offset-color: rgba(251, 113, 133, 0.7);
}
.ring-offset-rose-400\/75 {
  --tw-ring-offset-color: rgba(251, 113, 133, 0.75);
}
.ring-offset-rose-400\/80 {
  --tw-ring-offset-color: rgba(251, 113, 133, 0.8);
}
.ring-offset-rose-400\/85 {
  --tw-ring-offset-color: rgba(251, 113, 133, 0.85);
}
.ring-offset-rose-400\/90 {
  --tw-ring-offset-color: rgba(251, 113, 133, 0.9);
}
.ring-offset-rose-400\/95 {
  --tw-ring-offset-color: rgba(251, 113, 133, 0.95);
}
.ring-offset-rose-50 {
  --tw-ring-offset-color: #fff1f2;
}
.ring-offset-rose-50\/0 {
  --tw-ring-offset-color: rgba(255, 241, 242, 0);
}
.ring-offset-rose-50\/10 {
  --tw-ring-offset-color: rgba(255, 241, 242, 0.1);
}
.ring-offset-rose-50\/100 {
  --tw-ring-offset-color: rgba(255, 241, 242, 1);
}
.ring-offset-rose-50\/15 {
  --tw-ring-offset-color: rgba(255, 241, 242, 0.15);
}
.ring-offset-rose-50\/20 {
  --tw-ring-offset-color: rgba(255, 241, 242, 0.2);
}
.ring-offset-rose-50\/25 {
  --tw-ring-offset-color: rgba(255, 241, 242, 0.25);
}
.ring-offset-rose-50\/30 {
  --tw-ring-offset-color: rgba(255, 241, 242, 0.3);
}
.ring-offset-rose-50\/35 {
  --tw-ring-offset-color: rgba(255, 241, 242, 0.35);
}
.ring-offset-rose-50\/40 {
  --tw-ring-offset-color: rgba(255, 241, 242, 0.4);
}
.ring-offset-rose-50\/45 {
  --tw-ring-offset-color: rgba(255, 241, 242, 0.45);
}
.ring-offset-rose-50\/5 {
  --tw-ring-offset-color: rgba(255, 241, 242, 0.05);
}
.ring-offset-rose-50\/50 {
  --tw-ring-offset-color: rgba(255, 241, 242, 0.5);
}
.ring-offset-rose-50\/55 {
  --tw-ring-offset-color: rgba(255, 241, 242, 0.55);
}
.ring-offset-rose-50\/60 {
  --tw-ring-offset-color: rgba(255, 241, 242, 0.6);
}
.ring-offset-rose-50\/65 {
  --tw-ring-offset-color: rgba(255, 241, 242, 0.65);
}
.ring-offset-rose-50\/70 {
  --tw-ring-offset-color: rgba(255, 241, 242, 0.7);
}
.ring-offset-rose-50\/75 {
  --tw-ring-offset-color: rgba(255, 241, 242, 0.75);
}
.ring-offset-rose-50\/80 {
  --tw-ring-offset-color: rgba(255, 241, 242, 0.8);
}
.ring-offset-rose-50\/85 {
  --tw-ring-offset-color: rgba(255, 241, 242, 0.85);
}
.ring-offset-rose-50\/90 {
  --tw-ring-offset-color: rgba(255, 241, 242, 0.9);
}
.ring-offset-rose-50\/95 {
  --tw-ring-offset-color: rgba(255, 241, 242, 0.95);
}
.ring-offset-rose-500 {
  --tw-ring-offset-color: #f43f5e;
}
.ring-offset-rose-500\/0 {
  --tw-ring-offset-color: rgba(244, 63, 94, 0);
}
.ring-offset-rose-500\/10 {
  --tw-ring-offset-color: rgba(244, 63, 94, 0.1);
}
.ring-offset-rose-500\/100 {
  --tw-ring-offset-color: rgba(244, 63, 94, 1);
}
.ring-offset-rose-500\/15 {
  --tw-ring-offset-color: rgba(244, 63, 94, 0.15);
}
.ring-offset-rose-500\/20 {
  --tw-ring-offset-color: rgba(244, 63, 94, 0.2);
}
.ring-offset-rose-500\/25 {
  --tw-ring-offset-color: rgba(244, 63, 94, 0.25);
}
.ring-offset-rose-500\/30 {
  --tw-ring-offset-color: rgba(244, 63, 94, 0.3);
}
.ring-offset-rose-500\/35 {
  --tw-ring-offset-color: rgba(244, 63, 94, 0.35);
}
.ring-offset-rose-500\/40 {
  --tw-ring-offset-color: rgba(244, 63, 94, 0.4);
}
.ring-offset-rose-500\/45 {
  --tw-ring-offset-color: rgba(244, 63, 94, 0.45);
}
.ring-offset-rose-500\/5 {
  --tw-ring-offset-color: rgba(244, 63, 94, 0.05);
}
.ring-offset-rose-500\/50 {
  --tw-ring-offset-color: rgba(244, 63, 94, 0.5);
}
.ring-offset-rose-500\/55 {
  --tw-ring-offset-color: rgba(244, 63, 94, 0.55);
}
.ring-offset-rose-500\/60 {
  --tw-ring-offset-color: rgba(244, 63, 94, 0.6);
}
.ring-offset-rose-500\/65 {
  --tw-ring-offset-color: rgba(244, 63, 94, 0.65);
}
.ring-offset-rose-500\/70 {
  --tw-ring-offset-color: rgba(244, 63, 94, 0.7);
}
.ring-offset-rose-500\/75 {
  --tw-ring-offset-color: rgba(244, 63, 94, 0.75);
}
.ring-offset-rose-500\/80 {
  --tw-ring-offset-color: rgba(244, 63, 94, 0.8);
}
.ring-offset-rose-500\/85 {
  --tw-ring-offset-color: rgba(244, 63, 94, 0.85);
}
.ring-offset-rose-500\/90 {
  --tw-ring-offset-color: rgba(244, 63, 94, 0.9);
}
.ring-offset-rose-500\/95 {
  --tw-ring-offset-color: rgba(244, 63, 94, 0.95);
}
.ring-offset-rose-600 {
  --tw-ring-offset-color: #e11d48;
}
.ring-offset-rose-600\/0 {
  --tw-ring-offset-color: rgba(225, 29, 72, 0);
}
.ring-offset-rose-600\/10 {
  --tw-ring-offset-color: rgba(225, 29, 72, 0.1);
}
.ring-offset-rose-600\/100 {
  --tw-ring-offset-color: rgba(225, 29, 72, 1);
}
.ring-offset-rose-600\/15 {
  --tw-ring-offset-color: rgba(225, 29, 72, 0.15);
}
.ring-offset-rose-600\/20 {
  --tw-ring-offset-color: rgba(225, 29, 72, 0.2);
}
.ring-offset-rose-600\/25 {
  --tw-ring-offset-color: rgba(225, 29, 72, 0.25);
}
.ring-offset-rose-600\/30 {
  --tw-ring-offset-color: rgba(225, 29, 72, 0.3);
}
.ring-offset-rose-600\/35 {
  --tw-ring-offset-color: rgba(225, 29, 72, 0.35);
}
.ring-offset-rose-600\/40 {
  --tw-ring-offset-color: rgba(225, 29, 72, 0.4);
}
.ring-offset-rose-600\/45 {
  --tw-ring-offset-color: rgba(225, 29, 72, 0.45);
}
.ring-offset-rose-600\/5 {
  --tw-ring-offset-color: rgba(225, 29, 72, 0.05);
}
.ring-offset-rose-600\/50 {
  --tw-ring-offset-color: rgba(225, 29, 72, 0.5);
}
.ring-offset-rose-600\/55 {
  --tw-ring-offset-color: rgba(225, 29, 72, 0.55);
}
.ring-offset-rose-600\/60 {
  --tw-ring-offset-color: rgba(225, 29, 72, 0.6);
}
.ring-offset-rose-600\/65 {
  --tw-ring-offset-color: rgba(225, 29, 72, 0.65);
}
.ring-offset-rose-600\/70 {
  --tw-ring-offset-color: rgba(225, 29, 72, 0.7);
}
.ring-offset-rose-600\/75 {
  --tw-ring-offset-color: rgba(225, 29, 72, 0.75);
}
.ring-offset-rose-600\/80 {
  --tw-ring-offset-color: rgba(225, 29, 72, 0.8);
}
.ring-offset-rose-600\/85 {
  --tw-ring-offset-color: rgba(225, 29, 72, 0.85);
}
.ring-offset-rose-600\/90 {
  --tw-ring-offset-color: rgba(225, 29, 72, 0.9);
}
.ring-offset-rose-600\/95 {
  --tw-ring-offset-color: rgba(225, 29, 72, 0.95);
}
.ring-offset-rose-700 {
  --tw-ring-offset-color: #be123c;
}
.ring-offset-rose-700\/0 {
  --tw-ring-offset-color: rgba(190, 18, 60, 0);
}
.ring-offset-rose-700\/10 {
  --tw-ring-offset-color: rgba(190, 18, 60, 0.1);
}
.ring-offset-rose-700\/100 {
  --tw-ring-offset-color: rgba(190, 18, 60, 1);
}
.ring-offset-rose-700\/15 {
  --tw-ring-offset-color: rgba(190, 18, 60, 0.15);
}
.ring-offset-rose-700\/20 {
  --tw-ring-offset-color: rgba(190, 18, 60, 0.2);
}
.ring-offset-rose-700\/25 {
  --tw-ring-offset-color: rgba(190, 18, 60, 0.25);
}
.ring-offset-rose-700\/30 {
  --tw-ring-offset-color: rgba(190, 18, 60, 0.3);
}
.ring-offset-rose-700\/35 {
  --tw-ring-offset-color: rgba(190, 18, 60, 0.35);
}
.ring-offset-rose-700\/40 {
  --tw-ring-offset-color: rgba(190, 18, 60, 0.4);
}
.ring-offset-rose-700\/45 {
  --tw-ring-offset-color: rgba(190, 18, 60, 0.45);
}
.ring-offset-rose-700\/5 {
  --tw-ring-offset-color: rgba(190, 18, 60, 0.05);
}
.ring-offset-rose-700\/50 {
  --tw-ring-offset-color: rgba(190, 18, 60, 0.5);
}
.ring-offset-rose-700\/55 {
  --tw-ring-offset-color: rgba(190, 18, 60, 0.55);
}
.ring-offset-rose-700\/60 {
  --tw-ring-offset-color: rgba(190, 18, 60, 0.6);
}
.ring-offset-rose-700\/65 {
  --tw-ring-offset-color: rgba(190, 18, 60, 0.65);
}
.ring-offset-rose-700\/70 {
  --tw-ring-offset-color: rgba(190, 18, 60, 0.7);
}
.ring-offset-rose-700\/75 {
  --tw-ring-offset-color: rgba(190, 18, 60, 0.75);
}
.ring-offset-rose-700\/80 {
  --tw-ring-offset-color: rgba(190, 18, 60, 0.8);
}
.ring-offset-rose-700\/85 {
  --tw-ring-offset-color: rgba(190, 18, 60, 0.85);
}
.ring-offset-rose-700\/90 {
  --tw-ring-offset-color: rgba(190, 18, 60, 0.9);
}
.ring-offset-rose-700\/95 {
  --tw-ring-offset-color: rgba(190, 18, 60, 0.95);
}
.ring-offset-rose-800 {
  --tw-ring-offset-color: #9f1239;
}
.ring-offset-rose-800\/0 {
  --tw-ring-offset-color: rgba(159, 18, 57, 0);
}
.ring-offset-rose-800\/10 {
  --tw-ring-offset-color: rgba(159, 18, 57, 0.1);
}
.ring-offset-rose-800\/100 {
  --tw-ring-offset-color: rgba(159, 18, 57, 1);
}
.ring-offset-rose-800\/15 {
  --tw-ring-offset-color: rgba(159, 18, 57, 0.15);
}
.ring-offset-rose-800\/20 {
  --tw-ring-offset-color: rgba(159, 18, 57, 0.2);
}
.ring-offset-rose-800\/25 {
  --tw-ring-offset-color: rgba(159, 18, 57, 0.25);
}
.ring-offset-rose-800\/30 {
  --tw-ring-offset-color: rgba(159, 18, 57, 0.3);
}
.ring-offset-rose-800\/35 {
  --tw-ring-offset-color: rgba(159, 18, 57, 0.35);
}
.ring-offset-rose-800\/40 {
  --tw-ring-offset-color: rgba(159, 18, 57, 0.4);
}
.ring-offset-rose-800\/45 {
  --tw-ring-offset-color: rgba(159, 18, 57, 0.45);
}
.ring-offset-rose-800\/5 {
  --tw-ring-offset-color: rgba(159, 18, 57, 0.05);
}
.ring-offset-rose-800\/50 {
  --tw-ring-offset-color: rgba(159, 18, 57, 0.5);
}
.ring-offset-rose-800\/55 {
  --tw-ring-offset-color: rgba(159, 18, 57, 0.55);
}
.ring-offset-rose-800\/60 {
  --tw-ring-offset-color: rgba(159, 18, 57, 0.6);
}
.ring-offset-rose-800\/65 {
  --tw-ring-offset-color: rgba(159, 18, 57, 0.65);
}
.ring-offset-rose-800\/70 {
  --tw-ring-offset-color: rgba(159, 18, 57, 0.7);
}
.ring-offset-rose-800\/75 {
  --tw-ring-offset-color: rgba(159, 18, 57, 0.75);
}
.ring-offset-rose-800\/80 {
  --tw-ring-offset-color: rgba(159, 18, 57, 0.8);
}
.ring-offset-rose-800\/85 {
  --tw-ring-offset-color: rgba(159, 18, 57, 0.85);
}
.ring-offset-rose-800\/90 {
  --tw-ring-offset-color: rgba(159, 18, 57, 0.9);
}
.ring-offset-rose-800\/95 {
  --tw-ring-offset-color: rgba(159, 18, 57, 0.95);
}
.ring-offset-rose-900 {
  --tw-ring-offset-color: #881337;
}
.ring-offset-rose-900\/0 {
  --tw-ring-offset-color: rgba(136, 19, 55, 0);
}
.ring-offset-rose-900\/10 {
  --tw-ring-offset-color: rgba(136, 19, 55, 0.1);
}
.ring-offset-rose-900\/100 {
  --tw-ring-offset-color: rgba(136, 19, 55, 1);
}
.ring-offset-rose-900\/15 {
  --tw-ring-offset-color: rgba(136, 19, 55, 0.15);
}
.ring-offset-rose-900\/20 {
  --tw-ring-offset-color: rgba(136, 19, 55, 0.2);
}
.ring-offset-rose-900\/25 {
  --tw-ring-offset-color: rgba(136, 19, 55, 0.25);
}
.ring-offset-rose-900\/30 {
  --tw-ring-offset-color: rgba(136, 19, 55, 0.3);
}
.ring-offset-rose-900\/35 {
  --tw-ring-offset-color: rgba(136, 19, 55, 0.35);
}
.ring-offset-rose-900\/40 {
  --tw-ring-offset-color: rgba(136, 19, 55, 0.4);
}
.ring-offset-rose-900\/45 {
  --tw-ring-offset-color: rgba(136, 19, 55, 0.45);
}
.ring-offset-rose-900\/5 {
  --tw-ring-offset-color: rgba(136, 19, 55, 0.05);
}
.ring-offset-rose-900\/50 {
  --tw-ring-offset-color: rgba(136, 19, 55, 0.5);
}
.ring-offset-rose-900\/55 {
  --tw-ring-offset-color: rgba(136, 19, 55, 0.55);
}
.ring-offset-rose-900\/60 {
  --tw-ring-offset-color: rgba(136, 19, 55, 0.6);
}
.ring-offset-rose-900\/65 {
  --tw-ring-offset-color: rgba(136, 19, 55, 0.65);
}
.ring-offset-rose-900\/70 {
  --tw-ring-offset-color: rgba(136, 19, 55, 0.7);
}
.ring-offset-rose-900\/75 {
  --tw-ring-offset-color: rgba(136, 19, 55, 0.75);
}
.ring-offset-rose-900\/80 {
  --tw-ring-offset-color: rgba(136, 19, 55, 0.8);
}
.ring-offset-rose-900\/85 {
  --tw-ring-offset-color: rgba(136, 19, 55, 0.85);
}
.ring-offset-rose-900\/90 {
  --tw-ring-offset-color: rgba(136, 19, 55, 0.9);
}
.ring-offset-rose-900\/95 {
  --tw-ring-offset-color: rgba(136, 19, 55, 0.95);
}
.ring-offset-rose-950 {
  --tw-ring-offset-color: #4c0519;
}
.ring-offset-rose-950\/0 {
  --tw-ring-offset-color: rgba(76, 5, 25, 0);
}
.ring-offset-rose-950\/10 {
  --tw-ring-offset-color: rgba(76, 5, 25, 0.1);
}
.ring-offset-rose-950\/100 {
  --tw-ring-offset-color: rgba(76, 5, 25, 1);
}
.ring-offset-rose-950\/15 {
  --tw-ring-offset-color: rgba(76, 5, 25, 0.15);
}
.ring-offset-rose-950\/20 {
  --tw-ring-offset-color: rgba(76, 5, 25, 0.2);
}
.ring-offset-rose-950\/25 {
  --tw-ring-offset-color: rgba(76, 5, 25, 0.25);
}
.ring-offset-rose-950\/30 {
  --tw-ring-offset-color: rgba(76, 5, 25, 0.3);
}
.ring-offset-rose-950\/35 {
  --tw-ring-offset-color: rgba(76, 5, 25, 0.35);
}
.ring-offset-rose-950\/40 {
  --tw-ring-offset-color: rgba(76, 5, 25, 0.4);
}
.ring-offset-rose-950\/45 {
  --tw-ring-offset-color: rgba(76, 5, 25, 0.45);
}
.ring-offset-rose-950\/5 {
  --tw-ring-offset-color: rgba(76, 5, 25, 0.05);
}
.ring-offset-rose-950\/50 {
  --tw-ring-offset-color: rgba(76, 5, 25, 0.5);
}
.ring-offset-rose-950\/55 {
  --tw-ring-offset-color: rgba(76, 5, 25, 0.55);
}
.ring-offset-rose-950\/60 {
  --tw-ring-offset-color: rgba(76, 5, 25, 0.6);
}
.ring-offset-rose-950\/65 {
  --tw-ring-offset-color: rgba(76, 5, 25, 0.65);
}
.ring-offset-rose-950\/70 {
  --tw-ring-offset-color: rgba(76, 5, 25, 0.7);
}
.ring-offset-rose-950\/75 {
  --tw-ring-offset-color: rgba(76, 5, 25, 0.75);
}
.ring-offset-rose-950\/80 {
  --tw-ring-offset-color: rgba(76, 5, 25, 0.8);
}
.ring-offset-rose-950\/85 {
  --tw-ring-offset-color: rgba(76, 5, 25, 0.85);
}
.ring-offset-rose-950\/90 {
  --tw-ring-offset-color: rgba(76, 5, 25, 0.9);
}
.ring-offset-rose-950\/95 {
  --tw-ring-offset-color: rgba(76, 5, 25, 0.95);
}
.ring-offset-secondary {
  --tw-ring-offset-color: var(--fallback-s,oklch(var(--s)/1));
}
.ring-offset-secondary-content {
  --tw-ring-offset-color: var(--fallback-sc,oklch(var(--sc)/1));
}
.ring-offset-secondary-content\/0 {
  --tw-ring-offset-color: var(--fallback-sc,oklch(var(--sc)/0));
}
.ring-offset-secondary-content\/10 {
  --tw-ring-offset-color: var(--fallback-sc,oklch(var(--sc)/0.1));
}
.ring-offset-secondary-content\/100 {
  --tw-ring-offset-color: var(--fallback-sc,oklch(var(--sc)/1));
}
.ring-offset-secondary-content\/15 {
  --tw-ring-offset-color: var(--fallback-sc,oklch(var(--sc)/0.15));
}
.ring-offset-secondary-content\/20 {
  --tw-ring-offset-color: var(--fallback-sc,oklch(var(--sc)/0.2));
}
.ring-offset-secondary-content\/25 {
  --tw-ring-offset-color: var(--fallback-sc,oklch(var(--sc)/0.25));
}
.ring-offset-secondary-content\/30 {
  --tw-ring-offset-color: var(--fallback-sc,oklch(var(--sc)/0.3));
}
.ring-offset-secondary-content\/35 {
  --tw-ring-offset-color: var(--fallback-sc,oklch(var(--sc)/0.35));
}
.ring-offset-secondary-content\/40 {
  --tw-ring-offset-color: var(--fallback-sc,oklch(var(--sc)/0.4));
}
.ring-offset-secondary-content\/45 {
  --tw-ring-offset-color: var(--fallback-sc,oklch(var(--sc)/0.45));
}
.ring-offset-secondary-content\/5 {
  --tw-ring-offset-color: var(--fallback-sc,oklch(var(--sc)/0.05));
}
.ring-offset-secondary-content\/50 {
  --tw-ring-offset-color: var(--fallback-sc,oklch(var(--sc)/0.5));
}
.ring-offset-secondary-content\/55 {
  --tw-ring-offset-color: var(--fallback-sc,oklch(var(--sc)/0.55));
}
.ring-offset-secondary-content\/60 {
  --tw-ring-offset-color: var(--fallback-sc,oklch(var(--sc)/0.6));
}
.ring-offset-secondary-content\/65 {
  --tw-ring-offset-color: var(--fallback-sc,oklch(var(--sc)/0.65));
}
.ring-offset-secondary-content\/70 {
  --tw-ring-offset-color: var(--fallback-sc,oklch(var(--sc)/0.7));
}
.ring-offset-secondary-content\/75 {
  --tw-ring-offset-color: var(--fallback-sc,oklch(var(--sc)/0.75));
}
.ring-offset-secondary-content\/80 {
  --tw-ring-offset-color: var(--fallback-sc,oklch(var(--sc)/0.8));
}
.ring-offset-secondary-content\/85 {
  --tw-ring-offset-color: var(--fallback-sc,oklch(var(--sc)/0.85));
}
.ring-offset-secondary-content\/90 {
  --tw-ring-offset-color: var(--fallback-sc,oklch(var(--sc)/0.9));
}
.ring-offset-secondary-content\/95 {
  --tw-ring-offset-color: var(--fallback-sc,oklch(var(--sc)/0.95));
}
.ring-offset-secondary\/0 {
  --tw-ring-offset-color: var(--fallback-s,oklch(var(--s)/0));
}
.ring-offset-secondary\/10 {
  --tw-ring-offset-color: var(--fallback-s,oklch(var(--s)/0.1));
}
.ring-offset-secondary\/100 {
  --tw-ring-offset-color: var(--fallback-s,oklch(var(--s)/1));
}
.ring-offset-secondary\/15 {
  --tw-ring-offset-color: var(--fallback-s,oklch(var(--s)/0.15));
}
.ring-offset-secondary\/20 {
  --tw-ring-offset-color: var(--fallback-s,oklch(var(--s)/0.2));
}
.ring-offset-secondary\/25 {
  --tw-ring-offset-color: var(--fallback-s,oklch(var(--s)/0.25));
}
.ring-offset-secondary\/30 {
  --tw-ring-offset-color: var(--fallback-s,oklch(var(--s)/0.3));
}
.ring-offset-secondary\/35 {
  --tw-ring-offset-color: var(--fallback-s,oklch(var(--s)/0.35));
}
.ring-offset-secondary\/40 {
  --tw-ring-offset-color: var(--fallback-s,oklch(var(--s)/0.4));
}
.ring-offset-secondary\/45 {
  --tw-ring-offset-color: var(--fallback-s,oklch(var(--s)/0.45));
}
.ring-offset-secondary\/5 {
  --tw-ring-offset-color: var(--fallback-s,oklch(var(--s)/0.05));
}
.ring-offset-secondary\/50 {
  --tw-ring-offset-color: var(--fallback-s,oklch(var(--s)/0.5));
}
.ring-offset-secondary\/55 {
  --tw-ring-offset-color: var(--fallback-s,oklch(var(--s)/0.55));
}
.ring-offset-secondary\/60 {
  --tw-ring-offset-color: var(--fallback-s,oklch(var(--s)/0.6));
}
.ring-offset-secondary\/65 {
  --tw-ring-offset-color: var(--fallback-s,oklch(var(--s)/0.65));
}
.ring-offset-secondary\/70 {
  --tw-ring-offset-color: var(--fallback-s,oklch(var(--s)/0.7));
}
.ring-offset-secondary\/75 {
  --tw-ring-offset-color: var(--fallback-s,oklch(var(--s)/0.75));
}
.ring-offset-secondary\/80 {
  --tw-ring-offset-color: var(--fallback-s,oklch(var(--s)/0.8));
}
.ring-offset-secondary\/85 {
  --tw-ring-offset-color: var(--fallback-s,oklch(var(--s)/0.85));
}
.ring-offset-secondary\/90 {
  --tw-ring-offset-color: var(--fallback-s,oklch(var(--s)/0.9));
}
.ring-offset-secondary\/95 {
  --tw-ring-offset-color: var(--fallback-s,oklch(var(--s)/0.95));
}
.ring-offset-sky-100 {
  --tw-ring-offset-color: #e0f2fe;
}
.ring-offset-sky-100\/0 {
  --tw-ring-offset-color: rgba(224, 242, 254, 0);
}
.ring-offset-sky-100\/10 {
  --tw-ring-offset-color: rgba(224, 242, 254, 0.1);
}
.ring-offset-sky-100\/100 {
  --tw-ring-offset-color: rgba(224, 242, 254, 1);
}
.ring-offset-sky-100\/15 {
  --tw-ring-offset-color: rgba(224, 242, 254, 0.15);
}
.ring-offset-sky-100\/20 {
  --tw-ring-offset-color: rgba(224, 242, 254, 0.2);
}
.ring-offset-sky-100\/25 {
  --tw-ring-offset-color: rgba(224, 242, 254, 0.25);
}
.ring-offset-sky-100\/30 {
  --tw-ring-offset-color: rgba(224, 242, 254, 0.3);
}
.ring-offset-sky-100\/35 {
  --tw-ring-offset-color: rgba(224, 242, 254, 0.35);
}
.ring-offset-sky-100\/40 {
  --tw-ring-offset-color: rgba(224, 242, 254, 0.4);
}
.ring-offset-sky-100\/45 {
  --tw-ring-offset-color: rgba(224, 242, 254, 0.45);
}
.ring-offset-sky-100\/5 {
  --tw-ring-offset-color: rgba(224, 242, 254, 0.05);
}
.ring-offset-sky-100\/50 {
  --tw-ring-offset-color: rgba(224, 242, 254, 0.5);
}
.ring-offset-sky-100\/55 {
  --tw-ring-offset-color: rgba(224, 242, 254, 0.55);
}
.ring-offset-sky-100\/60 {
  --tw-ring-offset-color: rgba(224, 242, 254, 0.6);
}
.ring-offset-sky-100\/65 {
  --tw-ring-offset-color: rgba(224, 242, 254, 0.65);
}
.ring-offset-sky-100\/70 {
  --tw-ring-offset-color: rgba(224, 242, 254, 0.7);
}
.ring-offset-sky-100\/75 {
  --tw-ring-offset-color: rgba(224, 242, 254, 0.75);
}
.ring-offset-sky-100\/80 {
  --tw-ring-offset-color: rgba(224, 242, 254, 0.8);
}
.ring-offset-sky-100\/85 {
  --tw-ring-offset-color: rgba(224, 242, 254, 0.85);
}
.ring-offset-sky-100\/90 {
  --tw-ring-offset-color: rgba(224, 242, 254, 0.9);
}
.ring-offset-sky-100\/95 {
  --tw-ring-offset-color: rgba(224, 242, 254, 0.95);
}
.ring-offset-sky-200 {
  --tw-ring-offset-color: #bae6fd;
}
.ring-offset-sky-200\/0 {
  --tw-ring-offset-color: rgba(186, 230, 253, 0);
}
.ring-offset-sky-200\/10 {
  --tw-ring-offset-color: rgba(186, 230, 253, 0.1);
}
.ring-offset-sky-200\/100 {
  --tw-ring-offset-color: rgba(186, 230, 253, 1);
}
.ring-offset-sky-200\/15 {
  --tw-ring-offset-color: rgba(186, 230, 253, 0.15);
}
.ring-offset-sky-200\/20 {
  --tw-ring-offset-color: rgba(186, 230, 253, 0.2);
}
.ring-offset-sky-200\/25 {
  --tw-ring-offset-color: rgba(186, 230, 253, 0.25);
}
.ring-offset-sky-200\/30 {
  --tw-ring-offset-color: rgba(186, 230, 253, 0.3);
}
.ring-offset-sky-200\/35 {
  --tw-ring-offset-color: rgba(186, 230, 253, 0.35);
}
.ring-offset-sky-200\/40 {
  --tw-ring-offset-color: rgba(186, 230, 253, 0.4);
}
.ring-offset-sky-200\/45 {
  --tw-ring-offset-color: rgba(186, 230, 253, 0.45);
}
.ring-offset-sky-200\/5 {
  --tw-ring-offset-color: rgba(186, 230, 253, 0.05);
}
.ring-offset-sky-200\/50 {
  --tw-ring-offset-color: rgba(186, 230, 253, 0.5);
}
.ring-offset-sky-200\/55 {
  --tw-ring-offset-color: rgba(186, 230, 253, 0.55);
}
.ring-offset-sky-200\/60 {
  --tw-ring-offset-color: rgba(186, 230, 253, 0.6);
}
.ring-offset-sky-200\/65 {
  --tw-ring-offset-color: rgba(186, 230, 253, 0.65);
}
.ring-offset-sky-200\/70 {
  --tw-ring-offset-color: rgba(186, 230, 253, 0.7);
}
.ring-offset-sky-200\/75 {
  --tw-ring-offset-color: rgba(186, 230, 253, 0.75);
}
.ring-offset-sky-200\/80 {
  --tw-ring-offset-color: rgba(186, 230, 253, 0.8);
}
.ring-offset-sky-200\/85 {
  --tw-ring-offset-color: rgba(186, 230, 253, 0.85);
}
.ring-offset-sky-200\/90 {
  --tw-ring-offset-color: rgba(186, 230, 253, 0.9);
}
.ring-offset-sky-200\/95 {
  --tw-ring-offset-color: rgba(186, 230, 253, 0.95);
}
.ring-offset-sky-300 {
  --tw-ring-offset-color: #7dd3fc;
}
.ring-offset-sky-300\/0 {
  --tw-ring-offset-color: rgba(125, 211, 252, 0);
}
.ring-offset-sky-300\/10 {
  --tw-ring-offset-color: rgba(125, 211, 252, 0.1);
}
.ring-offset-sky-300\/100 {
  --tw-ring-offset-color: rgba(125, 211, 252, 1);
}
.ring-offset-sky-300\/15 {
  --tw-ring-offset-color: rgba(125, 211, 252, 0.15);
}
.ring-offset-sky-300\/20 {
  --tw-ring-offset-color: rgba(125, 211, 252, 0.2);
}
.ring-offset-sky-300\/25 {
  --tw-ring-offset-color: rgba(125, 211, 252, 0.25);
}
.ring-offset-sky-300\/30 {
  --tw-ring-offset-color: rgba(125, 211, 252, 0.3);
}
.ring-offset-sky-300\/35 {
  --tw-ring-offset-color: rgba(125, 211, 252, 0.35);
}
.ring-offset-sky-300\/40 {
  --tw-ring-offset-color: rgba(125, 211, 252, 0.4);
}
.ring-offset-sky-300\/45 {
  --tw-ring-offset-color: rgba(125, 211, 252, 0.45);
}
.ring-offset-sky-300\/5 {
  --tw-ring-offset-color: rgba(125, 211, 252, 0.05);
}
.ring-offset-sky-300\/50 {
  --tw-ring-offset-color: rgba(125, 211, 252, 0.5);
}
.ring-offset-sky-300\/55 {
  --tw-ring-offset-color: rgba(125, 211, 252, 0.55);
}
.ring-offset-sky-300\/60 {
  --tw-ring-offset-color: rgba(125, 211, 252, 0.6);
}
.ring-offset-sky-300\/65 {
  --tw-ring-offset-color: rgba(125, 211, 252, 0.65);
}
.ring-offset-sky-300\/70 {
  --tw-ring-offset-color: rgba(125, 211, 252, 0.7);
}
.ring-offset-sky-300\/75 {
  --tw-ring-offset-color: rgba(125, 211, 252, 0.75);
}
.ring-offset-sky-300\/80 {
  --tw-ring-offset-color: rgba(125, 211, 252, 0.8);
}
.ring-offset-sky-300\/85 {
  --tw-ring-offset-color: rgba(125, 211, 252, 0.85);
}
.ring-offset-sky-300\/90 {
  --tw-ring-offset-color: rgba(125, 211, 252, 0.9);
}
.ring-offset-sky-300\/95 {
  --tw-ring-offset-color: rgba(125, 211, 252, 0.95);
}
.ring-offset-sky-400 {
  --tw-ring-offset-color: #38bdf8;
}
.ring-offset-sky-400\/0 {
  --tw-ring-offset-color: rgba(56, 189, 248, 0);
}
.ring-offset-sky-400\/10 {
  --tw-ring-offset-color: rgba(56, 189, 248, 0.1);
}
.ring-offset-sky-400\/100 {
  --tw-ring-offset-color: rgba(56, 189, 248, 1);
}
.ring-offset-sky-400\/15 {
  --tw-ring-offset-color: rgba(56, 189, 248, 0.15);
}
.ring-offset-sky-400\/20 {
  --tw-ring-offset-color: rgba(56, 189, 248, 0.2);
}
.ring-offset-sky-400\/25 {
  --tw-ring-offset-color: rgba(56, 189, 248, 0.25);
}
.ring-offset-sky-400\/30 {
  --tw-ring-offset-color: rgba(56, 189, 248, 0.3);
}
.ring-offset-sky-400\/35 {
  --tw-ring-offset-color: rgba(56, 189, 248, 0.35);
}
.ring-offset-sky-400\/40 {
  --tw-ring-offset-color: rgba(56, 189, 248, 0.4);
}
.ring-offset-sky-400\/45 {
  --tw-ring-offset-color: rgba(56, 189, 248, 0.45);
}
.ring-offset-sky-400\/5 {
  --tw-ring-offset-color: rgba(56, 189, 248, 0.05);
}
.ring-offset-sky-400\/50 {
  --tw-ring-offset-color: rgba(56, 189, 248, 0.5);
}
.ring-offset-sky-400\/55 {
  --tw-ring-offset-color: rgba(56, 189, 248, 0.55);
}
.ring-offset-sky-400\/60 {
  --tw-ring-offset-color: rgba(56, 189, 248, 0.6);
}
.ring-offset-sky-400\/65 {
  --tw-ring-offset-color: rgba(56, 189, 248, 0.65);
}
.ring-offset-sky-400\/70 {
  --tw-ring-offset-color: rgba(56, 189, 248, 0.7);
}
.ring-offset-sky-400\/75 {
  --tw-ring-offset-color: rgba(56, 189, 248, 0.75);
}
.ring-offset-sky-400\/80 {
  --tw-ring-offset-color: rgba(56, 189, 248, 0.8);
}
.ring-offset-sky-400\/85 {
  --tw-ring-offset-color: rgba(56, 189, 248, 0.85);
}
.ring-offset-sky-400\/90 {
  --tw-ring-offset-color: rgba(56, 189, 248, 0.9);
}
.ring-offset-sky-400\/95 {
  --tw-ring-offset-color: rgba(56, 189, 248, 0.95);
}
.ring-offset-sky-50 {
  --tw-ring-offset-color: #f0f9ff;
}
.ring-offset-sky-50\/0 {
  --tw-ring-offset-color: rgba(240, 249, 255, 0);
}
.ring-offset-sky-50\/10 {
  --tw-ring-offset-color: rgba(240, 249, 255, 0.1);
}
.ring-offset-sky-50\/100 {
  --tw-ring-offset-color: rgba(240, 249, 255, 1);
}
.ring-offset-sky-50\/15 {
  --tw-ring-offset-color: rgba(240, 249, 255, 0.15);
}
.ring-offset-sky-50\/20 {
  --tw-ring-offset-color: rgba(240, 249, 255, 0.2);
}
.ring-offset-sky-50\/25 {
  --tw-ring-offset-color: rgba(240, 249, 255, 0.25);
}
.ring-offset-sky-50\/30 {
  --tw-ring-offset-color: rgba(240, 249, 255, 0.3);
}
.ring-offset-sky-50\/35 {
  --tw-ring-offset-color: rgba(240, 249, 255, 0.35);
}
.ring-offset-sky-50\/40 {
  --tw-ring-offset-color: rgba(240, 249, 255, 0.4);
}
.ring-offset-sky-50\/45 {
  --tw-ring-offset-color: rgba(240, 249, 255, 0.45);
}
.ring-offset-sky-50\/5 {
  --tw-ring-offset-color: rgba(240, 249, 255, 0.05);
}
.ring-offset-sky-50\/50 {
  --tw-ring-offset-color: rgba(240, 249, 255, 0.5);
}
.ring-offset-sky-50\/55 {
  --tw-ring-offset-color: rgba(240, 249, 255, 0.55);
}
.ring-offset-sky-50\/60 {
  --tw-ring-offset-color: rgba(240, 249, 255, 0.6);
}
.ring-offset-sky-50\/65 {
  --tw-ring-offset-color: rgba(240, 249, 255, 0.65);
}
.ring-offset-sky-50\/70 {
  --tw-ring-offset-color: rgba(240, 249, 255, 0.7);
}
.ring-offset-sky-50\/75 {
  --tw-ring-offset-color: rgba(240, 249, 255, 0.75);
}
.ring-offset-sky-50\/80 {
  --tw-ring-offset-color: rgba(240, 249, 255, 0.8);
}
.ring-offset-sky-50\/85 {
  --tw-ring-offset-color: rgba(240, 249, 255, 0.85);
}
.ring-offset-sky-50\/90 {
  --tw-ring-offset-color: rgba(240, 249, 255, 0.9);
}
.ring-offset-sky-50\/95 {
  --tw-ring-offset-color: rgba(240, 249, 255, 0.95);
}
.ring-offset-sky-500 {
  --tw-ring-offset-color: #0ea5e9;
}
.ring-offset-sky-500\/0 {
  --tw-ring-offset-color: rgba(14, 165, 233, 0);
}
.ring-offset-sky-500\/10 {
  --tw-ring-offset-color: rgba(14, 165, 233, 0.1);
}
.ring-offset-sky-500\/100 {
  --tw-ring-offset-color: rgba(14, 165, 233, 1);
}
.ring-offset-sky-500\/15 {
  --tw-ring-offset-color: rgba(14, 165, 233, 0.15);
}
.ring-offset-sky-500\/20 {
  --tw-ring-offset-color: rgba(14, 165, 233, 0.2);
}
.ring-offset-sky-500\/25 {
  --tw-ring-offset-color: rgba(14, 165, 233, 0.25);
}
.ring-offset-sky-500\/30 {
  --tw-ring-offset-color: rgba(14, 165, 233, 0.3);
}
.ring-offset-sky-500\/35 {
  --tw-ring-offset-color: rgba(14, 165, 233, 0.35);
}
.ring-offset-sky-500\/40 {
  --tw-ring-offset-color: rgba(14, 165, 233, 0.4);
}
.ring-offset-sky-500\/45 {
  --tw-ring-offset-color: rgba(14, 165, 233, 0.45);
}
.ring-offset-sky-500\/5 {
  --tw-ring-offset-color: rgba(14, 165, 233, 0.05);
}
.ring-offset-sky-500\/50 {
  --tw-ring-offset-color: rgba(14, 165, 233, 0.5);
}
.ring-offset-sky-500\/55 {
  --tw-ring-offset-color: rgba(14, 165, 233, 0.55);
}
.ring-offset-sky-500\/60 {
  --tw-ring-offset-color: rgba(14, 165, 233, 0.6);
}
.ring-offset-sky-500\/65 {
  --tw-ring-offset-color: rgba(14, 165, 233, 0.65);
}
.ring-offset-sky-500\/70 {
  --tw-ring-offset-color: rgba(14, 165, 233, 0.7);
}
.ring-offset-sky-500\/75 {
  --tw-ring-offset-color: rgba(14, 165, 233, 0.75);
}
.ring-offset-sky-500\/80 {
  --tw-ring-offset-color: rgba(14, 165, 233, 0.8);
}
.ring-offset-sky-500\/85 {
  --tw-ring-offset-color: rgba(14, 165, 233, 0.85);
}
.ring-offset-sky-500\/90 {
  --tw-ring-offset-color: rgba(14, 165, 233, 0.9);
}
.ring-offset-sky-500\/95 {
  --tw-ring-offset-color: rgba(14, 165, 233, 0.95);
}
.ring-offset-sky-600 {
  --tw-ring-offset-color: #0284c7;
}
.ring-offset-sky-600\/0 {
  --tw-ring-offset-color: rgba(2, 132, 199, 0);
}
.ring-offset-sky-600\/10 {
  --tw-ring-offset-color: rgba(2, 132, 199, 0.1);
}
.ring-offset-sky-600\/100 {
  --tw-ring-offset-color: rgba(2, 132, 199, 1);
}
.ring-offset-sky-600\/15 {
  --tw-ring-offset-color: rgba(2, 132, 199, 0.15);
}
.ring-offset-sky-600\/20 {
  --tw-ring-offset-color: rgba(2, 132, 199, 0.2);
}
.ring-offset-sky-600\/25 {
  --tw-ring-offset-color: rgba(2, 132, 199, 0.25);
}
.ring-offset-sky-600\/30 {
  --tw-ring-offset-color: rgba(2, 132, 199, 0.3);
}
.ring-offset-sky-600\/35 {
  --tw-ring-offset-color: rgba(2, 132, 199, 0.35);
}
.ring-offset-sky-600\/40 {
  --tw-ring-offset-color: rgba(2, 132, 199, 0.4);
}
.ring-offset-sky-600\/45 {
  --tw-ring-offset-color: rgba(2, 132, 199, 0.45);
}
.ring-offset-sky-600\/5 {
  --tw-ring-offset-color: rgba(2, 132, 199, 0.05);
}
.ring-offset-sky-600\/50 {
  --tw-ring-offset-color: rgba(2, 132, 199, 0.5);
}
.ring-offset-sky-600\/55 {
  --tw-ring-offset-color: rgba(2, 132, 199, 0.55);
}
.ring-offset-sky-600\/60 {
  --tw-ring-offset-color: rgba(2, 132, 199, 0.6);
}
.ring-offset-sky-600\/65 {
  --tw-ring-offset-color: rgba(2, 132, 199, 0.65);
}
.ring-offset-sky-600\/70 {
  --tw-ring-offset-color: rgba(2, 132, 199, 0.7);
}
.ring-offset-sky-600\/75 {
  --tw-ring-offset-color: rgba(2, 132, 199, 0.75);
}
.ring-offset-sky-600\/80 {
  --tw-ring-offset-color: rgba(2, 132, 199, 0.8);
}
.ring-offset-sky-600\/85 {
  --tw-ring-offset-color: rgba(2, 132, 199, 0.85);
}
.ring-offset-sky-600\/90 {
  --tw-ring-offset-color: rgba(2, 132, 199, 0.9);
}
.ring-offset-sky-600\/95 {
  --tw-ring-offset-color: rgba(2, 132, 199, 0.95);
}
.ring-offset-sky-700 {
  --tw-ring-offset-color: #0369a1;
}
.ring-offset-sky-700\/0 {
  --tw-ring-offset-color: rgba(3, 105, 161, 0);
}
.ring-offset-sky-700\/10 {
  --tw-ring-offset-color: rgba(3, 105, 161, 0.1);
}
.ring-offset-sky-700\/100 {
  --tw-ring-offset-color: rgba(3, 105, 161, 1);
}
.ring-offset-sky-700\/15 {
  --tw-ring-offset-color: rgba(3, 105, 161, 0.15);
}
.ring-offset-sky-700\/20 {
  --tw-ring-offset-color: rgba(3, 105, 161, 0.2);
}
.ring-offset-sky-700\/25 {
  --tw-ring-offset-color: rgba(3, 105, 161, 0.25);
}
.ring-offset-sky-700\/30 {
  --tw-ring-offset-color: rgba(3, 105, 161, 0.3);
}
.ring-offset-sky-700\/35 {
  --tw-ring-offset-color: rgba(3, 105, 161, 0.35);
}
.ring-offset-sky-700\/40 {
  --tw-ring-offset-color: rgba(3, 105, 161, 0.4);
}
.ring-offset-sky-700\/45 {
  --tw-ring-offset-color: rgba(3, 105, 161, 0.45);
}
.ring-offset-sky-700\/5 {
  --tw-ring-offset-color: rgba(3, 105, 161, 0.05);
}
.ring-offset-sky-700\/50 {
  --tw-ring-offset-color: rgba(3, 105, 161, 0.5);
}
.ring-offset-sky-700\/55 {
  --tw-ring-offset-color: rgba(3, 105, 161, 0.55);
}
.ring-offset-sky-700\/60 {
  --tw-ring-offset-color: rgba(3, 105, 161, 0.6);
}
.ring-offset-sky-700\/65 {
  --tw-ring-offset-color: rgba(3, 105, 161, 0.65);
}
.ring-offset-sky-700\/70 {
  --tw-ring-offset-color: rgba(3, 105, 161, 0.7);
}
.ring-offset-sky-700\/75 {
  --tw-ring-offset-color: rgba(3, 105, 161, 0.75);
}
.ring-offset-sky-700\/80 {
  --tw-ring-offset-color: rgba(3, 105, 161, 0.8);
}
.ring-offset-sky-700\/85 {
  --tw-ring-offset-color: rgba(3, 105, 161, 0.85);
}
.ring-offset-sky-700\/90 {
  --tw-ring-offset-color: rgba(3, 105, 161, 0.9);
}
.ring-offset-sky-700\/95 {
  --tw-ring-offset-color: rgba(3, 105, 161, 0.95);
}
.ring-offset-sky-800 {
  --tw-ring-offset-color: #075985;
}
.ring-offset-sky-800\/0 {
  --tw-ring-offset-color: rgba(7, 89, 133, 0);
}
.ring-offset-sky-800\/10 {
  --tw-ring-offset-color: rgba(7, 89, 133, 0.1);
}
.ring-offset-sky-800\/100 {
  --tw-ring-offset-color: rgba(7, 89, 133, 1);
}
.ring-offset-sky-800\/15 {
  --tw-ring-offset-color: rgba(7, 89, 133, 0.15);
}
.ring-offset-sky-800\/20 {
  --tw-ring-offset-color: rgba(7, 89, 133, 0.2);
}
.ring-offset-sky-800\/25 {
  --tw-ring-offset-color: rgba(7, 89, 133, 0.25);
}
.ring-offset-sky-800\/30 {
  --tw-ring-offset-color: rgba(7, 89, 133, 0.3);
}
.ring-offset-sky-800\/35 {
  --tw-ring-offset-color: rgba(7, 89, 133, 0.35);
}
.ring-offset-sky-800\/40 {
  --tw-ring-offset-color: rgba(7, 89, 133, 0.4);
}
.ring-offset-sky-800\/45 {
  --tw-ring-offset-color: rgba(7, 89, 133, 0.45);
}
.ring-offset-sky-800\/5 {
  --tw-ring-offset-color: rgba(7, 89, 133, 0.05);
}
.ring-offset-sky-800\/50 {
  --tw-ring-offset-color: rgba(7, 89, 133, 0.5);
}
.ring-offset-sky-800\/55 {
  --tw-ring-offset-color: rgba(7, 89, 133, 0.55);
}
.ring-offset-sky-800\/60 {
  --tw-ring-offset-color: rgba(7, 89, 133, 0.6);
}
.ring-offset-sky-800\/65 {
  --tw-ring-offset-color: rgba(7, 89, 133, 0.65);
}
.ring-offset-sky-800\/70 {
  --tw-ring-offset-color: rgba(7, 89, 133, 0.7);
}
.ring-offset-sky-800\/75 {
  --tw-ring-offset-color: rgba(7, 89, 133, 0.75);
}
.ring-offset-sky-800\/80 {
  --tw-ring-offset-color: rgba(7, 89, 133, 0.8);
}
.ring-offset-sky-800\/85 {
  --tw-ring-offset-color: rgba(7, 89, 133, 0.85);
}
.ring-offset-sky-800\/90 {
  --tw-ring-offset-color: rgba(7, 89, 133, 0.9);
}
.ring-offset-sky-800\/95 {
  --tw-ring-offset-color: rgba(7, 89, 133, 0.95);
}
.ring-offset-sky-900 {
  --tw-ring-offset-color: #0c4a6e;
}
.ring-offset-sky-900\/0 {
  --tw-ring-offset-color: rgba(12, 74, 110, 0);
}
.ring-offset-sky-900\/10 {
  --tw-ring-offset-color: rgba(12, 74, 110, 0.1);
}
.ring-offset-sky-900\/100 {
  --tw-ring-offset-color: rgba(12, 74, 110, 1);
}
.ring-offset-sky-900\/15 {
  --tw-ring-offset-color: rgba(12, 74, 110, 0.15);
}
.ring-offset-sky-900\/20 {
  --tw-ring-offset-color: rgba(12, 74, 110, 0.2);
}
.ring-offset-sky-900\/25 {
  --tw-ring-offset-color: rgba(12, 74, 110, 0.25);
}
.ring-offset-sky-900\/30 {
  --tw-ring-offset-color: rgba(12, 74, 110, 0.3);
}
.ring-offset-sky-900\/35 {
  --tw-ring-offset-color: rgba(12, 74, 110, 0.35);
}
.ring-offset-sky-900\/40 {
  --tw-ring-offset-color: rgba(12, 74, 110, 0.4);
}
.ring-offset-sky-900\/45 {
  --tw-ring-offset-color: rgba(12, 74, 110, 0.45);
}
.ring-offset-sky-900\/5 {
  --tw-ring-offset-color: rgba(12, 74, 110, 0.05);
}
.ring-offset-sky-900\/50 {
  --tw-ring-offset-color: rgba(12, 74, 110, 0.5);
}
.ring-offset-sky-900\/55 {
  --tw-ring-offset-color: rgba(12, 74, 110, 0.55);
}
.ring-offset-sky-900\/60 {
  --tw-ring-offset-color: rgba(12, 74, 110, 0.6);
}
.ring-offset-sky-900\/65 {
  --tw-ring-offset-color: rgba(12, 74, 110, 0.65);
}
.ring-offset-sky-900\/70 {
  --tw-ring-offset-color: rgba(12, 74, 110, 0.7);
}
.ring-offset-sky-900\/75 {
  --tw-ring-offset-color: rgba(12, 74, 110, 0.75);
}
.ring-offset-sky-900\/80 {
  --tw-ring-offset-color: rgba(12, 74, 110, 0.8);
}
.ring-offset-sky-900\/85 {
  --tw-ring-offset-color: rgba(12, 74, 110, 0.85);
}
.ring-offset-sky-900\/90 {
  --tw-ring-offset-color: rgba(12, 74, 110, 0.9);
}
.ring-offset-sky-900\/95 {
  --tw-ring-offset-color: rgba(12, 74, 110, 0.95);
}
.ring-offset-sky-950 {
  --tw-ring-offset-color: #082f49;
}
.ring-offset-sky-950\/0 {
  --tw-ring-offset-color: rgba(8, 47, 73, 0);
}
.ring-offset-sky-950\/10 {
  --tw-ring-offset-color: rgba(8, 47, 73, 0.1);
}
.ring-offset-sky-950\/100 {
  --tw-ring-offset-color: rgba(8, 47, 73, 1);
}
.ring-offset-sky-950\/15 {
  --tw-ring-offset-color: rgba(8, 47, 73, 0.15);
}
.ring-offset-sky-950\/20 {
  --tw-ring-offset-color: rgba(8, 47, 73, 0.2);
}
.ring-offset-sky-950\/25 {
  --tw-ring-offset-color: rgba(8, 47, 73, 0.25);
}
.ring-offset-sky-950\/30 {
  --tw-ring-offset-color: rgba(8, 47, 73, 0.3);
}
.ring-offset-sky-950\/35 {
  --tw-ring-offset-color: rgba(8, 47, 73, 0.35);
}
.ring-offset-sky-950\/40 {
  --tw-ring-offset-color: rgba(8, 47, 73, 0.4);
}
.ring-offset-sky-950\/45 {
  --tw-ring-offset-color: rgba(8, 47, 73, 0.45);
}
.ring-offset-sky-950\/5 {
  --tw-ring-offset-color: rgba(8, 47, 73, 0.05);
}
.ring-offset-sky-950\/50 {
  --tw-ring-offset-color: rgba(8, 47, 73, 0.5);
}
.ring-offset-sky-950\/55 {
  --tw-ring-offset-color: rgba(8, 47, 73, 0.55);
}
.ring-offset-sky-950\/60 {
  --tw-ring-offset-color: rgba(8, 47, 73, 0.6);
}
.ring-offset-sky-950\/65 {
  --tw-ring-offset-color: rgba(8, 47, 73, 0.65);
}
.ring-offset-sky-950\/70 {
  --tw-ring-offset-color: rgba(8, 47, 73, 0.7);
}
.ring-offset-sky-950\/75 {
  --tw-ring-offset-color: rgba(8, 47, 73, 0.75);
}
.ring-offset-sky-950\/80 {
  --tw-ring-offset-color: rgba(8, 47, 73, 0.8);
}
.ring-offset-sky-950\/85 {
  --tw-ring-offset-color: rgba(8, 47, 73, 0.85);
}
.ring-offset-sky-950\/90 {
  --tw-ring-offset-color: rgba(8, 47, 73, 0.9);
}
.ring-offset-sky-950\/95 {
  --tw-ring-offset-color: rgba(8, 47, 73, 0.95);
}
.ring-offset-slate-100 {
  --tw-ring-offset-color: #f1f5f9;
}
.ring-offset-slate-100\/0 {
  --tw-ring-offset-color: rgba(241, 245, 249, 0);
}
.ring-offset-slate-100\/10 {
  --tw-ring-offset-color: rgba(241, 245, 249, 0.1);
}
.ring-offset-slate-100\/100 {
  --tw-ring-offset-color: rgba(241, 245, 249, 1);
}
.ring-offset-slate-100\/15 {
  --tw-ring-offset-color: rgba(241, 245, 249, 0.15);
}
.ring-offset-slate-100\/20 {
  --tw-ring-offset-color: rgba(241, 245, 249, 0.2);
}
.ring-offset-slate-100\/25 {
  --tw-ring-offset-color: rgba(241, 245, 249, 0.25);
}
.ring-offset-slate-100\/30 {
  --tw-ring-offset-color: rgba(241, 245, 249, 0.3);
}
.ring-offset-slate-100\/35 {
  --tw-ring-offset-color: rgba(241, 245, 249, 0.35);
}
.ring-offset-slate-100\/40 {
  --tw-ring-offset-color: rgba(241, 245, 249, 0.4);
}
.ring-offset-slate-100\/45 {
  --tw-ring-offset-color: rgba(241, 245, 249, 0.45);
}
.ring-offset-slate-100\/5 {
  --tw-ring-offset-color: rgba(241, 245, 249, 0.05);
}
.ring-offset-slate-100\/50 {
  --tw-ring-offset-color: rgba(241, 245, 249, 0.5);
}
.ring-offset-slate-100\/55 {
  --tw-ring-offset-color: rgba(241, 245, 249, 0.55);
}
.ring-offset-slate-100\/60 {
  --tw-ring-offset-color: rgba(241, 245, 249, 0.6);
}
.ring-offset-slate-100\/65 {
  --tw-ring-offset-color: rgba(241, 245, 249, 0.65);
}
.ring-offset-slate-100\/70 {
  --tw-ring-offset-color: rgba(241, 245, 249, 0.7);
}
.ring-offset-slate-100\/75 {
  --tw-ring-offset-color: rgba(241, 245, 249, 0.75);
}
.ring-offset-slate-100\/80 {
  --tw-ring-offset-color: rgba(241, 245, 249, 0.8);
}
.ring-offset-slate-100\/85 {
  --tw-ring-offset-color: rgba(241, 245, 249, 0.85);
}
.ring-offset-slate-100\/90 {
  --tw-ring-offset-color: rgba(241, 245, 249, 0.9);
}
.ring-offset-slate-100\/95 {
  --tw-ring-offset-color: rgba(241, 245, 249, 0.95);
}
.ring-offset-slate-200 {
  --tw-ring-offset-color: #e2e8f0;
}
.ring-offset-slate-200\/0 {
  --tw-ring-offset-color: rgba(226, 232, 240, 0);
}
.ring-offset-slate-200\/10 {
  --tw-ring-offset-color: rgba(226, 232, 240, 0.1);
}
.ring-offset-slate-200\/100 {
  --tw-ring-offset-color: rgba(226, 232, 240, 1);
}
.ring-offset-slate-200\/15 {
  --tw-ring-offset-color: rgba(226, 232, 240, 0.15);
}
.ring-offset-slate-200\/20 {
  --tw-ring-offset-color: rgba(226, 232, 240, 0.2);
}
.ring-offset-slate-200\/25 {
  --tw-ring-offset-color: rgba(226, 232, 240, 0.25);
}
.ring-offset-slate-200\/30 {
  --tw-ring-offset-color: rgba(226, 232, 240, 0.3);
}
.ring-offset-slate-200\/35 {
  --tw-ring-offset-color: rgba(226, 232, 240, 0.35);
}
.ring-offset-slate-200\/40 {
  --tw-ring-offset-color: rgba(226, 232, 240, 0.4);
}
.ring-offset-slate-200\/45 {
  --tw-ring-offset-color: rgba(226, 232, 240, 0.45);
}
.ring-offset-slate-200\/5 {
  --tw-ring-offset-color: rgba(226, 232, 240, 0.05);
}
.ring-offset-slate-200\/50 {
  --tw-ring-offset-color: rgba(226, 232, 240, 0.5);
}
.ring-offset-slate-200\/55 {
  --tw-ring-offset-color: rgba(226, 232, 240, 0.55);
}
.ring-offset-slate-200\/60 {
  --tw-ring-offset-color: rgba(226, 232, 240, 0.6);
}
.ring-offset-slate-200\/65 {
  --tw-ring-offset-color: rgba(226, 232, 240, 0.65);
}
.ring-offset-slate-200\/70 {
  --tw-ring-offset-color: rgba(226, 232, 240, 0.7);
}
.ring-offset-slate-200\/75 {
  --tw-ring-offset-color: rgba(226, 232, 240, 0.75);
}
.ring-offset-slate-200\/80 {
  --tw-ring-offset-color: rgba(226, 232, 240, 0.8);
}
.ring-offset-slate-200\/85 {
  --tw-ring-offset-color: rgba(226, 232, 240, 0.85);
}
.ring-offset-slate-200\/90 {
  --tw-ring-offset-color: rgba(226, 232, 240, 0.9);
}
.ring-offset-slate-200\/95 {
  --tw-ring-offset-color: rgba(226, 232, 240, 0.95);
}
.ring-offset-slate-300 {
  --tw-ring-offset-color: #cbd5e1;
}
.ring-offset-slate-300\/0 {
  --tw-ring-offset-color: rgba(203, 213, 225, 0);
}
.ring-offset-slate-300\/10 {
  --tw-ring-offset-color: rgba(203, 213, 225, 0.1);
}
.ring-offset-slate-300\/100 {
  --tw-ring-offset-color: rgba(203, 213, 225, 1);
}
.ring-offset-slate-300\/15 {
  --tw-ring-offset-color: rgba(203, 213, 225, 0.15);
}
.ring-offset-slate-300\/20 {
  --tw-ring-offset-color: rgba(203, 213, 225, 0.2);
}
.ring-offset-slate-300\/25 {
  --tw-ring-offset-color: rgba(203, 213, 225, 0.25);
}
.ring-offset-slate-300\/30 {
  --tw-ring-offset-color: rgba(203, 213, 225, 0.3);
}
.ring-offset-slate-300\/35 {
  --tw-ring-offset-color: rgba(203, 213, 225, 0.35);
}
.ring-offset-slate-300\/40 {
  --tw-ring-offset-color: rgba(203, 213, 225, 0.4);
}
.ring-offset-slate-300\/45 {
  --tw-ring-offset-color: rgba(203, 213, 225, 0.45);
}
.ring-offset-slate-300\/5 {
  --tw-ring-offset-color: rgba(203, 213, 225, 0.05);
}
.ring-offset-slate-300\/50 {
  --tw-ring-offset-color: rgba(203, 213, 225, 0.5);
}
.ring-offset-slate-300\/55 {
  --tw-ring-offset-color: rgba(203, 213, 225, 0.55);
}
.ring-offset-slate-300\/60 {
  --tw-ring-offset-color: rgba(203, 213, 225, 0.6);
}
.ring-offset-slate-300\/65 {
  --tw-ring-offset-color: rgba(203, 213, 225, 0.65);
}
.ring-offset-slate-300\/70 {
  --tw-ring-offset-color: rgba(203, 213, 225, 0.7);
}
.ring-offset-slate-300\/75 {
  --tw-ring-offset-color: rgba(203, 213, 225, 0.75);
}
.ring-offset-slate-300\/80 {
  --tw-ring-offset-color: rgba(203, 213, 225, 0.8);
}
.ring-offset-slate-300\/85 {
  --tw-ring-offset-color: rgba(203, 213, 225, 0.85);
}
.ring-offset-slate-300\/90 {
  --tw-ring-offset-color: rgba(203, 213, 225, 0.9);
}
.ring-offset-slate-300\/95 {
  --tw-ring-offset-color: rgba(203, 213, 225, 0.95);
}
.ring-offset-slate-400 {
  --tw-ring-offset-color: #94a3b8;
}
.ring-offset-slate-400\/0 {
  --tw-ring-offset-color: rgba(148, 163, 184, 0);
}
.ring-offset-slate-400\/10 {
  --tw-ring-offset-color: rgba(148, 163, 184, 0.1);
}
.ring-offset-slate-400\/100 {
  --tw-ring-offset-color: rgba(148, 163, 184, 1);
}
.ring-offset-slate-400\/15 {
  --tw-ring-offset-color: rgba(148, 163, 184, 0.15);
}
.ring-offset-slate-400\/20 {
  --tw-ring-offset-color: rgba(148, 163, 184, 0.2);
}
.ring-offset-slate-400\/25 {
  --tw-ring-offset-color: rgba(148, 163, 184, 0.25);
}
.ring-offset-slate-400\/30 {
  --tw-ring-offset-color: rgba(148, 163, 184, 0.3);
}
.ring-offset-slate-400\/35 {
  --tw-ring-offset-color: rgba(148, 163, 184, 0.35);
}
.ring-offset-slate-400\/40 {
  --tw-ring-offset-color: rgba(148, 163, 184, 0.4);
}
.ring-offset-slate-400\/45 {
  --tw-ring-offset-color: rgba(148, 163, 184, 0.45);
}
.ring-offset-slate-400\/5 {
  --tw-ring-offset-color: rgba(148, 163, 184, 0.05);
}
.ring-offset-slate-400\/50 {
  --tw-ring-offset-color: rgba(148, 163, 184, 0.5);
}
.ring-offset-slate-400\/55 {
  --tw-ring-offset-color: rgba(148, 163, 184, 0.55);
}
.ring-offset-slate-400\/60 {
  --tw-ring-offset-color: rgba(148, 163, 184, 0.6);
}
.ring-offset-slate-400\/65 {
  --tw-ring-offset-color: rgba(148, 163, 184, 0.65);
}
.ring-offset-slate-400\/70 {
  --tw-ring-offset-color: rgba(148, 163, 184, 0.7);
}
.ring-offset-slate-400\/75 {
  --tw-ring-offset-color: rgba(148, 163, 184, 0.75);
}
.ring-offset-slate-400\/80 {
  --tw-ring-offset-color: rgba(148, 163, 184, 0.8);
}
.ring-offset-slate-400\/85 {
  --tw-ring-offset-color: rgba(148, 163, 184, 0.85);
}
.ring-offset-slate-400\/90 {
  --tw-ring-offset-color: rgba(148, 163, 184, 0.9);
}
.ring-offset-slate-400\/95 {
  --tw-ring-offset-color: rgba(148, 163, 184, 0.95);
}
.ring-offset-slate-50 {
  --tw-ring-offset-color: #f8fafc;
}
.ring-offset-slate-50\/0 {
  --tw-ring-offset-color: rgba(248, 250, 252, 0);
}
.ring-offset-slate-50\/10 {
  --tw-ring-offset-color: rgba(248, 250, 252, 0.1);
}
.ring-offset-slate-50\/100 {
  --tw-ring-offset-color: rgba(248, 250, 252, 1);
}
.ring-offset-slate-50\/15 {
  --tw-ring-offset-color: rgba(248, 250, 252, 0.15);
}
.ring-offset-slate-50\/20 {
  --tw-ring-offset-color: rgba(248, 250, 252, 0.2);
}
.ring-offset-slate-50\/25 {
  --tw-ring-offset-color: rgba(248, 250, 252, 0.25);
}
.ring-offset-slate-50\/30 {
  --tw-ring-offset-color: rgba(248, 250, 252, 0.3);
}
.ring-offset-slate-50\/35 {
  --tw-ring-offset-color: rgba(248, 250, 252, 0.35);
}
.ring-offset-slate-50\/40 {
  --tw-ring-offset-color: rgba(248, 250, 252, 0.4);
}
.ring-offset-slate-50\/45 {
  --tw-ring-offset-color: rgba(248, 250, 252, 0.45);
}
.ring-offset-slate-50\/5 {
  --tw-ring-offset-color: rgba(248, 250, 252, 0.05);
}
.ring-offset-slate-50\/50 {
  --tw-ring-offset-color: rgba(248, 250, 252, 0.5);
}
.ring-offset-slate-50\/55 {
  --tw-ring-offset-color: rgba(248, 250, 252, 0.55);
}
.ring-offset-slate-50\/60 {
  --tw-ring-offset-color: rgba(248, 250, 252, 0.6);
}
.ring-offset-slate-50\/65 {
  --tw-ring-offset-color: rgba(248, 250, 252, 0.65);
}
.ring-offset-slate-50\/70 {
  --tw-ring-offset-color: rgba(248, 250, 252, 0.7);
}
.ring-offset-slate-50\/75 {
  --tw-ring-offset-color: rgba(248, 250, 252, 0.75);
}
.ring-offset-slate-50\/80 {
  --tw-ring-offset-color: rgba(248, 250, 252, 0.8);
}
.ring-offset-slate-50\/85 {
  --tw-ring-offset-color: rgba(248, 250, 252, 0.85);
}
.ring-offset-slate-50\/90 {
  --tw-ring-offset-color: rgba(248, 250, 252, 0.9);
}
.ring-offset-slate-50\/95 {
  --tw-ring-offset-color: rgba(248, 250, 252, 0.95);
}
.ring-offset-slate-500 {
  --tw-ring-offset-color: #64748b;
}
.ring-offset-slate-500\/0 {
  --tw-ring-offset-color: rgba(100, 116, 139, 0);
}
.ring-offset-slate-500\/10 {
  --tw-ring-offset-color: rgba(100, 116, 139, 0.1);
}
.ring-offset-slate-500\/100 {
  --tw-ring-offset-color: rgba(100, 116, 139, 1);
}
.ring-offset-slate-500\/15 {
  --tw-ring-offset-color: rgba(100, 116, 139, 0.15);
}
.ring-offset-slate-500\/20 {
  --tw-ring-offset-color: rgba(100, 116, 139, 0.2);
}
.ring-offset-slate-500\/25 {
  --tw-ring-offset-color: rgba(100, 116, 139, 0.25);
}
.ring-offset-slate-500\/30 {
  --tw-ring-offset-color: rgba(100, 116, 139, 0.3);
}
.ring-offset-slate-500\/35 {
  --tw-ring-offset-color: rgba(100, 116, 139, 0.35);
}
.ring-offset-slate-500\/40 {
  --tw-ring-offset-color: rgba(100, 116, 139, 0.4);
}
.ring-offset-slate-500\/45 {
  --tw-ring-offset-color: rgba(100, 116, 139, 0.45);
}
.ring-offset-slate-500\/5 {
  --tw-ring-offset-color: rgba(100, 116, 139, 0.05);
}
.ring-offset-slate-500\/50 {
  --tw-ring-offset-color: rgba(100, 116, 139, 0.5);
}
.ring-offset-slate-500\/55 {
  --tw-ring-offset-color: rgba(100, 116, 139, 0.55);
}
.ring-offset-slate-500\/60 {
  --tw-ring-offset-color: rgba(100, 116, 139, 0.6);
}
.ring-offset-slate-500\/65 {
  --tw-ring-offset-color: rgba(100, 116, 139, 0.65);
}
.ring-offset-slate-500\/70 {
  --tw-ring-offset-color: rgba(100, 116, 139, 0.7);
}
.ring-offset-slate-500\/75 {
  --tw-ring-offset-color: rgba(100, 116, 139, 0.75);
}
.ring-offset-slate-500\/80 {
  --tw-ring-offset-color: rgba(100, 116, 139, 0.8);
}
.ring-offset-slate-500\/85 {
  --tw-ring-offset-color: rgba(100, 116, 139, 0.85);
}
.ring-offset-slate-500\/90 {
  --tw-ring-offset-color: rgba(100, 116, 139, 0.9);
}
.ring-offset-slate-500\/95 {
  --tw-ring-offset-color: rgba(100, 116, 139, 0.95);
}
.ring-offset-slate-600 {
  --tw-ring-offset-color: #475569;
}
.ring-offset-slate-600\/0 {
  --tw-ring-offset-color: rgba(71, 85, 105, 0);
}
.ring-offset-slate-600\/10 {
  --tw-ring-offset-color: rgba(71, 85, 105, 0.1);
}
.ring-offset-slate-600\/100 {
  --tw-ring-offset-color: rgba(71, 85, 105, 1);
}
.ring-offset-slate-600\/15 {
  --tw-ring-offset-color: rgba(71, 85, 105, 0.15);
}
.ring-offset-slate-600\/20 {
  --tw-ring-offset-color: rgba(71, 85, 105, 0.2);
}
.ring-offset-slate-600\/25 {
  --tw-ring-offset-color: rgba(71, 85, 105, 0.25);
}
.ring-offset-slate-600\/30 {
  --tw-ring-offset-color: rgba(71, 85, 105, 0.3);
}
.ring-offset-slate-600\/35 {
  --tw-ring-offset-color: rgba(71, 85, 105, 0.35);
}
.ring-offset-slate-600\/40 {
  --tw-ring-offset-color: rgba(71, 85, 105, 0.4);
}
.ring-offset-slate-600\/45 {
  --tw-ring-offset-color: rgba(71, 85, 105, 0.45);
}
.ring-offset-slate-600\/5 {
  --tw-ring-offset-color: rgba(71, 85, 105, 0.05);
}
.ring-offset-slate-600\/50 {
  --tw-ring-offset-color: rgba(71, 85, 105, 0.5);
}
.ring-offset-slate-600\/55 {
  --tw-ring-offset-color: rgba(71, 85, 105, 0.55);
}
.ring-offset-slate-600\/60 {
  --tw-ring-offset-color: rgba(71, 85, 105, 0.6);
}
.ring-offset-slate-600\/65 {
  --tw-ring-offset-color: rgba(71, 85, 105, 0.65);
}
.ring-offset-slate-600\/70 {
  --tw-ring-offset-color: rgba(71, 85, 105, 0.7);
}
.ring-offset-slate-600\/75 {
  --tw-ring-offset-color: rgba(71, 85, 105, 0.75);
}
.ring-offset-slate-600\/80 {
  --tw-ring-offset-color: rgba(71, 85, 105, 0.8);
}
.ring-offset-slate-600\/85 {
  --tw-ring-offset-color: rgba(71, 85, 105, 0.85);
}
.ring-offset-slate-600\/90 {
  --tw-ring-offset-color: rgba(71, 85, 105, 0.9);
}
.ring-offset-slate-600\/95 {
  --tw-ring-offset-color: rgba(71, 85, 105, 0.95);
}
.ring-offset-slate-700 {
  --tw-ring-offset-color: #334155;
}
.ring-offset-slate-700\/0 {
  --tw-ring-offset-color: rgba(51, 65, 85, 0);
}
.ring-offset-slate-700\/10 {
  --tw-ring-offset-color: rgba(51, 65, 85, 0.1);
}
.ring-offset-slate-700\/100 {
  --tw-ring-offset-color: rgba(51, 65, 85, 1);
}
.ring-offset-slate-700\/15 {
  --tw-ring-offset-color: rgba(51, 65, 85, 0.15);
}
.ring-offset-slate-700\/20 {
  --tw-ring-offset-color: rgba(51, 65, 85, 0.2);
}
.ring-offset-slate-700\/25 {
  --tw-ring-offset-color: rgba(51, 65, 85, 0.25);
}
.ring-offset-slate-700\/30 {
  --tw-ring-offset-color: rgba(51, 65, 85, 0.3);
}
.ring-offset-slate-700\/35 {
  --tw-ring-offset-color: rgba(51, 65, 85, 0.35);
}
.ring-offset-slate-700\/40 {
  --tw-ring-offset-color: rgba(51, 65, 85, 0.4);
}
.ring-offset-slate-700\/45 {
  --tw-ring-offset-color: rgba(51, 65, 85, 0.45);
}
.ring-offset-slate-700\/5 {
  --tw-ring-offset-color: rgba(51, 65, 85, 0.05);
}
.ring-offset-slate-700\/50 {
  --tw-ring-offset-color: rgba(51, 65, 85, 0.5);
}
.ring-offset-slate-700\/55 {
  --tw-ring-offset-color: rgba(51, 65, 85, 0.55);
}
.ring-offset-slate-700\/60 {
  --tw-ring-offset-color: rgba(51, 65, 85, 0.6);
}
.ring-offset-slate-700\/65 {
  --tw-ring-offset-color: rgba(51, 65, 85, 0.65);
}
.ring-offset-slate-700\/70 {
  --tw-ring-offset-color: rgba(51, 65, 85, 0.7);
}
.ring-offset-slate-700\/75 {
  --tw-ring-offset-color: rgba(51, 65, 85, 0.75);
}
.ring-offset-slate-700\/80 {
  --tw-ring-offset-color: rgba(51, 65, 85, 0.8);
}
.ring-offset-slate-700\/85 {
  --tw-ring-offset-color: rgba(51, 65, 85, 0.85);
}
.ring-offset-slate-700\/90 {
  --tw-ring-offset-color: rgba(51, 65, 85, 0.9);
}
.ring-offset-slate-700\/95 {
  --tw-ring-offset-color: rgba(51, 65, 85, 0.95);
}
.ring-offset-slate-800 {
  --tw-ring-offset-color: #1e293b;
}
.ring-offset-slate-800\/0 {
  --tw-ring-offset-color: rgba(30, 41, 59, 0);
}
.ring-offset-slate-800\/10 {
  --tw-ring-offset-color: rgba(30, 41, 59, 0.1);
}
.ring-offset-slate-800\/100 {
  --tw-ring-offset-color: rgba(30, 41, 59, 1);
}
.ring-offset-slate-800\/15 {
  --tw-ring-offset-color: rgba(30, 41, 59, 0.15);
}
.ring-offset-slate-800\/20 {
  --tw-ring-offset-color: rgba(30, 41, 59, 0.2);
}
.ring-offset-slate-800\/25 {
  --tw-ring-offset-color: rgba(30, 41, 59, 0.25);
}
.ring-offset-slate-800\/30 {
  --tw-ring-offset-color: rgba(30, 41, 59, 0.3);
}
.ring-offset-slate-800\/35 {
  --tw-ring-offset-color: rgba(30, 41, 59, 0.35);
}
.ring-offset-slate-800\/40 {
  --tw-ring-offset-color: rgba(30, 41, 59, 0.4);
}
.ring-offset-slate-800\/45 {
  --tw-ring-offset-color: rgba(30, 41, 59, 0.45);
}
.ring-offset-slate-800\/5 {
  --tw-ring-offset-color: rgba(30, 41, 59, 0.05);
}
.ring-offset-slate-800\/50 {
  --tw-ring-offset-color: rgba(30, 41, 59, 0.5);
}
.ring-offset-slate-800\/55 {
  --tw-ring-offset-color: rgba(30, 41, 59, 0.55);
}
.ring-offset-slate-800\/60 {
  --tw-ring-offset-color: rgba(30, 41, 59, 0.6);
}
.ring-offset-slate-800\/65 {
  --tw-ring-offset-color: rgba(30, 41, 59, 0.65);
}
.ring-offset-slate-800\/70 {
  --tw-ring-offset-color: rgba(30, 41, 59, 0.7);
}
.ring-offset-slate-800\/75 {
  --tw-ring-offset-color: rgba(30, 41, 59, 0.75);
}
.ring-offset-slate-800\/80 {
  --tw-ring-offset-color: rgba(30, 41, 59, 0.8);
}
.ring-offset-slate-800\/85 {
  --tw-ring-offset-color: rgba(30, 41, 59, 0.85);
}
.ring-offset-slate-800\/90 {
  --tw-ring-offset-color: rgba(30, 41, 59, 0.9);
}
.ring-offset-slate-800\/95 {
  --tw-ring-offset-color: rgba(30, 41, 59, 0.95);
}
.ring-offset-slate-900 {
  --tw-ring-offset-color: #0f172a;
}
.ring-offset-slate-900\/0 {
  --tw-ring-offset-color: rgba(15, 23, 42, 0);
}
.ring-offset-slate-900\/10 {
  --tw-ring-offset-color: rgba(15, 23, 42, 0.1);
}
.ring-offset-slate-900\/100 {
  --tw-ring-offset-color: rgba(15, 23, 42, 1);
}
.ring-offset-slate-900\/15 {
  --tw-ring-offset-color: rgba(15, 23, 42, 0.15);
}
.ring-offset-slate-900\/20 {
  --tw-ring-offset-color: rgba(15, 23, 42, 0.2);
}
.ring-offset-slate-900\/25 {
  --tw-ring-offset-color: rgba(15, 23, 42, 0.25);
}
.ring-offset-slate-900\/30 {
  --tw-ring-offset-color: rgba(15, 23, 42, 0.3);
}
.ring-offset-slate-900\/35 {
  --tw-ring-offset-color: rgba(15, 23, 42, 0.35);
}
.ring-offset-slate-900\/40 {
  --tw-ring-offset-color: rgba(15, 23, 42, 0.4);
}
.ring-offset-slate-900\/45 {
  --tw-ring-offset-color: rgba(15, 23, 42, 0.45);
}
.ring-offset-slate-900\/5 {
  --tw-ring-offset-color: rgba(15, 23, 42, 0.05);
}
.ring-offset-slate-900\/50 {
  --tw-ring-offset-color: rgba(15, 23, 42, 0.5);
}
.ring-offset-slate-900\/55 {
  --tw-ring-offset-color: rgba(15, 23, 42, 0.55);
}
.ring-offset-slate-900\/60 {
  --tw-ring-offset-color: rgba(15, 23, 42, 0.6);
}
.ring-offset-slate-900\/65 {
  --tw-ring-offset-color: rgba(15, 23, 42, 0.65);
}
.ring-offset-slate-900\/70 {
  --tw-ring-offset-color: rgba(15, 23, 42, 0.7);
}
.ring-offset-slate-900\/75 {
  --tw-ring-offset-color: rgba(15, 23, 42, 0.75);
}
.ring-offset-slate-900\/80 {
  --tw-ring-offset-color: rgba(15, 23, 42, 0.8);
}
.ring-offset-slate-900\/85 {
  --tw-ring-offset-color: rgba(15, 23, 42, 0.85);
}
.ring-offset-slate-900\/90 {
  --tw-ring-offset-color: rgba(15, 23, 42, 0.9);
}
.ring-offset-slate-900\/95 {
  --tw-ring-offset-color: rgba(15, 23, 42, 0.95);
}
.ring-offset-slate-950 {
  --tw-ring-offset-color: #020617;
}
.ring-offset-slate-950\/0 {
  --tw-ring-offset-color: rgba(2, 6, 23, 0);
}
.ring-offset-slate-950\/10 {
  --tw-ring-offset-color: rgba(2, 6, 23, 0.1);
}
.ring-offset-slate-950\/100 {
  --tw-ring-offset-color: rgba(2, 6, 23, 1);
}
.ring-offset-slate-950\/15 {
  --tw-ring-offset-color: rgba(2, 6, 23, 0.15);
}
.ring-offset-slate-950\/20 {
  --tw-ring-offset-color: rgba(2, 6, 23, 0.2);
}
.ring-offset-slate-950\/25 {
  --tw-ring-offset-color: rgba(2, 6, 23, 0.25);
}
.ring-offset-slate-950\/30 {
  --tw-ring-offset-color: rgba(2, 6, 23, 0.3);
}
.ring-offset-slate-950\/35 {
  --tw-ring-offset-color: rgba(2, 6, 23, 0.35);
}
.ring-offset-slate-950\/40 {
  --tw-ring-offset-color: rgba(2, 6, 23, 0.4);
}
.ring-offset-slate-950\/45 {
  --tw-ring-offset-color: rgba(2, 6, 23, 0.45);
}
.ring-offset-slate-950\/5 {
  --tw-ring-offset-color: rgba(2, 6, 23, 0.05);
}
.ring-offset-slate-950\/50 {
  --tw-ring-offset-color: rgba(2, 6, 23, 0.5);
}
.ring-offset-slate-950\/55 {
  --tw-ring-offset-color: rgba(2, 6, 23, 0.55);
}
.ring-offset-slate-950\/60 {
  --tw-ring-offset-color: rgba(2, 6, 23, 0.6);
}
.ring-offset-slate-950\/65 {
  --tw-ring-offset-color: rgba(2, 6, 23, 0.65);
}
.ring-offset-slate-950\/70 {
  --tw-ring-offset-color: rgba(2, 6, 23, 0.7);
}
.ring-offset-slate-950\/75 {
  --tw-ring-offset-color: rgba(2, 6, 23, 0.75);
}
.ring-offset-slate-950\/80 {
  --tw-ring-offset-color: rgba(2, 6, 23, 0.8);
}
.ring-offset-slate-950\/85 {
  --tw-ring-offset-color: rgba(2, 6, 23, 0.85);
}
.ring-offset-slate-950\/90 {
  --tw-ring-offset-color: rgba(2, 6, 23, 0.9);
}
.ring-offset-slate-950\/95 {
  --tw-ring-offset-color: rgba(2, 6, 23, 0.95);
}
.ring-offset-stone-100 {
  --tw-ring-offset-color: #f5f5f4;
}
.ring-offset-stone-100\/0 {
  --tw-ring-offset-color: rgba(245, 245, 244, 0);
}
.ring-offset-stone-100\/10 {
  --tw-ring-offset-color: rgba(245, 245, 244, 0.1);
}
.ring-offset-stone-100\/100 {
  --tw-ring-offset-color: rgba(245, 245, 244, 1);
}
.ring-offset-stone-100\/15 {
  --tw-ring-offset-color: rgba(245, 245, 244, 0.15);
}
.ring-offset-stone-100\/20 {
  --tw-ring-offset-color: rgba(245, 245, 244, 0.2);
}
.ring-offset-stone-100\/25 {
  --tw-ring-offset-color: rgba(245, 245, 244, 0.25);
}
.ring-offset-stone-100\/30 {
  --tw-ring-offset-color: rgba(245, 245, 244, 0.3);
}
.ring-offset-stone-100\/35 {
  --tw-ring-offset-color: rgba(245, 245, 244, 0.35);
}
.ring-offset-stone-100\/40 {
  --tw-ring-offset-color: rgba(245, 245, 244, 0.4);
}
.ring-offset-stone-100\/45 {
  --tw-ring-offset-color: rgba(245, 245, 244, 0.45);
}
.ring-offset-stone-100\/5 {
  --tw-ring-offset-color: rgba(245, 245, 244, 0.05);
}
.ring-offset-stone-100\/50 {
  --tw-ring-offset-color: rgba(245, 245, 244, 0.5);
}
.ring-offset-stone-100\/55 {
  --tw-ring-offset-color: rgba(245, 245, 244, 0.55);
}
.ring-offset-stone-100\/60 {
  --tw-ring-offset-color: rgba(245, 245, 244, 0.6);
}
.ring-offset-stone-100\/65 {
  --tw-ring-offset-color: rgba(245, 245, 244, 0.65);
}
.ring-offset-stone-100\/70 {
  --tw-ring-offset-color: rgba(245, 245, 244, 0.7);
}
.ring-offset-stone-100\/75 {
  --tw-ring-offset-color: rgba(245, 245, 244, 0.75);
}
.ring-offset-stone-100\/80 {
  --tw-ring-offset-color: rgba(245, 245, 244, 0.8);
}
.ring-offset-stone-100\/85 {
  --tw-ring-offset-color: rgba(245, 245, 244, 0.85);
}
.ring-offset-stone-100\/90 {
  --tw-ring-offset-color: rgba(245, 245, 244, 0.9);
}
.ring-offset-stone-100\/95 {
  --tw-ring-offset-color: rgba(245, 245, 244, 0.95);
}
.ring-offset-stone-200 {
  --tw-ring-offset-color: #e7e5e4;
}
.ring-offset-stone-200\/0 {
  --tw-ring-offset-color: rgba(231, 229, 228, 0);
}
.ring-offset-stone-200\/10 {
  --tw-ring-offset-color: rgba(231, 229, 228, 0.1);
}
.ring-offset-stone-200\/100 {
  --tw-ring-offset-color: rgba(231, 229, 228, 1);
}
.ring-offset-stone-200\/15 {
  --tw-ring-offset-color: rgba(231, 229, 228, 0.15);
}
.ring-offset-stone-200\/20 {
  --tw-ring-offset-color: rgba(231, 229, 228, 0.2);
}
.ring-offset-stone-200\/25 {
  --tw-ring-offset-color: rgba(231, 229, 228, 0.25);
}
.ring-offset-stone-200\/30 {
  --tw-ring-offset-color: rgba(231, 229, 228, 0.3);
}
.ring-offset-stone-200\/35 {
  --tw-ring-offset-color: rgba(231, 229, 228, 0.35);
}
.ring-offset-stone-200\/40 {
  --tw-ring-offset-color: rgba(231, 229, 228, 0.4);
}
.ring-offset-stone-200\/45 {
  --tw-ring-offset-color: rgba(231, 229, 228, 0.45);
}
.ring-offset-stone-200\/5 {
  --tw-ring-offset-color: rgba(231, 229, 228, 0.05);
}
.ring-offset-stone-200\/50 {
  --tw-ring-offset-color: rgba(231, 229, 228, 0.5);
}
.ring-offset-stone-200\/55 {
  --tw-ring-offset-color: rgba(231, 229, 228, 0.55);
}
.ring-offset-stone-200\/60 {
  --tw-ring-offset-color: rgba(231, 229, 228, 0.6);
}
.ring-offset-stone-200\/65 {
  --tw-ring-offset-color: rgba(231, 229, 228, 0.65);
}
.ring-offset-stone-200\/70 {
  --tw-ring-offset-color: rgba(231, 229, 228, 0.7);
}
.ring-offset-stone-200\/75 {
  --tw-ring-offset-color: rgba(231, 229, 228, 0.75);
}
.ring-offset-stone-200\/80 {
  --tw-ring-offset-color: rgba(231, 229, 228, 0.8);
}
.ring-offset-stone-200\/85 {
  --tw-ring-offset-color: rgba(231, 229, 228, 0.85);
}
.ring-offset-stone-200\/90 {
  --tw-ring-offset-color: rgba(231, 229, 228, 0.9);
}
.ring-offset-stone-200\/95 {
  --tw-ring-offset-color: rgba(231, 229, 228, 0.95);
}
.ring-offset-stone-300 {
  --tw-ring-offset-color: #d6d3d1;
}
.ring-offset-stone-300\/0 {
  --tw-ring-offset-color: rgba(214, 211, 209, 0);
}
.ring-offset-stone-300\/10 {
  --tw-ring-offset-color: rgba(214, 211, 209, 0.1);
}
.ring-offset-stone-300\/100 {
  --tw-ring-offset-color: rgba(214, 211, 209, 1);
}
.ring-offset-stone-300\/15 {
  --tw-ring-offset-color: rgba(214, 211, 209, 0.15);
}
.ring-offset-stone-300\/20 {
  --tw-ring-offset-color: rgba(214, 211, 209, 0.2);
}
.ring-offset-stone-300\/25 {
  --tw-ring-offset-color: rgba(214, 211, 209, 0.25);
}
.ring-offset-stone-300\/30 {
  --tw-ring-offset-color: rgba(214, 211, 209, 0.3);
}
.ring-offset-stone-300\/35 {
  --tw-ring-offset-color: rgba(214, 211, 209, 0.35);
}
.ring-offset-stone-300\/40 {
  --tw-ring-offset-color: rgba(214, 211, 209, 0.4);
}
.ring-offset-stone-300\/45 {
  --tw-ring-offset-color: rgba(214, 211, 209, 0.45);
}
.ring-offset-stone-300\/5 {
  --tw-ring-offset-color: rgba(214, 211, 209, 0.05);
}
.ring-offset-stone-300\/50 {
  --tw-ring-offset-color: rgba(214, 211, 209, 0.5);
}
.ring-offset-stone-300\/55 {
  --tw-ring-offset-color: rgba(214, 211, 209, 0.55);
}
.ring-offset-stone-300\/60 {
  --tw-ring-offset-color: rgba(214, 211, 209, 0.6);
}
.ring-offset-stone-300\/65 {
  --tw-ring-offset-color: rgba(214, 211, 209, 0.65);
}
.ring-offset-stone-300\/70 {
  --tw-ring-offset-color: rgba(214, 211, 209, 0.7);
}
.ring-offset-stone-300\/75 {
  --tw-ring-offset-color: rgba(214, 211, 209, 0.75);
}
.ring-offset-stone-300\/80 {
  --tw-ring-offset-color: rgba(214, 211, 209, 0.8);
}
.ring-offset-stone-300\/85 {
  --tw-ring-offset-color: rgba(214, 211, 209, 0.85);
}
.ring-offset-stone-300\/90 {
  --tw-ring-offset-color: rgba(214, 211, 209, 0.9);
}
.ring-offset-stone-300\/95 {
  --tw-ring-offset-color: rgba(214, 211, 209, 0.95);
}
.ring-offset-stone-400 {
  --tw-ring-offset-color: #a8a29e;
}
.ring-offset-stone-400\/0 {
  --tw-ring-offset-color: rgba(168, 162, 158, 0);
}
.ring-offset-stone-400\/10 {
  --tw-ring-offset-color: rgba(168, 162, 158, 0.1);
}
.ring-offset-stone-400\/100 {
  --tw-ring-offset-color: rgba(168, 162, 158, 1);
}
.ring-offset-stone-400\/15 {
  --tw-ring-offset-color: rgba(168, 162, 158, 0.15);
}
.ring-offset-stone-400\/20 {
  --tw-ring-offset-color: rgba(168, 162, 158, 0.2);
}
.ring-offset-stone-400\/25 {
  --tw-ring-offset-color: rgba(168, 162, 158, 0.25);
}
.ring-offset-stone-400\/30 {
  --tw-ring-offset-color: rgba(168, 162, 158, 0.3);
}
.ring-offset-stone-400\/35 {
  --tw-ring-offset-color: rgba(168, 162, 158, 0.35);
}
.ring-offset-stone-400\/40 {
  --tw-ring-offset-color: rgba(168, 162, 158, 0.4);
}
.ring-offset-stone-400\/45 {
  --tw-ring-offset-color: rgba(168, 162, 158, 0.45);
}
.ring-offset-stone-400\/5 {
  --tw-ring-offset-color: rgba(168, 162, 158, 0.05);
}
.ring-offset-stone-400\/50 {
  --tw-ring-offset-color: rgba(168, 162, 158, 0.5);
}
.ring-offset-stone-400\/55 {
  --tw-ring-offset-color: rgba(168, 162, 158, 0.55);
}
.ring-offset-stone-400\/60 {
  --tw-ring-offset-color: rgba(168, 162, 158, 0.6);
}
.ring-offset-stone-400\/65 {
  --tw-ring-offset-color: rgba(168, 162, 158, 0.65);
}
.ring-offset-stone-400\/70 {
  --tw-ring-offset-color: rgba(168, 162, 158, 0.7);
}
.ring-offset-stone-400\/75 {
  --tw-ring-offset-color: rgba(168, 162, 158, 0.75);
}
.ring-offset-stone-400\/80 {
  --tw-ring-offset-color: rgba(168, 162, 158, 0.8);
}
.ring-offset-stone-400\/85 {
  --tw-ring-offset-color: rgba(168, 162, 158, 0.85);
}
.ring-offset-stone-400\/90 {
  --tw-ring-offset-color: rgba(168, 162, 158, 0.9);
}
.ring-offset-stone-400\/95 {
  --tw-ring-offset-color: rgba(168, 162, 158, 0.95);
}
.ring-offset-stone-50 {
  --tw-ring-offset-color: #fafaf9;
}
.ring-offset-stone-50\/0 {
  --tw-ring-offset-color: rgba(250, 250, 249, 0);
}
.ring-offset-stone-50\/10 {
  --tw-ring-offset-color: rgba(250, 250, 249, 0.1);
}
.ring-offset-stone-50\/100 {
  --tw-ring-offset-color: rgba(250, 250, 249, 1);
}
.ring-offset-stone-50\/15 {
  --tw-ring-offset-color: rgba(250, 250, 249, 0.15);
}
.ring-offset-stone-50\/20 {
  --tw-ring-offset-color: rgba(250, 250, 249, 0.2);
}
.ring-offset-stone-50\/25 {
  --tw-ring-offset-color: rgba(250, 250, 249, 0.25);
}
.ring-offset-stone-50\/30 {
  --tw-ring-offset-color: rgba(250, 250, 249, 0.3);
}
.ring-offset-stone-50\/35 {
  --tw-ring-offset-color: rgba(250, 250, 249, 0.35);
}
.ring-offset-stone-50\/40 {
  --tw-ring-offset-color: rgba(250, 250, 249, 0.4);
}
.ring-offset-stone-50\/45 {
  --tw-ring-offset-color: rgba(250, 250, 249, 0.45);
}
.ring-offset-stone-50\/5 {
  --tw-ring-offset-color: rgba(250, 250, 249, 0.05);
}
.ring-offset-stone-50\/50 {
  --tw-ring-offset-color: rgba(250, 250, 249, 0.5);
}
.ring-offset-stone-50\/55 {
  --tw-ring-offset-color: rgba(250, 250, 249, 0.55);
}
.ring-offset-stone-50\/60 {
  --tw-ring-offset-color: rgba(250, 250, 249, 0.6);
}
.ring-offset-stone-50\/65 {
  --tw-ring-offset-color: rgba(250, 250, 249, 0.65);
}
.ring-offset-stone-50\/70 {
  --tw-ring-offset-color: rgba(250, 250, 249, 0.7);
}
.ring-offset-stone-50\/75 {
  --tw-ring-offset-color: rgba(250, 250, 249, 0.75);
}
.ring-offset-stone-50\/80 {
  --tw-ring-offset-color: rgba(250, 250, 249, 0.8);
}
.ring-offset-stone-50\/85 {
  --tw-ring-offset-color: rgba(250, 250, 249, 0.85);
}
.ring-offset-stone-50\/90 {
  --tw-ring-offset-color: rgba(250, 250, 249, 0.9);
}
.ring-offset-stone-50\/95 {
  --tw-ring-offset-color: rgba(250, 250, 249, 0.95);
}
.ring-offset-stone-500 {
  --tw-ring-offset-color: #78716c;
}
.ring-offset-stone-500\/0 {
  --tw-ring-offset-color: rgba(120, 113, 108, 0);
}
.ring-offset-stone-500\/10 {
  --tw-ring-offset-color: rgba(120, 113, 108, 0.1);
}
.ring-offset-stone-500\/100 {
  --tw-ring-offset-color: rgba(120, 113, 108, 1);
}
.ring-offset-stone-500\/15 {
  --tw-ring-offset-color: rgba(120, 113, 108, 0.15);
}
.ring-offset-stone-500\/20 {
  --tw-ring-offset-color: rgba(120, 113, 108, 0.2);
}
.ring-offset-stone-500\/25 {
  --tw-ring-offset-color: rgba(120, 113, 108, 0.25);
}
.ring-offset-stone-500\/30 {
  --tw-ring-offset-color: rgba(120, 113, 108, 0.3);
}
.ring-offset-stone-500\/35 {
  --tw-ring-offset-color: rgba(120, 113, 108, 0.35);
}
.ring-offset-stone-500\/40 {
  --tw-ring-offset-color: rgba(120, 113, 108, 0.4);
}
.ring-offset-stone-500\/45 {
  --tw-ring-offset-color: rgba(120, 113, 108, 0.45);
}
.ring-offset-stone-500\/5 {
  --tw-ring-offset-color: rgba(120, 113, 108, 0.05);
}
.ring-offset-stone-500\/50 {
  --tw-ring-offset-color: rgba(120, 113, 108, 0.5);
}
.ring-offset-stone-500\/55 {
  --tw-ring-offset-color: rgba(120, 113, 108, 0.55);
}
.ring-offset-stone-500\/60 {
  --tw-ring-offset-color: rgba(120, 113, 108, 0.6);
}
.ring-offset-stone-500\/65 {
  --tw-ring-offset-color: rgba(120, 113, 108, 0.65);
}
.ring-offset-stone-500\/70 {
  --tw-ring-offset-color: rgba(120, 113, 108, 0.7);
}
.ring-offset-stone-500\/75 {
  --tw-ring-offset-color: rgba(120, 113, 108, 0.75);
}
.ring-offset-stone-500\/80 {
  --tw-ring-offset-color: rgba(120, 113, 108, 0.8);
}
.ring-offset-stone-500\/85 {
  --tw-ring-offset-color: rgba(120, 113, 108, 0.85);
}
.ring-offset-stone-500\/90 {
  --tw-ring-offset-color: rgba(120, 113, 108, 0.9);
}
.ring-offset-stone-500\/95 {
  --tw-ring-offset-color: rgba(120, 113, 108, 0.95);
}
.ring-offset-stone-600 {
  --tw-ring-offset-color: #57534e;
}
.ring-offset-stone-600\/0 {
  --tw-ring-offset-color: rgba(87, 83, 78, 0);
}
.ring-offset-stone-600\/10 {
  --tw-ring-offset-color: rgba(87, 83, 78, 0.1);
}
.ring-offset-stone-600\/100 {
  --tw-ring-offset-color: rgba(87, 83, 78, 1);
}
.ring-offset-stone-600\/15 {
  --tw-ring-offset-color: rgba(87, 83, 78, 0.15);
}
.ring-offset-stone-600\/20 {
  --tw-ring-offset-color: rgba(87, 83, 78, 0.2);
}
.ring-offset-stone-600\/25 {
  --tw-ring-offset-color: rgba(87, 83, 78, 0.25);
}
.ring-offset-stone-600\/30 {
  --tw-ring-offset-color: rgba(87, 83, 78, 0.3);
}
.ring-offset-stone-600\/35 {
  --tw-ring-offset-color: rgba(87, 83, 78, 0.35);
}
.ring-offset-stone-600\/40 {
  --tw-ring-offset-color: rgba(87, 83, 78, 0.4);
}
.ring-offset-stone-600\/45 {
  --tw-ring-offset-color: rgba(87, 83, 78, 0.45);
}
.ring-offset-stone-600\/5 {
  --tw-ring-offset-color: rgba(87, 83, 78, 0.05);
}
.ring-offset-stone-600\/50 {
  --tw-ring-offset-color: rgba(87, 83, 78, 0.5);
}
.ring-offset-stone-600\/55 {
  --tw-ring-offset-color: rgba(87, 83, 78, 0.55);
}
.ring-offset-stone-600\/60 {
  --tw-ring-offset-color: rgba(87, 83, 78, 0.6);
}
.ring-offset-stone-600\/65 {
  --tw-ring-offset-color: rgba(87, 83, 78, 0.65);
}
.ring-offset-stone-600\/70 {
  --tw-ring-offset-color: rgba(87, 83, 78, 0.7);
}
.ring-offset-stone-600\/75 {
  --tw-ring-offset-color: rgba(87, 83, 78, 0.75);
}
.ring-offset-stone-600\/80 {
  --tw-ring-offset-color: rgba(87, 83, 78, 0.8);
}
.ring-offset-stone-600\/85 {
  --tw-ring-offset-color: rgba(87, 83, 78, 0.85);
}
.ring-offset-stone-600\/90 {
  --tw-ring-offset-color: rgba(87, 83, 78, 0.9);
}
.ring-offset-stone-600\/95 {
  --tw-ring-offset-color: rgba(87, 83, 78, 0.95);
}
.ring-offset-stone-700 {
  --tw-ring-offset-color: #44403c;
}
.ring-offset-stone-700\/0 {
  --tw-ring-offset-color: rgba(68, 64, 60, 0);
}
.ring-offset-stone-700\/10 {
  --tw-ring-offset-color: rgba(68, 64, 60, 0.1);
}
.ring-offset-stone-700\/100 {
  --tw-ring-offset-color: rgba(68, 64, 60, 1);
}
.ring-offset-stone-700\/15 {
  --tw-ring-offset-color: rgba(68, 64, 60, 0.15);
}
.ring-offset-stone-700\/20 {
  --tw-ring-offset-color: rgba(68, 64, 60, 0.2);
}
.ring-offset-stone-700\/25 {
  --tw-ring-offset-color: rgba(68, 64, 60, 0.25);
}
.ring-offset-stone-700\/30 {
  --tw-ring-offset-color: rgba(68, 64, 60, 0.3);
}
.ring-offset-stone-700\/35 {
  --tw-ring-offset-color: rgba(68, 64, 60, 0.35);
}
.ring-offset-stone-700\/40 {
  --tw-ring-offset-color: rgba(68, 64, 60, 0.4);
}
.ring-offset-stone-700\/45 {
  --tw-ring-offset-color: rgba(68, 64, 60, 0.45);
}
.ring-offset-stone-700\/5 {
  --tw-ring-offset-color: rgba(68, 64, 60, 0.05);
}
.ring-offset-stone-700\/50 {
  --tw-ring-offset-color: rgba(68, 64, 60, 0.5);
}
.ring-offset-stone-700\/55 {
  --tw-ring-offset-color: rgba(68, 64, 60, 0.55);
}
.ring-offset-stone-700\/60 {
  --tw-ring-offset-color: rgba(68, 64, 60, 0.6);
}
.ring-offset-stone-700\/65 {
  --tw-ring-offset-color: rgba(68, 64, 60, 0.65);
}
.ring-offset-stone-700\/70 {
  --tw-ring-offset-color: rgba(68, 64, 60, 0.7);
}
.ring-offset-stone-700\/75 {
  --tw-ring-offset-color: rgba(68, 64, 60, 0.75);
}
.ring-offset-stone-700\/80 {
  --tw-ring-offset-color: rgba(68, 64, 60, 0.8);
}
.ring-offset-stone-700\/85 {
  --tw-ring-offset-color: rgba(68, 64, 60, 0.85);
}
.ring-offset-stone-700\/90 {
  --tw-ring-offset-color: rgba(68, 64, 60, 0.9);
}
.ring-offset-stone-700\/95 {
  --tw-ring-offset-color: rgba(68, 64, 60, 0.95);
}
.ring-offset-stone-800 {
  --tw-ring-offset-color: #292524;
}
.ring-offset-stone-800\/0 {
  --tw-ring-offset-color: rgba(41, 37, 36, 0);
}
.ring-offset-stone-800\/10 {
  --tw-ring-offset-color: rgba(41, 37, 36, 0.1);
}
.ring-offset-stone-800\/100 {
  --tw-ring-offset-color: rgba(41, 37, 36, 1);
}
.ring-offset-stone-800\/15 {
  --tw-ring-offset-color: rgba(41, 37, 36, 0.15);
}
.ring-offset-stone-800\/20 {
  --tw-ring-offset-color: rgba(41, 37, 36, 0.2);
}
.ring-offset-stone-800\/25 {
  --tw-ring-offset-color: rgba(41, 37, 36, 0.25);
}
.ring-offset-stone-800\/30 {
  --tw-ring-offset-color: rgba(41, 37, 36, 0.3);
}
.ring-offset-stone-800\/35 {
  --tw-ring-offset-color: rgba(41, 37, 36, 0.35);
}
.ring-offset-stone-800\/40 {
  --tw-ring-offset-color: rgba(41, 37, 36, 0.4);
}
.ring-offset-stone-800\/45 {
  --tw-ring-offset-color: rgba(41, 37, 36, 0.45);
}
.ring-offset-stone-800\/5 {
  --tw-ring-offset-color: rgba(41, 37, 36, 0.05);
}
.ring-offset-stone-800\/50 {
  --tw-ring-offset-color: rgba(41, 37, 36, 0.5);
}
.ring-offset-stone-800\/55 {
  --tw-ring-offset-color: rgba(41, 37, 36, 0.55);
}
.ring-offset-stone-800\/60 {
  --tw-ring-offset-color: rgba(41, 37, 36, 0.6);
}
.ring-offset-stone-800\/65 {
  --tw-ring-offset-color: rgba(41, 37, 36, 0.65);
}
.ring-offset-stone-800\/70 {
  --tw-ring-offset-color: rgba(41, 37, 36, 0.7);
}
.ring-offset-stone-800\/75 {
  --tw-ring-offset-color: rgba(41, 37, 36, 0.75);
}
.ring-offset-stone-800\/80 {
  --tw-ring-offset-color: rgba(41, 37, 36, 0.8);
}
.ring-offset-stone-800\/85 {
  --tw-ring-offset-color: rgba(41, 37, 36, 0.85);
}
.ring-offset-stone-800\/90 {
  --tw-ring-offset-color: rgba(41, 37, 36, 0.9);
}
.ring-offset-stone-800\/95 {
  --tw-ring-offset-color: rgba(41, 37, 36, 0.95);
}
.ring-offset-stone-900 {
  --tw-ring-offset-color: #1c1917;
}
.ring-offset-stone-900\/0 {
  --tw-ring-offset-color: rgba(28, 25, 23, 0);
}
.ring-offset-stone-900\/10 {
  --tw-ring-offset-color: rgba(28, 25, 23, 0.1);
}
.ring-offset-stone-900\/100 {
  --tw-ring-offset-color: rgba(28, 25, 23, 1);
}
.ring-offset-stone-900\/15 {
  --tw-ring-offset-color: rgba(28, 25, 23, 0.15);
}
.ring-offset-stone-900\/20 {
  --tw-ring-offset-color: rgba(28, 25, 23, 0.2);
}
.ring-offset-stone-900\/25 {
  --tw-ring-offset-color: rgba(28, 25, 23, 0.25);
}
.ring-offset-stone-900\/30 {
  --tw-ring-offset-color: rgba(28, 25, 23, 0.3);
}
.ring-offset-stone-900\/35 {
  --tw-ring-offset-color: rgba(28, 25, 23, 0.35);
}
.ring-offset-stone-900\/40 {
  --tw-ring-offset-color: rgba(28, 25, 23, 0.4);
}
.ring-offset-stone-900\/45 {
  --tw-ring-offset-color: rgba(28, 25, 23, 0.45);
}
.ring-offset-stone-900\/5 {
  --tw-ring-offset-color: rgba(28, 25, 23, 0.05);
}
.ring-offset-stone-900\/50 {
  --tw-ring-offset-color: rgba(28, 25, 23, 0.5);
}
.ring-offset-stone-900\/55 {
  --tw-ring-offset-color: rgba(28, 25, 23, 0.55);
}
.ring-offset-stone-900\/60 {
  --tw-ring-offset-color: rgba(28, 25, 23, 0.6);
}
.ring-offset-stone-900\/65 {
  --tw-ring-offset-color: rgba(28, 25, 23, 0.65);
}
.ring-offset-stone-900\/70 {
  --tw-ring-offset-color: rgba(28, 25, 23, 0.7);
}
.ring-offset-stone-900\/75 {
  --tw-ring-offset-color: rgba(28, 25, 23, 0.75);
}
.ring-offset-stone-900\/80 {
  --tw-ring-offset-color: rgba(28, 25, 23, 0.8);
}
.ring-offset-stone-900\/85 {
  --tw-ring-offset-color: rgba(28, 25, 23, 0.85);
}
.ring-offset-stone-900\/90 {
  --tw-ring-offset-color: rgba(28, 25, 23, 0.9);
}
.ring-offset-stone-900\/95 {
  --tw-ring-offset-color: rgba(28, 25, 23, 0.95);
}
.ring-offset-stone-950 {
  --tw-ring-offset-color: #0c0a09;
}
.ring-offset-stone-950\/0 {
  --tw-ring-offset-color: rgba(12, 10, 9, 0);
}
.ring-offset-stone-950\/10 {
  --tw-ring-offset-color: rgba(12, 10, 9, 0.1);
}
.ring-offset-stone-950\/100 {
  --tw-ring-offset-color: rgba(12, 10, 9, 1);
}
.ring-offset-stone-950\/15 {
  --tw-ring-offset-color: rgba(12, 10, 9, 0.15);
}
.ring-offset-stone-950\/20 {
  --tw-ring-offset-color: rgba(12, 10, 9, 0.2);
}
.ring-offset-stone-950\/25 {
  --tw-ring-offset-color: rgba(12, 10, 9, 0.25);
}
.ring-offset-stone-950\/30 {
  --tw-ring-offset-color: rgba(12, 10, 9, 0.3);
}
.ring-offset-stone-950\/35 {
  --tw-ring-offset-color: rgba(12, 10, 9, 0.35);
}
.ring-offset-stone-950\/40 {
  --tw-ring-offset-color: rgba(12, 10, 9, 0.4);
}
.ring-offset-stone-950\/45 {
  --tw-ring-offset-color: rgba(12, 10, 9, 0.45);
}
.ring-offset-stone-950\/5 {
  --tw-ring-offset-color: rgba(12, 10, 9, 0.05);
}
.ring-offset-stone-950\/50 {
  --tw-ring-offset-color: rgba(12, 10, 9, 0.5);
}
.ring-offset-stone-950\/55 {
  --tw-ring-offset-color: rgba(12, 10, 9, 0.55);
}
.ring-offset-stone-950\/60 {
  --tw-ring-offset-color: rgba(12, 10, 9, 0.6);
}
.ring-offset-stone-950\/65 {
  --tw-ring-offset-color: rgba(12, 10, 9, 0.65);
}
.ring-offset-stone-950\/70 {
  --tw-ring-offset-color: rgba(12, 10, 9, 0.7);
}
.ring-offset-stone-950\/75 {
  --tw-ring-offset-color: rgba(12, 10, 9, 0.75);
}
.ring-offset-stone-950\/80 {
  --tw-ring-offset-color: rgba(12, 10, 9, 0.8);
}
.ring-offset-stone-950\/85 {
  --tw-ring-offset-color: rgba(12, 10, 9, 0.85);
}
.ring-offset-stone-950\/90 {
  --tw-ring-offset-color: rgba(12, 10, 9, 0.9);
}
.ring-offset-stone-950\/95 {
  --tw-ring-offset-color: rgba(12, 10, 9, 0.95);
}
.ring-offset-success {
  --tw-ring-offset-color: var(--fallback-su,oklch(var(--su)/1));
}
.ring-offset-success-content {
  --tw-ring-offset-color: var(--fallback-suc,oklch(var(--suc)/1));
}
.ring-offset-success-content\/0 {
  --tw-ring-offset-color: var(--fallback-suc,oklch(var(--suc)/0));
}
.ring-offset-success-content\/10 {
  --tw-ring-offset-color: var(--fallback-suc,oklch(var(--suc)/0.1));
}
.ring-offset-success-content\/100 {
  --tw-ring-offset-color: var(--fallback-suc,oklch(var(--suc)/1));
}
.ring-offset-success-content\/15 {
  --tw-ring-offset-color: var(--fallback-suc,oklch(var(--suc)/0.15));
}
.ring-offset-success-content\/20 {
  --tw-ring-offset-color: var(--fallback-suc,oklch(var(--suc)/0.2));
}
.ring-offset-success-content\/25 {
  --tw-ring-offset-color: var(--fallback-suc,oklch(var(--suc)/0.25));
}
.ring-offset-success-content\/30 {
  --tw-ring-offset-color: var(--fallback-suc,oklch(var(--suc)/0.3));
}
.ring-offset-success-content\/35 {
  --tw-ring-offset-color: var(--fallback-suc,oklch(var(--suc)/0.35));
}
.ring-offset-success-content\/40 {
  --tw-ring-offset-color: var(--fallback-suc,oklch(var(--suc)/0.4));
}
.ring-offset-success-content\/45 {
  --tw-ring-offset-color: var(--fallback-suc,oklch(var(--suc)/0.45));
}
.ring-offset-success-content\/5 {
  --tw-ring-offset-color: var(--fallback-suc,oklch(var(--suc)/0.05));
}
.ring-offset-success-content\/50 {
  --tw-ring-offset-color: var(--fallback-suc,oklch(var(--suc)/0.5));
}
.ring-offset-success-content\/55 {
  --tw-ring-offset-color: var(--fallback-suc,oklch(var(--suc)/0.55));
}
.ring-offset-success-content\/60 {
  --tw-ring-offset-color: var(--fallback-suc,oklch(var(--suc)/0.6));
}
.ring-offset-success-content\/65 {
  --tw-ring-offset-color: var(--fallback-suc,oklch(var(--suc)/0.65));
}
.ring-offset-success-content\/70 {
  --tw-ring-offset-color: var(--fallback-suc,oklch(var(--suc)/0.7));
}
.ring-offset-success-content\/75 {
  --tw-ring-offset-color: var(--fallback-suc,oklch(var(--suc)/0.75));
}
.ring-offset-success-content\/80 {
  --tw-ring-offset-color: var(--fallback-suc,oklch(var(--suc)/0.8));
}
.ring-offset-success-content\/85 {
  --tw-ring-offset-color: var(--fallback-suc,oklch(var(--suc)/0.85));
}
.ring-offset-success-content\/90 {
  --tw-ring-offset-color: var(--fallback-suc,oklch(var(--suc)/0.9));
}
.ring-offset-success-content\/95 {
  --tw-ring-offset-color: var(--fallback-suc,oklch(var(--suc)/0.95));
}
.ring-offset-success\/0 {
  --tw-ring-offset-color: var(--fallback-su,oklch(var(--su)/0));
}
.ring-offset-success\/10 {
  --tw-ring-offset-color: var(--fallback-su,oklch(var(--su)/0.1));
}
.ring-offset-success\/100 {
  --tw-ring-offset-color: var(--fallback-su,oklch(var(--su)/1));
}
.ring-offset-success\/15 {
  --tw-ring-offset-color: var(--fallback-su,oklch(var(--su)/0.15));
}
.ring-offset-success\/20 {
  --tw-ring-offset-color: var(--fallback-su,oklch(var(--su)/0.2));
}
.ring-offset-success\/25 {
  --tw-ring-offset-color: var(--fallback-su,oklch(var(--su)/0.25));
}
.ring-offset-success\/30 {
  --tw-ring-offset-color: var(--fallback-su,oklch(var(--su)/0.3));
}
.ring-offset-success\/35 {
  --tw-ring-offset-color: var(--fallback-su,oklch(var(--su)/0.35));
}
.ring-offset-success\/40 {
  --tw-ring-offset-color: var(--fallback-su,oklch(var(--su)/0.4));
}
.ring-offset-success\/45 {
  --tw-ring-offset-color: var(--fallback-su,oklch(var(--su)/0.45));
}
.ring-offset-success\/5 {
  --tw-ring-offset-color: var(--fallback-su,oklch(var(--su)/0.05));
}
.ring-offset-success\/50 {
  --tw-ring-offset-color: var(--fallback-su,oklch(var(--su)/0.5));
}
.ring-offset-success\/55 {
  --tw-ring-offset-color: var(--fallback-su,oklch(var(--su)/0.55));
}
.ring-offset-success\/60 {
  --tw-ring-offset-color: var(--fallback-su,oklch(var(--su)/0.6));
}
.ring-offset-success\/65 {
  --tw-ring-offset-color: var(--fallback-su,oklch(var(--su)/0.65));
}
.ring-offset-success\/70 {
  --tw-ring-offset-color: var(--fallback-su,oklch(var(--su)/0.7));
}
.ring-offset-success\/75 {
  --tw-ring-offset-color: var(--fallback-su,oklch(var(--su)/0.75));
}
.ring-offset-success\/80 {
  --tw-ring-offset-color: var(--fallback-su,oklch(var(--su)/0.8));
}
.ring-offset-success\/85 {
  --tw-ring-offset-color: var(--fallback-su,oklch(var(--su)/0.85));
}
.ring-offset-success\/90 {
  --tw-ring-offset-color: var(--fallback-su,oklch(var(--su)/0.9));
}
.ring-offset-success\/95 {
  --tw-ring-offset-color: var(--fallback-su,oklch(var(--su)/0.95));
}
.ring-offset-teal-100 {
  --tw-ring-offset-color: #ccfbf1;
}
.ring-offset-teal-100\/0 {
  --tw-ring-offset-color: rgba(204, 251, 241, 0);
}
.ring-offset-teal-100\/10 {
  --tw-ring-offset-color: rgba(204, 251, 241, 0.1);
}
.ring-offset-teal-100\/100 {
  --tw-ring-offset-color: rgba(204, 251, 241, 1);
}
.ring-offset-teal-100\/15 {
  --tw-ring-offset-color: rgba(204, 251, 241, 0.15);
}
.ring-offset-teal-100\/20 {
  --tw-ring-offset-color: rgba(204, 251, 241, 0.2);
}
.ring-offset-teal-100\/25 {
  --tw-ring-offset-color: rgba(204, 251, 241, 0.25);
}
.ring-offset-teal-100\/30 {
  --tw-ring-offset-color: rgba(204, 251, 241, 0.3);
}
.ring-offset-teal-100\/35 {
  --tw-ring-offset-color: rgba(204, 251, 241, 0.35);
}
.ring-offset-teal-100\/40 {
  --tw-ring-offset-color: rgba(204, 251, 241, 0.4);
}
.ring-offset-teal-100\/45 {
  --tw-ring-offset-color: rgba(204, 251, 241, 0.45);
}
.ring-offset-teal-100\/5 {
  --tw-ring-offset-color: rgba(204, 251, 241, 0.05);
}
.ring-offset-teal-100\/50 {
  --tw-ring-offset-color: rgba(204, 251, 241, 0.5);
}
.ring-offset-teal-100\/55 {
  --tw-ring-offset-color: rgba(204, 251, 241, 0.55);
}
.ring-offset-teal-100\/60 {
  --tw-ring-offset-color: rgba(204, 251, 241, 0.6);
}
.ring-offset-teal-100\/65 {
  --tw-ring-offset-color: rgba(204, 251, 241, 0.65);
}
.ring-offset-teal-100\/70 {
  --tw-ring-offset-color: rgba(204, 251, 241, 0.7);
}
.ring-offset-teal-100\/75 {
  --tw-ring-offset-color: rgba(204, 251, 241, 0.75);
}
.ring-offset-teal-100\/80 {
  --tw-ring-offset-color: rgba(204, 251, 241, 0.8);
}
.ring-offset-teal-100\/85 {
  --tw-ring-offset-color: rgba(204, 251, 241, 0.85);
}
.ring-offset-teal-100\/90 {
  --tw-ring-offset-color: rgba(204, 251, 241, 0.9);
}
.ring-offset-teal-100\/95 {
  --tw-ring-offset-color: rgba(204, 251, 241, 0.95);
}
.ring-offset-teal-200 {
  --tw-ring-offset-color: #99f6e4;
}
.ring-offset-teal-200\/0 {
  --tw-ring-offset-color: rgba(153, 246, 228, 0);
}
.ring-offset-teal-200\/10 {
  --tw-ring-offset-color: rgba(153, 246, 228, 0.1);
}
.ring-offset-teal-200\/100 {
  --tw-ring-offset-color: rgba(153, 246, 228, 1);
}
.ring-offset-teal-200\/15 {
  --tw-ring-offset-color: rgba(153, 246, 228, 0.15);
}
.ring-offset-teal-200\/20 {
  --tw-ring-offset-color: rgba(153, 246, 228, 0.2);
}
.ring-offset-teal-200\/25 {
  --tw-ring-offset-color: rgba(153, 246, 228, 0.25);
}
.ring-offset-teal-200\/30 {
  --tw-ring-offset-color: rgba(153, 246, 228, 0.3);
}
.ring-offset-teal-200\/35 {
  --tw-ring-offset-color: rgba(153, 246, 228, 0.35);
}
.ring-offset-teal-200\/40 {
  --tw-ring-offset-color: rgba(153, 246, 228, 0.4);
}
.ring-offset-teal-200\/45 {
  --tw-ring-offset-color: rgba(153, 246, 228, 0.45);
}
.ring-offset-teal-200\/5 {
  --tw-ring-offset-color: rgba(153, 246, 228, 0.05);
}
.ring-offset-teal-200\/50 {
  --tw-ring-offset-color: rgba(153, 246, 228, 0.5);
}
.ring-offset-teal-200\/55 {
  --tw-ring-offset-color: rgba(153, 246, 228, 0.55);
}
.ring-offset-teal-200\/60 {
  --tw-ring-offset-color: rgba(153, 246, 228, 0.6);
}
.ring-offset-teal-200\/65 {
  --tw-ring-offset-color: rgba(153, 246, 228, 0.65);
}
.ring-offset-teal-200\/70 {
  --tw-ring-offset-color: rgba(153, 246, 228, 0.7);
}
.ring-offset-teal-200\/75 {
  --tw-ring-offset-color: rgba(153, 246, 228, 0.75);
}
.ring-offset-teal-200\/80 {
  --tw-ring-offset-color: rgba(153, 246, 228, 0.8);
}
.ring-offset-teal-200\/85 {
  --tw-ring-offset-color: rgba(153, 246, 228, 0.85);
}
.ring-offset-teal-200\/90 {
  --tw-ring-offset-color: rgba(153, 246, 228, 0.9);
}
.ring-offset-teal-200\/95 {
  --tw-ring-offset-color: rgba(153, 246, 228, 0.95);
}
.ring-offset-teal-300 {
  --tw-ring-offset-color: #5eead4;
}
.ring-offset-teal-300\/0 {
  --tw-ring-offset-color: rgba(94, 234, 212, 0);
}
.ring-offset-teal-300\/10 {
  --tw-ring-offset-color: rgba(94, 234, 212, 0.1);
}
.ring-offset-teal-300\/100 {
  --tw-ring-offset-color: rgba(94, 234, 212, 1);
}
.ring-offset-teal-300\/15 {
  --tw-ring-offset-color: rgba(94, 234, 212, 0.15);
}
.ring-offset-teal-300\/20 {
  --tw-ring-offset-color: rgba(94, 234, 212, 0.2);
}
.ring-offset-teal-300\/25 {
  --tw-ring-offset-color: rgba(94, 234, 212, 0.25);
}
.ring-offset-teal-300\/30 {
  --tw-ring-offset-color: rgba(94, 234, 212, 0.3);
}
.ring-offset-teal-300\/35 {
  --tw-ring-offset-color: rgba(94, 234, 212, 0.35);
}
.ring-offset-teal-300\/40 {
  --tw-ring-offset-color: rgba(94, 234, 212, 0.4);
}
.ring-offset-teal-300\/45 {
  --tw-ring-offset-color: rgba(94, 234, 212, 0.45);
}
.ring-offset-teal-300\/5 {
  --tw-ring-offset-color: rgba(94, 234, 212, 0.05);
}
.ring-offset-teal-300\/50 {
  --tw-ring-offset-color: rgba(94, 234, 212, 0.5);
}
.ring-offset-teal-300\/55 {
  --tw-ring-offset-color: rgba(94, 234, 212, 0.55);
}
.ring-offset-teal-300\/60 {
  --tw-ring-offset-color: rgba(94, 234, 212, 0.6);
}
.ring-offset-teal-300\/65 {
  --tw-ring-offset-color: rgba(94, 234, 212, 0.65);
}
.ring-offset-teal-300\/70 {
  --tw-ring-offset-color: rgba(94, 234, 212, 0.7);
}
.ring-offset-teal-300\/75 {
  --tw-ring-offset-color: rgba(94, 234, 212, 0.75);
}
.ring-offset-teal-300\/80 {
  --tw-ring-offset-color: rgba(94, 234, 212, 0.8);
}
.ring-offset-teal-300\/85 {
  --tw-ring-offset-color: rgba(94, 234, 212, 0.85);
}
.ring-offset-teal-300\/90 {
  --tw-ring-offset-color: rgba(94, 234, 212, 0.9);
}
.ring-offset-teal-300\/95 {
  --tw-ring-offset-color: rgba(94, 234, 212, 0.95);
}
.ring-offset-teal-400 {
  --tw-ring-offset-color: #2dd4bf;
}
.ring-offset-teal-400\/0 {
  --tw-ring-offset-color: rgba(45, 212, 191, 0);
}
.ring-offset-teal-400\/10 {
  --tw-ring-offset-color: rgba(45, 212, 191, 0.1);
}
.ring-offset-teal-400\/100 {
  --tw-ring-offset-color: rgba(45, 212, 191, 1);
}
.ring-offset-teal-400\/15 {
  --tw-ring-offset-color: rgba(45, 212, 191, 0.15);
}
.ring-offset-teal-400\/20 {
  --tw-ring-offset-color: rgba(45, 212, 191, 0.2);
}
.ring-offset-teal-400\/25 {
  --tw-ring-offset-color: rgba(45, 212, 191, 0.25);
}
.ring-offset-teal-400\/30 {
  --tw-ring-offset-color: rgba(45, 212, 191, 0.3);
}
.ring-offset-teal-400\/35 {
  --tw-ring-offset-color: rgba(45, 212, 191, 0.35);
}
.ring-offset-teal-400\/40 {
  --tw-ring-offset-color: rgba(45, 212, 191, 0.4);
}
.ring-offset-teal-400\/45 {
  --tw-ring-offset-color: rgba(45, 212, 191, 0.45);
}
.ring-offset-teal-400\/5 {
  --tw-ring-offset-color: rgba(45, 212, 191, 0.05);
}
.ring-offset-teal-400\/50 {
  --tw-ring-offset-color: rgba(45, 212, 191, 0.5);
}
.ring-offset-teal-400\/55 {
  --tw-ring-offset-color: rgba(45, 212, 191, 0.55);
}
.ring-offset-teal-400\/60 {
  --tw-ring-offset-color: rgba(45, 212, 191, 0.6);
}
.ring-offset-teal-400\/65 {
  --tw-ring-offset-color: rgba(45, 212, 191, 0.65);
}
.ring-offset-teal-400\/70 {
  --tw-ring-offset-color: rgba(45, 212, 191, 0.7);
}
.ring-offset-teal-400\/75 {
  --tw-ring-offset-color: rgba(45, 212, 191, 0.75);
}
.ring-offset-teal-400\/80 {
  --tw-ring-offset-color: rgba(45, 212, 191, 0.8);
}
.ring-offset-teal-400\/85 {
  --tw-ring-offset-color: rgba(45, 212, 191, 0.85);
}
.ring-offset-teal-400\/90 {
  --tw-ring-offset-color: rgba(45, 212, 191, 0.9);
}
.ring-offset-teal-400\/95 {
  --tw-ring-offset-color: rgba(45, 212, 191, 0.95);
}
.ring-offset-teal-50 {
  --tw-ring-offset-color: #f0fdfa;
}
.ring-offset-teal-50\/0 {
  --tw-ring-offset-color: rgba(240, 253, 250, 0);
}
.ring-offset-teal-50\/10 {
  --tw-ring-offset-color: rgba(240, 253, 250, 0.1);
}
.ring-offset-teal-50\/100 {
  --tw-ring-offset-color: rgba(240, 253, 250, 1);
}
.ring-offset-teal-50\/15 {
  --tw-ring-offset-color: rgba(240, 253, 250, 0.15);
}
.ring-offset-teal-50\/20 {
  --tw-ring-offset-color: rgba(240, 253, 250, 0.2);
}
.ring-offset-teal-50\/25 {
  --tw-ring-offset-color: rgba(240, 253, 250, 0.25);
}
.ring-offset-teal-50\/30 {
  --tw-ring-offset-color: rgba(240, 253, 250, 0.3);
}
.ring-offset-teal-50\/35 {
  --tw-ring-offset-color: rgba(240, 253, 250, 0.35);
}
.ring-offset-teal-50\/40 {
  --tw-ring-offset-color: rgba(240, 253, 250, 0.4);
}
.ring-offset-teal-50\/45 {
  --tw-ring-offset-color: rgba(240, 253, 250, 0.45);
}
.ring-offset-teal-50\/5 {
  --tw-ring-offset-color: rgba(240, 253, 250, 0.05);
}
.ring-offset-teal-50\/50 {
  --tw-ring-offset-color: rgba(240, 253, 250, 0.5);
}
.ring-offset-teal-50\/55 {
  --tw-ring-offset-color: rgba(240, 253, 250, 0.55);
}
.ring-offset-teal-50\/60 {
  --tw-ring-offset-color: rgba(240, 253, 250, 0.6);
}
.ring-offset-teal-50\/65 {
  --tw-ring-offset-color: rgba(240, 253, 250, 0.65);
}
.ring-offset-teal-50\/70 {
  --tw-ring-offset-color: rgba(240, 253, 250, 0.7);
}
.ring-offset-teal-50\/75 {
  --tw-ring-offset-color: rgba(240, 253, 250, 0.75);
}
.ring-offset-teal-50\/80 {
  --tw-ring-offset-color: rgba(240, 253, 250, 0.8);
}
.ring-offset-teal-50\/85 {
  --tw-ring-offset-color: rgba(240, 253, 250, 0.85);
}
.ring-offset-teal-50\/90 {
  --tw-ring-offset-color: rgba(240, 253, 250, 0.9);
}
.ring-offset-teal-50\/95 {
  --tw-ring-offset-color: rgba(240, 253, 250, 0.95);
}
.ring-offset-teal-500 {
  --tw-ring-offset-color: #14b8a6;
}
.ring-offset-teal-500\/0 {
  --tw-ring-offset-color: rgba(20, 184, 166, 0);
}
.ring-offset-teal-500\/10 {
  --tw-ring-offset-color: rgba(20, 184, 166, 0.1);
}
.ring-offset-teal-500\/100 {
  --tw-ring-offset-color: rgba(20, 184, 166, 1);
}
.ring-offset-teal-500\/15 {
  --tw-ring-offset-color: rgba(20, 184, 166, 0.15);
}
.ring-offset-teal-500\/20 {
  --tw-ring-offset-color: rgba(20, 184, 166, 0.2);
}
.ring-offset-teal-500\/25 {
  --tw-ring-offset-color: rgba(20, 184, 166, 0.25);
}
.ring-offset-teal-500\/30 {
  --tw-ring-offset-color: rgba(20, 184, 166, 0.3);
}
.ring-offset-teal-500\/35 {
  --tw-ring-offset-color: rgba(20, 184, 166, 0.35);
}
.ring-offset-teal-500\/40 {
  --tw-ring-offset-color: rgba(20, 184, 166, 0.4);
}
.ring-offset-teal-500\/45 {
  --tw-ring-offset-color: rgba(20, 184, 166, 0.45);
}
.ring-offset-teal-500\/5 {
  --tw-ring-offset-color: rgba(20, 184, 166, 0.05);
}
.ring-offset-teal-500\/50 {
  --tw-ring-offset-color: rgba(20, 184, 166, 0.5);
}
.ring-offset-teal-500\/55 {
  --tw-ring-offset-color: rgba(20, 184, 166, 0.55);
}
.ring-offset-teal-500\/60 {
  --tw-ring-offset-color: rgba(20, 184, 166, 0.6);
}
.ring-offset-teal-500\/65 {
  --tw-ring-offset-color: rgba(20, 184, 166, 0.65);
}
.ring-offset-teal-500\/70 {
  --tw-ring-offset-color: rgba(20, 184, 166, 0.7);
}
.ring-offset-teal-500\/75 {
  --tw-ring-offset-color: rgba(20, 184, 166, 0.75);
}
.ring-offset-teal-500\/80 {
  --tw-ring-offset-color: rgba(20, 184, 166, 0.8);
}
.ring-offset-teal-500\/85 {
  --tw-ring-offset-color: rgba(20, 184, 166, 0.85);
}
.ring-offset-teal-500\/90 {
  --tw-ring-offset-color: rgba(20, 184, 166, 0.9);
}
.ring-offset-teal-500\/95 {
  --tw-ring-offset-color: rgba(20, 184, 166, 0.95);
}
.ring-offset-teal-600 {
  --tw-ring-offset-color: #0d9488;
}
.ring-offset-teal-600\/0 {
  --tw-ring-offset-color: rgba(13, 148, 136, 0);
}
.ring-offset-teal-600\/10 {
  --tw-ring-offset-color: rgba(13, 148, 136, 0.1);
}
.ring-offset-teal-600\/100 {
  --tw-ring-offset-color: rgba(13, 148, 136, 1);
}
.ring-offset-teal-600\/15 {
  --tw-ring-offset-color: rgba(13, 148, 136, 0.15);
}
.ring-offset-teal-600\/20 {
  --tw-ring-offset-color: rgba(13, 148, 136, 0.2);
}
.ring-offset-teal-600\/25 {
  --tw-ring-offset-color: rgba(13, 148, 136, 0.25);
}
.ring-offset-teal-600\/30 {
  --tw-ring-offset-color: rgba(13, 148, 136, 0.3);
}
.ring-offset-teal-600\/35 {
  --tw-ring-offset-color: rgba(13, 148, 136, 0.35);
}
.ring-offset-teal-600\/40 {
  --tw-ring-offset-color: rgba(13, 148, 136, 0.4);
}
.ring-offset-teal-600\/45 {
  --tw-ring-offset-color: rgba(13, 148, 136, 0.45);
}
.ring-offset-teal-600\/5 {
  --tw-ring-offset-color: rgba(13, 148, 136, 0.05);
}
.ring-offset-teal-600\/50 {
  --tw-ring-offset-color: rgba(13, 148, 136, 0.5);
}
.ring-offset-teal-600\/55 {
  --tw-ring-offset-color: rgba(13, 148, 136, 0.55);
}
.ring-offset-teal-600\/60 {
  --tw-ring-offset-color: rgba(13, 148, 136, 0.6);
}
.ring-offset-teal-600\/65 {
  --tw-ring-offset-color: rgba(13, 148, 136, 0.65);
}
.ring-offset-teal-600\/70 {
  --tw-ring-offset-color: rgba(13, 148, 136, 0.7);
}
.ring-offset-teal-600\/75 {
  --tw-ring-offset-color: rgba(13, 148, 136, 0.75);
}
.ring-offset-teal-600\/80 {
  --tw-ring-offset-color: rgba(13, 148, 136, 0.8);
}
.ring-offset-teal-600\/85 {
  --tw-ring-offset-color: rgba(13, 148, 136, 0.85);
}
.ring-offset-teal-600\/90 {
  --tw-ring-offset-color: rgba(13, 148, 136, 0.9);
}
.ring-offset-teal-600\/95 {
  --tw-ring-offset-color: rgba(13, 148, 136, 0.95);
}
.ring-offset-teal-700 {
  --tw-ring-offset-color: #0f766e;
}
.ring-offset-teal-700\/0 {
  --tw-ring-offset-color: rgba(15, 118, 110, 0);
}
.ring-offset-teal-700\/10 {
  --tw-ring-offset-color: rgba(15, 118, 110, 0.1);
}
.ring-offset-teal-700\/100 {
  --tw-ring-offset-color: rgba(15, 118, 110, 1);
}
.ring-offset-teal-700\/15 {
  --tw-ring-offset-color: rgba(15, 118, 110, 0.15);
}
.ring-offset-teal-700\/20 {
  --tw-ring-offset-color: rgba(15, 118, 110, 0.2);
}
.ring-offset-teal-700\/25 {
  --tw-ring-offset-color: rgba(15, 118, 110, 0.25);
}
.ring-offset-teal-700\/30 {
  --tw-ring-offset-color: rgba(15, 118, 110, 0.3);
}
.ring-offset-teal-700\/35 {
  --tw-ring-offset-color: rgba(15, 118, 110, 0.35);
}
.ring-offset-teal-700\/40 {
  --tw-ring-offset-color: rgba(15, 118, 110, 0.4);
}
.ring-offset-teal-700\/45 {
  --tw-ring-offset-color: rgba(15, 118, 110, 0.45);
}
.ring-offset-teal-700\/5 {
  --tw-ring-offset-color: rgba(15, 118, 110, 0.05);
}
.ring-offset-teal-700\/50 {
  --tw-ring-offset-color: rgba(15, 118, 110, 0.5);
}
.ring-offset-teal-700\/55 {
  --tw-ring-offset-color: rgba(15, 118, 110, 0.55);
}
.ring-offset-teal-700\/60 {
  --tw-ring-offset-color: rgba(15, 118, 110, 0.6);
}
.ring-offset-teal-700\/65 {
  --tw-ring-offset-color: rgba(15, 118, 110, 0.65);
}
.ring-offset-teal-700\/70 {
  --tw-ring-offset-color: rgba(15, 118, 110, 0.7);
}
.ring-offset-teal-700\/75 {
  --tw-ring-offset-color: rgba(15, 118, 110, 0.75);
}
.ring-offset-teal-700\/80 {
  --tw-ring-offset-color: rgba(15, 118, 110, 0.8);
}
.ring-offset-teal-700\/85 {
  --tw-ring-offset-color: rgba(15, 118, 110, 0.85);
}
.ring-offset-teal-700\/90 {
  --tw-ring-offset-color: rgba(15, 118, 110, 0.9);
}
.ring-offset-teal-700\/95 {
  --tw-ring-offset-color: rgba(15, 118, 110, 0.95);
}
.ring-offset-teal-800 {
  --tw-ring-offset-color: #115e59;
}
.ring-offset-teal-800\/0 {
  --tw-ring-offset-color: rgba(17, 94, 89, 0);
}
.ring-offset-teal-800\/10 {
  --tw-ring-offset-color: rgba(17, 94, 89, 0.1);
}
.ring-offset-teal-800\/100 {
  --tw-ring-offset-color: rgba(17, 94, 89, 1);
}
.ring-offset-teal-800\/15 {
  --tw-ring-offset-color: rgba(17, 94, 89, 0.15);
}
.ring-offset-teal-800\/20 {
  --tw-ring-offset-color: rgba(17, 94, 89, 0.2);
}
.ring-offset-teal-800\/25 {
  --tw-ring-offset-color: rgba(17, 94, 89, 0.25);
}
.ring-offset-teal-800\/30 {
  --tw-ring-offset-color: rgba(17, 94, 89, 0.3);
}
.ring-offset-teal-800\/35 {
  --tw-ring-offset-color: rgba(17, 94, 89, 0.35);
}
.ring-offset-teal-800\/40 {
  --tw-ring-offset-color: rgba(17, 94, 89, 0.4);
}
.ring-offset-teal-800\/45 {
  --tw-ring-offset-color: rgba(17, 94, 89, 0.45);
}
.ring-offset-teal-800\/5 {
  --tw-ring-offset-color: rgba(17, 94, 89, 0.05);
}
.ring-offset-teal-800\/50 {
  --tw-ring-offset-color: rgba(17, 94, 89, 0.5);
}
.ring-offset-teal-800\/55 {
  --tw-ring-offset-color: rgba(17, 94, 89, 0.55);
}
.ring-offset-teal-800\/60 {
  --tw-ring-offset-color: rgba(17, 94, 89, 0.6);
}
.ring-offset-teal-800\/65 {
  --tw-ring-offset-color: rgba(17, 94, 89, 0.65);
}
.ring-offset-teal-800\/70 {
  --tw-ring-offset-color: rgba(17, 94, 89, 0.7);
}
.ring-offset-teal-800\/75 {
  --tw-ring-offset-color: rgba(17, 94, 89, 0.75);
}
.ring-offset-teal-800\/80 {
  --tw-ring-offset-color: rgba(17, 94, 89, 0.8);
}
.ring-offset-teal-800\/85 {
  --tw-ring-offset-color: rgba(17, 94, 89, 0.85);
}
.ring-offset-teal-800\/90 {
  --tw-ring-offset-color: rgba(17, 94, 89, 0.9);
}
.ring-offset-teal-800\/95 {
  --tw-ring-offset-color: rgba(17, 94, 89, 0.95);
}
.ring-offset-teal-900 {
  --tw-ring-offset-color: #134e4a;
}
.ring-offset-teal-900\/0 {
  --tw-ring-offset-color: rgba(19, 78, 74, 0);
}
.ring-offset-teal-900\/10 {
  --tw-ring-offset-color: rgba(19, 78, 74, 0.1);
}
.ring-offset-teal-900\/100 {
  --tw-ring-offset-color: rgba(19, 78, 74, 1);
}
.ring-offset-teal-900\/15 {
  --tw-ring-offset-color: rgba(19, 78, 74, 0.15);
}
.ring-offset-teal-900\/20 {
  --tw-ring-offset-color: rgba(19, 78, 74, 0.2);
}
.ring-offset-teal-900\/25 {
  --tw-ring-offset-color: rgba(19, 78, 74, 0.25);
}
.ring-offset-teal-900\/30 {
  --tw-ring-offset-color: rgba(19, 78, 74, 0.3);
}
.ring-offset-teal-900\/35 {
  --tw-ring-offset-color: rgba(19, 78, 74, 0.35);
}
.ring-offset-teal-900\/40 {
  --tw-ring-offset-color: rgba(19, 78, 74, 0.4);
}
.ring-offset-teal-900\/45 {
  --tw-ring-offset-color: rgba(19, 78, 74, 0.45);
}
.ring-offset-teal-900\/5 {
  --tw-ring-offset-color: rgba(19, 78, 74, 0.05);
}
.ring-offset-teal-900\/50 {
  --tw-ring-offset-color: rgba(19, 78, 74, 0.5);
}
.ring-offset-teal-900\/55 {
  --tw-ring-offset-color: rgba(19, 78, 74, 0.55);
}
.ring-offset-teal-900\/60 {
  --tw-ring-offset-color: rgba(19, 78, 74, 0.6);
}
.ring-offset-teal-900\/65 {
  --tw-ring-offset-color: rgba(19, 78, 74, 0.65);
}
.ring-offset-teal-900\/70 {
  --tw-ring-offset-color: rgba(19, 78, 74, 0.7);
}
.ring-offset-teal-900\/75 {
  --tw-ring-offset-color: rgba(19, 78, 74, 0.75);
}
.ring-offset-teal-900\/80 {
  --tw-ring-offset-color: rgba(19, 78, 74, 0.8);
}
.ring-offset-teal-900\/85 {
  --tw-ring-offset-color: rgba(19, 78, 74, 0.85);
}
.ring-offset-teal-900\/90 {
  --tw-ring-offset-color: rgba(19, 78, 74, 0.9);
}
.ring-offset-teal-900\/95 {
  --tw-ring-offset-color: rgba(19, 78, 74, 0.95);
}
.ring-offset-teal-950 {
  --tw-ring-offset-color: #042f2e;
}
.ring-offset-teal-950\/0 {
  --tw-ring-offset-color: rgba(4, 47, 46, 0);
}
.ring-offset-teal-950\/10 {
  --tw-ring-offset-color: rgba(4, 47, 46, 0.1);
}
.ring-offset-teal-950\/100 {
  --tw-ring-offset-color: rgba(4, 47, 46, 1);
}
.ring-offset-teal-950\/15 {
  --tw-ring-offset-color: rgba(4, 47, 46, 0.15);
}
.ring-offset-teal-950\/20 {
  --tw-ring-offset-color: rgba(4, 47, 46, 0.2);
}
.ring-offset-teal-950\/25 {
  --tw-ring-offset-color: rgba(4, 47, 46, 0.25);
}
.ring-offset-teal-950\/30 {
  --tw-ring-offset-color: rgba(4, 47, 46, 0.3);
}
.ring-offset-teal-950\/35 {
  --tw-ring-offset-color: rgba(4, 47, 46, 0.35);
}
.ring-offset-teal-950\/40 {
  --tw-ring-offset-color: rgba(4, 47, 46, 0.4);
}
.ring-offset-teal-950\/45 {
  --tw-ring-offset-color: rgba(4, 47, 46, 0.45);
}
.ring-offset-teal-950\/5 {
  --tw-ring-offset-color: rgba(4, 47, 46, 0.05);
}
.ring-offset-teal-950\/50 {
  --tw-ring-offset-color: rgba(4, 47, 46, 0.5);
}
.ring-offset-teal-950\/55 {
  --tw-ring-offset-color: rgba(4, 47, 46, 0.55);
}
.ring-offset-teal-950\/60 {
  --tw-ring-offset-color: rgba(4, 47, 46, 0.6);
}
.ring-offset-teal-950\/65 {
  --tw-ring-offset-color: rgba(4, 47, 46, 0.65);
}
.ring-offset-teal-950\/70 {
  --tw-ring-offset-color: rgba(4, 47, 46, 0.7);
}
.ring-offset-teal-950\/75 {
  --tw-ring-offset-color: rgba(4, 47, 46, 0.75);
}
.ring-offset-teal-950\/80 {
  --tw-ring-offset-color: rgba(4, 47, 46, 0.8);
}
.ring-offset-teal-950\/85 {
  --tw-ring-offset-color: rgba(4, 47, 46, 0.85);
}
.ring-offset-teal-950\/90 {
  --tw-ring-offset-color: rgba(4, 47, 46, 0.9);
}
.ring-offset-teal-950\/95 {
  --tw-ring-offset-color: rgba(4, 47, 46, 0.95);
}
.ring-offset-transparent {
  --tw-ring-offset-color: transparent;
}
.ring-offset-transparent\/0 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0);
}
.ring-offset-transparent\/10 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.1);
}
.ring-offset-transparent\/100 {
  --tw-ring-offset-color: rgba(0, 0, 0, 1);
}
.ring-offset-transparent\/15 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.15);
}
.ring-offset-transparent\/20 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.2);
}
.ring-offset-transparent\/25 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.25);
}
.ring-offset-transparent\/30 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.3);
}
.ring-offset-transparent\/35 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.35);
}
.ring-offset-transparent\/40 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.4);
}
.ring-offset-transparent\/45 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.45);
}
.ring-offset-transparent\/5 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.05);
}
.ring-offset-transparent\/50 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.5);
}
.ring-offset-transparent\/55 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.55);
}
.ring-offset-transparent\/60 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.6);
}
.ring-offset-transparent\/65 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.65);
}
.ring-offset-transparent\/70 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.7);
}
.ring-offset-transparent\/75 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.75);
}
.ring-offset-transparent\/80 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.8);
}
.ring-offset-transparent\/85 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.85);
}
.ring-offset-transparent\/90 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.9);
}
.ring-offset-transparent\/95 {
  --tw-ring-offset-color: rgba(0, 0, 0, 0.95);
}
.ring-offset-violet-100 {
  --tw-ring-offset-color: #ede9fe;
}
.ring-offset-violet-100\/0 {
  --tw-ring-offset-color: rgba(237, 233, 254, 0);
}
.ring-offset-violet-100\/10 {
  --tw-ring-offset-color: rgba(237, 233, 254, 0.1);
}
.ring-offset-violet-100\/100 {
  --tw-ring-offset-color: rgba(237, 233, 254, 1);
}
.ring-offset-violet-100\/15 {
  --tw-ring-offset-color: rgba(237, 233, 254, 0.15);
}
.ring-offset-violet-100\/20 {
  --tw-ring-offset-color: rgba(237, 233, 254, 0.2);
}
.ring-offset-violet-100\/25 {
  --tw-ring-offset-color: rgba(237, 233, 254, 0.25);
}
.ring-offset-violet-100\/30 {
  --tw-ring-offset-color: rgba(237, 233, 254, 0.3);
}
.ring-offset-violet-100\/35 {
  --tw-ring-offset-color: rgba(237, 233, 254, 0.35);
}
.ring-offset-violet-100\/40 {
  --tw-ring-offset-color: rgba(237, 233, 254, 0.4);
}
.ring-offset-violet-100\/45 {
  --tw-ring-offset-color: rgba(237, 233, 254, 0.45);
}
.ring-offset-violet-100\/5 {
  --tw-ring-offset-color: rgba(237, 233, 254, 0.05);
}
.ring-offset-violet-100\/50 {
  --tw-ring-offset-color: rgba(237, 233, 254, 0.5);
}
.ring-offset-violet-100\/55 {
  --tw-ring-offset-color: rgba(237, 233, 254, 0.55);
}
.ring-offset-violet-100\/60 {
  --tw-ring-offset-color: rgba(237, 233, 254, 0.6);
}
.ring-offset-violet-100\/65 {
  --tw-ring-offset-color: rgba(237, 233, 254, 0.65);
}
.ring-offset-violet-100\/70 {
  --tw-ring-offset-color: rgba(237, 233, 254, 0.7);
}
.ring-offset-violet-100\/75 {
  --tw-ring-offset-color: rgba(237, 233, 254, 0.75);
}
.ring-offset-violet-100\/80 {
  --tw-ring-offset-color: rgba(237, 233, 254, 0.8);
}
.ring-offset-violet-100\/85 {
  --tw-ring-offset-color: rgba(237, 233, 254, 0.85);
}
.ring-offset-violet-100\/90 {
  --tw-ring-offset-color: rgba(237, 233, 254, 0.9);
}
.ring-offset-violet-100\/95 {
  --tw-ring-offset-color: rgba(237, 233, 254, 0.95);
}
.ring-offset-violet-200 {
  --tw-ring-offset-color: #ddd6fe;
}
.ring-offset-violet-200\/0 {
  --tw-ring-offset-color: rgba(221, 214, 254, 0);
}
.ring-offset-violet-200\/10 {
  --tw-ring-offset-color: rgba(221, 214, 254, 0.1);
}
.ring-offset-violet-200\/100 {
  --tw-ring-offset-color: rgba(221, 214, 254, 1);
}
.ring-offset-violet-200\/15 {
  --tw-ring-offset-color: rgba(221, 214, 254, 0.15);
}
.ring-offset-violet-200\/20 {
  --tw-ring-offset-color: rgba(221, 214, 254, 0.2);
}
.ring-offset-violet-200\/25 {
  --tw-ring-offset-color: rgba(221, 214, 254, 0.25);
}
.ring-offset-violet-200\/30 {
  --tw-ring-offset-color: rgba(221, 214, 254, 0.3);
}
.ring-offset-violet-200\/35 {
  --tw-ring-offset-color: rgba(221, 214, 254, 0.35);
}
.ring-offset-violet-200\/40 {
  --tw-ring-offset-color: rgba(221, 214, 254, 0.4);
}
.ring-offset-violet-200\/45 {
  --tw-ring-offset-color: rgba(221, 214, 254, 0.45);
}
.ring-offset-violet-200\/5 {
  --tw-ring-offset-color: rgba(221, 214, 254, 0.05);
}
.ring-offset-violet-200\/50 {
  --tw-ring-offset-color: rgba(221, 214, 254, 0.5);
}
.ring-offset-violet-200\/55 {
  --tw-ring-offset-color: rgba(221, 214, 254, 0.55);
}
.ring-offset-violet-200\/60 {
  --tw-ring-offset-color: rgba(221, 214, 254, 0.6);
}
.ring-offset-violet-200\/65 {
  --tw-ring-offset-color: rgba(221, 214, 254, 0.65);
}
.ring-offset-violet-200\/70 {
  --tw-ring-offset-color: rgba(221, 214, 254, 0.7);
}
.ring-offset-violet-200\/75 {
  --tw-ring-offset-color: rgba(221, 214, 254, 0.75);
}
.ring-offset-violet-200\/80 {
  --tw-ring-offset-color: rgba(221, 214, 254, 0.8);
}
.ring-offset-violet-200\/85 {
  --tw-ring-offset-color: rgba(221, 214, 254, 0.85);
}
.ring-offset-violet-200\/90 {
  --tw-ring-offset-color: rgba(221, 214, 254, 0.9);
}
.ring-offset-violet-200\/95 {
  --tw-ring-offset-color: rgba(221, 214, 254, 0.95);
}
.ring-offset-violet-300 {
  --tw-ring-offset-color: #c4b5fd;
}
.ring-offset-violet-300\/0 {
  --tw-ring-offset-color: rgba(196, 181, 253, 0);
}
.ring-offset-violet-300\/10 {
  --tw-ring-offset-color: rgba(196, 181, 253, 0.1);
}
.ring-offset-violet-300\/100 {
  --tw-ring-offset-color: rgba(196, 181, 253, 1);
}
.ring-offset-violet-300\/15 {
  --tw-ring-offset-color: rgba(196, 181, 253, 0.15);
}
.ring-offset-violet-300\/20 {
  --tw-ring-offset-color: rgba(196, 181, 253, 0.2);
}
.ring-offset-violet-300\/25 {
  --tw-ring-offset-color: rgba(196, 181, 253, 0.25);
}
.ring-offset-violet-300\/30 {
  --tw-ring-offset-color: rgba(196, 181, 253, 0.3);
}
.ring-offset-violet-300\/35 {
  --tw-ring-offset-color: rgba(196, 181, 253, 0.35);
}
.ring-offset-violet-300\/40 {
  --tw-ring-offset-color: rgba(196, 181, 253, 0.4);
}
.ring-offset-violet-300\/45 {
  --tw-ring-offset-color: rgba(196, 181, 253, 0.45);
}
.ring-offset-violet-300\/5 {
  --tw-ring-offset-color: rgba(196, 181, 253, 0.05);
}
.ring-offset-violet-300\/50 {
  --tw-ring-offset-color: rgba(196, 181, 253, 0.5);
}
.ring-offset-violet-300\/55 {
  --tw-ring-offset-color: rgba(196, 181, 253, 0.55);
}
.ring-offset-violet-300\/60 {
  --tw-ring-offset-color: rgba(196, 181, 253, 0.6);
}
.ring-offset-violet-300\/65 {
  --tw-ring-offset-color: rgba(196, 181, 253, 0.65);
}
.ring-offset-violet-300\/70 {
  --tw-ring-offset-color: rgba(196, 181, 253, 0.7);
}
.ring-offset-violet-300\/75 {
  --tw-ring-offset-color: rgba(196, 181, 253, 0.75);
}
.ring-offset-violet-300\/80 {
  --tw-ring-offset-color: rgba(196, 181, 253, 0.8);
}
.ring-offset-violet-300\/85 {
  --tw-ring-offset-color: rgba(196, 181, 253, 0.85);
}
.ring-offset-violet-300\/90 {
  --tw-ring-offset-color: rgba(196, 181, 253, 0.9);
}
.ring-offset-violet-300\/95 {
  --tw-ring-offset-color: rgba(196, 181, 253, 0.95);
}
.ring-offset-violet-400 {
  --tw-ring-offset-color: #a78bfa;
}
.ring-offset-violet-400\/0 {
  --tw-ring-offset-color: rgba(167, 139, 250, 0);
}
.ring-offset-violet-400\/10 {
  --tw-ring-offset-color: rgba(167, 139, 250, 0.1);
}
.ring-offset-violet-400\/100 {
  --tw-ring-offset-color: rgba(167, 139, 250, 1);
}
.ring-offset-violet-400\/15 {
  --tw-ring-offset-color: rgba(167, 139, 250, 0.15);
}
.ring-offset-violet-400\/20 {
  --tw-ring-offset-color: rgba(167, 139, 250, 0.2);
}
.ring-offset-violet-400\/25 {
  --tw-ring-offset-color: rgba(167, 139, 250, 0.25);
}
.ring-offset-violet-400\/30 {
  --tw-ring-offset-color: rgba(167, 139, 250, 0.3);
}
.ring-offset-violet-400\/35 {
  --tw-ring-offset-color: rgba(167, 139, 250, 0.35);
}
.ring-offset-violet-400\/40 {
  --tw-ring-offset-color: rgba(167, 139, 250, 0.4);
}
.ring-offset-violet-400\/45 {
  --tw-ring-offset-color: rgba(167, 139, 250, 0.45);
}
.ring-offset-violet-400\/5 {
  --tw-ring-offset-color: rgba(167, 139, 250, 0.05);
}
.ring-offset-violet-400\/50 {
  --tw-ring-offset-color: rgba(167, 139, 250, 0.5);
}
.ring-offset-violet-400\/55 {
  --tw-ring-offset-color: rgba(167, 139, 250, 0.55);
}
.ring-offset-violet-400\/60 {
  --tw-ring-offset-color: rgba(167, 139, 250, 0.6);
}
.ring-offset-violet-400\/65 {
  --tw-ring-offset-color: rgba(167, 139, 250, 0.65);
}
.ring-offset-violet-400\/70 {
  --tw-ring-offset-color: rgba(167, 139, 250, 0.7);
}
.ring-offset-violet-400\/75 {
  --tw-ring-offset-color: rgba(167, 139, 250, 0.75);
}
.ring-offset-violet-400\/80 {
  --tw-ring-offset-color: rgba(167, 139, 250, 0.8);
}
.ring-offset-violet-400\/85 {
  --tw-ring-offset-color: rgba(167, 139, 250, 0.85);
}
.ring-offset-violet-400\/90 {
  --tw-ring-offset-color: rgba(167, 139, 250, 0.9);
}
.ring-offset-violet-400\/95 {
  --tw-ring-offset-color: rgba(167, 139, 250, 0.95);
}
.ring-offset-violet-50 {
  --tw-ring-offset-color: #f5f3ff;
}
.ring-offset-violet-50\/0 {
  --tw-ring-offset-color: rgba(245, 243, 255, 0);
}
.ring-offset-violet-50\/10 {
  --tw-ring-offset-color: rgba(245, 243, 255, 0.1);
}
.ring-offset-violet-50\/100 {
  --tw-ring-offset-color: rgba(245, 243, 255, 1);
}
.ring-offset-violet-50\/15 {
  --tw-ring-offset-color: rgba(245, 243, 255, 0.15);
}
.ring-offset-violet-50\/20 {
  --tw-ring-offset-color: rgba(245, 243, 255, 0.2);
}
.ring-offset-violet-50\/25 {
  --tw-ring-offset-color: rgba(245, 243, 255, 0.25);
}
.ring-offset-violet-50\/30 {
  --tw-ring-offset-color: rgba(245, 243, 255, 0.3);
}
.ring-offset-violet-50\/35 {
  --tw-ring-offset-color: rgba(245, 243, 255, 0.35);
}
.ring-offset-violet-50\/40 {
  --tw-ring-offset-color: rgba(245, 243, 255, 0.4);
}
.ring-offset-violet-50\/45 {
  --tw-ring-offset-color: rgba(245, 243, 255, 0.45);
}
.ring-offset-violet-50\/5 {
  --tw-ring-offset-color: rgba(245, 243, 255, 0.05);
}
.ring-offset-violet-50\/50 {
  --tw-ring-offset-color: rgba(245, 243, 255, 0.5);
}
.ring-offset-violet-50\/55 {
  --tw-ring-offset-color: rgba(245, 243, 255, 0.55);
}
.ring-offset-violet-50\/60 {
  --tw-ring-offset-color: rgba(245, 243, 255, 0.6);
}
.ring-offset-violet-50\/65 {
  --tw-ring-offset-color: rgba(245, 243, 255, 0.65);
}
.ring-offset-violet-50\/70 {
  --tw-ring-offset-color: rgba(245, 243, 255, 0.7);
}
.ring-offset-violet-50\/75 {
  --tw-ring-offset-color: rgba(245, 243, 255, 0.75);
}
.ring-offset-violet-50\/80 {
  --tw-ring-offset-color: rgba(245, 243, 255, 0.8);
}
.ring-offset-violet-50\/85 {
  --tw-ring-offset-color: rgba(245, 243, 255, 0.85);
}
.ring-offset-violet-50\/90 {
  --tw-ring-offset-color: rgba(245, 243, 255, 0.9);
}
.ring-offset-violet-50\/95 {
  --tw-ring-offset-color: rgba(245, 243, 255, 0.95);
}
.ring-offset-violet-500 {
  --tw-ring-offset-color: #8b5cf6;
}
.ring-offset-violet-500\/0 {
  --tw-ring-offset-color: rgba(139, 92, 246, 0);
}
.ring-offset-violet-500\/10 {
  --tw-ring-offset-color: rgba(139, 92, 246, 0.1);
}
.ring-offset-violet-500\/100 {
  --tw-ring-offset-color: rgba(139, 92, 246, 1);
}
.ring-offset-violet-500\/15 {
  --tw-ring-offset-color: rgba(139, 92, 246, 0.15);
}
.ring-offset-violet-500\/20 {
  --tw-ring-offset-color: rgba(139, 92, 246, 0.2);
}
.ring-offset-violet-500\/25 {
  --tw-ring-offset-color: rgba(139, 92, 246, 0.25);
}
.ring-offset-violet-500\/30 {
  --tw-ring-offset-color: rgba(139, 92, 246, 0.3);
}
.ring-offset-violet-500\/35 {
  --tw-ring-offset-color: rgba(139, 92, 246, 0.35);
}
.ring-offset-violet-500\/40 {
  --tw-ring-offset-color: rgba(139, 92, 246, 0.4);
}
.ring-offset-violet-500\/45 {
  --tw-ring-offset-color: rgba(139, 92, 246, 0.45);
}
.ring-offset-violet-500\/5 {
  --tw-ring-offset-color: rgba(139, 92, 246, 0.05);
}
.ring-offset-violet-500\/50 {
  --tw-ring-offset-color: rgba(139, 92, 246, 0.5);
}
.ring-offset-violet-500\/55 {
  --tw-ring-offset-color: rgba(139, 92, 246, 0.55);
}
.ring-offset-violet-500\/60 {
  --tw-ring-offset-color: rgba(139, 92, 246, 0.6);
}
.ring-offset-violet-500\/65 {
  --tw-ring-offset-color: rgba(139, 92, 246, 0.65);
}
.ring-offset-violet-500\/70 {
  --tw-ring-offset-color: rgba(139, 92, 246, 0.7);
}
.ring-offset-violet-500\/75 {
  --tw-ring-offset-color: rgba(139, 92, 246, 0.75);
}
.ring-offset-violet-500\/80 {
  --tw-ring-offset-color: rgba(139, 92, 246, 0.8);
}
.ring-offset-violet-500\/85 {
  --tw-ring-offset-color: rgba(139, 92, 246, 0.85);
}
.ring-offset-violet-500\/90 {
  --tw-ring-offset-color: rgba(139, 92, 246, 0.9);
}
.ring-offset-violet-500\/95 {
  --tw-ring-offset-color: rgba(139, 92, 246, 0.95);
}
.ring-offset-violet-600 {
  --tw-ring-offset-color: #7c3aed;
}
.ring-offset-violet-600\/0 {
  --tw-ring-offset-color: rgba(124, 58, 237, 0);
}
.ring-offset-violet-600\/10 {
  --tw-ring-offset-color: rgba(124, 58, 237, 0.1);
}
.ring-offset-violet-600\/100 {
  --tw-ring-offset-color: rgba(124, 58, 237, 1);
}
.ring-offset-violet-600\/15 {
  --tw-ring-offset-color: rgba(124, 58, 237, 0.15);
}
.ring-offset-violet-600\/20 {
  --tw-ring-offset-color: rgba(124, 58, 237, 0.2);
}
.ring-offset-violet-600\/25 {
  --tw-ring-offset-color: rgba(124, 58, 237, 0.25);
}
.ring-offset-violet-600\/30 {
  --tw-ring-offset-color: rgba(124, 58, 237, 0.3);
}
.ring-offset-violet-600\/35 {
  --tw-ring-offset-color: rgba(124, 58, 237, 0.35);
}
.ring-offset-violet-600\/40 {
  --tw-ring-offset-color: rgba(124, 58, 237, 0.4);
}
.ring-offset-violet-600\/45 {
  --tw-ring-offset-color: rgba(124, 58, 237, 0.45);
}
.ring-offset-violet-600\/5 {
  --tw-ring-offset-color: rgba(124, 58, 237, 0.05);
}
.ring-offset-violet-600\/50 {
  --tw-ring-offset-color: rgba(124, 58, 237, 0.5);
}
.ring-offset-violet-600\/55 {
  --tw-ring-offset-color: rgba(124, 58, 237, 0.55);
}
.ring-offset-violet-600\/60 {
  --tw-ring-offset-color: rgba(124, 58, 237, 0.6);
}
.ring-offset-violet-600\/65 {
  --tw-ring-offset-color: rgba(124, 58, 237, 0.65);
}
.ring-offset-violet-600\/70 {
  --tw-ring-offset-color: rgba(124, 58, 237, 0.7);
}
.ring-offset-violet-600\/75 {
  --tw-ring-offset-color: rgba(124, 58, 237, 0.75);
}
.ring-offset-violet-600\/80 {
  --tw-ring-offset-color: rgba(124, 58, 237, 0.8);
}
.ring-offset-violet-600\/85 {
  --tw-ring-offset-color: rgba(124, 58, 237, 0.85);
}
.ring-offset-violet-600\/90 {
  --tw-ring-offset-color: rgba(124, 58, 237, 0.9);
}
.ring-offset-violet-600\/95 {
  --tw-ring-offset-color: rgba(124, 58, 237, 0.95);
}
.ring-offset-violet-700 {
  --tw-ring-offset-color: #6d28d9;
}
.ring-offset-violet-700\/0 {
  --tw-ring-offset-color: rgba(109, 40, 217, 0);
}
.ring-offset-violet-700\/10 {
  --tw-ring-offset-color: rgba(109, 40, 217, 0.1);
}
.ring-offset-violet-700\/100 {
  --tw-ring-offset-color: rgba(109, 40, 217, 1);
}
.ring-offset-violet-700\/15 {
  --tw-ring-offset-color: rgba(109, 40, 217, 0.15);
}
.ring-offset-violet-700\/20 {
  --tw-ring-offset-color: rgba(109, 40, 217, 0.2);
}
.ring-offset-violet-700\/25 {
  --tw-ring-offset-color: rgba(109, 40, 217, 0.25);
}
.ring-offset-violet-700\/30 {
  --tw-ring-offset-color: rgba(109, 40, 217, 0.3);
}
.ring-offset-violet-700\/35 {
  --tw-ring-offset-color: rgba(109, 40, 217, 0.35);
}
.ring-offset-violet-700\/40 {
  --tw-ring-offset-color: rgba(109, 40, 217, 0.4);
}
.ring-offset-violet-700\/45 {
  --tw-ring-offset-color: rgba(109, 40, 217, 0.45);
}
.ring-offset-violet-700\/5 {
  --tw-ring-offset-color: rgba(109, 40, 217, 0.05);
}
.ring-offset-violet-700\/50 {
  --tw-ring-offset-color: rgba(109, 40, 217, 0.5);
}
.ring-offset-violet-700\/55 {
  --tw-ring-offset-color: rgba(109, 40, 217, 0.55);
}
.ring-offset-violet-700\/60 {
  --tw-ring-offset-color: rgba(109, 40, 217, 0.6);
}
.ring-offset-violet-700\/65 {
  --tw-ring-offset-color: rgba(109, 40, 217, 0.65);
}
.ring-offset-violet-700\/70 {
  --tw-ring-offset-color: rgba(109, 40, 217, 0.7);
}
.ring-offset-violet-700\/75 {
  --tw-ring-offset-color: rgba(109, 40, 217, 0.75);
}
.ring-offset-violet-700\/80 {
  --tw-ring-offset-color: rgba(109, 40, 217, 0.8);
}
.ring-offset-violet-700\/85 {
  --tw-ring-offset-color: rgba(109, 40, 217, 0.85);
}
.ring-offset-violet-700\/90 {
  --tw-ring-offset-color: rgba(109, 40, 217, 0.9);
}
.ring-offset-violet-700\/95 {
  --tw-ring-offset-color: rgba(109, 40, 217, 0.95);
}
.ring-offset-violet-800 {
  --tw-ring-offset-color: #5b21b6;
}
.ring-offset-violet-800\/0 {
  --tw-ring-offset-color: rgba(91, 33, 182, 0);
}
.ring-offset-violet-800\/10 {
  --tw-ring-offset-color: rgba(91, 33, 182, 0.1);
}
.ring-offset-violet-800\/100 {
  --tw-ring-offset-color: rgba(91, 33, 182, 1);
}
.ring-offset-violet-800\/15 {
  --tw-ring-offset-color: rgba(91, 33, 182, 0.15);
}
.ring-offset-violet-800\/20 {
  --tw-ring-offset-color: rgba(91, 33, 182, 0.2);
}
.ring-offset-violet-800\/25 {
  --tw-ring-offset-color: rgba(91, 33, 182, 0.25);
}
.ring-offset-violet-800\/30 {
  --tw-ring-offset-color: rgba(91, 33, 182, 0.3);
}
.ring-offset-violet-800\/35 {
  --tw-ring-offset-color: rgba(91, 33, 182, 0.35);
}
.ring-offset-violet-800\/40 {
  --tw-ring-offset-color: rgba(91, 33, 182, 0.4);
}
.ring-offset-violet-800\/45 {
  --tw-ring-offset-color: rgba(91, 33, 182, 0.45);
}
.ring-offset-violet-800\/5 {
  --tw-ring-offset-color: rgba(91, 33, 182, 0.05);
}
.ring-offset-violet-800\/50 {
  --tw-ring-offset-color: rgba(91, 33, 182, 0.5);
}
.ring-offset-violet-800\/55 {
  --tw-ring-offset-color: rgba(91, 33, 182, 0.55);
}
.ring-offset-violet-800\/60 {
  --tw-ring-offset-color: rgba(91, 33, 182, 0.6);
}
.ring-offset-violet-800\/65 {
  --tw-ring-offset-color: rgba(91, 33, 182, 0.65);
}
.ring-offset-violet-800\/70 {
  --tw-ring-offset-color: rgba(91, 33, 182, 0.7);
}
.ring-offset-violet-800\/75 {
  --tw-ring-offset-color: rgba(91, 33, 182, 0.75);
}
.ring-offset-violet-800\/80 {
  --tw-ring-offset-color: rgba(91, 33, 182, 0.8);
}
.ring-offset-violet-800\/85 {
  --tw-ring-offset-color: rgba(91, 33, 182, 0.85);
}
.ring-offset-violet-800\/90 {
  --tw-ring-offset-color: rgba(91, 33, 182, 0.9);
}
.ring-offset-violet-800\/95 {
  --tw-ring-offset-color: rgba(91, 33, 182, 0.95);
}
.ring-offset-violet-900 {
  --tw-ring-offset-color: #4c1d95;
}
.ring-offset-violet-900\/0 {
  --tw-ring-offset-color: rgba(76, 29, 149, 0);
}
.ring-offset-violet-900\/10 {
  --tw-ring-offset-color: rgba(76, 29, 149, 0.1);
}
.ring-offset-violet-900\/100 {
  --tw-ring-offset-color: rgba(76, 29, 149, 1);
}
.ring-offset-violet-900\/15 {
  --tw-ring-offset-color: rgba(76, 29, 149, 0.15);
}
.ring-offset-violet-900\/20 {
  --tw-ring-offset-color: rgba(76, 29, 149, 0.2);
}
.ring-offset-violet-900\/25 {
  --tw-ring-offset-color: rgba(76, 29, 149, 0.25);
}
.ring-offset-violet-900\/30 {
  --tw-ring-offset-color: rgba(76, 29, 149, 0.3);
}
.ring-offset-violet-900\/35 {
  --tw-ring-offset-color: rgba(76, 29, 149, 0.35);
}
.ring-offset-violet-900\/40 {
  --tw-ring-offset-color: rgba(76, 29, 149, 0.4);
}
.ring-offset-violet-900\/45 {
  --tw-ring-offset-color: rgba(76, 29, 149, 0.45);
}
.ring-offset-violet-900\/5 {
  --tw-ring-offset-color: rgba(76, 29, 149, 0.05);
}
.ring-offset-violet-900\/50 {
  --tw-ring-offset-color: rgba(76, 29, 149, 0.5);
}
.ring-offset-violet-900\/55 {
  --tw-ring-offset-color: rgba(76, 29, 149, 0.55);
}
.ring-offset-violet-900\/60 {
  --tw-ring-offset-color: rgba(76, 29, 149, 0.6);
}
.ring-offset-violet-900\/65 {
  --tw-ring-offset-color: rgba(76, 29, 149, 0.65);
}
.ring-offset-violet-900\/70 {
  --tw-ring-offset-color: rgba(76, 29, 149, 0.7);
}
.ring-offset-violet-900\/75 {
  --tw-ring-offset-color: rgba(76, 29, 149, 0.75);
}
.ring-offset-violet-900\/80 {
  --tw-ring-offset-color: rgba(76, 29, 149, 0.8);
}
.ring-offset-violet-900\/85 {
  --tw-ring-offset-color: rgba(76, 29, 149, 0.85);
}
.ring-offset-violet-900\/90 {
  --tw-ring-offset-color: rgba(76, 29, 149, 0.9);
}
.ring-offset-violet-900\/95 {
  --tw-ring-offset-color: rgba(76, 29, 149, 0.95);
}
.ring-offset-violet-950 {
  --tw-ring-offset-color: #2e1065;
}
.ring-offset-violet-950\/0 {
  --tw-ring-offset-color: rgba(46, 16, 101, 0);
}
.ring-offset-violet-950\/10 {
  --tw-ring-offset-color: rgba(46, 16, 101, 0.1);
}
.ring-offset-violet-950\/100 {
  --tw-ring-offset-color: rgba(46, 16, 101, 1);
}
.ring-offset-violet-950\/15 {
  --tw-ring-offset-color: rgba(46, 16, 101, 0.15);
}
.ring-offset-violet-950\/20 {
  --tw-ring-offset-color: rgba(46, 16, 101, 0.2);
}
.ring-offset-violet-950\/25 {
  --tw-ring-offset-color: rgba(46, 16, 101, 0.25);
}
.ring-offset-violet-950\/30 {
  --tw-ring-offset-color: rgba(46, 16, 101, 0.3);
}
.ring-offset-violet-950\/35 {
  --tw-ring-offset-color: rgba(46, 16, 101, 0.35);
}
.ring-offset-violet-950\/40 {
  --tw-ring-offset-color: rgba(46, 16, 101, 0.4);
}
.ring-offset-violet-950\/45 {
  --tw-ring-offset-color: rgba(46, 16, 101, 0.45);
}
.ring-offset-violet-950\/5 {
  --tw-ring-offset-color: rgba(46, 16, 101, 0.05);
}
.ring-offset-violet-950\/50 {
  --tw-ring-offset-color: rgba(46, 16, 101, 0.5);
}
.ring-offset-violet-950\/55 {
  --tw-ring-offset-color: rgba(46, 16, 101, 0.55);
}
.ring-offset-violet-950\/60 {
  --tw-ring-offset-color: rgba(46, 16, 101, 0.6);
}
.ring-offset-violet-950\/65 {
  --tw-ring-offset-color: rgba(46, 16, 101, 0.65);
}
.ring-offset-violet-950\/70 {
  --tw-ring-offset-color: rgba(46, 16, 101, 0.7);
}
.ring-offset-violet-950\/75 {
  --tw-ring-offset-color: rgba(46, 16, 101, 0.75);
}
.ring-offset-violet-950\/80 {
  --tw-ring-offset-color: rgba(46, 16, 101, 0.8);
}
.ring-offset-violet-950\/85 {
  --tw-ring-offset-color: rgba(46, 16, 101, 0.85);
}
.ring-offset-violet-950\/90 {
  --tw-ring-offset-color: rgba(46, 16, 101, 0.9);
}
.ring-offset-violet-950\/95 {
  --tw-ring-offset-color: rgba(46, 16, 101, 0.95);
}
.ring-offset-warning {
  --tw-ring-offset-color: var(--fallback-wa,oklch(var(--wa)/1));
}
.ring-offset-warning-content {
  --tw-ring-offset-color: var(--fallback-wac,oklch(var(--wac)/1));
}
.ring-offset-warning-content\/0 {
  --tw-ring-offset-color: var(--fallback-wac,oklch(var(--wac)/0));
}
.ring-offset-warning-content\/10 {
  --tw-ring-offset-color: var(--fallback-wac,oklch(var(--wac)/0.1));
}
.ring-offset-warning-content\/100 {
  --tw-ring-offset-color: var(--fallback-wac,oklch(var(--wac)/1));
}
.ring-offset-warning-content\/15 {
  --tw-ring-offset-color: var(--fallback-wac,oklch(var(--wac)/0.15));
}
.ring-offset-warning-content\/20 {
  --tw-ring-offset-color: var(--fallback-wac,oklch(var(--wac)/0.2));
}
.ring-offset-warning-content\/25 {
  --tw-ring-offset-color: var(--fallback-wac,oklch(var(--wac)/0.25));
}
.ring-offset-warning-content\/30 {
  --tw-ring-offset-color: var(--fallback-wac,oklch(var(--wac)/0.3));
}
.ring-offset-warning-content\/35 {
  --tw-ring-offset-color: var(--fallback-wac,oklch(var(--wac)/0.35));
}
.ring-offset-warning-content\/40 {
  --tw-ring-offset-color: var(--fallback-wac,oklch(var(--wac)/0.4));
}
.ring-offset-warning-content\/45 {
  --tw-ring-offset-color: var(--fallback-wac,oklch(var(--wac)/0.45));
}
.ring-offset-warning-content\/5 {
  --tw-ring-offset-color: var(--fallback-wac,oklch(var(--wac)/0.05));
}
.ring-offset-warning-content\/50 {
  --tw-ring-offset-color: var(--fallback-wac,oklch(var(--wac)/0.5));
}
.ring-offset-warning-content\/55 {
  --tw-ring-offset-color: var(--fallback-wac,oklch(var(--wac)/0.55));
}
.ring-offset-warning-content\/60 {
  --tw-ring-offset-color: var(--fallback-wac,oklch(var(--wac)/0.6));
}
.ring-offset-warning-content\/65 {
  --tw-ring-offset-color: var(--fallback-wac,oklch(var(--wac)/0.65));
}
.ring-offset-warning-content\/70 {
  --tw-ring-offset-color: var(--fallback-wac,oklch(var(--wac)/0.7));
}
.ring-offset-warning-content\/75 {
  --tw-ring-offset-color: var(--fallback-wac,oklch(var(--wac)/0.75));
}
.ring-offset-warning-content\/80 {
  --tw-ring-offset-color: var(--fallback-wac,oklch(var(--wac)/0.8));
}
.ring-offset-warning-content\/85 {
  --tw-ring-offset-color: var(--fallback-wac,oklch(var(--wac)/0.85));
}
.ring-offset-warning-content\/90 {
  --tw-ring-offset-color: var(--fallback-wac,oklch(var(--wac)/0.9));
}
.ring-offset-warning-content\/95 {
  --tw-ring-offset-color: var(--fallback-wac,oklch(var(--wac)/0.95));
}
.ring-offset-warning\/0 {
  --tw-ring-offset-color: var(--fallback-wa,oklch(var(--wa)/0));
}
.ring-offset-warning\/10 {
  --tw-ring-offset-color: var(--fallback-wa,oklch(var(--wa)/0.1));
}
.ring-offset-warning\/100 {
  --tw-ring-offset-color: var(--fallback-wa,oklch(var(--wa)/1));
}
.ring-offset-warning\/15 {
  --tw-ring-offset-color: var(--fallback-wa,oklch(var(--wa)/0.15));
}
.ring-offset-warning\/20 {
  --tw-ring-offset-color: var(--fallback-wa,oklch(var(--wa)/0.2));
}
.ring-offset-warning\/25 {
  --tw-ring-offset-color: var(--fallback-wa,oklch(var(--wa)/0.25));
}
.ring-offset-warning\/30 {
  --tw-ring-offset-color: var(--fallback-wa,oklch(var(--wa)/0.3));
}
.ring-offset-warning\/35 {
  --tw-ring-offset-color: var(--fallback-wa,oklch(var(--wa)/0.35));
}
.ring-offset-warning\/40 {
  --tw-ring-offset-color: var(--fallback-wa,oklch(var(--wa)/0.4));
}
.ring-offset-warning\/45 {
  --tw-ring-offset-color: var(--fallback-wa,oklch(var(--wa)/0.45));
}
.ring-offset-warning\/5 {
  --tw-ring-offset-color: var(--fallback-wa,oklch(var(--wa)/0.05));
}
.ring-offset-warning\/50 {
  --tw-ring-offset-color: var(--fallback-wa,oklch(var(--wa)/0.5));
}
.ring-offset-warning\/55 {
  --tw-ring-offset-color: var(--fallback-wa,oklch(var(--wa)/0.55));
}
.ring-offset-warning\/60 {
  --tw-ring-offset-color: var(--fallback-wa,oklch(var(--wa)/0.6));
}
.ring-offset-warning\/65 {
  --tw-ring-offset-color: var(--fallback-wa,oklch(var(--wa)/0.65));
}
.ring-offset-warning\/70 {
  --tw-ring-offset-color: var(--fallback-wa,oklch(var(--wa)/0.7));
}
.ring-offset-warning\/75 {
  --tw-ring-offset-color: var(--fallback-wa,oklch(var(--wa)/0.75));
}
.ring-offset-warning\/80 {
  --tw-ring-offset-color: var(--fallback-wa,oklch(var(--wa)/0.8));
}
.ring-offset-warning\/85 {
  --tw-ring-offset-color: var(--fallback-wa,oklch(var(--wa)/0.85));
}
.ring-offset-warning\/90 {
  --tw-ring-offset-color: var(--fallback-wa,oklch(var(--wa)/0.9));
}
.ring-offset-warning\/95 {
  --tw-ring-offset-color: var(--fallback-wa,oklch(var(--wa)/0.95));
}
.ring-offset-white {
  --tw-ring-offset-color: #fff;
}
.ring-offset-white\/0 {
  --tw-ring-offset-color: rgba(255, 255, 255, 0);
}
.ring-offset-white\/10 {
  --tw-ring-offset-color: rgba(255, 255, 255, 0.1);
}
.ring-offset-white\/100 {
  --tw-ring-offset-color: rgba(255, 255, 255, 1);
}
.ring-offset-white\/15 {
  --tw-ring-offset-color: rgba(255, 255, 255, 0.15);
}
.ring-offset-white\/20 {
  --tw-ring-offset-color: rgba(255, 255, 255, 0.2);
}
.ring-offset-white\/25 {
  --tw-ring-offset-color: rgba(255, 255, 255, 0.25);
}
.ring-offset-white\/30 {
  --tw-ring-offset-color: rgba(255, 255, 255, 0.3);
}
.ring-offset-white\/35 {
  --tw-ring-offset-color: rgba(255, 255, 255, 0.35);
}
.ring-offset-white\/40 {
  --tw-ring-offset-color: rgba(255, 255, 255, 0.4);
}
.ring-offset-white\/45 {
  --tw-ring-offset-color: rgba(255, 255, 255, 0.45);
}
.ring-offset-white\/5 {
  --tw-ring-offset-color: rgba(255, 255, 255, 0.05);
}
.ring-offset-white\/50 {
  --tw-ring-offset-color: rgba(255, 255, 255, 0.5);
}
.ring-offset-white\/55 {
  --tw-ring-offset-color: rgba(255, 255, 255, 0.55);
}
.ring-offset-white\/60 {
  --tw-ring-offset-color: rgba(255, 255, 255, 0.6);
}
.ring-offset-white\/65 {
  --tw-ring-offset-color: rgba(255, 255, 255, 0.65);
}
.ring-offset-white\/70 {
  --tw-ring-offset-color: rgba(255, 255, 255, 0.7);
}
.ring-offset-white\/75 {
  --tw-ring-offset-color: rgba(255, 255, 255, 0.75);
}
.ring-offset-white\/80 {
  --tw-ring-offset-color: rgba(255, 255, 255, 0.8);
}
.ring-offset-white\/85 {
  --tw-ring-offset-color: rgba(255, 255, 255, 0.85);
}
.ring-offset-white\/90 {
  --tw-ring-offset-color: rgba(255, 255, 255, 0.9);
}
.ring-offset-white\/95 {
  --tw-ring-offset-color: rgba(255, 255, 255, 0.95);
}
.ring-offset-yellow-100 {
  --tw-ring-offset-color: #fef9c3;
}
.ring-offset-yellow-100\/0 {
  --tw-ring-offset-color: rgba(254, 249, 195, 0);
}
.ring-offset-yellow-100\/10 {
  --tw-ring-offset-color: rgba(254, 249, 195, 0.1);
}
.ring-offset-yellow-100\/100 {
  --tw-ring-offset-color: rgba(254, 249, 195, 1);
}
.ring-offset-yellow-100\/15 {
  --tw-ring-offset-color: rgba(254, 249, 195, 0.15);
}
.ring-offset-yellow-100\/20 {
  --tw-ring-offset-color: rgba(254, 249, 195, 0.2);
}
.ring-offset-yellow-100\/25 {
  --tw-ring-offset-color: rgba(254, 249, 195, 0.25);
}
.ring-offset-yellow-100\/30 {
  --tw-ring-offset-color: rgba(254, 249, 195, 0.3);
}
.ring-offset-yellow-100\/35 {
  --tw-ring-offset-color: rgba(254, 249, 195, 0.35);
}
.ring-offset-yellow-100\/40 {
  --tw-ring-offset-color: rgba(254, 249, 195, 0.4);
}
.ring-offset-yellow-100\/45 {
  --tw-ring-offset-color: rgba(254, 249, 195, 0.45);
}
.ring-offset-yellow-100\/5 {
  --tw-ring-offset-color: rgba(254, 249, 195, 0.05);
}
.ring-offset-yellow-100\/50 {
  --tw-ring-offset-color: rgba(254, 249, 195, 0.5);
}
.ring-offset-yellow-100\/55 {
  --tw-ring-offset-color: rgba(254, 249, 195, 0.55);
}
.ring-offset-yellow-100\/60 {
  --tw-ring-offset-color: rgba(254, 249, 195, 0.6);
}
.ring-offset-yellow-100\/65 {
  --tw-ring-offset-color: rgba(254, 249, 195, 0.65);
}
.ring-offset-yellow-100\/70 {
  --tw-ring-offset-color: rgba(254, 249, 195, 0.7);
}
.ring-offset-yellow-100\/75 {
  --tw-ring-offset-color: rgba(254, 249, 195, 0.75);
}
.ring-offset-yellow-100\/80 {
  --tw-ring-offset-color: rgba(254, 249, 195, 0.8);
}
.ring-offset-yellow-100\/85 {
  --tw-ring-offset-color: rgba(254, 249, 195, 0.85);
}
.ring-offset-yellow-100\/90 {
  --tw-ring-offset-color: rgba(254, 249, 195, 0.9);
}
.ring-offset-yellow-100\/95 {
  --tw-ring-offset-color: rgba(254, 249, 195, 0.95);
}
.ring-offset-yellow-200 {
  --tw-ring-offset-color: #fef08a;
}
.ring-offset-yellow-200\/0 {
  --tw-ring-offset-color: rgba(254, 240, 138, 0);
}
.ring-offset-yellow-200\/10 {
  --tw-ring-offset-color: rgba(254, 240, 138, 0.1);
}
.ring-offset-yellow-200\/100 {
  --tw-ring-offset-color: rgba(254, 240, 138, 1);
}
.ring-offset-yellow-200\/15 {
  --tw-ring-offset-color: rgba(254, 240, 138, 0.15);
}
.ring-offset-yellow-200\/20 {
  --tw-ring-offset-color: rgba(254, 240, 138, 0.2);
}
.ring-offset-yellow-200\/25 {
  --tw-ring-offset-color: rgba(254, 240, 138, 0.25);
}
.ring-offset-yellow-200\/30 {
  --tw-ring-offset-color: rgba(254, 240, 138, 0.3);
}
.ring-offset-yellow-200\/35 {
  --tw-ring-offset-color: rgba(254, 240, 138, 0.35);
}
.ring-offset-yellow-200\/40 {
  --tw-ring-offset-color: rgba(254, 240, 138, 0.4);
}
.ring-offset-yellow-200\/45 {
  --tw-ring-offset-color: rgba(254, 240, 138, 0.45);
}
.ring-offset-yellow-200\/5 {
  --tw-ring-offset-color: rgba(254, 240, 138, 0.05);
}
.ring-offset-yellow-200\/50 {
  --tw-ring-offset-color: rgba(254, 240, 138, 0.5);
}
.ring-offset-yellow-200\/55 {
  --tw-ring-offset-color: rgba(254, 240, 138, 0.55);
}
.ring-offset-yellow-200\/60 {
  --tw-ring-offset-color: rgba(254, 240, 138, 0.6);
}
.ring-offset-yellow-200\/65 {
  --tw-ring-offset-color: rgba(254, 240, 138, 0.65);
}
.ring-offset-yellow-200\/70 {
  --tw-ring-offset-color: rgba(254, 240, 138, 0.7);
}
.ring-offset-yellow-200\/75 {
  --tw-ring-offset-color: rgba(254, 240, 138, 0.75);
}
.ring-offset-yellow-200\/80 {
  --tw-ring-offset-color: rgba(254, 240, 138, 0.8);
}
.ring-offset-yellow-200\/85 {
  --tw-ring-offset-color: rgba(254, 240, 138, 0.85);
}
.ring-offset-yellow-200\/90 {
  --tw-ring-offset-color: rgba(254, 240, 138, 0.9);
}
.ring-offset-yellow-200\/95 {
  --tw-ring-offset-color: rgba(254, 240, 138, 0.95);
}
.ring-offset-yellow-300 {
  --tw-ring-offset-color: #fde047;
}
.ring-offset-yellow-300\/0 {
  --tw-ring-offset-color: rgba(253, 224, 71, 0);
}
.ring-offset-yellow-300\/10 {
  --tw-ring-offset-color: rgba(253, 224, 71, 0.1);
}
.ring-offset-yellow-300\/100 {
  --tw-ring-offset-color: rgba(253, 224, 71, 1);
}
.ring-offset-yellow-300\/15 {
  --tw-ring-offset-color: rgba(253, 224, 71, 0.15);
}
.ring-offset-yellow-300\/20 {
  --tw-ring-offset-color: rgba(253, 224, 71, 0.2);
}
.ring-offset-yellow-300\/25 {
  --tw-ring-offset-color: rgba(253, 224, 71, 0.25);
}
.ring-offset-yellow-300\/30 {
  --tw-ring-offset-color: rgba(253, 224, 71, 0.3);
}
.ring-offset-yellow-300\/35 {
  --tw-ring-offset-color: rgba(253, 224, 71, 0.35);
}
.ring-offset-yellow-300\/40 {
  --tw-ring-offset-color: rgba(253, 224, 71, 0.4);
}
.ring-offset-yellow-300\/45 {
  --tw-ring-offset-color: rgba(253, 224, 71, 0.45);
}
.ring-offset-yellow-300\/5 {
  --tw-ring-offset-color: rgba(253, 224, 71, 0.05);
}
.ring-offset-yellow-300\/50 {
  --tw-ring-offset-color: rgba(253, 224, 71, 0.5);
}
.ring-offset-yellow-300\/55 {
  --tw-ring-offset-color: rgba(253, 224, 71, 0.55);
}
.ring-offset-yellow-300\/60 {
  --tw-ring-offset-color: rgba(253, 224, 71, 0.6);
}
.ring-offset-yellow-300\/65 {
  --tw-ring-offset-color: rgba(253, 224, 71, 0.65);
}
.ring-offset-yellow-300\/70 {
  --tw-ring-offset-color: rgba(253, 224, 71, 0.7);
}
.ring-offset-yellow-300\/75 {
  --tw-ring-offset-color: rgba(253, 224, 71, 0.75);
}
.ring-offset-yellow-300\/80 {
  --tw-ring-offset-color: rgba(253, 224, 71, 0.8);
}
.ring-offset-yellow-300\/85 {
  --tw-ring-offset-color: rgba(253, 224, 71, 0.85);
}
.ring-offset-yellow-300\/90 {
  --tw-ring-offset-color: rgba(253, 224, 71, 0.9);
}
.ring-offset-yellow-300\/95 {
  --tw-ring-offset-color: rgba(253, 224, 71, 0.95);
}
.ring-offset-yellow-400 {
  --tw-ring-offset-color: #facc15;
}
.ring-offset-yellow-400\/0 {
  --tw-ring-offset-color: rgba(250, 204, 21, 0);
}
.ring-offset-yellow-400\/10 {
  --tw-ring-offset-color: rgba(250, 204, 21, 0.1);
}
.ring-offset-yellow-400\/100 {
  --tw-ring-offset-color: rgba(250, 204, 21, 1);
}
.ring-offset-yellow-400\/15 {
  --tw-ring-offset-color: rgba(250, 204, 21, 0.15);
}
.ring-offset-yellow-400\/20 {
  --tw-ring-offset-color: rgba(250, 204, 21, 0.2);
}
.ring-offset-yellow-400\/25 {
  --tw-ring-offset-color: rgba(250, 204, 21, 0.25);
}
.ring-offset-yellow-400\/30 {
  --tw-ring-offset-color: rgba(250, 204, 21, 0.3);
}
.ring-offset-yellow-400\/35 {
  --tw-ring-offset-color: rgba(250, 204, 21, 0.35);
}
.ring-offset-yellow-400\/40 {
  --tw-ring-offset-color: rgba(250, 204, 21, 0.4);
}
.ring-offset-yellow-400\/45 {
  --tw-ring-offset-color: rgba(250, 204, 21, 0.45);
}
.ring-offset-yellow-400\/5 {
  --tw-ring-offset-color: rgba(250, 204, 21, 0.05);
}
.ring-offset-yellow-400\/50 {
  --tw-ring-offset-color: rgba(250, 204, 21, 0.5);
}
.ring-offset-yellow-400\/55 {
  --tw-ring-offset-color: rgba(250, 204, 21, 0.55);
}
.ring-offset-yellow-400\/60 {
  --tw-ring-offset-color: rgba(250, 204, 21, 0.6);
}
.ring-offset-yellow-400\/65 {
  --tw-ring-offset-color: rgba(250, 204, 21, 0.65);
}
.ring-offset-yellow-400\/70 {
  --tw-ring-offset-color: rgba(250, 204, 21, 0.7);
}
.ring-offset-yellow-400\/75 {
  --tw-ring-offset-color: rgba(250, 204, 21, 0.75);
}
.ring-offset-yellow-400\/80 {
  --tw-ring-offset-color: rgba(250, 204, 21, 0.8);
}
.ring-offset-yellow-400\/85 {
  --tw-ring-offset-color: rgba(250, 204, 21, 0.85);
}
.ring-offset-yellow-400\/90 {
  --tw-ring-offset-color: rgba(250, 204, 21, 0.9);
}
.ring-offset-yellow-400\/95 {
  --tw-ring-offset-color: rgba(250, 204, 21, 0.95);
}
.ring-offset-yellow-50 {
  --tw-ring-offset-color: #fefce8;
}
.ring-offset-yellow-50\/0 {
  --tw-ring-offset-color: rgba(254, 252, 232, 0);
}
.ring-offset-yellow-50\/10 {
  --tw-ring-offset-color: rgba(254, 252, 232, 0.1);
}
.ring-offset-yellow-50\/100 {
  --tw-ring-offset-color: rgba(254, 252, 232, 1);
}
.ring-offset-yellow-50\/15 {
  --tw-ring-offset-color: rgba(254, 252, 232, 0.15);
}
.ring-offset-yellow-50\/20 {
  --tw-ring-offset-color: rgba(254, 252, 232, 0.2);
}
.ring-offset-yellow-50\/25 {
  --tw-ring-offset-color: rgba(254, 252, 232, 0.25);
}
.ring-offset-yellow-50\/30 {
  --tw-ring-offset-color: rgba(254, 252, 232, 0.3);
}
.ring-offset-yellow-50\/35 {
  --tw-ring-offset-color: rgba(254, 252, 232, 0.35);
}
.ring-offset-yellow-50\/40 {
  --tw-ring-offset-color: rgba(254, 252, 232, 0.4);
}
.ring-offset-yellow-50\/45 {
  --tw-ring-offset-color: rgba(254, 252, 232, 0.45);
}
.ring-offset-yellow-50\/5 {
  --tw-ring-offset-color: rgba(254, 252, 232, 0.05);
}
.ring-offset-yellow-50\/50 {
  --tw-ring-offset-color: rgba(254, 252, 232, 0.5);
}
.ring-offset-yellow-50\/55 {
  --tw-ring-offset-color: rgba(254, 252, 232, 0.55);
}
.ring-offset-yellow-50\/60 {
  --tw-ring-offset-color: rgba(254, 252, 232, 0.6);
}
.ring-offset-yellow-50\/65 {
  --tw-ring-offset-color: rgba(254, 252, 232, 0.65);
}
.ring-offset-yellow-50\/70 {
  --tw-ring-offset-color: rgba(254, 252, 232, 0.7);
}
.ring-offset-yellow-50\/75 {
  --tw-ring-offset-color: rgba(254, 252, 232, 0.75);
}
.ring-offset-yellow-50\/80 {
  --tw-ring-offset-color: rgba(254, 252, 232, 0.8);
}
.ring-offset-yellow-50\/85 {
  --tw-ring-offset-color: rgba(254, 252, 232, 0.85);
}
.ring-offset-yellow-50\/90 {
  --tw-ring-offset-color: rgba(254, 252, 232, 0.9);
}
.ring-offset-yellow-50\/95 {
  --tw-ring-offset-color: rgba(254, 252, 232, 0.95);
}
.ring-offset-yellow-500 {
  --tw-ring-offset-color: #eab308;
}
.ring-offset-yellow-500\/0 {
  --tw-ring-offset-color: rgba(234, 179, 8, 0);
}
.ring-offset-yellow-500\/10 {
  --tw-ring-offset-color: rgba(234, 179, 8, 0.1);
}
.ring-offset-yellow-500\/100 {
  --tw-ring-offset-color: rgba(234, 179, 8, 1);
}
.ring-offset-yellow-500\/15 {
  --tw-ring-offset-color: rgba(234, 179, 8, 0.15);
}
.ring-offset-yellow-500\/20 {
  --tw-ring-offset-color: rgba(234, 179, 8, 0.2);
}
.ring-offset-yellow-500\/25 {
  --tw-ring-offset-color: rgba(234, 179, 8, 0.25);
}
.ring-offset-yellow-500\/30 {
  --tw-ring-offset-color: rgba(234, 179, 8, 0.3);
}
.ring-offset-yellow-500\/35 {
  --tw-ring-offset-color: rgba(234, 179, 8, 0.35);
}
.ring-offset-yellow-500\/40 {
  --tw-ring-offset-color: rgba(234, 179, 8, 0.4);
}
.ring-offset-yellow-500\/45 {
  --tw-ring-offset-color: rgba(234, 179, 8, 0.45);
}
.ring-offset-yellow-500\/5 {
  --tw-ring-offset-color: rgba(234, 179, 8, 0.05);
}
.ring-offset-yellow-500\/50 {
  --tw-ring-offset-color: rgba(234, 179, 8, 0.5);
}
.ring-offset-yellow-500\/55 {
  --tw-ring-offset-color: rgba(234, 179, 8, 0.55);
}
.ring-offset-yellow-500\/60 {
  --tw-ring-offset-color: rgba(234, 179, 8, 0.6);
}
.ring-offset-yellow-500\/65 {
  --tw-ring-offset-color: rgba(234, 179, 8, 0.65);
}
.ring-offset-yellow-500\/70 {
  --tw-ring-offset-color: rgba(234, 179, 8, 0.7);
}
.ring-offset-yellow-500\/75 {
  --tw-ring-offset-color: rgba(234, 179, 8, 0.75);
}
.ring-offset-yellow-500\/80 {
  --tw-ring-offset-color: rgba(234, 179, 8, 0.8);
}
.ring-offset-yellow-500\/85 {
  --tw-ring-offset-color: rgba(234, 179, 8, 0.85);
}
.ring-offset-yellow-500\/90 {
  --tw-ring-offset-color: rgba(234, 179, 8, 0.9);
}
.ring-offset-yellow-500\/95 {
  --tw-ring-offset-color: rgba(234, 179, 8, 0.95);
}
.ring-offset-yellow-600 {
  --tw-ring-offset-color: #ca8a04;
}
.ring-offset-yellow-600\/0 {
  --tw-ring-offset-color: rgba(202, 138, 4, 0);
}
.ring-offset-yellow-600\/10 {
  --tw-ring-offset-color: rgba(202, 138, 4, 0.1);
}
.ring-offset-yellow-600\/100 {
  --tw-ring-offset-color: rgba(202, 138, 4, 1);
}
.ring-offset-yellow-600\/15 {
  --tw-ring-offset-color: rgba(202, 138, 4, 0.15);
}
.ring-offset-yellow-600\/20 {
  --tw-ring-offset-color: rgba(202, 138, 4, 0.2);
}
.ring-offset-yellow-600\/25 {
  --tw-ring-offset-color: rgba(202, 138, 4, 0.25);
}
.ring-offset-yellow-600\/30 {
  --tw-ring-offset-color: rgba(202, 138, 4, 0.3);
}
.ring-offset-yellow-600\/35 {
  --tw-ring-offset-color: rgba(202, 138, 4, 0.35);
}
.ring-offset-yellow-600\/40 {
  --tw-ring-offset-color: rgba(202, 138, 4, 0.4);
}
.ring-offset-yellow-600\/45 {
  --tw-ring-offset-color: rgba(202, 138, 4, 0.45);
}
.ring-offset-yellow-600\/5 {
  --tw-ring-offset-color: rgba(202, 138, 4, 0.05);
}
.ring-offset-yellow-600\/50 {
  --tw-ring-offset-color: rgba(202, 138, 4, 0.5);
}
.ring-offset-yellow-600\/55 {
  --tw-ring-offset-color: rgba(202, 138, 4, 0.55);
}
.ring-offset-yellow-600\/60 {
  --tw-ring-offset-color: rgba(202, 138, 4, 0.6);
}
.ring-offset-yellow-600\/65 {
  --tw-ring-offset-color: rgba(202, 138, 4, 0.65);
}
.ring-offset-yellow-600\/70 {
  --tw-ring-offset-color: rgba(202, 138, 4, 0.7);
}
.ring-offset-yellow-600\/75 {
  --tw-ring-offset-color: rgba(202, 138, 4, 0.75);
}
.ring-offset-yellow-600\/80 {
  --tw-ring-offset-color: rgba(202, 138, 4, 0.8);
}
.ring-offset-yellow-600\/85 {
  --tw-ring-offset-color: rgba(202, 138, 4, 0.85);
}
.ring-offset-yellow-600\/90 {
  --tw-ring-offset-color: rgba(202, 138, 4, 0.9);
}
.ring-offset-yellow-600\/95 {
  --tw-ring-offset-color: rgba(202, 138, 4, 0.95);
}
.ring-offset-yellow-700 {
  --tw-ring-offset-color: #a16207;
}
.ring-offset-yellow-700\/0 {
  --tw-ring-offset-color: rgba(161, 98, 7, 0);
}
.ring-offset-yellow-700\/10 {
  --tw-ring-offset-color: rgba(161, 98, 7, 0.1);
}
.ring-offset-yellow-700\/100 {
  --tw-ring-offset-color: rgba(161, 98, 7, 1);
}
.ring-offset-yellow-700\/15 {
  --tw-ring-offset-color: rgba(161, 98, 7, 0.15);
}
.ring-offset-yellow-700\/20 {
  --tw-ring-offset-color: rgba(161, 98, 7, 0.2);
}
.ring-offset-yellow-700\/25 {
  --tw-ring-offset-color: rgba(161, 98, 7, 0.25);
}
.ring-offset-yellow-700\/30 {
  --tw-ring-offset-color: rgba(161, 98, 7, 0.3);
}
.ring-offset-yellow-700\/35 {
  --tw-ring-offset-color: rgba(161, 98, 7, 0.35);
}
.ring-offset-yellow-700\/40 {
  --tw-ring-offset-color: rgba(161, 98, 7, 0.4);
}
.ring-offset-yellow-700\/45 {
  --tw-ring-offset-color: rgba(161, 98, 7, 0.45);
}
.ring-offset-yellow-700\/5 {
  --tw-ring-offset-color: rgba(161, 98, 7, 0.05);
}
.ring-offset-yellow-700\/50 {
  --tw-ring-offset-color: rgba(161, 98, 7, 0.5);
}
.ring-offset-yellow-700\/55 {
  --tw-ring-offset-color: rgba(161, 98, 7, 0.55);
}
.ring-offset-yellow-700\/60 {
  --tw-ring-offset-color: rgba(161, 98, 7, 0.6);
}
.ring-offset-yellow-700\/65 {
  --tw-ring-offset-color: rgba(161, 98, 7, 0.65);
}
.ring-offset-yellow-700\/70 {
  --tw-ring-offset-color: rgba(161, 98, 7, 0.7);
}
.ring-offset-yellow-700\/75 {
  --tw-ring-offset-color: rgba(161, 98, 7, 0.75);
}
.ring-offset-yellow-700\/80 {
  --tw-ring-offset-color: rgba(161, 98, 7, 0.8);
}
.ring-offset-yellow-700\/85 {
  --tw-ring-offset-color: rgba(161, 98, 7, 0.85);
}
.ring-offset-yellow-700\/90 {
  --tw-ring-offset-color: rgba(161, 98, 7, 0.9);
}
.ring-offset-yellow-700\/95 {
  --tw-ring-offset-color: rgba(161, 98, 7, 0.95);
}
.ring-offset-yellow-800 {
  --tw-ring-offset-color: #854d0e;
}
.ring-offset-yellow-800\/0 {
  --tw-ring-offset-color: rgba(133, 77, 14, 0);
}
.ring-offset-yellow-800\/10 {
  --tw-ring-offset-color: rgba(133, 77, 14, 0.1);
}
.ring-offset-yellow-800\/100 {
  --tw-ring-offset-color: rgba(133, 77, 14, 1);
}
.ring-offset-yellow-800\/15 {
  --tw-ring-offset-color: rgba(133, 77, 14, 0.15);
}
.ring-offset-yellow-800\/20 {
  --tw-ring-offset-color: rgba(133, 77, 14, 0.2);
}
.ring-offset-yellow-800\/25 {
  --tw-ring-offset-color: rgba(133, 77, 14, 0.25);
}
.ring-offset-yellow-800\/30 {
  --tw-ring-offset-color: rgba(133, 77, 14, 0.3);
}
.ring-offset-yellow-800\/35 {
  --tw-ring-offset-color: rgba(133, 77, 14, 0.35);
}
.ring-offset-yellow-800\/40 {
  --tw-ring-offset-color: rgba(133, 77, 14, 0.4);
}
.ring-offset-yellow-800\/45 {
  --tw-ring-offset-color: rgba(133, 77, 14, 0.45);
}
.ring-offset-yellow-800\/5 {
  --tw-ring-offset-color: rgba(133, 77, 14, 0.05);
}
.ring-offset-yellow-800\/50 {
  --tw-ring-offset-color: rgba(133, 77, 14, 0.5);
}
.ring-offset-yellow-800\/55 {
  --tw-ring-offset-color: rgba(133, 77, 14, 0.55);
}
.ring-offset-yellow-800\/60 {
  --tw-ring-offset-color: rgba(133, 77, 14, 0.6);
}
.ring-offset-yellow-800\/65 {
  --tw-ring-offset-color: rgba(133, 77, 14, 0.65);
}
.ring-offset-yellow-800\/70 {
  --tw-ring-offset-color: rgba(133, 77, 14, 0.7);
}
.ring-offset-yellow-800\/75 {
  --tw-ring-offset-color: rgba(133, 77, 14, 0.75);
}
.ring-offset-yellow-800\/80 {
  --tw-ring-offset-color: rgba(133, 77, 14, 0.8);
}
.ring-offset-yellow-800\/85 {
  --tw-ring-offset-color: rgba(133, 77, 14, 0.85);
}
.ring-offset-yellow-800\/90 {
  --tw-ring-offset-color: rgba(133, 77, 14, 0.9);
}
.ring-offset-yellow-800\/95 {
  --tw-ring-offset-color: rgba(133, 77, 14, 0.95);
}
.ring-offset-yellow-900 {
  --tw-ring-offset-color: #713f12;
}
.ring-offset-yellow-900\/0 {
  --tw-ring-offset-color: rgba(113, 63, 18, 0);
}
.ring-offset-yellow-900\/10 {
  --tw-ring-offset-color: rgba(113, 63, 18, 0.1);
}
.ring-offset-yellow-900\/100 {
  --tw-ring-offset-color: rgba(113, 63, 18, 1);
}
.ring-offset-yellow-900\/15 {
  --tw-ring-offset-color: rgba(113, 63, 18, 0.15);
}
.ring-offset-yellow-900\/20 {
  --tw-ring-offset-color: rgba(113, 63, 18, 0.2);
}
.ring-offset-yellow-900\/25 {
  --tw-ring-offset-color: rgba(113, 63, 18, 0.25);
}
.ring-offset-yellow-900\/30 {
  --tw-ring-offset-color: rgba(113, 63, 18, 0.3);
}
.ring-offset-yellow-900\/35 {
  --tw-ring-offset-color: rgba(113, 63, 18, 0.35);
}
.ring-offset-yellow-900\/40 {
  --tw-ring-offset-color: rgba(113, 63, 18, 0.4);
}
.ring-offset-yellow-900\/45 {
  --tw-ring-offset-color: rgba(113, 63, 18, 0.45);
}
.ring-offset-yellow-900\/5 {
  --tw-ring-offset-color: rgba(113, 63, 18, 0.05);
}
.ring-offset-yellow-900\/50 {
  --tw-ring-offset-color: rgba(113, 63, 18, 0.5);
}
.ring-offset-yellow-900\/55 {
  --tw-ring-offset-color: rgba(113, 63, 18, 0.55);
}
.ring-offset-yellow-900\/60 {
  --tw-ring-offset-color: rgba(113, 63, 18, 0.6);
}
.ring-offset-yellow-900\/65 {
  --tw-ring-offset-color: rgba(113, 63, 18, 0.65);
}
.ring-offset-yellow-900\/70 {
  --tw-ring-offset-color: rgba(113, 63, 18, 0.7);
}
.ring-offset-yellow-900\/75 {
  --tw-ring-offset-color: rgba(113, 63, 18, 0.75);
}
.ring-offset-yellow-900\/80 {
  --tw-ring-offset-color: rgba(113, 63, 18, 0.8);
}
.ring-offset-yellow-900\/85 {
  --tw-ring-offset-color: rgba(113, 63, 18, 0.85);
}
.ring-offset-yellow-900\/90 {
  --tw-ring-offset-color: rgba(113, 63, 18, 0.9);
}
.ring-offset-yellow-900\/95 {
  --tw-ring-offset-color: rgba(113, 63, 18, 0.95);
}
.ring-offset-yellow-950 {
  --tw-ring-offset-color: #422006;
}
.ring-offset-yellow-950\/0 {
  --tw-ring-offset-color: rgba(66, 32, 6, 0);
}
.ring-offset-yellow-950\/10 {
  --tw-ring-offset-color: rgba(66, 32, 6, 0.1);
}
.ring-offset-yellow-950\/100 {
  --tw-ring-offset-color: rgba(66, 32, 6, 1);
}
.ring-offset-yellow-950\/15 {
  --tw-ring-offset-color: rgba(66, 32, 6, 0.15);
}
.ring-offset-yellow-950\/20 {
  --tw-ring-offset-color: rgba(66, 32, 6, 0.2);
}
.ring-offset-yellow-950\/25 {
  --tw-ring-offset-color: rgba(66, 32, 6, 0.25);
}
.ring-offset-yellow-950\/30 {
  --tw-ring-offset-color: rgba(66, 32, 6, 0.3);
}
.ring-offset-yellow-950\/35 {
  --tw-ring-offset-color: rgba(66, 32, 6, 0.35);
}
.ring-offset-yellow-950\/40 {
  --tw-ring-offset-color: rgba(66, 32, 6, 0.4);
}
.ring-offset-yellow-950\/45 {
  --tw-ring-offset-color: rgba(66, 32, 6, 0.45);
}
.ring-offset-yellow-950\/5 {
  --tw-ring-offset-color: rgba(66, 32, 6, 0.05);
}
.ring-offset-yellow-950\/50 {
  --tw-ring-offset-color: rgba(66, 32, 6, 0.5);
}
.ring-offset-yellow-950\/55 {
  --tw-ring-offset-color: rgba(66, 32, 6, 0.55);
}
.ring-offset-yellow-950\/60 {
  --tw-ring-offset-color: rgba(66, 32, 6, 0.6);
}
.ring-offset-yellow-950\/65 {
  --tw-ring-offset-color: rgba(66, 32, 6, 0.65);
}
.ring-offset-yellow-950\/70 {
  --tw-ring-offset-color: rgba(66, 32, 6, 0.7);
}
.ring-offset-yellow-950\/75 {
  --tw-ring-offset-color: rgba(66, 32, 6, 0.75);
}
.ring-offset-yellow-950\/80 {
  --tw-ring-offset-color: rgba(66, 32, 6, 0.8);
}
.ring-offset-yellow-950\/85 {
  --tw-ring-offset-color: rgba(66, 32, 6, 0.85);
}
.ring-offset-yellow-950\/90 {
  --tw-ring-offset-color: rgba(66, 32, 6, 0.9);
}
.ring-offset-yellow-950\/95 {
  --tw-ring-offset-color: rgba(66, 32, 6, 0.95);
}
.ring-offset-zinc-100 {
  --tw-ring-offset-color: #f4f4f5;
}
.ring-offset-zinc-100\/0 {
  --tw-ring-offset-color: rgba(244, 244, 245, 0);
}
.ring-offset-zinc-100\/10 {
  --tw-ring-offset-color: rgba(244, 244, 245, 0.1);
}
.ring-offset-zinc-100\/100 {
  --tw-ring-offset-color: rgba(244, 244, 245, 1);
}
.ring-offset-zinc-100\/15 {
  --tw-ring-offset-color: rgba(244, 244, 245, 0.15);
}
.ring-offset-zinc-100\/20 {
  --tw-ring-offset-color: rgba(244, 244, 245, 0.2);
}
.ring-offset-zinc-100\/25 {
  --tw-ring-offset-color: rgba(244, 244, 245, 0.25);
}
.ring-offset-zinc-100\/30 {
  --tw-ring-offset-color: rgba(244, 244, 245, 0.3);
}
.ring-offset-zinc-100\/35 {
  --tw-ring-offset-color: rgba(244, 244, 245, 0.35);
}
.ring-offset-zinc-100\/40 {
  --tw-ring-offset-color: rgba(244, 244, 245, 0.4);
}
.ring-offset-zinc-100\/45 {
  --tw-ring-offset-color: rgba(244, 244, 245, 0.45);
}
.ring-offset-zinc-100\/5 {
  --tw-ring-offset-color: rgba(244, 244, 245, 0.05);
}
.ring-offset-zinc-100\/50 {
  --tw-ring-offset-color: rgba(244, 244, 245, 0.5);
}
.ring-offset-zinc-100\/55 {
  --tw-ring-offset-color: rgba(244, 244, 245, 0.55);
}
.ring-offset-zinc-100\/60 {
  --tw-ring-offset-color: rgba(244, 244, 245, 0.6);
}
.ring-offset-zinc-100\/65 {
  --tw-ring-offset-color: rgba(244, 244, 245, 0.65);
}
.ring-offset-zinc-100\/70 {
  --tw-ring-offset-color: rgba(244, 244, 245, 0.7);
}
.ring-offset-zinc-100\/75 {
  --tw-ring-offset-color: rgba(244, 244, 245, 0.75);
}
.ring-offset-zinc-100\/80 {
  --tw-ring-offset-color: rgba(244, 244, 245, 0.8);
}
.ring-offset-zinc-100\/85 {
  --tw-ring-offset-color: rgba(244, 244, 245, 0.85);
}
.ring-offset-zinc-100\/90 {
  --tw-ring-offset-color: rgba(244, 244, 245, 0.9);
}
.ring-offset-zinc-100\/95 {
  --tw-ring-offset-color: rgba(244, 244, 245, 0.95);
}
.ring-offset-zinc-200 {
  --tw-ring-offset-color: #e4e4e7;
}
.ring-offset-zinc-200\/0 {
  --tw-ring-offset-color: rgba(228, 228, 231, 0);
}
.ring-offset-zinc-200\/10 {
  --tw-ring-offset-color: rgba(228, 228, 231, 0.1);
}
.ring-offset-zinc-200\/100 {
  --tw-ring-offset-color: rgba(228, 228, 231, 1);
}
.ring-offset-zinc-200\/15 {
  --tw-ring-offset-color: rgba(228, 228, 231, 0.15);
}
.ring-offset-zinc-200\/20 {
  --tw-ring-offset-color: rgba(228, 228, 231, 0.2);
}
.ring-offset-zinc-200\/25 {
  --tw-ring-offset-color: rgba(228, 228, 231, 0.25);
}
.ring-offset-zinc-200\/30 {
  --tw-ring-offset-color: rgba(228, 228, 231, 0.3);
}
.ring-offset-zinc-200\/35 {
  --tw-ring-offset-color: rgba(228, 228, 231, 0.35);
}
.ring-offset-zinc-200\/40 {
  --tw-ring-offset-color: rgba(228, 228, 231, 0.4);
}
.ring-offset-zinc-200\/45 {
  --tw-ring-offset-color: rgba(228, 228, 231, 0.45);
}
.ring-offset-zinc-200\/5 {
  --tw-ring-offset-color: rgba(228, 228, 231, 0.05);
}
.ring-offset-zinc-200\/50 {
  --tw-ring-offset-color: rgba(228, 228, 231, 0.5);
}
.ring-offset-zinc-200\/55 {
  --tw-ring-offset-color: rgba(228, 228, 231, 0.55);
}
.ring-offset-zinc-200\/60 {
  --tw-ring-offset-color: rgba(228, 228, 231, 0.6);
}
.ring-offset-zinc-200\/65 {
  --tw-ring-offset-color: rgba(228, 228, 231, 0.65);
}
.ring-offset-zinc-200\/70 {
  --tw-ring-offset-color: rgba(228, 228, 231, 0.7);
}
.ring-offset-zinc-200\/75 {
  --tw-ring-offset-color: rgba(228, 228, 231, 0.75);
}
.ring-offset-zinc-200\/80 {
  --tw-ring-offset-color: rgba(228, 228, 231, 0.8);
}
.ring-offset-zinc-200\/85 {
  --tw-ring-offset-color: rgba(228, 228, 231, 0.85);
}
.ring-offset-zinc-200\/90 {
  --tw-ring-offset-color: rgba(228, 228, 231, 0.9);
}
.ring-offset-zinc-200\/95 {
  --tw-ring-offset-color: rgba(228, 228, 231, 0.95);
}
.ring-offset-zinc-300 {
  --tw-ring-offset-color: #d4d4d8;
}
.ring-offset-zinc-300\/0 {
  --tw-ring-offset-color: rgba(212, 212, 216, 0);
}
.ring-offset-zinc-300\/10 {
  --tw-ring-offset-color: rgba(212, 212, 216, 0.1);
}
.ring-offset-zinc-300\/100 {
  --tw-ring-offset-color: rgba(212, 212, 216, 1);
}
.ring-offset-zinc-300\/15 {
  --tw-ring-offset-color: rgba(212, 212, 216, 0.15);
}
.ring-offset-zinc-300\/20 {
  --tw-ring-offset-color: rgba(212, 212, 216, 0.2);
}
.ring-offset-zinc-300\/25 {
  --tw-ring-offset-color: rgba(212, 212, 216, 0.25);
}
.ring-offset-zinc-300\/30 {
  --tw-ring-offset-color: rgba(212, 212, 216, 0.3);
}
.ring-offset-zinc-300\/35 {
  --tw-ring-offset-color: rgba(212, 212, 216, 0.35);
}
.ring-offset-zinc-300\/40 {
  --tw-ring-offset-color: rgba(212, 212, 216, 0.4);
}
.ring-offset-zinc-300\/45 {
  --tw-ring-offset-color: rgba(212, 212, 216, 0.45);
}
.ring-offset-zinc-300\/5 {
  --tw-ring-offset-color: rgba(212, 212, 216, 0.05);
}
.ring-offset-zinc-300\/50 {
  --tw-ring-offset-color: rgba(212, 212, 216, 0.5);
}
.ring-offset-zinc-300\/55 {
  --tw-ring-offset-color: rgba(212, 212, 216, 0.55);
}
.ring-offset-zinc-300\/60 {
  --tw-ring-offset-color: rgba(212, 212, 216, 0.6);
}
.ring-offset-zinc-300\/65 {
  --tw-ring-offset-color: rgba(212, 212, 216, 0.65);
}
.ring-offset-zinc-300\/70 {
  --tw-ring-offset-color: rgba(212, 212, 216, 0.7);
}
.ring-offset-zinc-300\/75 {
  --tw-ring-offset-color: rgba(212, 212, 216, 0.75);
}
.ring-offset-zinc-300\/80 {
  --tw-ring-offset-color: rgba(212, 212, 216, 0.8);
}
.ring-offset-zinc-300\/85 {
  --tw-ring-offset-color: rgba(212, 212, 216, 0.85);
}
.ring-offset-zinc-300\/90 {
  --tw-ring-offset-color: rgba(212, 212, 216, 0.9);
}
.ring-offset-zinc-300\/95 {
  --tw-ring-offset-color: rgba(212, 212, 216, 0.95);
}
.ring-offset-zinc-400 {
  --tw-ring-offset-color: #a1a1aa;
}
.ring-offset-zinc-400\/0 {
  --tw-ring-offset-color: rgba(161, 161, 170, 0);
}
.ring-offset-zinc-400\/10 {
  --tw-ring-offset-color: rgba(161, 161, 170, 0.1);
}
.ring-offset-zinc-400\/100 {
  --tw-ring-offset-color: rgba(161, 161, 170, 1);
}
.ring-offset-zinc-400\/15 {
  --tw-ring-offset-color: rgba(161, 161, 170, 0.15);
}
.ring-offset-zinc-400\/20 {
  --tw-ring-offset-color: rgba(161, 161, 170, 0.2);
}
.ring-offset-zinc-400\/25 {
  --tw-ring-offset-color: rgba(161, 161, 170, 0.25);
}
.ring-offset-zinc-400\/30 {
  --tw-ring-offset-color: rgba(161, 161, 170, 0.3);
}
.ring-offset-zinc-400\/35 {
  --tw-ring-offset-color: rgba(161, 161, 170, 0.35);
}
.ring-offset-zinc-400\/40 {
  --tw-ring-offset-color: rgba(161, 161, 170, 0.4);
}
.ring-offset-zinc-400\/45 {
  --tw-ring-offset-color: rgba(161, 161, 170, 0.45);
}
.ring-offset-zinc-400\/5 {
  --tw-ring-offset-color: rgba(161, 161, 170, 0.05);
}
.ring-offset-zinc-400\/50 {
  --tw-ring-offset-color: rgba(161, 161, 170, 0.5);
}
.ring-offset-zinc-400\/55 {
  --tw-ring-offset-color: rgba(161, 161, 170, 0.55);
}
.ring-offset-zinc-400\/60 {
  --tw-ring-offset-color: rgba(161, 161, 170, 0.6);
}
.ring-offset-zinc-400\/65 {
  --tw-ring-offset-color: rgba(161, 161, 170, 0.65);
}
.ring-offset-zinc-400\/70 {
  --tw-ring-offset-color: rgba(161, 161, 170, 0.7);
}
.ring-offset-zinc-400\/75 {
  --tw-ring-offset-color: rgba(161, 161, 170, 0.75);
}
.ring-offset-zinc-400\/80 {
  --tw-ring-offset-color: rgba(161, 161, 170, 0.8);
}
.ring-offset-zinc-400\/85 {
  --tw-ring-offset-color: rgba(161, 161, 170, 0.85);
}
.ring-offset-zinc-400\/90 {
  --tw-ring-offset-color: rgba(161, 161, 170, 0.9);
}
.ring-offset-zinc-400\/95 {
  --tw-ring-offset-color: rgba(161, 161, 170, 0.95);
}
.ring-offset-zinc-50 {
  --tw-ring-offset-color: #fafafa;
}
.ring-offset-zinc-50\/0 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0);
}
.ring-offset-zinc-50\/10 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.1);
}
.ring-offset-zinc-50\/100 {
  --tw-ring-offset-color: rgba(250, 250, 250, 1);
}
.ring-offset-zinc-50\/15 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.15);
}
.ring-offset-zinc-50\/20 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.2);
}
.ring-offset-zinc-50\/25 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.25);
}
.ring-offset-zinc-50\/30 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.3);
}
.ring-offset-zinc-50\/35 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.35);
}
.ring-offset-zinc-50\/40 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.4);
}
.ring-offset-zinc-50\/45 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.45);
}
.ring-offset-zinc-50\/5 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.05);
}
.ring-offset-zinc-50\/50 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.5);
}
.ring-offset-zinc-50\/55 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.55);
}
.ring-offset-zinc-50\/60 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.6);
}
.ring-offset-zinc-50\/65 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.65);
}
.ring-offset-zinc-50\/70 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.7);
}
.ring-offset-zinc-50\/75 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.75);
}
.ring-offset-zinc-50\/80 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.8);
}
.ring-offset-zinc-50\/85 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.85);
}
.ring-offset-zinc-50\/90 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.9);
}
.ring-offset-zinc-50\/95 {
  --tw-ring-offset-color: rgba(250, 250, 250, 0.95);
}
.ring-offset-zinc-500 {
  --tw-ring-offset-color: #71717a;
}
.ring-offset-zinc-500\/0 {
  --tw-ring-offset-color: rgba(113, 113, 122, 0);
}
.ring-offset-zinc-500\/10 {
  --tw-ring-offset-color: rgba(113, 113, 122, 0.1);
}
.ring-offset-zinc-500\/100 {
  --tw-ring-offset-color: rgba(113, 113, 122, 1);
}
.ring-offset-zinc-500\/15 {
  --tw-ring-offset-color: rgba(113, 113, 122, 0.15);
}
.ring-offset-zinc-500\/20 {
  --tw-ring-offset-color: rgba(113, 113, 122, 0.2);
}
.ring-offset-zinc-500\/25 {
  --tw-ring-offset-color: rgba(113, 113, 122, 0.25);
}
.ring-offset-zinc-500\/30 {
  --tw-ring-offset-color: rgba(113, 113, 122, 0.3);
}
.ring-offset-zinc-500\/35 {
  --tw-ring-offset-color: rgba(113, 113, 122, 0.35);
}
.ring-offset-zinc-500\/40 {
  --tw-ring-offset-color: rgba(113, 113, 122, 0.4);
}
.ring-offset-zinc-500\/45 {
  --tw-ring-offset-color: rgba(113, 113, 122, 0.45);
}
.ring-offset-zinc-500\/5 {
  --tw-ring-offset-color: rgba(113, 113, 122, 0.05);
}
.ring-offset-zinc-500\/50 {
  --tw-ring-offset-color: rgba(113, 113, 122, 0.5);
}
.ring-offset-zinc-500\/55 {
  --tw-ring-offset-color: rgba(113, 113, 122, 0.55);
}
.ring-offset-zinc-500\/60 {
  --tw-ring-offset-color: rgba(113, 113, 122, 0.6);
}
.ring-offset-zinc-500\/65 {
  --tw-ring-offset-color: rgba(113, 113, 122, 0.65);
}
.ring-offset-zinc-500\/70 {
  --tw-ring-offset-color: rgba(113, 113, 122, 0.7);
}
.ring-offset-zinc-500\/75 {
  --tw-ring-offset-color: rgba(113, 113, 122, 0.75);
}
.ring-offset-zinc-500\/80 {
  --tw-ring-offset-color: rgba(113, 113, 122, 0.8);
}
.ring-offset-zinc-500\/85 {
  --tw-ring-offset-color: rgba(113, 113, 122, 0.85);
}
.ring-offset-zinc-500\/90 {
  --tw-ring-offset-color: rgba(113, 113, 122, 0.9);
}
.ring-offset-zinc-500\/95 {
  --tw-ring-offset-color: rgba(113, 113, 122, 0.95);
}
.ring-offset-zinc-600 {
  --tw-ring-offset-color: #52525b;
}
.ring-offset-zinc-600\/0 {
  --tw-ring-offset-color: rgba(82, 82, 91, 0);
}
.ring-offset-zinc-600\/10 {
  --tw-ring-offset-color: rgba(82, 82, 91, 0.1);
}
.ring-offset-zinc-600\/100 {
  --tw-ring-offset-color: rgba(82, 82, 91, 1);
}
.ring-offset-zinc-600\/15 {
  --tw-ring-offset-color: rgba(82, 82, 91, 0.15);
}
.ring-offset-zinc-600\/20 {
  --tw-ring-offset-color: rgba(82, 82, 91, 0.2);
}
.ring-offset-zinc-600\/25 {
  --tw-ring-offset-color: rgba(82, 82, 91, 0.25);
}
.ring-offset-zinc-600\/30 {
  --tw-ring-offset-color: rgba(82, 82, 91, 0.3);
}
.ring-offset-zinc-600\/35 {
  --tw-ring-offset-color: rgba(82, 82, 91, 0.35);
}
.ring-offset-zinc-600\/40 {
  --tw-ring-offset-color: rgba(82, 82, 91, 0.4);
}
.ring-offset-zinc-600\/45 {
  --tw-ring-offset-color: rgba(82, 82, 91, 0.45);
}
.ring-offset-zinc-600\/5 {
  --tw-ring-offset-color: rgba(82, 82, 91, 0.05);
}
.ring-offset-zinc-600\/50 {
  --tw-ring-offset-color: rgba(82, 82, 91, 0.5);
}
.ring-offset-zinc-600\/55 {
  --tw-ring-offset-color: rgba(82, 82, 91, 0.55);
}
.ring-offset-zinc-600\/60 {
  --tw-ring-offset-color: rgba(82, 82, 91, 0.6);
}
.ring-offset-zinc-600\/65 {
  --tw-ring-offset-color: rgba(82, 82, 91, 0.65);
}
.ring-offset-zinc-600\/70 {
  --tw-ring-offset-color: rgba(82, 82, 91, 0.7);
}
.ring-offset-zinc-600\/75 {
  --tw-ring-offset-color: rgba(82, 82, 91, 0.75);
}
.ring-offset-zinc-600\/80 {
  --tw-ring-offset-color: rgba(82, 82, 91, 0.8);
}
.ring-offset-zinc-600\/85 {
  --tw-ring-offset-color: rgba(82, 82, 91, 0.85);
}
.ring-offset-zinc-600\/90 {
  --tw-ring-offset-color: rgba(82, 82, 91, 0.9);
}
.ring-offset-zinc-600\/95 {
  --tw-ring-offset-color: rgba(82, 82, 91, 0.95);
}
.ring-offset-zinc-700 {
  --tw-ring-offset-color: #3f3f46;
}
.ring-offset-zinc-700\/0 {
  --tw-ring-offset-color: rgba(63, 63, 70, 0);
}
.ring-offset-zinc-700\/10 {
  --tw-ring-offset-color: rgba(63, 63, 70, 0.1);
}
.ring-offset-zinc-700\/100 {
  --tw-ring-offset-color: rgba(63, 63, 70, 1);
}
.ring-offset-zinc-700\/15 {
  --tw-ring-offset-color: rgba(63, 63, 70, 0.15);
}
.ring-offset-zinc-700\/20 {
  --tw-ring-offset-color: rgba(63, 63, 70, 0.2);
}
.ring-offset-zinc-700\/25 {
  --tw-ring-offset-color: rgba(63, 63, 70, 0.25);
}
.ring-offset-zinc-700\/30 {
  --tw-ring-offset-color: rgba(63, 63, 70, 0.3);
}
.ring-offset-zinc-700\/35 {
  --tw-ring-offset-color: rgba(63, 63, 70, 0.35);
}
.ring-offset-zinc-700\/40 {
  --tw-ring-offset-color: rgba(63, 63, 70, 0.4);
}
.ring-offset-zinc-700\/45 {
  --tw-ring-offset-color: rgba(63, 63, 70, 0.45);
}
.ring-offset-zinc-700\/5 {
  --tw-ring-offset-color: rgba(63, 63, 70, 0.05);
}
.ring-offset-zinc-700\/50 {
  --tw-ring-offset-color: rgba(63, 63, 70, 0.5);
}
.ring-offset-zinc-700\/55 {
  --tw-ring-offset-color: rgba(63, 63, 70, 0.55);
}
.ring-offset-zinc-700\/60 {
  --tw-ring-offset-color: rgba(63, 63, 70, 0.6);
}
.ring-offset-zinc-700\/65 {
  --tw-ring-offset-color: rgba(63, 63, 70, 0.65);
}
.ring-offset-zinc-700\/70 {
  --tw-ring-offset-color: rgba(63, 63, 70, 0.7);
}
.ring-offset-zinc-700\/75 {
  --tw-ring-offset-color: rgba(63, 63, 70, 0.75);
}
.ring-offset-zinc-700\/80 {
  --tw-ring-offset-color: rgba(63, 63, 70, 0.8);
}
.ring-offset-zinc-700\/85 {
  --tw-ring-offset-color: rgba(63, 63, 70, 0.85);
}
.ring-offset-zinc-700\/90 {
  --tw-ring-offset-color: rgba(63, 63, 70, 0.9);
}
.ring-offset-zinc-700\/95 {
  --tw-ring-offset-color: rgba(63, 63, 70, 0.95);
}
.ring-offset-zinc-800 {
  --tw-ring-offset-color: #27272a;
}
.ring-offset-zinc-800\/0 {
  --tw-ring-offset-color: rgba(39, 39, 42, 0);
}
.ring-offset-zinc-800\/10 {
  --tw-ring-offset-color: rgba(39, 39, 42, 0.1);
}
.ring-offset-zinc-800\/100 {
  --tw-ring-offset-color: rgba(39, 39, 42, 1);
}
.ring-offset-zinc-800\/15 {
  --tw-ring-offset-color: rgba(39, 39, 42, 0.15);
}
.ring-offset-zinc-800\/20 {
  --tw-ring-offset-color: rgba(39, 39, 42, 0.2);
}
.ring-offset-zinc-800\/25 {
  --tw-ring-offset-color: rgba(39, 39, 42, 0.25);
}
.ring-offset-zinc-800\/30 {
  --tw-ring-offset-color: rgba(39, 39, 42, 0.3);
}
.ring-offset-zinc-800\/35 {
  --tw-ring-offset-color: rgba(39, 39, 42, 0.35);
}
.ring-offset-zinc-800\/40 {
  --tw-ring-offset-color: rgba(39, 39, 42, 0.4);
}
.ring-offset-zinc-800\/45 {
  --tw-ring-offset-color: rgba(39, 39, 42, 0.45);
}
.ring-offset-zinc-800\/5 {
  --tw-ring-offset-color: rgba(39, 39, 42, 0.05);
}
.ring-offset-zinc-800\/50 {
  --tw-ring-offset-color: rgba(39, 39, 42, 0.5);
}
.ring-offset-zinc-800\/55 {
  --tw-ring-offset-color: rgba(39, 39, 42, 0.55);
}
.ring-offset-zinc-800\/60 {
  --tw-ring-offset-color: rgba(39, 39, 42, 0.6);
}
.ring-offset-zinc-800\/65 {
  --tw-ring-offset-color: rgba(39, 39, 42, 0.65);
}
.ring-offset-zinc-800\/70 {
  --tw-ring-offset-color: rgba(39, 39, 42, 0.7);
}
.ring-offset-zinc-800\/75 {
  --tw-ring-offset-color: rgba(39, 39, 42, 0.75);
}
.ring-offset-zinc-800\/80 {
  --tw-ring-offset-color: rgba(39, 39, 42, 0.8);
}
.ring-offset-zinc-800\/85 {
  --tw-ring-offset-color: rgba(39, 39, 42, 0.85);
}
.ring-offset-zinc-800\/90 {
  --tw-ring-offset-color: rgba(39, 39, 42, 0.9);
}
.ring-offset-zinc-800\/95 {
  --tw-ring-offset-color: rgba(39, 39, 42, 0.95);
}
.ring-offset-zinc-900 {
  --tw-ring-offset-color: #18181b;
}
.ring-offset-zinc-900\/0 {
  --tw-ring-offset-color: rgba(24, 24, 27, 0);
}
.ring-offset-zinc-900\/10 {
  --tw-ring-offset-color: rgba(24, 24, 27, 0.1);
}
.ring-offset-zinc-900\/100 {
  --tw-ring-offset-color: rgba(24, 24, 27, 1);
}
.ring-offset-zinc-900\/15 {
  --tw-ring-offset-color: rgba(24, 24, 27, 0.15);
}
.ring-offset-zinc-900\/20 {
  --tw-ring-offset-color: rgba(24, 24, 27, 0.2);
}
.ring-offset-zinc-900\/25 {
  --tw-ring-offset-color: rgba(24, 24, 27, 0.25);
}
.ring-offset-zinc-900\/30 {
  --tw-ring-offset-color: rgba(24, 24, 27, 0.3);
}
.ring-offset-zinc-900\/35 {
  --tw-ring-offset-color: rgba(24, 24, 27, 0.35);
}
.ring-offset-zinc-900\/40 {
  --tw-ring-offset-color: rgba(24, 24, 27, 0.4);
}
.ring-offset-zinc-900\/45 {
  --tw-ring-offset-color: rgba(24, 24, 27, 0.45);
}
.ring-offset-zinc-900\/5 {
  --tw-ring-offset-color: rgba(24, 24, 27, 0.05);
}
.ring-offset-zinc-900\/50 {
  --tw-ring-offset-color: rgba(24, 24, 27, 0.5);
}
.ring-offset-zinc-900\/55 {
  --tw-ring-offset-color: rgba(24, 24, 27, 0.55);
}
.ring-offset-zinc-900\/60 {
  --tw-ring-offset-color: rgba(24, 24, 27, 0.6);
}
.ring-offset-zinc-900\/65 {
  --tw-ring-offset-color: rgba(24, 24, 27, 0.65);
}
.ring-offset-zinc-900\/70 {
  --tw-ring-offset-color: rgba(24, 24, 27, 0.7);
}
.ring-offset-zinc-900\/75 {
  --tw-ring-offset-color: rgba(24, 24, 27, 0.75);
}
.ring-offset-zinc-900\/80 {
  --tw-ring-offset-color: rgba(24, 24, 27, 0.8);
}
.ring-offset-zinc-900\/85 {
  --tw-ring-offset-color: rgba(24, 24, 27, 0.85);
}
.ring-offset-zinc-900\/90 {
  --tw-ring-offset-color: rgba(24, 24, 27, 0.9);
}
.ring-offset-zinc-900\/95 {
  --tw-ring-offset-color: rgba(24, 24, 27, 0.95);
}
.ring-offset-zinc-950 {
  --tw-ring-offset-color: #09090b;
}
.ring-offset-zinc-950\/0 {
  --tw-ring-offset-color: rgba(9, 9, 11, 0);
}
.ring-offset-zinc-950\/10 {
  --tw-ring-offset-color: rgba(9, 9, 11, 0.1);
}
.ring-offset-zinc-950\/100 {
  --tw-ring-offset-color: rgba(9, 9, 11, 1);
}
.ring-offset-zinc-950\/15 {
  --tw-ring-offset-color: rgba(9, 9, 11, 0.15);
}
.ring-offset-zinc-950\/20 {
  --tw-ring-offset-color: rgba(9, 9, 11, 0.2);
}
.ring-offset-zinc-950\/25 {
  --tw-ring-offset-color: rgba(9, 9, 11, 0.25);
}
.ring-offset-zinc-950\/30 {
  --tw-ring-offset-color: rgba(9, 9, 11, 0.3);
}
.ring-offset-zinc-950\/35 {
  --tw-ring-offset-color: rgba(9, 9, 11, 0.35);
}
.ring-offset-zinc-950\/40 {
  --tw-ring-offset-color: rgba(9, 9, 11, 0.4);
}
.ring-offset-zinc-950\/45 {
  --tw-ring-offset-color: rgba(9, 9, 11, 0.45);
}
.ring-offset-zinc-950\/5 {
  --tw-ring-offset-color: rgba(9, 9, 11, 0.05);
}
.ring-offset-zinc-950\/50 {
  --tw-ring-offset-color: rgba(9, 9, 11, 0.5);
}
.ring-offset-zinc-950\/55 {
  --tw-ring-offset-color: rgba(9, 9, 11, 0.55);
}
.ring-offset-zinc-950\/60 {
  --tw-ring-offset-color: rgba(9, 9, 11, 0.6);
}
.ring-offset-zinc-950\/65 {
  --tw-ring-offset-color: rgba(9, 9, 11, 0.65);
}
.ring-offset-zinc-950\/70 {
  --tw-ring-offset-color: rgba(9, 9, 11, 0.7);
}
.ring-offset-zinc-950\/75 {
  --tw-ring-offset-color: rgba(9, 9, 11, 0.75);
}
.ring-offset-zinc-950\/80 {
  --tw-ring-offset-color: rgba(9, 9, 11, 0.8);
}
.ring-offset-zinc-950\/85 {
  --tw-ring-offset-color: rgba(9, 9, 11, 0.85);
}
.ring-offset-zinc-950\/90 {
  --tw-ring-offset-color: rgba(9, 9, 11, 0.9);
}
.ring-offset-zinc-950\/95 {
  --tw-ring-offset-color: rgba(9, 9, 11, 0.95);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-blur-sm {
  --tw-backdrop-blur: blur(4px);
  -webkit-backdrop-filter: blur(4px) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: blur(4px) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-200 {
  transition-duration: 200ms;
}
.duration-500 {
  transition-duration: 500ms;
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
[x-cloak] {
    display: none !important;
}
.checked\:btn-disabled:checked {
  pointer-events: none;
}
.checked\:btn-square:checked {
  height: 3rem;
  width: 3rem;
  padding: 0px;
}
.checked\:btn-circle:checked {
  height: 3rem;
  width: 3rem;
  border-radius: 9999px;
  padding: 0px;
}
@media (hover: hover) {
  .checked\:btn-ghost:checked:hover {
    border-color: transparent;
  }
  @supports (color: oklch(0% 0 0)) {
    .checked\:btn-ghost:checked:hover {
      background-color: oklch(20% 0 0/0.2);
      background-color: var(--fallback-bc,oklch(var(--bc)/0.2));
    }
  }
  .checked\:btn-ghost:checked:hover {
    border-color: transparent;
  }
  @supports (color: oklch(0% 0 0)) {
    .checked\:btn-ghost:checked:hover {
      background-color: oklch(20% 0 0/0.2);
      background-color: var(--fallback-bc,oklch(var(--bc)/0.2));
    }
  }
  .checked\:btn-link:checked:hover {
    border-color: transparent;
    background-color: transparent;
    -webkit-text-decoration-line: underline;
            text-decoration-line: underline;
  }
  .checked\:btn-outline:checked:hover {
    --tw-border-opacity: 1;
    border-color: rgb(22, 22, 22);
    border-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-border-opacity)));
    --tw-bg-opacity: 1;
    background-color: rgb(22, 22, 22);
    background-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-bg-opacity)));
    --tw-text-opacity: 1;
    color: rgb(255, 255, 255);
    color: var(--fallback-b1,oklch(var(--b1)/var(--tw-text-opacity)));
  }
  .checked\:btn-outline:checked.btn-primary:hover {
    --tw-text-opacity: 1;
    color: rgb(255, 255, 255);
    color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .checked\:btn-outline:checked.btn-primary:hover {
      background-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
      border-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-outline:checked.btn-primary:hover {
        background-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
      }
}
  }
  .checked\:btn-primary:checked.btn-outline:hover {
    --tw-text-opacity: 1;
    color: rgb(255, 255, 255);
    color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .checked\:btn-primary:checked.btn-outline:hover {
      background-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
      border-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-primary:checked.btn-outline:hover {
        background-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
      }
}
  }
  .checked\:btn-outline:checked.btn-primary:hover {
    --tw-text-opacity: 1;
    color: rgb(255, 255, 255);
    color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .checked\:btn-outline:checked.btn-primary:hover {
      background-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
      border-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-outline:checked.btn-primary:hover {
        background-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
      }
}
  }
  .checked\:btn-primary:checked.btn-outline:hover {
    --tw-text-opacity: 1;
    color: rgb(255, 255, 255);
    color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .checked\:btn-primary:checked.btn-outline:hover {
      background-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
      border-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-primary:checked.btn-outline:hover {
        background-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
      }
}
  }
  .checked\:btn-outline:checked.btn-secondary:hover {
    --tw-text-opacity: 1;
    color: rgb(255, 255, 255);
    color: var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .checked\:btn-outline:checked.btn-secondary:hover {
      background-color: color-mix(in oklab, rgb(123, 63, 244) 90%, black);
      border-color: color-mix(in oklab, rgb(123, 63, 244) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-outline:checked.btn-secondary:hover {
        background-color: color-mix(in oklab, var(--fallback-s,oklch(var(--s)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-s,oklch(var(--s)/1)) 90%, black);
      }
}
  }
  .checked\:btn-secondary:checked.btn-outline:hover {
    --tw-text-opacity: 1;
    color: rgb(255, 255, 255);
    color: var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .checked\:btn-secondary:checked.btn-outline:hover {
      background-color: color-mix(in oklab, rgb(123, 63, 244) 90%, black);
      border-color: color-mix(in oklab, rgb(123, 63, 244) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-secondary:checked.btn-outline:hover {
        background-color: color-mix(in oklab, var(--fallback-s,oklch(var(--s)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-s,oklch(var(--s)/1)) 90%, black);
      }
}
  }
  .checked\:btn-outline:checked.btn-secondary:hover {
    --tw-text-opacity: 1;
    color: rgb(255, 255, 255);
    color: var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .checked\:btn-outline:checked.btn-secondary:hover {
      background-color: color-mix(in oklab, rgb(123, 63, 244) 90%, black);
      border-color: color-mix(in oklab, rgb(123, 63, 244) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-outline:checked.btn-secondary:hover {
        background-color: color-mix(in oklab, var(--fallback-s,oklch(var(--s)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-s,oklch(var(--s)/1)) 90%, black);
      }
}
  }
  .checked\:btn-secondary:checked.btn-outline:hover {
    --tw-text-opacity: 1;
    color: rgb(255, 255, 255);
    color: var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .checked\:btn-secondary:checked.btn-outline:hover {
      background-color: color-mix(in oklab, rgb(123, 63, 244) 90%, black);
      border-color: color-mix(in oklab, rgb(123, 63, 244) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-secondary:checked.btn-outline:hover {
        background-color: color-mix(in oklab, var(--fallback-s,oklch(var(--s)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-s,oklch(var(--s)/1)) 90%, black);
      }
}
  }
  .checked\:btn-outline:checked.btn-accent:hover {
    --tw-text-opacity: 1;
    color: rgb(22, 13, 0);
    color: var(--fallback-ac,oklch(var(--ac)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .checked\:btn-outline:checked.btn-accent:hover {
      background-color: color-mix(in oklab, rgb(255, 188, 10) 90%, black);
      border-color: color-mix(in oklab, rgb(255, 188, 10) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-outline:checked.btn-accent:hover {
        background-color: color-mix(in oklab, var(--fallback-a,oklch(var(--a)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-a,oklch(var(--a)/1)) 90%, black);
      }
}
  }
  .checked\:btn-accent:checked.btn-outline:hover {
    --tw-text-opacity: 1;
    color: rgb(22, 13, 0);
    color: var(--fallback-ac,oklch(var(--ac)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .checked\:btn-accent:checked.btn-outline:hover {
      background-color: color-mix(in oklab, rgb(255, 188, 10) 90%, black);
      border-color: color-mix(in oklab, rgb(255, 188, 10) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-accent:checked.btn-outline:hover {
        background-color: color-mix(in oklab, var(--fallback-a,oklch(var(--a)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-a,oklch(var(--a)/1)) 90%, black);
      }
}
  }
  .checked\:btn-outline:checked.btn-accent:hover {
    --tw-text-opacity: 1;
    color: rgb(22, 13, 0);
    color: var(--fallback-ac,oklch(var(--ac)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .checked\:btn-outline:checked.btn-accent:hover {
      background-color: color-mix(in oklab, rgb(255, 188, 10) 90%, black);
      border-color: color-mix(in oklab, rgb(255, 188, 10) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-outline:checked.btn-accent:hover {
        background-color: color-mix(in oklab, var(--fallback-a,oklch(var(--a)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-a,oklch(var(--a)/1)) 90%, black);
      }
}
  }
  .checked\:btn-accent:checked.btn-outline:hover {
    --tw-text-opacity: 1;
    color: rgb(22, 13, 0);
    color: var(--fallback-ac,oklch(var(--ac)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .checked\:btn-accent:checked.btn-outline:hover {
      background-color: color-mix(in oklab, rgb(255, 188, 10) 90%, black);
      border-color: color-mix(in oklab, rgb(255, 188, 10) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-accent:checked.btn-outline:hover {
        background-color: color-mix(in oklab, var(--fallback-a,oklch(var(--a)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-a,oklch(var(--a)/1)) 90%, black);
      }
}
  }
  .checked\:btn-outline:checked.btn-success:hover {
    --tw-text-opacity: 1;
    color: rgb(3, 20, 1);
    color: var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .checked\:btn-outline:checked.btn-success:hover {
      background-color: color-mix(in oklab, rgb(93, 244, 63) 90%, black);
      border-color: color-mix(in oklab, rgb(93, 244, 63) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-outline:checked.btn-success:hover {
        background-color: color-mix(in oklab, var(--fallback-su,oklch(var(--su)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-su,oklch(var(--su)/1)) 90%, black);
      }
}
  }
  .checked\:btn-success:checked.btn-outline:hover {
    --tw-text-opacity: 1;
    color: rgb(3, 20, 1);
    color: var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .checked\:btn-success:checked.btn-outline:hover {
      background-color: color-mix(in oklab, rgb(93, 244, 63) 90%, black);
      border-color: color-mix(in oklab, rgb(93, 244, 63) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-success:checked.btn-outline:hover {
        background-color: color-mix(in oklab, var(--fallback-su,oklch(var(--su)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-su,oklch(var(--su)/1)) 90%, black);
      }
}
  }
  .checked\:btn-outline:checked.btn-success:hover {
    --tw-text-opacity: 1;
    color: rgb(3, 20, 1);
    color: var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .checked\:btn-outline:checked.btn-success:hover {
      background-color: color-mix(in oklab, rgb(93, 244, 63) 90%, black);
      border-color: color-mix(in oklab, rgb(93, 244, 63) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-outline:checked.btn-success:hover {
        background-color: color-mix(in oklab, var(--fallback-su,oklch(var(--su)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-su,oklch(var(--su)/1)) 90%, black);
      }
}
  }
  .checked\:btn-success:checked.btn-outline:hover {
    --tw-text-opacity: 1;
    color: rgb(3, 20, 1);
    color: var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .checked\:btn-success:checked.btn-outline:hover {
      background-color: color-mix(in oklab, rgb(93, 244, 63) 90%, black);
      border-color: color-mix(in oklab, rgb(93, 244, 63) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-success:checked.btn-outline:hover {
        background-color: color-mix(in oklab, var(--fallback-su,oklch(var(--su)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-su,oklch(var(--su)/1)) 90%, black);
      }
}
  }
  .checked\:btn-outline:checked.btn-info:hover {
    --tw-text-opacity: 1;
    color: rgb(2, 14, 21);
    color: var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .checked\:btn-outline:checked.btn-info:hover {
      background-color: color-mix(in oklab, rgb(69, 192, 245) 90%, black);
      border-color: color-mix(in oklab, rgb(69, 192, 245) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-outline:checked.btn-info:hover {
        background-color: color-mix(in oklab, var(--fallback-in,oklch(var(--in)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-in,oklch(var(--in)/1)) 90%, black);
      }
}
  }
  .checked\:btn-info:checked.btn-outline:hover {
    --tw-text-opacity: 1;
    color: rgb(2, 14, 21);
    color: var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .checked\:btn-info:checked.btn-outline:hover {
      background-color: color-mix(in oklab, rgb(69, 192, 245) 90%, black);
      border-color: color-mix(in oklab, rgb(69, 192, 245) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-info:checked.btn-outline:hover {
        background-color: color-mix(in oklab, var(--fallback-in,oklch(var(--in)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-in,oklch(var(--in)/1)) 90%, black);
      }
}
  }
  .checked\:btn-outline:checked.btn-info:hover {
    --tw-text-opacity: 1;
    color: rgb(2, 14, 21);
    color: var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .checked\:btn-outline:checked.btn-info:hover {
      background-color: color-mix(in oklab, rgb(69, 192, 245) 90%, black);
      border-color: color-mix(in oklab, rgb(69, 192, 245) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-outline:checked.btn-info:hover {
        background-color: color-mix(in oklab, var(--fallback-in,oklch(var(--in)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-in,oklch(var(--in)/1)) 90%, black);
      }
}
  }
  .checked\:btn-info:checked.btn-outline:hover {
    --tw-text-opacity: 1;
    color: rgb(2, 14, 21);
    color: var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .checked\:btn-info:checked.btn-outline:hover {
      background-color: color-mix(in oklab, rgb(69, 192, 245) 90%, black);
      border-color: color-mix(in oklab, rgb(69, 192, 245) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-info:checked.btn-outline:hover {
        background-color: color-mix(in oklab, var(--fallback-in,oklch(var(--in)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-in,oklch(var(--in)/1)) 90%, black);
      }
}
  }
  .checked\:btn-outline:checked.btn-warning:hover {
    --tw-text-opacity: 1;
    color: rgb(21, 13, 0);
    color: var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .checked\:btn-outline:checked.btn-warning:hover {
      background-color: color-mix(in oklab, rgb(251, 189, 35) 90%, black);
      border-color: color-mix(in oklab, rgb(251, 189, 35) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-outline:checked.btn-warning:hover {
        background-color: color-mix(in oklab, var(--fallback-wa,oklch(var(--wa)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-wa,oklch(var(--wa)/1)) 90%, black);
      }
}
  }
  .checked\:btn-warning:checked.btn-outline:hover {
    --tw-text-opacity: 1;
    color: rgb(21, 13, 0);
    color: var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .checked\:btn-warning:checked.btn-outline:hover {
      background-color: color-mix(in oklab, rgb(251, 189, 35) 90%, black);
      border-color: color-mix(in oklab, rgb(251, 189, 35) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-warning:checked.btn-outline:hover {
        background-color: color-mix(in oklab, var(--fallback-wa,oklch(var(--wa)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-wa,oklch(var(--wa)/1)) 90%, black);
      }
}
  }
  .checked\:btn-outline:checked.btn-warning:hover {
    --tw-text-opacity: 1;
    color: rgb(21, 13, 0);
    color: var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .checked\:btn-outline:checked.btn-warning:hover {
      background-color: color-mix(in oklab, rgb(251, 189, 35) 90%, black);
      border-color: color-mix(in oklab, rgb(251, 189, 35) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-outline:checked.btn-warning:hover {
        background-color: color-mix(in oklab, var(--fallback-wa,oklch(var(--wa)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-wa,oklch(var(--wa)/1)) 90%, black);
      }
}
  }
  .checked\:btn-warning:checked.btn-outline:hover {
    --tw-text-opacity: 1;
    color: rgb(21, 13, 0);
    color: var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .checked\:btn-warning:checked.btn-outline:hover {
      background-color: color-mix(in oklab, rgb(251, 189, 35) 90%, black);
      border-color: color-mix(in oklab, rgb(251, 189, 35) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-warning:checked.btn-outline:hover {
        background-color: color-mix(in oklab, var(--fallback-wa,oklch(var(--wa)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-wa,oklch(var(--wa)/1)) 90%, black);
      }
}
  }
  .checked\:btn-outline:checked.btn-error:hover {
    --tw-text-opacity: 1;
    color: rgb(21, 4, 4);
    color: var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .checked\:btn-outline:checked.btn-error:hover {
      background-color: color-mix(in oklab, rgb(248, 114, 114) 90%, black);
      border-color: color-mix(in oklab, rgb(248, 114, 114) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-outline:checked.btn-error:hover {
        background-color: color-mix(in oklab, var(--fallback-er,oklch(var(--er)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-er,oklch(var(--er)/1)) 90%, black);
      }
}
  }
  .checked\:btn-error:checked.btn-outline:hover {
    --tw-text-opacity: 1;
    color: rgb(21, 4, 4);
    color: var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .checked\:btn-error:checked.btn-outline:hover {
      background-color: color-mix(in oklab, rgb(248, 114, 114) 90%, black);
      border-color: color-mix(in oklab, rgb(248, 114, 114) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-error:checked.btn-outline:hover {
        background-color: color-mix(in oklab, var(--fallback-er,oklch(var(--er)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-er,oklch(var(--er)/1)) 90%, black);
      }
}
  }
  .checked\:btn-outline:checked.btn-error:hover {
    --tw-text-opacity: 1;
    color: rgb(21, 4, 4);
    color: var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .checked\:btn-outline:checked.btn-error:hover {
      background-color: color-mix(in oklab, rgb(248, 114, 114) 90%, black);
      border-color: color-mix(in oklab, rgb(248, 114, 114) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-outline:checked.btn-error:hover {
        background-color: color-mix(in oklab, var(--fallback-er,oklch(var(--er)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-er,oklch(var(--er)/1)) 90%, black);
      }
}
  }
  .checked\:btn-error:checked.btn-outline:hover {
    --tw-text-opacity: 1;
    color: rgb(21, 4, 4);
    color: var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)));
  }
  @supports (color: color-mix(in oklab, black, black)) {
    .checked\:btn-error:checked.btn-outline:hover {
      background-color: color-mix(in oklab, rgb(248, 114, 114) 90%, black);
      border-color: color-mix(in oklab, rgb(248, 114, 114) 90%, black);
    }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-error:checked.btn-outline:hover {
        background-color: color-mix(in oklab, var(--fallback-er,oklch(var(--er)/1)) 90%, black);
        border-color: color-mix(in oklab, var(--fallback-er,oklch(var(--er)/1)) 90%, black);
      }
}
  }
  .checked\:btn-disabled:checked:hover {
    --tw-border-opacity: 0;
    background-color: rgba(61, 68, 81, 0.2);
    background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
    --tw-bg-opacity: 0.2;
    color: rgba(22, 22, 22, 0.2);
    color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
    --tw-text-opacity: 0.2;
  }
}
.checked\:badge-neutral:checked {
  --tw-border-opacity: 1;
  border-color: rgb(61, 68, 81);
  border-color: var(--fallback-n,oklch(var(--n)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(61, 68, 81);
  background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(213, 214, 218);
  color: var(--fallback-nc,oklch(var(--nc)/var(--tw-text-opacity)));
}
.checked\:badge-primary:checked {
  --tw-border-opacity: 1;
  border-color: rgb(244, 63, 94);
  border-color: var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(244, 63, 94);
  background-color: var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
}
.checked\:badge-secondary:checked {
  --tw-border-opacity: 1;
  border-color: rgb(123, 63, 244);
  border-color: var(--fallback-s,oklch(var(--s)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(123, 63, 244);
  background-color: var(--fallback-s,oklch(var(--s)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)));
}
.checked\:badge-accent:checked {
  --tw-border-opacity: 1;
  border-color: rgb(255, 188, 10);
  border-color: var(--fallback-a,oklch(var(--a)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(255, 188, 10);
  background-color: var(--fallback-a,oklch(var(--a)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(22, 13, 0);
  color: var(--fallback-ac,oklch(var(--ac)/var(--tw-text-opacity)));
}
.checked\:badge-info:checked {
  border-color: transparent;
  --tw-bg-opacity: 1;
  background-color: rgb(69, 192, 245);
  background-color: var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(2, 14, 21);
  color: var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)));
}
.checked\:badge-success:checked {
  border-color: transparent;
  --tw-bg-opacity: 1;
  background-color: rgb(93, 244, 63);
  background-color: var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(3, 20, 1);
  color: var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)));
}
.checked\:badge-warning:checked {
  border-color: transparent;
  --tw-bg-opacity: 1;
  background-color: rgb(251, 189, 35);
  background-color: var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(21, 13, 0);
  color: var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)));
}
.checked\:badge-error:checked {
  border-color: transparent;
  --tw-bg-opacity: 1;
  background-color: rgb(248, 114, 114);
  background-color: var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(21, 4, 4);
  color: var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)));
}
.checked\:badge-ghost:checked {
  --tw-border-opacity: 1;
  border-color: rgb(232, 232, 232);
  border-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(232, 232, 232);
  background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(22, 22, 22);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
}
.checked\:badge-outline:checked {
  border-color: currentColor;
  --tw-border-opacity: 0.5;
  background-color: transparent;
  color: currentColor;
}
.checked\:badge-outline:checked.badge-neutral {
  --tw-text-opacity: 1;
  color: rgb(61, 68, 81);
  color: var(--fallback-n,oklch(var(--n)/var(--tw-text-opacity)));
}
.checked\:badge-neutral:checked.badge-outline {
  --tw-text-opacity: 1;
  color: rgb(61, 68, 81);
  color: var(--fallback-n,oklch(var(--n)/var(--tw-text-opacity)));
}
.checked\:badge-outline:checked.badge-primary {
  --tw-text-opacity: 1;
  color: rgb(244, 63, 94);
  color: var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity)));
}
.checked\:badge-primary:checked.badge-outline {
  --tw-text-opacity: 1;
  color: rgb(244, 63, 94);
  color: var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity)));
}
.checked\:badge-outline:checked.badge-secondary {
  --tw-text-opacity: 1;
  color: rgb(123, 63, 244);
  color: var(--fallback-s,oklch(var(--s)/var(--tw-text-opacity)));
}
.checked\:badge-secondary:checked.badge-outline {
  --tw-text-opacity: 1;
  color: rgb(123, 63, 244);
  color: var(--fallback-s,oklch(var(--s)/var(--tw-text-opacity)));
}
.checked\:badge-outline:checked.badge-accent {
  --tw-text-opacity: 1;
  color: rgb(255, 188, 10);
  color: var(--fallback-a,oklch(var(--a)/var(--tw-text-opacity)));
}
.checked\:badge-accent:checked.badge-outline {
  --tw-text-opacity: 1;
  color: rgb(255, 188, 10);
  color: var(--fallback-a,oklch(var(--a)/var(--tw-text-opacity)));
}
.checked\:badge-outline:checked.badge-info {
  --tw-text-opacity: 1;
  color: rgb(69, 192, 245);
  color: var(--fallback-in,oklch(var(--in)/var(--tw-text-opacity)));
}
.checked\:badge-info:checked.badge-outline {
  --tw-text-opacity: 1;
  color: rgb(69, 192, 245);
  color: var(--fallback-in,oklch(var(--in)/var(--tw-text-opacity)));
}
.checked\:badge-outline:checked.badge-success {
  --tw-text-opacity: 1;
  color: rgb(93, 244, 63);
  color: var(--fallback-su,oklch(var(--su)/var(--tw-text-opacity)));
}
.checked\:badge-success:checked.badge-outline {
  --tw-text-opacity: 1;
  color: rgb(93, 244, 63);
  color: var(--fallback-su,oklch(var(--su)/var(--tw-text-opacity)));
}
.checked\:badge-outline:checked.badge-warning {
  --tw-text-opacity: 1;
  color: rgb(251, 189, 35);
  color: var(--fallback-wa,oklch(var(--wa)/var(--tw-text-opacity)));
}
.checked\:badge-warning:checked.badge-outline {
  --tw-text-opacity: 1;
  color: rgb(251, 189, 35);
  color: var(--fallback-wa,oklch(var(--wa)/var(--tw-text-opacity)));
}
.checked\:badge-outline:checked.badge-error {
  --tw-text-opacity: 1;
  color: rgb(248, 114, 114);
  color: var(--fallback-er,oklch(var(--er)/var(--tw-text-opacity)));
}
.checked\:badge-error:checked.badge-outline {
  --tw-text-opacity: 1;
  color: rgb(248, 114, 114);
  color: var(--fallback-er,oklch(var(--er)/var(--tw-text-opacity)));
}
@supports not (color: oklch(0% 0 0)) {
  .checked\:btn-primary:checked {
    --btn-color: var(--fallback-p);
  }
  .checked\:btn-secondary:checked {
    --btn-color: var(--fallback-s);
  }
  .checked\:btn-accent:checked {
    --btn-color: var(--fallback-a);
  }
  .checked\:btn-neutral:checked {
    --btn-color: var(--fallback-n);
  }
  .checked\:btn-info:checked {
    --btn-color: var(--fallback-in);
  }
  .checked\:btn-success:checked {
    --btn-color: var(--fallback-su);
  }
  .checked\:btn-warning:checked {
    --btn-color: var(--fallback-wa);
  }
  .checked\:btn-error:checked {
    --btn-color: var(--fallback-er);
  }
}
@supports (color: color-mix(in oklab, black, black)) {
  .checked\:btn-active:checked {
    background-color: color-mix(
          in oklab,
          rgb(209, 209, 209) 90%,
          black
        );
    border-color: color-mix(
          in oklab,
          rgb(209, 209, 209) 90%,
          black
        );
  }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-active:checked {
      background-color: color-mix(
          in oklab,
          oklch(var(--btn-color, var(--b3)) / var(--tw-bg-opacity, 1)) 90%,
          black
        );
      border-color: color-mix(
          in oklab,
          oklch(var(--btn-color, var(--b3)) / var(--tw-border-opacity, 1)) 90%,
          black
        );
    }
}
  .checked\:btn-outline:checked.btn-primary.btn-active {
    background-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
    border-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
  }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-outline:checked.btn-primary.btn-active {
      background-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
    }
}
  .checked\:btn-primary:checked.btn-outline.btn-active {
    background-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
    border-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
  }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-primary:checked.btn-outline.btn-active {
      background-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
    }
}
  .checked\:btn-active:checked.btn-outline.btn-primary {
    background-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
    border-color: color-mix(in oklab, rgb(244, 63, 94) 90%, black);
  }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-active:checked.btn-outline.btn-primary {
      background-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-p,oklch(var(--p)/1)) 90%, black);
    }
}
  .checked\:btn-outline:checked.btn-secondary.btn-active {
    background-color: color-mix(in oklab, rgb(123, 63, 244) 90%, black);
    border-color: color-mix(in oklab, rgb(123, 63, 244) 90%, black);
  }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-outline:checked.btn-secondary.btn-active {
      background-color: color-mix(in oklab, var(--fallback-s,oklch(var(--s)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-s,oklch(var(--s)/1)) 90%, black);
    }
}
  .checked\:btn-secondary:checked.btn-outline.btn-active {
    background-color: color-mix(in oklab, rgb(123, 63, 244) 90%, black);
    border-color: color-mix(in oklab, rgb(123, 63, 244) 90%, black);
  }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-secondary:checked.btn-outline.btn-active {
      background-color: color-mix(in oklab, var(--fallback-s,oklch(var(--s)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-s,oklch(var(--s)/1)) 90%, black);
    }
}
  .checked\:btn-active:checked.btn-outline.btn-secondary {
    background-color: color-mix(in oklab, rgb(123, 63, 244) 90%, black);
    border-color: color-mix(in oklab, rgb(123, 63, 244) 90%, black);
  }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-active:checked.btn-outline.btn-secondary {
      background-color: color-mix(in oklab, var(--fallback-s,oklch(var(--s)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-s,oklch(var(--s)/1)) 90%, black);
    }
}
  .checked\:btn-outline:checked.btn-accent.btn-active {
    background-color: color-mix(in oklab, rgb(255, 188, 10) 90%, black);
    border-color: color-mix(in oklab, rgb(255, 188, 10) 90%, black);
  }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-outline:checked.btn-accent.btn-active {
      background-color: color-mix(in oklab, var(--fallback-a,oklch(var(--a)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-a,oklch(var(--a)/1)) 90%, black);
    }
}
  .checked\:btn-accent:checked.btn-outline.btn-active {
    background-color: color-mix(in oklab, rgb(255, 188, 10) 90%, black);
    border-color: color-mix(in oklab, rgb(255, 188, 10) 90%, black);
  }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-accent:checked.btn-outline.btn-active {
      background-color: color-mix(in oklab, var(--fallback-a,oklch(var(--a)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-a,oklch(var(--a)/1)) 90%, black);
    }
}
  .checked\:btn-active:checked.btn-outline.btn-accent {
    background-color: color-mix(in oklab, rgb(255, 188, 10) 90%, black);
    border-color: color-mix(in oklab, rgb(255, 188, 10) 90%, black);
  }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-active:checked.btn-outline.btn-accent {
      background-color: color-mix(in oklab, var(--fallback-a,oklch(var(--a)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-a,oklch(var(--a)/1)) 90%, black);
    }
}
  .checked\:btn-outline:checked.btn-success.btn-active {
    background-color: color-mix(in oklab, rgb(93, 244, 63) 90%, black);
    border-color: color-mix(in oklab, rgb(93, 244, 63) 90%, black);
  }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-outline:checked.btn-success.btn-active {
      background-color: color-mix(in oklab, var(--fallback-su,oklch(var(--su)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-su,oklch(var(--su)/1)) 90%, black);
    }
}
  .checked\:btn-success:checked.btn-outline.btn-active {
    background-color: color-mix(in oklab, rgb(93, 244, 63) 90%, black);
    border-color: color-mix(in oklab, rgb(93, 244, 63) 90%, black);
  }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-success:checked.btn-outline.btn-active {
      background-color: color-mix(in oklab, var(--fallback-su,oklch(var(--su)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-su,oklch(var(--su)/1)) 90%, black);
    }
}
  .checked\:btn-active:checked.btn-outline.btn-success {
    background-color: color-mix(in oklab, rgb(93, 244, 63) 90%, black);
    border-color: color-mix(in oklab, rgb(93, 244, 63) 90%, black);
  }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-active:checked.btn-outline.btn-success {
      background-color: color-mix(in oklab, var(--fallback-su,oklch(var(--su)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-su,oklch(var(--su)/1)) 90%, black);
    }
}
  .checked\:btn-outline:checked.btn-info.btn-active {
    background-color: color-mix(in oklab, rgb(69, 192, 245) 90%, black);
    border-color: color-mix(in oklab, rgb(69, 192, 245) 90%, black);
  }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-outline:checked.btn-info.btn-active {
      background-color: color-mix(in oklab, var(--fallback-in,oklch(var(--in)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-in,oklch(var(--in)/1)) 90%, black);
    }
}
  .checked\:btn-info:checked.btn-outline.btn-active {
    background-color: color-mix(in oklab, rgb(69, 192, 245) 90%, black);
    border-color: color-mix(in oklab, rgb(69, 192, 245) 90%, black);
  }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-info:checked.btn-outline.btn-active {
      background-color: color-mix(in oklab, var(--fallback-in,oklch(var(--in)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-in,oklch(var(--in)/1)) 90%, black);
    }
}
  .checked\:btn-active:checked.btn-outline.btn-info {
    background-color: color-mix(in oklab, rgb(69, 192, 245) 90%, black);
    border-color: color-mix(in oklab, rgb(69, 192, 245) 90%, black);
  }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-active:checked.btn-outline.btn-info {
      background-color: color-mix(in oklab, var(--fallback-in,oklch(var(--in)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-in,oklch(var(--in)/1)) 90%, black);
    }
}
  .checked\:btn-outline:checked.btn-warning.btn-active {
    background-color: color-mix(in oklab, rgb(251, 189, 35) 90%, black);
    border-color: color-mix(in oklab, rgb(251, 189, 35) 90%, black);
  }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-outline:checked.btn-warning.btn-active {
      background-color: color-mix(in oklab, var(--fallback-wa,oklch(var(--wa)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-wa,oklch(var(--wa)/1)) 90%, black);
    }
}
  .checked\:btn-warning:checked.btn-outline.btn-active {
    background-color: color-mix(in oklab, rgb(251, 189, 35) 90%, black);
    border-color: color-mix(in oklab, rgb(251, 189, 35) 90%, black);
  }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-warning:checked.btn-outline.btn-active {
      background-color: color-mix(in oklab, var(--fallback-wa,oklch(var(--wa)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-wa,oklch(var(--wa)/1)) 90%, black);
    }
}
  .checked\:btn-active:checked.btn-outline.btn-warning {
    background-color: color-mix(in oklab, rgb(251, 189, 35) 90%, black);
    border-color: color-mix(in oklab, rgb(251, 189, 35) 90%, black);
  }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-active:checked.btn-outline.btn-warning {
      background-color: color-mix(in oklab, var(--fallback-wa,oklch(var(--wa)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-wa,oklch(var(--wa)/1)) 90%, black);
    }
}
  .checked\:btn-outline:checked.btn-error.btn-active {
    background-color: color-mix(in oklab, rgb(248, 114, 114) 90%, black);
    border-color: color-mix(in oklab, rgb(248, 114, 114) 90%, black);
  }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-outline:checked.btn-error.btn-active {
      background-color: color-mix(in oklab, var(--fallback-er,oklch(var(--er)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-er,oklch(var(--er)/1)) 90%, black);
    }
}
  .checked\:btn-error:checked.btn-outline.btn-active {
    background-color: color-mix(in oklab, rgb(248, 114, 114) 90%, black);
    border-color: color-mix(in oklab, rgb(248, 114, 114) 90%, black);
  }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-error:checked.btn-outline.btn-active {
      background-color: color-mix(in oklab, var(--fallback-er,oklch(var(--er)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-er,oklch(var(--er)/1)) 90%, black);
    }
}
  .checked\:btn-active:checked.btn-outline.btn-error {
    background-color: color-mix(in oklab, rgb(248, 114, 114) 90%, black);
    border-color: color-mix(in oklab, rgb(248, 114, 114) 90%, black);
  }

@supports (color: color-mix(in lch, red, blue)) and (top: var(--f)) {
.checked\:btn-active:checked.btn-outline.btn-error {
      background-color: color-mix(in oklab, var(--fallback-er,oklch(var(--er)/1)) 90%, black);
      border-color: color-mix(in oklab, var(--fallback-er,oklch(var(--er)/1)) 90%, black);
    }
}
}
.checked\:btn-primary:checked {
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
  outline-color: rgb(244, 63, 94);
  outline-color: var(--fallback-p,oklch(var(--p)/1));
}
@supports (color: oklch(0% 0 0)) {
  .checked\:btn-primary:checked {
    --btn-color: var(--p);
  }
  .checked\:btn-secondary:checked {
    --btn-color: var(--s);
  }
  .checked\:btn-accent:checked {
    --btn-color: var(--a);
  }
  .checked\:btn-neutral:checked {
    --btn-color: var(--n);
  }
  .checked\:btn-info:checked {
    --btn-color: var(--in);
  }
  .checked\:btn-success:checked {
    --btn-color: var(--su);
  }
  .checked\:btn-warning:checked {
    --btn-color: var(--wa);
  }
  .checked\:btn-error:checked {
    --btn-color: var(--er);
  }
}
.checked\:btn-secondary:checked {
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)));
  outline-color: rgb(123, 63, 244);
  outline-color: var(--fallback-s,oklch(var(--s)/1));
}
.checked\:btn-accent:checked {
  --tw-text-opacity: 1;
  color: rgb(22, 13, 0);
  color: var(--fallback-ac,oklch(var(--ac)/var(--tw-text-opacity)));
  outline-color: rgb(255, 188, 10);
  outline-color: var(--fallback-a,oklch(var(--a)/1));
}
.checked\:btn-neutral:checked {
  --tw-text-opacity: 1;
  color: rgb(213, 214, 218);
  color: var(--fallback-nc,oklch(var(--nc)/var(--tw-text-opacity)));
  outline-color: rgb(61, 68, 81);
  outline-color: var(--fallback-n,oklch(var(--n)/1));
}
.checked\:btn-info:checked {
  --tw-text-opacity: 1;
  color: rgb(2, 14, 21);
  color: var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)));
  outline-color: rgb(69, 192, 245);
  outline-color: var(--fallback-in,oklch(var(--in)/1));
}
.checked\:btn-success:checked {
  --tw-text-opacity: 1;
  color: rgb(3, 20, 1);
  color: var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)));
  outline-color: rgb(93, 244, 63);
  outline-color: var(--fallback-su,oklch(var(--su)/1));
}
.checked\:btn-warning:checked {
  --tw-text-opacity: 1;
  color: rgb(21, 13, 0);
  color: var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)));
  outline-color: rgb(251, 189, 35);
  outline-color: var(--fallback-wa,oklch(var(--wa)/1));
}
.checked\:btn-error:checked {
  --tw-text-opacity: 1;
  color: rgb(21, 4, 4);
  color: var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)));
  outline-color: rgb(248, 114, 114);
  outline-color: var(--fallback-er,oklch(var(--er)/1));
}
.checked\:btn-active:checked.btn.glass {
  --glass-opacity: 25%;
  --glass-border-opacity: 15%;
}
.checked\:btn-ghost:checked {
  border-width: 1px;
  border-color: transparent;
  background-color: transparent;
  color: currentColor;
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
  outline-color: currentColor;
}
.checked\:btn-ghost:checked.btn-active {
  border-color: transparent;
  background-color: rgba(22, 22, 22, 0.2);
  background-color: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.checked\:btn-active:checked.btn-ghost {
  border-color: transparent;
  background-color: rgba(22, 22, 22, 0.2);
  background-color: var(--fallback-bc,oklch(var(--bc)/0.2));
}
.checked\:btn-link:checked {
  border-color: transparent;
  background-color: transparent;
  --tw-text-opacity: 1;
  color: rgb(244, 63, 94);
  color: var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity)));
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
  outline-color: currentColor;
}
.checked\:btn-link:checked.btn-active {
  border-color: transparent;
  background-color: transparent;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
.checked\:btn-active:checked.btn-link {
  border-color: transparent;
  background-color: transparent;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
.checked\:btn-outline:checked {
  border-color: currentColor;
  background-color: transparent;
  --tw-text-opacity: 1;
  color: rgb(22, 22, 22);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.checked\:btn-outline:checked.btn-active {
  --tw-border-opacity: 1;
  border-color: rgb(22, 22, 22);
  border-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(22, 22, 22);
  background-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-b1,oklch(var(--b1)/var(--tw-text-opacity)));
}
.checked\:btn-active:checked.btn-outline {
  --tw-border-opacity: 1;
  border-color: rgb(22, 22, 22);
  border-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(22, 22, 22);
  background-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-b1,oklch(var(--b1)/var(--tw-text-opacity)));
}
.checked\:btn-outline:checked.btn-primary {
  --tw-text-opacity: 1;
  color: rgb(244, 63, 94);
  color: var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity)));
}
.checked\:btn-primary:checked.btn-outline {
  --tw-text-opacity: 1;
  color: rgb(244, 63, 94);
  color: var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity)));
}
.checked\:btn-outline:checked.btn-primary.btn-active {
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
}
.checked\:btn-primary:checked.btn-outline.btn-active {
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
}
.checked\:btn-active:checked.btn-outline.btn-primary {
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));
}
.checked\:btn-outline:checked.btn-secondary {
  --tw-text-opacity: 1;
  color: rgb(123, 63, 244);
  color: var(--fallback-s,oklch(var(--s)/var(--tw-text-opacity)));
}
.checked\:btn-secondary:checked.btn-outline {
  --tw-text-opacity: 1;
  color: rgb(123, 63, 244);
  color: var(--fallback-s,oklch(var(--s)/var(--tw-text-opacity)));
}
.checked\:btn-outline:checked.btn-secondary.btn-active {
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)));
}
.checked\:btn-secondary:checked.btn-outline.btn-active {
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)));
}
.checked\:btn-active:checked.btn-outline.btn-secondary {
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)));
}
.checked\:btn-outline:checked.btn-accent {
  --tw-text-opacity: 1;
  color: rgb(255, 188, 10);
  color: var(--fallback-a,oklch(var(--a)/var(--tw-text-opacity)));
}
.checked\:btn-accent:checked.btn-outline {
  --tw-text-opacity: 1;
  color: rgb(255, 188, 10);
  color: var(--fallback-a,oklch(var(--a)/var(--tw-text-opacity)));
}
.checked\:btn-outline:checked.btn-accent.btn-active {
  --tw-text-opacity: 1;
  color: rgb(22, 13, 0);
  color: var(--fallback-ac,oklch(var(--ac)/var(--tw-text-opacity)));
}
.checked\:btn-accent:checked.btn-outline.btn-active {
  --tw-text-opacity: 1;
  color: rgb(22, 13, 0);
  color: var(--fallback-ac,oklch(var(--ac)/var(--tw-text-opacity)));
}
.checked\:btn-active:checked.btn-outline.btn-accent {
  --tw-text-opacity: 1;
  color: rgb(22, 13, 0);
  color: var(--fallback-ac,oklch(var(--ac)/var(--tw-text-opacity)));
}
.checked\:btn-outline:checked.btn-success {
  --tw-text-opacity: 1;
  color: rgb(93, 244, 63);
  color: var(--fallback-su,oklch(var(--su)/var(--tw-text-opacity)));
}
.checked\:btn-success:checked.btn-outline {
  --tw-text-opacity: 1;
  color: rgb(93, 244, 63);
  color: var(--fallback-su,oklch(var(--su)/var(--tw-text-opacity)));
}
.checked\:btn-outline:checked.btn-success.btn-active {
  --tw-text-opacity: 1;
  color: rgb(3, 20, 1);
  color: var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)));
}
.checked\:btn-success:checked.btn-outline.btn-active {
  --tw-text-opacity: 1;
  color: rgb(3, 20, 1);
  color: var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)));
}
.checked\:btn-active:checked.btn-outline.btn-success {
  --tw-text-opacity: 1;
  color: rgb(3, 20, 1);
  color: var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)));
}
.checked\:btn-outline:checked.btn-info {
  --tw-text-opacity: 1;
  color: rgb(69, 192, 245);
  color: var(--fallback-in,oklch(var(--in)/var(--tw-text-opacity)));
}
.checked\:btn-info:checked.btn-outline {
  --tw-text-opacity: 1;
  color: rgb(69, 192, 245);
  color: var(--fallback-in,oklch(var(--in)/var(--tw-text-opacity)));
}
.checked\:btn-outline:checked.btn-info.btn-active {
  --tw-text-opacity: 1;
  color: rgb(2, 14, 21);
  color: var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)));
}
.checked\:btn-info:checked.btn-outline.btn-active {
  --tw-text-opacity: 1;
  color: rgb(2, 14, 21);
  color: var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)));
}
.checked\:btn-active:checked.btn-outline.btn-info {
  --tw-text-opacity: 1;
  color: rgb(2, 14, 21);
  color: var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)));
}
.checked\:btn-outline:checked.btn-warning {
  --tw-text-opacity: 1;
  color: rgb(251, 189, 35);
  color: var(--fallback-wa,oklch(var(--wa)/var(--tw-text-opacity)));
}
.checked\:btn-warning:checked.btn-outline {
  --tw-text-opacity: 1;
  color: rgb(251, 189, 35);
  color: var(--fallback-wa,oklch(var(--wa)/var(--tw-text-opacity)));
}
.checked\:btn-outline:checked.btn-warning.btn-active {
  --tw-text-opacity: 1;
  color: rgb(21, 13, 0);
  color: var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)));
}
.checked\:btn-warning:checked.btn-outline.btn-active {
  --tw-text-opacity: 1;
  color: rgb(21, 13, 0);
  color: var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)));
}
.checked\:btn-active:checked.btn-outline.btn-warning {
  --tw-text-opacity: 1;
  color: rgb(21, 13, 0);
  color: var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)));
}
.checked\:btn-outline:checked.btn-error {
  --tw-text-opacity: 1;
  color: rgb(248, 114, 114);
  color: var(--fallback-er,oklch(var(--er)/var(--tw-text-opacity)));
}
.checked\:btn-error:checked.btn-outline {
  --tw-text-opacity: 1;
  color: rgb(248, 114, 114);
  color: var(--fallback-er,oklch(var(--er)/var(--tw-text-opacity)));
}
.checked\:btn-outline:checked.btn-error.btn-active {
  --tw-text-opacity: 1;
  color: rgb(21, 4, 4);
  color: var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)));
}
.checked\:btn-error:checked.btn-outline.btn-active {
  --tw-text-opacity: 1;
  color: rgb(21, 4, 4);
  color: var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)));
}
.checked\:btn-active:checked.btn-outline.btn-error {
  --tw-text-opacity: 1;
  color: rgb(21, 4, 4);
  color: var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)));
}
.checked\:btn-disabled:checked.btn {
  --tw-border-opacity: 0;
  background-color: rgba(61, 68, 81, 0.2);
  background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
  --tw-bg-opacity: 0.2;
  color: rgba(22, 22, 22, 0.2);
  color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
  --tw-text-opacity: 0.2;
}
.checked\:btn-active:checked
  .glass {
  border: none;
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(var(--glass-blur, 40px));
          backdrop-filter: blur(var(--glass-blur, 40px));
  background-color: transparent;
  background-image: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(0, 0, 0, 0) 100%
      ),
      linear-gradient(
        100deg,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(0, 0, 0, 0) 25%
      );
  background-image: linear-gradient(
        135deg,
        rgba(255, 255, 255, var(--glass-opacity, 30%)) 0%,
        rgba(0, 0, 0, 0) 100%
      ),
      linear-gradient(
        var(--glass-reflex-degree, 100deg),
        rgba(255, 255, 255, var(--glass-reflex-opacity, 10%)) 25%,
        rgba(0, 0, 0, 0) 25%
      );
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1) inset,
      0 0 0 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, var(--glass-border-opacity, 10%)) inset,
      0 0 0 2px rgba(0, 0, 0, 0.05);
  text-shadow: 0 1px rgba(0, 0, 0, 0.05);
  text-shadow: 0 1px rgba(0, 0, 0, var(--glass-text-shadow-opacity, 5%));
}
@media (hover: hover) {
  .checked\:btn-active:checked.glass {
    border: none;
    -webkit-backdrop-filter: blur(40px);
            backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(var(--glass-blur, 40px));
            backdrop-filter: blur(var(--glass-blur, 40px));
    background-color: transparent;
    background-image: linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.3) 0%,
          rgba(0, 0, 0, 0) 100%
        ),
        linear-gradient(
          100deg,
          rgba(255, 255, 255, 0.1) 25%,
          rgba(0, 0, 0, 0) 25%
        );
    background-image: linear-gradient(
          135deg,
          rgba(255, 255, 255, var(--glass-opacity, 30%)) 0%,
          rgba(0, 0, 0, 0) 100%
        ),
        linear-gradient(
          var(--glass-reflex-degree, 100deg),
          rgba(255, 255, 255, var(--glass-reflex-opacity, 10%)) 25%,
          rgba(0, 0, 0, 0) 25%
        );
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 0 0 2px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, var(--glass-border-opacity, 10%)) inset,
        0 0 0 2px rgba(0, 0, 0, 0.05);
    text-shadow: 0 1px rgba(0, 0, 0, 0.05);
    text-shadow: 0 1px rgba(0, 0, 0, var(--glass-text-shadow-opacity, 5%));
  }
}
.checked\:badge-xs:checked {
  height: 0.75rem;
  font-size: 0.75rem;
  line-height: .75rem;
  padding-left: 0.313rem;
  padding-right: 0.313rem;
}
.checked\:badge-sm:checked {
  height: 1rem;
  font-size: 0.75rem;
  line-height: 1rem;
  padding-left: 0.438rem;
  padding-right: 0.438rem;
}
.checked\:badge-md:checked {
  height: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding-left: 0.563rem;
  padding-right: 0.563rem;
}
.checked\:badge-lg:checked {
  height: 1.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  padding-left: 0.688rem;
  padding-right: 0.688rem;
}
.checked\:btn-xs:checked {
  height: 1.5rem;
  min-height: 1.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  font-size: 0.75rem;
}
.checked\:btn-sm:checked {
  height: 2rem;
  min-height: 2rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 0.875rem;
}
.checked\:btn-md:checked {
  height: 3rem;
  min-height: 3rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 0.875rem;
}
.checked\:btn-lg:checked {
  height: 4rem;
  min-height: 4rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 1.125rem;
}
.checked\:btn-wide:checked {
  width: 16rem;
}
.checked\:btn-block:checked {
  width: 100%;
}
.checked\:btn-square:checked:where(.btn-xs) {
  height: 1.5rem;
  width: 1.5rem;
  padding: 0px;
}
.btn-square:where(.checked\:btn-xs:checked) {
  height: 1.5rem;
  width: 1.5rem;
  padding: 0px;
}
.checked\:btn-square:checked:where(.btn-sm) {
  height: 2rem;
  width: 2rem;
  padding: 0px;
}
.btn-square:where(.checked\:btn-sm:checked) {
  height: 2rem;
  width: 2rem;
  padding: 0px;
}
.checked\:btn-square:checked:where(.btn-md) {
  height: 3rem;
  width: 3rem;
  padding: 0px;
}
.btn-square:where(.checked\:btn-md:checked) {
  height: 3rem;
  width: 3rem;
  padding: 0px;
}
.checked\:btn-square:checked:where(.btn-lg) {
  height: 4rem;
  width: 4rem;
  padding: 0px;
}
.btn-square:where(.checked\:btn-lg:checked) {
  height: 4rem;
  width: 4rem;
  padding: 0px;
}
.checked\:btn-circle:checked:where(.btn-xs) {
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 9999px;
  padding: 0px;
}
.btn-circle:where(.checked\:btn-xs:checked) {
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 9999px;
  padding: 0px;
}
.checked\:btn-circle:checked:where(.btn-sm) {
  height: 2rem;
  width: 2rem;
  border-radius: 9999px;
  padding: 0px;
}
.btn-circle:where(.checked\:btn-sm:checked) {
  height: 2rem;
  width: 2rem;
  border-radius: 9999px;
  padding: 0px;
}
.checked\:btn-circle:checked:where(.btn-md) {
  height: 3rem;
  width: 3rem;
  border-radius: 9999px;
  padding: 0px;
}
.btn-circle:where(.checked\:btn-md:checked) {
  height: 3rem;
  width: 3rem;
  border-radius: 9999px;
  padding: 0px;
}
.checked\:btn-circle:checked:where(.btn-lg) {
  height: 4rem;
  width: 4rem;
  border-radius: 9999px;
  padding: 0px;
}
.btn-circle:where(.checked\:btn-lg:checked) {
  height: 4rem;
  width: 4rem;
  border-radius: 9999px;
  padding: 0px;
}
.group:hover .group-hover\:badge-secondary {
  --tw-border-opacity: 1;
  border-color: rgb(123, 63, 244);
  border-color: var(--fallback-s,oklch(var(--s)/var(--tw-border-opacity)));
  --tw-bg-opacity: 1;
  background-color: rgb(123, 63, 244);
  background-color: var(--fallback-s,oklch(var(--s)/var(--tw-bg-opacity)));
  --tw-text-opacity: 1;
  color: rgb(255, 255, 255);
  color: var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)));
}
.group:hover .group-hover\:badge-secondary.badge-outline {
  --tw-text-opacity: 1;
  color: rgb(123, 63, 244);
  color: var(--fallback-s,oklch(var(--s)/var(--tw-text-opacity)));
}
@media (min-width: 640px) {
  .sm\:btn-sm {
    height: 2rem;
    min-height: 2rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    font-size: 0.875rem;
  }
  .btn-square:where(.sm\:btn-sm) {
    height: 2rem;
    width: 2rem;
    padding: 0px;
  }
  .btn-circle:where(.sm\:btn-sm) {
    height: 2rem;
    width: 2rem;
    border-radius: 9999px;
    padding: 0px;
  }
}
@media (min-width: 768px) {
  .md\:badge-lg {
    height: 1.5rem;
    font-size: 1rem;
    line-height: 1.5rem;
    padding-left: 0.688rem;
    padding-right: 0.688rem;
  }
  .md\:join-horizontal.join {
    flex-direction: row;
  }
  .md\:join-horizontal.join .join-item:first-child:not(:last-child),.md\:join-horizontal
  .join *:first-child:not(:last-child) .join-item {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: inherit;
    border-top-left-radius: inherit;
  }
  .md\:join-horizontal.join .join-item:last-child:not(:first-child),.md\:join-horizontal
  .join *:last-child:not(:first-child) .join-item {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: inherit;
    border-top-right-radius: inherit;
  }
  .md\:menu-vertical {
    display: flex;
    flex-direction: column;
  }
  .md\:menu-vertical > li:not(.menu-title) > details > ul {
    position: relative;
  }
  .md\:join-horizontal.join > :where(*:not(:first-child)) {
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: -1px;
  }
  .md\:join-horizontal.join > :where(*:not(:first-child)):is(.btn) {
    margin-left: calc(1px * -1);
    margin-left: calc(var(--border-btn) * -1);
  }
  .md\:menu-vertical > li:not(.menu-title) > details > ul {
    margin-left: 1rem;
    margin-top: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-right: 0px;
  }
}
.selection\:bg-primary *::-moz-selection {
  --tw-bg-opacity: 1;
  background-color: rgb(244, 63, 94);
  background-color: var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));
}
.selection\:bg-primary *::selection {
  --tw-bg-opacity: 1;
  background-color: rgb(244, 63, 94);
  background-color: var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));
}
.selection\:text-white *::-moz-selection {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.selection\:text-white *::selection {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.selection\:bg-primary::-moz-selection {
  --tw-bg-opacity: 1;
  background-color: rgb(244, 63, 94);
  background-color: var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));
}
.selection\:bg-primary::selection {
  --tw-bg-opacity: 1;
  background-color: rgb(244, 63, 94);
  background-color: var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));
}
.selection\:text-white::-moz-selection {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.selection\:text-white::selection {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.before\:absolute::before {
  content: var(--tw-content);
  position: absolute;
}
.before\:-inset-4::before {
  content: var(--tw-content);
  top: -1rem;
  right: -1rem;
  bottom: -1rem;
  left: -1rem;
}
.before\:block::before {
  content: var(--tw-content);
  display: block;
}
.before\:skew-y-6::before {
  content: var(--tw-content);
  --tw-skew-y: 6deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(6deg) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.before\:border-8::before {
  content: var(--tw-content);
  border-width: 8px;
}
.before\:border-\[\#7b3ff4\]::before {
  content: var(--tw-content);
  --tw-border-opacity: 1;
  border-color: rgba(123, 63, 244, 1);
  border-color: rgba(123, 63, 244, var(--tw-border-opacity));
}
.before\:bg-pink-500::before {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgba(236, 72, 153, 1);
  background-color: rgba(236, 72, 153, var(--tw-bg-opacity));
}
.visited\:text-purple-600:visited {
  color: rgb(147, 51, 234 );
}
.hover\:-translate-y-2:hover {
  --tw-translate-y: -0.5rem;
  transform: translate(var(--tw-translate-x), -0.5rem) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:translate-y-2:hover {
  --tw-translate-y: 0.5rem;
  transform: translate(var(--tw-translate-x), 0.5rem) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:scale-105:hover {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(1.05) scaleY(1.05);
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:bg-\[\#0088cc\]\/90:hover {
  background-color: rgba(0, 136, 204, 0.9);
}
.hover\:bg-\[\#25D366\]\/90:hover {
  background-color: rgba(37, 211, 102, 0.9);
}
.hover\:bg-\[\#3b5998\]\/90:hover {
  background-color: rgba(59, 89, 152, 0.9);
}
.hover\:bg-base-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(232, 232, 232);
  background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));
}
.hover\:bg-gray-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, 1);
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
}
.hover\:bg-gray-50\/50:hover {
  background-color: rgba(249, 250, 251, 0.5);
}
.hover\:text-blue-800:hover {
  --tw-text-opacity: 1;
  color: rgba(30, 64, 175, 1);
  color: rgba(30, 64, 175, var(--tw-text-opacity));
}
.hover\:text-gray-900:hover {
  --tw-text-opacity: 1;
  color: rgba(17, 24, 39, 1);
  color: rgba(17, 24, 39, var(--tw-text-opacity));
}
.hover\:text-primary:hover {
  --tw-text-opacity: 1;
  color: rgb(244, 63, 94);
  color: var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity)));
}
.hover\:underline:hover {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
.hover\:shadow:hover {
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.hover\:shadow-lg:hover {
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.focus\:border-primary:focus {
  --tw-border-opacity: 1;
  border-color: rgb(244, 63, 94);
  border-color: var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)));
}
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color), var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
}
.focus\:ring-4:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color), var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
}
.focus\:ring-\[\#3b5998\]\/50:focus {
  --tw-ring-color: rgba(59, 89, 152, 0.5);
}
.focus\:ring-base-300:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-ring-opacity)));
}
.focus\:ring-gray-200:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity));
}
.focus\:ring-gray-300:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity));
}
.focus\:ring-primary:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: var(--fallback-p,oklch(var(--p)/var(--tw-ring-opacity)));
}
.group:last-child .group-last\:translate-x-0 {
  --tw-translate-x: 0px;
  transform: translate(0px, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:rotate-\[270deg\] {
  --tw-rotate: 270deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(270deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, 1);
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
}
.group:hover .group-hover\:text-secondary {
  --tw-text-opacity: 1;
  color: rgb(123, 63, 244);
  color: var(--fallback-s,oklch(var(--s)/var(--tw-text-opacity)));
}
.group:hover .group-hover\:blur-sm {
  --tw-blur: blur(4px);
  filter: blur(4px) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.dark\:divide-gray-600:is([data-theme="dark"] *) > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgba(75, 85, 99, 1);
  border-color: rgba(75, 85, 99, var(--tw-divide-opacity));
}
.dark\:border-gray-500:is([data-theme="dark"] *) {
  --tw-border-opacity: 1;
  border-color: rgba(107, 114, 128, 1);
  border-color: rgba(107, 114, 128, var(--tw-border-opacity));
}
.dark\:border-gray-600:is([data-theme="dark"] *) {
  --tw-border-opacity: 1;
  border-color: rgba(75, 85, 99, 1);
  border-color: rgba(75, 85, 99, var(--tw-border-opacity));
}
.dark\:border-gray-700:is([data-theme="dark"] *) {
  --tw-border-opacity: 1;
  border-color: rgba(55, 65, 81, 1);
  border-color: rgba(55, 65, 81, var(--tw-border-opacity));
}
.dark\:bg-base-300:is([data-theme="dark"] *) {
  --tw-bg-opacity: 1;
  background-color: rgb(209, 209, 209);
  background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
}
.dark\:bg-blue-800:is([data-theme="dark"] *) {
  --tw-bg-opacity: 1;
  background-color: rgba(30, 64, 175, 1);
  background-color: rgba(30, 64, 175, var(--tw-bg-opacity));
}
.dark\:bg-blue-900:is([data-theme="dark"] *) {
  --tw-bg-opacity: 1;
  background-color: rgba(30, 58, 138, 1);
  background-color: rgba(30, 58, 138, var(--tw-bg-opacity));
}
.dark\:bg-gray-600:is([data-theme="dark"] *) {
  --tw-bg-opacity: 1;
  background-color: rgba(75, 85, 99, 1);
  background-color: rgba(75, 85, 99, var(--tw-bg-opacity));
}
.dark\:bg-gray-700:is([data-theme="dark"] *) {
  --tw-bg-opacity: 1;
  background-color: rgba(55, 65, 81, 1);
  background-color: rgba(55, 65, 81, var(--tw-bg-opacity));
}
.dark\:bg-gray-900:is([data-theme="dark"] *) {
  --tw-bg-opacity: 1;
  background-color: rgba(17, 24, 39, 1);
  background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
}
.dark\:bg-green-800:is([data-theme="dark"] *) {
  --tw-bg-opacity: 1;
  background-color: rgba(22, 101, 52, 1);
  background-color: rgba(22, 101, 52, var(--tw-bg-opacity));
}
.dark\:bg-orange-700:is([data-theme="dark"] *) {
  --tw-bg-opacity: 1;
  background-color: rgba(194, 65, 12, 1);
  background-color: rgba(194, 65, 12, var(--tw-bg-opacity));
}
.dark\:bg-red-800:is([data-theme="dark"] *) {
  --tw-bg-opacity: 1;
  background-color: rgba(153, 27, 27, 1);
  background-color: rgba(153, 27, 27, var(--tw-bg-opacity));
}
.dark\:bg-slate-800:is([data-theme="dark"] *) {
  --tw-bg-opacity: 1;
  background-color: rgba(30, 41, 59, 1);
  background-color: rgba(30, 41, 59, var(--tw-bg-opacity));
}
.dark\:text-base-300:is([data-theme="dark"] *) {
  --tw-text-opacity: 1;
  color: rgb(209, 209, 209);
  color: var(--fallback-b3,oklch(var(--b3)/var(--tw-text-opacity)));
}
.dark\:text-blue-200:is([data-theme="dark"] *) {
  --tw-text-opacity: 1;
  color: rgba(191, 219, 254, 1);
  color: rgba(191, 219, 254, var(--tw-text-opacity));
}
.dark\:text-blue-500:is([data-theme="dark"] *) {
  --tw-text-opacity: 1;
  color: rgba(59, 130, 246, 1);
  color: rgba(59, 130, 246, var(--tw-text-opacity));
}
.dark\:text-gray-200:is([data-theme="dark"] *) {
  --tw-text-opacity: 1;
  color: rgba(229, 231, 235, 1);
  color: rgba(229, 231, 235, var(--tw-text-opacity));
}
.dark\:text-gray-300:is([data-theme="dark"] *) {
  --tw-text-opacity: 1;
  color: rgba(209, 213, 219, 1);
  color: rgba(209, 213, 219, var(--tw-text-opacity));
}
.dark\:text-gray-400:is([data-theme="dark"] *) {
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-text-opacity));
}
.dark\:text-gray-500:is([data-theme="dark"] *) {
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, 1);
  color: rgba(107, 114, 128, var(--tw-text-opacity));
}
.dark\:text-green-200:is([data-theme="dark"] *) {
  --tw-text-opacity: 1;
  color: rgba(187, 247, 208, 1);
  color: rgba(187, 247, 208, var(--tw-text-opacity));
}
.dark\:text-orange-200:is([data-theme="dark"] *) {
  --tw-text-opacity: 1;
  color: rgba(254, 215, 170, 1);
  color: rgba(254, 215, 170, var(--tw-text-opacity));
}
.dark\:text-red-200:is([data-theme="dark"] *) {
  --tw-text-opacity: 1;
  color: rgba(254, 202, 202, 1);
  color: rgba(254, 202, 202, var(--tw-text-opacity));
}
.dark\:text-white:is([data-theme="dark"] *) {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.dark\:placeholder-gray-400:is([data-theme="dark"] *)::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-placeholder-opacity));
}
.dark\:placeholder-gray-400:is([data-theme="dark"] *)::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-placeholder-opacity));
}
.dark\:ring-gray-900:is([data-theme="dark"] *) {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity));
}
.dark\:hover\:bg-gray-600:hover:is([data-theme="dark"] *) {
  --tw-bg-opacity: 1;
  background-color: rgba(75, 85, 99, 1);
  background-color: rgba(75, 85, 99, var(--tw-bg-opacity));
}
.dark\:hover\:text-white:hover:is([data-theme="dark"] *) {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.dark\:focus\:border-primary:focus:is([data-theme="dark"] *) {
  --tw-border-opacity: 1;
  border-color: rgb(244, 63, 94);
  border-color: var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)));
}
.dark\:focus\:ring-\[\#3b5998\]\/55:focus:is([data-theme="dark"] *) {
  --tw-ring-color: rgba(59, 89, 152, 0.55);
}
.dark\:focus\:ring-primary:focus:is([data-theme="dark"] *) {
  --tw-ring-opacity: 1;
  --tw-ring-color: var(--fallback-p,oklch(var(--p)/var(--tw-ring-opacity)));
}
@media (min-width: 640px) {
  .sm\:order-last {
    order: 9999;
  }
  .sm\:-m-4 {
    margin: -1rem;
  }
  .sm\:mb-0 {
    margin-bottom: 0px;
  }
  .sm\:ml-6 {
    margin-left: 1.5rem;
  }
  .sm\:ml-auto {
    margin-left: auto;
  }
  .sm\:mr-4 {
    margin-right: 1rem;
  }
  .sm\:mt-0 {
    margin-top: 0px;
  }
  .sm\:flex {
    display: flex;
  }
  .sm\:w-1\/2 {
    width: 50%;
  }
  .sm\:flex-row {
    flex-direction: row;
  }
  .sm\:items-center {
    align-items: center;
  }
  .sm\:justify-start {
    justify-content: flex-start;
  }
  .sm\:px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .sm\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .sm\:pl-6 {
    padding-left: 1.5rem;
  }
  .sm\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .sm\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
@media (min-width: 768px) {
  .md\:absolute {
    position: absolute;
  }
  .md\:top-\[126px\] {
    top: 126px;
  }
  .md\:order-2 {
    order: 2;
  }
  .md\:order-3 {
    order: 3;
  }
  .md\:order-4 {
    order: 4;
  }
  .md\:order-5 {
    order: 5;
  }
  .md\:col-span-1 {
    grid-column: span 1 / span 1;
  }
  .md\:col-start-2 {
    grid-column-start: 2;
  }
  .md\:col-end-2 {
    grid-column-end: 2;
  }
  .md\:row-start-1 {
    grid-row-start: 1;
  }
  .md\:ml-2 {
    margin-left: 0.5rem;
  }
  .md\:mt-0 {
    margin-top: 0px;
  }
  .md\:box-content {
    box-sizing: content-box;
  }
  .md\:block {
    display: block;
  }
  .md\:inline-block {
    display: inline-block;
  }
  .md\:flex {
    display: flex;
  }
  .md\:hidden {
    display: none;
  }
  .md\:h-6 {
    height: 1.5rem;
  }
  .md\:h-auto {
    height: auto;
  }
  .md\:w-1\/2 {
    width: 50%;
  }
  .md\:w-1\/3 {
    width: 33.333333%;
  }
  .md\:w-1\/4 {
    width: 25%;
  }
  .md\:w-2\/3 {
    width: 66.666667%;
  }
  .md\:w-2\/5 {
    width: 40%;
  }
  .md\:w-3\/4 {
    width: 75%;
  }
  .md\:w-3\/5 {
    width: 60%;
  }
  .md\:w-44 {
    width: 11rem;
  }
  .md\:w-6 {
    width: 1.5rem;
  }
  .md\:w-auto {
    width: auto;
  }
  .md\:w-full {
    width: 100%;
  }
  .md\:min-w-\[25\%\] {
    min-width: 25%;
  }
  .md\:max-w-4xl {
    max-width: 56rem;
  }
  .md\:flex-1 {
    flex: 1 1 0%;
  }
  .md\:flex-grow {
    flex-grow: 1;
  }
  .md\:grow-0 {
    flex-grow: 0;
  }
  .md\:columns-2 {
    -moz-columns: 2;
         columns: 2;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:items-end {
    align-items: flex-end;
  }
  .md\:items-center {
    align-items: center;
  }
  .md\:justify-start {
    justify-content: flex-start;
  }
  .md\:justify-center {
    justify-content: center;
  }
  .md\:justify-between {
    justify-content: space-between;
  }
  .md\:justify-around {
    justify-content: space-around;
  }
  .md\:space-x-3 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.75rem * 0);
    margin-right: calc(0.75rem * var(--tw-space-x-reverse));
    margin-left: calc(0.75rem * (1 - 0));
    margin-left: calc(0.75rem * (1 - var(--tw-space-x-reverse)));
    margin-left: calc(0.75rem * calc(1 - 0));
    margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
  }
  .md\:space-x-4 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * 0);
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * (1 - 0));
    margin-left: calc(1rem * (1 - var(--tw-space-x-reverse)));
    margin-left: calc(1rem * calc(1 - 0));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
  }
  .md\:space-x-8 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(2rem * 0);
    margin-right: calc(2rem * var(--tw-space-x-reverse));
    margin-left: calc(2rem * (1 - 0));
    margin-left: calc(2rem * (1 - var(--tw-space-x-reverse)));
    margin-left: calc(2rem * calc(1 - 0));
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
  }
  .md\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * (1 - 0));
    margin-top: calc(0px * (1 - var(--tw-space-y-reverse)));
    margin-top: calc(0px * calc(1 - 0));
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * 0);
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }
  .md\:pb-40 {
    padding-bottom: 10rem;
  }
  .md\:pl-8 {
    padding-left: 2rem;
  }
  .md\:pr-12 {
    padding-right: 3rem;
  }
  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .md\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .md\:font-medium {
    font-weight: 500;
  }
}
@media (min-width: 1024px) {
  .lg\:col-span-5 {
    grid-column: span 5 / span 5;
  }
  .lg\:col-span-7 {
    grid-column: span 7 / span 7;
  }
  .lg\:mb-0 {
    margin-bottom: 0px;
  }
  .lg\:mb-8 {
    margin-bottom: 2rem;
  }
  .lg\:mt-0 {
    margin-top: 0px;
  }
  .lg\:flex {
    display: flex;
  }
  .lg\:aspect-video {
    aspect-ratio: 16 / 9;
  }
  .lg\:w-1\/2 {
    width: 50%;
  }
  .lg\:w-1\/3 {
    width: 33.333333%;
  }
  .lg\:w-1\/4 {
    width: 25%;
  }
  .lg\:w-2\/3 {
    width: 66.666667%;
  }
  .lg\:columns-3 {
    -moz-columns: 3;
         columns: 3;
  }
  .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:flex-row {
    flex-direction: row;
  }
  .lg\:gap-8 {
    gap: 2rem;
  }
  .lg\:space-x-8 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(2rem * 0);
    margin-right: calc(2rem * var(--tw-space-x-reverse));
    margin-left: calc(2rem * (1 - 0));
    margin-left: calc(2rem * (1 - var(--tw-space-x-reverse)));
    margin-left: calc(2rem * calc(1 - 0));
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
  }
  .lg\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .lg\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .lg\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }
  .lg\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 1280px) {
  .xl\:mx-12 {
    margin-left: 3rem;
    margin-right: 3rem;
  }
  .xl\:block {
    display: block;
  }
  .xl\:w-1\/2 {
    width: 50%;
  }
  .xl\:w-1\/4 {
    width: 25%;
  }
  .xl\:max-w-5xl {
    max-width: 64rem;
  }
  .xl\:flex-row {
    flex-direction: row;
  }
  .xl\:items-start {
    align-items: flex-start;
  }
  .xl\:gap-0 {
    gap: 0px;
  }
  .xl\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .xl\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  .xl\:hover\:-translate-x-2:hover {
    --tw-translate-x: -0.5rem;
    transform: translate(-0.5rem, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .xl\:hover\:-translate-y-2:hover {
    --tw-translate-y: -0.5rem;
    transform: translate(var(--tw-translate-x), -0.5rem) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .xl\:hover\:translate-x-2:hover {
    --tw-translate-x: 0.5rem;
    transform: translate(0.5rem, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .xl\:hover\:translate-y-0:hover {
    --tw-translate-y: 0px;
    transform: translate(var(--tw-translate-x), 0px) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
}
@media (min-width: 1536px) {
  .\32xl\:max-w-6xl {
    max-width: 72rem;
  }
}
.\[\&\>div\>span\:first-child\]\:flex>div>span:first-child {
  display: flex;
}
.\[\&\>div\>span\:first-child\]\:w-1\/3>div>span:first-child {
  width: 33.333333%;
}
.\[\&\>div\>span\:first-child\]\:items-center>div>span:first-child {
  align-items: center;
}
.\[\&\>div\>span\:first-child\]\:justify-end>div>span:first-child {
  justify-content: flex-end;
}
.\[\&\>div\>span\:first-child\]\:gap-x-2>div>span:first-child {
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.\[\&\>div\>span\:first-child\]\:font-semibold>div>span:first-child {
  font-weight: 600;
}
.\[\&\>div\>span\:last-child\]\:grow>div>span:last-child {
  flex-grow: 1;
}
.\[\&\>div\>span\:last-child\]\:text-center>div>span:last-child {
  text-align: center;
}
.\[\&\>div\]\:flex>div {
  display: flex;
}
.\[\&\>div\]\:flex-row>div {
  flex-direction: row;
}
.\[\&\>div\]\:items-center>div {
  align-items: center;
}
.\[\&\>div\]\:justify-between>div {
  justify-content: space-between;
}
.\[\&\>div\]\:gap-x-2>div {
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.\[\&\>div\]\:py-2>div {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.\[\&\>p\]\:w-1\/2>p {
  width: 50%;
}
.\[\&\>p\]\:px-8>p {
  padding-left: 2rem;
  padding-right: 2rem;
}
.\[\&\>p\]\:pt-4>p {
  padding-top: 1rem;
}
.\[\&\>span\]\:py-2>span {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.\[\&_td\]\:px-0 td {
  padding-left: 0px;
  padding-right: 0px;
}

