/*
 * HYBRID TAILWIND CSS - Admin & Patient Portal Styles
 * 
 * MIGRATION STRATEGY:
 * This file is designed to coexist safely with legacy CSS (styles.css, jqstyles.css, etc.)
 * 
 * LOADING ORDER (critical for no breakage):
 * 1. tailwind.min.css (this file) - loads FIRST
 * 2. styles.min.css - legacy styles override Tailwind when needed
 * 3. Page-specific CSS - highest priority
 * 
 * USAGE:
 * - Add Tailwind classes alongside existing classes
 * - Legacy CSS will win conflicts (by design)
 * - Gradually remove legacy classes once confident
 * 
 * BUILD COMMAND:
 * npm run build:tailwind  (one-time build)
 * npm run watch:tailwind  (auto-rebuild on changes)
 */

*, ::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-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --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-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --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:  ;
}

/* ========================================
     * BUTTON COMPONENTS (Patient Portal Style)
     * ======================================== */

.btn-green {
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
  border-radius: 0.375rem;
  --tw-bg-opacity: 1;
  background-color: rgb(73 181 168 / var(--tw-bg-opacity, 1));
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: all;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-green:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(63 156 144 / var(--tw-bg-opacity, 1));
}

.btn-green-sm {
  display: block;
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
  border-radius: 0.375rem;
  --tw-bg-opacity: 1;
  background-color: rgb(73 181 168 / var(--tw-bg-opacity, 1));
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: all;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-green-sm:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(63 156 144 / var(--tw-bg-opacity, 1));
}

.btn-green-outline {
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
  border-radius: 0.375rem;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(73 181 168 / var(--tw-border-opacity, 1));
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(73 181 168 / var(--tw-text-opacity, 1));
  transition-property: all;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-green-outline:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(73 181 168 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.btn-green-outline-sm {
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
  border-radius: 0.375rem;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(73 181 168 / var(--tw-border-opacity, 1));
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(73 181 168 / var(--tw-text-opacity, 1));
  transition-property: all;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-green-outline-sm:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(73 181 168 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.btn-blue {
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
  border-radius: 0.375rem;
  --tw-bg-opacity: 1;
  background-color: rgb(26 33 62 / var(--tw-bg-opacity, 1));
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: all;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-blue:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(15 18 31 / var(--tw-bg-opacity, 1));
}

.btn-blue-outline {
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
  border-radius: 0.375rem;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(26 33 62 / var(--tw-border-opacity, 1));
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(26 33 62 / var(--tw-text-opacity, 1));
  transition-property: all;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-blue-outline:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(26 33 62 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.btn-red {
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
  border-radius: 0.375rem;
  --tw-bg-opacity: 1;
  background-color: rgb(234 101 101 / var(--tw-bg-opacity, 1));
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: all;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-red:hover {
  --tw-bg-opacity: 0.95;
}

.btn-red-outline {
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
  border-radius: 0.375rem;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(234 101 101 / var(--tw-border-opacity, 1));
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(234 101 101 / var(--tw-text-opacity, 1));
  transition-property: all;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-red-outline:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(234 101 101 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

/* ========================================
     * FORM ELEMENTS
     * ======================================== */

.\!disabled {
  background-color: #e7e7e7 !important;
  color: #bdbaba !important;
  cursor: not-allowed !important;
}

.disabled {
  background-color: #e7e7e7;
  color: #bdbaba;
  cursor: not-allowed;
}

.\!disabled:hover {
  background-color: #e7e7e7 !important;
  color: #bdbaba !important;
  cursor: not-allowed !important;
}

.disabled:hover {
  background-color: #e7e7e7;
  color: #bdbaba;
  cursor: not-allowed;
}

.form-checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: var(--ring-offset-width, 2px);
  background-color: #fff;
  border-color: #d1d5db;
  border-width: 1px;
  border-radius: 0.25rem;
}

.form-checkbox:focus {
  outline: none;
  --ring-offset-shadow: 0 0 0 var(--ring-offset-width, 2px) var(--ring-offset-color, #fff);
  --ring-shadow: 0 0 0 calc(2px + var(--ring-offset-width, 2px)) var(--ring-color, #2563eb);
  box-shadow: var(--ring-offset-shadow), var(--ring-shadow), 0 0 #0000;
  box-shadow: var(--ring-offset-shadow), var(--ring-shadow), var(--box-shadow, 0 0 #0000);
}

.form-checkbox:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.form-checkbox:checked:hover {
  border-color: transparent;
  background-color: currentColor;
}

.form-checkbox:checked:focus {
  border-color: transparent;
  background-color: currentColor;
}

.form-checkbox:indeterminate {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.form-checkbox:indeterminate:hover {
  border-color: transparent;
  background-color: currentColor;
}

.form-checkbox:indeterminate:focus {
  border-color: transparent;
  background-color: currentColor;
}

.form-radio {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  flex-shrink: 0;
  border-radius: 100%;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #d1d5db;
  border-width: 1px;
}

.form-radio:focus {
  outline: none;
  --ring-offset-shadow: 0 0 0 var(--ring-offset-width, 2px) var(--ring-offset-color, #fff);
  --ring-shadow: 0 0 0 calc(2px + var(--ring-offset-width, 2px)) var(--ring-color, #2563eb);
  box-shadow: var(--ring-offset-shadow), var(--ring-shadow), 0 0 #0000;
  box-shadow: var(--ring-offset-shadow), var(--ring-shadow), var(--box-shadow, 0 0 #0000);
}

.form-radio:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.form-radio:checked:hover {
  border-color: transparent;
  background-color: currentColor;
}

.form-radio:checked:focus {
  border-color: transparent;
  background-color: currentColor;
}

.pointer-events-none {
  pointer-events: none;
}

.pointer-events-auto {
  pointer-events: auto;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.-inset-0 {
  inset: -0px;
}

.-inset-0\.5 {
  inset: -0.125rem;
}

.-inset-1 {
  inset: -0.25rem;
}

.-inset-1\.5 {
  inset: -0.375rem;
}

.-inset-1\/2 {
  inset: -50%;
}

.-inset-1\/3 {
  inset: -33.333333%;
}

.-inset-1\/4 {
  inset: -25%;
}

.-inset-10 {
  inset: -2.5rem;
}

.-inset-11 {
  inset: -2.75rem;
}

.-inset-12 {
  inset: -3rem;
}

.-inset-14 {
  inset: -3.5rem;
}

.-inset-16 {
  inset: -4rem;
}

.-inset-2 {
  inset: -0.5rem;
}

.-inset-2\.5 {
  inset: -0.625rem;
}

.-inset-2\/3 {
  inset: -66.666667%;
}

.-inset-2\/4 {
  inset: -50%;
}

.-inset-20 {
  inset: -5rem;
}

.-inset-24 {
  inset: -6rem;
}

.-inset-28 {
  inset: -7rem;
}

.-inset-3 {
  inset: -0.75rem;
}

.-inset-3\.5 {
  inset: -0.875rem;
}

.-inset-3\/4 {
  inset: -75%;
}

.-inset-32 {
  inset: -8rem;
}

.-inset-36 {
  inset: -9rem;
}

.-inset-4 {
  inset: -1rem;
}

.-inset-40 {
  inset: -10rem;
}

.-inset-44 {
  inset: -11rem;
}

.-inset-48 {
  inset: -12rem;
}

.-inset-5 {
  inset: -1.25rem;
}

.-inset-52 {
  inset: -13rem;
}

.-inset-56 {
  inset: -14rem;
}

.-inset-6 {
  inset: -1.5rem;
}

.-inset-60 {
  inset: -15rem;
}

.-inset-64 {
  inset: -16rem;
}

.-inset-7 {
  inset: -1.75rem;
}

.-inset-72 {
  inset: -18rem;
}

.-inset-8 {
  inset: -2rem;
}

.-inset-80 {
  inset: -20rem;
}

.-inset-9 {
  inset: -2.25rem;
}

.-inset-96 {
  inset: -24rem;
}

.-inset-full {
  inset: -100%;
}

.-inset-px {
  inset: -1px;
}

.inset-0 {
  inset: 0px;
}

.inset-0\.5 {
  inset: 0.125rem;
}

.inset-1 {
  inset: 0.25rem;
}

.inset-1\.5 {
  inset: 0.375rem;
}

.inset-1\/2 {
  inset: 50%;
}

.inset-1\/3 {
  inset: 33.333333%;
}

.inset-1\/4 {
  inset: 25%;
}

.inset-10 {
  inset: 2.5rem;
}

.inset-11 {
  inset: 2.75rem;
}

.inset-12 {
  inset: 3rem;
}

.inset-14 {
  inset: 3.5rem;
}

.inset-16 {
  inset: 4rem;
}

.inset-2 {
  inset: 0.5rem;
}

.inset-2\.5 {
  inset: 0.625rem;
}

.inset-2\/3 {
  inset: 66.666667%;
}

.inset-2\/4 {
  inset: 50%;
}

.inset-20 {
  inset: 5rem;
}

.inset-24 {
  inset: 6rem;
}

.inset-28 {
  inset: 7rem;
}

.inset-3 {
  inset: 0.75rem;
}

.inset-3\.5 {
  inset: 0.875rem;
}

.inset-3\/4 {
  inset: 75%;
}

.inset-32 {
  inset: 8rem;
}

.inset-36 {
  inset: 9rem;
}

.inset-4 {
  inset: 1rem;
}

.inset-40 {
  inset: 10rem;
}

.inset-44 {
  inset: 11rem;
}

.inset-48 {
  inset: 12rem;
}

.inset-5 {
  inset: 1.25rem;
}

.inset-52 {
  inset: 13rem;
}

.inset-56 {
  inset: 14rem;
}

.inset-6 {
  inset: 1.5rem;
}

.inset-60 {
  inset: 15rem;
}

.inset-64 {
  inset: 16rem;
}

.inset-7 {
  inset: 1.75rem;
}

.inset-72 {
  inset: 18rem;
}

.inset-8 {
  inset: 2rem;
}

.inset-80 {
  inset: 20rem;
}

.inset-9 {
  inset: 2.25rem;
}

.inset-96 {
  inset: 24rem;
}

.inset-auto {
  inset: auto;
}

.inset-full {
  inset: 100%;
}

.inset-px {
  inset: 1px;
}

.-inset-x-0 {
  left: -0px;
  right: -0px;
}

.-inset-x-0\.5 {
  left: -0.125rem;
  right: -0.125rem;
}

.-inset-x-1 {
  left: -0.25rem;
  right: -0.25rem;
}

.-inset-x-1\.5 {
  left: -0.375rem;
  right: -0.375rem;
}

.-inset-x-1\/2 {
  left: -50%;
  right: -50%;
}

.-inset-x-1\/3 {
  left: -33.333333%;
  right: -33.333333%;
}

.-inset-x-1\/4 {
  left: -25%;
  right: -25%;
}

.-inset-x-10 {
  left: -2.5rem;
  right: -2.5rem;
}

.-inset-x-11 {
  left: -2.75rem;
  right: -2.75rem;
}

.-inset-x-12 {
  left: -3rem;
  right: -3rem;
}

.-inset-x-14 {
  left: -3.5rem;
  right: -3.5rem;
}

.-inset-x-16 {
  left: -4rem;
  right: -4rem;
}

.-inset-x-2 {
  left: -0.5rem;
  right: -0.5rem;
}

.-inset-x-2\.5 {
  left: -0.625rem;
  right: -0.625rem;
}

.-inset-x-2\/3 {
  left: -66.666667%;
  right: -66.666667%;
}

.-inset-x-2\/4 {
  left: -50%;
  right: -50%;
}

.-inset-x-20 {
  left: -5rem;
  right: -5rem;
}

.-inset-x-24 {
  left: -6rem;
  right: -6rem;
}

.-inset-x-28 {
  left: -7rem;
  right: -7rem;
}

.-inset-x-3 {
  left: -0.75rem;
  right: -0.75rem;
}

.-inset-x-3\.5 {
  left: -0.875rem;
  right: -0.875rem;
}

.-inset-x-3\/4 {
  left: -75%;
  right: -75%;
}

.-inset-x-32 {
  left: -8rem;
  right: -8rem;
}

.-inset-x-36 {
  left: -9rem;
  right: -9rem;
}

.-inset-x-4 {
  left: -1rem;
  right: -1rem;
}

.-inset-x-40 {
  left: -10rem;
  right: -10rem;
}

.-inset-x-44 {
  left: -11rem;
  right: -11rem;
}

.-inset-x-48 {
  left: -12rem;
  right: -12rem;
}

.-inset-x-5 {
  left: -1.25rem;
  right: -1.25rem;
}

.-inset-x-52 {
  left: -13rem;
  right: -13rem;
}

.-inset-x-56 {
  left: -14rem;
  right: -14rem;
}

.-inset-x-6 {
  left: -1.5rem;
  right: -1.5rem;
}

.-inset-x-60 {
  left: -15rem;
  right: -15rem;
}

.-inset-x-64 {
  left: -16rem;
  right: -16rem;
}

.-inset-x-7 {
  left: -1.75rem;
  right: -1.75rem;
}

.-inset-x-72 {
  left: -18rem;
  right: -18rem;
}

.-inset-x-8 {
  left: -2rem;
  right: -2rem;
}

.-inset-x-80 {
  left: -20rem;
  right: -20rem;
}

.-inset-x-9 {
  left: -2.25rem;
  right: -2.25rem;
}

.-inset-x-96 {
  left: -24rem;
  right: -24rem;
}

.-inset-x-full {
  left: -100%;
  right: -100%;
}

.-inset-x-px {
  left: -1px;
  right: -1px;
}

.-inset-y-0 {
  top: -0px;
  bottom: -0px;
}

.-inset-y-0\.5 {
  top: -0.125rem;
  bottom: -0.125rem;
}

.-inset-y-1 {
  top: -0.25rem;
  bottom: -0.25rem;
}

.-inset-y-1\.5 {
  top: -0.375rem;
  bottom: -0.375rem;
}

.-inset-y-1\/2 {
  top: -50%;
  bottom: -50%;
}

.-inset-y-1\/3 {
  top: -33.333333%;
  bottom: -33.333333%;
}

.-inset-y-1\/4 {
  top: -25%;
  bottom: -25%;
}

.-inset-y-10 {
  top: -2.5rem;
  bottom: -2.5rem;
}

.-inset-y-11 {
  top: -2.75rem;
  bottom: -2.75rem;
}

.-inset-y-12 {
  top: -3rem;
  bottom: -3rem;
}

.-inset-y-14 {
  top: -3.5rem;
  bottom: -3.5rem;
}

.-inset-y-16 {
  top: -4rem;
  bottom: -4rem;
}

.-inset-y-2 {
  top: -0.5rem;
  bottom: -0.5rem;
}

.-inset-y-2\.5 {
  top: -0.625rem;
  bottom: -0.625rem;
}

.-inset-y-2\/3 {
  top: -66.666667%;
  bottom: -66.666667%;
}

.-inset-y-2\/4 {
  top: -50%;
  bottom: -50%;
}

.-inset-y-20 {
  top: -5rem;
  bottom: -5rem;
}

.-inset-y-24 {
  top: -6rem;
  bottom: -6rem;
}

.-inset-y-28 {
  top: -7rem;
  bottom: -7rem;
}

.-inset-y-3 {
  top: -0.75rem;
  bottom: -0.75rem;
}

.-inset-y-3\.5 {
  top: -0.875rem;
  bottom: -0.875rem;
}

.-inset-y-3\/4 {
  top: -75%;
  bottom: -75%;
}

.-inset-y-32 {
  top: -8rem;
  bottom: -8rem;
}

.-inset-y-36 {
  top: -9rem;
  bottom: -9rem;
}

.-inset-y-4 {
  top: -1rem;
  bottom: -1rem;
}

.-inset-y-40 {
  top: -10rem;
  bottom: -10rem;
}

.-inset-y-44 {
  top: -11rem;
  bottom: -11rem;
}

.-inset-y-48 {
  top: -12rem;
  bottom: -12rem;
}

.-inset-y-5 {
  top: -1.25rem;
  bottom: -1.25rem;
}

.-inset-y-52 {
  top: -13rem;
  bottom: -13rem;
}

.-inset-y-56 {
  top: -14rem;
  bottom: -14rem;
}

.-inset-y-6 {
  top: -1.5rem;
  bottom: -1.5rem;
}

.-inset-y-60 {
  top: -15rem;
  bottom: -15rem;
}

.-inset-y-64 {
  top: -16rem;
  bottom: -16rem;
}

.-inset-y-7 {
  top: -1.75rem;
  bottom: -1.75rem;
}

.-inset-y-72 {
  top: -18rem;
  bottom: -18rem;
}

.-inset-y-8 {
  top: -2rem;
  bottom: -2rem;
}

.-inset-y-80 {
  top: -20rem;
  bottom: -20rem;
}

.-inset-y-9 {
  top: -2.25rem;
  bottom: -2.25rem;
}

.-inset-y-96 {
  top: -24rem;
  bottom: -24rem;
}

.-inset-y-full {
  top: -100%;
  bottom: -100%;
}

.-inset-y-px {
  top: -1px;
  bottom: -1px;
}

.inset-x-0 {
  left: 0px;
  right: 0px;
}

.inset-x-0\.5 {
  left: 0.125rem;
  right: 0.125rem;
}

.inset-x-1 {
  left: 0.25rem;
  right: 0.25rem;
}

.inset-x-1\.5 {
  left: 0.375rem;
  right: 0.375rem;
}

.inset-x-1\/2 {
  left: 50%;
  right: 50%;
}

.inset-x-1\/3 {
  left: 33.333333%;
  right: 33.333333%;
}

.inset-x-1\/4 {
  left: 25%;
  right: 25%;
}

.inset-x-10 {
  left: 2.5rem;
  right: 2.5rem;
}

.inset-x-11 {
  left: 2.75rem;
  right: 2.75rem;
}

.inset-x-12 {
  left: 3rem;
  right: 3rem;
}

.inset-x-14 {
  left: 3.5rem;
  right: 3.5rem;
}

.inset-x-16 {
  left: 4rem;
  right: 4rem;
}

.inset-x-2 {
  left: 0.5rem;
  right: 0.5rem;
}

.inset-x-2\.5 {
  left: 0.625rem;
  right: 0.625rem;
}

.inset-x-2\/3 {
  left: 66.666667%;
  right: 66.666667%;
}

.inset-x-2\/4 {
  left: 50%;
  right: 50%;
}

.inset-x-20 {
  left: 5rem;
  right: 5rem;
}

.inset-x-24 {
  left: 6rem;
  right: 6rem;
}

.inset-x-28 {
  left: 7rem;
  right: 7rem;
}

.inset-x-3 {
  left: 0.75rem;
  right: 0.75rem;
}

.inset-x-3\.5 {
  left: 0.875rem;
  right: 0.875rem;
}

.inset-x-3\/4 {
  left: 75%;
  right: 75%;
}

.inset-x-32 {
  left: 8rem;
  right: 8rem;
}

.inset-x-36 {
  left: 9rem;
  right: 9rem;
}

.inset-x-4 {
  left: 1rem;
  right: 1rem;
}

.inset-x-40 {
  left: 10rem;
  right: 10rem;
}

.inset-x-44 {
  left: 11rem;
  right: 11rem;
}

.inset-x-48 {
  left: 12rem;
  right: 12rem;
}

.inset-x-5 {
  left: 1.25rem;
  right: 1.25rem;
}

.inset-x-52 {
  left: 13rem;
  right: 13rem;
}

.inset-x-56 {
  left: 14rem;
  right: 14rem;
}

.inset-x-6 {
  left: 1.5rem;
  right: 1.5rem;
}

.inset-x-60 {
  left: 15rem;
  right: 15rem;
}

.inset-x-64 {
  left: 16rem;
  right: 16rem;
}

.inset-x-7 {
  left: 1.75rem;
  right: 1.75rem;
}

.inset-x-72 {
  left: 18rem;
  right: 18rem;
}

.inset-x-8 {
  left: 2rem;
  right: 2rem;
}

.inset-x-80 {
  left: 20rem;
  right: 20rem;
}

.inset-x-9 {
  left: 2.25rem;
  right: 2.25rem;
}

.inset-x-96 {
  left: 24rem;
  right: 24rem;
}

.inset-x-auto {
  left: auto;
  right: auto;
}

.inset-x-full {
  left: 100%;
  right: 100%;
}

.inset-x-px {
  left: 1px;
  right: 1px;
}

.inset-y-0 {
  top: 0px;
  bottom: 0px;
}

.inset-y-0\.5 {
  top: 0.125rem;
  bottom: 0.125rem;
}

.inset-y-1 {
  top: 0.25rem;
  bottom: 0.25rem;
}

.inset-y-1\.5 {
  top: 0.375rem;
  bottom: 0.375rem;
}

.inset-y-1\/2 {
  top: 50%;
  bottom: 50%;
}

.inset-y-1\/3 {
  top: 33.333333%;
  bottom: 33.333333%;
}

.inset-y-1\/4 {
  top: 25%;
  bottom: 25%;
}

.inset-y-10 {
  top: 2.5rem;
  bottom: 2.5rem;
}

.inset-y-11 {
  top: 2.75rem;
  bottom: 2.75rem;
}

.inset-y-12 {
  top: 3rem;
  bottom: 3rem;
}

.inset-y-14 {
  top: 3.5rem;
  bottom: 3.5rem;
}

.inset-y-16 {
  top: 4rem;
  bottom: 4rem;
}

.inset-y-2 {
  top: 0.5rem;
  bottom: 0.5rem;
}

.inset-y-2\.5 {
  top: 0.625rem;
  bottom: 0.625rem;
}

.inset-y-2\/3 {
  top: 66.666667%;
  bottom: 66.666667%;
}

.inset-y-2\/4 {
  top: 50%;
  bottom: 50%;
}

.inset-y-20 {
  top: 5rem;
  bottom: 5rem;
}

.inset-y-24 {
  top: 6rem;
  bottom: 6rem;
}

.inset-y-28 {
  top: 7rem;
  bottom: 7rem;
}

.inset-y-3 {
  top: 0.75rem;
  bottom: 0.75rem;
}

.inset-y-3\.5 {
  top: 0.875rem;
  bottom: 0.875rem;
}

.inset-y-3\/4 {
  top: 75%;
  bottom: 75%;
}

.inset-y-32 {
  top: 8rem;
  bottom: 8rem;
}

.inset-y-36 {
  top: 9rem;
  bottom: 9rem;
}

.inset-y-4 {
  top: 1rem;
  bottom: 1rem;
}

.inset-y-40 {
  top: 10rem;
  bottom: 10rem;
}

.inset-y-44 {
  top: 11rem;
  bottom: 11rem;
}

.inset-y-48 {
  top: 12rem;
  bottom: 12rem;
}

.inset-y-5 {
  top: 1.25rem;
  bottom: 1.25rem;
}

.inset-y-52 {
  top: 13rem;
  bottom: 13rem;
}

.inset-y-56 {
  top: 14rem;
  bottom: 14rem;
}

.inset-y-6 {
  top: 1.5rem;
  bottom: 1.5rem;
}

.inset-y-60 {
  top: 15rem;
  bottom: 15rem;
}

.inset-y-64 {
  top: 16rem;
  bottom: 16rem;
}

.inset-y-7 {
  top: 1.75rem;
  bottom: 1.75rem;
}

.inset-y-72 {
  top: 18rem;
  bottom: 18rem;
}

.inset-y-8 {
  top: 2rem;
  bottom: 2rem;
}

.inset-y-80 {
  top: 20rem;
  bottom: 20rem;
}

.inset-y-9 {
  top: 2.25rem;
  bottom: 2.25rem;
}

.inset-y-96 {
  top: 24rem;
  bottom: 24rem;
}

.inset-y-auto {
  top: auto;
  bottom: auto;
}

.inset-y-full {
  top: 100%;
  bottom: 100%;
}

.inset-y-px {
  top: 1px;
  bottom: 1px;
}

.-bottom-0 {
  bottom: -0px;
}

.-bottom-0\.5 {
  bottom: -0.125rem;
}

.-bottom-1 {
  bottom: -0.25rem;
}

.-bottom-1\.5 {
  bottom: -0.375rem;
}

.-bottom-1\/2 {
  bottom: -50%;
}

.-bottom-1\/3 {
  bottom: -33.333333%;
}

.-bottom-1\/4 {
  bottom: -25%;
}

.-bottom-10 {
  bottom: -2.5rem;
}

.-bottom-11 {
  bottom: -2.75rem;
}

.-bottom-12 {
  bottom: -3rem;
}

.-bottom-14 {
  bottom: -3.5rem;
}

.-bottom-16 {
  bottom: -4rem;
}

.-bottom-2 {
  bottom: -0.5rem;
}

.-bottom-2\.5 {
  bottom: -0.625rem;
}

.-bottom-2\/3 {
  bottom: -66.666667%;
}

.-bottom-2\/4 {
  bottom: -50%;
}

.-bottom-20 {
  bottom: -5rem;
}

.-bottom-24 {
  bottom: -6rem;
}

.-bottom-28 {
  bottom: -7rem;
}

.-bottom-3 {
  bottom: -0.75rem;
}

.-bottom-3\.5 {
  bottom: -0.875rem;
}

.-bottom-3\/4 {
  bottom: -75%;
}

.-bottom-32 {
  bottom: -8rem;
}

.-bottom-36 {
  bottom: -9rem;
}

.-bottom-4 {
  bottom: -1rem;
}

.-bottom-40 {
  bottom: -10rem;
}

.-bottom-44 {
  bottom: -11rem;
}

.-bottom-48 {
  bottom: -12rem;
}

.-bottom-5 {
  bottom: -1.25rem;
}

.-bottom-52 {
  bottom: -13rem;
}

.-bottom-56 {
  bottom: -14rem;
}

.-bottom-6 {
  bottom: -1.5rem;
}

.-bottom-60 {
  bottom: -15rem;
}

.-bottom-64 {
  bottom: -16rem;
}

.-bottom-7 {
  bottom: -1.75rem;
}

.-bottom-72 {
  bottom: -18rem;
}

.-bottom-8 {
  bottom: -2rem;
}

.-bottom-80 {
  bottom: -20rem;
}

.-bottom-9 {
  bottom: -2.25rem;
}

.-bottom-96 {
  bottom: -24rem;
}

.-bottom-full {
  bottom: -100%;
}

.-bottom-px {
  bottom: -1px;
}

.-end-0 {
  inset-inline-end: -0px;
}

.-end-0\.5 {
  inset-inline-end: -0.125rem;
}

.-end-1 {
  inset-inline-end: -0.25rem;
}

.-end-1\.5 {
  inset-inline-end: -0.375rem;
}

.-end-1\/2 {
  inset-inline-end: -50%;
}

.-end-1\/3 {
  inset-inline-end: -33.333333%;
}

.-end-1\/4 {
  inset-inline-end: -25%;
}

.-end-10 {
  inset-inline-end: -2.5rem;
}

.-end-11 {
  inset-inline-end: -2.75rem;
}

.-end-12 {
  inset-inline-end: -3rem;
}

.-end-14 {
  inset-inline-end: -3.5rem;
}

.-end-16 {
  inset-inline-end: -4rem;
}

.-end-2 {
  inset-inline-end: -0.5rem;
}

.-end-2\.5 {
  inset-inline-end: -0.625rem;
}

.-end-2\/3 {
  inset-inline-end: -66.666667%;
}

.-end-2\/4 {
  inset-inline-end: -50%;
}

.-end-20 {
  inset-inline-end: -5rem;
}

.-end-24 {
  inset-inline-end: -6rem;
}

.-end-28 {
  inset-inline-end: -7rem;
}

.-end-3 {
  inset-inline-end: -0.75rem;
}

.-end-3\.5 {
  inset-inline-end: -0.875rem;
}

.-end-3\/4 {
  inset-inline-end: -75%;
}

.-end-32 {
  inset-inline-end: -8rem;
}

.-end-36 {
  inset-inline-end: -9rem;
}

.-end-4 {
  inset-inline-end: -1rem;
}

.-end-40 {
  inset-inline-end: -10rem;
}

.-end-44 {
  inset-inline-end: -11rem;
}

.-end-48 {
  inset-inline-end: -12rem;
}

.-end-5 {
  inset-inline-end: -1.25rem;
}

.-end-52 {
  inset-inline-end: -13rem;
}

.-end-56 {
  inset-inline-end: -14rem;
}

.-end-6 {
  inset-inline-end: -1.5rem;
}

.-end-60 {
  inset-inline-end: -15rem;
}

.-end-64 {
  inset-inline-end: -16rem;
}

.-end-7 {
  inset-inline-end: -1.75rem;
}

.-end-72 {
  inset-inline-end: -18rem;
}

.-end-8 {
  inset-inline-end: -2rem;
}

.-end-80 {
  inset-inline-end: -20rem;
}

.-end-9 {
  inset-inline-end: -2.25rem;
}

.-end-96 {
  inset-inline-end: -24rem;
}

.-end-full {
  inset-inline-end: -100%;
}

.-end-px {
  inset-inline-end: -1px;
}

.-left-0 {
  left: -0px;
}

.-left-0\.5 {
  left: -0.125rem;
}

.-left-1 {
  left: -0.25rem;
}

.-left-1\.5 {
  left: -0.375rem;
}

.-left-1\/2 {
  left: -50%;
}

.-left-1\/3 {
  left: -33.333333%;
}

.-left-1\/4 {
  left: -25%;
}

.-left-10 {
  left: -2.5rem;
}

.-left-11 {
  left: -2.75rem;
}

.-left-12 {
  left: -3rem;
}

.-left-14 {
  left: -3.5rem;
}

.-left-16 {
  left: -4rem;
}

.-left-2 {
  left: -0.5rem;
}

.-left-2\.5 {
  left: -0.625rem;
}

.-left-2\/3 {
  left: -66.666667%;
}

.-left-2\/4 {
  left: -50%;
}

.-left-20 {
  left: -5rem;
}

.-left-24 {
  left: -6rem;
}

.-left-28 {
  left: -7rem;
}

.-left-3 {
  left: -0.75rem;
}

.-left-3\.5 {
  left: -0.875rem;
}

.-left-3\/4 {
  left: -75%;
}

.-left-32 {
  left: -8rem;
}

.-left-36 {
  left: -9rem;
}

.-left-4 {
  left: -1rem;
}

.-left-40 {
  left: -10rem;
}

.-left-44 {
  left: -11rem;
}

.-left-48 {
  left: -12rem;
}

.-left-5 {
  left: -1.25rem;
}

.-left-52 {
  left: -13rem;
}

.-left-56 {
  left: -14rem;
}

.-left-6 {
  left: -1.5rem;
}

.-left-60 {
  left: -15rem;
}

.-left-64 {
  left: -16rem;
}

.-left-7 {
  left: -1.75rem;
}

.-left-72 {
  left: -18rem;
}

.-left-8 {
  left: -2rem;
}

.-left-80 {
  left: -20rem;
}

.-left-9 {
  left: -2.25rem;
}

.-left-96 {
  left: -24rem;
}

.-left-full {
  left: -100%;
}

.-left-px {
  left: -1px;
}

.-right-0 {
  right: -0px;
}

.-right-0\.5 {
  right: -0.125rem;
}

.-right-1 {
  right: -0.25rem;
}

.-right-1\.5 {
  right: -0.375rem;
}

.-right-1\/2 {
  right: -50%;
}

.-right-1\/3 {
  right: -33.333333%;
}

.-right-1\/4 {
  right: -25%;
}

.-right-10 {
  right: -2.5rem;
}

.-right-11 {
  right: -2.75rem;
}

.-right-12 {
  right: -3rem;
}

.-right-14 {
  right: -3.5rem;
}

.-right-16 {
  right: -4rem;
}

.-right-2 {
  right: -0.5rem;
}

.-right-2\.5 {
  right: -0.625rem;
}

.-right-2\/3 {
  right: -66.666667%;
}

.-right-2\/4 {
  right: -50%;
}

.-right-20 {
  right: -5rem;
}

.-right-24 {
  right: -6rem;
}

.-right-28 {
  right: -7rem;
}

.-right-3 {
  right: -0.75rem;
}

.-right-3\.5 {
  right: -0.875rem;
}

.-right-3\/4 {
  right: -75%;
}

.-right-32 {
  right: -8rem;
}

.-right-36 {
  right: -9rem;
}

.-right-4 {
  right: -1rem;
}

.-right-40 {
  right: -10rem;
}

.-right-44 {
  right: -11rem;
}

.-right-48 {
  right: -12rem;
}

.-right-5 {
  right: -1.25rem;
}

.-right-52 {
  right: -13rem;
}

.-right-56 {
  right: -14rem;
}

.-right-6 {
  right: -1.5rem;
}

.-right-60 {
  right: -15rem;
}

.-right-64 {
  right: -16rem;
}

.-right-7 {
  right: -1.75rem;
}

.-right-72 {
  right: -18rem;
}

.-right-8 {
  right: -2rem;
}

.-right-80 {
  right: -20rem;
}

.-right-9 {
  right: -2.25rem;
}

.-right-96 {
  right: -24rem;
}

.-right-full {
  right: -100%;
}

.-right-px {
  right: -1px;
}

.-start-0 {
  inset-inline-start: -0px;
}

.-start-0\.5 {
  inset-inline-start: -0.125rem;
}

.-start-1 {
  inset-inline-start: -0.25rem;
}

.-start-1\.5 {
  inset-inline-start: -0.375rem;
}

.-start-1\/2 {
  inset-inline-start: -50%;
}

.-start-1\/3 {
  inset-inline-start: -33.333333%;
}

.-start-1\/4 {
  inset-inline-start: -25%;
}

.-start-10 {
  inset-inline-start: -2.5rem;
}

.-start-11 {
  inset-inline-start: -2.75rem;
}

.-start-12 {
  inset-inline-start: -3rem;
}

.-start-14 {
  inset-inline-start: -3.5rem;
}

.-start-16 {
  inset-inline-start: -4rem;
}

.-start-2 {
  inset-inline-start: -0.5rem;
}

.-start-2\.5 {
  inset-inline-start: -0.625rem;
}

.-start-2\/3 {
  inset-inline-start: -66.666667%;
}

.-start-2\/4 {
  inset-inline-start: -50%;
}

.-start-20 {
  inset-inline-start: -5rem;
}

.-start-24 {
  inset-inline-start: -6rem;
}

.-start-28 {
  inset-inline-start: -7rem;
}

.-start-3 {
  inset-inline-start: -0.75rem;
}

.-start-3\.5 {
  inset-inline-start: -0.875rem;
}

.-start-3\/4 {
  inset-inline-start: -75%;
}

.-start-32 {
  inset-inline-start: -8rem;
}

.-start-36 {
  inset-inline-start: -9rem;
}

.-start-4 {
  inset-inline-start: -1rem;
}

.-start-40 {
  inset-inline-start: -10rem;
}

.-start-44 {
  inset-inline-start: -11rem;
}

.-start-48 {
  inset-inline-start: -12rem;
}

.-start-5 {
  inset-inline-start: -1.25rem;
}

.-start-52 {
  inset-inline-start: -13rem;
}

.-start-56 {
  inset-inline-start: -14rem;
}

.-start-6 {
  inset-inline-start: -1.5rem;
}

.-start-60 {
  inset-inline-start: -15rem;
}

.-start-64 {
  inset-inline-start: -16rem;
}

.-start-7 {
  inset-inline-start: -1.75rem;
}

.-start-72 {
  inset-inline-start: -18rem;
}

.-start-8 {
  inset-inline-start: -2rem;
}

.-start-80 {
  inset-inline-start: -20rem;
}

.-start-9 {
  inset-inline-start: -2.25rem;
}

.-start-96 {
  inset-inline-start: -24rem;
}

.-start-full {
  inset-inline-start: -100%;
}

.-start-px {
  inset-inline-start: -1px;
}

.-top-0 {
  top: -0px;
}

.-top-0\.5 {
  top: -0.125rem;
}

.-top-1 {
  top: -0.25rem;
}

.-top-1\.5 {
  top: -0.375rem;
}

.-top-1\/2 {
  top: -50%;
}

.-top-1\/3 {
  top: -33.333333%;
}

.-top-1\/4 {
  top: -25%;
}

.-top-10 {
  top: -2.5rem;
}

.-top-11 {
  top: -2.75rem;
}

.-top-12 {
  top: -3rem;
}

.-top-14 {
  top: -3.5rem;
}

.-top-16 {
  top: -4rem;
}

.-top-2 {
  top: -0.5rem;
}

.-top-2\.5 {
  top: -0.625rem;
}

.-top-2\/3 {
  top: -66.666667%;
}

.-top-2\/4 {
  top: -50%;
}

.-top-20 {
  top: -5rem;
}

.-top-24 {
  top: -6rem;
}

.-top-28 {
  top: -7rem;
}

.-top-3 {
  top: -0.75rem;
}

.-top-3\.5 {
  top: -0.875rem;
}

.-top-3\/4 {
  top: -75%;
}

.-top-32 {
  top: -8rem;
}

.-top-36 {
  top: -9rem;
}

.-top-4 {
  top: -1rem;
}

.-top-40 {
  top: -10rem;
}

.-top-44 {
  top: -11rem;
}

.-top-48 {
  top: -12rem;
}

.-top-5 {
  top: -1.25rem;
}

.-top-52 {
  top: -13rem;
}

.-top-56 {
  top: -14rem;
}

.-top-6 {
  top: -1.5rem;
}

.-top-60 {
  top: -15rem;
}

.-top-64 {
  top: -16rem;
}

.-top-7 {
  top: -1.75rem;
}

.-top-72 {
  top: -18rem;
}

.-top-8 {
  top: -2rem;
}

.-top-80 {
  top: -20rem;
}

.-top-9 {
  top: -2.25rem;
}

.-top-96 {
  top: -24rem;
}

.-top-full {
  top: -100%;
}

.-top-px {
  top: -1px;
}

.bottom-0 {
  bottom: 0px;
}

.bottom-0\.5 {
  bottom: 0.125rem;
}

.bottom-1 {
  bottom: 0.25rem;
}

.bottom-1\.5 {
  bottom: 0.375rem;
}

.bottom-1\/2 {
  bottom: 50%;
}

.bottom-1\/3 {
  bottom: 33.333333%;
}

.bottom-1\/4 {
  bottom: 25%;
}

.bottom-10 {
  bottom: 2.5rem;
}

.bottom-11 {
  bottom: 2.75rem;
}

.bottom-12 {
  bottom: 3rem;
}

.bottom-14 {
  bottom: 3.5rem;
}

.bottom-16 {
  bottom: 4rem;
}

.bottom-2 {
  bottom: 0.5rem;
}

.bottom-2\.5 {
  bottom: 0.625rem;
}

.bottom-2\/3 {
  bottom: 66.666667%;
}

.bottom-2\/4 {
  bottom: 50%;
}

.bottom-20 {
  bottom: 5rem;
}

.bottom-24 {
  bottom: 6rem;
}

.bottom-28 {
  bottom: 7rem;
}

.bottom-3 {
  bottom: 0.75rem;
}

.bottom-3\.5 {
  bottom: 0.875rem;
}

.bottom-3\/4 {
  bottom: 75%;
}

.bottom-32 {
  bottom: 8rem;
}

.bottom-36 {
  bottom: 9rem;
}

.bottom-4 {
  bottom: 1rem;
}

.bottom-40 {
  bottom: 10rem;
}

.bottom-44 {
  bottom: 11rem;
}

.bottom-48 {
  bottom: 12rem;
}

.bottom-5 {
  bottom: 1.25rem;
}

.bottom-52 {
  bottom: 13rem;
}

.bottom-56 {
  bottom: 14rem;
}

.bottom-6 {
  bottom: 1.5rem;
}

.bottom-60 {
  bottom: 15rem;
}

.bottom-64 {
  bottom: 16rem;
}

.bottom-7 {
  bottom: 1.75rem;
}

.bottom-72 {
  bottom: 18rem;
}

.bottom-8 {
  bottom: 2rem;
}

.bottom-80 {
  bottom: 20rem;
}

.bottom-9 {
  bottom: 2.25rem;
}

.bottom-96 {
  bottom: 24rem;
}

.bottom-auto {
  bottom: auto;
}

.bottom-full {
  bottom: 100%;
}

.bottom-px {
  bottom: 1px;
}

.end-0 {
  inset-inline-end: 0px;
}

.end-0\.5 {
  inset-inline-end: 0.125rem;
}

.end-1 {
  inset-inline-end: 0.25rem;
}

.end-1\.5 {
  inset-inline-end: 0.375rem;
}

.end-1\/2 {
  inset-inline-end: 50%;
}

.end-1\/3 {
  inset-inline-end: 33.333333%;
}

.end-1\/4 {
  inset-inline-end: 25%;
}

.end-10 {
  inset-inline-end: 2.5rem;
}

.end-11 {
  inset-inline-end: 2.75rem;
}

.end-12 {
  inset-inline-end: 3rem;
}

.end-14 {
  inset-inline-end: 3.5rem;
}

.end-16 {
  inset-inline-end: 4rem;
}

.end-2 {
  inset-inline-end: 0.5rem;
}

.end-2\.5 {
  inset-inline-end: 0.625rem;
}

.end-2\/3 {
  inset-inline-end: 66.666667%;
}

.end-2\/4 {
  inset-inline-end: 50%;
}

.end-20 {
  inset-inline-end: 5rem;
}

.end-24 {
  inset-inline-end: 6rem;
}

.end-28 {
  inset-inline-end: 7rem;
}

.end-3 {
  inset-inline-end: 0.75rem;
}

.end-3\.5 {
  inset-inline-end: 0.875rem;
}

.end-3\/4 {
  inset-inline-end: 75%;
}

.end-32 {
  inset-inline-end: 8rem;
}

.end-36 {
  inset-inline-end: 9rem;
}

.end-4 {
  inset-inline-end: 1rem;
}

.end-40 {
  inset-inline-end: 10rem;
}

.end-44 {
  inset-inline-end: 11rem;
}

.end-48 {
  inset-inline-end: 12rem;
}

.end-5 {
  inset-inline-end: 1.25rem;
}

.end-52 {
  inset-inline-end: 13rem;
}

.end-56 {
  inset-inline-end: 14rem;
}

.end-6 {
  inset-inline-end: 1.5rem;
}

.end-60 {
  inset-inline-end: 15rem;
}

.end-64 {
  inset-inline-end: 16rem;
}

.end-7 {
  inset-inline-end: 1.75rem;
}

.end-72 {
  inset-inline-end: 18rem;
}

.end-8 {
  inset-inline-end: 2rem;
}

.end-80 {
  inset-inline-end: 20rem;
}

.end-9 {
  inset-inline-end: 2.25rem;
}

.end-96 {
  inset-inline-end: 24rem;
}

.end-auto {
  inset-inline-end: auto;
}

.end-full {
  inset-inline-end: 100%;
}

.end-px {
  inset-inline-end: 1px;
}

.left-0 {
  left: 0px;
}

.left-0\.5 {
  left: 0.125rem;
}

.left-1 {
  left: 0.25rem;
}

.left-1\.5 {
  left: 0.375rem;
}

.left-1\/2 {
  left: 50%;
}

.left-1\/3 {
  left: 33.333333%;
}

.left-1\/4 {
  left: 25%;
}

.left-10 {
  left: 2.5rem;
}

.left-11 {
  left: 2.75rem;
}

.left-12 {
  left: 3rem;
}

.left-14 {
  left: 3.5rem;
}

.left-16 {
  left: 4rem;
}

.left-2 {
  left: 0.5rem;
}

.left-2\.5 {
  left: 0.625rem;
}

.left-2\/3 {
  left: 66.666667%;
}

.left-2\/4 {
  left: 50%;
}

.left-20 {
  left: 5rem;
}

.left-24 {
  left: 6rem;
}

.left-28 {
  left: 7rem;
}

.left-3 {
  left: 0.75rem;
}

.left-3\.5 {
  left: 0.875rem;
}

.left-3\/4 {
  left: 75%;
}

.left-32 {
  left: 8rem;
}

.left-36 {
  left: 9rem;
}

.left-4 {
  left: 1rem;
}

.left-40 {
  left: 10rem;
}

.left-44 {
  left: 11rem;
}

.left-48 {
  left: 12rem;
}

.left-5 {
  left: 1.25rem;
}

.left-52 {
  left: 13rem;
}

.left-56 {
  left: 14rem;
}

.left-6 {
  left: 1.5rem;
}

.left-60 {
  left: 15rem;
}

.left-64 {
  left: 16rem;
}

.left-7 {
  left: 1.75rem;
}

.left-72 {
  left: 18rem;
}

.left-8 {
  left: 2rem;
}

.left-80 {
  left: 20rem;
}

.left-9 {
  left: 2.25rem;
}

.left-96 {
  left: 24rem;
}

.left-auto {
  left: auto;
}

.left-full {
  left: 100%;
}

.left-px {
  left: 1px;
}

.right-0 {
  right: 0px;
}

.right-0\.5 {
  right: 0.125rem;
}

.right-1 {
  right: 0.25rem;
}

.right-1\.5 {
  right: 0.375rem;
}

.right-1\/2 {
  right: 50%;
}

.right-1\/3 {
  right: 33.333333%;
}

.right-1\/4 {
  right: 25%;
}

.right-10 {
  right: 2.5rem;
}

.right-11 {
  right: 2.75rem;
}

.right-12 {
  right: 3rem;
}

.right-14 {
  right: 3.5rem;
}

.right-16 {
  right: 4rem;
}

.right-2 {
  right: 0.5rem;
}

.right-2\.5 {
  right: 0.625rem;
}

.right-2\/3 {
  right: 66.666667%;
}

.right-2\/4 {
  right: 50%;
}

.right-20 {
  right: 5rem;
}

.right-24 {
  right: 6rem;
}

.right-28 {
  right: 7rem;
}

.right-3 {
  right: 0.75rem;
}

.right-3\.5 {
  right: 0.875rem;
}

.right-3\/4 {
  right: 75%;
}

.right-32 {
  right: 8rem;
}

.right-36 {
  right: 9rem;
}

.right-4 {
  right: 1rem;
}

.right-40 {
  right: 10rem;
}

.right-44 {
  right: 11rem;
}

.right-48 {
  right: 12rem;
}

.right-5 {
  right: 1.25rem;
}

.right-52 {
  right: 13rem;
}

.right-56 {
  right: 14rem;
}

.right-6 {
  right: 1.5rem;
}

.right-60 {
  right: 15rem;
}

.right-64 {
  right: 16rem;
}

.right-7 {
  right: 1.75rem;
}

.right-72 {
  right: 18rem;
}

.right-8 {
  right: 2rem;
}

.right-80 {
  right: 20rem;
}

.right-9 {
  right: 2.25rem;
}

.right-96 {
  right: 24rem;
}

.right-auto {
  right: auto;
}

.right-full {
  right: 100%;
}

.right-px {
  right: 1px;
}

.start-0 {
  inset-inline-start: 0px;
}

.start-0\.5 {
  inset-inline-start: 0.125rem;
}

.start-1 {
  inset-inline-start: 0.25rem;
}

.start-1\.5 {
  inset-inline-start: 0.375rem;
}

.start-1\/2 {
  inset-inline-start: 50%;
}

.start-1\/3 {
  inset-inline-start: 33.333333%;
}

.start-1\/4 {
  inset-inline-start: 25%;
}

.start-10 {
  inset-inline-start: 2.5rem;
}

.start-11 {
  inset-inline-start: 2.75rem;
}

.start-12 {
  inset-inline-start: 3rem;
}

.start-14 {
  inset-inline-start: 3.5rem;
}

.start-16 {
  inset-inline-start: 4rem;
}

.start-2 {
  inset-inline-start: 0.5rem;
}

.start-2\.5 {
  inset-inline-start: 0.625rem;
}

.start-2\/3 {
  inset-inline-start: 66.666667%;
}

.start-2\/4 {
  inset-inline-start: 50%;
}

.start-20 {
  inset-inline-start: 5rem;
}

.start-24 {
  inset-inline-start: 6rem;
}

.start-28 {
  inset-inline-start: 7rem;
}

.start-3 {
  inset-inline-start: 0.75rem;
}

.start-3\.5 {
  inset-inline-start: 0.875rem;
}

.start-3\/4 {
  inset-inline-start: 75%;
}

.start-32 {
  inset-inline-start: 8rem;
}

.start-36 {
  inset-inline-start: 9rem;
}

.start-4 {
  inset-inline-start: 1rem;
}

.start-40 {
  inset-inline-start: 10rem;
}

.start-44 {
  inset-inline-start: 11rem;
}

.start-48 {
  inset-inline-start: 12rem;
}

.start-5 {
  inset-inline-start: 1.25rem;
}

.start-52 {
  inset-inline-start: 13rem;
}

.start-56 {
  inset-inline-start: 14rem;
}

.start-6 {
  inset-inline-start: 1.5rem;
}

.start-60 {
  inset-inline-start: 15rem;
}

.start-64 {
  inset-inline-start: 16rem;
}

.start-7 {
  inset-inline-start: 1.75rem;
}

.start-72 {
  inset-inline-start: 18rem;
}

.start-8 {
  inset-inline-start: 2rem;
}

.start-80 {
  inset-inline-start: 20rem;
}

.start-9 {
  inset-inline-start: 2.25rem;
}

.start-96 {
  inset-inline-start: 24rem;
}

.start-auto {
  inset-inline-start: auto;
}

.start-full {
  inset-inline-start: 100%;
}

.start-px {
  inset-inline-start: 1px;
}

.top-0 {
  top: 0px;
}

.top-0\.5 {
  top: 0.125rem;
}

.top-1 {
  top: 0.25rem;
}

.top-1\.5 {
  top: 0.375rem;
}

.top-1\/2 {
  top: 50%;
}

.top-1\/3 {
  top: 33.333333%;
}

.top-1\/4 {
  top: 25%;
}

.top-10 {
  top: 2.5rem;
}

.top-11 {
  top: 2.75rem;
}

.top-12 {
  top: 3rem;
}

.top-14 {
  top: 3.5rem;
}

.top-16 {
  top: 4rem;
}

.top-2 {
  top: 0.5rem;
}

.top-2\.5 {
  top: 0.625rem;
}

.top-2\/3 {
  top: 66.666667%;
}

.top-2\/4 {
  top: 50%;
}

.top-20 {
  top: 5rem;
}

.top-24 {
  top: 6rem;
}

.top-28 {
  top: 7rem;
}

.top-3 {
  top: 0.75rem;
}

.top-3\.5 {
  top: 0.875rem;
}

.top-3\/4 {
  top: 75%;
}

.top-32 {
  top: 8rem;
}

.top-36 {
  top: 9rem;
}

.top-4 {
  top: 1rem;
}

.top-40 {
  top: 10rem;
}

.top-44 {
  top: 11rem;
}

.top-48 {
  top: 12rem;
}

.top-5 {
  top: 1.25rem;
}

.top-52 {
  top: 13rem;
}

.top-56 {
  top: 14rem;
}

.top-6 {
  top: 1.5rem;
}

.top-60 {
  top: 15rem;
}

.top-64 {
  top: 16rem;
}

.top-7 {
  top: 1.75rem;
}

.top-72 {
  top: 18rem;
}

.top-8 {
  top: 2rem;
}

.top-80 {
  top: 20rem;
}

.top-9 {
  top: 2.25rem;
}

.top-96 {
  top: 24rem;
}

.top-auto {
  top: auto;
}

.top-full {
  top: 100%;
}

.top-px {
  top: 1px;
}

.isolate {
  isolation: isolate;
}

.isolation-auto {
  isolation: auto;
}

.-z-0 {
  z-index: 0;
}

.-z-10 {
  z-index: -10;
}

.-z-100 {
  z-index: -100;
}

.-z-20 {
  z-index: -20;
}

.-z-30 {
  z-index: -30;
}

.-z-40 {
  z-index: -40;
}

.-z-50 {
  z-index: -50;
}

.-z-60 {
  z-index: -60;
}

.-z-70 {
  z-index: -70;
}

.-z-80 {
  z-index: -80;
}

.-z-90 {
  z-index: -90;
}

.-z-max {
  z-index: -9999999999;
}

.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

.z-100 {
  z-index: 100;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.z-60 {
  z-index: 60;
}

.z-70 {
  z-index: 70;
}

.z-80 {
  z-index: 80;
}

.z-90 {
  z-index: 90;
}

.z-auto {
  z-index: auto;
}

.z-max {
  z-index: 9999999999;
}

.col-auto {
  grid-column: auto;
}

.col-span-1 {
  grid-column: span 1 / span 1;
}

.col-span-10 {
  grid-column: span 10 / span 10;
}

.col-span-11 {
  grid-column: span 11 / span 11;
}

.col-span-12 {
  grid-column: span 12 / span 12;
}

.col-span-2 {
  grid-column: span 2 / span 2;
}

.col-span-3 {
  grid-column: span 3 / span 3;
}

.col-span-4 {
  grid-column: span 4 / span 4;
}

.col-span-5 {
  grid-column: span 5 / span 5;
}

.col-span-6 {
  grid-column: span 6 / span 6;
}

.col-span-7 {
  grid-column: span 7 / span 7;
}

.col-span-8 {
  grid-column: span 8 / span 8;
}

.col-span-9 {
  grid-column: span 9 / span 9;
}

.col-span-full {
  grid-column: 1 / -1;
}

.-m-0 {
  margin: -0px;
}

.-m-0\.5 {
  margin: -0.125rem;
}

.-m-1 {
  margin: -0.25rem;
}

.-m-1\.5 {
  margin: -0.375rem;
}

.-m-10 {
  margin: -2.5rem;
}

.-m-11 {
  margin: -2.75rem;
}

.-m-12 {
  margin: -3rem;
}

.-m-14 {
  margin: -3.5rem;
}

.-m-16 {
  margin: -4rem;
}

.-m-2 {
  margin: -0.5rem;
}

.-m-2\.5 {
  margin: -0.625rem;
}

.-m-20 {
  margin: -5rem;
}

.-m-24 {
  margin: -6rem;
}

.-m-28 {
  margin: -7rem;
}

.-m-3 {
  margin: -0.75rem;
}

.-m-3\.5 {
  margin: -0.875rem;
}

.-m-32 {
  margin: -8rem;
}

.-m-36 {
  margin: -9rem;
}

.-m-4 {
  margin: -1rem;
}

.-m-40 {
  margin: -10rem;
}

.-m-44 {
  margin: -11rem;
}

.-m-48 {
  margin: -12rem;
}

.-m-5 {
  margin: -1.25rem;
}

.-m-52 {
  margin: -13rem;
}

.-m-56 {
  margin: -14rem;
}

.-m-6 {
  margin: -1.5rem;
}

.-m-60 {
  margin: -15rem;
}

.-m-64 {
  margin: -16rem;
}

.-m-7 {
  margin: -1.75rem;
}

.-m-72 {
  margin: -18rem;
}

.-m-8 {
  margin: -2rem;
}

.-m-80 {
  margin: -20rem;
}

.-m-9 {
  margin: -2.25rem;
}

.-m-96 {
  margin: -24rem;
}

.-m-px {
  margin: -1px;
}

.m-0 {
  margin: 0px;
}

.m-0\.5 {
  margin: 0.125rem;
}

.m-1 {
  margin: 0.25rem;
}

.m-1\.5 {
  margin: 0.375rem;
}

.m-10 {
  margin: 2.5rem;
}

.m-11 {
  margin: 2.75rem;
}

.m-12 {
  margin: 3rem;
}

.m-14 {
  margin: 3.5rem;
}

.m-16 {
  margin: 4rem;
}

.m-2 {
  margin: 0.5rem;
}

.m-2\.5 {
  margin: 0.625rem;
}

.m-20 {
  margin: 5rem;
}

.m-24 {
  margin: 6rem;
}

.m-28 {
  margin: 7rem;
}

.m-3 {
  margin: 0.75rem;
}

.m-3\.5 {
  margin: 0.875rem;
}

.m-32 {
  margin: 8rem;
}

.m-36 {
  margin: 9rem;
}

.m-4 {
  margin: 1rem;
}

.m-40 {
  margin: 10rem;
}

.m-44 {
  margin: 11rem;
}

.m-48 {
  margin: 12rem;
}

.m-5 {
  margin: 1.25rem;
}

.m-52 {
  margin: 13rem;
}

.m-56 {
  margin: 14rem;
}

.m-6 {
  margin: 1.5rem;
}

.m-60 {
  margin: 15rem;
}

.m-64 {
  margin: 16rem;
}

.m-7 {
  margin: 1.75rem;
}

.m-72 {
  margin: 18rem;
}

.m-8 {
  margin: 2rem;
}

.m-80 {
  margin: 20rem;
}

.m-9 {
  margin: 2.25rem;
}

.m-96 {
  margin: 24rem;
}

.m-auto {
  margin: auto;
}

.m-px {
  margin: 1px;
}

.-mx-0 {
  margin-left: -0px;
  margin-right: -0px;
}

.-mx-0\.5 {
  margin-left: -0.125rem;
  margin-right: -0.125rem;
}

.-mx-1 {
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}

.-mx-1\.5 {
  margin-left: -0.375rem;
  margin-right: -0.375rem;
}

.-mx-10 {
  margin-left: -2.5rem;
  margin-right: -2.5rem;
}

.-mx-11 {
  margin-left: -2.75rem;
  margin-right: -2.75rem;
}

.-mx-12 {
  margin-left: -3rem;
  margin-right: -3rem;
}

.-mx-14 {
  margin-left: -3.5rem;
  margin-right: -3.5rem;
}

.-mx-16 {
  margin-left: -4rem;
  margin-right: -4rem;
}

.-mx-2 {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.-mx-2\.5 {
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}

.-mx-20 {
  margin-left: -5rem;
  margin-right: -5rem;
}

.-mx-24 {
  margin-left: -6rem;
  margin-right: -6rem;
}

.-mx-28 {
  margin-left: -7rem;
  margin-right: -7rem;
}

.-mx-3 {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.-mx-3\.5 {
  margin-left: -0.875rem;
  margin-right: -0.875rem;
}

.-mx-32 {
  margin-left: -8rem;
  margin-right: -8rem;
}

.-mx-36 {
  margin-left: -9rem;
  margin-right: -9rem;
}

.-mx-4 {
  margin-left: -1rem;
  margin-right: -1rem;
}

.-mx-40 {
  margin-left: -10rem;
  margin-right: -10rem;
}

.-mx-44 {
  margin-left: -11rem;
  margin-right: -11rem;
}

.-mx-48 {
  margin-left: -12rem;
  margin-right: -12rem;
}

.-mx-5 {
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}

.-mx-52 {
  margin-left: -13rem;
  margin-right: -13rem;
}

.-mx-56 {
  margin-left: -14rem;
  margin-right: -14rem;
}

.-mx-6 {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.-mx-60 {
  margin-left: -15rem;
  margin-right: -15rem;
}

.-mx-64 {
  margin-left: -16rem;
  margin-right: -16rem;
}

.-mx-7 {
  margin-left: -1.75rem;
  margin-right: -1.75rem;
}

.-mx-72 {
  margin-left: -18rem;
  margin-right: -18rem;
}

.-mx-8 {
  margin-left: -2rem;
  margin-right: -2rem;
}

.-mx-80 {
  margin-left: -20rem;
  margin-right: -20rem;
}

.-mx-9 {
  margin-left: -2.25rem;
  margin-right: -2.25rem;
}

.-mx-96 {
  margin-left: -24rem;
  margin-right: -24rem;
}

.-mx-px {
  margin-left: -1px;
  margin-right: -1px;
}

.-my-0 {
  margin-top: -0px;
  margin-bottom: -0px;
}

.-my-0\.5 {
  margin-top: -0.125rem;
  margin-bottom: -0.125rem;
}

.-my-1 {
  margin-top: -0.25rem;
  margin-bottom: -0.25rem;
}

.-my-1\.5 {
  margin-top: -0.375rem;
  margin-bottom: -0.375rem;
}

.-my-10 {
  margin-top: -2.5rem;
  margin-bottom: -2.5rem;
}

.-my-11 {
  margin-top: -2.75rem;
  margin-bottom: -2.75rem;
}

.-my-12 {
  margin-top: -3rem;
  margin-bottom: -3rem;
}

.-my-14 {
  margin-top: -3.5rem;
  margin-bottom: -3.5rem;
}

.-my-16 {
  margin-top: -4rem;
  margin-bottom: -4rem;
}

.-my-2 {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}

.-my-2\.5 {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}

.-my-20 {
  margin-top: -5rem;
  margin-bottom: -5rem;
}

.-my-24 {
  margin-top: -6rem;
  margin-bottom: -6rem;
}

.-my-28 {
  margin-top: -7rem;
  margin-bottom: -7rem;
}

.-my-3 {
  margin-top: -0.75rem;
  margin-bottom: -0.75rem;
}

.-my-3\.5 {
  margin-top: -0.875rem;
  margin-bottom: -0.875rem;
}

.-my-32 {
  margin-top: -8rem;
  margin-bottom: -8rem;
}

.-my-36 {
  margin-top: -9rem;
  margin-bottom: -9rem;
}

.-my-4 {
  margin-top: -1rem;
  margin-bottom: -1rem;
}

.-my-40 {
  margin-top: -10rem;
  margin-bottom: -10rem;
}

.-my-44 {
  margin-top: -11rem;
  margin-bottom: -11rem;
}

.-my-48 {
  margin-top: -12rem;
  margin-bottom: -12rem;
}

.-my-5 {
  margin-top: -1.25rem;
  margin-bottom: -1.25rem;
}

.-my-52 {
  margin-top: -13rem;
  margin-bottom: -13rem;
}

.-my-56 {
  margin-top: -14rem;
  margin-bottom: -14rem;
}

.-my-6 {
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
}

.-my-60 {
  margin-top: -15rem;
  margin-bottom: -15rem;
}

.-my-64 {
  margin-top: -16rem;
  margin-bottom: -16rem;
}

.-my-7 {
  margin-top: -1.75rem;
  margin-bottom: -1.75rem;
}

.-my-72 {
  margin-top: -18rem;
  margin-bottom: -18rem;
}

.-my-8 {
  margin-top: -2rem;
  margin-bottom: -2rem;
}

.-my-80 {
  margin-top: -20rem;
  margin-bottom: -20rem;
}

.-my-9 {
  margin-top: -2.25rem;
  margin-bottom: -2.25rem;
}

.-my-96 {
  margin-top: -24rem;
  margin-bottom: -24rem;
}

.-my-px {
  margin-top: -1px;
  margin-bottom: -1px;
}

.mx-0 {
  margin-left: 0px;
  margin-right: 0px;
}

.mx-0\.5 {
  margin-left: 0.125rem;
  margin-right: 0.125rem;
}

.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.mx-1\.5 {
  margin-left: 0.375rem;
  margin-right: 0.375rem;
}

.mx-10 {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.mx-11 {
  margin-left: 2.75rem;
  margin-right: 2.75rem;
}

.mx-12 {
  margin-left: 3rem;
  margin-right: 3rem;
}

.mx-14 {
  margin-left: 3.5rem;
  margin-right: 3.5rem;
}

.mx-16 {
  margin-left: 4rem;
  margin-right: 4rem;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.mx-2\.5 {
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}

.mx-20 {
  margin-left: 5rem;
  margin-right: 5rem;
}

.mx-24 {
  margin-left: 6rem;
  margin-right: 6rem;
}

.mx-28 {
  margin-left: 7rem;
  margin-right: 7rem;
}

.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.mx-3\.5 {
  margin-left: 0.875rem;
  margin-right: 0.875rem;
}

.mx-32 {
  margin-left: 8rem;
  margin-right: 8rem;
}

.mx-36 {
  margin-left: 9rem;
  margin-right: 9rem;
}

.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mx-40 {
  margin-left: 10rem;
  margin-right: 10rem;
}

.mx-44 {
  margin-left: 11rem;
  margin-right: 11rem;
}

.mx-48 {
  margin-left: 12rem;
  margin-right: 12rem;
}

.mx-5 {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.mx-52 {
  margin-left: 13rem;
  margin-right: 13rem;
}

.mx-56 {
  margin-left: 14rem;
  margin-right: 14rem;
}

.mx-6 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.mx-60 {
  margin-left: 15rem;
  margin-right: 15rem;
}

.mx-64 {
  margin-left: 16rem;
  margin-right: 16rem;
}

.mx-7 {
  margin-left: 1.75rem;
  margin-right: 1.75rem;
}

.mx-72 {
  margin-left: 18rem;
  margin-right: 18rem;
}

.mx-8 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.mx-80 {
  margin-left: 20rem;
  margin-right: 20rem;
}

.mx-9 {
  margin-left: 2.25rem;
  margin-right: 2.25rem;
}

.mx-96 {
  margin-left: 24rem;
  margin-right: 24rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mx-px {
  margin-left: 1px;
  margin-right: 1px;
}

.my-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.my-0\.5 {
  margin-top: 0.125rem;
  margin-bottom: 0.125rem;
}

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.my-1\.5 {
  margin-top: 0.375rem;
  margin-bottom: 0.375rem;
}

.my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.my-11 {
  margin-top: 2.75rem;
  margin-bottom: 2.75rem;
}

.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.my-14 {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

.my-16 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-2\.5 {
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}

.my-20 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.my-24 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.my-28 {
  margin-top: 7rem;
  margin-bottom: 7rem;
}

.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.my-3\.5 {
  margin-top: 0.875rem;
  margin-bottom: 0.875rem;
}

.my-32 {
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.my-36 {
  margin-top: 9rem;
  margin-bottom: 9rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-40 {
  margin-top: 10rem;
  margin-bottom: 10rem;
}

.my-44 {
  margin-top: 11rem;
  margin-bottom: 11rem;
}

.my-48 {
  margin-top: 12rem;
  margin-bottom: 12rem;
}

.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.my-52 {
  margin-top: 13rem;
  margin-bottom: 13rem;
}

.my-56 {
  margin-top: 14rem;
  margin-bottom: 14rem;
}

.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.my-60 {
  margin-top: 15rem;
  margin-bottom: 15rem;
}

.my-64 {
  margin-top: 16rem;
  margin-bottom: 16rem;
}

.my-7 {
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

.my-72 {
  margin-top: 18rem;
  margin-bottom: 18rem;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.my-80 {
  margin-top: 20rem;
  margin-bottom: 20rem;
}

.my-9 {
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
}

.my-96 {
  margin-top: 24rem;
  margin-bottom: 24rem;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.my-px {
  margin-top: 1px;
  margin-bottom: 1px;
}

.-mb-0 {
  margin-bottom: -0px;
}

.-mb-0\.5 {
  margin-bottom: -0.125rem;
}

.-mb-1 {
  margin-bottom: -0.25rem;
}

.-mb-1\.5 {
  margin-bottom: -0.375rem;
}

.-mb-10 {
  margin-bottom: -2.5rem;
}

.-mb-11 {
  margin-bottom: -2.75rem;
}

.-mb-12 {
  margin-bottom: -3rem;
}

.-mb-14 {
  margin-bottom: -3.5rem;
}

.-mb-16 {
  margin-bottom: -4rem;
}

.-mb-2 {
  margin-bottom: -0.5rem;
}

.-mb-2\.5 {
  margin-bottom: -0.625rem;
}

.-mb-20 {
  margin-bottom: -5rem;
}

.-mb-24 {
  margin-bottom: -6rem;
}

.-mb-28 {
  margin-bottom: -7rem;
}

.-mb-3 {
  margin-bottom: -0.75rem;
}

.-mb-3\.5 {
  margin-bottom: -0.875rem;
}

.-mb-32 {
  margin-bottom: -8rem;
}

.-mb-36 {
  margin-bottom: -9rem;
}

.-mb-4 {
  margin-bottom: -1rem;
}

.-mb-40 {
  margin-bottom: -10rem;
}

.-mb-44 {
  margin-bottom: -11rem;
}

.-mb-48 {
  margin-bottom: -12rem;
}

.-mb-5 {
  margin-bottom: -1.25rem;
}

.-mb-52 {
  margin-bottom: -13rem;
}

.-mb-56 {
  margin-bottom: -14rem;
}

.-mb-6 {
  margin-bottom: -1.5rem;
}

.-mb-60 {
  margin-bottom: -15rem;
}

.-mb-64 {
  margin-bottom: -16rem;
}

.-mb-7 {
  margin-bottom: -1.75rem;
}

.-mb-72 {
  margin-bottom: -18rem;
}

.-mb-8 {
  margin-bottom: -2rem;
}

.-mb-80 {
  margin-bottom: -20rem;
}

.-mb-9 {
  margin-bottom: -2.25rem;
}

.-mb-96 {
  margin-bottom: -24rem;
}

.-mb-px {
  margin-bottom: -1px;
}

.-me-0 {
  margin-inline-end: -0px;
}

.-me-0\.5 {
  margin-inline-end: -0.125rem;
}

.-me-1 {
  margin-inline-end: -0.25rem;
}

.-me-1\.5 {
  margin-inline-end: -0.375rem;
}

.-me-10 {
  margin-inline-end: -2.5rem;
}

.-me-11 {
  margin-inline-end: -2.75rem;
}

.-me-12 {
  margin-inline-end: -3rem;
}

.-me-14 {
  margin-inline-end: -3.5rem;
}

.-me-16 {
  margin-inline-end: -4rem;
}

.-me-2 {
  margin-inline-end: -0.5rem;
}

.-me-2\.5 {
  margin-inline-end: -0.625rem;
}

.-me-20 {
  margin-inline-end: -5rem;
}

.-me-24 {
  margin-inline-end: -6rem;
}

.-me-28 {
  margin-inline-end: -7rem;
}

.-me-3 {
  margin-inline-end: -0.75rem;
}

.-me-3\.5 {
  margin-inline-end: -0.875rem;
}

.-me-32 {
  margin-inline-end: -8rem;
}

.-me-36 {
  margin-inline-end: -9rem;
}

.-me-4 {
  margin-inline-end: -1rem;
}

.-me-40 {
  margin-inline-end: -10rem;
}

.-me-44 {
  margin-inline-end: -11rem;
}

.-me-48 {
  margin-inline-end: -12rem;
}

.-me-5 {
  margin-inline-end: -1.25rem;
}

.-me-52 {
  margin-inline-end: -13rem;
}

.-me-56 {
  margin-inline-end: -14rem;
}

.-me-6 {
  margin-inline-end: -1.5rem;
}

.-me-60 {
  margin-inline-end: -15rem;
}

.-me-64 {
  margin-inline-end: -16rem;
}

.-me-7 {
  margin-inline-end: -1.75rem;
}

.-me-72 {
  margin-inline-end: -18rem;
}

.-me-8 {
  margin-inline-end: -2rem;
}

.-me-80 {
  margin-inline-end: -20rem;
}

.-me-9 {
  margin-inline-end: -2.25rem;
}

.-me-96 {
  margin-inline-end: -24rem;
}

.-me-px {
  margin-inline-end: -1px;
}

.-ml-0 {
  margin-left: -0px;
}

.-ml-0\.5 {
  margin-left: -0.125rem;
}

.-ml-1 {
  margin-left: -0.25rem;
}

.-ml-1\.5 {
  margin-left: -0.375rem;
}

.-ml-10 {
  margin-left: -2.5rem;
}

.-ml-11 {
  margin-left: -2.75rem;
}

.-ml-12 {
  margin-left: -3rem;
}

.-ml-14 {
  margin-left: -3.5rem;
}

.-ml-16 {
  margin-left: -4rem;
}

.-ml-2 {
  margin-left: -0.5rem;
}

.-ml-2\.5 {
  margin-left: -0.625rem;
}

.-ml-20 {
  margin-left: -5rem;
}

.-ml-24 {
  margin-left: -6rem;
}

.-ml-28 {
  margin-left: -7rem;
}

.-ml-3 {
  margin-left: -0.75rem;
}

.-ml-3\.5 {
  margin-left: -0.875rem;
}

.-ml-32 {
  margin-left: -8rem;
}

.-ml-36 {
  margin-left: -9rem;
}

.-ml-4 {
  margin-left: -1rem;
}

.-ml-40 {
  margin-left: -10rem;
}

.-ml-44 {
  margin-left: -11rem;
}

.-ml-48 {
  margin-left: -12rem;
}

.-ml-5 {
  margin-left: -1.25rem;
}

.-ml-52 {
  margin-left: -13rem;
}

.-ml-56 {
  margin-left: -14rem;
}

.-ml-6 {
  margin-left: -1.5rem;
}

.-ml-60 {
  margin-left: -15rem;
}

.-ml-64 {
  margin-left: -16rem;
}

.-ml-7 {
  margin-left: -1.75rem;
}

.-ml-72 {
  margin-left: -18rem;
}

.-ml-8 {
  margin-left: -2rem;
}

.-ml-80 {
  margin-left: -20rem;
}

.-ml-9 {
  margin-left: -2.25rem;
}

.-ml-96 {
  margin-left: -24rem;
}

.-ml-px {
  margin-left: -1px;
}

.-mr-0 {
  margin-right: -0px;
}

.-mr-0\.5 {
  margin-right: -0.125rem;
}

.-mr-1 {
  margin-right: -0.25rem;
}

.-mr-1\.5 {
  margin-right: -0.375rem;
}

.-mr-10 {
  margin-right: -2.5rem;
}

.-mr-11 {
  margin-right: -2.75rem;
}

.-mr-12 {
  margin-right: -3rem;
}

.-mr-14 {
  margin-right: -3.5rem;
}

.-mr-16 {
  margin-right: -4rem;
}

.-mr-2 {
  margin-right: -0.5rem;
}

.-mr-2\.5 {
  margin-right: -0.625rem;
}

.-mr-20 {
  margin-right: -5rem;
}

.-mr-24 {
  margin-right: -6rem;
}

.-mr-28 {
  margin-right: -7rem;
}

.-mr-3 {
  margin-right: -0.75rem;
}

.-mr-3\.5 {
  margin-right: -0.875rem;
}

.-mr-32 {
  margin-right: -8rem;
}

.-mr-36 {
  margin-right: -9rem;
}

.-mr-4 {
  margin-right: -1rem;
}

.-mr-40 {
  margin-right: -10rem;
}

.-mr-44 {
  margin-right: -11rem;
}

.-mr-48 {
  margin-right: -12rem;
}

.-mr-5 {
  margin-right: -1.25rem;
}

.-mr-52 {
  margin-right: -13rem;
}

.-mr-56 {
  margin-right: -14rem;
}

.-mr-6 {
  margin-right: -1.5rem;
}

.-mr-60 {
  margin-right: -15rem;
}

.-mr-64 {
  margin-right: -16rem;
}

.-mr-7 {
  margin-right: -1.75rem;
}

.-mr-72 {
  margin-right: -18rem;
}

.-mr-8 {
  margin-right: -2rem;
}

.-mr-80 {
  margin-right: -20rem;
}

.-mr-9 {
  margin-right: -2.25rem;
}

.-mr-96 {
  margin-right: -24rem;
}

.-mr-px {
  margin-right: -1px;
}

.-ms-0 {
  margin-inline-start: -0px;
}

.-ms-0\.5 {
  margin-inline-start: -0.125rem;
}

.-ms-1 {
  margin-inline-start: -0.25rem;
}

.-ms-1\.5 {
  margin-inline-start: -0.375rem;
}

.-ms-10 {
  margin-inline-start: -2.5rem;
}

.-ms-11 {
  margin-inline-start: -2.75rem;
}

.-ms-12 {
  margin-inline-start: -3rem;
}

.-ms-14 {
  margin-inline-start: -3.5rem;
}

.-ms-16 {
  margin-inline-start: -4rem;
}

.-ms-2 {
  margin-inline-start: -0.5rem;
}

.-ms-2\.5 {
  margin-inline-start: -0.625rem;
}

.-ms-20 {
  margin-inline-start: -5rem;
}

.-ms-24 {
  margin-inline-start: -6rem;
}

.-ms-28 {
  margin-inline-start: -7rem;
}

.-ms-3 {
  margin-inline-start: -0.75rem;
}

.-ms-3\.5 {
  margin-inline-start: -0.875rem;
}

.-ms-32 {
  margin-inline-start: -8rem;
}

.-ms-36 {
  margin-inline-start: -9rem;
}

.-ms-4 {
  margin-inline-start: -1rem;
}

.-ms-40 {
  margin-inline-start: -10rem;
}

.-ms-44 {
  margin-inline-start: -11rem;
}

.-ms-48 {
  margin-inline-start: -12rem;
}

.-ms-5 {
  margin-inline-start: -1.25rem;
}

.-ms-52 {
  margin-inline-start: -13rem;
}

.-ms-56 {
  margin-inline-start: -14rem;
}

.-ms-6 {
  margin-inline-start: -1.5rem;
}

.-ms-60 {
  margin-inline-start: -15rem;
}

.-ms-64 {
  margin-inline-start: -16rem;
}

.-ms-7 {
  margin-inline-start: -1.75rem;
}

.-ms-72 {
  margin-inline-start: -18rem;
}

.-ms-8 {
  margin-inline-start: -2rem;
}

.-ms-80 {
  margin-inline-start: -20rem;
}

.-ms-9 {
  margin-inline-start: -2.25rem;
}

.-ms-96 {
  margin-inline-start: -24rem;
}

.-ms-px {
  margin-inline-start: -1px;
}

.-mt-0 {
  margin-top: -0px;
}

.-mt-0\.5 {
  margin-top: -0.125rem;
}

.-mt-1 {
  margin-top: -0.25rem;
}

.-mt-1\.5 {
  margin-top: -0.375rem;
}

.-mt-10 {
  margin-top: -2.5rem;
}

.-mt-11 {
  margin-top: -2.75rem;
}

.-mt-12 {
  margin-top: -3rem;
}

.-mt-14 {
  margin-top: -3.5rem;
}

.-mt-16 {
  margin-top: -4rem;
}

.-mt-2 {
  margin-top: -0.5rem;
}

.-mt-2\.5 {
  margin-top: -0.625rem;
}

.-mt-20 {
  margin-top: -5rem;
}

.-mt-24 {
  margin-top: -6rem;
}

.-mt-28 {
  margin-top: -7rem;
}

.-mt-3 {
  margin-top: -0.75rem;
}

.-mt-3\.5 {
  margin-top: -0.875rem;
}

.-mt-32 {
  margin-top: -8rem;
}

.-mt-36 {
  margin-top: -9rem;
}

.-mt-4 {
  margin-top: -1rem;
}

.-mt-40 {
  margin-top: -10rem;
}

.-mt-44 {
  margin-top: -11rem;
}

.-mt-48 {
  margin-top: -12rem;
}

.-mt-5 {
  margin-top: -1.25rem;
}

.-mt-52 {
  margin-top: -13rem;
}

.-mt-56 {
  margin-top: -14rem;
}

.-mt-6 {
  margin-top: -1.5rem;
}

.-mt-60 {
  margin-top: -15rem;
}

.-mt-64 {
  margin-top: -16rem;
}

.-mt-7 {
  margin-top: -1.75rem;
}

.-mt-72 {
  margin-top: -18rem;
}

.-mt-8 {
  margin-top: -2rem;
}

.-mt-80 {
  margin-top: -20rem;
}

.-mt-9 {
  margin-top: -2.25rem;
}

.-mt-96 {
  margin-top: -24rem;
}

.-mt-px {
  margin-top: -1px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-0\.5 {
  margin-bottom: 0.125rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-1\.5 {
  margin-bottom: 0.375rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-11 {
  margin-bottom: 2.75rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-14 {
  margin-bottom: 3.5rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-2\.5 {
  margin-bottom: 0.625rem;
}

.mb-20 {
  margin-bottom: 5rem;
}

.mb-24 {
  margin-bottom: 6rem;
}

.mb-28 {
  margin-bottom: 7rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-3\.5 {
  margin-bottom: 0.875rem;
}

.mb-32 {
  margin-bottom: 8rem;
}

.mb-36 {
  margin-bottom: 9rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-40 {
  margin-bottom: 10rem;
}

.mb-44 {
  margin-bottom: 11rem;
}

.mb-48 {
  margin-bottom: 12rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-52 {
  margin-bottom: 13rem;
}

.mb-56 {
  margin-bottom: 14rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-60 {
  margin-bottom: 15rem;
}

.mb-64 {
  margin-bottom: 16rem;
}

.mb-7 {
  margin-bottom: 1.75rem;
}

.mb-72 {
  margin-bottom: 18rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-80 {
  margin-bottom: 20rem;
}

.mb-9 {
  margin-bottom: 2.25rem;
}

.mb-96 {
  margin-bottom: 24rem;
}

.mb-auto {
  margin-bottom: auto;
}

.mb-px {
  margin-bottom: 1px;
}

.me-0 {
  margin-inline-end: 0px;
}

.me-0\.5 {
  margin-inline-end: 0.125rem;
}

.me-1 {
  margin-inline-end: 0.25rem;
}

.me-1\.5 {
  margin-inline-end: 0.375rem;
}

.me-10 {
  margin-inline-end: 2.5rem;
}

.me-11 {
  margin-inline-end: 2.75rem;
}

.me-12 {
  margin-inline-end: 3rem;
}

.me-14 {
  margin-inline-end: 3.5rem;
}

.me-16 {
  margin-inline-end: 4rem;
}

.me-2 {
  margin-inline-end: 0.5rem;
}

.me-2\.5 {
  margin-inline-end: 0.625rem;
}

.me-20 {
  margin-inline-end: 5rem;
}

.me-24 {
  margin-inline-end: 6rem;
}

.me-28 {
  margin-inline-end: 7rem;
}

.me-3 {
  margin-inline-end: 0.75rem;
}

.me-3\.5 {
  margin-inline-end: 0.875rem;
}

.me-32 {
  margin-inline-end: 8rem;
}

.me-36 {
  margin-inline-end: 9rem;
}

.me-4 {
  margin-inline-end: 1rem;
}

.me-40 {
  margin-inline-end: 10rem;
}

.me-44 {
  margin-inline-end: 11rem;
}

.me-48 {
  margin-inline-end: 12rem;
}

.me-5 {
  margin-inline-end: 1.25rem;
}

.me-52 {
  margin-inline-end: 13rem;
}

.me-56 {
  margin-inline-end: 14rem;
}

.me-6 {
  margin-inline-end: 1.5rem;
}

.me-60 {
  margin-inline-end: 15rem;
}

.me-64 {
  margin-inline-end: 16rem;
}

.me-7 {
  margin-inline-end: 1.75rem;
}

.me-72 {
  margin-inline-end: 18rem;
}

.me-8 {
  margin-inline-end: 2rem;
}

.me-80 {
  margin-inline-end: 20rem;
}

.me-9 {
  margin-inline-end: 2.25rem;
}

.me-96 {
  margin-inline-end: 24rem;
}

.me-auto {
  margin-inline-end: auto;
}

.me-px {
  margin-inline-end: 1px;
}

.ml-0 {
  margin-left: 0px;
}

.ml-0\.5 {
  margin-left: 0.125rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-1\.5 {
  margin-left: 0.375rem;
}

.ml-10 {
  margin-left: 2.5rem;
}

.ml-11 {
  margin-left: 2.75rem;
}

.ml-12 {
  margin-left: 3rem;
}

.ml-14 {
  margin-left: 3.5rem;
}

.ml-16 {
  margin-left: 4rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-2\.5 {
  margin-left: 0.625rem;
}

.ml-20 {
  margin-left: 5rem;
}

.ml-24 {
  margin-left: 6rem;
}

.ml-28 {
  margin-left: 7rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.ml-3\.5 {
  margin-left: 0.875rem;
}

.ml-32 {
  margin-left: 8rem;
}

.ml-36 {
  margin-left: 9rem;
}

.ml-4 {
  margin-left: 1rem;
}

.ml-40 {
  margin-left: 10rem;
}

.ml-44 {
  margin-left: 11rem;
}

.ml-48 {
  margin-left: 12rem;
}

.ml-5 {
  margin-left: 1.25rem;
}

.ml-52 {
  margin-left: 13rem;
}

.ml-56 {
  margin-left: 14rem;
}

.ml-6 {
  margin-left: 1.5rem;
}

.ml-60 {
  margin-left: 15rem;
}

.ml-64 {
  margin-left: 16rem;
}

.ml-7 {
  margin-left: 1.75rem;
}

.ml-72 {
  margin-left: 18rem;
}

.ml-8 {
  margin-left: 2rem;
}

.ml-80 {
  margin-left: 20rem;
}

.ml-9 {
  margin-left: 2.25rem;
}

.ml-96 {
  margin-left: 24rem;
}

.ml-auto {
  margin-left: auto;
}

.ml-px {
  margin-left: 1px;
}

.mr-0 {
  margin-right: 0px;
}

.mr-0\.5 {
  margin-right: 0.125rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-1\.5 {
  margin-right: 0.375rem;
}

.mr-10 {
  margin-right: 2.5rem;
}

.mr-11 {
  margin-right: 2.75rem;
}

.mr-12 {
  margin-right: 3rem;
}

.mr-14 {
  margin-right: 3.5rem;
}

.mr-16 {
  margin-right: 4rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-2\.5 {
  margin-right: 0.625rem;
}

.mr-20 {
  margin-right: 5rem;
}

.mr-24 {
  margin-right: 6rem;
}

.mr-28 {
  margin-right: 7rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mr-3\.5 {
  margin-right: 0.875rem;
}

.mr-32 {
  margin-right: 8rem;
}

.mr-36 {
  margin-right: 9rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mr-40 {
  margin-right: 10rem;
}

.mr-44 {
  margin-right: 11rem;
}

.mr-48 {
  margin-right: 12rem;
}

.mr-5 {
  margin-right: 1.25rem;
}

.mr-52 {
  margin-right: 13rem;
}

.mr-56 {
  margin-right: 14rem;
}

.mr-6 {
  margin-right: 1.5rem;
}

.mr-60 {
  margin-right: 15rem;
}

.mr-64 {
  margin-right: 16rem;
}

.mr-7 {
  margin-right: 1.75rem;
}

.mr-72 {
  margin-right: 18rem;
}

.mr-8 {
  margin-right: 2rem;
}

.mr-80 {
  margin-right: 20rem;
}

.mr-9 {
  margin-right: 2.25rem;
}

.mr-96 {
  margin-right: 24rem;
}

.mr-auto {
  margin-right: auto;
}

.mr-px {
  margin-right: 1px;
}

.ms-0 {
  margin-inline-start: 0px;
}

.ms-0\.5 {
  margin-inline-start: 0.125rem;
}

.ms-1 {
  margin-inline-start: 0.25rem;
}

.ms-1\.5 {
  margin-inline-start: 0.375rem;
}

.ms-10 {
  margin-inline-start: 2.5rem;
}

.ms-11 {
  margin-inline-start: 2.75rem;
}

.ms-12 {
  margin-inline-start: 3rem;
}

.ms-14 {
  margin-inline-start: 3.5rem;
}

.ms-16 {
  margin-inline-start: 4rem;
}

.ms-2 {
  margin-inline-start: 0.5rem;
}

.ms-2\.5 {
  margin-inline-start: 0.625rem;
}

.ms-20 {
  margin-inline-start: 5rem;
}

.ms-24 {
  margin-inline-start: 6rem;
}

.ms-28 {
  margin-inline-start: 7rem;
}

.ms-3 {
  margin-inline-start: 0.75rem;
}

.ms-3\.5 {
  margin-inline-start: 0.875rem;
}

.ms-32 {
  margin-inline-start: 8rem;
}

.ms-36 {
  margin-inline-start: 9rem;
}

.ms-4 {
  margin-inline-start: 1rem;
}

.ms-40 {
  margin-inline-start: 10rem;
}

.ms-44 {
  margin-inline-start: 11rem;
}

.ms-48 {
  margin-inline-start: 12rem;
}

.ms-5 {
  margin-inline-start: 1.25rem;
}

.ms-52 {
  margin-inline-start: 13rem;
}

.ms-56 {
  margin-inline-start: 14rem;
}

.ms-6 {
  margin-inline-start: 1.5rem;
}

.ms-60 {
  margin-inline-start: 15rem;
}

.ms-64 {
  margin-inline-start: 16rem;
}

.ms-7 {
  margin-inline-start: 1.75rem;
}

.ms-72 {
  margin-inline-start: 18rem;
}

.ms-8 {
  margin-inline-start: 2rem;
}

.ms-80 {
  margin-inline-start: 20rem;
}

.ms-9 {
  margin-inline-start: 2.25rem;
}

.ms-96 {
  margin-inline-start: 24rem;
}

.ms-auto {
  margin-inline-start: auto;
}

.ms-px {
  margin-inline-start: 1px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-0\.5 {
  margin-top: 0.125rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-1\.5 {
  margin-top: 0.375rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-11 {
  margin-top: 2.75rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-14 {
  margin-top: 3.5rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-2\.5 {
  margin-top: 0.625rem;
}

.mt-20 {
  margin-top: 5rem;
}

.mt-24 {
  margin-top: 6rem;
}

.mt-28 {
  margin-top: 7rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-3\.5 {
  margin-top: 0.875rem;
}

.mt-32 {
  margin-top: 8rem;
}

.mt-36 {
  margin-top: 9rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-40 {
  margin-top: 10rem;
}

.mt-44 {
  margin-top: 11rem;
}

.mt-48 {
  margin-top: 12rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-52 {
  margin-top: 13rem;
}

.mt-56 {
  margin-top: 14rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-60 {
  margin-top: 15rem;
}

.mt-64 {
  margin-top: 16rem;
}

.mt-7 {
  margin-top: 1.75rem;
}

.mt-72 {
  margin-top: 18rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-80 {
  margin-top: 20rem;
}

.mt-9 {
  margin-top: 2.25rem;
}

.mt-96 {
  margin-top: 24rem;
}

.mt-auto {
  margin-top: auto;
}

.mt-px {
  margin-top: 1px;
}

.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.line-clamp-4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.line-clamp-5 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.line-clamp-6 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.line-clamp-none {
  overflow: visible;
  display: block;
  -webkit-box-orient: horizontal;
  -webkit-line-clamp: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.\!inline {
  display: inline !important;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.table {
  display: table;
}

.inline-table {
  display: inline-table;
}

.table-caption {
  display: table-caption;
}

.table-cell {
  display: table-cell;
}

.table-column {
  display: table-column;
}

.table-column-group {
  display: table-column-group;
}

.table-footer-group {
  display: table-footer-group;
}

.table-header-group {
  display: table-header-group;
}

.table-row-group {
  display: table-row-group;
}

.table-row {
  display: table-row;
}

.flow-root {
  display: flow-root;
}

.grid {
  display: grid;
}

.inline-grid {
  display: inline-grid;
}

.contents {
  display: contents;
}

.list-item {
  display: list-item;
}

.hidden {
  display: none;
}

.aspect-auto {
  aspect-ratio: auto;
}

.aspect-square {
  aspect-ratio: 1 / 1;
}

.aspect-video {
  aspect-ratio: 16 / 9;
}

.size-0 {
  width: 0px;
  height: 0px;
}

.size-0\.5 {
  width: 0.125rem;
  height: 0.125rem;
}

.size-1 {
  width: 0.25rem;
  height: 0.25rem;
}

.size-1\.5 {
  width: 0.375rem;
  height: 0.375rem;
}

.size-1\/12 {
  width: 8.333333%;
  height: 8.333333%;
}

.size-1\/2 {
  width: 50%;
  height: 50%;
}

.size-1\/3 {
  width: 33.333333%;
  height: 33.333333%;
}

.size-1\/4 {
  width: 25%;
  height: 25%;
}

.size-1\/5 {
  width: 20%;
  height: 20%;
}

.size-1\/6 {
  width: 16.666667%;
  height: 16.666667%;
}

.size-10 {
  width: 2.5rem;
  height: 2.5rem;
}

.size-10\/12 {
  width: 83.333333%;
  height: 83.333333%;
}

.size-11 {
  width: 2.75rem;
  height: 2.75rem;
}

.size-11\/12 {
  width: 91.666667%;
  height: 91.666667%;
}

.size-12 {
  width: 3rem;
  height: 3rem;
}

.size-14 {
  width: 3.5rem;
  height: 3.5rem;
}

.size-16 {
  width: 4rem;
  height: 4rem;
}

.size-2 {
  width: 0.5rem;
  height: 0.5rem;
}

.size-2\.5 {
  width: 0.625rem;
  height: 0.625rem;
}

.size-2\/12 {
  width: 16.666667%;
  height: 16.666667%;
}

.size-2\/3 {
  width: 66.666667%;
  height: 66.666667%;
}

.size-2\/4 {
  width: 50%;
  height: 50%;
}

.size-2\/5 {
  width: 40%;
  height: 40%;
}

.size-2\/6 {
  width: 33.333333%;
  height: 33.333333%;
}

.size-20 {
  width: 5rem;
  height: 5rem;
}

.size-24 {
  width: 6rem;
  height: 6rem;
}

.size-28 {
  width: 7rem;
  height: 7rem;
}

.size-3 {
  width: 0.75rem;
  height: 0.75rem;
}

.size-3\.5 {
  width: 0.875rem;
  height: 0.875rem;
}

.size-3\/12 {
  width: 25%;
  height: 25%;
}

.size-3\/4 {
  width: 75%;
  height: 75%;
}

.size-3\/5 {
  width: 60%;
  height: 60%;
}

.size-3\/6 {
  width: 50%;
  height: 50%;
}

.size-32 {
  width: 8rem;
  height: 8rem;
}

.size-36 {
  width: 9rem;
  height: 9rem;
}

.size-4 {
  width: 1rem;
  height: 1rem;
}

.size-4\/12 {
  width: 33.333333%;
  height: 33.333333%;
}

.size-4\/5 {
  width: 80%;
  height: 80%;
}

.size-4\/6 {
  width: 66.666667%;
  height: 66.666667%;
}

.size-40 {
  width: 10rem;
  height: 10rem;
}

.size-44 {
  width: 11rem;
  height: 11rem;
}

.size-48 {
  width: 12rem;
  height: 12rem;
}

.size-5 {
  width: 1.25rem;
  height: 1.25rem;
}

.size-5\/12 {
  width: 41.666667%;
  height: 41.666667%;
}

.size-5\/6 {
  width: 83.333333%;
  height: 83.333333%;
}

.size-52 {
  width: 13rem;
  height: 13rem;
}

.size-56 {
  width: 14rem;
  height: 14rem;
}

.size-6 {
  width: 1.5rem;
  height: 1.5rem;
}

.size-6\/12 {
  width: 50%;
  height: 50%;
}

.size-60 {
  width: 15rem;
  height: 15rem;
}

.size-64 {
  width: 16rem;
  height: 16rem;
}

.size-7 {
  width: 1.75rem;
  height: 1.75rem;
}

.size-7\/12 {
  width: 58.333333%;
  height: 58.333333%;
}

.size-72 {
  width: 18rem;
  height: 18rem;
}

.size-8 {
  width: 2rem;
  height: 2rem;
}

.size-8\/12 {
  width: 66.666667%;
  height: 66.666667%;
}

.size-80 {
  width: 20rem;
  height: 20rem;
}

.size-9 {
  width: 2.25rem;
  height: 2.25rem;
}

.size-9\/12 {
  width: 75%;
  height: 75%;
}

.size-96 {
  width: 24rem;
  height: 24rem;
}

.size-auto {
  width: auto;
  height: auto;
}

.size-fit {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.size-full {
  width: 100%;
  height: 100%;
}

.size-max {
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
}

.size-min {
  width: -moz-min-content;
  width: min-content;
  height: -moz-min-content;
  height: min-content;
}

.size-px {
  width: 1px;
  height: 1px;
}

.h-0 {
  height: 0px;
}

.h-0\.5 {
  height: 0.125rem;
}

.h-1 {
  height: 0.25rem;
}

.h-1\.5 {
  height: 0.375rem;
}

.h-1\/2 {
  height: 50%;
}

.h-1\/3 {
  height: 33.333333%;
}

.h-1\/4 {
  height: 25%;
}

.h-1\/5 {
  height: 20%;
}

.h-1\/6 {
  height: 16.666667%;
}

.h-10 {
  height: 2.5rem;
}

.h-11 {
  height: 2.75rem;
}

.h-12 {
  height: 3rem;
}

.h-14 {
  height: 3.5rem;
}

.h-16 {
  height: 4rem;
}

.h-2 {
  height: 0.5rem;
}

.h-2\.5 {
  height: 0.625rem;
}

.h-2\/3 {
  height: 66.666667%;
}

.h-2\/4 {
  height: 50%;
}

.h-2\/5 {
  height: 40%;
}

.h-2\/6 {
  height: 33.333333%;
}

.h-20 {
  height: 5rem;
}

.h-24 {
  height: 6rem;
}

.h-28 {
  height: 7rem;
}

.h-3 {
  height: 0.75rem;
}

.h-3\.5 {
  height: 0.875rem;
}

.h-3\/4 {
  height: 75%;
}

.h-3\/5 {
  height: 60%;
}

.h-3\/6 {
  height: 50%;
}

.h-32 {
  height: 8rem;
}

.h-36 {
  height: 9rem;
}

.h-4 {
  height: 1rem;
}

.h-4\/5 {
  height: 80%;
}

.h-4\/6 {
  height: 66.666667%;
}

.h-40 {
  height: 10rem;
}

.h-44 {
  height: 11rem;
}

.h-48 {
  height: 12rem;
}

.h-5 {
  height: 1.25rem;
}

.h-5\/6 {
  height: 83.333333%;
}

.h-52 {
  height: 13rem;
}

.h-56 {
  height: 14rem;
}

.h-6 {
  height: 1.5rem;
}

.h-60 {
  height: 15rem;
}

.h-64 {
  height: 16rem;
}

.h-7 {
  height: 1.75rem;
}

.h-72 {
  height: 18rem;
}

.h-8 {
  height: 2rem;
}

.h-80 {
  height: 20rem;
}

.h-9 {
  height: 2.25rem;
}

.h-96 {
  height: 24rem;
}

.h-auto {
  height: auto;
}

.h-dvh {
  height: 100dvh;
}

.h-fit {
  height: -moz-fit-content;
  height: fit-content;
}

.h-full {
  height: 100%;
}

.h-lvh {
  height: 100lvh;
}

.h-max {
  height: -moz-max-content;
  height: max-content;
}

.h-min {
  height: -moz-min-content;
  height: min-content;
}

.h-px {
  height: 1px;
}

.h-screen {
  height: 100vh;
}

.h-screen\/100 {
  height: calc(100vh - 100px);
}

.h-screen\/150 {
  height: calc(100vh - 150px);
}

.h-screen\/2 {
  height: 50vh;
}

.h-screen\/200 {
  height: calc(100vh - 200px);
}

.h-screen\/250 {
  height: calc(100vh - 250px);
}

.h-screen\/3 {
  height: calc(100vh / 3);
}

.h-screen\/300 {
  height: calc(100vh - 300px);
}

.h-screen\/375 {
  height: calc(100vh - 375px);
}

.h-screen\/4 {
  height: calc(100vh / 4);
}

.h-screen\/400 {
  height: calc(100vh - 400px);
}

.h-screen\/5 {
  height: calc(100vh / 5);
}

.h-screen\/header {
  height: calc(100vh - 65px);
}

.h-screen\/mobile {
  height: -webkit-fill-available;
}

.h-svh {
  height: 100svh;
}

.max-h-0 {
  max-height: 0px;
}

.max-h-0\.5 {
  max-height: 0.125rem;
}

.max-h-1 {
  max-height: 0.25rem;
}

.max-h-1\.5 {
  max-height: 0.375rem;
}

.max-h-10 {
  max-height: 2.5rem;
}

.max-h-11 {
  max-height: 2.75rem;
}

.max-h-12 {
  max-height: 3rem;
}

.max-h-14 {
  max-height: 3.5rem;
}

.max-h-16 {
  max-height: 4rem;
}

.max-h-2 {
  max-height: 0.5rem;
}

.max-h-2\.5 {
  max-height: 0.625rem;
}

.max-h-20 {
  max-height: 5rem;
}

.max-h-24 {
  max-height: 6rem;
}

.max-h-28 {
  max-height: 7rem;
}

.max-h-3 {
  max-height: 0.75rem;
}

.max-h-3\.5 {
  max-height: 0.875rem;
}

.max-h-32 {
  max-height: 8rem;
}

.max-h-36 {
  max-height: 9rem;
}

.max-h-4 {
  max-height: 1rem;
}

.max-h-40 {
  max-height: 10rem;
}

.max-h-44 {
  max-height: 11rem;
}

.max-h-48 {
  max-height: 12rem;
}

.max-h-5 {
  max-height: 1.25rem;
}

.max-h-52 {
  max-height: 13rem;
}

.max-h-56 {
  max-height: 14rem;
}

.max-h-6 {
  max-height: 1.5rem;
}

.max-h-60 {
  max-height: 15rem;
}

.max-h-64 {
  max-height: 16rem;
}

.max-h-7 {
  max-height: 1.75rem;
}

.max-h-72 {
  max-height: 18rem;
}

.max-h-8 {
  max-height: 2rem;
}

.max-h-80 {
  max-height: 20rem;
}

.max-h-9 {
  max-height: 2.25rem;
}

.max-h-96 {
  max-height: 24rem;
}

.max-h-dvh {
  max-height: 100dvh;
}

.max-h-fit {
  max-height: -moz-fit-content;
  max-height: fit-content;
}

.max-h-full {
  max-height: 100%;
}

.max-h-lvh {
  max-height: 100lvh;
}

.max-h-max {
  max-height: -moz-max-content;
  max-height: max-content;
}

.max-h-min {
  max-height: -moz-min-content;
  max-height: min-content;
}

.max-h-none {
  max-height: none;
}

.max-h-px {
  max-height: 1px;
}

.max-h-screen {
  max-height: 100vh;
}

.max-h-svh {
  max-height: 100svh;
}

.min-h-0 {
  min-height: 0px;
}

.min-h-0\.5 {
  min-height: 0.125rem;
}

.min-h-1 {
  min-height: 0.25rem;
}

.min-h-1\.5 {
  min-height: 0.375rem;
}

.min-h-10 {
  min-height: 2.5rem;
}

.min-h-11 {
  min-height: 2.75rem;
}

.min-h-12 {
  min-height: 3rem;
}

.min-h-14 {
  min-height: 3.5rem;
}

.min-h-16 {
  min-height: 4rem;
}

.min-h-2 {
  min-height: 0.5rem;
}

.min-h-2\.5 {
  min-height: 0.625rem;
}

.min-h-20 {
  min-height: 5rem;
}

.min-h-24 {
  min-height: 6rem;
}

.min-h-28 {
  min-height: 7rem;
}

.min-h-3 {
  min-height: 0.75rem;
}

.min-h-3\.5 {
  min-height: 0.875rem;
}

.min-h-32 {
  min-height: 8rem;
}

.min-h-36 {
  min-height: 9rem;
}

.min-h-4 {
  min-height: 1rem;
}

.min-h-40 {
  min-height: 10rem;
}

.min-h-44 {
  min-height: 11rem;
}

.min-h-48 {
  min-height: 12rem;
}

.min-h-5 {
  min-height: 1.25rem;
}

.min-h-52 {
  min-height: 13rem;
}

.min-h-56 {
  min-height: 14rem;
}

.min-h-6 {
  min-height: 1.5rem;
}

.min-h-60 {
  min-height: 15rem;
}

.min-h-64 {
  min-height: 16rem;
}

.min-h-7 {
  min-height: 1.75rem;
}

.min-h-72 {
  min-height: 18rem;
}

.min-h-8 {
  min-height: 2rem;
}

.min-h-80 {
  min-height: 20rem;
}

.min-h-9 {
  min-height: 2.25rem;
}

.min-h-96 {
  min-height: 24rem;
}

.min-h-\[280px\] {
  min-height: 280px;
}

.min-h-dvh {
  min-height: 100dvh;
}

.min-h-fit {
  min-height: -moz-fit-content;
  min-height: fit-content;
}

.min-h-full {
  min-height: 100%;
}

.min-h-lvh {
  min-height: 100lvh;
}

.min-h-max {
  min-height: -moz-max-content;
  min-height: max-content;
}

.min-h-min {
  min-height: -moz-min-content;
  min-height: min-content;
}

.min-h-px {
  min-height: 1px;
}

.min-h-screen {
  min-height: 100vh;
}

.min-h-svh {
  min-height: 100svh;
}

.w-0 {
  width: 0px;
}

.w-0\.5 {
  width: 0.125rem;
}

.w-1 {
  width: 0.25rem;
}

.w-1\.5 {
  width: 0.375rem;
}

.w-1\/12 {
  width: 8.333333%;
}

.w-1\/2 {
  width: 50%;
}

.w-1\/3 {
  width: 33.333333%;
}

.w-1\/4 {
  width: 25%;
}

.w-1\/5 {
  width: 20%;
}

.w-1\/6 {
  width: 16.666667%;
}

.w-10 {
  width: 2.5rem;
}

.w-10\/12 {
  width: 83.333333%;
}

.w-11 {
  width: 2.75rem;
}

.w-11\/12 {
  width: 91.666667%;
}

.w-12 {
  width: 3rem;
}

.w-14 {
  width: 3.5rem;
}

.w-16 {
  width: 4rem;
}

.w-2 {
  width: 0.5rem;
}

.w-2\.5 {
  width: 0.625rem;
}

.w-2\/12 {
  width: 16.666667%;
}

.w-2\/3 {
  width: 66.666667%;
}

.w-2\/4 {
  width: 50%;
}

.w-2\/5 {
  width: 40%;
}

.w-2\/6 {
  width: 33.333333%;
}

.w-20 {
  width: 5rem;
}

.w-24 {
  width: 6rem;
}

.w-28 {
  width: 7rem;
}

.w-3 {
  width: 0.75rem;
}

.w-3\.5 {
  width: 0.875rem;
}

.w-3\/12 {
  width: 25%;
}

.w-3\/4 {
  width: 75%;
}

.w-3\/5 {
  width: 60%;
}

.w-3\/6 {
  width: 50%;
}

.w-32 {
  width: 8rem;
}

.w-36 {
  width: 9rem;
}

.w-4 {
  width: 1rem;
}

.w-4\/12 {
  width: 33.333333%;
}

.w-4\/5 {
  width: 80%;
}

.w-4\/6 {
  width: 66.666667%;
}

.w-40 {
  width: 10rem;
}

.w-44 {
  width: 11rem;
}

.w-48 {
  width: 12rem;
}

.w-5 {
  width: 1.25rem;
}

.w-5\/12 {
  width: 41.666667%;
}

.w-5\/6 {
  width: 83.333333%;
}

.w-52 {
  width: 13rem;
}

.w-56 {
  width: 14rem;
}

.w-6 {
  width: 1.5rem;
}

.w-6\/12 {
  width: 50%;
}

.w-60 {
  width: 15rem;
}

.w-64 {
  width: 16rem;
}

.w-7 {
  width: 1.75rem;
}

.w-7\/12 {
  width: 58.333333%;
}

.w-72 {
  width: 18rem;
}

.w-8 {
  width: 2rem;
}

.w-8\/12 {
  width: 66.666667%;
}

.w-80 {
  width: 20rem;
}

.w-9 {
  width: 2.25rem;
}

.w-9\/12 {
  width: 75%;
}

.w-96 {
  width: 24rem;
}

.w-auto {
  width: auto;
}

.w-dvw {
  width: 100dvw;
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

.w-full {
  width: 100%;
}

.w-lvw {
  width: 100lvw;
}

.w-max {
  width: -moz-max-content;
  width: max-content;
}

.w-min {
  width: -moz-min-content;
  width: min-content;
}

.w-px {
  width: 1px;
}

.w-screen {
  width: 100vw;
}

.w-svw {
  width: 100svw;
}

.min-w-0 {
  min-width: 0px;
}

.min-w-0\.5 {
  min-width: 0.125rem;
}

.min-w-1 {
  min-width: 0.25rem;
}

.min-w-1\.5 {
  min-width: 0.375rem;
}

.min-w-10 {
  min-width: 2.5rem;
}

.min-w-11 {
  min-width: 2.75rem;
}

.min-w-12 {
  min-width: 3rem;
}

.min-w-14 {
  min-width: 3.5rem;
}

.min-w-16 {
  min-width: 4rem;
}

.min-w-2 {
  min-width: 0.5rem;
}

.min-w-2\.5 {
  min-width: 0.625rem;
}

.min-w-20 {
  min-width: 5rem;
}

.min-w-24 {
  min-width: 6rem;
}

.min-w-28 {
  min-width: 7rem;
}

.min-w-3 {
  min-width: 0.75rem;
}

.min-w-3\.5 {
  min-width: 0.875rem;
}

.min-w-32 {
  min-width: 8rem;
}

.min-w-36 {
  min-width: 9rem;
}

.min-w-4 {
  min-width: 1rem;
}

.min-w-40 {
  min-width: 10rem;
}

.min-w-44 {
  min-width: 11rem;
}

.min-w-48 {
  min-width: 12rem;
}

.min-w-5 {
  min-width: 1.25rem;
}

.min-w-52 {
  min-width: 13rem;
}

.min-w-56 {
  min-width: 14rem;
}

.min-w-6 {
  min-width: 1.5rem;
}

.min-w-60 {
  min-width: 15rem;
}

.min-w-64 {
  min-width: 16rem;
}

.min-w-7 {
  min-width: 1.75rem;
}

.min-w-72 {
  min-width: 18rem;
}

.min-w-8 {
  min-width: 2rem;
}

.min-w-80 {
  min-width: 20rem;
}

.min-w-9 {
  min-width: 2.25rem;
}

.min-w-96 {
  min-width: 24rem;
}

.min-w-fit {
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.min-w-full {
  min-width: 100%;
}

.min-w-max {
  min-width: -moz-max-content;
  min-width: max-content;
}

.min-w-min {
  min-width: -moz-min-content;
  min-width: min-content;
}

.min-w-px {
  min-width: 1px;
}

.max-w-0 {
  max-width: 0px;
}

.max-w-0\.5 {
  max-width: 0.125rem;
}

.max-w-1 {
  max-width: 0.25rem;
}

.max-w-1\.5 {
  max-width: 0.375rem;
}

.max-w-10 {
  max-width: 2.5rem;
}

.max-w-11 {
  max-width: 2.75rem;
}

.max-w-12 {
  max-width: 3rem;
}

.max-w-14 {
  max-width: 3.5rem;
}

.max-w-16 {
  max-width: 4rem;
}

.max-w-2 {
  max-width: 0.5rem;
}

.max-w-2\.5 {
  max-width: 0.625rem;
}

.max-w-20 {
  max-width: 5rem;
}

.max-w-24 {
  max-width: 6rem;
}

.max-w-28 {
  max-width: 7rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3 {
  max-width: 0.75rem;
}

.max-w-3\.5 {
  max-width: 0.875rem;
}

.max-w-32 {
  max-width: 8rem;
}

.max-w-36 {
  max-width: 9rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4 {
  max-width: 1rem;
}

.max-w-40 {
  max-width: 10rem;
}

.max-w-44 {
  max-width: 11rem;
}

.max-w-48 {
  max-width: 12rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-5 {
  max-width: 1.25rem;
}

.max-w-52 {
  max-width: 13rem;
}

.max-w-56 {
  max-width: 14rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-6 {
  max-width: 1.5rem;
}

.max-w-60 {
  max-width: 15rem;
}

.max-w-64 {
  max-width: 16rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.max-w-7 {
  max-width: 1.75rem;
}

.max-w-72 {
  max-width: 18rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.max-w-8 {
  max-width: 2rem;
}

.max-w-80 {
  max-width: 20rem;
}

.max-w-9 {
  max-width: 2.25rem;
}

.max-w-96 {
  max-width: 24rem;
}

.max-w-fit {
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.max-w-full {
  max-width: 100%;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-max {
  max-width: -moz-max-content;
  max-width: max-content;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-min {
  max-width: -moz-min-content;
  max-width: min-content;
}

.max-w-none {
  max-width: none;
}

.max-w-prose {
  max-width: 65ch;
}

.max-w-px {
  max-width: 1px;
}

.max-w-screen-2xl {
  max-width: 1536px;
}

.max-w-screen-lg {
  max-width: 1024px;
}

.max-w-screen-md {
  max-width: 768px;
}

.max-w-screen-sm {
  max-width: 640px;
}

.max-w-screen-xl {
  max-width: 1280px;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-xs {
  max-width: 20rem;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-auto {
  flex: 1 1 auto;
}

.flex-initial {
  flex: 0 1 auto;
}

.flex-none {
  flex: none;
}

.flex-shrink {
  flex-shrink: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.shrink {
  flex-shrink: 1;
}

.shrink-0 {
  flex-shrink: 0;
}

.flex-grow {
  flex-grow: 1;
}

.flex-grow-0 {
  flex-grow: 0;
}

.grow {
  flex-grow: 1;
}

.grow-0 {
  flex-grow: 0;
}

.basis-0 {
  flex-basis: 0px;
}

.basis-0\.5 {
  flex-basis: 0.125rem;
}

.basis-1 {
  flex-basis: 0.25rem;
}

.basis-1\.5 {
  flex-basis: 0.375rem;
}

.basis-1\/12 {
  flex-basis: 8.333333%;
}

.basis-1\/2 {
  flex-basis: 50%;
}

.basis-1\/3 {
  flex-basis: 33.333333%;
}

.basis-1\/4 {
  flex-basis: 25%;
}

.basis-1\/5 {
  flex-basis: 20%;
}

.basis-1\/6 {
  flex-basis: 16.666667%;
}

.basis-10 {
  flex-basis: 2.5rem;
}

.basis-10\/12 {
  flex-basis: 83.333333%;
}

.basis-11 {
  flex-basis: 2.75rem;
}

.basis-11\/12 {
  flex-basis: 91.666667%;
}

.basis-12 {
  flex-basis: 3rem;
}

.basis-14 {
  flex-basis: 3.5rem;
}

.basis-16 {
  flex-basis: 4rem;
}

.basis-2 {
  flex-basis: 0.5rem;
}

.basis-2\.5 {
  flex-basis: 0.625rem;
}

.basis-2\/12 {
  flex-basis: 16.666667%;
}

.basis-2\/3 {
  flex-basis: 66.666667%;
}

.basis-2\/4 {
  flex-basis: 50%;
}

.basis-2\/5 {
  flex-basis: 40%;
}

.basis-2\/6 {
  flex-basis: 33.333333%;
}

.basis-20 {
  flex-basis: 5rem;
}

.basis-24 {
  flex-basis: 6rem;
}

.basis-28 {
  flex-basis: 7rem;
}

.basis-3 {
  flex-basis: 0.75rem;
}

.basis-3\.5 {
  flex-basis: 0.875rem;
}

.basis-3\/12 {
  flex-basis: 25%;
}

.basis-3\/4 {
  flex-basis: 75%;
}

.basis-3\/5 {
  flex-basis: 60%;
}

.basis-3\/6 {
  flex-basis: 50%;
}

.basis-32 {
  flex-basis: 8rem;
}

.basis-36 {
  flex-basis: 9rem;
}

.basis-4 {
  flex-basis: 1rem;
}

.basis-4\/12 {
  flex-basis: 33.333333%;
}

.basis-4\/5 {
  flex-basis: 80%;
}

.basis-4\/6 {
  flex-basis: 66.666667%;
}

.basis-40 {
  flex-basis: 10rem;
}

.basis-44 {
  flex-basis: 11rem;
}

.basis-48 {
  flex-basis: 12rem;
}

.basis-5 {
  flex-basis: 1.25rem;
}

.basis-5\/12 {
  flex-basis: 41.666667%;
}

.basis-5\/6 {
  flex-basis: 83.333333%;
}

.basis-52 {
  flex-basis: 13rem;
}

.basis-56 {
  flex-basis: 14rem;
}

.basis-6 {
  flex-basis: 1.5rem;
}

.basis-6\/12 {
  flex-basis: 50%;
}

.basis-60 {
  flex-basis: 15rem;
}

.basis-64 {
  flex-basis: 16rem;
}

.basis-7 {
  flex-basis: 1.75rem;
}

.basis-7\/12 {
  flex-basis: 58.333333%;
}

.basis-72 {
  flex-basis: 18rem;
}

.basis-8 {
  flex-basis: 2rem;
}

.basis-8\/12 {
  flex-basis: 66.666667%;
}

.basis-80 {
  flex-basis: 20rem;
}

.basis-9 {
  flex-basis: 2.25rem;
}

.basis-9\/12 {
  flex-basis: 75%;
}

.basis-96 {
  flex-basis: 24rem;
}

.basis-auto {
  flex-basis: auto;
}

.basis-full {
  flex-basis: 100%;
}

.basis-px {
  flex-basis: 1px;
}

.caption-top {
  caption-side: top;
}

.caption-bottom {
  caption-side: bottom;
}

.border-spacing-0 {
  --tw-border-spacing-x: 0px;
  --tw-border-spacing-y: 0px;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-0\.5 {
  --tw-border-spacing-x: 0.125rem;
  --tw-border-spacing-y: 0.125rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-1 {
  --tw-border-spacing-x: 0.25rem;
  --tw-border-spacing-y: 0.25rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-1\.5 {
  --tw-border-spacing-x: 0.375rem;
  --tw-border-spacing-y: 0.375rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-10 {
  --tw-border-spacing-x: 2.5rem;
  --tw-border-spacing-y: 2.5rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-11 {
  --tw-border-spacing-x: 2.75rem;
  --tw-border-spacing-y: 2.75rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-12 {
  --tw-border-spacing-x: 3rem;
  --tw-border-spacing-y: 3rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-14 {
  --tw-border-spacing-x: 3.5rem;
  --tw-border-spacing-y: 3.5rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-16 {
  --tw-border-spacing-x: 4rem;
  --tw-border-spacing-y: 4rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-2 {
  --tw-border-spacing-x: 0.5rem;
  --tw-border-spacing-y: 0.5rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-2\.5 {
  --tw-border-spacing-x: 0.625rem;
  --tw-border-spacing-y: 0.625rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-20 {
  --tw-border-spacing-x: 5rem;
  --tw-border-spacing-y: 5rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-24 {
  --tw-border-spacing-x: 6rem;
  --tw-border-spacing-y: 6rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-28 {
  --tw-border-spacing-x: 7rem;
  --tw-border-spacing-y: 7rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-3 {
  --tw-border-spacing-x: 0.75rem;
  --tw-border-spacing-y: 0.75rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-3\.5 {
  --tw-border-spacing-x: 0.875rem;
  --tw-border-spacing-y: 0.875rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-32 {
  --tw-border-spacing-x: 8rem;
  --tw-border-spacing-y: 8rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-36 {
  --tw-border-spacing-x: 9rem;
  --tw-border-spacing-y: 9rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-4 {
  --tw-border-spacing-x: 1rem;
  --tw-border-spacing-y: 1rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-40 {
  --tw-border-spacing-x: 10rem;
  --tw-border-spacing-y: 10rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-44 {
  --tw-border-spacing-x: 11rem;
  --tw-border-spacing-y: 11rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-48 {
  --tw-border-spacing-x: 12rem;
  --tw-border-spacing-y: 12rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-5 {
  --tw-border-spacing-x: 1.25rem;
  --tw-border-spacing-y: 1.25rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-52 {
  --tw-border-spacing-x: 13rem;
  --tw-border-spacing-y: 13rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-56 {
  --tw-border-spacing-x: 14rem;
  --tw-border-spacing-y: 14rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-6 {
  --tw-border-spacing-x: 1.5rem;
  --tw-border-spacing-y: 1.5rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-60 {
  --tw-border-spacing-x: 15rem;
  --tw-border-spacing-y: 15rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-64 {
  --tw-border-spacing-x: 16rem;
  --tw-border-spacing-y: 16rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-7 {
  --tw-border-spacing-x: 1.75rem;
  --tw-border-spacing-y: 1.75rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-72 {
  --tw-border-spacing-x: 18rem;
  --tw-border-spacing-y: 18rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-8 {
  --tw-border-spacing-x: 2rem;
  --tw-border-spacing-y: 2rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-80 {
  --tw-border-spacing-x: 20rem;
  --tw-border-spacing-y: 20rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-9 {
  --tw-border-spacing-x: 2.25rem;
  --tw-border-spacing-y: 2.25rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-96 {
  --tw-border-spacing-x: 24rem;
  --tw-border-spacing-y: 24rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-px {
  --tw-border-spacing-x: 1px;
  --tw-border-spacing-y: 1px;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-0 {
  --tw-border-spacing-x: 0px;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-0\.5 {
  --tw-border-spacing-x: 0.125rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-1 {
  --tw-border-spacing-x: 0.25rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-1\.5 {
  --tw-border-spacing-x: 0.375rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-10 {
  --tw-border-spacing-x: 2.5rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-11 {
  --tw-border-spacing-x: 2.75rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-12 {
  --tw-border-spacing-x: 3rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-14 {
  --tw-border-spacing-x: 3.5rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-16 {
  --tw-border-spacing-x: 4rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-2 {
  --tw-border-spacing-x: 0.5rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-2\.5 {
  --tw-border-spacing-x: 0.625rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-20 {
  --tw-border-spacing-x: 5rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-24 {
  --tw-border-spacing-x: 6rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-28 {
  --tw-border-spacing-x: 7rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-3 {
  --tw-border-spacing-x: 0.75rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-3\.5 {
  --tw-border-spacing-x: 0.875rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-32 {
  --tw-border-spacing-x: 8rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-36 {
  --tw-border-spacing-x: 9rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-4 {
  --tw-border-spacing-x: 1rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-40 {
  --tw-border-spacing-x: 10rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-44 {
  --tw-border-spacing-x: 11rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-48 {
  --tw-border-spacing-x: 12rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-5 {
  --tw-border-spacing-x: 1.25rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-52 {
  --tw-border-spacing-x: 13rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-56 {
  --tw-border-spacing-x: 14rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-6 {
  --tw-border-spacing-x: 1.5rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-60 {
  --tw-border-spacing-x: 15rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-64 {
  --tw-border-spacing-x: 16rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-7 {
  --tw-border-spacing-x: 1.75rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-72 {
  --tw-border-spacing-x: 18rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-8 {
  --tw-border-spacing-x: 2rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-80 {
  --tw-border-spacing-x: 20rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-9 {
  --tw-border-spacing-x: 2.25rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-96 {
  --tw-border-spacing-x: 24rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-x-px {
  --tw-border-spacing-x: 1px;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-0 {
  --tw-border-spacing-y: 0px;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-0\.5 {
  --tw-border-spacing-y: 0.125rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-1 {
  --tw-border-spacing-y: 0.25rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-1\.5 {
  --tw-border-spacing-y: 0.375rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-10 {
  --tw-border-spacing-y: 2.5rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-11 {
  --tw-border-spacing-y: 2.75rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-12 {
  --tw-border-spacing-y: 3rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-14 {
  --tw-border-spacing-y: 3.5rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-16 {
  --tw-border-spacing-y: 4rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-2 {
  --tw-border-spacing-y: 0.5rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-2\.5 {
  --tw-border-spacing-y: 0.625rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-20 {
  --tw-border-spacing-y: 5rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-24 {
  --tw-border-spacing-y: 6rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-28 {
  --tw-border-spacing-y: 7rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-3 {
  --tw-border-spacing-y: 0.75rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-3\.5 {
  --tw-border-spacing-y: 0.875rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-32 {
  --tw-border-spacing-y: 8rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-36 {
  --tw-border-spacing-y: 9rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-4 {
  --tw-border-spacing-y: 1rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-40 {
  --tw-border-spacing-y: 10rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-44 {
  --tw-border-spacing-y: 11rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-48 {
  --tw-border-spacing-y: 12rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-5 {
  --tw-border-spacing-y: 1.25rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-52 {
  --tw-border-spacing-y: 13rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-56 {
  --tw-border-spacing-y: 14rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-6 {
  --tw-border-spacing-y: 1.5rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-60 {
  --tw-border-spacing-y: 15rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-64 {
  --tw-border-spacing-y: 16rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-7 {
  --tw-border-spacing-y: 1.75rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-72 {
  --tw-border-spacing-y: 18rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-8 {
  --tw-border-spacing-y: 2rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-80 {
  --tw-border-spacing-y: 20rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-9 {
  --tw-border-spacing-y: 2.25rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-96 {
  --tw-border-spacing-y: 24rem;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.border-spacing-y-px {
  --tw-border-spacing-y: 1px;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.-scale-0 {
  --tw-scale-x: 0;
  --tw-scale-y: 0;
  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));
}

.-scale-100 {
  --tw-scale-x: -1;
  --tw-scale-y: -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));
}

.-scale-105 {
  --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(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-scale-110 {
  --tw-scale-x: -1.1;
  --tw-scale-y: -1.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));
}

.-scale-125 {
  --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(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-scale-150 {
  --tw-scale-x: -1.5;
  --tw-scale-y: -1.5;
  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));
}

.-scale-50 {
  --tw-scale-x: -.5;
  --tw-scale-y: -.5;
  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));
}

.-scale-75 {
  --tw-scale-x: -.75;
  --tw-scale-y: -.75;
  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));
}

.-scale-90 {
  --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(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-scale-95 {
  --tw-scale-x: -.95;
  --tw-scale-y: -.95;
  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));
}

.scale-0 {
  --tw-scale-x: 0;
  --tw-scale-y: 0;
  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));
}

.scale-100 {
  --tw-scale-x: 1;
  --tw-scale-y: 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));
}

.scale-105 {
  --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(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.scale-110 {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.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));
}

.scale-125 {
  --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(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.scale-150 {
  --tw-scale-x: 1.5;
  --tw-scale-y: 1.5;
  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));
}

.scale-50 {
  --tw-scale-x: .5;
  --tw-scale-y: .5;
  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));
}

.scale-75 {
  --tw-scale-x: .75;
  --tw-scale-y: .75;
  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));
}

.scale-90 {
  --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(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.scale-95 {
  --tw-scale-x: .95;
  --tw-scale-y: .95;
  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));
}

.-scale-x-0 {
  --tw-scale-x: 0;
  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));
}

.-scale-x-100 {
  --tw-scale-x: -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));
}

.-scale-x-105 {
  --tw-scale-x: -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));
}

.-scale-x-110 {
  --tw-scale-x: -1.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));
}

.-scale-x-125 {
  --tw-scale-x: -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));
}

.-scale-x-150 {
  --tw-scale-x: -1.5;
  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));
}

.-scale-x-50 {
  --tw-scale-x: -.5;
  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));
}

.-scale-x-75 {
  --tw-scale-x: -.75;
  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));
}

.-scale-x-90 {
  --tw-scale-x: -.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));
}

.-scale-x-95 {
  --tw-scale-x: -.95;
  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));
}

.-scale-y-0 {
  --tw-scale-y: 0;
  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));
}

.-scale-y-100 {
  --tw-scale-y: -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));
}

.-scale-y-105 {
  --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(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-scale-y-110 {
  --tw-scale-y: -1.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));
}

.-scale-y-125 {
  --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(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-scale-y-150 {
  --tw-scale-y: -1.5;
  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));
}

.-scale-y-50 {
  --tw-scale-y: -.5;
  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));
}

.-scale-y-75 {
  --tw-scale-y: -.75;
  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));
}

.-scale-y-90 {
  --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(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-scale-y-95 {
  --tw-scale-y: -.95;
  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));
}

.scale-x-0 {
  --tw-scale-x: 0;
  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));
}

.scale-x-100 {
  --tw-scale-x: 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));
}

.scale-x-105 {
  --tw-scale-x: 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));
}

.scale-x-110 {
  --tw-scale-x: 1.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));
}

.scale-x-125 {
  --tw-scale-x: 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));
}

.scale-x-150 {
  --tw-scale-x: 1.5;
  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));
}

.scale-x-50 {
  --tw-scale-x: .5;
  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));
}

.scale-x-75 {
  --tw-scale-x: .75;
  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));
}

.scale-x-90 {
  --tw-scale-x: .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));
}

.scale-x-95 {
  --tw-scale-x: .95;
  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));
}

.scale-y-0 {
  --tw-scale-y: 0;
  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));
}

.scale-y-100 {
  --tw-scale-y: 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));
}

.scale-y-105 {
  --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(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.scale-y-110 {
  --tw-scale-y: 1.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));
}

.scale-y-125 {
  --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(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.scale-y-150 {
  --tw-scale-y: 1.5;
  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));
}

.scale-y-50 {
  --tw-scale-y: .5;
  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));
}

.scale-y-75 {
  --tw-scale-y: .75;
  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));
}

.scale-y-90 {
  --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(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.scale-y-95 {
  --tw-scale-y: .95;
  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));
}

.transform-cpu {
  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-gpu {
  transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform-none {
  transform: none;
}

.cursor-alias {
  cursor: alias;
}

.cursor-all-scroll {
  cursor: all-scroll;
}

.cursor-auto {
  cursor: auto;
}

.cursor-cell {
  cursor: cell;
}

.cursor-col-resize {
  cursor: col-resize;
}

.cursor-context-menu {
  cursor: context-menu;
}

.cursor-copy {
  cursor: copy;
}

.cursor-crosshair {
  cursor: crosshair;
}

.cursor-default {
  cursor: default;
}

.cursor-e-resize {
  cursor: e-resize;
}

.cursor-ew-resize {
  cursor: ew-resize;
}

.cursor-grab {
  cursor: grab;
}

.cursor-grabbing {
  cursor: grabbing;
}

.cursor-help {
  cursor: help;
}

.cursor-move {
  cursor: move;
}

.cursor-n-resize {
  cursor: n-resize;
}

.cursor-ne-resize {
  cursor: ne-resize;
}

.cursor-nesw-resize {
  cursor: nesw-resize;
}

.cursor-no-drop {
  cursor: no-drop;
}

.cursor-none {
  cursor: none;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.cursor-ns-resize {
  cursor: ns-resize;
}

.cursor-nw-resize {
  cursor: nw-resize;
}

.cursor-nwse-resize {
  cursor: nwse-resize;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-progress {
  cursor: progress;
}

.cursor-row-resize {
  cursor: row-resize;
}

.cursor-s-resize {
  cursor: s-resize;
}

.cursor-se-resize {
  cursor: se-resize;
}

.cursor-sw-resize {
  cursor: sw-resize;
}

.cursor-text {
  cursor: text;
}

.cursor-vertical-text {
  cursor: vertical-text;
}

.cursor-w-resize {
  cursor: w-resize;
}

.cursor-wait {
  cursor: wait;
}

.cursor-zoom-in {
  cursor: zoom-in;
}

.cursor-zoom-out {
  cursor: zoom-out;
}

.touch-auto {
  touch-action: auto;
}

.touch-none {
  touch-action: none;
}

.touch-pan-x {
  --tw-pan-x: pan-x;
  touch-action: var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom);
}

.touch-pan-left {
  --tw-pan-x: pan-left;
  touch-action: var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom);
}

.touch-pan-right {
  --tw-pan-x: pan-right;
  touch-action: var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom);
}

.touch-pan-y {
  --tw-pan-y: pan-y;
  touch-action: var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom);
}

.touch-pan-up {
  --tw-pan-y: pan-up;
  touch-action: var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom);
}

.touch-pan-down {
  --tw-pan-y: pan-down;
  touch-action: var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom);
}

.touch-pinch-zoom {
  --tw-pinch-zoom: pinch-zoom;
  touch-action: var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom);
}

.touch-manipulation {
  touch-action: manipulation;
}

.resize-none {
  resize: none;
}

.resize-y {
  resize: vertical;
}

.resize-x {
  resize: horizontal;
}

.resize {
  resize: both;
}

.snap-none {
  scroll-snap-type: none;
}

.snap-x {
  scroll-snap-type: x var(--tw-scroll-snap-strictness);
}

.snap-y {
  scroll-snap-type: y var(--tw-scroll-snap-strictness);
}

.snap-both {
  scroll-snap-type: both var(--tw-scroll-snap-strictness);
}

.snap-mandatory {
  --tw-scroll-snap-strictness: mandatory;
}

.snap-proximity {
  --tw-scroll-snap-strictness: proximity;
}

.snap-start {
  scroll-snap-align: start;
}

.snap-end {
  scroll-snap-align: end;
}

.snap-center {
  scroll-snap-align: center;
}

.snap-align-none {
  scroll-snap-align: none;
}

.snap-normal {
  scroll-snap-stop: normal;
}

.snap-always {
  scroll-snap-stop: always;
}

.-scroll-m-0 {
  scroll-margin: -0px;
}

.-scroll-m-0\.5 {
  scroll-margin: -0.125rem;
}

.-scroll-m-1 {
  scroll-margin: -0.25rem;
}

.-scroll-m-1\.5 {
  scroll-margin: -0.375rem;
}

.-scroll-m-10 {
  scroll-margin: -2.5rem;
}

.-scroll-m-11 {
  scroll-margin: -2.75rem;
}

.-scroll-m-12 {
  scroll-margin: -3rem;
}

.-scroll-m-14 {
  scroll-margin: -3.5rem;
}

.-scroll-m-16 {
  scroll-margin: -4rem;
}

.-scroll-m-2 {
  scroll-margin: -0.5rem;
}

.-scroll-m-2\.5 {
  scroll-margin: -0.625rem;
}

.-scroll-m-20 {
  scroll-margin: -5rem;
}

.-scroll-m-24 {
  scroll-margin: -6rem;
}

.-scroll-m-28 {
  scroll-margin: -7rem;
}

.-scroll-m-3 {
  scroll-margin: -0.75rem;
}

.-scroll-m-3\.5 {
  scroll-margin: -0.875rem;
}

.-scroll-m-32 {
  scroll-margin: -8rem;
}

.-scroll-m-36 {
  scroll-margin: -9rem;
}

.-scroll-m-4 {
  scroll-margin: -1rem;
}

.-scroll-m-40 {
  scroll-margin: -10rem;
}

.-scroll-m-44 {
  scroll-margin: -11rem;
}

.-scroll-m-48 {
  scroll-margin: -12rem;
}

.-scroll-m-5 {
  scroll-margin: -1.25rem;
}

.-scroll-m-52 {
  scroll-margin: -13rem;
}

.-scroll-m-56 {
  scroll-margin: -14rem;
}

.-scroll-m-6 {
  scroll-margin: -1.5rem;
}

.-scroll-m-60 {
  scroll-margin: -15rem;
}

.-scroll-m-64 {
  scroll-margin: -16rem;
}

.-scroll-m-7 {
  scroll-margin: -1.75rem;
}

.-scroll-m-72 {
  scroll-margin: -18rem;
}

.-scroll-m-8 {
  scroll-margin: -2rem;
}

.-scroll-m-80 {
  scroll-margin: -20rem;
}

.-scroll-m-9 {
  scroll-margin: -2.25rem;
}

.-scroll-m-96 {
  scroll-margin: -24rem;
}

.-scroll-m-px {
  scroll-margin: -1px;
}

.scroll-m-0 {
  scroll-margin: 0px;
}

.scroll-m-0\.5 {
  scroll-margin: 0.125rem;
}

.scroll-m-1 {
  scroll-margin: 0.25rem;
}

.scroll-m-1\.5 {
  scroll-margin: 0.375rem;
}

.scroll-m-10 {
  scroll-margin: 2.5rem;
}

.scroll-m-11 {
  scroll-margin: 2.75rem;
}

.scroll-m-12 {
  scroll-margin: 3rem;
}

.scroll-m-14 {
  scroll-margin: 3.5rem;
}

.scroll-m-16 {
  scroll-margin: 4rem;
}

.scroll-m-2 {
  scroll-margin: 0.5rem;
}

.scroll-m-2\.5 {
  scroll-margin: 0.625rem;
}

.scroll-m-20 {
  scroll-margin: 5rem;
}

.scroll-m-24 {
  scroll-margin: 6rem;
}

.scroll-m-28 {
  scroll-margin: 7rem;
}

.scroll-m-3 {
  scroll-margin: 0.75rem;
}

.scroll-m-3\.5 {
  scroll-margin: 0.875rem;
}

.scroll-m-32 {
  scroll-margin: 8rem;
}

.scroll-m-36 {
  scroll-margin: 9rem;
}

.scroll-m-4 {
  scroll-margin: 1rem;
}

.scroll-m-40 {
  scroll-margin: 10rem;
}

.scroll-m-44 {
  scroll-margin: 11rem;
}

.scroll-m-48 {
  scroll-margin: 12rem;
}

.scroll-m-5 {
  scroll-margin: 1.25rem;
}

.scroll-m-52 {
  scroll-margin: 13rem;
}

.scroll-m-56 {
  scroll-margin: 14rem;
}

.scroll-m-6 {
  scroll-margin: 1.5rem;
}

.scroll-m-60 {
  scroll-margin: 15rem;
}

.scroll-m-64 {
  scroll-margin: 16rem;
}

.scroll-m-7 {
  scroll-margin: 1.75rem;
}

.scroll-m-72 {
  scroll-margin: 18rem;
}

.scroll-m-8 {
  scroll-margin: 2rem;
}

.scroll-m-80 {
  scroll-margin: 20rem;
}

.scroll-m-9 {
  scroll-margin: 2.25rem;
}

.scroll-m-96 {
  scroll-margin: 24rem;
}

.scroll-m-px {
  scroll-margin: 1px;
}

.-scroll-mx-0 {
  scroll-margin-left: -0px;
  scroll-margin-right: -0px;
}

.-scroll-mx-0\.5 {
  scroll-margin-left: -0.125rem;
  scroll-margin-right: -0.125rem;
}

.-scroll-mx-1 {
  scroll-margin-left: -0.25rem;
  scroll-margin-right: -0.25rem;
}

.-scroll-mx-1\.5 {
  scroll-margin-left: -0.375rem;
  scroll-margin-right: -0.375rem;
}

.-scroll-mx-10 {
  scroll-margin-left: -2.5rem;
  scroll-margin-right: -2.5rem;
}

.-scroll-mx-11 {
  scroll-margin-left: -2.75rem;
  scroll-margin-right: -2.75rem;
}

.-scroll-mx-12 {
  scroll-margin-left: -3rem;
  scroll-margin-right: -3rem;
}

.-scroll-mx-14 {
  scroll-margin-left: -3.5rem;
  scroll-margin-right: -3.5rem;
}

.-scroll-mx-16 {
  scroll-margin-left: -4rem;
  scroll-margin-right: -4rem;
}

.-scroll-mx-2 {
  scroll-margin-left: -0.5rem;
  scroll-margin-right: -0.5rem;
}

.-scroll-mx-2\.5 {
  scroll-margin-left: -0.625rem;
  scroll-margin-right: -0.625rem;
}

.-scroll-mx-20 {
  scroll-margin-left: -5rem;
  scroll-margin-right: -5rem;
}

.-scroll-mx-24 {
  scroll-margin-left: -6rem;
  scroll-margin-right: -6rem;
}

.-scroll-mx-28 {
  scroll-margin-left: -7rem;
  scroll-margin-right: -7rem;
}

.-scroll-mx-3 {
  scroll-margin-left: -0.75rem;
  scroll-margin-right: -0.75rem;
}

.-scroll-mx-3\.5 {
  scroll-margin-left: -0.875rem;
  scroll-margin-right: -0.875rem;
}

.-scroll-mx-32 {
  scroll-margin-left: -8rem;
  scroll-margin-right: -8rem;
}

.-scroll-mx-36 {
  scroll-margin-left: -9rem;
  scroll-margin-right: -9rem;
}

.-scroll-mx-4 {
  scroll-margin-left: -1rem;
  scroll-margin-right: -1rem;
}

.-scroll-mx-40 {
  scroll-margin-left: -10rem;
  scroll-margin-right: -10rem;
}

.-scroll-mx-44 {
  scroll-margin-left: -11rem;
  scroll-margin-right: -11rem;
}

.-scroll-mx-48 {
  scroll-margin-left: -12rem;
  scroll-margin-right: -12rem;
}

.-scroll-mx-5 {
  scroll-margin-left: -1.25rem;
  scroll-margin-right: -1.25rem;
}

.-scroll-mx-52 {
  scroll-margin-left: -13rem;
  scroll-margin-right: -13rem;
}

.-scroll-mx-56 {
  scroll-margin-left: -14rem;
  scroll-margin-right: -14rem;
}

.-scroll-mx-6 {
  scroll-margin-left: -1.5rem;
  scroll-margin-right: -1.5rem;
}

.-scroll-mx-60 {
  scroll-margin-left: -15rem;
  scroll-margin-right: -15rem;
}

.-scroll-mx-64 {
  scroll-margin-left: -16rem;
  scroll-margin-right: -16rem;
}

.-scroll-mx-7 {
  scroll-margin-left: -1.75rem;
  scroll-margin-right: -1.75rem;
}

.-scroll-mx-72 {
  scroll-margin-left: -18rem;
  scroll-margin-right: -18rem;
}

.-scroll-mx-8 {
  scroll-margin-left: -2rem;
  scroll-margin-right: -2rem;
}

.-scroll-mx-80 {
  scroll-margin-left: -20rem;
  scroll-margin-right: -20rem;
}

.-scroll-mx-9 {
  scroll-margin-left: -2.25rem;
  scroll-margin-right: -2.25rem;
}

.-scroll-mx-96 {
  scroll-margin-left: -24rem;
  scroll-margin-right: -24rem;
}

.-scroll-mx-px {
  scroll-margin-left: -1px;
  scroll-margin-right: -1px;
}

.-scroll-my-0 {
  scroll-margin-top: -0px;
  scroll-margin-bottom: -0px;
}

.-scroll-my-0\.5 {
  scroll-margin-top: -0.125rem;
  scroll-margin-bottom: -0.125rem;
}

.-scroll-my-1 {
  scroll-margin-top: -0.25rem;
  scroll-margin-bottom: -0.25rem;
}

.-scroll-my-1\.5 {
  scroll-margin-top: -0.375rem;
  scroll-margin-bottom: -0.375rem;
}

.-scroll-my-10 {
  scroll-margin-top: -2.5rem;
  scroll-margin-bottom: -2.5rem;
}

.-scroll-my-11 {
  scroll-margin-top: -2.75rem;
  scroll-margin-bottom: -2.75rem;
}

.-scroll-my-12 {
  scroll-margin-top: -3rem;
  scroll-margin-bottom: -3rem;
}

.-scroll-my-14 {
  scroll-margin-top: -3.5rem;
  scroll-margin-bottom: -3.5rem;
}

.-scroll-my-16 {
  scroll-margin-top: -4rem;
  scroll-margin-bottom: -4rem;
}

.-scroll-my-2 {
  scroll-margin-top: -0.5rem;
  scroll-margin-bottom: -0.5rem;
}

.-scroll-my-2\.5 {
  scroll-margin-top: -0.625rem;
  scroll-margin-bottom: -0.625rem;
}

.-scroll-my-20 {
  scroll-margin-top: -5rem;
  scroll-margin-bottom: -5rem;
}

.-scroll-my-24 {
  scroll-margin-top: -6rem;
  scroll-margin-bottom: -6rem;
}

.-scroll-my-28 {
  scroll-margin-top: -7rem;
  scroll-margin-bottom: -7rem;
}

.-scroll-my-3 {
  scroll-margin-top: -0.75rem;
  scroll-margin-bottom: -0.75rem;
}

.-scroll-my-3\.5 {
  scroll-margin-top: -0.875rem;
  scroll-margin-bottom: -0.875rem;
}

.-scroll-my-32 {
  scroll-margin-top: -8rem;
  scroll-margin-bottom: -8rem;
}

.-scroll-my-36 {
  scroll-margin-top: -9rem;
  scroll-margin-bottom: -9rem;
}

.-scroll-my-4 {
  scroll-margin-top: -1rem;
  scroll-margin-bottom: -1rem;
}

.-scroll-my-40 {
  scroll-margin-top: -10rem;
  scroll-margin-bottom: -10rem;
}

.-scroll-my-44 {
  scroll-margin-top: -11rem;
  scroll-margin-bottom: -11rem;
}

.-scroll-my-48 {
  scroll-margin-top: -12rem;
  scroll-margin-bottom: -12rem;
}

.-scroll-my-5 {
  scroll-margin-top: -1.25rem;
  scroll-margin-bottom: -1.25rem;
}

.-scroll-my-52 {
  scroll-margin-top: -13rem;
  scroll-margin-bottom: -13rem;
}

.-scroll-my-56 {
  scroll-margin-top: -14rem;
  scroll-margin-bottom: -14rem;
}

.-scroll-my-6 {
  scroll-margin-top: -1.5rem;
  scroll-margin-bottom: -1.5rem;
}

.-scroll-my-60 {
  scroll-margin-top: -15rem;
  scroll-margin-bottom: -15rem;
}

.-scroll-my-64 {
  scroll-margin-top: -16rem;
  scroll-margin-bottom: -16rem;
}

.-scroll-my-7 {
  scroll-margin-top: -1.75rem;
  scroll-margin-bottom: -1.75rem;
}

.-scroll-my-72 {
  scroll-margin-top: -18rem;
  scroll-margin-bottom: -18rem;
}

.-scroll-my-8 {
  scroll-margin-top: -2rem;
  scroll-margin-bottom: -2rem;
}

.-scroll-my-80 {
  scroll-margin-top: -20rem;
  scroll-margin-bottom: -20rem;
}

.-scroll-my-9 {
  scroll-margin-top: -2.25rem;
  scroll-margin-bottom: -2.25rem;
}

.-scroll-my-96 {
  scroll-margin-top: -24rem;
  scroll-margin-bottom: -24rem;
}

.-scroll-my-px {
  scroll-margin-top: -1px;
  scroll-margin-bottom: -1px;
}

.scroll-mx-0 {
  scroll-margin-left: 0px;
  scroll-margin-right: 0px;
}

.scroll-mx-0\.5 {
  scroll-margin-left: 0.125rem;
  scroll-margin-right: 0.125rem;
}

.scroll-mx-1 {
  scroll-margin-left: 0.25rem;
  scroll-margin-right: 0.25rem;
}

.scroll-mx-1\.5 {
  scroll-margin-left: 0.375rem;
  scroll-margin-right: 0.375rem;
}

.scroll-mx-10 {
  scroll-margin-left: 2.5rem;
  scroll-margin-right: 2.5rem;
}

.scroll-mx-11 {
  scroll-margin-left: 2.75rem;
  scroll-margin-right: 2.75rem;
}

.scroll-mx-12 {
  scroll-margin-left: 3rem;
  scroll-margin-right: 3rem;
}

.scroll-mx-14 {
  scroll-margin-left: 3.5rem;
  scroll-margin-right: 3.5rem;
}

.scroll-mx-16 {
  scroll-margin-left: 4rem;
  scroll-margin-right: 4rem;
}

.scroll-mx-2 {
  scroll-margin-left: 0.5rem;
  scroll-margin-right: 0.5rem;
}

.scroll-mx-2\.5 {
  scroll-margin-left: 0.625rem;
  scroll-margin-right: 0.625rem;
}

.scroll-mx-20 {
  scroll-margin-left: 5rem;
  scroll-margin-right: 5rem;
}

.scroll-mx-24 {
  scroll-margin-left: 6rem;
  scroll-margin-right: 6rem;
}

.scroll-mx-28 {
  scroll-margin-left: 7rem;
  scroll-margin-right: 7rem;
}

.scroll-mx-3 {
  scroll-margin-left: 0.75rem;
  scroll-margin-right: 0.75rem;
}

.scroll-mx-3\.5 {
  scroll-margin-left: 0.875rem;
  scroll-margin-right: 0.875rem;
}

.scroll-mx-32 {
  scroll-margin-left: 8rem;
  scroll-margin-right: 8rem;
}

.scroll-mx-36 {
  scroll-margin-left: 9rem;
  scroll-margin-right: 9rem;
}

.scroll-mx-4 {
  scroll-margin-left: 1rem;
  scroll-margin-right: 1rem;
}

.scroll-mx-40 {
  scroll-margin-left: 10rem;
  scroll-margin-right: 10rem;
}

.scroll-mx-44 {
  scroll-margin-left: 11rem;
  scroll-margin-right: 11rem;
}

.scroll-mx-48 {
  scroll-margin-left: 12rem;
  scroll-margin-right: 12rem;
}

.scroll-mx-5 {
  scroll-margin-left: 1.25rem;
  scroll-margin-right: 1.25rem;
}

.scroll-mx-52 {
  scroll-margin-left: 13rem;
  scroll-margin-right: 13rem;
}

.scroll-mx-56 {
  scroll-margin-left: 14rem;
  scroll-margin-right: 14rem;
}

.scroll-mx-6 {
  scroll-margin-left: 1.5rem;
  scroll-margin-right: 1.5rem;
}

.scroll-mx-60 {
  scroll-margin-left: 15rem;
  scroll-margin-right: 15rem;
}

.scroll-mx-64 {
  scroll-margin-left: 16rem;
  scroll-margin-right: 16rem;
}

.scroll-mx-7 {
  scroll-margin-left: 1.75rem;
  scroll-margin-right: 1.75rem;
}

.scroll-mx-72 {
  scroll-margin-left: 18rem;
  scroll-margin-right: 18rem;
}

.scroll-mx-8 {
  scroll-margin-left: 2rem;
  scroll-margin-right: 2rem;
}

.scroll-mx-80 {
  scroll-margin-left: 20rem;
  scroll-margin-right: 20rem;
}

.scroll-mx-9 {
  scroll-margin-left: 2.25rem;
  scroll-margin-right: 2.25rem;
}

.scroll-mx-96 {
  scroll-margin-left: 24rem;
  scroll-margin-right: 24rem;
}

.scroll-mx-px {
  scroll-margin-left: 1px;
  scroll-margin-right: 1px;
}

.scroll-my-0 {
  scroll-margin-top: 0px;
  scroll-margin-bottom: 0px;
}

.scroll-my-0\.5 {
  scroll-margin-top: 0.125rem;
  scroll-margin-bottom: 0.125rem;
}

.scroll-my-1 {
  scroll-margin-top: 0.25rem;
  scroll-margin-bottom: 0.25rem;
}

.scroll-my-1\.5 {
  scroll-margin-top: 0.375rem;
  scroll-margin-bottom: 0.375rem;
}

.scroll-my-10 {
  scroll-margin-top: 2.5rem;
  scroll-margin-bottom: 2.5rem;
}

.scroll-my-11 {
  scroll-margin-top: 2.75rem;
  scroll-margin-bottom: 2.75rem;
}

.scroll-my-12 {
  scroll-margin-top: 3rem;
  scroll-margin-bottom: 3rem;
}

.scroll-my-14 {
  scroll-margin-top: 3.5rem;
  scroll-margin-bottom: 3.5rem;
}

.scroll-my-16 {
  scroll-margin-top: 4rem;
  scroll-margin-bottom: 4rem;
}

.scroll-my-2 {
  scroll-margin-top: 0.5rem;
  scroll-margin-bottom: 0.5rem;
}

.scroll-my-2\.5 {
  scroll-margin-top: 0.625rem;
  scroll-margin-bottom: 0.625rem;
}

.scroll-my-20 {
  scroll-margin-top: 5rem;
  scroll-margin-bottom: 5rem;
}

.scroll-my-24 {
  scroll-margin-top: 6rem;
  scroll-margin-bottom: 6rem;
}

.scroll-my-28 {
  scroll-margin-top: 7rem;
  scroll-margin-bottom: 7rem;
}

.scroll-my-3 {
  scroll-margin-top: 0.75rem;
  scroll-margin-bottom: 0.75rem;
}

.scroll-my-3\.5 {
  scroll-margin-top: 0.875rem;
  scroll-margin-bottom: 0.875rem;
}

.scroll-my-32 {
  scroll-margin-top: 8rem;
  scroll-margin-bottom: 8rem;
}

.scroll-my-36 {
  scroll-margin-top: 9rem;
  scroll-margin-bottom: 9rem;
}

.scroll-my-4 {
  scroll-margin-top: 1rem;
  scroll-margin-bottom: 1rem;
}

.scroll-my-40 {
  scroll-margin-top: 10rem;
  scroll-margin-bottom: 10rem;
}

.scroll-my-44 {
  scroll-margin-top: 11rem;
  scroll-margin-bottom: 11rem;
}

.scroll-my-48 {
  scroll-margin-top: 12rem;
  scroll-margin-bottom: 12rem;
}

.scroll-my-5 {
  scroll-margin-top: 1.25rem;
  scroll-margin-bottom: 1.25rem;
}

.scroll-my-52 {
  scroll-margin-top: 13rem;
  scroll-margin-bottom: 13rem;
}

.scroll-my-56 {
  scroll-margin-top: 14rem;
  scroll-margin-bottom: 14rem;
}

.scroll-my-6 {
  scroll-margin-top: 1.5rem;
  scroll-margin-bottom: 1.5rem;
}

.scroll-my-60 {
  scroll-margin-top: 15rem;
  scroll-margin-bottom: 15rem;
}

.scroll-my-64 {
  scroll-margin-top: 16rem;
  scroll-margin-bottom: 16rem;
}

.scroll-my-7 {
  scroll-margin-top: 1.75rem;
  scroll-margin-bottom: 1.75rem;
}

.scroll-my-72 {
  scroll-margin-top: 18rem;
  scroll-margin-bottom: 18rem;
}

.scroll-my-8 {
  scroll-margin-top: 2rem;
  scroll-margin-bottom: 2rem;
}

.scroll-my-80 {
  scroll-margin-top: 20rem;
  scroll-margin-bottom: 20rem;
}

.scroll-my-9 {
  scroll-margin-top: 2.25rem;
  scroll-margin-bottom: 2.25rem;
}

.scroll-my-96 {
  scroll-margin-top: 24rem;
  scroll-margin-bottom: 24rem;
}

.scroll-my-px {
  scroll-margin-top: 1px;
  scroll-margin-bottom: 1px;
}

.-scroll-mb-0 {
  scroll-margin-bottom: -0px;
}

.-scroll-mb-0\.5 {
  scroll-margin-bottom: -0.125rem;
}

.-scroll-mb-1 {
  scroll-margin-bottom: -0.25rem;
}

.-scroll-mb-1\.5 {
  scroll-margin-bottom: -0.375rem;
}

.-scroll-mb-10 {
  scroll-margin-bottom: -2.5rem;
}

.-scroll-mb-11 {
  scroll-margin-bottom: -2.75rem;
}

.-scroll-mb-12 {
  scroll-margin-bottom: -3rem;
}

.-scroll-mb-14 {
  scroll-margin-bottom: -3.5rem;
}

.-scroll-mb-16 {
  scroll-margin-bottom: -4rem;
}

.-scroll-mb-2 {
  scroll-margin-bottom: -0.5rem;
}

.-scroll-mb-2\.5 {
  scroll-margin-bottom: -0.625rem;
}

.-scroll-mb-20 {
  scroll-margin-bottom: -5rem;
}

.-scroll-mb-24 {
  scroll-margin-bottom: -6rem;
}

.-scroll-mb-28 {
  scroll-margin-bottom: -7rem;
}

.-scroll-mb-3 {
  scroll-margin-bottom: -0.75rem;
}

.-scroll-mb-3\.5 {
  scroll-margin-bottom: -0.875rem;
}

.-scroll-mb-32 {
  scroll-margin-bottom: -8rem;
}

.-scroll-mb-36 {
  scroll-margin-bottom: -9rem;
}

.-scroll-mb-4 {
  scroll-margin-bottom: -1rem;
}

.-scroll-mb-40 {
  scroll-margin-bottom: -10rem;
}

.-scroll-mb-44 {
  scroll-margin-bottom: -11rem;
}

.-scroll-mb-48 {
  scroll-margin-bottom: -12rem;
}

.-scroll-mb-5 {
  scroll-margin-bottom: -1.25rem;
}

.-scroll-mb-52 {
  scroll-margin-bottom: -13rem;
}

.-scroll-mb-56 {
  scroll-margin-bottom: -14rem;
}

.-scroll-mb-6 {
  scroll-margin-bottom: -1.5rem;
}

.-scroll-mb-60 {
  scroll-margin-bottom: -15rem;
}

.-scroll-mb-64 {
  scroll-margin-bottom: -16rem;
}

.-scroll-mb-7 {
  scroll-margin-bottom: -1.75rem;
}

.-scroll-mb-72 {
  scroll-margin-bottom: -18rem;
}

.-scroll-mb-8 {
  scroll-margin-bottom: -2rem;
}

.-scroll-mb-80 {
  scroll-margin-bottom: -20rem;
}

.-scroll-mb-9 {
  scroll-margin-bottom: -2.25rem;
}

.-scroll-mb-96 {
  scroll-margin-bottom: -24rem;
}

.-scroll-mb-px {
  scroll-margin-bottom: -1px;
}

.-scroll-me-0 {
  scroll-margin-inline-end: -0px;
}

.-scroll-me-0\.5 {
  scroll-margin-inline-end: -0.125rem;
}

.-scroll-me-1 {
  scroll-margin-inline-end: -0.25rem;
}

.-scroll-me-1\.5 {
  scroll-margin-inline-end: -0.375rem;
}

.-scroll-me-10 {
  scroll-margin-inline-end: -2.5rem;
}

.-scroll-me-11 {
  scroll-margin-inline-end: -2.75rem;
}

.-scroll-me-12 {
  scroll-margin-inline-end: -3rem;
}

.-scroll-me-14 {
  scroll-margin-inline-end: -3.5rem;
}

.-scroll-me-16 {
  scroll-margin-inline-end: -4rem;
}

.-scroll-me-2 {
  scroll-margin-inline-end: -0.5rem;
}

.-scroll-me-2\.5 {
  scroll-margin-inline-end: -0.625rem;
}

.-scroll-me-20 {
  scroll-margin-inline-end: -5rem;
}

.-scroll-me-24 {
  scroll-margin-inline-end: -6rem;
}

.-scroll-me-28 {
  scroll-margin-inline-end: -7rem;
}

.-scroll-me-3 {
  scroll-margin-inline-end: -0.75rem;
}

.-scroll-me-3\.5 {
  scroll-margin-inline-end: -0.875rem;
}

.-scroll-me-32 {
  scroll-margin-inline-end: -8rem;
}

.-scroll-me-36 {
  scroll-margin-inline-end: -9rem;
}

.-scroll-me-4 {
  scroll-margin-inline-end: -1rem;
}

.-scroll-me-40 {
  scroll-margin-inline-end: -10rem;
}

.-scroll-me-44 {
  scroll-margin-inline-end: -11rem;
}

.-scroll-me-48 {
  scroll-margin-inline-end: -12rem;
}

.-scroll-me-5 {
  scroll-margin-inline-end: -1.25rem;
}

.-scroll-me-52 {
  scroll-margin-inline-end: -13rem;
}

.-scroll-me-56 {
  scroll-margin-inline-end: -14rem;
}

.-scroll-me-6 {
  scroll-margin-inline-end: -1.5rem;
}

.-scroll-me-60 {
  scroll-margin-inline-end: -15rem;
}

.-scroll-me-64 {
  scroll-margin-inline-end: -16rem;
}

.-scroll-me-7 {
  scroll-margin-inline-end: -1.75rem;
}

.-scroll-me-72 {
  scroll-margin-inline-end: -18rem;
}

.-scroll-me-8 {
  scroll-margin-inline-end: -2rem;
}

.-scroll-me-80 {
  scroll-margin-inline-end: -20rem;
}

.-scroll-me-9 {
  scroll-margin-inline-end: -2.25rem;
}

.-scroll-me-96 {
  scroll-margin-inline-end: -24rem;
}

.-scroll-me-px {
  scroll-margin-inline-end: -1px;
}

.-scroll-ml-0 {
  scroll-margin-left: -0px;
}

.-scroll-ml-0\.5 {
  scroll-margin-left: -0.125rem;
}

.-scroll-ml-1 {
  scroll-margin-left: -0.25rem;
}

.-scroll-ml-1\.5 {
  scroll-margin-left: -0.375rem;
}

.-scroll-ml-10 {
  scroll-margin-left: -2.5rem;
}

.-scroll-ml-11 {
  scroll-margin-left: -2.75rem;
}

.-scroll-ml-12 {
  scroll-margin-left: -3rem;
}

.-scroll-ml-14 {
  scroll-margin-left: -3.5rem;
}

.-scroll-ml-16 {
  scroll-margin-left: -4rem;
}

.-scroll-ml-2 {
  scroll-margin-left: -0.5rem;
}

.-scroll-ml-2\.5 {
  scroll-margin-left: -0.625rem;
}

.-scroll-ml-20 {
  scroll-margin-left: -5rem;
}

.-scroll-ml-24 {
  scroll-margin-left: -6rem;
}

.-scroll-ml-28 {
  scroll-margin-left: -7rem;
}

.-scroll-ml-3 {
  scroll-margin-left: -0.75rem;
}

.-scroll-ml-3\.5 {
  scroll-margin-left: -0.875rem;
}

.-scroll-ml-32 {
  scroll-margin-left: -8rem;
}

.-scroll-ml-36 {
  scroll-margin-left: -9rem;
}

.-scroll-ml-4 {
  scroll-margin-left: -1rem;
}

.-scroll-ml-40 {
  scroll-margin-left: -10rem;
}

.-scroll-ml-44 {
  scroll-margin-left: -11rem;
}

.-scroll-ml-48 {
  scroll-margin-left: -12rem;
}

.-scroll-ml-5 {
  scroll-margin-left: -1.25rem;
}

.-scroll-ml-52 {
  scroll-margin-left: -13rem;
}

.-scroll-ml-56 {
  scroll-margin-left: -14rem;
}

.-scroll-ml-6 {
  scroll-margin-left: -1.5rem;
}

.-scroll-ml-60 {
  scroll-margin-left: -15rem;
}

.-scroll-ml-64 {
  scroll-margin-left: -16rem;
}

.-scroll-ml-7 {
  scroll-margin-left: -1.75rem;
}

.-scroll-ml-72 {
  scroll-margin-left: -18rem;
}

.-scroll-ml-8 {
  scroll-margin-left: -2rem;
}

.-scroll-ml-80 {
  scroll-margin-left: -20rem;
}

.-scroll-ml-9 {
  scroll-margin-left: -2.25rem;
}

.-scroll-ml-96 {
  scroll-margin-left: -24rem;
}

.-scroll-ml-px {
  scroll-margin-left: -1px;
}

.-scroll-mr-0 {
  scroll-margin-right: -0px;
}

.-scroll-mr-0\.5 {
  scroll-margin-right: -0.125rem;
}

.-scroll-mr-1 {
  scroll-margin-right: -0.25rem;
}

.-scroll-mr-1\.5 {
  scroll-margin-right: -0.375rem;
}

.-scroll-mr-10 {
  scroll-margin-right: -2.5rem;
}

.-scroll-mr-11 {
  scroll-margin-right: -2.75rem;
}

.-scroll-mr-12 {
  scroll-margin-right: -3rem;
}

.-scroll-mr-14 {
  scroll-margin-right: -3.5rem;
}

.-scroll-mr-16 {
  scroll-margin-right: -4rem;
}

.-scroll-mr-2 {
  scroll-margin-right: -0.5rem;
}

.-scroll-mr-2\.5 {
  scroll-margin-right: -0.625rem;
}

.-scroll-mr-20 {
  scroll-margin-right: -5rem;
}

.-scroll-mr-24 {
  scroll-margin-right: -6rem;
}

.-scroll-mr-28 {
  scroll-margin-right: -7rem;
}

.-scroll-mr-3 {
  scroll-margin-right: -0.75rem;
}

.-scroll-mr-3\.5 {
  scroll-margin-right: -0.875rem;
}

.-scroll-mr-32 {
  scroll-margin-right: -8rem;
}

.-scroll-mr-36 {
  scroll-margin-right: -9rem;
}

.-scroll-mr-4 {
  scroll-margin-right: -1rem;
}

.-scroll-mr-40 {
  scroll-margin-right: -10rem;
}

.-scroll-mr-44 {
  scroll-margin-right: -11rem;
}

.-scroll-mr-48 {
  scroll-margin-right: -12rem;
}

.-scroll-mr-5 {
  scroll-margin-right: -1.25rem;
}

.-scroll-mr-52 {
  scroll-margin-right: -13rem;
}

.-scroll-mr-56 {
  scroll-margin-right: -14rem;
}

.-scroll-mr-6 {
  scroll-margin-right: -1.5rem;
}

.-scroll-mr-60 {
  scroll-margin-right: -15rem;
}

.-scroll-mr-64 {
  scroll-margin-right: -16rem;
}

.-scroll-mr-7 {
  scroll-margin-right: -1.75rem;
}

.-scroll-mr-72 {
  scroll-margin-right: -18rem;
}

.-scroll-mr-8 {
  scroll-margin-right: -2rem;
}

.-scroll-mr-80 {
  scroll-margin-right: -20rem;
}

.-scroll-mr-9 {
  scroll-margin-right: -2.25rem;
}

.-scroll-mr-96 {
  scroll-margin-right: -24rem;
}

.-scroll-mr-px {
  scroll-margin-right: -1px;
}

.-scroll-ms-0 {
  scroll-margin-inline-start: -0px;
}

.-scroll-ms-0\.5 {
  scroll-margin-inline-start: -0.125rem;
}

.-scroll-ms-1 {
  scroll-margin-inline-start: -0.25rem;
}

.-scroll-ms-1\.5 {
  scroll-margin-inline-start: -0.375rem;
}

.-scroll-ms-10 {
  scroll-margin-inline-start: -2.5rem;
}

.-scroll-ms-11 {
  scroll-margin-inline-start: -2.75rem;
}

.-scroll-ms-12 {
  scroll-margin-inline-start: -3rem;
}

.-scroll-ms-14 {
  scroll-margin-inline-start: -3.5rem;
}

.-scroll-ms-16 {
  scroll-margin-inline-start: -4rem;
}

.-scroll-ms-2 {
  scroll-margin-inline-start: -0.5rem;
}

.-scroll-ms-2\.5 {
  scroll-margin-inline-start: -0.625rem;
}

.-scroll-ms-20 {
  scroll-margin-inline-start: -5rem;
}

.-scroll-ms-24 {
  scroll-margin-inline-start: -6rem;
}

.-scroll-ms-28 {
  scroll-margin-inline-start: -7rem;
}

.-scroll-ms-3 {
  scroll-margin-inline-start: -0.75rem;
}

.-scroll-ms-3\.5 {
  scroll-margin-inline-start: -0.875rem;
}

.-scroll-ms-32 {
  scroll-margin-inline-start: -8rem;
}

.-scroll-ms-36 {
  scroll-margin-inline-start: -9rem;
}

.-scroll-ms-4 {
  scroll-margin-inline-start: -1rem;
}

.-scroll-ms-40 {
  scroll-margin-inline-start: -10rem;
}

.-scroll-ms-44 {
  scroll-margin-inline-start: -11rem;
}

.-scroll-ms-48 {
  scroll-margin-inline-start: -12rem;
}

.-scroll-ms-5 {
  scroll-margin-inline-start: -1.25rem;
}

.-scroll-ms-52 {
  scroll-margin-inline-start: -13rem;
}

.-scroll-ms-56 {
  scroll-margin-inline-start: -14rem;
}

.-scroll-ms-6 {
  scroll-margin-inline-start: -1.5rem;
}

.-scroll-ms-60 {
  scroll-margin-inline-start: -15rem;
}

.-scroll-ms-64 {
  scroll-margin-inline-start: -16rem;
}

.-scroll-ms-7 {
  scroll-margin-inline-start: -1.75rem;
}

.-scroll-ms-72 {
  scroll-margin-inline-start: -18rem;
}

.-scroll-ms-8 {
  scroll-margin-inline-start: -2rem;
}

.-scroll-ms-80 {
  scroll-margin-inline-start: -20rem;
}

.-scroll-ms-9 {
  scroll-margin-inline-start: -2.25rem;
}

.-scroll-ms-96 {
  scroll-margin-inline-start: -24rem;
}

.-scroll-ms-px {
  scroll-margin-inline-start: -1px;
}

.-scroll-mt-0 {
  scroll-margin-top: -0px;
}

.-scroll-mt-0\.5 {
  scroll-margin-top: -0.125rem;
}

.-scroll-mt-1 {
  scroll-margin-top: -0.25rem;
}

.-scroll-mt-1\.5 {
  scroll-margin-top: -0.375rem;
}

.-scroll-mt-10 {
  scroll-margin-top: -2.5rem;
}

.-scroll-mt-11 {
  scroll-margin-top: -2.75rem;
}

.-scroll-mt-12 {
  scroll-margin-top: -3rem;
}

.-scroll-mt-14 {
  scroll-margin-top: -3.5rem;
}

.-scroll-mt-16 {
  scroll-margin-top: -4rem;
}

.-scroll-mt-2 {
  scroll-margin-top: -0.5rem;
}

.-scroll-mt-2\.5 {
  scroll-margin-top: -0.625rem;
}

.-scroll-mt-20 {
  scroll-margin-top: -5rem;
}

.-scroll-mt-24 {
  scroll-margin-top: -6rem;
}

.-scroll-mt-28 {
  scroll-margin-top: -7rem;
}

.-scroll-mt-3 {
  scroll-margin-top: -0.75rem;
}

.-scroll-mt-3\.5 {
  scroll-margin-top: -0.875rem;
}

.-scroll-mt-32 {
  scroll-margin-top: -8rem;
}

.-scroll-mt-36 {
  scroll-margin-top: -9rem;
}

.-scroll-mt-4 {
  scroll-margin-top: -1rem;
}

.-scroll-mt-40 {
  scroll-margin-top: -10rem;
}

.-scroll-mt-44 {
  scroll-margin-top: -11rem;
}

.-scroll-mt-48 {
  scroll-margin-top: -12rem;
}

.-scroll-mt-5 {
  scroll-margin-top: -1.25rem;
}

.-scroll-mt-52 {
  scroll-margin-top: -13rem;
}

.-scroll-mt-56 {
  scroll-margin-top: -14rem;
}

.-scroll-mt-6 {
  scroll-margin-top: -1.5rem;
}

.-scroll-mt-60 {
  scroll-margin-top: -15rem;
}

.-scroll-mt-64 {
  scroll-margin-top: -16rem;
}

.-scroll-mt-7 {
  scroll-margin-top: -1.75rem;
}

.-scroll-mt-72 {
  scroll-margin-top: -18rem;
}

.-scroll-mt-8 {
  scroll-margin-top: -2rem;
}

.-scroll-mt-80 {
  scroll-margin-top: -20rem;
}

.-scroll-mt-9 {
  scroll-margin-top: -2.25rem;
}

.-scroll-mt-96 {
  scroll-margin-top: -24rem;
}

.-scroll-mt-px {
  scroll-margin-top: -1px;
}

.scroll-mb-0 {
  scroll-margin-bottom: 0px;
}

.scroll-mb-0\.5 {
  scroll-margin-bottom: 0.125rem;
}

.scroll-mb-1 {
  scroll-margin-bottom: 0.25rem;
}

.scroll-mb-1\.5 {
  scroll-margin-bottom: 0.375rem;
}

.scroll-mb-10 {
  scroll-margin-bottom: 2.5rem;
}

.scroll-mb-11 {
  scroll-margin-bottom: 2.75rem;
}

.scroll-mb-12 {
  scroll-margin-bottom: 3rem;
}

.scroll-mb-14 {
  scroll-margin-bottom: 3.5rem;
}

.scroll-mb-16 {
  scroll-margin-bottom: 4rem;
}

.scroll-mb-2 {
  scroll-margin-bottom: 0.5rem;
}

.scroll-mb-2\.5 {
  scroll-margin-bottom: 0.625rem;
}

.scroll-mb-20 {
  scroll-margin-bottom: 5rem;
}

.scroll-mb-24 {
  scroll-margin-bottom: 6rem;
}

.scroll-mb-28 {
  scroll-margin-bottom: 7rem;
}

.scroll-mb-3 {
  scroll-margin-bottom: 0.75rem;
}

.scroll-mb-3\.5 {
  scroll-margin-bottom: 0.875rem;
}

.scroll-mb-32 {
  scroll-margin-bottom: 8rem;
}

.scroll-mb-36 {
  scroll-margin-bottom: 9rem;
}

.scroll-mb-4 {
  scroll-margin-bottom: 1rem;
}

.scroll-mb-40 {
  scroll-margin-bottom: 10rem;
}

.scroll-mb-44 {
  scroll-margin-bottom: 11rem;
}

.scroll-mb-48 {
  scroll-margin-bottom: 12rem;
}

.scroll-mb-5 {
  scroll-margin-bottom: 1.25rem;
}

.scroll-mb-52 {
  scroll-margin-bottom: 13rem;
}

.scroll-mb-56 {
  scroll-margin-bottom: 14rem;
}

.scroll-mb-6 {
  scroll-margin-bottom: 1.5rem;
}

.scroll-mb-60 {
  scroll-margin-bottom: 15rem;
}

.scroll-mb-64 {
  scroll-margin-bottom: 16rem;
}

.scroll-mb-7 {
  scroll-margin-bottom: 1.75rem;
}

.scroll-mb-72 {
  scroll-margin-bottom: 18rem;
}

.scroll-mb-8 {
  scroll-margin-bottom: 2rem;
}

.scroll-mb-80 {
  scroll-margin-bottom: 20rem;
}

.scroll-mb-9 {
  scroll-margin-bottom: 2.25rem;
}

.scroll-mb-96 {
  scroll-margin-bottom: 24rem;
}

.scroll-mb-px {
  scroll-margin-bottom: 1px;
}

.scroll-me-0 {
  scroll-margin-inline-end: 0px;
}

.scroll-me-0\.5 {
  scroll-margin-inline-end: 0.125rem;
}

.scroll-me-1 {
  scroll-margin-inline-end: 0.25rem;
}

.scroll-me-1\.5 {
  scroll-margin-inline-end: 0.375rem;
}

.scroll-me-10 {
  scroll-margin-inline-end: 2.5rem;
}

.scroll-me-11 {
  scroll-margin-inline-end: 2.75rem;
}

.scroll-me-12 {
  scroll-margin-inline-end: 3rem;
}

.scroll-me-14 {
  scroll-margin-inline-end: 3.5rem;
}

.scroll-me-16 {
  scroll-margin-inline-end: 4rem;
}

.scroll-me-2 {
  scroll-margin-inline-end: 0.5rem;
}

.scroll-me-2\.5 {
  scroll-margin-inline-end: 0.625rem;
}

.scroll-me-20 {
  scroll-margin-inline-end: 5rem;
}

.scroll-me-24 {
  scroll-margin-inline-end: 6rem;
}

.scroll-me-28 {
  scroll-margin-inline-end: 7rem;
}

.scroll-me-3 {
  scroll-margin-inline-end: 0.75rem;
}

.scroll-me-3\.5 {
  scroll-margin-inline-end: 0.875rem;
}

.scroll-me-32 {
  scroll-margin-inline-end: 8rem;
}

.scroll-me-36 {
  scroll-margin-inline-end: 9rem;
}

.scroll-me-4 {
  scroll-margin-inline-end: 1rem;
}

.scroll-me-40 {
  scroll-margin-inline-end: 10rem;
}

.scroll-me-44 {
  scroll-margin-inline-end: 11rem;
}

.scroll-me-48 {
  scroll-margin-inline-end: 12rem;
}

.scroll-me-5 {
  scroll-margin-inline-end: 1.25rem;
}

.scroll-me-52 {
  scroll-margin-inline-end: 13rem;
}

.scroll-me-56 {
  scroll-margin-inline-end: 14rem;
}

.scroll-me-6 {
  scroll-margin-inline-end: 1.5rem;
}

.scroll-me-60 {
  scroll-margin-inline-end: 15rem;
}

.scroll-me-64 {
  scroll-margin-inline-end: 16rem;
}

.scroll-me-7 {
  scroll-margin-inline-end: 1.75rem;
}

.scroll-me-72 {
  scroll-margin-inline-end: 18rem;
}

.scroll-me-8 {
  scroll-margin-inline-end: 2rem;
}

.scroll-me-80 {
  scroll-margin-inline-end: 20rem;
}

.scroll-me-9 {
  scroll-margin-inline-end: 2.25rem;
}

.scroll-me-96 {
  scroll-margin-inline-end: 24rem;
}

.scroll-me-px {
  scroll-margin-inline-end: 1px;
}

.scroll-ml-0 {
  scroll-margin-left: 0px;
}

.scroll-ml-0\.5 {
  scroll-margin-left: 0.125rem;
}

.scroll-ml-1 {
  scroll-margin-left: 0.25rem;
}

.scroll-ml-1\.5 {
  scroll-margin-left: 0.375rem;
}

.scroll-ml-10 {
  scroll-margin-left: 2.5rem;
}

.scroll-ml-11 {
  scroll-margin-left: 2.75rem;
}

.scroll-ml-12 {
  scroll-margin-left: 3rem;
}

.scroll-ml-14 {
  scroll-margin-left: 3.5rem;
}

.scroll-ml-16 {
  scroll-margin-left: 4rem;
}

.scroll-ml-2 {
  scroll-margin-left: 0.5rem;
}

.scroll-ml-2\.5 {
  scroll-margin-left: 0.625rem;
}

.scroll-ml-20 {
  scroll-margin-left: 5rem;
}

.scroll-ml-24 {
  scroll-margin-left: 6rem;
}

.scroll-ml-28 {
  scroll-margin-left: 7rem;
}

.scroll-ml-3 {
  scroll-margin-left: 0.75rem;
}

.scroll-ml-3\.5 {
  scroll-margin-left: 0.875rem;
}

.scroll-ml-32 {
  scroll-margin-left: 8rem;
}

.scroll-ml-36 {
  scroll-margin-left: 9rem;
}

.scroll-ml-4 {
  scroll-margin-left: 1rem;
}

.scroll-ml-40 {
  scroll-margin-left: 10rem;
}

.scroll-ml-44 {
  scroll-margin-left: 11rem;
}

.scroll-ml-48 {
  scroll-margin-left: 12rem;
}

.scroll-ml-5 {
  scroll-margin-left: 1.25rem;
}

.scroll-ml-52 {
  scroll-margin-left: 13rem;
}

.scroll-ml-56 {
  scroll-margin-left: 14rem;
}

.scroll-ml-6 {
  scroll-margin-left: 1.5rem;
}

.scroll-ml-60 {
  scroll-margin-left: 15rem;
}

.scroll-ml-64 {
  scroll-margin-left: 16rem;
}

.scroll-ml-7 {
  scroll-margin-left: 1.75rem;
}

.scroll-ml-72 {
  scroll-margin-left: 18rem;
}

.scroll-ml-8 {
  scroll-margin-left: 2rem;
}

.scroll-ml-80 {
  scroll-margin-left: 20rem;
}

.scroll-ml-9 {
  scroll-margin-left: 2.25rem;
}

.scroll-ml-96 {
  scroll-margin-left: 24rem;
}

.scroll-ml-px {
  scroll-margin-left: 1px;
}

.scroll-mr-0 {
  scroll-margin-right: 0px;
}

.scroll-mr-0\.5 {
  scroll-margin-right: 0.125rem;
}

.scroll-mr-1 {
  scroll-margin-right: 0.25rem;
}

.scroll-mr-1\.5 {
  scroll-margin-right: 0.375rem;
}

.scroll-mr-10 {
  scroll-margin-right: 2.5rem;
}

.scroll-mr-11 {
  scroll-margin-right: 2.75rem;
}

.scroll-mr-12 {
  scroll-margin-right: 3rem;
}

.scroll-mr-14 {
  scroll-margin-right: 3.5rem;
}

.scroll-mr-16 {
  scroll-margin-right: 4rem;
}

.scroll-mr-2 {
  scroll-margin-right: 0.5rem;
}

.scroll-mr-2\.5 {
  scroll-margin-right: 0.625rem;
}

.scroll-mr-20 {
  scroll-margin-right: 5rem;
}

.scroll-mr-24 {
  scroll-margin-right: 6rem;
}

.scroll-mr-28 {
  scroll-margin-right: 7rem;
}

.scroll-mr-3 {
  scroll-margin-right: 0.75rem;
}

.scroll-mr-3\.5 {
  scroll-margin-right: 0.875rem;
}

.scroll-mr-32 {
  scroll-margin-right: 8rem;
}

.scroll-mr-36 {
  scroll-margin-right: 9rem;
}

.scroll-mr-4 {
  scroll-margin-right: 1rem;
}

.scroll-mr-40 {
  scroll-margin-right: 10rem;
}

.scroll-mr-44 {
  scroll-margin-right: 11rem;
}

.scroll-mr-48 {
  scroll-margin-right: 12rem;
}

.scroll-mr-5 {
  scroll-margin-right: 1.25rem;
}

.scroll-mr-52 {
  scroll-margin-right: 13rem;
}

.scroll-mr-56 {
  scroll-margin-right: 14rem;
}

.scroll-mr-6 {
  scroll-margin-right: 1.5rem;
}

.scroll-mr-60 {
  scroll-margin-right: 15rem;
}

.scroll-mr-64 {
  scroll-margin-right: 16rem;
}

.scroll-mr-7 {
  scroll-margin-right: 1.75rem;
}

.scroll-mr-72 {
  scroll-margin-right: 18rem;
}

.scroll-mr-8 {
  scroll-margin-right: 2rem;
}

.scroll-mr-80 {
  scroll-margin-right: 20rem;
}

.scroll-mr-9 {
  scroll-margin-right: 2.25rem;
}

.scroll-mr-96 {
  scroll-margin-right: 24rem;
}

.scroll-mr-px {
  scroll-margin-right: 1px;
}

.scroll-ms-0 {
  scroll-margin-inline-start: 0px;
}

.scroll-ms-0\.5 {
  scroll-margin-inline-start: 0.125rem;
}

.scroll-ms-1 {
  scroll-margin-inline-start: 0.25rem;
}

.scroll-ms-1\.5 {
  scroll-margin-inline-start: 0.375rem;
}

.scroll-ms-10 {
  scroll-margin-inline-start: 2.5rem;
}

.scroll-ms-11 {
  scroll-margin-inline-start: 2.75rem;
}

.scroll-ms-12 {
  scroll-margin-inline-start: 3rem;
}

.scroll-ms-14 {
  scroll-margin-inline-start: 3.5rem;
}

.scroll-ms-16 {
  scroll-margin-inline-start: 4rem;
}

.scroll-ms-2 {
  scroll-margin-inline-start: 0.5rem;
}

.scroll-ms-2\.5 {
  scroll-margin-inline-start: 0.625rem;
}

.scroll-ms-20 {
  scroll-margin-inline-start: 5rem;
}

.scroll-ms-24 {
  scroll-margin-inline-start: 6rem;
}

.scroll-ms-28 {
  scroll-margin-inline-start: 7rem;
}

.scroll-ms-3 {
  scroll-margin-inline-start: 0.75rem;
}

.scroll-ms-3\.5 {
  scroll-margin-inline-start: 0.875rem;
}

.scroll-ms-32 {
  scroll-margin-inline-start: 8rem;
}

.scroll-ms-36 {
  scroll-margin-inline-start: 9rem;
}

.scroll-ms-4 {
  scroll-margin-inline-start: 1rem;
}

.scroll-ms-40 {
  scroll-margin-inline-start: 10rem;
}

.scroll-ms-44 {
  scroll-margin-inline-start: 11rem;
}

.scroll-ms-48 {
  scroll-margin-inline-start: 12rem;
}

.scroll-ms-5 {
  scroll-margin-inline-start: 1.25rem;
}

.scroll-ms-52 {
  scroll-margin-inline-start: 13rem;
}

.scroll-ms-56 {
  scroll-margin-inline-start: 14rem;
}

.scroll-ms-6 {
  scroll-margin-inline-start: 1.5rem;
}

.scroll-ms-60 {
  scroll-margin-inline-start: 15rem;
}

.scroll-ms-64 {
  scroll-margin-inline-start: 16rem;
}

.scroll-ms-7 {
  scroll-margin-inline-start: 1.75rem;
}

.scroll-ms-72 {
  scroll-margin-inline-start: 18rem;
}

.scroll-ms-8 {
  scroll-margin-inline-start: 2rem;
}

.scroll-ms-80 {
  scroll-margin-inline-start: 20rem;
}

.scroll-ms-9 {
  scroll-margin-inline-start: 2.25rem;
}

.scroll-ms-96 {
  scroll-margin-inline-start: 24rem;
}

.scroll-ms-px {
  scroll-margin-inline-start: 1px;
}

.scroll-mt-0 {
  scroll-margin-top: 0px;
}

.scroll-mt-0\.5 {
  scroll-margin-top: 0.125rem;
}

.scroll-mt-1 {
  scroll-margin-top: 0.25rem;
}

.scroll-mt-1\.5 {
  scroll-margin-top: 0.375rem;
}

.scroll-mt-10 {
  scroll-margin-top: 2.5rem;
}

.scroll-mt-11 {
  scroll-margin-top: 2.75rem;
}

.scroll-mt-12 {
  scroll-margin-top: 3rem;
}

.scroll-mt-14 {
  scroll-margin-top: 3.5rem;
}

.scroll-mt-16 {
  scroll-margin-top: 4rem;
}

.scroll-mt-2 {
  scroll-margin-top: 0.5rem;
}

.scroll-mt-2\.5 {
  scroll-margin-top: 0.625rem;
}

.scroll-mt-20 {
  scroll-margin-top: 5rem;
}

.scroll-mt-24 {
  scroll-margin-top: 6rem;
}

.scroll-mt-28 {
  scroll-margin-top: 7rem;
}

.scroll-mt-3 {
  scroll-margin-top: 0.75rem;
}

.scroll-mt-3\.5 {
  scroll-margin-top: 0.875rem;
}

.scroll-mt-32 {
  scroll-margin-top: 8rem;
}

.scroll-mt-36 {
  scroll-margin-top: 9rem;
}

.scroll-mt-4 {
  scroll-margin-top: 1rem;
}

.scroll-mt-40 {
  scroll-margin-top: 10rem;
}

.scroll-mt-44 {
  scroll-margin-top: 11rem;
}

.scroll-mt-48 {
  scroll-margin-top: 12rem;
}

.scroll-mt-5 {
  scroll-margin-top: 1.25rem;
}

.scroll-mt-52 {
  scroll-margin-top: 13rem;
}

.scroll-mt-56 {
  scroll-margin-top: 14rem;
}

.scroll-mt-6 {
  scroll-margin-top: 1.5rem;
}

.scroll-mt-60 {
  scroll-margin-top: 15rem;
}

.scroll-mt-64 {
  scroll-margin-top: 16rem;
}

.scroll-mt-7 {
  scroll-margin-top: 1.75rem;
}

.scroll-mt-72 {
  scroll-margin-top: 18rem;
}

.scroll-mt-8 {
  scroll-margin-top: 2rem;
}

.scroll-mt-80 {
  scroll-margin-top: 20rem;
}

.scroll-mt-9 {
  scroll-margin-top: 2.25rem;
}

.scroll-mt-96 {
  scroll-margin-top: 24rem;
}

.scroll-mt-px {
  scroll-margin-top: 1px;
}

.scroll-p-0 {
  scroll-padding: 0px;
}

.scroll-p-0\.5 {
  scroll-padding: 0.125rem;
}

.scroll-p-1 {
  scroll-padding: 0.25rem;
}

.scroll-p-1\.5 {
  scroll-padding: 0.375rem;
}

.scroll-p-10 {
  scroll-padding: 2.5rem;
}

.scroll-p-11 {
  scroll-padding: 2.75rem;
}

.scroll-p-12 {
  scroll-padding: 3rem;
}

.scroll-p-14 {
  scroll-padding: 3.5rem;
}

.scroll-p-16 {
  scroll-padding: 4rem;
}

.scroll-p-2 {
  scroll-padding: 0.5rem;
}

.scroll-p-2\.5 {
  scroll-padding: 0.625rem;
}

.scroll-p-20 {
  scroll-padding: 5rem;
}

.scroll-p-24 {
  scroll-padding: 6rem;
}

.scroll-p-28 {
  scroll-padding: 7rem;
}

.scroll-p-3 {
  scroll-padding: 0.75rem;
}

.scroll-p-3\.5 {
  scroll-padding: 0.875rem;
}

.scroll-p-32 {
  scroll-padding: 8rem;
}

.scroll-p-36 {
  scroll-padding: 9rem;
}

.scroll-p-4 {
  scroll-padding: 1rem;
}

.scroll-p-40 {
  scroll-padding: 10rem;
}

.scroll-p-44 {
  scroll-padding: 11rem;
}

.scroll-p-48 {
  scroll-padding: 12rem;
}

.scroll-p-5 {
  scroll-padding: 1.25rem;
}

.scroll-p-52 {
  scroll-padding: 13rem;
}

.scroll-p-56 {
  scroll-padding: 14rem;
}

.scroll-p-6 {
  scroll-padding: 1.5rem;
}

.scroll-p-60 {
  scroll-padding: 15rem;
}

.scroll-p-64 {
  scroll-padding: 16rem;
}

.scroll-p-7 {
  scroll-padding: 1.75rem;
}

.scroll-p-72 {
  scroll-padding: 18rem;
}

.scroll-p-8 {
  scroll-padding: 2rem;
}

.scroll-p-80 {
  scroll-padding: 20rem;
}

.scroll-p-9 {
  scroll-padding: 2.25rem;
}

.scroll-p-96 {
  scroll-padding: 24rem;
}

.scroll-p-px {
  scroll-padding: 1px;
}

.scroll-px-0 {
  scroll-padding-left: 0px;
  scroll-padding-right: 0px;
}

.scroll-px-0\.5 {
  scroll-padding-left: 0.125rem;
  scroll-padding-right: 0.125rem;
}

.scroll-px-1 {
  scroll-padding-left: 0.25rem;
  scroll-padding-right: 0.25rem;
}

.scroll-px-1\.5 {
  scroll-padding-left: 0.375rem;
  scroll-padding-right: 0.375rem;
}

.scroll-px-10 {
  scroll-padding-left: 2.5rem;
  scroll-padding-right: 2.5rem;
}

.scroll-px-11 {
  scroll-padding-left: 2.75rem;
  scroll-padding-right: 2.75rem;
}

.scroll-px-12 {
  scroll-padding-left: 3rem;
  scroll-padding-right: 3rem;
}

.scroll-px-14 {
  scroll-padding-left: 3.5rem;
  scroll-padding-right: 3.5rem;
}

.scroll-px-16 {
  scroll-padding-left: 4rem;
  scroll-padding-right: 4rem;
}

.scroll-px-2 {
  scroll-padding-left: 0.5rem;
  scroll-padding-right: 0.5rem;
}

.scroll-px-2\.5 {
  scroll-padding-left: 0.625rem;
  scroll-padding-right: 0.625rem;
}

.scroll-px-20 {
  scroll-padding-left: 5rem;
  scroll-padding-right: 5rem;
}

.scroll-px-24 {
  scroll-padding-left: 6rem;
  scroll-padding-right: 6rem;
}

.scroll-px-28 {
  scroll-padding-left: 7rem;
  scroll-padding-right: 7rem;
}

.scroll-px-3 {
  scroll-padding-left: 0.75rem;
  scroll-padding-right: 0.75rem;
}

.scroll-px-3\.5 {
  scroll-padding-left: 0.875rem;
  scroll-padding-right: 0.875rem;
}

.scroll-px-32 {
  scroll-padding-left: 8rem;
  scroll-padding-right: 8rem;
}

.scroll-px-36 {
  scroll-padding-left: 9rem;
  scroll-padding-right: 9rem;
}

.scroll-px-4 {
  scroll-padding-left: 1rem;
  scroll-padding-right: 1rem;
}

.scroll-px-40 {
  scroll-padding-left: 10rem;
  scroll-padding-right: 10rem;
}

.scroll-px-44 {
  scroll-padding-left: 11rem;
  scroll-padding-right: 11rem;
}

.scroll-px-48 {
  scroll-padding-left: 12rem;
  scroll-padding-right: 12rem;
}

.scroll-px-5 {
  scroll-padding-left: 1.25rem;
  scroll-padding-right: 1.25rem;
}

.scroll-px-52 {
  scroll-padding-left: 13rem;
  scroll-padding-right: 13rem;
}

.scroll-px-56 {
  scroll-padding-left: 14rem;
  scroll-padding-right: 14rem;
}

.scroll-px-6 {
  scroll-padding-left: 1.5rem;
  scroll-padding-right: 1.5rem;
}

.scroll-px-60 {
  scroll-padding-left: 15rem;
  scroll-padding-right: 15rem;
}

.scroll-px-64 {
  scroll-padding-left: 16rem;
  scroll-padding-right: 16rem;
}

.scroll-px-7 {
  scroll-padding-left: 1.75rem;
  scroll-padding-right: 1.75rem;
}

.scroll-px-72 {
  scroll-padding-left: 18rem;
  scroll-padding-right: 18rem;
}

.scroll-px-8 {
  scroll-padding-left: 2rem;
  scroll-padding-right: 2rem;
}

.scroll-px-80 {
  scroll-padding-left: 20rem;
  scroll-padding-right: 20rem;
}

.scroll-px-9 {
  scroll-padding-left: 2.25rem;
  scroll-padding-right: 2.25rem;
}

.scroll-px-96 {
  scroll-padding-left: 24rem;
  scroll-padding-right: 24rem;
}

.scroll-px-px {
  scroll-padding-left: 1px;
  scroll-padding-right: 1px;
}

.scroll-py-0 {
  scroll-padding-top: 0px;
  scroll-padding-bottom: 0px;
}

.scroll-py-0\.5 {
  scroll-padding-top: 0.125rem;
  scroll-padding-bottom: 0.125rem;
}

.scroll-py-1 {
  scroll-padding-top: 0.25rem;
  scroll-padding-bottom: 0.25rem;
}

.scroll-py-1\.5 {
  scroll-padding-top: 0.375rem;
  scroll-padding-bottom: 0.375rem;
}

.scroll-py-10 {
  scroll-padding-top: 2.5rem;
  scroll-padding-bottom: 2.5rem;
}

.scroll-py-11 {
  scroll-padding-top: 2.75rem;
  scroll-padding-bottom: 2.75rem;
}

.scroll-py-12 {
  scroll-padding-top: 3rem;
  scroll-padding-bottom: 3rem;
}

.scroll-py-14 {
  scroll-padding-top: 3.5rem;
  scroll-padding-bottom: 3.5rem;
}

.scroll-py-16 {
  scroll-padding-top: 4rem;
  scroll-padding-bottom: 4rem;
}

.scroll-py-2 {
  scroll-padding-top: 0.5rem;
  scroll-padding-bottom: 0.5rem;
}

.scroll-py-2\.5 {
  scroll-padding-top: 0.625rem;
  scroll-padding-bottom: 0.625rem;
}

.scroll-py-20 {
  scroll-padding-top: 5rem;
  scroll-padding-bottom: 5rem;
}

.scroll-py-24 {
  scroll-padding-top: 6rem;
  scroll-padding-bottom: 6rem;
}

.scroll-py-28 {
  scroll-padding-top: 7rem;
  scroll-padding-bottom: 7rem;
}

.scroll-py-3 {
  scroll-padding-top: 0.75rem;
  scroll-padding-bottom: 0.75rem;
}

.scroll-py-3\.5 {
  scroll-padding-top: 0.875rem;
  scroll-padding-bottom: 0.875rem;
}

.scroll-py-32 {
  scroll-padding-top: 8rem;
  scroll-padding-bottom: 8rem;
}

.scroll-py-36 {
  scroll-padding-top: 9rem;
  scroll-padding-bottom: 9rem;
}

.scroll-py-4 {
  scroll-padding-top: 1rem;
  scroll-padding-bottom: 1rem;
}

.scroll-py-40 {
  scroll-padding-top: 10rem;
  scroll-padding-bottom: 10rem;
}

.scroll-py-44 {
  scroll-padding-top: 11rem;
  scroll-padding-bottom: 11rem;
}

.scroll-py-48 {
  scroll-padding-top: 12rem;
  scroll-padding-bottom: 12rem;
}

.scroll-py-5 {
  scroll-padding-top: 1.25rem;
  scroll-padding-bottom: 1.25rem;
}

.scroll-py-52 {
  scroll-padding-top: 13rem;
  scroll-padding-bottom: 13rem;
}

.scroll-py-56 {
  scroll-padding-top: 14rem;
  scroll-padding-bottom: 14rem;
}

.scroll-py-6 {
  scroll-padding-top: 1.5rem;
  scroll-padding-bottom: 1.5rem;
}

.scroll-py-60 {
  scroll-padding-top: 15rem;
  scroll-padding-bottom: 15rem;
}

.scroll-py-64 {
  scroll-padding-top: 16rem;
  scroll-padding-bottom: 16rem;
}

.scroll-py-7 {
  scroll-padding-top: 1.75rem;
  scroll-padding-bottom: 1.75rem;
}

.scroll-py-72 {
  scroll-padding-top: 18rem;
  scroll-padding-bottom: 18rem;
}

.scroll-py-8 {
  scroll-padding-top: 2rem;
  scroll-padding-bottom: 2rem;
}

.scroll-py-80 {
  scroll-padding-top: 20rem;
  scroll-padding-bottom: 20rem;
}

.scroll-py-9 {
  scroll-padding-top: 2.25rem;
  scroll-padding-bottom: 2.25rem;
}

.scroll-py-96 {
  scroll-padding-top: 24rem;
  scroll-padding-bottom: 24rem;
}

.scroll-py-px {
  scroll-padding-top: 1px;
  scroll-padding-bottom: 1px;
}

.scroll-pb-0 {
  scroll-padding-bottom: 0px;
}

.scroll-pb-0\.5 {
  scroll-padding-bottom: 0.125rem;
}

.scroll-pb-1 {
  scroll-padding-bottom: 0.25rem;
}

.scroll-pb-1\.5 {
  scroll-padding-bottom: 0.375rem;
}

.scroll-pb-10 {
  scroll-padding-bottom: 2.5rem;
}

.scroll-pb-11 {
  scroll-padding-bottom: 2.75rem;
}

.scroll-pb-12 {
  scroll-padding-bottom: 3rem;
}

.scroll-pb-14 {
  scroll-padding-bottom: 3.5rem;
}

.scroll-pb-16 {
  scroll-padding-bottom: 4rem;
}

.scroll-pb-2 {
  scroll-padding-bottom: 0.5rem;
}

.scroll-pb-2\.5 {
  scroll-padding-bottom: 0.625rem;
}

.scroll-pb-20 {
  scroll-padding-bottom: 5rem;
}

.scroll-pb-24 {
  scroll-padding-bottom: 6rem;
}

.scroll-pb-28 {
  scroll-padding-bottom: 7rem;
}

.scroll-pb-3 {
  scroll-padding-bottom: 0.75rem;
}

.scroll-pb-3\.5 {
  scroll-padding-bottom: 0.875rem;
}

.scroll-pb-32 {
  scroll-padding-bottom: 8rem;
}

.scroll-pb-36 {
  scroll-padding-bottom: 9rem;
}

.scroll-pb-4 {
  scroll-padding-bottom: 1rem;
}

.scroll-pb-40 {
  scroll-padding-bottom: 10rem;
}

.scroll-pb-44 {
  scroll-padding-bottom: 11rem;
}

.scroll-pb-48 {
  scroll-padding-bottom: 12rem;
}

.scroll-pb-5 {
  scroll-padding-bottom: 1.25rem;
}

.scroll-pb-52 {
  scroll-padding-bottom: 13rem;
}

.scroll-pb-56 {
  scroll-padding-bottom: 14rem;
}

.scroll-pb-6 {
  scroll-padding-bottom: 1.5rem;
}

.scroll-pb-60 {
  scroll-padding-bottom: 15rem;
}

.scroll-pb-64 {
  scroll-padding-bottom: 16rem;
}

.scroll-pb-7 {
  scroll-padding-bottom: 1.75rem;
}

.scroll-pb-72 {
  scroll-padding-bottom: 18rem;
}

.scroll-pb-8 {
  scroll-padding-bottom: 2rem;
}

.scroll-pb-80 {
  scroll-padding-bottom: 20rem;
}

.scroll-pb-9 {
  scroll-padding-bottom: 2.25rem;
}

.scroll-pb-96 {
  scroll-padding-bottom: 24rem;
}

.scroll-pb-px {
  scroll-padding-bottom: 1px;
}

.scroll-pe-0 {
  scroll-padding-inline-end: 0px;
}

.scroll-pe-0\.5 {
  scroll-padding-inline-end: 0.125rem;
}

.scroll-pe-1 {
  scroll-padding-inline-end: 0.25rem;
}

.scroll-pe-1\.5 {
  scroll-padding-inline-end: 0.375rem;
}

.scroll-pe-10 {
  scroll-padding-inline-end: 2.5rem;
}

.scroll-pe-11 {
  scroll-padding-inline-end: 2.75rem;
}

.scroll-pe-12 {
  scroll-padding-inline-end: 3rem;
}

.scroll-pe-14 {
  scroll-padding-inline-end: 3.5rem;
}

.scroll-pe-16 {
  scroll-padding-inline-end: 4rem;
}

.scroll-pe-2 {
  scroll-padding-inline-end: 0.5rem;
}

.scroll-pe-2\.5 {
  scroll-padding-inline-end: 0.625rem;
}

.scroll-pe-20 {
  scroll-padding-inline-end: 5rem;
}

.scroll-pe-24 {
  scroll-padding-inline-end: 6rem;
}

.scroll-pe-28 {
  scroll-padding-inline-end: 7rem;
}

.scroll-pe-3 {
  scroll-padding-inline-end: 0.75rem;
}

.scroll-pe-3\.5 {
  scroll-padding-inline-end: 0.875rem;
}

.scroll-pe-32 {
  scroll-padding-inline-end: 8rem;
}

.scroll-pe-36 {
  scroll-padding-inline-end: 9rem;
}

.scroll-pe-4 {
  scroll-padding-inline-end: 1rem;
}

.scroll-pe-40 {
  scroll-padding-inline-end: 10rem;
}

.scroll-pe-44 {
  scroll-padding-inline-end: 11rem;
}

.scroll-pe-48 {
  scroll-padding-inline-end: 12rem;
}

.scroll-pe-5 {
  scroll-padding-inline-end: 1.25rem;
}

.scroll-pe-52 {
  scroll-padding-inline-end: 13rem;
}

.scroll-pe-56 {
  scroll-padding-inline-end: 14rem;
}

.scroll-pe-6 {
  scroll-padding-inline-end: 1.5rem;
}

.scroll-pe-60 {
  scroll-padding-inline-end: 15rem;
}

.scroll-pe-64 {
  scroll-padding-inline-end: 16rem;
}

.scroll-pe-7 {
  scroll-padding-inline-end: 1.75rem;
}

.scroll-pe-72 {
  scroll-padding-inline-end: 18rem;
}

.scroll-pe-8 {
  scroll-padding-inline-end: 2rem;
}

.scroll-pe-80 {
  scroll-padding-inline-end: 20rem;
}

.scroll-pe-9 {
  scroll-padding-inline-end: 2.25rem;
}

.scroll-pe-96 {
  scroll-padding-inline-end: 24rem;
}

.scroll-pe-px {
  scroll-padding-inline-end: 1px;
}

.scroll-pl-0 {
  scroll-padding-left: 0px;
}

.scroll-pl-0\.5 {
  scroll-padding-left: 0.125rem;
}

.scroll-pl-1 {
  scroll-padding-left: 0.25rem;
}

.scroll-pl-1\.5 {
  scroll-padding-left: 0.375rem;
}

.scroll-pl-10 {
  scroll-padding-left: 2.5rem;
}

.scroll-pl-11 {
  scroll-padding-left: 2.75rem;
}

.scroll-pl-12 {
  scroll-padding-left: 3rem;
}

.scroll-pl-14 {
  scroll-padding-left: 3.5rem;
}

.scroll-pl-16 {
  scroll-padding-left: 4rem;
}

.scroll-pl-2 {
  scroll-padding-left: 0.5rem;
}

.scroll-pl-2\.5 {
  scroll-padding-left: 0.625rem;
}

.scroll-pl-20 {
  scroll-padding-left: 5rem;
}

.scroll-pl-24 {
  scroll-padding-left: 6rem;
}

.scroll-pl-28 {
  scroll-padding-left: 7rem;
}

.scroll-pl-3 {
  scroll-padding-left: 0.75rem;
}

.scroll-pl-3\.5 {
  scroll-padding-left: 0.875rem;
}

.scroll-pl-32 {
  scroll-padding-left: 8rem;
}

.scroll-pl-36 {
  scroll-padding-left: 9rem;
}

.scroll-pl-4 {
  scroll-padding-left: 1rem;
}

.scroll-pl-40 {
  scroll-padding-left: 10rem;
}

.scroll-pl-44 {
  scroll-padding-left: 11rem;
}

.scroll-pl-48 {
  scroll-padding-left: 12rem;
}

.scroll-pl-5 {
  scroll-padding-left: 1.25rem;
}

.scroll-pl-52 {
  scroll-padding-left: 13rem;
}

.scroll-pl-56 {
  scroll-padding-left: 14rem;
}

.scroll-pl-6 {
  scroll-padding-left: 1.5rem;
}

.scroll-pl-60 {
  scroll-padding-left: 15rem;
}

.scroll-pl-64 {
  scroll-padding-left: 16rem;
}

.scroll-pl-7 {
  scroll-padding-left: 1.75rem;
}

.scroll-pl-72 {
  scroll-padding-left: 18rem;
}

.scroll-pl-8 {
  scroll-padding-left: 2rem;
}

.scroll-pl-80 {
  scroll-padding-left: 20rem;
}

.scroll-pl-9 {
  scroll-padding-left: 2.25rem;
}

.scroll-pl-96 {
  scroll-padding-left: 24rem;
}

.scroll-pl-px {
  scroll-padding-left: 1px;
}

.scroll-pr-0 {
  scroll-padding-right: 0px;
}

.scroll-pr-0\.5 {
  scroll-padding-right: 0.125rem;
}

.scroll-pr-1 {
  scroll-padding-right: 0.25rem;
}

.scroll-pr-1\.5 {
  scroll-padding-right: 0.375rem;
}

.scroll-pr-10 {
  scroll-padding-right: 2.5rem;
}

.scroll-pr-11 {
  scroll-padding-right: 2.75rem;
}

.scroll-pr-12 {
  scroll-padding-right: 3rem;
}

.scroll-pr-14 {
  scroll-padding-right: 3.5rem;
}

.scroll-pr-16 {
  scroll-padding-right: 4rem;
}

.scroll-pr-2 {
  scroll-padding-right: 0.5rem;
}

.scroll-pr-2\.5 {
  scroll-padding-right: 0.625rem;
}

.scroll-pr-20 {
  scroll-padding-right: 5rem;
}

.scroll-pr-24 {
  scroll-padding-right: 6rem;
}

.scroll-pr-28 {
  scroll-padding-right: 7rem;
}

.scroll-pr-3 {
  scroll-padding-right: 0.75rem;
}

.scroll-pr-3\.5 {
  scroll-padding-right: 0.875rem;
}

.scroll-pr-32 {
  scroll-padding-right: 8rem;
}

.scroll-pr-36 {
  scroll-padding-right: 9rem;
}

.scroll-pr-4 {
  scroll-padding-right: 1rem;
}

.scroll-pr-40 {
  scroll-padding-right: 10rem;
}

.scroll-pr-44 {
  scroll-padding-right: 11rem;
}

.scroll-pr-48 {
  scroll-padding-right: 12rem;
}

.scroll-pr-5 {
  scroll-padding-right: 1.25rem;
}

.scroll-pr-52 {
  scroll-padding-right: 13rem;
}

.scroll-pr-56 {
  scroll-padding-right: 14rem;
}

.scroll-pr-6 {
  scroll-padding-right: 1.5rem;
}

.scroll-pr-60 {
  scroll-padding-right: 15rem;
}

.scroll-pr-64 {
  scroll-padding-right: 16rem;
}

.scroll-pr-7 {
  scroll-padding-right: 1.75rem;
}

.scroll-pr-72 {
  scroll-padding-right: 18rem;
}

.scroll-pr-8 {
  scroll-padding-right: 2rem;
}

.scroll-pr-80 {
  scroll-padding-right: 20rem;
}

.scroll-pr-9 {
  scroll-padding-right: 2.25rem;
}

.scroll-pr-96 {
  scroll-padding-right: 24rem;
}

.scroll-pr-px {
  scroll-padding-right: 1px;
}

.scroll-ps-0 {
  scroll-padding-inline-start: 0px;
}

.scroll-ps-0\.5 {
  scroll-padding-inline-start: 0.125rem;
}

.scroll-ps-1 {
  scroll-padding-inline-start: 0.25rem;
}

.scroll-ps-1\.5 {
  scroll-padding-inline-start: 0.375rem;
}

.scroll-ps-10 {
  scroll-padding-inline-start: 2.5rem;
}

.scroll-ps-11 {
  scroll-padding-inline-start: 2.75rem;
}

.scroll-ps-12 {
  scroll-padding-inline-start: 3rem;
}

.scroll-ps-14 {
  scroll-padding-inline-start: 3.5rem;
}

.scroll-ps-16 {
  scroll-padding-inline-start: 4rem;
}

.scroll-ps-2 {
  scroll-padding-inline-start: 0.5rem;
}

.scroll-ps-2\.5 {
  scroll-padding-inline-start: 0.625rem;
}

.scroll-ps-20 {
  scroll-padding-inline-start: 5rem;
}

.scroll-ps-24 {
  scroll-padding-inline-start: 6rem;
}

.scroll-ps-28 {
  scroll-padding-inline-start: 7rem;
}

.scroll-ps-3 {
  scroll-padding-inline-start: 0.75rem;
}

.scroll-ps-3\.5 {
  scroll-padding-inline-start: 0.875rem;
}

.scroll-ps-32 {
  scroll-padding-inline-start: 8rem;
}

.scroll-ps-36 {
  scroll-padding-inline-start: 9rem;
}

.scroll-ps-4 {
  scroll-padding-inline-start: 1rem;
}

.scroll-ps-40 {
  scroll-padding-inline-start: 10rem;
}

.scroll-ps-44 {
  scroll-padding-inline-start: 11rem;
}

.scroll-ps-48 {
  scroll-padding-inline-start: 12rem;
}

.scroll-ps-5 {
  scroll-padding-inline-start: 1.25rem;
}

.scroll-ps-52 {
  scroll-padding-inline-start: 13rem;
}

.scroll-ps-56 {
  scroll-padding-inline-start: 14rem;
}

.scroll-ps-6 {
  scroll-padding-inline-start: 1.5rem;
}

.scroll-ps-60 {
  scroll-padding-inline-start: 15rem;
}

.scroll-ps-64 {
  scroll-padding-inline-start: 16rem;
}

.scroll-ps-7 {
  scroll-padding-inline-start: 1.75rem;
}

.scroll-ps-72 {
  scroll-padding-inline-start: 18rem;
}

.scroll-ps-8 {
  scroll-padding-inline-start: 2rem;
}

.scroll-ps-80 {
  scroll-padding-inline-start: 20rem;
}

.scroll-ps-9 {
  scroll-padding-inline-start: 2.25rem;
}

.scroll-ps-96 {
  scroll-padding-inline-start: 24rem;
}

.scroll-ps-px {
  scroll-padding-inline-start: 1px;
}

.scroll-pt-0 {
  scroll-padding-top: 0px;
}

.scroll-pt-0\.5 {
  scroll-padding-top: 0.125rem;
}

.scroll-pt-1 {
  scroll-padding-top: 0.25rem;
}

.scroll-pt-1\.5 {
  scroll-padding-top: 0.375rem;
}

.scroll-pt-10 {
  scroll-padding-top: 2.5rem;
}

.scroll-pt-11 {
  scroll-padding-top: 2.75rem;
}

.scroll-pt-12 {
  scroll-padding-top: 3rem;
}

.scroll-pt-14 {
  scroll-padding-top: 3.5rem;
}

.scroll-pt-16 {
  scroll-padding-top: 4rem;
}

.scroll-pt-2 {
  scroll-padding-top: 0.5rem;
}

.scroll-pt-2\.5 {
  scroll-padding-top: 0.625rem;
}

.scroll-pt-20 {
  scroll-padding-top: 5rem;
}

.scroll-pt-24 {
  scroll-padding-top: 6rem;
}

.scroll-pt-28 {
  scroll-padding-top: 7rem;
}

.scroll-pt-3 {
  scroll-padding-top: 0.75rem;
}

.scroll-pt-3\.5 {
  scroll-padding-top: 0.875rem;
}

.scroll-pt-32 {
  scroll-padding-top: 8rem;
}

.scroll-pt-36 {
  scroll-padding-top: 9rem;
}

.scroll-pt-4 {
  scroll-padding-top: 1rem;
}

.scroll-pt-40 {
  scroll-padding-top: 10rem;
}

.scroll-pt-44 {
  scroll-padding-top: 11rem;
}

.scroll-pt-48 {
  scroll-padding-top: 12rem;
}

.scroll-pt-5 {
  scroll-padding-top: 1.25rem;
}

.scroll-pt-52 {
  scroll-padding-top: 13rem;
}

.scroll-pt-56 {
  scroll-padding-top: 14rem;
}

.scroll-pt-6 {
  scroll-padding-top: 1.5rem;
}

.scroll-pt-60 {
  scroll-padding-top: 15rem;
}

.scroll-pt-64 {
  scroll-padding-top: 16rem;
}

.scroll-pt-7 {
  scroll-padding-top: 1.75rem;
}

.scroll-pt-72 {
  scroll-padding-top: 18rem;
}

.scroll-pt-8 {
  scroll-padding-top: 2rem;
}

.scroll-pt-80 {
  scroll-padding-top: 20rem;
}

.scroll-pt-9 {
  scroll-padding-top: 2.25rem;
}

.scroll-pt-96 {
  scroll-padding-top: 24rem;
}

.scroll-pt-px {
  scroll-padding-top: 1px;
}

.list-image-none {
  list-style-image: none;
}

.appearance-none {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.appearance-auto {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}

.columns-1 {
  -moz-columns: 1;
       columns: 1;
}

.columns-10 {
  -moz-columns: 10;
       columns: 10;
}

.columns-11 {
  -moz-columns: 11;
       columns: 11;
}

.columns-12 {
  -moz-columns: 12;
       columns: 12;
}

.columns-2 {
  -moz-columns: 2;
       columns: 2;
}

.columns-2xl {
  -moz-columns: 42rem;
       columns: 42rem;
}

.columns-2xs {
  -moz-columns: 18rem;
       columns: 18rem;
}

.columns-3 {
  -moz-columns: 3;
       columns: 3;
}

.columns-3xl {
  -moz-columns: 48rem;
       columns: 48rem;
}

.columns-3xs {
  -moz-columns: 16rem;
       columns: 16rem;
}

.columns-4 {
  -moz-columns: 4;
       columns: 4;
}

.columns-4xl {
  -moz-columns: 56rem;
       columns: 56rem;
}

.columns-5 {
  -moz-columns: 5;
       columns: 5;
}

.columns-5xl {
  -moz-columns: 64rem;
       columns: 64rem;
}

.columns-6 {
  -moz-columns: 6;
       columns: 6;
}

.columns-6xl {
  -moz-columns: 72rem;
       columns: 72rem;
}

.columns-7 {
  -moz-columns: 7;
       columns: 7;
}

.columns-7xl {
  -moz-columns: 80rem;
       columns: 80rem;
}

.columns-8 {
  -moz-columns: 8;
       columns: 8;
}

.columns-9 {
  -moz-columns: 9;
       columns: 9;
}

.columns-auto {
  -moz-columns: auto;
       columns: auto;
}

.columns-lg {
  -moz-columns: 32rem;
       columns: 32rem;
}

.columns-md {
  -moz-columns: 28rem;
       columns: 28rem;
}

.columns-sm {
  -moz-columns: 24rem;
       columns: 24rem;
}

.columns-xl {
  -moz-columns: 36rem;
       columns: 36rem;
}

.columns-xs {
  -moz-columns: 20rem;
       columns: 20rem;
}

.break-before-auto {
  -moz-column-break-before: auto;
       break-before: auto;
}

.break-before-avoid {
  -moz-column-break-before: avoid;
       break-before: avoid;
}

.break-before-all {
  -moz-column-break-before: all;
       break-before: all;
}

.break-before-avoid-page {
  -moz-column-break-before: avoid;
       break-before: avoid-page;
}

.break-before-page {
  -moz-column-break-before: page;
       break-before: page;
}

.break-before-left {
  -moz-column-break-before: left;
       break-before: left;
}

.break-before-right {
  -moz-column-break-before: right;
       break-before: right;
}

.break-before-column {
  -moz-column-break-before: column;
       break-before: column;
}

.break-inside-auto {
  -moz-column-break-inside: auto;
       break-inside: auto;
}

.break-inside-avoid {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}

.break-inside-avoid-page {
  break-inside: avoid-page;
}

.break-inside-avoid-column {
  -moz-column-break-inside: avoid;
       break-inside: avoid-column;
}

.break-after-auto {
  -moz-column-break-after: auto;
       break-after: auto;
}

.break-after-avoid {
  -moz-column-break-after: avoid;
       break-after: avoid;
}

.break-after-all {
  -moz-column-break-after: all;
       break-after: all;
}

.break-after-avoid-page {
  -moz-column-break-after: avoid;
       break-after: avoid-page;
}

.break-after-page {
  -moz-column-break-after: page;
       break-after: page;
}

.break-after-left {
  -moz-column-break-after: left;
       break-after: left;
}

.break-after-right {
  -moz-column-break-after: right;
       break-after: right;
}

.break-after-column {
  -moz-column-break-after: column;
       break-after: column;
}

.auto-cols-auto {
  grid-auto-columns: auto;
}

.auto-cols-fr {
  grid-auto-columns: minmax(0, 1fr);
}

.auto-cols-max {
  grid-auto-columns: max-content;
}

.auto-cols-min {
  grid-auto-columns: min-content;
}

.grid-flow-row {
  grid-auto-flow: row;
}

.grid-flow-col {
  grid-auto-flow: column;
}

.grid-flow-dense {
  grid-auto-flow: dense;
}

.grid-flow-row-dense {
  grid-auto-flow: row dense;
}

.grid-flow-col-dense {
  grid-auto-flow: column dense;
}

.auto-rows-auto {
  grid-auto-rows: auto;
}

.auto-rows-fr {
  grid-auto-rows: minmax(0, 1fr);
}

.auto-rows-max {
  grid-auto-rows: max-content;
}

.auto-rows-min {
  grid-auto-rows: min-content;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

.grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.grid-cols-none {
  grid-template-columns: none;
}

.grid-cols-subgrid {
  grid-template-columns: subgrid;
}

.grid-rows-1 {
  grid-template-rows: repeat(1, minmax(0, 1fr));
}

.grid-rows-10 {
  grid-template-rows: repeat(10, minmax(0, 1fr));
}

.grid-rows-11 {
  grid-template-rows: repeat(11, minmax(0, 1fr));
}

.grid-rows-12 {
  grid-template-rows: repeat(12, minmax(0, 1fr));
}

.grid-rows-2 {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.grid-rows-3 {
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.grid-rows-4 {
  grid-template-rows: repeat(4, minmax(0, 1fr));
}

.grid-rows-5 {
  grid-template-rows: repeat(5, minmax(0, 1fr));
}

.grid-rows-6 {
  grid-template-rows: repeat(6, minmax(0, 1fr));
}

.grid-rows-7 {
  grid-template-rows: repeat(7, minmax(0, 1fr));
}

.grid-rows-8 {
  grid-template-rows: repeat(8, minmax(0, 1fr));
}

.grid-rows-9 {
  grid-template-rows: repeat(9, minmax(0, 1fr));
}

.grid-rows-none {
  grid-template-rows: none;
}

.grid-rows-subgrid {
  grid-template-rows: subgrid;
}

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-col {
  flex-direction: column;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.content-normal {
  align-content: normal;
}

.content-center {
  align-content: center;
}

.content-start {
  align-content: flex-start;
}

.content-end {
  align-content: flex-end;
}

.content-between {
  align-content: space-between;
}

.content-around {
  align-content: space-around;
}

.content-evenly {
  align-content: space-evenly;
}

.content-baseline {
  align-content: baseline;
}

.content-stretch {
  align-content: stretch;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.items-baseline {
  align-items: baseline;
}

.items-stretch {
  align-items: stretch;
}

.justify-normal {
  justify-content: normal;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.justify-stretch {
  justify-content: stretch;
}

.justify-items-start {
  justify-items: start;
}

.justify-items-end {
  justify-items: end;
}

.justify-items-center {
  justify-items: center;
}

.justify-items-stretch {
  justify-items: stretch;
}

.gap-0 {
  gap: 0px;
}

.gap-0\.5 {
  gap: 0.125rem;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-1\.5 {
  gap: 0.375rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-11 {
  gap: 2.75rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-14 {
  gap: 3.5rem;
}

.gap-16 {
  gap: 4rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-2\.5 {
  gap: 0.625rem;
}

.gap-20 {
  gap: 5rem;
}

.gap-24 {
  gap: 6rem;
}

.gap-28 {
  gap: 7rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-3\.5 {
  gap: 0.875rem;
}

.gap-32 {
  gap: 8rem;
}

.gap-36 {
  gap: 9rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-40 {
  gap: 10rem;
}

.gap-44 {
  gap: 11rem;
}

.gap-48 {
  gap: 12rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-52 {
  gap: 13rem;
}

.gap-56 {
  gap: 14rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-60 {
  gap: 15rem;
}

.gap-64 {
  gap: 16rem;
}

.gap-7 {
  gap: 1.75rem;
}

.gap-72 {
  gap: 18rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-80 {
  gap: 20rem;
}

.gap-9 {
  gap: 2.25rem;
}

.gap-96 {
  gap: 24rem;
}

.gap-px {
  gap: 1px;
}

.gap-x-0 {
  -moz-column-gap: 0px;
       column-gap: 0px;
}

.gap-x-0\.5 {
  -moz-column-gap: 0.125rem;
       column-gap: 0.125rem;
}

.gap-x-1 {
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}

.gap-x-1\.5 {
  -moz-column-gap: 0.375rem;
       column-gap: 0.375rem;
}

.gap-x-10 {
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}

.gap-x-11 {
  -moz-column-gap: 2.75rem;
       column-gap: 2.75rem;
}

.gap-x-12 {
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}

.gap-x-14 {
  -moz-column-gap: 3.5rem;
       column-gap: 3.5rem;
}

.gap-x-16 {
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}

.gap-x-2 {
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.gap-x-2\.5 {
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
}

.gap-x-20 {
  -moz-column-gap: 5rem;
       column-gap: 5rem;
}

.gap-x-24 {
  -moz-column-gap: 6rem;
       column-gap: 6rem;
}

.gap-x-28 {
  -moz-column-gap: 7rem;
       column-gap: 7rem;
}

.gap-x-3 {
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}

.gap-x-3\.5 {
  -moz-column-gap: 0.875rem;
       column-gap: 0.875rem;
}

.gap-x-32 {
  -moz-column-gap: 8rem;
       column-gap: 8rem;
}

.gap-x-36 {
  -moz-column-gap: 9rem;
       column-gap: 9rem;
}

.gap-x-4 {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.gap-x-40 {
  -moz-column-gap: 10rem;
       column-gap: 10rem;
}

.gap-x-44 {
  -moz-column-gap: 11rem;
       column-gap: 11rem;
}

.gap-x-48 {
  -moz-column-gap: 12rem;
       column-gap: 12rem;
}

.gap-x-5 {
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}

.gap-x-52 {
  -moz-column-gap: 13rem;
       column-gap: 13rem;
}

.gap-x-56 {
  -moz-column-gap: 14rem;
       column-gap: 14rem;
}

.gap-x-6 {
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

.gap-x-60 {
  -moz-column-gap: 15rem;
       column-gap: 15rem;
}

.gap-x-64 {
  -moz-column-gap: 16rem;
       column-gap: 16rem;
}

.gap-x-7 {
  -moz-column-gap: 1.75rem;
       column-gap: 1.75rem;
}

.gap-x-72 {
  -moz-column-gap: 18rem;
       column-gap: 18rem;
}

.gap-x-8 {
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.gap-x-80 {
  -moz-column-gap: 20rem;
       column-gap: 20rem;
}

.gap-x-9 {
  -moz-column-gap: 2.25rem;
       column-gap: 2.25rem;
}

.gap-x-96 {
  -moz-column-gap: 24rem;
       column-gap: 24rem;
}

.gap-x-px {
  -moz-column-gap: 1px;
       column-gap: 1px;
}

.gap-y-0 {
  row-gap: 0px;
}

.gap-y-0\.5 {
  row-gap: 0.125rem;
}

.gap-y-1 {
  row-gap: 0.25rem;
}

.gap-y-1\.5 {
  row-gap: 0.375rem;
}

.gap-y-10 {
  row-gap: 2.5rem;
}

.gap-y-11 {
  row-gap: 2.75rem;
}

.gap-y-12 {
  row-gap: 3rem;
}

.gap-y-14 {
  row-gap: 3.5rem;
}

.gap-y-16 {
  row-gap: 4rem;
}

.gap-y-2 {
  row-gap: 0.5rem;
}

.gap-y-2\.5 {
  row-gap: 0.625rem;
}

.gap-y-20 {
  row-gap: 5rem;
}

.gap-y-24 {
  row-gap: 6rem;
}

.gap-y-28 {
  row-gap: 7rem;
}

.gap-y-3 {
  row-gap: 0.75rem;
}

.gap-y-3\.5 {
  row-gap: 0.875rem;
}

.gap-y-32 {
  row-gap: 8rem;
}

.gap-y-36 {
  row-gap: 9rem;
}

.gap-y-4 {
  row-gap: 1rem;
}

.gap-y-40 {
  row-gap: 10rem;
}

.gap-y-44 {
  row-gap: 11rem;
}

.gap-y-48 {
  row-gap: 12rem;
}

.gap-y-5 {
  row-gap: 1.25rem;
}

.gap-y-52 {
  row-gap: 13rem;
}

.gap-y-56 {
  row-gap: 14rem;
}

.gap-y-6 {
  row-gap: 1.5rem;
}

.gap-y-60 {
  row-gap: 15rem;
}

.gap-y-64 {
  row-gap: 16rem;
}

.gap-y-7 {
  row-gap: 1.75rem;
}

.gap-y-72 {
  row-gap: 18rem;
}

.gap-y-8 {
  row-gap: 2rem;
}

.gap-y-80 {
  row-gap: 20rem;
}

.gap-y-9 {
  row-gap: 2.25rem;
}

.gap-y-96 {
  row-gap: 24rem;
}

.gap-y-px {
  row-gap: 1px;
}

.justify-self-auto {
  justify-self: auto;
}

.justify-self-start {
  justify-self: start;
}

.justify-self-end {
  justify-self: end;
}

.justify-self-center {
  justify-self: center;
}

.justify-self-stretch {
  justify-self: stretch;
}

.overflow-auto {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-clip {
  overflow: clip;
}

.overflow-visible {
  overflow: visible;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.overflow-x-clip {
  overflow-x: clip;
}

.overflow-y-clip {
  overflow-y: clip;
}

.overflow-x-visible {
  overflow-x: visible;
}

.overflow-y-visible {
  overflow-y: visible;
}

.overflow-x-scroll {
  overflow-x: scroll;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.overscroll-auto {
  overscroll-behavior: auto;
}

.overscroll-contain {
  overscroll-behavior: contain;
}

.overscroll-none {
  overscroll-behavior: none;
}

.overscroll-y-auto {
  overscroll-behavior-y: auto;
}

.overscroll-y-contain {
  overscroll-behavior-y: contain;
}

.overscroll-y-none {
  overscroll-behavior-y: none;
}

.overscroll-x-auto {
  overscroll-behavior-x: auto;
}

.overscroll-x-contain {
  overscroll-behavior-x: contain;
}

.overscroll-x-none {
  overscroll-behavior-x: none;
}

.scroll-auto {
  scroll-behavior: auto;
}

.scroll-smooth {
  scroll-behavior: smooth;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.overflow-ellipsis {
  text-overflow: ellipsis;
}

.text-ellipsis {
  text-overflow: ellipsis;
}

.text-clip {
  text-overflow: clip;
}

.hyphens-none {
  -webkit-hyphens: none;
          hyphens: none;
}

.hyphens-manual {
  -webkit-hyphens: manual;
          hyphens: manual;
}

.hyphens-auto {
  -webkit-hyphens: auto;
          hyphens: auto;
}

.text-wrap {
  text-wrap: wrap;
}

.text-nowrap {
  text-wrap: nowrap;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

.break-normal {
  overflow-wrap: normal;
  word-break: normal;
}

.break-words {
  overflow-wrap: break-word;
}

.break-all {
  word-break: break-all;
}

.break-keep {
  word-break: keep-all;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-none {
  border-radius: 0px;
}

.rounded-sm {
  border-radius: 0.125rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-b {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.rounded-b-2xl {
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.rounded-b-3xl {
  border-bottom-right-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
}

.rounded-b-full {
  border-bottom-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
}

.rounded-b-lg {
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.rounded-b-md {
  border-bottom-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.rounded-b-none {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.rounded-b-sm {
  border-bottom-right-radius: 0.125rem;
  border-bottom-left-radius: 0.125rem;
}

.rounded-b-xl {
  border-bottom-right-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
}

.rounded-e {
  border-start-end-radius: 0.25rem;
  border-end-end-radius: 0.25rem;
}

.rounded-e-2xl {
  border-start-end-radius: 1rem;
  border-end-end-radius: 1rem;
}

.rounded-e-3xl {
  border-start-end-radius: 1.5rem;
  border-end-end-radius: 1.5rem;
}

.rounded-e-full {
  border-start-end-radius: 9999px;
  border-end-end-radius: 9999px;
}

.rounded-e-lg {
  border-start-end-radius: 0.5rem;
  border-end-end-radius: 0.5rem;
}

.rounded-e-md {
  border-start-end-radius: 0.375rem;
  border-end-end-radius: 0.375rem;
}

.rounded-e-none {
  border-start-end-radius: 0px;
  border-end-end-radius: 0px;
}

.rounded-e-sm {
  border-start-end-radius: 0.125rem;
  border-end-end-radius: 0.125rem;
}

.rounded-e-xl {
  border-start-end-radius: 0.75rem;
  border-end-end-radius: 0.75rem;
}

.rounded-l {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.rounded-l-2xl {
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.rounded-l-3xl {
  border-top-left-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
}

.rounded-l-full {
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px;
}

.rounded-l-lg {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.rounded-l-md {
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.rounded-l-none {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.rounded-l-sm {
  border-top-left-radius: 0.125rem;
  border-bottom-left-radius: 0.125rem;
}

.rounded-l-xl {
  border-top-left-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
}

.rounded-r {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.rounded-r-2xl {
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.rounded-r-3xl {
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}

.rounded-r-full {
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.rounded-r-lg {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.rounded-r-md {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

.rounded-r-none {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.rounded-r-sm {
  border-top-right-radius: 0.125rem;
  border-bottom-right-radius: 0.125rem;
}

.rounded-r-xl {
  border-top-right-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}

.rounded-s {
  border-start-start-radius: 0.25rem;
  border-end-start-radius: 0.25rem;
}

.rounded-s-2xl {
  border-start-start-radius: 1rem;
  border-end-start-radius: 1rem;
}

.rounded-s-3xl {
  border-start-start-radius: 1.5rem;
  border-end-start-radius: 1.5rem;
}

.rounded-s-full {
  border-start-start-radius: 9999px;
  border-end-start-radius: 9999px;
}

.rounded-s-lg {
  border-start-start-radius: 0.5rem;
  border-end-start-radius: 0.5rem;
}

.rounded-s-md {
  border-start-start-radius: 0.375rem;
  border-end-start-radius: 0.375rem;
}

.rounded-s-none {
  border-start-start-radius: 0px;
  border-end-start-radius: 0px;
}

.rounded-s-sm {
  border-start-start-radius: 0.125rem;
  border-end-start-radius: 0.125rem;
}

.rounded-s-xl {
  border-start-start-radius: 0.75rem;
  border-end-start-radius: 0.75rem;
}

.rounded-t {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.rounded-t-2xl {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.rounded-t-3xl {
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}

.rounded-t-full {
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
}

.rounded-t-lg {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.rounded-t-md {
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}

.rounded-t-none {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.rounded-t-sm {
  border-top-left-radius: 0.125rem;
  border-top-right-radius: 0.125rem;
}

.rounded-t-xl {
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}

.rounded-bl {
  border-bottom-left-radius: 0.25rem;
}

.rounded-bl-2xl {
  border-bottom-left-radius: 1rem;
}

.rounded-bl-3xl {
  border-bottom-left-radius: 1.5rem;
}

.rounded-bl-full {
  border-bottom-left-radius: 9999px;
}

.rounded-bl-lg {
  border-bottom-left-radius: 0.5rem;
}

.rounded-bl-md {
  border-bottom-left-radius: 0.375rem;
}

.rounded-bl-none {
  border-bottom-left-radius: 0px;
}

.rounded-bl-sm {
  border-bottom-left-radius: 0.125rem;
}

.rounded-bl-xl {
  border-bottom-left-radius: 0.75rem;
}

.rounded-br {
  border-bottom-right-radius: 0.25rem;
}

.rounded-br-2xl {
  border-bottom-right-radius: 1rem;
}

.rounded-br-3xl {
  border-bottom-right-radius: 1.5rem;
}

.rounded-br-full {
  border-bottom-right-radius: 9999px;
}

.rounded-br-lg {
  border-bottom-right-radius: 0.5rem;
}

.rounded-br-md {
  border-bottom-right-radius: 0.375rem;
}

.rounded-br-none {
  border-bottom-right-radius: 0px;
}

.rounded-br-sm {
  border-bottom-right-radius: 0.125rem;
}

.rounded-br-xl {
  border-bottom-right-radius: 0.75rem;
}

.rounded-ee {
  border-end-end-radius: 0.25rem;
}

.rounded-ee-2xl {
  border-end-end-radius: 1rem;
}

.rounded-ee-3xl {
  border-end-end-radius: 1.5rem;
}

.rounded-ee-full {
  border-end-end-radius: 9999px;
}

.rounded-ee-lg {
  border-end-end-radius: 0.5rem;
}

.rounded-ee-md {
  border-end-end-radius: 0.375rem;
}

.rounded-ee-none {
  border-end-end-radius: 0px;
}

.rounded-ee-sm {
  border-end-end-radius: 0.125rem;
}

.rounded-ee-xl {
  border-end-end-radius: 0.75rem;
}

.rounded-es {
  border-end-start-radius: 0.25rem;
}

.rounded-es-2xl {
  border-end-start-radius: 1rem;
}

.rounded-es-3xl {
  border-end-start-radius: 1.5rem;
}

.rounded-es-full {
  border-end-start-radius: 9999px;
}

.rounded-es-lg {
  border-end-start-radius: 0.5rem;
}

.rounded-es-md {
  border-end-start-radius: 0.375rem;
}

.rounded-es-none {
  border-end-start-radius: 0px;
}

.rounded-es-sm {
  border-end-start-radius: 0.125rem;
}

.rounded-es-xl {
  border-end-start-radius: 0.75rem;
}

.rounded-se {
  border-start-end-radius: 0.25rem;
}

.rounded-se-2xl {
  border-start-end-radius: 1rem;
}

.rounded-se-3xl {
  border-start-end-radius: 1.5rem;
}

.rounded-se-full {
  border-start-end-radius: 9999px;
}

.rounded-se-lg {
  border-start-end-radius: 0.5rem;
}

.rounded-se-md {
  border-start-end-radius: 0.375rem;
}

.rounded-se-none {
  border-start-end-radius: 0px;
}

.rounded-se-sm {
  border-start-end-radius: 0.125rem;
}

.rounded-se-xl {
  border-start-end-radius: 0.75rem;
}

.rounded-ss {
  border-start-start-radius: 0.25rem;
}

.rounded-ss-2xl {
  border-start-start-radius: 1rem;
}

.rounded-ss-3xl {
  border-start-start-radius: 1.5rem;
}

.rounded-ss-full {
  border-start-start-radius: 9999px;
}

.rounded-ss-lg {
  border-start-start-radius: 0.5rem;
}

.rounded-ss-md {
  border-start-start-radius: 0.375rem;
}

.rounded-ss-none {
  border-start-start-radius: 0px;
}

.rounded-ss-sm {
  border-start-start-radius: 0.125rem;
}

.rounded-ss-xl {
  border-start-start-radius: 0.75rem;
}

.rounded-tl {
  border-top-left-radius: 0.25rem;
}

.rounded-tl-2xl {
  border-top-left-radius: 1rem;
}

.rounded-tl-3xl {
  border-top-left-radius: 1.5rem;
}

.rounded-tl-full {
  border-top-left-radius: 9999px;
}

.rounded-tl-lg {
  border-top-left-radius: 0.5rem;
}

.rounded-tl-md {
  border-top-left-radius: 0.375rem;
}

.rounded-tl-none {
  border-top-left-radius: 0px;
}

.rounded-tl-sm {
  border-top-left-radius: 0.125rem;
}

.rounded-tl-xl {
  border-top-left-radius: 0.75rem;
}

.rounded-tr {
  border-top-right-radius: 0.25rem;
}

.rounded-tr-2xl {
  border-top-right-radius: 1rem;
}

.rounded-tr-3xl {
  border-top-right-radius: 1.5rem;
}

.rounded-tr-full {
  border-top-right-radius: 9999px;
}

.rounded-tr-lg {
  border-top-right-radius: 0.5rem;
}

.rounded-tr-md {
  border-top-right-radius: 0.375rem;
}

.rounded-tr-none {
  border-top-right-radius: 0px;
}

.rounded-tr-sm {
  border-top-right-radius: 0.125rem;
}

.rounded-tr-xl {
  border-top-right-radius: 0.75rem;
}

.border {
  border-width: 1px;
}

.border-0 {
  border-width: 0px;
}

.border-2 {
  border-width: 2px;
}

.border-4 {
  border-width: 4px;
}

.border-8 {
  border-width: 8px;
}

.border-x {
  border-left-width: 1px;
  border-right-width: 1px;
}

.border-x-0 {
  border-left-width: 0px;
  border-right-width: 0px;
}

.border-x-2 {
  border-left-width: 2px;
  border-right-width: 2px;
}

.border-x-4 {
  border-left-width: 4px;
  border-right-width: 4px;
}

.border-x-8 {
  border-left-width: 8px;
  border-right-width: 8px;
}

.border-y {
  border-top-width: 1px;
  border-bottom-width: 1px;
}

.border-y-0 {
  border-top-width: 0px;
  border-bottom-width: 0px;
}

.border-y-2 {
  border-top-width: 2px;
  border-bottom-width: 2px;
}

.border-y-4 {
  border-top-width: 4px;
  border-bottom-width: 4px;
}

.border-y-8 {
  border-top-width: 8px;
  border-bottom-width: 8px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-b-0 {
  border-bottom-width: 0px;
}

.border-b-2 {
  border-bottom-width: 2px;
}

.border-b-4 {
  border-bottom-width: 4px;
}

.border-b-8 {
  border-bottom-width: 8px;
}

.border-e {
  border-inline-end-width: 1px;
}

.border-e-0 {
  border-inline-end-width: 0px;
}

.border-e-2 {
  border-inline-end-width: 2px;
}

.border-e-4 {
  border-inline-end-width: 4px;
}

.border-e-8 {
  border-inline-end-width: 8px;
}

.border-l {
  border-left-width: 1px;
}

.border-l-0 {
  border-left-width: 0px;
}

.border-l-2 {
  border-left-width: 2px;
}

.border-l-4 {
  border-left-width: 4px;
}

.border-l-8 {
  border-left-width: 8px;
}

.border-r {
  border-right-width: 1px;
}

.border-r-0 {
  border-right-width: 0px;
}

.border-r-2 {
  border-right-width: 2px;
}

.border-r-4 {
  border-right-width: 4px;
}

.border-r-8 {
  border-right-width: 8px;
}

.border-s {
  border-inline-start-width: 1px;
}

.border-s-0 {
  border-inline-start-width: 0px;
}

.border-s-2 {
  border-inline-start-width: 2px;
}

.border-s-4 {
  border-inline-start-width: 4px;
}

.border-s-8 {
  border-inline-start-width: 8px;
}

.border-t {
  border-top-width: 1px;
}

.border-t-0 {
  border-top-width: 0px;
}

.border-t-2 {
  border-top-width: 2px;
}

.border-t-4 {
  border-top-width: 4px;
}

.border-t-8 {
  border-top-width: 8px;
}

.border-solid {
  border-style: solid;
}

.border-dashed {
  border-style: dashed;
}

.border-dotted {
  border-style: dotted;
}

.border-double {
  border-style: double;
}

.border-hidden {
  border-style: hidden;
}

.border-none {
  border-style: none;
}

.border-black {
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
}

.border-black\/0 {
  border-color: rgb(0 0 0 / 0);
}

.border-black\/10 {
  border-color: rgb(0 0 0 / 0.1);
}

.border-black\/100 {
  border-color: rgb(0 0 0 / 1);
}

.border-black\/15 {
  border-color: rgb(0 0 0 / 0.15);
}

.border-black\/20 {
  border-color: rgb(0 0 0 / 0.2);
}

.border-black\/25 {
  border-color: rgb(0 0 0 / 0.25);
}

.border-black\/30 {
  border-color: rgb(0 0 0 / 0.3);
}

.border-black\/35 {
  border-color: rgb(0 0 0 / 0.35);
}

.border-black\/40 {
  border-color: rgb(0 0 0 / 0.4);
}

.border-black\/45 {
  border-color: rgb(0 0 0 / 0.45);
}

.border-black\/5 {
  border-color: rgb(0 0 0 / 0.05);
}

.border-black\/50 {
  border-color: rgb(0 0 0 / 0.5);
}

.border-black\/55 {
  border-color: rgb(0 0 0 / 0.55);
}

.border-black\/60 {
  border-color: rgb(0 0 0 / 0.6);
}

.border-black\/65 {
  border-color: rgb(0 0 0 / 0.65);
}

.border-black\/70 {
  border-color: rgb(0 0 0 / 0.7);
}

.border-black\/75 {
  border-color: rgb(0 0 0 / 0.75);
}

.border-black\/80 {
  border-color: rgb(0 0 0 / 0.8);
}

.border-black\/85 {
  border-color: rgb(0 0 0 / 0.85);
}

.border-black\/90 {
  border-color: rgb(0 0 0 / 0.9);
}

.border-black\/95 {
  border-color: rgb(0 0 0 / 0.95);
}

.border-blue-100 {
  --tw-border-opacity: 1;
  border-color: rgb(219 234 254 / var(--tw-border-opacity, 1));
}

.border-blue-100\/0 {
  border-color: rgb(219 234 254 / 0);
}

.border-blue-100\/10 {
  border-color: rgb(219 234 254 / 0.1);
}

.border-blue-100\/100 {
  border-color: rgb(219 234 254 / 1);
}

.border-blue-100\/15 {
  border-color: rgb(219 234 254 / 0.15);
}

.border-blue-100\/20 {
  border-color: rgb(219 234 254 / 0.2);
}

.border-blue-100\/25 {
  border-color: rgb(219 234 254 / 0.25);
}

.border-blue-100\/30 {
  border-color: rgb(219 234 254 / 0.3);
}

.border-blue-100\/35 {
  border-color: rgb(219 234 254 / 0.35);
}

.border-blue-100\/40 {
  border-color: rgb(219 234 254 / 0.4);
}

.border-blue-100\/45 {
  border-color: rgb(219 234 254 / 0.45);
}

.border-blue-100\/5 {
  border-color: rgb(219 234 254 / 0.05);
}

.border-blue-100\/50 {
  border-color: rgb(219 234 254 / 0.5);
}

.border-blue-100\/55 {
  border-color: rgb(219 234 254 / 0.55);
}

.border-blue-100\/60 {
  border-color: rgb(219 234 254 / 0.6);
}

.border-blue-100\/65 {
  border-color: rgb(219 234 254 / 0.65);
}

.border-blue-100\/70 {
  border-color: rgb(219 234 254 / 0.7);
}

.border-blue-100\/75 {
  border-color: rgb(219 234 254 / 0.75);
}

.border-blue-100\/80 {
  border-color: rgb(219 234 254 / 0.8);
}

.border-blue-100\/85 {
  border-color: rgb(219 234 254 / 0.85);
}

.border-blue-100\/90 {
  border-color: rgb(219 234 254 / 0.9);
}

.border-blue-100\/95 {
  border-color: rgb(219 234 254 / 0.95);
}

.border-blue-200 {
  --tw-border-opacity: 1;
  border-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
}

.border-blue-200\/0 {
  border-color: rgb(191 219 254 / 0);
}

.border-blue-200\/10 {
  border-color: rgb(191 219 254 / 0.1);
}

.border-blue-200\/100 {
  border-color: rgb(191 219 254 / 1);
}

.border-blue-200\/15 {
  border-color: rgb(191 219 254 / 0.15);
}

.border-blue-200\/20 {
  border-color: rgb(191 219 254 / 0.2);
}

.border-blue-200\/25 {
  border-color: rgb(191 219 254 / 0.25);
}

.border-blue-200\/30 {
  border-color: rgb(191 219 254 / 0.3);
}

.border-blue-200\/35 {
  border-color: rgb(191 219 254 / 0.35);
}

.border-blue-200\/40 {
  border-color: rgb(191 219 254 / 0.4);
}

.border-blue-200\/45 {
  border-color: rgb(191 219 254 / 0.45);
}

.border-blue-200\/5 {
  border-color: rgb(191 219 254 / 0.05);
}

.border-blue-200\/50 {
  border-color: rgb(191 219 254 / 0.5);
}

.border-blue-200\/55 {
  border-color: rgb(191 219 254 / 0.55);
}

.border-blue-200\/60 {
  border-color: rgb(191 219 254 / 0.6);
}

.border-blue-200\/65 {
  border-color: rgb(191 219 254 / 0.65);
}

.border-blue-200\/70 {
  border-color: rgb(191 219 254 / 0.7);
}

.border-blue-200\/75 {
  border-color: rgb(191 219 254 / 0.75);
}

.border-blue-200\/80 {
  border-color: rgb(191 219 254 / 0.8);
}

.border-blue-200\/85 {
  border-color: rgb(191 219 254 / 0.85);
}

.border-blue-200\/90 {
  border-color: rgb(191 219 254 / 0.9);
}

.border-blue-200\/95 {
  border-color: rgb(191 219 254 / 0.95);
}

.border-blue-300 {
  --tw-border-opacity: 1;
  border-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
}

.border-blue-300\/0 {
  border-color: rgb(147 197 253 / 0);
}

.border-blue-300\/10 {
  border-color: rgb(147 197 253 / 0.1);
}

.border-blue-300\/100 {
  border-color: rgb(147 197 253 / 1);
}

.border-blue-300\/15 {
  border-color: rgb(147 197 253 / 0.15);
}

.border-blue-300\/20 {
  border-color: rgb(147 197 253 / 0.2);
}

.border-blue-300\/25 {
  border-color: rgb(147 197 253 / 0.25);
}

.border-blue-300\/30 {
  border-color: rgb(147 197 253 / 0.3);
}

.border-blue-300\/35 {
  border-color: rgb(147 197 253 / 0.35);
}

.border-blue-300\/40 {
  border-color: rgb(147 197 253 / 0.4);
}

.border-blue-300\/45 {
  border-color: rgb(147 197 253 / 0.45);
}

.border-blue-300\/5 {
  border-color: rgb(147 197 253 / 0.05);
}

.border-blue-300\/50 {
  border-color: rgb(147 197 253 / 0.5);
}

.border-blue-300\/55 {
  border-color: rgb(147 197 253 / 0.55);
}

.border-blue-300\/60 {
  border-color: rgb(147 197 253 / 0.6);
}

.border-blue-300\/65 {
  border-color: rgb(147 197 253 / 0.65);
}

.border-blue-300\/70 {
  border-color: rgb(147 197 253 / 0.7);
}

.border-blue-300\/75 {
  border-color: rgb(147 197 253 / 0.75);
}

.border-blue-300\/80 {
  border-color: rgb(147 197 253 / 0.8);
}

.border-blue-300\/85 {
  border-color: rgb(147 197 253 / 0.85);
}

.border-blue-300\/90 {
  border-color: rgb(147 197 253 / 0.9);
}

.border-blue-300\/95 {
  border-color: rgb(147 197 253 / 0.95);
}

.border-blue-400 {
  --tw-border-opacity: 1;
  border-color: rgb(96 165 250 / var(--tw-border-opacity, 1));
}

.border-blue-400\/0 {
  border-color: rgb(96 165 250 / 0);
}

.border-blue-400\/10 {
  border-color: rgb(96 165 250 / 0.1);
}

.border-blue-400\/100 {
  border-color: rgb(96 165 250 / 1);
}

.border-blue-400\/15 {
  border-color: rgb(96 165 250 / 0.15);
}

.border-blue-400\/20 {
  border-color: rgb(96 165 250 / 0.2);
}

.border-blue-400\/25 {
  border-color: rgb(96 165 250 / 0.25);
}

.border-blue-400\/30 {
  border-color: rgb(96 165 250 / 0.3);
}

.border-blue-400\/35 {
  border-color: rgb(96 165 250 / 0.35);
}

.border-blue-400\/40 {
  border-color: rgb(96 165 250 / 0.4);
}

.border-blue-400\/45 {
  border-color: rgb(96 165 250 / 0.45);
}

.border-blue-400\/5 {
  border-color: rgb(96 165 250 / 0.05);
}

.border-blue-400\/50 {
  border-color: rgb(96 165 250 / 0.5);
}

.border-blue-400\/55 {
  border-color: rgb(96 165 250 / 0.55);
}

.border-blue-400\/60 {
  border-color: rgb(96 165 250 / 0.6);
}

.border-blue-400\/65 {
  border-color: rgb(96 165 250 / 0.65);
}

.border-blue-400\/70 {
  border-color: rgb(96 165 250 / 0.7);
}

.border-blue-400\/75 {
  border-color: rgb(96 165 250 / 0.75);
}

.border-blue-400\/80 {
  border-color: rgb(96 165 250 / 0.8);
}

.border-blue-400\/85 {
  border-color: rgb(96 165 250 / 0.85);
}

.border-blue-400\/90 {
  border-color: rgb(96 165 250 / 0.9);
}

.border-blue-400\/95 {
  border-color: rgb(96 165 250 / 0.95);
}

.border-blue-50 {
  --tw-border-opacity: 1;
  border-color: rgb(239 246 255 / var(--tw-border-opacity, 1));
}

.border-blue-50\/0 {
  border-color: rgb(239 246 255 / 0);
}

.border-blue-50\/10 {
  border-color: rgb(239 246 255 / 0.1);
}

.border-blue-50\/100 {
  border-color: rgb(239 246 255 / 1);
}

.border-blue-50\/15 {
  border-color: rgb(239 246 255 / 0.15);
}

.border-blue-50\/20 {
  border-color: rgb(239 246 255 / 0.2);
}

.border-blue-50\/25 {
  border-color: rgb(239 246 255 / 0.25);
}

.border-blue-50\/30 {
  border-color: rgb(239 246 255 / 0.3);
}

.border-blue-50\/35 {
  border-color: rgb(239 246 255 / 0.35);
}

.border-blue-50\/40 {
  border-color: rgb(239 246 255 / 0.4);
}

.border-blue-50\/45 {
  border-color: rgb(239 246 255 / 0.45);
}

.border-blue-50\/5 {
  border-color: rgb(239 246 255 / 0.05);
}

.border-blue-50\/50 {
  border-color: rgb(239 246 255 / 0.5);
}

.border-blue-50\/55 {
  border-color: rgb(239 246 255 / 0.55);
}

.border-blue-50\/60 {
  border-color: rgb(239 246 255 / 0.6);
}

.border-blue-50\/65 {
  border-color: rgb(239 246 255 / 0.65);
}

.border-blue-50\/70 {
  border-color: rgb(239 246 255 / 0.7);
}

.border-blue-50\/75 {
  border-color: rgb(239 246 255 / 0.75);
}

.border-blue-50\/80 {
  border-color: rgb(239 246 255 / 0.8);
}

.border-blue-50\/85 {
  border-color: rgb(239 246 255 / 0.85);
}

.border-blue-50\/90 {
  border-color: rgb(239 246 255 / 0.9);
}

.border-blue-50\/95 {
  border-color: rgb(239 246 255 / 0.95);
}

.border-blue-500 {
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}

.border-blue-500\/0 {
  border-color: rgb(59 130 246 / 0);
}

.border-blue-500\/10 {
  border-color: rgb(59 130 246 / 0.1);
}

.border-blue-500\/100 {
  border-color: rgb(59 130 246 / 1);
}

.border-blue-500\/15 {
  border-color: rgb(59 130 246 / 0.15);
}

.border-blue-500\/20 {
  border-color: rgb(59 130 246 / 0.2);
}

.border-blue-500\/25 {
  border-color: rgb(59 130 246 / 0.25);
}

.border-blue-500\/30 {
  border-color: rgb(59 130 246 / 0.3);
}

.border-blue-500\/35 {
  border-color: rgb(59 130 246 / 0.35);
}

.border-blue-500\/40 {
  border-color: rgb(59 130 246 / 0.4);
}

.border-blue-500\/45 {
  border-color: rgb(59 130 246 / 0.45);
}

.border-blue-500\/5 {
  border-color: rgb(59 130 246 / 0.05);
}

.border-blue-500\/50 {
  border-color: rgb(59 130 246 / 0.5);
}

.border-blue-500\/55 {
  border-color: rgb(59 130 246 / 0.55);
}

.border-blue-500\/60 {
  border-color: rgb(59 130 246 / 0.6);
}

.border-blue-500\/65 {
  border-color: rgb(59 130 246 / 0.65);
}

.border-blue-500\/70 {
  border-color: rgb(59 130 246 / 0.7);
}

.border-blue-500\/75 {
  border-color: rgb(59 130 246 / 0.75);
}

.border-blue-500\/80 {
  border-color: rgb(59 130 246 / 0.8);
}

.border-blue-500\/85 {
  border-color: rgb(59 130 246 / 0.85);
}

.border-blue-500\/90 {
  border-color: rgb(59 130 246 / 0.9);
}

.border-blue-500\/95 {
  border-color: rgb(59 130 246 / 0.95);
}

.border-blue-600 {
  --tw-border-opacity: 1;
  border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}

.border-blue-600\/0 {
  border-color: rgb(37 99 235 / 0);
}

.border-blue-600\/10 {
  border-color: rgb(37 99 235 / 0.1);
}

.border-blue-600\/100 {
  border-color: rgb(37 99 235 / 1);
}

.border-blue-600\/15 {
  border-color: rgb(37 99 235 / 0.15);
}

.border-blue-600\/20 {
  border-color: rgb(37 99 235 / 0.2);
}

.border-blue-600\/25 {
  border-color: rgb(37 99 235 / 0.25);
}

.border-blue-600\/30 {
  border-color: rgb(37 99 235 / 0.3);
}

.border-blue-600\/35 {
  border-color: rgb(37 99 235 / 0.35);
}

.border-blue-600\/40 {
  border-color: rgb(37 99 235 / 0.4);
}

.border-blue-600\/45 {
  border-color: rgb(37 99 235 / 0.45);
}

.border-blue-600\/5 {
  border-color: rgb(37 99 235 / 0.05);
}

.border-blue-600\/50 {
  border-color: rgb(37 99 235 / 0.5);
}

.border-blue-600\/55 {
  border-color: rgb(37 99 235 / 0.55);
}

.border-blue-600\/60 {
  border-color: rgb(37 99 235 / 0.6);
}

.border-blue-600\/65 {
  border-color: rgb(37 99 235 / 0.65);
}

.border-blue-600\/70 {
  border-color: rgb(37 99 235 / 0.7);
}

.border-blue-600\/75 {
  border-color: rgb(37 99 235 / 0.75);
}

.border-blue-600\/80 {
  border-color: rgb(37 99 235 / 0.8);
}

.border-blue-600\/85 {
  border-color: rgb(37 99 235 / 0.85);
}

.border-blue-600\/90 {
  border-color: rgb(37 99 235 / 0.9);
}

.border-blue-600\/95 {
  border-color: rgb(37 99 235 / 0.95);
}

.border-blue-700 {
  --tw-border-opacity: 1;
  border-color: rgb(29 78 216 / var(--tw-border-opacity, 1));
}

.border-blue-700\/0 {
  border-color: rgb(29 78 216 / 0);
}

.border-blue-700\/10 {
  border-color: rgb(29 78 216 / 0.1);
}

.border-blue-700\/100 {
  border-color: rgb(29 78 216 / 1);
}

.border-blue-700\/15 {
  border-color: rgb(29 78 216 / 0.15);
}

.border-blue-700\/20 {
  border-color: rgb(29 78 216 / 0.2);
}

.border-blue-700\/25 {
  border-color: rgb(29 78 216 / 0.25);
}

.border-blue-700\/30 {
  border-color: rgb(29 78 216 / 0.3);
}

.border-blue-700\/35 {
  border-color: rgb(29 78 216 / 0.35);
}

.border-blue-700\/40 {
  border-color: rgb(29 78 216 / 0.4);
}

.border-blue-700\/45 {
  border-color: rgb(29 78 216 / 0.45);
}

.border-blue-700\/5 {
  border-color: rgb(29 78 216 / 0.05);
}

.border-blue-700\/50 {
  border-color: rgb(29 78 216 / 0.5);
}

.border-blue-700\/55 {
  border-color: rgb(29 78 216 / 0.55);
}

.border-blue-700\/60 {
  border-color: rgb(29 78 216 / 0.6);
}

.border-blue-700\/65 {
  border-color: rgb(29 78 216 / 0.65);
}

.border-blue-700\/70 {
  border-color: rgb(29 78 216 / 0.7);
}

.border-blue-700\/75 {
  border-color: rgb(29 78 216 / 0.75);
}

.border-blue-700\/80 {
  border-color: rgb(29 78 216 / 0.8);
}

.border-blue-700\/85 {
  border-color: rgb(29 78 216 / 0.85);
}

.border-blue-700\/90 {
  border-color: rgb(29 78 216 / 0.9);
}

.border-blue-700\/95 {
  border-color: rgb(29 78 216 / 0.95);
}

.border-blue-800 {
  --tw-border-opacity: 1;
  border-color: rgb(30 64 175 / var(--tw-border-opacity, 1));
}

.border-blue-800\/0 {
  border-color: rgb(30 64 175 / 0);
}

.border-blue-800\/10 {
  border-color: rgb(30 64 175 / 0.1);
}

.border-blue-800\/100 {
  border-color: rgb(30 64 175 / 1);
}

.border-blue-800\/15 {
  border-color: rgb(30 64 175 / 0.15);
}

.border-blue-800\/20 {
  border-color: rgb(30 64 175 / 0.2);
}

.border-blue-800\/25 {
  border-color: rgb(30 64 175 / 0.25);
}

.border-blue-800\/30 {
  border-color: rgb(30 64 175 / 0.3);
}

.border-blue-800\/35 {
  border-color: rgb(30 64 175 / 0.35);
}

.border-blue-800\/40 {
  border-color: rgb(30 64 175 / 0.4);
}

.border-blue-800\/45 {
  border-color: rgb(30 64 175 / 0.45);
}

.border-blue-800\/5 {
  border-color: rgb(30 64 175 / 0.05);
}

.border-blue-800\/50 {
  border-color: rgb(30 64 175 / 0.5);
}

.border-blue-800\/55 {
  border-color: rgb(30 64 175 / 0.55);
}

.border-blue-800\/60 {
  border-color: rgb(30 64 175 / 0.6);
}

.border-blue-800\/65 {
  border-color: rgb(30 64 175 / 0.65);
}

.border-blue-800\/70 {
  border-color: rgb(30 64 175 / 0.7);
}

.border-blue-800\/75 {
  border-color: rgb(30 64 175 / 0.75);
}

.border-blue-800\/80 {
  border-color: rgb(30 64 175 / 0.8);
}

.border-blue-800\/85 {
  border-color: rgb(30 64 175 / 0.85);
}

.border-blue-800\/90 {
  border-color: rgb(30 64 175 / 0.9);
}

.border-blue-800\/95 {
  border-color: rgb(30 64 175 / 0.95);
}

.border-blue-900 {
  --tw-border-opacity: 1;
  border-color: rgb(30 58 138 / var(--tw-border-opacity, 1));
}

.border-blue-900\/0 {
  border-color: rgb(30 58 138 / 0);
}

.border-blue-900\/10 {
  border-color: rgb(30 58 138 / 0.1);
}

.border-blue-900\/100 {
  border-color: rgb(30 58 138 / 1);
}

.border-blue-900\/15 {
  border-color: rgb(30 58 138 / 0.15);
}

.border-blue-900\/20 {
  border-color: rgb(30 58 138 / 0.2);
}

.border-blue-900\/25 {
  border-color: rgb(30 58 138 / 0.25);
}

.border-blue-900\/30 {
  border-color: rgb(30 58 138 / 0.3);
}

.border-blue-900\/35 {
  border-color: rgb(30 58 138 / 0.35);
}

.border-blue-900\/40 {
  border-color: rgb(30 58 138 / 0.4);
}

.border-blue-900\/45 {
  border-color: rgb(30 58 138 / 0.45);
}

.border-blue-900\/5 {
  border-color: rgb(30 58 138 / 0.05);
}

.border-blue-900\/50 {
  border-color: rgb(30 58 138 / 0.5);
}

.border-blue-900\/55 {
  border-color: rgb(30 58 138 / 0.55);
}

.border-blue-900\/60 {
  border-color: rgb(30 58 138 / 0.6);
}

.border-blue-900\/65 {
  border-color: rgb(30 58 138 / 0.65);
}

.border-blue-900\/70 {
  border-color: rgb(30 58 138 / 0.7);
}

.border-blue-900\/75 {
  border-color: rgb(30 58 138 / 0.75);
}

.border-blue-900\/80 {
  border-color: rgb(30 58 138 / 0.8);
}

.border-blue-900\/85 {
  border-color: rgb(30 58 138 / 0.85);
}

.border-blue-900\/90 {
  border-color: rgb(30 58 138 / 0.9);
}

.border-blue-900\/95 {
  border-color: rgb(30 58 138 / 0.95);
}

.border-blue-950 {
  --tw-border-opacity: 1;
  border-color: rgb(23 37 84 / var(--tw-border-opacity, 1));
}

.border-blue-950\/0 {
  border-color: rgb(23 37 84 / 0);
}

.border-blue-950\/10 {
  border-color: rgb(23 37 84 / 0.1);
}

.border-blue-950\/100 {
  border-color: rgb(23 37 84 / 1);
}

.border-blue-950\/15 {
  border-color: rgb(23 37 84 / 0.15);
}

.border-blue-950\/20 {
  border-color: rgb(23 37 84 / 0.2);
}

.border-blue-950\/25 {
  border-color: rgb(23 37 84 / 0.25);
}

.border-blue-950\/30 {
  border-color: rgb(23 37 84 / 0.3);
}

.border-blue-950\/35 {
  border-color: rgb(23 37 84 / 0.35);
}

.border-blue-950\/40 {
  border-color: rgb(23 37 84 / 0.4);
}

.border-blue-950\/45 {
  border-color: rgb(23 37 84 / 0.45);
}

.border-blue-950\/5 {
  border-color: rgb(23 37 84 / 0.05);
}

.border-blue-950\/50 {
  border-color: rgb(23 37 84 / 0.5);
}

.border-blue-950\/55 {
  border-color: rgb(23 37 84 / 0.55);
}

.border-blue-950\/60 {
  border-color: rgb(23 37 84 / 0.6);
}

.border-blue-950\/65 {
  border-color: rgb(23 37 84 / 0.65);
}

.border-blue-950\/70 {
  border-color: rgb(23 37 84 / 0.7);
}

.border-blue-950\/75 {
  border-color: rgb(23 37 84 / 0.75);
}

.border-blue-950\/80 {
  border-color: rgb(23 37 84 / 0.8);
}

.border-blue-950\/85 {
  border-color: rgb(23 37 84 / 0.85);
}

.border-blue-950\/90 {
  border-color: rgb(23 37 84 / 0.9);
}

.border-blue-950\/95 {
  border-color: rgb(23 37 84 / 0.95);
}

.border-current {
  border-color: currentColor;
}

.border-eva-blue {
  --tw-border-opacity: 1;
  border-color: rgb(26 33 62 / var(--tw-border-opacity, 1));
}

.border-eva-blue-appt {
  --tw-border-opacity: 1;
  border-color: rgba(52, 137, 207, var(--tw-border-opacity, 1));
}

.border-eva-blue-appt\/0 {
  border-color: rgba(52, 137, 207, 0);
}

.border-eva-blue-appt\/10 {
  border-color: rgba(52, 137, 207, 0.1);
}

.border-eva-blue-appt\/100 {
  border-color: rgba(52, 137, 207, 1);
}

.border-eva-blue-appt\/15 {
  border-color: rgba(52, 137, 207, 0.15);
}

.border-eva-blue-appt\/20 {
  border-color: rgba(52, 137, 207, 0.2);
}

.border-eva-blue-appt\/25 {
  border-color: rgba(52, 137, 207, 0.25);
}

.border-eva-blue-appt\/30 {
  border-color: rgba(52, 137, 207, 0.3);
}

.border-eva-blue-appt\/35 {
  border-color: rgba(52, 137, 207, 0.35);
}

.border-eva-blue-appt\/40 {
  border-color: rgba(52, 137, 207, 0.4);
}

.border-eva-blue-appt\/45 {
  border-color: rgba(52, 137, 207, 0.45);
}

.border-eva-blue-appt\/5 {
  border-color: rgba(52, 137, 207, 0.05);
}

.border-eva-blue-appt\/50 {
  border-color: rgba(52, 137, 207, 0.5);
}

.border-eva-blue-appt\/55 {
  border-color: rgba(52, 137, 207, 0.55);
}

.border-eva-blue-appt\/60 {
  border-color: rgba(52, 137, 207, 0.6);
}

.border-eva-blue-appt\/65 {
  border-color: rgba(52, 137, 207, 0.65);
}

.border-eva-blue-appt\/70 {
  border-color: rgba(52, 137, 207, 0.7);
}

.border-eva-blue-appt\/75 {
  border-color: rgba(52, 137, 207, 0.75);
}

.border-eva-blue-appt\/80 {
  border-color: rgba(52, 137, 207, 0.8);
}

.border-eva-blue-appt\/85 {
  border-color: rgba(52, 137, 207, 0.85);
}

.border-eva-blue-appt\/90 {
  border-color: rgba(52, 137, 207, 0.9);
}

.border-eva-blue-appt\/95 {
  border-color: rgba(52, 137, 207, 0.95);
}

.border-eva-blue-gray {
  --tw-border-opacity: 1;
  border-color: rgb(117 121 139 / var(--tw-border-opacity, 1));
}

.border-eva-blue-gray\/0 {
  border-color: rgb(117 121 139 / 0);
}

.border-eva-blue-gray\/10 {
  border-color: rgb(117 121 139 / 0.1);
}

.border-eva-blue-gray\/100 {
  border-color: rgb(117 121 139 / 1);
}

.border-eva-blue-gray\/15 {
  border-color: rgb(117 121 139 / 0.15);
}

.border-eva-blue-gray\/20 {
  border-color: rgb(117 121 139 / 0.2);
}

.border-eva-blue-gray\/25 {
  border-color: rgb(117 121 139 / 0.25);
}

.border-eva-blue-gray\/30 {
  border-color: rgb(117 121 139 / 0.3);
}

.border-eva-blue-gray\/35 {
  border-color: rgb(117 121 139 / 0.35);
}

.border-eva-blue-gray\/40 {
  border-color: rgb(117 121 139 / 0.4);
}

.border-eva-blue-gray\/45 {
  border-color: rgb(117 121 139 / 0.45);
}

.border-eva-blue-gray\/5 {
  border-color: rgb(117 121 139 / 0.05);
}

.border-eva-blue-gray\/50 {
  border-color: rgb(117 121 139 / 0.5);
}

.border-eva-blue-gray\/55 {
  border-color: rgb(117 121 139 / 0.55);
}

.border-eva-blue-gray\/60 {
  border-color: rgb(117 121 139 / 0.6);
}

.border-eva-blue-gray\/65 {
  border-color: rgb(117 121 139 / 0.65);
}

.border-eva-blue-gray\/70 {
  border-color: rgb(117 121 139 / 0.7);
}

.border-eva-blue-gray\/75 {
  border-color: rgb(117 121 139 / 0.75);
}

.border-eva-blue-gray\/80 {
  border-color: rgb(117 121 139 / 0.8);
}

.border-eva-blue-gray\/85 {
  border-color: rgb(117 121 139 / 0.85);
}

.border-eva-blue-gray\/90 {
  border-color: rgb(117 121 139 / 0.9);
}

.border-eva-blue-gray\/95 {
  border-color: rgb(117 121 139 / 0.95);
}

.border-eva-blue-hv {
  --tw-border-opacity: 1;
  border-color: rgb(15 18 31 / var(--tw-border-opacity, 1));
}

.border-eva-blue-hv\/0 {
  border-color: rgb(15 18 31 / 0);
}

.border-eva-blue-hv\/10 {
  border-color: rgb(15 18 31 / 0.1);
}

.border-eva-blue-hv\/100 {
  border-color: rgb(15 18 31 / 1);
}

.border-eva-blue-hv\/15 {
  border-color: rgb(15 18 31 / 0.15);
}

.border-eva-blue-hv\/20 {
  border-color: rgb(15 18 31 / 0.2);
}

.border-eva-blue-hv\/25 {
  border-color: rgb(15 18 31 / 0.25);
}

.border-eva-blue-hv\/30 {
  border-color: rgb(15 18 31 / 0.3);
}

.border-eva-blue-hv\/35 {
  border-color: rgb(15 18 31 / 0.35);
}

.border-eva-blue-hv\/40 {
  border-color: rgb(15 18 31 / 0.4);
}

.border-eva-blue-hv\/45 {
  border-color: rgb(15 18 31 / 0.45);
}

.border-eva-blue-hv\/5 {
  border-color: rgb(15 18 31 / 0.05);
}

.border-eva-blue-hv\/50 {
  border-color: rgb(15 18 31 / 0.5);
}

.border-eva-blue-hv\/55 {
  border-color: rgb(15 18 31 / 0.55);
}

.border-eva-blue-hv\/60 {
  border-color: rgb(15 18 31 / 0.6);
}

.border-eva-blue-hv\/65 {
  border-color: rgb(15 18 31 / 0.65);
}

.border-eva-blue-hv\/70 {
  border-color: rgb(15 18 31 / 0.7);
}

.border-eva-blue-hv\/75 {
  border-color: rgb(15 18 31 / 0.75);
}

.border-eva-blue-hv\/80 {
  border-color: rgb(15 18 31 / 0.8);
}

.border-eva-blue-hv\/85 {
  border-color: rgb(15 18 31 / 0.85);
}

.border-eva-blue-hv\/90 {
  border-color: rgb(15 18 31 / 0.9);
}

.border-eva-blue-hv\/95 {
  border-color: rgb(15 18 31 / 0.95);
}

.border-eva-blue-light {
  --tw-border-opacity: 1;
  border-color: rgb(48 56 81 / var(--tw-border-opacity, 1));
}

.border-eva-blue-light-hv {
  border-color: rgba(17,20,30,.3);
}

.border-eva-blue-light-hv\/0 {
  border-color: rgba(17, 20, 30, 0);
}

.border-eva-blue-light-hv\/10 {
  border-color: rgba(17, 20, 30, 0.1);
}

.border-eva-blue-light-hv\/100 {
  border-color: rgba(17, 20, 30, 1);
}

.border-eva-blue-light-hv\/15 {
  border-color: rgba(17, 20, 30, 0.15);
}

.border-eva-blue-light-hv\/20 {
  border-color: rgba(17, 20, 30, 0.2);
}

.border-eva-blue-light-hv\/25 {
  border-color: rgba(17, 20, 30, 0.25);
}

.border-eva-blue-light-hv\/30 {
  border-color: rgba(17, 20, 30, 0.3);
}

.border-eva-blue-light-hv\/35 {
  border-color: rgba(17, 20, 30, 0.35);
}

.border-eva-blue-light-hv\/40 {
  border-color: rgba(17, 20, 30, 0.4);
}

.border-eva-blue-light-hv\/45 {
  border-color: rgba(17, 20, 30, 0.45);
}

.border-eva-blue-light-hv\/5 {
  border-color: rgba(17, 20, 30, 0.05);
}

.border-eva-blue-light-hv\/50 {
  border-color: rgba(17, 20, 30, 0.5);
}

.border-eva-blue-light-hv\/55 {
  border-color: rgba(17, 20, 30, 0.55);
}

.border-eva-blue-light-hv\/60 {
  border-color: rgba(17, 20, 30, 0.6);
}

.border-eva-blue-light-hv\/65 {
  border-color: rgba(17, 20, 30, 0.65);
}

.border-eva-blue-light-hv\/70 {
  border-color: rgba(17, 20, 30, 0.7);
}

.border-eva-blue-light-hv\/75 {
  border-color: rgba(17, 20, 30, 0.75);
}

.border-eva-blue-light-hv\/80 {
  border-color: rgba(17, 20, 30, 0.8);
}

.border-eva-blue-light-hv\/85 {
  border-color: rgba(17, 20, 30, 0.85);
}

.border-eva-blue-light-hv\/90 {
  border-color: rgba(17, 20, 30, 0.9);
}

.border-eva-blue-light-hv\/95 {
  border-color: rgba(17, 20, 30, 0.95);
}

.border-eva-blue-light\/0 {
  border-color: rgb(48 56 81 / 0);
}

.border-eva-blue-light\/10 {
  border-color: rgb(48 56 81 / 0.1);
}

.border-eva-blue-light\/100 {
  border-color: rgb(48 56 81 / 1);
}

.border-eva-blue-light\/15 {
  border-color: rgb(48 56 81 / 0.15);
}

.border-eva-blue-light\/20 {
  border-color: rgb(48 56 81 / 0.2);
}

.border-eva-blue-light\/25 {
  border-color: rgb(48 56 81 / 0.25);
}

.border-eva-blue-light\/30 {
  border-color: rgb(48 56 81 / 0.3);
}

.border-eva-blue-light\/35 {
  border-color: rgb(48 56 81 / 0.35);
}

.border-eva-blue-light\/40 {
  border-color: rgb(48 56 81 / 0.4);
}

.border-eva-blue-light\/45 {
  border-color: rgb(48 56 81 / 0.45);
}

.border-eva-blue-light\/5 {
  border-color: rgb(48 56 81 / 0.05);
}

.border-eva-blue-light\/50 {
  border-color: rgb(48 56 81 / 0.5);
}

.border-eva-blue-light\/55 {
  border-color: rgb(48 56 81 / 0.55);
}

.border-eva-blue-light\/60 {
  border-color: rgb(48 56 81 / 0.6);
}

.border-eva-blue-light\/65 {
  border-color: rgb(48 56 81 / 0.65);
}

.border-eva-blue-light\/70 {
  border-color: rgb(48 56 81 / 0.7);
}

.border-eva-blue-light\/75 {
  border-color: rgb(48 56 81 / 0.75);
}

.border-eva-blue-light\/80 {
  border-color: rgb(48 56 81 / 0.8);
}

.border-eva-blue-light\/85 {
  border-color: rgb(48 56 81 / 0.85);
}

.border-eva-blue-light\/90 {
  border-color: rgb(48 56 81 / 0.9);
}

.border-eva-blue-light\/95 {
  border-color: rgb(48 56 81 / 0.95);
}

.border-eva-blue\/0 {
  border-color: rgb(26 33 62 / 0);
}

.border-eva-blue\/10 {
  border-color: rgb(26 33 62 / 0.1);
}

.border-eva-blue\/100 {
  border-color: rgb(26 33 62 / 1);
}

.border-eva-blue\/15 {
  border-color: rgb(26 33 62 / 0.15);
}

.border-eva-blue\/20 {
  border-color: rgb(26 33 62 / 0.2);
}

.border-eva-blue\/25 {
  border-color: rgb(26 33 62 / 0.25);
}

.border-eva-blue\/30 {
  border-color: rgb(26 33 62 / 0.3);
}

.border-eva-blue\/35 {
  border-color: rgb(26 33 62 / 0.35);
}

.border-eva-blue\/40 {
  border-color: rgb(26 33 62 / 0.4);
}

.border-eva-blue\/45 {
  border-color: rgb(26 33 62 / 0.45);
}

.border-eva-blue\/5 {
  border-color: rgb(26 33 62 / 0.05);
}

.border-eva-blue\/50 {
  border-color: rgb(26 33 62 / 0.5);
}

.border-eva-blue\/55 {
  border-color: rgb(26 33 62 / 0.55);
}

.border-eva-blue\/60 {
  border-color: rgb(26 33 62 / 0.6);
}

.border-eva-blue\/65 {
  border-color: rgb(26 33 62 / 0.65);
}

.border-eva-blue\/70 {
  border-color: rgb(26 33 62 / 0.7);
}

.border-eva-blue\/75 {
  border-color: rgb(26 33 62 / 0.75);
}

.border-eva-blue\/80 {
  border-color: rgb(26 33 62 / 0.8);
}

.border-eva-blue\/85 {
  border-color: rgb(26 33 62 / 0.85);
}

.border-eva-blue\/90 {
  border-color: rgb(26 33 62 / 0.9);
}

.border-eva-blue\/95 {
  border-color: rgb(26 33 62 / 0.95);
}

.border-eva-brown-appt {
  border-color: rgba(99, 93, 94, 1);
}

.border-eva-brown-appt\/0 {
  border-color: rgba(99, 93, 94, 0);
}

.border-eva-brown-appt\/10 {
  border-color: rgba(99, 93, 94, 0.1);
}

.border-eva-brown-appt\/100 {
  border-color: rgba(99, 93, 94, 1);
}

.border-eva-brown-appt\/15 {
  border-color: rgba(99, 93, 94, 0.15);
}

.border-eva-brown-appt\/20 {
  border-color: rgba(99, 93, 94, 0.2);
}

.border-eva-brown-appt\/25 {
  border-color: rgba(99, 93, 94, 0.25);
}

.border-eva-brown-appt\/30 {
  border-color: rgba(99, 93, 94, 0.3);
}

.border-eva-brown-appt\/35 {
  border-color: rgba(99, 93, 94, 0.35);
}

.border-eva-brown-appt\/40 {
  border-color: rgba(99, 93, 94, 0.4);
}

.border-eva-brown-appt\/45 {
  border-color: rgba(99, 93, 94, 0.45);
}

.border-eva-brown-appt\/5 {
  border-color: rgba(99, 93, 94, 0.05);
}

.border-eva-brown-appt\/50 {
  border-color: rgba(99, 93, 94, 0.5);
}

.border-eva-brown-appt\/55 {
  border-color: rgba(99, 93, 94, 0.55);
}

.border-eva-brown-appt\/60 {
  border-color: rgba(99, 93, 94, 0.6);
}

.border-eva-brown-appt\/65 {
  border-color: rgba(99, 93, 94, 0.65);
}

.border-eva-brown-appt\/70 {
  border-color: rgba(99, 93, 94, 0.7);
}

.border-eva-brown-appt\/75 {
  border-color: rgba(99, 93, 94, 0.75);
}

.border-eva-brown-appt\/80 {
  border-color: rgba(99, 93, 94, 0.8);
}

.border-eva-brown-appt\/85 {
  border-color: rgba(99, 93, 94, 0.85);
}

.border-eva-brown-appt\/90 {
  border-color: rgba(99, 93, 94, 0.9);
}

.border-eva-brown-appt\/95 {
  border-color: rgba(99, 93, 94, 0.95);
}

.border-eva-dark-green-appt {
  border-color: rgba(102, 188, 130, 1);
}

.border-eva-dark-green-appt\/0 {
  border-color: rgba(102, 188, 130, 0);
}

.border-eva-dark-green-appt\/10 {
  border-color: rgba(102, 188, 130, 0.1);
}

.border-eva-dark-green-appt\/100 {
  border-color: rgba(102, 188, 130, 1);
}

.border-eva-dark-green-appt\/15 {
  border-color: rgba(102, 188, 130, 0.15);
}

.border-eva-dark-green-appt\/20 {
  border-color: rgba(102, 188, 130, 0.2);
}

.border-eva-dark-green-appt\/25 {
  border-color: rgba(102, 188, 130, 0.25);
}

.border-eva-dark-green-appt\/30 {
  border-color: rgba(102, 188, 130, 0.3);
}

.border-eva-dark-green-appt\/35 {
  border-color: rgba(102, 188, 130, 0.35);
}

.border-eva-dark-green-appt\/40 {
  border-color: rgba(102, 188, 130, 0.4);
}

.border-eva-dark-green-appt\/45 {
  border-color: rgba(102, 188, 130, 0.45);
}

.border-eva-dark-green-appt\/5 {
  border-color: rgba(102, 188, 130, 0.05);
}

.border-eva-dark-green-appt\/50 {
  border-color: rgba(102, 188, 130, 0.5);
}

.border-eva-dark-green-appt\/55 {
  border-color: rgba(102, 188, 130, 0.55);
}

.border-eva-dark-green-appt\/60 {
  border-color: rgba(102, 188, 130, 0.6);
}

.border-eva-dark-green-appt\/65 {
  border-color: rgba(102, 188, 130, 0.65);
}

.border-eva-dark-green-appt\/70 {
  border-color: rgba(102, 188, 130, 0.7);
}

.border-eva-dark-green-appt\/75 {
  border-color: rgba(102, 188, 130, 0.75);
}

.border-eva-dark-green-appt\/80 {
  border-color: rgba(102, 188, 130, 0.8);
}

.border-eva-dark-green-appt\/85 {
  border-color: rgba(102, 188, 130, 0.85);
}

.border-eva-dark-green-appt\/90 {
  border-color: rgba(102, 188, 130, 0.9);
}

.border-eva-dark-green-appt\/95 {
  border-color: rgba(102, 188, 130, 0.95);
}

.border-eva-dark-red-appt {
  border-color: rgba(198, 102, 94, 1);
}

.border-eva-dark-red-appt\/0 {
  border-color: rgba(198, 102, 94, 0);
}

.border-eva-dark-red-appt\/10 {
  border-color: rgba(198, 102, 94, 0.1);
}

.border-eva-dark-red-appt\/100 {
  border-color: rgba(198, 102, 94, 1);
}

.border-eva-dark-red-appt\/15 {
  border-color: rgba(198, 102, 94, 0.15);
}

.border-eva-dark-red-appt\/20 {
  border-color: rgba(198, 102, 94, 0.2);
}

.border-eva-dark-red-appt\/25 {
  border-color: rgba(198, 102, 94, 0.25);
}

.border-eva-dark-red-appt\/30 {
  border-color: rgba(198, 102, 94, 0.3);
}

.border-eva-dark-red-appt\/35 {
  border-color: rgba(198, 102, 94, 0.35);
}

.border-eva-dark-red-appt\/40 {
  border-color: rgba(198, 102, 94, 0.4);
}

.border-eva-dark-red-appt\/45 {
  border-color: rgba(198, 102, 94, 0.45);
}

.border-eva-dark-red-appt\/5 {
  border-color: rgba(198, 102, 94, 0.05);
}

.border-eva-dark-red-appt\/50 {
  border-color: rgba(198, 102, 94, 0.5);
}

.border-eva-dark-red-appt\/55 {
  border-color: rgba(198, 102, 94, 0.55);
}

.border-eva-dark-red-appt\/60 {
  border-color: rgba(198, 102, 94, 0.6);
}

.border-eva-dark-red-appt\/65 {
  border-color: rgba(198, 102, 94, 0.65);
}

.border-eva-dark-red-appt\/70 {
  border-color: rgba(198, 102, 94, 0.7);
}

.border-eva-dark-red-appt\/75 {
  border-color: rgba(198, 102, 94, 0.75);
}

.border-eva-dark-red-appt\/80 {
  border-color: rgba(198, 102, 94, 0.8);
}

.border-eva-dark-red-appt\/85 {
  border-color: rgba(198, 102, 94, 0.85);
}

.border-eva-dark-red-appt\/90 {
  border-color: rgba(198, 102, 94, 0.9);
}

.border-eva-dark-red-appt\/95 {
  border-color: rgba(198, 102, 94, 0.95);
}

.border-eva-green {
  --tw-border-opacity: 1;
  border-color: rgb(73 181 168 / var(--tw-border-opacity, 1));
}

.border-eva-green-appt {
  --tw-border-opacity: 1;
  border-color: rgba(128, 215, 109, var(--tw-border-opacity, 1));
}

.border-eva-green-appt\/0 {
  border-color: rgba(128, 215, 109, 0);
}

.border-eva-green-appt\/10 {
  border-color: rgba(128, 215, 109, 0.1);
}

.border-eva-green-appt\/100 {
  border-color: rgba(128, 215, 109, 1);
}

.border-eva-green-appt\/15 {
  border-color: rgba(128, 215, 109, 0.15);
}

.border-eva-green-appt\/20 {
  border-color: rgba(128, 215, 109, 0.2);
}

.border-eva-green-appt\/25 {
  border-color: rgba(128, 215, 109, 0.25);
}

.border-eva-green-appt\/30 {
  border-color: rgba(128, 215, 109, 0.3);
}

.border-eva-green-appt\/35 {
  border-color: rgba(128, 215, 109, 0.35);
}

.border-eva-green-appt\/40 {
  border-color: rgba(128, 215, 109, 0.4);
}

.border-eva-green-appt\/45 {
  border-color: rgba(128, 215, 109, 0.45);
}

.border-eva-green-appt\/5 {
  border-color: rgba(128, 215, 109, 0.05);
}

.border-eva-green-appt\/50 {
  border-color: rgba(128, 215, 109, 0.5);
}

.border-eva-green-appt\/55 {
  border-color: rgba(128, 215, 109, 0.55);
}

.border-eva-green-appt\/60 {
  border-color: rgba(128, 215, 109, 0.6);
}

.border-eva-green-appt\/65 {
  border-color: rgba(128, 215, 109, 0.65);
}

.border-eva-green-appt\/70 {
  border-color: rgba(128, 215, 109, 0.7);
}

.border-eva-green-appt\/75 {
  border-color: rgba(128, 215, 109, 0.75);
}

.border-eva-green-appt\/80 {
  border-color: rgba(128, 215, 109, 0.8);
}

.border-eva-green-appt\/85 {
  border-color: rgba(128, 215, 109, 0.85);
}

.border-eva-green-appt\/90 {
  border-color: rgba(128, 215, 109, 0.9);
}

.border-eva-green-appt\/95 {
  border-color: rgba(128, 215, 109, 0.95);
}

.border-eva-green-brown-appt {
  border-color: rgba(197, 191, 140, 1);
}

.border-eva-green-brown-appt\/0 {
  border-color: rgba(197, 191, 140, 0);
}

.border-eva-green-brown-appt\/10 {
  border-color: rgba(197, 191, 140, 0.1);
}

.border-eva-green-brown-appt\/100 {
  border-color: rgba(197, 191, 140, 1);
}

.border-eva-green-brown-appt\/15 {
  border-color: rgba(197, 191, 140, 0.15);
}

.border-eva-green-brown-appt\/20 {
  border-color: rgba(197, 191, 140, 0.2);
}

.border-eva-green-brown-appt\/25 {
  border-color: rgba(197, 191, 140, 0.25);
}

.border-eva-green-brown-appt\/30 {
  border-color: rgba(197, 191, 140, 0.3);
}

.border-eva-green-brown-appt\/35 {
  border-color: rgba(197, 191, 140, 0.35);
}

.border-eva-green-brown-appt\/40 {
  border-color: rgba(197, 191, 140, 0.4);
}

.border-eva-green-brown-appt\/45 {
  border-color: rgba(197, 191, 140, 0.45);
}

.border-eva-green-brown-appt\/5 {
  border-color: rgba(197, 191, 140, 0.05);
}

.border-eva-green-brown-appt\/50 {
  border-color: rgba(197, 191, 140, 0.5);
}

.border-eva-green-brown-appt\/55 {
  border-color: rgba(197, 191, 140, 0.55);
}

.border-eva-green-brown-appt\/60 {
  border-color: rgba(197, 191, 140, 0.6);
}

.border-eva-green-brown-appt\/65 {
  border-color: rgba(197, 191, 140, 0.65);
}

.border-eva-green-brown-appt\/70 {
  border-color: rgba(197, 191, 140, 0.7);
}

.border-eva-green-brown-appt\/75 {
  border-color: rgba(197, 191, 140, 0.75);
}

.border-eva-green-brown-appt\/80 {
  border-color: rgba(197, 191, 140, 0.8);
}

.border-eva-green-brown-appt\/85 {
  border-color: rgba(197, 191, 140, 0.85);
}

.border-eva-green-brown-appt\/90 {
  border-color: rgba(197, 191, 140, 0.9);
}

.border-eva-green-brown-appt\/95 {
  border-color: rgba(197, 191, 140, 0.95);
}

.border-eva-green-hv {
  --tw-border-opacity: 1;
  border-color: rgb(63 156 144 / var(--tw-border-opacity, 1));
}

.border-eva-green-hv\/0 {
  border-color: rgb(63 156 144 / 0);
}

.border-eva-green-hv\/10 {
  border-color: rgb(63 156 144 / 0.1);
}

.border-eva-green-hv\/100 {
  border-color: rgb(63 156 144 / 1);
}

.border-eva-green-hv\/15 {
  border-color: rgb(63 156 144 / 0.15);
}

.border-eva-green-hv\/20 {
  border-color: rgb(63 156 144 / 0.2);
}

.border-eva-green-hv\/25 {
  border-color: rgb(63 156 144 / 0.25);
}

.border-eva-green-hv\/30 {
  border-color: rgb(63 156 144 / 0.3);
}

.border-eva-green-hv\/35 {
  border-color: rgb(63 156 144 / 0.35);
}

.border-eva-green-hv\/40 {
  border-color: rgb(63 156 144 / 0.4);
}

.border-eva-green-hv\/45 {
  border-color: rgb(63 156 144 / 0.45);
}

.border-eva-green-hv\/5 {
  border-color: rgb(63 156 144 / 0.05);
}

.border-eva-green-hv\/50 {
  border-color: rgb(63 156 144 / 0.5);
}

.border-eva-green-hv\/55 {
  border-color: rgb(63 156 144 / 0.55);
}

.border-eva-green-hv\/60 {
  border-color: rgb(63 156 144 / 0.6);
}

.border-eva-green-hv\/65 {
  border-color: rgb(63 156 144 / 0.65);
}

.border-eva-green-hv\/70 {
  border-color: rgb(63 156 144 / 0.7);
}

.border-eva-green-hv\/75 {
  border-color: rgb(63 156 144 / 0.75);
}

.border-eva-green-hv\/80 {
  border-color: rgb(63 156 144 / 0.8);
}

.border-eva-green-hv\/85 {
  border-color: rgb(63 156 144 / 0.85);
}

.border-eva-green-hv\/90 {
  border-color: rgb(63 156 144 / 0.9);
}

.border-eva-green-hv\/95 {
  border-color: rgb(63 156 144 / 0.95);
}

.border-eva-green\/0 {
  border-color: rgb(73 181 168 / 0);
}

.border-eva-green\/10 {
  border-color: rgb(73 181 168 / 0.1);
}

.border-eva-green\/100 {
  border-color: rgb(73 181 168 / 1);
}

.border-eva-green\/15 {
  border-color: rgb(73 181 168 / 0.15);
}

.border-eva-green\/20 {
  border-color: rgb(73 181 168 / 0.2);
}

.border-eva-green\/25 {
  border-color: rgb(73 181 168 / 0.25);
}

.border-eva-green\/30 {
  border-color: rgb(73 181 168 / 0.3);
}

.border-eva-green\/35 {
  border-color: rgb(73 181 168 / 0.35);
}

.border-eva-green\/40 {
  border-color: rgb(73 181 168 / 0.4);
}

.border-eva-green\/45 {
  border-color: rgb(73 181 168 / 0.45);
}

.border-eva-green\/5 {
  border-color: rgb(73 181 168 / 0.05);
}

.border-eva-green\/50 {
  border-color: rgb(73 181 168 / 0.5);
}

.border-eva-green\/55 {
  border-color: rgb(73 181 168 / 0.55);
}

.border-eva-green\/60 {
  border-color: rgb(73 181 168 / 0.6);
}

.border-eva-green\/65 {
  border-color: rgb(73 181 168 / 0.65);
}

.border-eva-green\/70 {
  border-color: rgb(73 181 168 / 0.7);
}

.border-eva-green\/75 {
  border-color: rgb(73 181 168 / 0.75);
}

.border-eva-green\/80 {
  border-color: rgb(73 181 168 / 0.8);
}

.border-eva-green\/85 {
  border-color: rgb(73 181 168 / 0.85);
}

.border-eva-green\/90 {
  border-color: rgb(73 181 168 / 0.9);
}

.border-eva-green\/95 {
  border-color: rgb(73 181 168 / 0.95);
}

.border-eva-lavender-appt {
  border-color: rgba(169, 124, 165, 1);
}

.border-eva-lavender-appt\/0 {
  border-color: rgba(169, 124, 165, 0);
}

.border-eva-lavender-appt\/10 {
  border-color: rgba(169, 124, 165, 0.1);
}

.border-eva-lavender-appt\/100 {
  border-color: rgba(169, 124, 165, 1);
}

.border-eva-lavender-appt\/15 {
  border-color: rgba(169, 124, 165, 0.15);
}

.border-eva-lavender-appt\/20 {
  border-color: rgba(169, 124, 165, 0.2);
}

.border-eva-lavender-appt\/25 {
  border-color: rgba(169, 124, 165, 0.25);
}

.border-eva-lavender-appt\/30 {
  border-color: rgba(169, 124, 165, 0.3);
}

.border-eva-lavender-appt\/35 {
  border-color: rgba(169, 124, 165, 0.35);
}

.border-eva-lavender-appt\/40 {
  border-color: rgba(169, 124, 165, 0.4);
}

.border-eva-lavender-appt\/45 {
  border-color: rgba(169, 124, 165, 0.45);
}

.border-eva-lavender-appt\/5 {
  border-color: rgba(169, 124, 165, 0.05);
}

.border-eva-lavender-appt\/50 {
  border-color: rgba(169, 124, 165, 0.5);
}

.border-eva-lavender-appt\/55 {
  border-color: rgba(169, 124, 165, 0.55);
}

.border-eva-lavender-appt\/60 {
  border-color: rgba(169, 124, 165, 0.6);
}

.border-eva-lavender-appt\/65 {
  border-color: rgba(169, 124, 165, 0.65);
}

.border-eva-lavender-appt\/70 {
  border-color: rgba(169, 124, 165, 0.7);
}

.border-eva-lavender-appt\/75 {
  border-color: rgba(169, 124, 165, 0.75);
}

.border-eva-lavender-appt\/80 {
  border-color: rgba(169, 124, 165, 0.8);
}

.border-eva-lavender-appt\/85 {
  border-color: rgba(169, 124, 165, 0.85);
}

.border-eva-lavender-appt\/90 {
  border-color: rgba(169, 124, 165, 0.9);
}

.border-eva-lavender-appt\/95 {
  border-color: rgba(169, 124, 165, 0.95);
}

.border-eva-magenta-appt {
  border-color: rgba(223, 91, 146, 1);
}

.border-eva-magenta-appt\/0 {
  border-color: rgba(223, 91, 146, 0);
}

.border-eva-magenta-appt\/10 {
  border-color: rgba(223, 91, 146, 0.1);
}

.border-eva-magenta-appt\/100 {
  border-color: rgba(223, 91, 146, 1);
}

.border-eva-magenta-appt\/15 {
  border-color: rgba(223, 91, 146, 0.15);
}

.border-eva-magenta-appt\/20 {
  border-color: rgba(223, 91, 146, 0.2);
}

.border-eva-magenta-appt\/25 {
  border-color: rgba(223, 91, 146, 0.25);
}

.border-eva-magenta-appt\/30 {
  border-color: rgba(223, 91, 146, 0.3);
}

.border-eva-magenta-appt\/35 {
  border-color: rgba(223, 91, 146, 0.35);
}

.border-eva-magenta-appt\/40 {
  border-color: rgba(223, 91, 146, 0.4);
}

.border-eva-magenta-appt\/45 {
  border-color: rgba(223, 91, 146, 0.45);
}

.border-eva-magenta-appt\/5 {
  border-color: rgba(223, 91, 146, 0.05);
}

.border-eva-magenta-appt\/50 {
  border-color: rgba(223, 91, 146, 0.5);
}

.border-eva-magenta-appt\/55 {
  border-color: rgba(223, 91, 146, 0.55);
}

.border-eva-magenta-appt\/60 {
  border-color: rgba(223, 91, 146, 0.6);
}

.border-eva-magenta-appt\/65 {
  border-color: rgba(223, 91, 146, 0.65);
}

.border-eva-magenta-appt\/70 {
  border-color: rgba(223, 91, 146, 0.7);
}

.border-eva-magenta-appt\/75 {
  border-color: rgba(223, 91, 146, 0.75);
}

.border-eva-magenta-appt\/80 {
  border-color: rgba(223, 91, 146, 0.8);
}

.border-eva-magenta-appt\/85 {
  border-color: rgba(223, 91, 146, 0.85);
}

.border-eva-magenta-appt\/90 {
  border-color: rgba(223, 91, 146, 0.9);
}

.border-eva-magenta-appt\/95 {
  border-color: rgba(223, 91, 146, 0.95);
}

.border-eva-orange-appt {
  border-color: rgba(232, 176, 99, 1);
}

.border-eva-orange-appt\/0 {
  border-color: rgba(232, 176, 99, 0);
}

.border-eva-orange-appt\/10 {
  border-color: rgba(232, 176, 99, 0.1);
}

.border-eva-orange-appt\/100 {
  border-color: rgba(232, 176, 99, 1);
}

.border-eva-orange-appt\/15 {
  border-color: rgba(232, 176, 99, 0.15);
}

.border-eva-orange-appt\/20 {
  border-color: rgba(232, 176, 99, 0.2);
}

.border-eva-orange-appt\/25 {
  border-color: rgba(232, 176, 99, 0.25);
}

.border-eva-orange-appt\/30 {
  border-color: rgba(232, 176, 99, 0.3);
}

.border-eva-orange-appt\/35 {
  border-color: rgba(232, 176, 99, 0.35);
}

.border-eva-orange-appt\/40 {
  border-color: rgba(232, 176, 99, 0.4);
}

.border-eva-orange-appt\/45 {
  border-color: rgba(232, 176, 99, 0.45);
}

.border-eva-orange-appt\/5 {
  border-color: rgba(232, 176, 99, 0.05);
}

.border-eva-orange-appt\/50 {
  border-color: rgba(232, 176, 99, 0.5);
}

.border-eva-orange-appt\/55 {
  border-color: rgba(232, 176, 99, 0.55);
}

.border-eva-orange-appt\/60 {
  border-color: rgba(232, 176, 99, 0.6);
}

.border-eva-orange-appt\/65 {
  border-color: rgba(232, 176, 99, 0.65);
}

.border-eva-orange-appt\/70 {
  border-color: rgba(232, 176, 99, 0.7);
}

.border-eva-orange-appt\/75 {
  border-color: rgba(232, 176, 99, 0.75);
}

.border-eva-orange-appt\/80 {
  border-color: rgba(232, 176, 99, 0.8);
}

.border-eva-orange-appt\/85 {
  border-color: rgba(232, 176, 99, 0.85);
}

.border-eva-orange-appt\/90 {
  border-color: rgba(232, 176, 99, 0.9);
}

.border-eva-orange-appt\/95 {
  border-color: rgba(232, 176, 99, 0.95);
}

.border-eva-purple-appt {
  border-color: rgba(125, 117, 164, 1);
}

.border-eva-purple-appt\/0 {
  border-color: rgba(125, 117, 164, 0);
}

.border-eva-purple-appt\/10 {
  border-color: rgba(125, 117, 164, 0.1);
}

.border-eva-purple-appt\/100 {
  border-color: rgba(125, 117, 164, 1);
}

.border-eva-purple-appt\/15 {
  border-color: rgba(125, 117, 164, 0.15);
}

.border-eva-purple-appt\/20 {
  border-color: rgba(125, 117, 164, 0.2);
}

.border-eva-purple-appt\/25 {
  border-color: rgba(125, 117, 164, 0.25);
}

.border-eva-purple-appt\/30 {
  border-color: rgba(125, 117, 164, 0.3);
}

.border-eva-purple-appt\/35 {
  border-color: rgba(125, 117, 164, 0.35);
}

.border-eva-purple-appt\/40 {
  border-color: rgba(125, 117, 164, 0.4);
}

.border-eva-purple-appt\/45 {
  border-color: rgba(125, 117, 164, 0.45);
}

.border-eva-purple-appt\/5 {
  border-color: rgba(125, 117, 164, 0.05);
}

.border-eva-purple-appt\/50 {
  border-color: rgba(125, 117, 164, 0.5);
}

.border-eva-purple-appt\/55 {
  border-color: rgba(125, 117, 164, 0.55);
}

.border-eva-purple-appt\/60 {
  border-color: rgba(125, 117, 164, 0.6);
}

.border-eva-purple-appt\/65 {
  border-color: rgba(125, 117, 164, 0.65);
}

.border-eva-purple-appt\/70 {
  border-color: rgba(125, 117, 164, 0.7);
}

.border-eva-purple-appt\/75 {
  border-color: rgba(125, 117, 164, 0.75);
}

.border-eva-purple-appt\/80 {
  border-color: rgba(125, 117, 164, 0.8);
}

.border-eva-purple-appt\/85 {
  border-color: rgba(125, 117, 164, 0.85);
}

.border-eva-purple-appt\/90 {
  border-color: rgba(125, 117, 164, 0.9);
}

.border-eva-purple-appt\/95 {
  border-color: rgba(125, 117, 164, 0.95);
}

.border-eva-red {
  --tw-border-opacity: 1;
  border-color: rgb(234 101 101 / var(--tw-border-opacity, 1));
}

.border-eva-red-appt {
  border-color: rgba(243, 63, 77, 1);
}

.border-eva-red-appt\/0 {
  border-color: rgba(243, 63, 77, 0);
}

.border-eva-red-appt\/10 {
  border-color: rgba(243, 63, 77, 0.1);
}

.border-eva-red-appt\/100 {
  border-color: rgba(243, 63, 77, 1);
}

.border-eva-red-appt\/15 {
  border-color: rgba(243, 63, 77, 0.15);
}

.border-eva-red-appt\/20 {
  border-color: rgba(243, 63, 77, 0.2);
}

.border-eva-red-appt\/25 {
  border-color: rgba(243, 63, 77, 0.25);
}

.border-eva-red-appt\/30 {
  border-color: rgba(243, 63, 77, 0.3);
}

.border-eva-red-appt\/35 {
  border-color: rgba(243, 63, 77, 0.35);
}

.border-eva-red-appt\/40 {
  border-color: rgba(243, 63, 77, 0.4);
}

.border-eva-red-appt\/45 {
  border-color: rgba(243, 63, 77, 0.45);
}

.border-eva-red-appt\/5 {
  border-color: rgba(243, 63, 77, 0.05);
}

.border-eva-red-appt\/50 {
  border-color: rgba(243, 63, 77, 0.5);
}

.border-eva-red-appt\/55 {
  border-color: rgba(243, 63, 77, 0.55);
}

.border-eva-red-appt\/60 {
  border-color: rgba(243, 63, 77, 0.6);
}

.border-eva-red-appt\/65 {
  border-color: rgba(243, 63, 77, 0.65);
}

.border-eva-red-appt\/70 {
  border-color: rgba(243, 63, 77, 0.7);
}

.border-eva-red-appt\/75 {
  border-color: rgba(243, 63, 77, 0.75);
}

.border-eva-red-appt\/80 {
  border-color: rgba(243, 63, 77, 0.8);
}

.border-eva-red-appt\/85 {
  border-color: rgba(243, 63, 77, 0.85);
}

.border-eva-red-appt\/90 {
  border-color: rgba(243, 63, 77, 0.9);
}

.border-eva-red-appt\/95 {
  border-color: rgba(243, 63, 77, 0.95);
}

.border-eva-red-orange-appt {
  border-color: rgba(217, 154, 118, 1);
}

.border-eva-red-orange-appt\/0 {
  border-color: rgba(217, 154, 118, 0);
}

.border-eva-red-orange-appt\/10 {
  border-color: rgba(217, 154, 118, 0.1);
}

.border-eva-red-orange-appt\/100 {
  border-color: rgba(217, 154, 118, 1);
}

.border-eva-red-orange-appt\/15 {
  border-color: rgba(217, 154, 118, 0.15);
}

.border-eva-red-orange-appt\/20 {
  border-color: rgba(217, 154, 118, 0.2);
}

.border-eva-red-orange-appt\/25 {
  border-color: rgba(217, 154, 118, 0.25);
}

.border-eva-red-orange-appt\/30 {
  border-color: rgba(217, 154, 118, 0.3);
}

.border-eva-red-orange-appt\/35 {
  border-color: rgba(217, 154, 118, 0.35);
}

.border-eva-red-orange-appt\/40 {
  border-color: rgba(217, 154, 118, 0.4);
}

.border-eva-red-orange-appt\/45 {
  border-color: rgba(217, 154, 118, 0.45);
}

.border-eva-red-orange-appt\/5 {
  border-color: rgba(217, 154, 118, 0.05);
}

.border-eva-red-orange-appt\/50 {
  border-color: rgba(217, 154, 118, 0.5);
}

.border-eva-red-orange-appt\/55 {
  border-color: rgba(217, 154, 118, 0.55);
}

.border-eva-red-orange-appt\/60 {
  border-color: rgba(217, 154, 118, 0.6);
}

.border-eva-red-orange-appt\/65 {
  border-color: rgba(217, 154, 118, 0.65);
}

.border-eva-red-orange-appt\/70 {
  border-color: rgba(217, 154, 118, 0.7);
}

.border-eva-red-orange-appt\/75 {
  border-color: rgba(217, 154, 118, 0.75);
}

.border-eva-red-orange-appt\/80 {
  border-color: rgba(217, 154, 118, 0.8);
}

.border-eva-red-orange-appt\/85 {
  border-color: rgba(217, 154, 118, 0.85);
}

.border-eva-red-orange-appt\/90 {
  border-color: rgba(217, 154, 118, 0.9);
}

.border-eva-red-orange-appt\/95 {
  border-color: rgba(217, 154, 118, 0.95);
}

.border-eva-red\/0 {
  border-color: rgb(234 101 101 / 0);
}

.border-eva-red\/10 {
  border-color: rgb(234 101 101 / 0.1);
}

.border-eva-red\/100 {
  border-color: rgb(234 101 101 / 1);
}

.border-eva-red\/15 {
  border-color: rgb(234 101 101 / 0.15);
}

.border-eva-red\/20 {
  border-color: rgb(234 101 101 / 0.2);
}

.border-eva-red\/25 {
  border-color: rgb(234 101 101 / 0.25);
}

.border-eva-red\/30 {
  border-color: rgb(234 101 101 / 0.3);
}

.border-eva-red\/35 {
  border-color: rgb(234 101 101 / 0.35);
}

.border-eva-red\/40 {
  border-color: rgb(234 101 101 / 0.4);
}

.border-eva-red\/45 {
  border-color: rgb(234 101 101 / 0.45);
}

.border-eva-red\/5 {
  border-color: rgb(234 101 101 / 0.05);
}

.border-eva-red\/50 {
  border-color: rgb(234 101 101 / 0.5);
}

.border-eva-red\/55 {
  border-color: rgb(234 101 101 / 0.55);
}

.border-eva-red\/60 {
  border-color: rgb(234 101 101 / 0.6);
}

.border-eva-red\/65 {
  border-color: rgb(234 101 101 / 0.65);
}

.border-eva-red\/70 {
  border-color: rgb(234 101 101 / 0.7);
}

.border-eva-red\/75 {
  border-color: rgb(234 101 101 / 0.75);
}

.border-eva-red\/80 {
  border-color: rgb(234 101 101 / 0.8);
}

.border-eva-red\/85 {
  border-color: rgb(234 101 101 / 0.85);
}

.border-eva-red\/90 {
  border-color: rgb(234 101 101 / 0.9);
}

.border-eva-red\/95 {
  border-color: rgb(234 101 101 / 0.95);
}

.border-eva-teal-appt {
  --tw-border-opacity: 1;
  border-color: rgba(22, 172, 151, var(--tw-border-opacity, 1));
}

.border-eva-teal-appt\/0 {
  border-color: rgba(22, 172, 151, 0);
}

.border-eva-teal-appt\/10 {
  border-color: rgba(22, 172, 151, 0.1);
}

.border-eva-teal-appt\/100 {
  border-color: rgba(22, 172, 151, 1);
}

.border-eva-teal-appt\/15 {
  border-color: rgba(22, 172, 151, 0.15);
}

.border-eva-teal-appt\/20 {
  border-color: rgba(22, 172, 151, 0.2);
}

.border-eva-teal-appt\/25 {
  border-color: rgba(22, 172, 151, 0.25);
}

.border-eva-teal-appt\/30 {
  border-color: rgba(22, 172, 151, 0.3);
}

.border-eva-teal-appt\/35 {
  border-color: rgba(22, 172, 151, 0.35);
}

.border-eva-teal-appt\/40 {
  border-color: rgba(22, 172, 151, 0.4);
}

.border-eva-teal-appt\/45 {
  border-color: rgba(22, 172, 151, 0.45);
}

.border-eva-teal-appt\/5 {
  border-color: rgba(22, 172, 151, 0.05);
}

.border-eva-teal-appt\/50 {
  border-color: rgba(22, 172, 151, 0.5);
}

.border-eva-teal-appt\/55 {
  border-color: rgba(22, 172, 151, 0.55);
}

.border-eva-teal-appt\/60 {
  border-color: rgba(22, 172, 151, 0.6);
}

.border-eva-teal-appt\/65 {
  border-color: rgba(22, 172, 151, 0.65);
}

.border-eva-teal-appt\/70 {
  border-color: rgba(22, 172, 151, 0.7);
}

.border-eva-teal-appt\/75 {
  border-color: rgba(22, 172, 151, 0.75);
}

.border-eva-teal-appt\/80 {
  border-color: rgba(22, 172, 151, 0.8);
}

.border-eva-teal-appt\/85 {
  border-color: rgba(22, 172, 151, 0.85);
}

.border-eva-teal-appt\/90 {
  border-color: rgba(22, 172, 151, 0.9);
}

.border-eva-teal-appt\/95 {
  border-color: rgba(22, 172, 151, 0.95);
}

.border-eva-yellow {
  --tw-border-opacity: 1;
  border-color: rgb(233 179 98 / var(--tw-border-opacity, 1));
}

.border-eva-yellow-appt {
  border-color: rgba(240, 226, 0, 1);
}

.border-eva-yellow-appt\/0 {
  border-color: rgba(240, 226, 0, 0);
}

.border-eva-yellow-appt\/10 {
  border-color: rgba(240, 226, 0, 0.1);
}

.border-eva-yellow-appt\/100 {
  border-color: rgba(240, 226, 0, 1);
}

.border-eva-yellow-appt\/15 {
  border-color: rgba(240, 226, 0, 0.15);
}

.border-eva-yellow-appt\/20 {
  border-color: rgba(240, 226, 0, 0.2);
}

.border-eva-yellow-appt\/25 {
  border-color: rgba(240, 226, 0, 0.25);
}

.border-eva-yellow-appt\/30 {
  border-color: rgba(240, 226, 0, 0.3);
}

.border-eva-yellow-appt\/35 {
  border-color: rgba(240, 226, 0, 0.35);
}

.border-eva-yellow-appt\/40 {
  border-color: rgba(240, 226, 0, 0.4);
}

.border-eva-yellow-appt\/45 {
  border-color: rgba(240, 226, 0, 0.45);
}

.border-eva-yellow-appt\/5 {
  border-color: rgba(240, 226, 0, 0.05);
}

.border-eva-yellow-appt\/50 {
  border-color: rgba(240, 226, 0, 0.5);
}

.border-eva-yellow-appt\/55 {
  border-color: rgba(240, 226, 0, 0.55);
}

.border-eva-yellow-appt\/60 {
  border-color: rgba(240, 226, 0, 0.6);
}

.border-eva-yellow-appt\/65 {
  border-color: rgba(240, 226, 0, 0.65);
}

.border-eva-yellow-appt\/70 {
  border-color: rgba(240, 226, 0, 0.7);
}

.border-eva-yellow-appt\/75 {
  border-color: rgba(240, 226, 0, 0.75);
}

.border-eva-yellow-appt\/80 {
  border-color: rgba(240, 226, 0, 0.8);
}

.border-eva-yellow-appt\/85 {
  border-color: rgba(240, 226, 0, 0.85);
}

.border-eva-yellow-appt\/90 {
  border-color: rgba(240, 226, 0, 0.9);
}

.border-eva-yellow-appt\/95 {
  border-color: rgba(240, 226, 0, 0.95);
}

.border-eva-yellow\/0 {
  border-color: rgb(233 179 98 / 0);
}

.border-eva-yellow\/10 {
  border-color: rgb(233 179 98 / 0.1);
}

.border-eva-yellow\/100 {
  border-color: rgb(233 179 98 / 1);
}

.border-eva-yellow\/15 {
  border-color: rgb(233 179 98 / 0.15);
}

.border-eva-yellow\/20 {
  border-color: rgb(233 179 98 / 0.2);
}

.border-eva-yellow\/25 {
  border-color: rgb(233 179 98 / 0.25);
}

.border-eva-yellow\/30 {
  border-color: rgb(233 179 98 / 0.3);
}

.border-eva-yellow\/35 {
  border-color: rgb(233 179 98 / 0.35);
}

.border-eva-yellow\/40 {
  border-color: rgb(233 179 98 / 0.4);
}

.border-eva-yellow\/45 {
  border-color: rgb(233 179 98 / 0.45);
}

.border-eva-yellow\/5 {
  border-color: rgb(233 179 98 / 0.05);
}

.border-eva-yellow\/50 {
  border-color: rgb(233 179 98 / 0.5);
}

.border-eva-yellow\/55 {
  border-color: rgb(233 179 98 / 0.55);
}

.border-eva-yellow\/60 {
  border-color: rgb(233 179 98 / 0.6);
}

.border-eva-yellow\/65 {
  border-color: rgb(233 179 98 / 0.65);
}

.border-eva-yellow\/70 {
  border-color: rgb(233 179 98 / 0.7);
}

.border-eva-yellow\/75 {
  border-color: rgb(233 179 98 / 0.75);
}

.border-eva-yellow\/80 {
  border-color: rgb(233 179 98 / 0.8);
}

.border-eva-yellow\/85 {
  border-color: rgb(233 179 98 / 0.85);
}

.border-eva-yellow\/90 {
  border-color: rgb(233 179 98 / 0.9);
}

.border-eva-yellow\/95 {
  border-color: rgb(233 179 98 / 0.95);
}

.border-gray-100 {
  --tw-border-opacity: 1;
  border-color: rgb(245 245 245 / var(--tw-border-opacity, 1));
}

.border-gray-100\/0 {
  border-color: rgb(245 245 245 / 0);
}

.border-gray-100\/10 {
  border-color: rgb(245 245 245 / 0.1);
}

.border-gray-100\/100 {
  border-color: rgb(245 245 245 / 1);
}

.border-gray-100\/15 {
  border-color: rgb(245 245 245 / 0.15);
}

.border-gray-100\/20 {
  border-color: rgb(245 245 245 / 0.2);
}

.border-gray-100\/25 {
  border-color: rgb(245 245 245 / 0.25);
}

.border-gray-100\/30 {
  border-color: rgb(245 245 245 / 0.3);
}

.border-gray-100\/35 {
  border-color: rgb(245 245 245 / 0.35);
}

.border-gray-100\/40 {
  border-color: rgb(245 245 245 / 0.4);
}

.border-gray-100\/45 {
  border-color: rgb(245 245 245 / 0.45);
}

.border-gray-100\/5 {
  border-color: rgb(245 245 245 / 0.05);
}

.border-gray-100\/50 {
  border-color: rgb(245 245 245 / 0.5);
}

.border-gray-100\/55 {
  border-color: rgb(245 245 245 / 0.55);
}

.border-gray-100\/60 {
  border-color: rgb(245 245 245 / 0.6);
}

.border-gray-100\/65 {
  border-color: rgb(245 245 245 / 0.65);
}

.border-gray-100\/70 {
  border-color: rgb(245 245 245 / 0.7);
}

.border-gray-100\/75 {
  border-color: rgb(245 245 245 / 0.75);
}

.border-gray-100\/80 {
  border-color: rgb(245 245 245 / 0.8);
}

.border-gray-100\/85 {
  border-color: rgb(245 245 245 / 0.85);
}

.border-gray-100\/90 {
  border-color: rgb(245 245 245 / 0.9);
}

.border-gray-100\/95 {
  border-color: rgb(245 245 245 / 0.95);
}

.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
}

.border-gray-200\/0 {
  border-color: rgb(229 229 229 / 0);
}

.border-gray-200\/10 {
  border-color: rgb(229 229 229 / 0.1);
}

.border-gray-200\/100 {
  border-color: rgb(229 229 229 / 1);
}

.border-gray-200\/15 {
  border-color: rgb(229 229 229 / 0.15);
}

.border-gray-200\/20 {
  border-color: rgb(229 229 229 / 0.2);
}

.border-gray-200\/25 {
  border-color: rgb(229 229 229 / 0.25);
}

.border-gray-200\/30 {
  border-color: rgb(229 229 229 / 0.3);
}

.border-gray-200\/35 {
  border-color: rgb(229 229 229 / 0.35);
}

.border-gray-200\/40 {
  border-color: rgb(229 229 229 / 0.4);
}

.border-gray-200\/45 {
  border-color: rgb(229 229 229 / 0.45);
}

.border-gray-200\/5 {
  border-color: rgb(229 229 229 / 0.05);
}

.border-gray-200\/50 {
  border-color: rgb(229 229 229 / 0.5);
}

.border-gray-200\/55 {
  border-color: rgb(229 229 229 / 0.55);
}

.border-gray-200\/60 {
  border-color: rgb(229 229 229 / 0.6);
}

.border-gray-200\/65 {
  border-color: rgb(229 229 229 / 0.65);
}

.border-gray-200\/70 {
  border-color: rgb(229 229 229 / 0.7);
}

.border-gray-200\/75 {
  border-color: rgb(229 229 229 / 0.75);
}

.border-gray-200\/80 {
  border-color: rgb(229 229 229 / 0.8);
}

.border-gray-200\/85 {
  border-color: rgb(229 229 229 / 0.85);
}

.border-gray-200\/90 {
  border-color: rgb(229 229 229 / 0.9);
}

.border-gray-200\/95 {
  border-color: rgb(229 229 229 / 0.95);
}

.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(212 212 212 / var(--tw-border-opacity, 1));
}

.border-gray-300\/0 {
  border-color: rgb(212 212 212 / 0);
}

.border-gray-300\/10 {
  border-color: rgb(212 212 212 / 0.1);
}

.border-gray-300\/100 {
  border-color: rgb(212 212 212 / 1);
}

.border-gray-300\/15 {
  border-color: rgb(212 212 212 / 0.15);
}

.border-gray-300\/20 {
  border-color: rgb(212 212 212 / 0.2);
}

.border-gray-300\/25 {
  border-color: rgb(212 212 212 / 0.25);
}

.border-gray-300\/30 {
  border-color: rgb(212 212 212 / 0.3);
}

.border-gray-300\/35 {
  border-color: rgb(212 212 212 / 0.35);
}

.border-gray-300\/40 {
  border-color: rgb(212 212 212 / 0.4);
}

.border-gray-300\/45 {
  border-color: rgb(212 212 212 / 0.45);
}

.border-gray-300\/5 {
  border-color: rgb(212 212 212 / 0.05);
}

.border-gray-300\/50 {
  border-color: rgb(212 212 212 / 0.5);
}

.border-gray-300\/55 {
  border-color: rgb(212 212 212 / 0.55);
}

.border-gray-300\/60 {
  border-color: rgb(212 212 212 / 0.6);
}

.border-gray-300\/65 {
  border-color: rgb(212 212 212 / 0.65);
}

.border-gray-300\/70 {
  border-color: rgb(212 212 212 / 0.7);
}

.border-gray-300\/75 {
  border-color: rgb(212 212 212 / 0.75);
}

.border-gray-300\/80 {
  border-color: rgb(212 212 212 / 0.8);
}

.border-gray-300\/85 {
  border-color: rgb(212 212 212 / 0.85);
}

.border-gray-300\/90 {
  border-color: rgb(212 212 212 / 0.9);
}

.border-gray-300\/95 {
  border-color: rgb(212 212 212 / 0.95);
}

.border-gray-400 {
  --tw-border-opacity: 1;
  border-color: rgb(163 163 163 / var(--tw-border-opacity, 1));
}

.border-gray-400\/0 {
  border-color: rgb(163 163 163 / 0);
}

.border-gray-400\/10 {
  border-color: rgb(163 163 163 / 0.1);
}

.border-gray-400\/100 {
  border-color: rgb(163 163 163 / 1);
}

.border-gray-400\/15 {
  border-color: rgb(163 163 163 / 0.15);
}

.border-gray-400\/20 {
  border-color: rgb(163 163 163 / 0.2);
}

.border-gray-400\/25 {
  border-color: rgb(163 163 163 / 0.25);
}

.border-gray-400\/30 {
  border-color: rgb(163 163 163 / 0.3);
}

.border-gray-400\/35 {
  border-color: rgb(163 163 163 / 0.35);
}

.border-gray-400\/40 {
  border-color: rgb(163 163 163 / 0.4);
}

.border-gray-400\/45 {
  border-color: rgb(163 163 163 / 0.45);
}

.border-gray-400\/5 {
  border-color: rgb(163 163 163 / 0.05);
}

.border-gray-400\/50 {
  border-color: rgb(163 163 163 / 0.5);
}

.border-gray-400\/55 {
  border-color: rgb(163 163 163 / 0.55);
}

.border-gray-400\/60 {
  border-color: rgb(163 163 163 / 0.6);
}

.border-gray-400\/65 {
  border-color: rgb(163 163 163 / 0.65);
}

.border-gray-400\/70 {
  border-color: rgb(163 163 163 / 0.7);
}

.border-gray-400\/75 {
  border-color: rgb(163 163 163 / 0.75);
}

.border-gray-400\/80 {
  border-color: rgb(163 163 163 / 0.8);
}

.border-gray-400\/85 {
  border-color: rgb(163 163 163 / 0.85);
}

.border-gray-400\/90 {
  border-color: rgb(163 163 163 / 0.9);
}

.border-gray-400\/95 {
  border-color: rgb(163 163 163 / 0.95);
}

.border-gray-50 {
  --tw-border-opacity: 1;
  border-color: rgb(250 250 250 / var(--tw-border-opacity, 1));
}

.border-gray-50\/0 {
  border-color: rgb(250 250 250 / 0);
}

.border-gray-50\/10 {
  border-color: rgb(250 250 250 / 0.1);
}

.border-gray-50\/100 {
  border-color: rgb(250 250 250 / 1);
}

.border-gray-50\/15 {
  border-color: rgb(250 250 250 / 0.15);
}

.border-gray-50\/20 {
  border-color: rgb(250 250 250 / 0.2);
}

.border-gray-50\/25 {
  border-color: rgb(250 250 250 / 0.25);
}

.border-gray-50\/30 {
  border-color: rgb(250 250 250 / 0.3);
}

.border-gray-50\/35 {
  border-color: rgb(250 250 250 / 0.35);
}

.border-gray-50\/40 {
  border-color: rgb(250 250 250 / 0.4);
}

.border-gray-50\/45 {
  border-color: rgb(250 250 250 / 0.45);
}

.border-gray-50\/5 {
  border-color: rgb(250 250 250 / 0.05);
}

.border-gray-50\/50 {
  border-color: rgb(250 250 250 / 0.5);
}

.border-gray-50\/55 {
  border-color: rgb(250 250 250 / 0.55);
}

.border-gray-50\/60 {
  border-color: rgb(250 250 250 / 0.6);
}

.border-gray-50\/65 {
  border-color: rgb(250 250 250 / 0.65);
}

.border-gray-50\/70 {
  border-color: rgb(250 250 250 / 0.7);
}

.border-gray-50\/75 {
  border-color: rgb(250 250 250 / 0.75);
}

.border-gray-50\/80 {
  border-color: rgb(250 250 250 / 0.8);
}

.border-gray-50\/85 {
  border-color: rgb(250 250 250 / 0.85);
}

.border-gray-50\/90 {
  border-color: rgb(250 250 250 / 0.9);
}

.border-gray-50\/95 {
  border-color: rgb(250 250 250 / 0.95);
}

.border-gray-500 {
  --tw-border-opacity: 1;
  border-color: rgb(115 115 115 / var(--tw-border-opacity, 1));
}

.border-gray-500\/0 {
  border-color: rgb(115 115 115 / 0);
}

.border-gray-500\/10 {
  border-color: rgb(115 115 115 / 0.1);
}

.border-gray-500\/100 {
  border-color: rgb(115 115 115 / 1);
}

.border-gray-500\/15 {
  border-color: rgb(115 115 115 / 0.15);
}

.border-gray-500\/20 {
  border-color: rgb(115 115 115 / 0.2);
}

.border-gray-500\/25 {
  border-color: rgb(115 115 115 / 0.25);
}

.border-gray-500\/30 {
  border-color: rgb(115 115 115 / 0.3);
}

.border-gray-500\/35 {
  border-color: rgb(115 115 115 / 0.35);
}

.border-gray-500\/40 {
  border-color: rgb(115 115 115 / 0.4);
}

.border-gray-500\/45 {
  border-color: rgb(115 115 115 / 0.45);
}

.border-gray-500\/5 {
  border-color: rgb(115 115 115 / 0.05);
}

.border-gray-500\/50 {
  border-color: rgb(115 115 115 / 0.5);
}

.border-gray-500\/55 {
  border-color: rgb(115 115 115 / 0.55);
}

.border-gray-500\/60 {
  border-color: rgb(115 115 115 / 0.6);
}

.border-gray-500\/65 {
  border-color: rgb(115 115 115 / 0.65);
}

.border-gray-500\/70 {
  border-color: rgb(115 115 115 / 0.7);
}

.border-gray-500\/75 {
  border-color: rgb(115 115 115 / 0.75);
}

.border-gray-500\/80 {
  border-color: rgb(115 115 115 / 0.8);
}

.border-gray-500\/85 {
  border-color: rgb(115 115 115 / 0.85);
}

.border-gray-500\/90 {
  border-color: rgb(115 115 115 / 0.9);
}

.border-gray-500\/95 {
  border-color: rgb(115 115 115 / 0.95);
}

.border-gray-600 {
  --tw-border-opacity: 1;
  border-color: rgb(82 82 82 / var(--tw-border-opacity, 1));
}

.border-gray-600\/0 {
  border-color: rgb(82 82 82 / 0);
}

.border-gray-600\/10 {
  border-color: rgb(82 82 82 / 0.1);
}

.border-gray-600\/100 {
  border-color: rgb(82 82 82 / 1);
}

.border-gray-600\/15 {
  border-color: rgb(82 82 82 / 0.15);
}

.border-gray-600\/20 {
  border-color: rgb(82 82 82 / 0.2);
}

.border-gray-600\/25 {
  border-color: rgb(82 82 82 / 0.25);
}

.border-gray-600\/30 {
  border-color: rgb(82 82 82 / 0.3);
}

.border-gray-600\/35 {
  border-color: rgb(82 82 82 / 0.35);
}

.border-gray-600\/40 {
  border-color: rgb(82 82 82 / 0.4);
}

.border-gray-600\/45 {
  border-color: rgb(82 82 82 / 0.45);
}

.border-gray-600\/5 {
  border-color: rgb(82 82 82 / 0.05);
}

.border-gray-600\/50 {
  border-color: rgb(82 82 82 / 0.5);
}

.border-gray-600\/55 {
  border-color: rgb(82 82 82 / 0.55);
}

.border-gray-600\/60 {
  border-color: rgb(82 82 82 / 0.6);
}

.border-gray-600\/65 {
  border-color: rgb(82 82 82 / 0.65);
}

.border-gray-600\/70 {
  border-color: rgb(82 82 82 / 0.7);
}

.border-gray-600\/75 {
  border-color: rgb(82 82 82 / 0.75);
}

.border-gray-600\/80 {
  border-color: rgb(82 82 82 / 0.8);
}

.border-gray-600\/85 {
  border-color: rgb(82 82 82 / 0.85);
}

.border-gray-600\/90 {
  border-color: rgb(82 82 82 / 0.9);
}

.border-gray-600\/95 {
  border-color: rgb(82 82 82 / 0.95);
}

.border-gray-700 {
  --tw-border-opacity: 1;
  border-color: rgb(64 64 64 / var(--tw-border-opacity, 1));
}

.border-gray-700\/0 {
  border-color: rgb(64 64 64 / 0);
}

.border-gray-700\/10 {
  border-color: rgb(64 64 64 / 0.1);
}

.border-gray-700\/100 {
  border-color: rgb(64 64 64 / 1);
}

.border-gray-700\/15 {
  border-color: rgb(64 64 64 / 0.15);
}

.border-gray-700\/20 {
  border-color: rgb(64 64 64 / 0.2);
}

.border-gray-700\/25 {
  border-color: rgb(64 64 64 / 0.25);
}

.border-gray-700\/30 {
  border-color: rgb(64 64 64 / 0.3);
}

.border-gray-700\/35 {
  border-color: rgb(64 64 64 / 0.35);
}

.border-gray-700\/40 {
  border-color: rgb(64 64 64 / 0.4);
}

.border-gray-700\/45 {
  border-color: rgb(64 64 64 / 0.45);
}

.border-gray-700\/5 {
  border-color: rgb(64 64 64 / 0.05);
}

.border-gray-700\/50 {
  border-color: rgb(64 64 64 / 0.5);
}

.border-gray-700\/55 {
  border-color: rgb(64 64 64 / 0.55);
}

.border-gray-700\/60 {
  border-color: rgb(64 64 64 / 0.6);
}

.border-gray-700\/65 {
  border-color: rgb(64 64 64 / 0.65);
}

.border-gray-700\/70 {
  border-color: rgb(64 64 64 / 0.7);
}

.border-gray-700\/75 {
  border-color: rgb(64 64 64 / 0.75);
}

.border-gray-700\/80 {
  border-color: rgb(64 64 64 / 0.8);
}

.border-gray-700\/85 {
  border-color: rgb(64 64 64 / 0.85);
}

.border-gray-700\/90 {
  border-color: rgb(64 64 64 / 0.9);
}

.border-gray-700\/95 {
  border-color: rgb(64 64 64 / 0.95);
}

.border-gray-800 {
  --tw-border-opacity: 1;
  border-color: rgb(38 38 38 / var(--tw-border-opacity, 1));
}

.border-gray-800\/0 {
  border-color: rgb(38 38 38 / 0);
}

.border-gray-800\/10 {
  border-color: rgb(38 38 38 / 0.1);
}

.border-gray-800\/100 {
  border-color: rgb(38 38 38 / 1);
}

.border-gray-800\/15 {
  border-color: rgb(38 38 38 / 0.15);
}

.border-gray-800\/20 {
  border-color: rgb(38 38 38 / 0.2);
}

.border-gray-800\/25 {
  border-color: rgb(38 38 38 / 0.25);
}

.border-gray-800\/30 {
  border-color: rgb(38 38 38 / 0.3);
}

.border-gray-800\/35 {
  border-color: rgb(38 38 38 / 0.35);
}

.border-gray-800\/40 {
  border-color: rgb(38 38 38 / 0.4);
}

.border-gray-800\/45 {
  border-color: rgb(38 38 38 / 0.45);
}

.border-gray-800\/5 {
  border-color: rgb(38 38 38 / 0.05);
}

.border-gray-800\/50 {
  border-color: rgb(38 38 38 / 0.5);
}

.border-gray-800\/55 {
  border-color: rgb(38 38 38 / 0.55);
}

.border-gray-800\/60 {
  border-color: rgb(38 38 38 / 0.6);
}

.border-gray-800\/65 {
  border-color: rgb(38 38 38 / 0.65);
}

.border-gray-800\/70 {
  border-color: rgb(38 38 38 / 0.7);
}

.border-gray-800\/75 {
  border-color: rgb(38 38 38 / 0.75);
}

.border-gray-800\/80 {
  border-color: rgb(38 38 38 / 0.8);
}

.border-gray-800\/85 {
  border-color: rgb(38 38 38 / 0.85);
}

.border-gray-800\/90 {
  border-color: rgb(38 38 38 / 0.9);
}

.border-gray-800\/95 {
  border-color: rgb(38 38 38 / 0.95);
}

.border-gray-900 {
  --tw-border-opacity: 1;
  border-color: rgb(23 23 23 / var(--tw-border-opacity, 1));
}

.border-gray-900\/0 {
  border-color: rgb(23 23 23 / 0);
}

.border-gray-900\/10 {
  border-color: rgb(23 23 23 / 0.1);
}

.border-gray-900\/100 {
  border-color: rgb(23 23 23 / 1);
}

.border-gray-900\/15 {
  border-color: rgb(23 23 23 / 0.15);
}

.border-gray-900\/20 {
  border-color: rgb(23 23 23 / 0.2);
}

.border-gray-900\/25 {
  border-color: rgb(23 23 23 / 0.25);
}

.border-gray-900\/30 {
  border-color: rgb(23 23 23 / 0.3);
}

.border-gray-900\/35 {
  border-color: rgb(23 23 23 / 0.35);
}

.border-gray-900\/40 {
  border-color: rgb(23 23 23 / 0.4);
}

.border-gray-900\/45 {
  border-color: rgb(23 23 23 / 0.45);
}

.border-gray-900\/5 {
  border-color: rgb(23 23 23 / 0.05);
}

.border-gray-900\/50 {
  border-color: rgb(23 23 23 / 0.5);
}

.border-gray-900\/55 {
  border-color: rgb(23 23 23 / 0.55);
}

.border-gray-900\/60 {
  border-color: rgb(23 23 23 / 0.6);
}

.border-gray-900\/65 {
  border-color: rgb(23 23 23 / 0.65);
}

.border-gray-900\/70 {
  border-color: rgb(23 23 23 / 0.7);
}

.border-gray-900\/75 {
  border-color: rgb(23 23 23 / 0.75);
}

.border-gray-900\/80 {
  border-color: rgb(23 23 23 / 0.8);
}

.border-gray-900\/85 {
  border-color: rgb(23 23 23 / 0.85);
}

.border-gray-900\/90 {
  border-color: rgb(23 23 23 / 0.9);
}

.border-gray-900\/95 {
  border-color: rgb(23 23 23 / 0.95);
}

.border-gray-950 {
  --tw-border-opacity: 1;
  border-color: rgb(10 10 10 / var(--tw-border-opacity, 1));
}

.border-gray-950\/0 {
  border-color: rgb(10 10 10 / 0);
}

.border-gray-950\/10 {
  border-color: rgb(10 10 10 / 0.1);
}

.border-gray-950\/100 {
  border-color: rgb(10 10 10 / 1);
}

.border-gray-950\/15 {
  border-color: rgb(10 10 10 / 0.15);
}

.border-gray-950\/20 {
  border-color: rgb(10 10 10 / 0.2);
}

.border-gray-950\/25 {
  border-color: rgb(10 10 10 / 0.25);
}

.border-gray-950\/30 {
  border-color: rgb(10 10 10 / 0.3);
}

.border-gray-950\/35 {
  border-color: rgb(10 10 10 / 0.35);
}

.border-gray-950\/40 {
  border-color: rgb(10 10 10 / 0.4);
}

.border-gray-950\/45 {
  border-color: rgb(10 10 10 / 0.45);
}

.border-gray-950\/5 {
  border-color: rgb(10 10 10 / 0.05);
}

.border-gray-950\/50 {
  border-color: rgb(10 10 10 / 0.5);
}

.border-gray-950\/55 {
  border-color: rgb(10 10 10 / 0.55);
}

.border-gray-950\/60 {
  border-color: rgb(10 10 10 / 0.6);
}

.border-gray-950\/65 {
  border-color: rgb(10 10 10 / 0.65);
}

.border-gray-950\/70 {
  border-color: rgb(10 10 10 / 0.7);
}

.border-gray-950\/75 {
  border-color: rgb(10 10 10 / 0.75);
}

.border-gray-950\/80 {
  border-color: rgb(10 10 10 / 0.8);
}

.border-gray-950\/85 {
  border-color: rgb(10 10 10 / 0.85);
}

.border-gray-950\/90 {
  border-color: rgb(10 10 10 / 0.9);
}

.border-gray-950\/95 {
  border-color: rgb(10 10 10 / 0.95);
}

.border-green-100 {
  --tw-border-opacity: 1;
  border-color: rgb(220 252 231 / var(--tw-border-opacity, 1));
}

.border-green-100\/0 {
  border-color: rgb(220 252 231 / 0);
}

.border-green-100\/10 {
  border-color: rgb(220 252 231 / 0.1);
}

.border-green-100\/100 {
  border-color: rgb(220 252 231 / 1);
}

.border-green-100\/15 {
  border-color: rgb(220 252 231 / 0.15);
}

.border-green-100\/20 {
  border-color: rgb(220 252 231 / 0.2);
}

.border-green-100\/25 {
  border-color: rgb(220 252 231 / 0.25);
}

.border-green-100\/30 {
  border-color: rgb(220 252 231 / 0.3);
}

.border-green-100\/35 {
  border-color: rgb(220 252 231 / 0.35);
}

.border-green-100\/40 {
  border-color: rgb(220 252 231 / 0.4);
}

.border-green-100\/45 {
  border-color: rgb(220 252 231 / 0.45);
}

.border-green-100\/5 {
  border-color: rgb(220 252 231 / 0.05);
}

.border-green-100\/50 {
  border-color: rgb(220 252 231 / 0.5);
}

.border-green-100\/55 {
  border-color: rgb(220 252 231 / 0.55);
}

.border-green-100\/60 {
  border-color: rgb(220 252 231 / 0.6);
}

.border-green-100\/65 {
  border-color: rgb(220 252 231 / 0.65);
}

.border-green-100\/70 {
  border-color: rgb(220 252 231 / 0.7);
}

.border-green-100\/75 {
  border-color: rgb(220 252 231 / 0.75);
}

.border-green-100\/80 {
  border-color: rgb(220 252 231 / 0.8);
}

.border-green-100\/85 {
  border-color: rgb(220 252 231 / 0.85);
}

.border-green-100\/90 {
  border-color: rgb(220 252 231 / 0.9);
}

.border-green-100\/95 {
  border-color: rgb(220 252 231 / 0.95);
}

.border-green-200 {
  --tw-border-opacity: 1;
  border-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
}

.border-green-200\/0 {
  border-color: rgb(187 247 208 / 0);
}

.border-green-200\/10 {
  border-color: rgb(187 247 208 / 0.1);
}

.border-green-200\/100 {
  border-color: rgb(187 247 208 / 1);
}

.border-green-200\/15 {
  border-color: rgb(187 247 208 / 0.15);
}

.border-green-200\/20 {
  border-color: rgb(187 247 208 / 0.2);
}

.border-green-200\/25 {
  border-color: rgb(187 247 208 / 0.25);
}

.border-green-200\/30 {
  border-color: rgb(187 247 208 / 0.3);
}

.border-green-200\/35 {
  border-color: rgb(187 247 208 / 0.35);
}

.border-green-200\/40 {
  border-color: rgb(187 247 208 / 0.4);
}

.border-green-200\/45 {
  border-color: rgb(187 247 208 / 0.45);
}

.border-green-200\/5 {
  border-color: rgb(187 247 208 / 0.05);
}

.border-green-200\/50 {
  border-color: rgb(187 247 208 / 0.5);
}

.border-green-200\/55 {
  border-color: rgb(187 247 208 / 0.55);
}

.border-green-200\/60 {
  border-color: rgb(187 247 208 / 0.6);
}

.border-green-200\/65 {
  border-color: rgb(187 247 208 / 0.65);
}

.border-green-200\/70 {
  border-color: rgb(187 247 208 / 0.7);
}

.border-green-200\/75 {
  border-color: rgb(187 247 208 / 0.75);
}

.border-green-200\/80 {
  border-color: rgb(187 247 208 / 0.8);
}

.border-green-200\/85 {
  border-color: rgb(187 247 208 / 0.85);
}

.border-green-200\/90 {
  border-color: rgb(187 247 208 / 0.9);
}

.border-green-200\/95 {
  border-color: rgb(187 247 208 / 0.95);
}

.border-green-300 {
  --tw-border-opacity: 1;
  border-color: rgb(134 239 172 / var(--tw-border-opacity, 1));
}

.border-green-300\/0 {
  border-color: rgb(134 239 172 / 0);
}

.border-green-300\/10 {
  border-color: rgb(134 239 172 / 0.1);
}

.border-green-300\/100 {
  border-color: rgb(134 239 172 / 1);
}

.border-green-300\/15 {
  border-color: rgb(134 239 172 / 0.15);
}

.border-green-300\/20 {
  border-color: rgb(134 239 172 / 0.2);
}

.border-green-300\/25 {
  border-color: rgb(134 239 172 / 0.25);
}

.border-green-300\/30 {
  border-color: rgb(134 239 172 / 0.3);
}

.border-green-300\/35 {
  border-color: rgb(134 239 172 / 0.35);
}

.border-green-300\/40 {
  border-color: rgb(134 239 172 / 0.4);
}

.border-green-300\/45 {
  border-color: rgb(134 239 172 / 0.45);
}

.border-green-300\/5 {
  border-color: rgb(134 239 172 / 0.05);
}

.border-green-300\/50 {
  border-color: rgb(134 239 172 / 0.5);
}

.border-green-300\/55 {
  border-color: rgb(134 239 172 / 0.55);
}

.border-green-300\/60 {
  border-color: rgb(134 239 172 / 0.6);
}

.border-green-300\/65 {
  border-color: rgb(134 239 172 / 0.65);
}

.border-green-300\/70 {
  border-color: rgb(134 239 172 / 0.7);
}

.border-green-300\/75 {
  border-color: rgb(134 239 172 / 0.75);
}

.border-green-300\/80 {
  border-color: rgb(134 239 172 / 0.8);
}

.border-green-300\/85 {
  border-color: rgb(134 239 172 / 0.85);
}

.border-green-300\/90 {
  border-color: rgb(134 239 172 / 0.9);
}

.border-green-300\/95 {
  border-color: rgb(134 239 172 / 0.95);
}

.border-green-400 {
  --tw-border-opacity: 1;
  border-color: rgb(74 222 128 / var(--tw-border-opacity, 1));
}

.border-green-400\/0 {
  border-color: rgb(74 222 128 / 0);
}

.border-green-400\/10 {
  border-color: rgb(74 222 128 / 0.1);
}

.border-green-400\/100 {
  border-color: rgb(74 222 128 / 1);
}

.border-green-400\/15 {
  border-color: rgb(74 222 128 / 0.15);
}

.border-green-400\/20 {
  border-color: rgb(74 222 128 / 0.2);
}

.border-green-400\/25 {
  border-color: rgb(74 222 128 / 0.25);
}

.border-green-400\/30 {
  border-color: rgb(74 222 128 / 0.3);
}

.border-green-400\/35 {
  border-color: rgb(74 222 128 / 0.35);
}

.border-green-400\/40 {
  border-color: rgb(74 222 128 / 0.4);
}

.border-green-400\/45 {
  border-color: rgb(74 222 128 / 0.45);
}

.border-green-400\/5 {
  border-color: rgb(74 222 128 / 0.05);
}

.border-green-400\/50 {
  border-color: rgb(74 222 128 / 0.5);
}

.border-green-400\/55 {
  border-color: rgb(74 222 128 / 0.55);
}

.border-green-400\/60 {
  border-color: rgb(74 222 128 / 0.6);
}

.border-green-400\/65 {
  border-color: rgb(74 222 128 / 0.65);
}

.border-green-400\/70 {
  border-color: rgb(74 222 128 / 0.7);
}

.border-green-400\/75 {
  border-color: rgb(74 222 128 / 0.75);
}

.border-green-400\/80 {
  border-color: rgb(74 222 128 / 0.8);
}

.border-green-400\/85 {
  border-color: rgb(74 222 128 / 0.85);
}

.border-green-400\/90 {
  border-color: rgb(74 222 128 / 0.9);
}

.border-green-400\/95 {
  border-color: rgb(74 222 128 / 0.95);
}

.border-green-50 {
  --tw-border-opacity: 1;
  border-color: rgb(240 253 244 / var(--tw-border-opacity, 1));
}

.border-green-50\/0 {
  border-color: rgb(240 253 244 / 0);
}

.border-green-50\/10 {
  border-color: rgb(240 253 244 / 0.1);
}

.border-green-50\/100 {
  border-color: rgb(240 253 244 / 1);
}

.border-green-50\/15 {
  border-color: rgb(240 253 244 / 0.15);
}

.border-green-50\/20 {
  border-color: rgb(240 253 244 / 0.2);
}

.border-green-50\/25 {
  border-color: rgb(240 253 244 / 0.25);
}

.border-green-50\/30 {
  border-color: rgb(240 253 244 / 0.3);
}

.border-green-50\/35 {
  border-color: rgb(240 253 244 / 0.35);
}

.border-green-50\/40 {
  border-color: rgb(240 253 244 / 0.4);
}

.border-green-50\/45 {
  border-color: rgb(240 253 244 / 0.45);
}

.border-green-50\/5 {
  border-color: rgb(240 253 244 / 0.05);
}

.border-green-50\/50 {
  border-color: rgb(240 253 244 / 0.5);
}

.border-green-50\/55 {
  border-color: rgb(240 253 244 / 0.55);
}

.border-green-50\/60 {
  border-color: rgb(240 253 244 / 0.6);
}

.border-green-50\/65 {
  border-color: rgb(240 253 244 / 0.65);
}

.border-green-50\/70 {
  border-color: rgb(240 253 244 / 0.7);
}

.border-green-50\/75 {
  border-color: rgb(240 253 244 / 0.75);
}

.border-green-50\/80 {
  border-color: rgb(240 253 244 / 0.8);
}

.border-green-50\/85 {
  border-color: rgb(240 253 244 / 0.85);
}

.border-green-50\/90 {
  border-color: rgb(240 253 244 / 0.9);
}

.border-green-50\/95 {
  border-color: rgb(240 253 244 / 0.95);
}

.border-green-500 {
  --tw-border-opacity: 1;
  border-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
}

.border-green-500\/0 {
  border-color: rgb(34 197 94 / 0);
}

.border-green-500\/10 {
  border-color: rgb(34 197 94 / 0.1);
}

.border-green-500\/100 {
  border-color: rgb(34 197 94 / 1);
}

.border-green-500\/15 {
  border-color: rgb(34 197 94 / 0.15);
}

.border-green-500\/20 {
  border-color: rgb(34 197 94 / 0.2);
}

.border-green-500\/25 {
  border-color: rgb(34 197 94 / 0.25);
}

.border-green-500\/30 {
  border-color: rgb(34 197 94 / 0.3);
}

.border-green-500\/35 {
  border-color: rgb(34 197 94 / 0.35);
}

.border-green-500\/40 {
  border-color: rgb(34 197 94 / 0.4);
}

.border-green-500\/45 {
  border-color: rgb(34 197 94 / 0.45);
}

.border-green-500\/5 {
  border-color: rgb(34 197 94 / 0.05);
}

.border-green-500\/50 {
  border-color: rgb(34 197 94 / 0.5);
}

.border-green-500\/55 {
  border-color: rgb(34 197 94 / 0.55);
}

.border-green-500\/60 {
  border-color: rgb(34 197 94 / 0.6);
}

.border-green-500\/65 {
  border-color: rgb(34 197 94 / 0.65);
}

.border-green-500\/70 {
  border-color: rgb(34 197 94 / 0.7);
}

.border-green-500\/75 {
  border-color: rgb(34 197 94 / 0.75);
}

.border-green-500\/80 {
  border-color: rgb(34 197 94 / 0.8);
}

.border-green-500\/85 {
  border-color: rgb(34 197 94 / 0.85);
}

.border-green-500\/90 {
  border-color: rgb(34 197 94 / 0.9);
}

.border-green-500\/95 {
  border-color: rgb(34 197 94 / 0.95);
}

.border-green-600 {
  --tw-border-opacity: 1;
  border-color: rgb(22 163 74 / var(--tw-border-opacity, 1));
}

.border-green-600\/0 {
  border-color: rgb(22 163 74 / 0);
}

.border-green-600\/10 {
  border-color: rgb(22 163 74 / 0.1);
}

.border-green-600\/100 {
  border-color: rgb(22 163 74 / 1);
}

.border-green-600\/15 {
  border-color: rgb(22 163 74 / 0.15);
}

.border-green-600\/20 {
  border-color: rgb(22 163 74 / 0.2);
}

.border-green-600\/25 {
  border-color: rgb(22 163 74 / 0.25);
}

.border-green-600\/30 {
  border-color: rgb(22 163 74 / 0.3);
}

.border-green-600\/35 {
  border-color: rgb(22 163 74 / 0.35);
}

.border-green-600\/40 {
  border-color: rgb(22 163 74 / 0.4);
}

.border-green-600\/45 {
  border-color: rgb(22 163 74 / 0.45);
}

.border-green-600\/5 {
  border-color: rgb(22 163 74 / 0.05);
}

.border-green-600\/50 {
  border-color: rgb(22 163 74 / 0.5);
}

.border-green-600\/55 {
  border-color: rgb(22 163 74 / 0.55);
}

.border-green-600\/60 {
  border-color: rgb(22 163 74 / 0.6);
}

.border-green-600\/65 {
  border-color: rgb(22 163 74 / 0.65);
}

.border-green-600\/70 {
  border-color: rgb(22 163 74 / 0.7);
}

.border-green-600\/75 {
  border-color: rgb(22 163 74 / 0.75);
}

.border-green-600\/80 {
  border-color: rgb(22 163 74 / 0.8);
}

.border-green-600\/85 {
  border-color: rgb(22 163 74 / 0.85);
}

.border-green-600\/90 {
  border-color: rgb(22 163 74 / 0.9);
}

.border-green-600\/95 {
  border-color: rgb(22 163 74 / 0.95);
}

.border-green-700 {
  --tw-border-opacity: 1;
  border-color: rgb(21 128 61 / var(--tw-border-opacity, 1));
}

.border-green-700\/0 {
  border-color: rgb(21 128 61 / 0);
}

.border-green-700\/10 {
  border-color: rgb(21 128 61 / 0.1);
}

.border-green-700\/100 {
  border-color: rgb(21 128 61 / 1);
}

.border-green-700\/15 {
  border-color: rgb(21 128 61 / 0.15);
}

.border-green-700\/20 {
  border-color: rgb(21 128 61 / 0.2);
}

.border-green-700\/25 {
  border-color: rgb(21 128 61 / 0.25);
}

.border-green-700\/30 {
  border-color: rgb(21 128 61 / 0.3);
}

.border-green-700\/35 {
  border-color: rgb(21 128 61 / 0.35);
}

.border-green-700\/40 {
  border-color: rgb(21 128 61 / 0.4);
}

.border-green-700\/45 {
  border-color: rgb(21 128 61 / 0.45);
}

.border-green-700\/5 {
  border-color: rgb(21 128 61 / 0.05);
}

.border-green-700\/50 {
  border-color: rgb(21 128 61 / 0.5);
}

.border-green-700\/55 {
  border-color: rgb(21 128 61 / 0.55);
}

.border-green-700\/60 {
  border-color: rgb(21 128 61 / 0.6);
}

.border-green-700\/65 {
  border-color: rgb(21 128 61 / 0.65);
}

.border-green-700\/70 {
  border-color: rgb(21 128 61 / 0.7);
}

.border-green-700\/75 {
  border-color: rgb(21 128 61 / 0.75);
}

.border-green-700\/80 {
  border-color: rgb(21 128 61 / 0.8);
}

.border-green-700\/85 {
  border-color: rgb(21 128 61 / 0.85);
}

.border-green-700\/90 {
  border-color: rgb(21 128 61 / 0.9);
}

.border-green-700\/95 {
  border-color: rgb(21 128 61 / 0.95);
}

.border-green-800 {
  --tw-border-opacity: 1;
  border-color: rgb(22 101 52 / var(--tw-border-opacity, 1));
}

.border-green-800\/0 {
  border-color: rgb(22 101 52 / 0);
}

.border-green-800\/10 {
  border-color: rgb(22 101 52 / 0.1);
}

.border-green-800\/100 {
  border-color: rgb(22 101 52 / 1);
}

.border-green-800\/15 {
  border-color: rgb(22 101 52 / 0.15);
}

.border-green-800\/20 {
  border-color: rgb(22 101 52 / 0.2);
}

.border-green-800\/25 {
  border-color: rgb(22 101 52 / 0.25);
}

.border-green-800\/30 {
  border-color: rgb(22 101 52 / 0.3);
}

.border-green-800\/35 {
  border-color: rgb(22 101 52 / 0.35);
}

.border-green-800\/40 {
  border-color: rgb(22 101 52 / 0.4);
}

.border-green-800\/45 {
  border-color: rgb(22 101 52 / 0.45);
}

.border-green-800\/5 {
  border-color: rgb(22 101 52 / 0.05);
}

.border-green-800\/50 {
  border-color: rgb(22 101 52 / 0.5);
}

.border-green-800\/55 {
  border-color: rgb(22 101 52 / 0.55);
}

.border-green-800\/60 {
  border-color: rgb(22 101 52 / 0.6);
}

.border-green-800\/65 {
  border-color: rgb(22 101 52 / 0.65);
}

.border-green-800\/70 {
  border-color: rgb(22 101 52 / 0.7);
}

.border-green-800\/75 {
  border-color: rgb(22 101 52 / 0.75);
}

.border-green-800\/80 {
  border-color: rgb(22 101 52 / 0.8);
}

.border-green-800\/85 {
  border-color: rgb(22 101 52 / 0.85);
}

.border-green-800\/90 {
  border-color: rgb(22 101 52 / 0.9);
}

.border-green-800\/95 {
  border-color: rgb(22 101 52 / 0.95);
}

.border-green-900 {
  --tw-border-opacity: 1;
  border-color: rgb(20 83 45 / var(--tw-border-opacity, 1));
}

.border-green-900\/0 {
  border-color: rgb(20 83 45 / 0);
}

.border-green-900\/10 {
  border-color: rgb(20 83 45 / 0.1);
}

.border-green-900\/100 {
  border-color: rgb(20 83 45 / 1);
}

.border-green-900\/15 {
  border-color: rgb(20 83 45 / 0.15);
}

.border-green-900\/20 {
  border-color: rgb(20 83 45 / 0.2);
}

.border-green-900\/25 {
  border-color: rgb(20 83 45 / 0.25);
}

.border-green-900\/30 {
  border-color: rgb(20 83 45 / 0.3);
}

.border-green-900\/35 {
  border-color: rgb(20 83 45 / 0.35);
}

.border-green-900\/40 {
  border-color: rgb(20 83 45 / 0.4);
}

.border-green-900\/45 {
  border-color: rgb(20 83 45 / 0.45);
}

.border-green-900\/5 {
  border-color: rgb(20 83 45 / 0.05);
}

.border-green-900\/50 {
  border-color: rgb(20 83 45 / 0.5);
}

.border-green-900\/55 {
  border-color: rgb(20 83 45 / 0.55);
}

.border-green-900\/60 {
  border-color: rgb(20 83 45 / 0.6);
}

.border-green-900\/65 {
  border-color: rgb(20 83 45 / 0.65);
}

.border-green-900\/70 {
  border-color: rgb(20 83 45 / 0.7);
}

.border-green-900\/75 {
  border-color: rgb(20 83 45 / 0.75);
}

.border-green-900\/80 {
  border-color: rgb(20 83 45 / 0.8);
}

.border-green-900\/85 {
  border-color: rgb(20 83 45 / 0.85);
}

.border-green-900\/90 {
  border-color: rgb(20 83 45 / 0.9);
}

.border-green-900\/95 {
  border-color: rgb(20 83 45 / 0.95);
}

.border-green-950 {
  --tw-border-opacity: 1;
  border-color: rgb(5 46 22 / var(--tw-border-opacity, 1));
}

.border-green-950\/0 {
  border-color: rgb(5 46 22 / 0);
}

.border-green-950\/10 {
  border-color: rgb(5 46 22 / 0.1);
}

.border-green-950\/100 {
  border-color: rgb(5 46 22 / 1);
}

.border-green-950\/15 {
  border-color: rgb(5 46 22 / 0.15);
}

.border-green-950\/20 {
  border-color: rgb(5 46 22 / 0.2);
}

.border-green-950\/25 {
  border-color: rgb(5 46 22 / 0.25);
}

.border-green-950\/30 {
  border-color: rgb(5 46 22 / 0.3);
}

.border-green-950\/35 {
  border-color: rgb(5 46 22 / 0.35);
}

.border-green-950\/40 {
  border-color: rgb(5 46 22 / 0.4);
}

.border-green-950\/45 {
  border-color: rgb(5 46 22 / 0.45);
}

.border-green-950\/5 {
  border-color: rgb(5 46 22 / 0.05);
}

.border-green-950\/50 {
  border-color: rgb(5 46 22 / 0.5);
}

.border-green-950\/55 {
  border-color: rgb(5 46 22 / 0.55);
}

.border-green-950\/60 {
  border-color: rgb(5 46 22 / 0.6);
}

.border-green-950\/65 {
  border-color: rgb(5 46 22 / 0.65);
}

.border-green-950\/70 {
  border-color: rgb(5 46 22 / 0.7);
}

.border-green-950\/75 {
  border-color: rgb(5 46 22 / 0.75);
}

.border-green-950\/80 {
  border-color: rgb(5 46 22 / 0.8);
}

.border-green-950\/85 {
  border-color: rgb(5 46 22 / 0.85);
}

.border-green-950\/90 {
  border-color: rgb(5 46 22 / 0.9);
}

.border-green-950\/95 {
  border-color: rgb(5 46 22 / 0.95);
}

.border-red-100 {
  --tw-border-opacity: 1;
  border-color: rgb(254 226 226 / var(--tw-border-opacity, 1));
}

.border-red-100\/0 {
  border-color: rgb(254 226 226 / 0);
}

.border-red-100\/10 {
  border-color: rgb(254 226 226 / 0.1);
}

.border-red-100\/100 {
  border-color: rgb(254 226 226 / 1);
}

.border-red-100\/15 {
  border-color: rgb(254 226 226 / 0.15);
}

.border-red-100\/20 {
  border-color: rgb(254 226 226 / 0.2);
}

.border-red-100\/25 {
  border-color: rgb(254 226 226 / 0.25);
}

.border-red-100\/30 {
  border-color: rgb(254 226 226 / 0.3);
}

.border-red-100\/35 {
  border-color: rgb(254 226 226 / 0.35);
}

.border-red-100\/40 {
  border-color: rgb(254 226 226 / 0.4);
}

.border-red-100\/45 {
  border-color: rgb(254 226 226 / 0.45);
}

.border-red-100\/5 {
  border-color: rgb(254 226 226 / 0.05);
}

.border-red-100\/50 {
  border-color: rgb(254 226 226 / 0.5);
}

.border-red-100\/55 {
  border-color: rgb(254 226 226 / 0.55);
}

.border-red-100\/60 {
  border-color: rgb(254 226 226 / 0.6);
}

.border-red-100\/65 {
  border-color: rgb(254 226 226 / 0.65);
}

.border-red-100\/70 {
  border-color: rgb(254 226 226 / 0.7);
}

.border-red-100\/75 {
  border-color: rgb(254 226 226 / 0.75);
}

.border-red-100\/80 {
  border-color: rgb(254 226 226 / 0.8);
}

.border-red-100\/85 {
  border-color: rgb(254 226 226 / 0.85);
}

.border-red-100\/90 {
  border-color: rgb(254 226 226 / 0.9);
}

.border-red-100\/95 {
  border-color: rgb(254 226 226 / 0.95);
}

.border-red-200 {
  --tw-border-opacity: 1;
  border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}

.border-red-200\/0 {
  border-color: rgb(254 202 202 / 0);
}

.border-red-200\/10 {
  border-color: rgb(254 202 202 / 0.1);
}

.border-red-200\/100 {
  border-color: rgb(254 202 202 / 1);
}

.border-red-200\/15 {
  border-color: rgb(254 202 202 / 0.15);
}

.border-red-200\/20 {
  border-color: rgb(254 202 202 / 0.2);
}

.border-red-200\/25 {
  border-color: rgb(254 202 202 / 0.25);
}

.border-red-200\/30 {
  border-color: rgb(254 202 202 / 0.3);
}

.border-red-200\/35 {
  border-color: rgb(254 202 202 / 0.35);
}

.border-red-200\/40 {
  border-color: rgb(254 202 202 / 0.4);
}

.border-red-200\/45 {
  border-color: rgb(254 202 202 / 0.45);
}

.border-red-200\/5 {
  border-color: rgb(254 202 202 / 0.05);
}

.border-red-200\/50 {
  border-color: rgb(254 202 202 / 0.5);
}

.border-red-200\/55 {
  border-color: rgb(254 202 202 / 0.55);
}

.border-red-200\/60 {
  border-color: rgb(254 202 202 / 0.6);
}

.border-red-200\/65 {
  border-color: rgb(254 202 202 / 0.65);
}

.border-red-200\/70 {
  border-color: rgb(254 202 202 / 0.7);
}

.border-red-200\/75 {
  border-color: rgb(254 202 202 / 0.75);
}

.border-red-200\/80 {
  border-color: rgb(254 202 202 / 0.8);
}

.border-red-200\/85 {
  border-color: rgb(254 202 202 / 0.85);
}

.border-red-200\/90 {
  border-color: rgb(254 202 202 / 0.9);
}

.border-red-200\/95 {
  border-color: rgb(254 202 202 / 0.95);
}

.border-red-300 {
  --tw-border-opacity: 1;
  border-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
}

.border-red-300\/0 {
  border-color: rgb(252 165 165 / 0);
}

.border-red-300\/10 {
  border-color: rgb(252 165 165 / 0.1);
}

.border-red-300\/100 {
  border-color: rgb(252 165 165 / 1);
}

.border-red-300\/15 {
  border-color: rgb(252 165 165 / 0.15);
}

.border-red-300\/20 {
  border-color: rgb(252 165 165 / 0.2);
}

.border-red-300\/25 {
  border-color: rgb(252 165 165 / 0.25);
}

.border-red-300\/30 {
  border-color: rgb(252 165 165 / 0.3);
}

.border-red-300\/35 {
  border-color: rgb(252 165 165 / 0.35);
}

.border-red-300\/40 {
  border-color: rgb(252 165 165 / 0.4);
}

.border-red-300\/45 {
  border-color: rgb(252 165 165 / 0.45);
}

.border-red-300\/5 {
  border-color: rgb(252 165 165 / 0.05);
}

.border-red-300\/50 {
  border-color: rgb(252 165 165 / 0.5);
}

.border-red-300\/55 {
  border-color: rgb(252 165 165 / 0.55);
}

.border-red-300\/60 {
  border-color: rgb(252 165 165 / 0.6);
}

.border-red-300\/65 {
  border-color: rgb(252 165 165 / 0.65);
}

.border-red-300\/70 {
  border-color: rgb(252 165 165 / 0.7);
}

.border-red-300\/75 {
  border-color: rgb(252 165 165 / 0.75);
}

.border-red-300\/80 {
  border-color: rgb(252 165 165 / 0.8);
}

.border-red-300\/85 {
  border-color: rgb(252 165 165 / 0.85);
}

.border-red-300\/90 {
  border-color: rgb(252 165 165 / 0.9);
}

.border-red-300\/95 {
  border-color: rgb(252 165 165 / 0.95);
}

.border-red-400 {
  --tw-border-opacity: 1;
  border-color: rgb(248 113 113 / var(--tw-border-opacity, 1));
}

.border-red-400\/0 {
  border-color: rgb(248 113 113 / 0);
}

.border-red-400\/10 {
  border-color: rgb(248 113 113 / 0.1);
}

.border-red-400\/100 {
  border-color: rgb(248 113 113 / 1);
}

.border-red-400\/15 {
  border-color: rgb(248 113 113 / 0.15);
}

.border-red-400\/20 {
  border-color: rgb(248 113 113 / 0.2);
}

.border-red-400\/25 {
  border-color: rgb(248 113 113 / 0.25);
}

.border-red-400\/30 {
  border-color: rgb(248 113 113 / 0.3);
}

.border-red-400\/35 {
  border-color: rgb(248 113 113 / 0.35);
}

.border-red-400\/40 {
  border-color: rgb(248 113 113 / 0.4);
}

.border-red-400\/45 {
  border-color: rgb(248 113 113 / 0.45);
}

.border-red-400\/5 {
  border-color: rgb(248 113 113 / 0.05);
}

.border-red-400\/50 {
  border-color: rgb(248 113 113 / 0.5);
}

.border-red-400\/55 {
  border-color: rgb(248 113 113 / 0.55);
}

.border-red-400\/60 {
  border-color: rgb(248 113 113 / 0.6);
}

.border-red-400\/65 {
  border-color: rgb(248 113 113 / 0.65);
}

.border-red-400\/70 {
  border-color: rgb(248 113 113 / 0.7);
}

.border-red-400\/75 {
  border-color: rgb(248 113 113 / 0.75);
}

.border-red-400\/80 {
  border-color: rgb(248 113 113 / 0.8);
}

.border-red-400\/85 {
  border-color: rgb(248 113 113 / 0.85);
}

.border-red-400\/90 {
  border-color: rgb(248 113 113 / 0.9);
}

.border-red-400\/95 {
  border-color: rgb(248 113 113 / 0.95);
}

.border-red-50 {
  --tw-border-opacity: 1;
  border-color: rgb(254 242 242 / var(--tw-border-opacity, 1));
}

.border-red-50\/0 {
  border-color: rgb(254 242 242 / 0);
}

.border-red-50\/10 {
  border-color: rgb(254 242 242 / 0.1);
}

.border-red-50\/100 {
  border-color: rgb(254 242 242 / 1);
}

.border-red-50\/15 {
  border-color: rgb(254 242 242 / 0.15);
}

.border-red-50\/20 {
  border-color: rgb(254 242 242 / 0.2);
}

.border-red-50\/25 {
  border-color: rgb(254 242 242 / 0.25);
}

.border-red-50\/30 {
  border-color: rgb(254 242 242 / 0.3);
}

.border-red-50\/35 {
  border-color: rgb(254 242 242 / 0.35);
}

.border-red-50\/40 {
  border-color: rgb(254 242 242 / 0.4);
}

.border-red-50\/45 {
  border-color: rgb(254 242 242 / 0.45);
}

.border-red-50\/5 {
  border-color: rgb(254 242 242 / 0.05);
}

.border-red-50\/50 {
  border-color: rgb(254 242 242 / 0.5);
}

.border-red-50\/55 {
  border-color: rgb(254 242 242 / 0.55);
}

.border-red-50\/60 {
  border-color: rgb(254 242 242 / 0.6);
}

.border-red-50\/65 {
  border-color: rgb(254 242 242 / 0.65);
}

.border-red-50\/70 {
  border-color: rgb(254 242 242 / 0.7);
}

.border-red-50\/75 {
  border-color: rgb(254 242 242 / 0.75);
}

.border-red-50\/80 {
  border-color: rgb(254 242 242 / 0.8);
}

.border-red-50\/85 {
  border-color: rgb(254 242 242 / 0.85);
}

.border-red-50\/90 {
  border-color: rgb(254 242 242 / 0.9);
}

.border-red-50\/95 {
  border-color: rgb(254 242 242 / 0.95);
}

.border-red-500 {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}

.border-red-500\/0 {
  border-color: rgb(239 68 68 / 0);
}

.border-red-500\/10 {
  border-color: rgb(239 68 68 / 0.1);
}

.border-red-500\/100 {
  border-color: rgb(239 68 68 / 1);
}

.border-red-500\/15 {
  border-color: rgb(239 68 68 / 0.15);
}

.border-red-500\/20 {
  border-color: rgb(239 68 68 / 0.2);
}

.border-red-500\/25 {
  border-color: rgb(239 68 68 / 0.25);
}

.border-red-500\/30 {
  border-color: rgb(239 68 68 / 0.3);
}

.border-red-500\/35 {
  border-color: rgb(239 68 68 / 0.35);
}

.border-red-500\/40 {
  border-color: rgb(239 68 68 / 0.4);
}

.border-red-500\/45 {
  border-color: rgb(239 68 68 / 0.45);
}

.border-red-500\/5 {
  border-color: rgb(239 68 68 / 0.05);
}

.border-red-500\/50 {
  border-color: rgb(239 68 68 / 0.5);
}

.border-red-500\/55 {
  border-color: rgb(239 68 68 / 0.55);
}

.border-red-500\/60 {
  border-color: rgb(239 68 68 / 0.6);
}

.border-red-500\/65 {
  border-color: rgb(239 68 68 / 0.65);
}

.border-red-500\/70 {
  border-color: rgb(239 68 68 / 0.7);
}

.border-red-500\/75 {
  border-color: rgb(239 68 68 / 0.75);
}

.border-red-500\/80 {
  border-color: rgb(239 68 68 / 0.8);
}

.border-red-500\/85 {
  border-color: rgb(239 68 68 / 0.85);
}

.border-red-500\/90 {
  border-color: rgb(239 68 68 / 0.9);
}

.border-red-500\/95 {
  border-color: rgb(239 68 68 / 0.95);
}

.border-red-600 {
  --tw-border-opacity: 1;
  border-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
}

.border-red-600\/0 {
  border-color: rgb(220 38 38 / 0);
}

.border-red-600\/10 {
  border-color: rgb(220 38 38 / 0.1);
}

.border-red-600\/100 {
  border-color: rgb(220 38 38 / 1);
}

.border-red-600\/15 {
  border-color: rgb(220 38 38 / 0.15);
}

.border-red-600\/20 {
  border-color: rgb(220 38 38 / 0.2);
}

.border-red-600\/25 {
  border-color: rgb(220 38 38 / 0.25);
}

.border-red-600\/30 {
  border-color: rgb(220 38 38 / 0.3);
}

.border-red-600\/35 {
  border-color: rgb(220 38 38 / 0.35);
}

.border-red-600\/40 {
  border-color: rgb(220 38 38 / 0.4);
}

.border-red-600\/45 {
  border-color: rgb(220 38 38 / 0.45);
}

.border-red-600\/5 {
  border-color: rgb(220 38 38 / 0.05);
}

.border-red-600\/50 {
  border-color: rgb(220 38 38 / 0.5);
}

.border-red-600\/55 {
  border-color: rgb(220 38 38 / 0.55);
}

.border-red-600\/60 {
  border-color: rgb(220 38 38 / 0.6);
}

.border-red-600\/65 {
  border-color: rgb(220 38 38 / 0.65);
}

.border-red-600\/70 {
  border-color: rgb(220 38 38 / 0.7);
}

.border-red-600\/75 {
  border-color: rgb(220 38 38 / 0.75);
}

.border-red-600\/80 {
  border-color: rgb(220 38 38 / 0.8);
}

.border-red-600\/85 {
  border-color: rgb(220 38 38 / 0.85);
}

.border-red-600\/90 {
  border-color: rgb(220 38 38 / 0.9);
}

.border-red-600\/95 {
  border-color: rgb(220 38 38 / 0.95);
}

.border-red-700 {
  --tw-border-opacity: 1;
  border-color: rgb(185 28 28 / var(--tw-border-opacity, 1));
}

.border-red-700\/0 {
  border-color: rgb(185 28 28 / 0);
}

.border-red-700\/10 {
  border-color: rgb(185 28 28 / 0.1);
}

.border-red-700\/100 {
  border-color: rgb(185 28 28 / 1);
}

.border-red-700\/15 {
  border-color: rgb(185 28 28 / 0.15);
}

.border-red-700\/20 {
  border-color: rgb(185 28 28 / 0.2);
}

.border-red-700\/25 {
  border-color: rgb(185 28 28 / 0.25);
}

.border-red-700\/30 {
  border-color: rgb(185 28 28 / 0.3);
}

.border-red-700\/35 {
  border-color: rgb(185 28 28 / 0.35);
}

.border-red-700\/40 {
  border-color: rgb(185 28 28 / 0.4);
}

.border-red-700\/45 {
  border-color: rgb(185 28 28 / 0.45);
}

.border-red-700\/5 {
  border-color: rgb(185 28 28 / 0.05);
}

.border-red-700\/50 {
  border-color: rgb(185 28 28 / 0.5);
}

.border-red-700\/55 {
  border-color: rgb(185 28 28 / 0.55);
}

.border-red-700\/60 {
  border-color: rgb(185 28 28 / 0.6);
}

.border-red-700\/65 {
  border-color: rgb(185 28 28 / 0.65);
}

.border-red-700\/70 {
  border-color: rgb(185 28 28 / 0.7);
}

.border-red-700\/75 {
  border-color: rgb(185 28 28 / 0.75);
}

.border-red-700\/80 {
  border-color: rgb(185 28 28 / 0.8);
}

.border-red-700\/85 {
  border-color: rgb(185 28 28 / 0.85);
}

.border-red-700\/90 {
  border-color: rgb(185 28 28 / 0.9);
}

.border-red-700\/95 {
  border-color: rgb(185 28 28 / 0.95);
}

.border-red-800 {
  --tw-border-opacity: 1;
  border-color: rgb(153 27 27 / var(--tw-border-opacity, 1));
}

.border-red-800\/0 {
  border-color: rgb(153 27 27 / 0);
}

.border-red-800\/10 {
  border-color: rgb(153 27 27 / 0.1);
}

.border-red-800\/100 {
  border-color: rgb(153 27 27 / 1);
}

.border-red-800\/15 {
  border-color: rgb(153 27 27 / 0.15);
}

.border-red-800\/20 {
  border-color: rgb(153 27 27 / 0.2);
}

.border-red-800\/25 {
  border-color: rgb(153 27 27 / 0.25);
}

.border-red-800\/30 {
  border-color: rgb(153 27 27 / 0.3);
}

.border-red-800\/35 {
  border-color: rgb(153 27 27 / 0.35);
}

.border-red-800\/40 {
  border-color: rgb(153 27 27 / 0.4);
}

.border-red-800\/45 {
  border-color: rgb(153 27 27 / 0.45);
}

.border-red-800\/5 {
  border-color: rgb(153 27 27 / 0.05);
}

.border-red-800\/50 {
  border-color: rgb(153 27 27 / 0.5);
}

.border-red-800\/55 {
  border-color: rgb(153 27 27 / 0.55);
}

.border-red-800\/60 {
  border-color: rgb(153 27 27 / 0.6);
}

.border-red-800\/65 {
  border-color: rgb(153 27 27 / 0.65);
}

.border-red-800\/70 {
  border-color: rgb(153 27 27 / 0.7);
}

.border-red-800\/75 {
  border-color: rgb(153 27 27 / 0.75);
}

.border-red-800\/80 {
  border-color: rgb(153 27 27 / 0.8);
}

.border-red-800\/85 {
  border-color: rgb(153 27 27 / 0.85);
}

.border-red-800\/90 {
  border-color: rgb(153 27 27 / 0.9);
}

.border-red-800\/95 {
  border-color: rgb(153 27 27 / 0.95);
}

.border-red-900 {
  --tw-border-opacity: 1;
  border-color: rgb(127 29 29 / var(--tw-border-opacity, 1));
}

.border-red-900\/0 {
  border-color: rgb(127 29 29 / 0);
}

.border-red-900\/10 {
  border-color: rgb(127 29 29 / 0.1);
}

.border-red-900\/100 {
  border-color: rgb(127 29 29 / 1);
}

.border-red-900\/15 {
  border-color: rgb(127 29 29 / 0.15);
}

.border-red-900\/20 {
  border-color: rgb(127 29 29 / 0.2);
}

.border-red-900\/25 {
  border-color: rgb(127 29 29 / 0.25);
}

.border-red-900\/30 {
  border-color: rgb(127 29 29 / 0.3);
}

.border-red-900\/35 {
  border-color: rgb(127 29 29 / 0.35);
}

.border-red-900\/40 {
  border-color: rgb(127 29 29 / 0.4);
}

.border-red-900\/45 {
  border-color: rgb(127 29 29 / 0.45);
}

.border-red-900\/5 {
  border-color: rgb(127 29 29 / 0.05);
}

.border-red-900\/50 {
  border-color: rgb(127 29 29 / 0.5);
}

.border-red-900\/55 {
  border-color: rgb(127 29 29 / 0.55);
}

.border-red-900\/60 {
  border-color: rgb(127 29 29 / 0.6);
}

.border-red-900\/65 {
  border-color: rgb(127 29 29 / 0.65);
}

.border-red-900\/70 {
  border-color: rgb(127 29 29 / 0.7);
}

.border-red-900\/75 {
  border-color: rgb(127 29 29 / 0.75);
}

.border-red-900\/80 {
  border-color: rgb(127 29 29 / 0.8);
}

.border-red-900\/85 {
  border-color: rgb(127 29 29 / 0.85);
}

.border-red-900\/90 {
  border-color: rgb(127 29 29 / 0.9);
}

.border-red-900\/95 {
  border-color: rgb(127 29 29 / 0.95);
}

.border-red-950 {
  --tw-border-opacity: 1;
  border-color: rgb(69 10 10 / var(--tw-border-opacity, 1));
}

.border-red-950\/0 {
  border-color: rgb(69 10 10 / 0);
}

.border-red-950\/10 {
  border-color: rgb(69 10 10 / 0.1);
}

.border-red-950\/100 {
  border-color: rgb(69 10 10 / 1);
}

.border-red-950\/15 {
  border-color: rgb(69 10 10 / 0.15);
}

.border-red-950\/20 {
  border-color: rgb(69 10 10 / 0.2);
}

.border-red-950\/25 {
  border-color: rgb(69 10 10 / 0.25);
}

.border-red-950\/30 {
  border-color: rgb(69 10 10 / 0.3);
}

.border-red-950\/35 {
  border-color: rgb(69 10 10 / 0.35);
}

.border-red-950\/40 {
  border-color: rgb(69 10 10 / 0.4);
}

.border-red-950\/45 {
  border-color: rgb(69 10 10 / 0.45);
}

.border-red-950\/5 {
  border-color: rgb(69 10 10 / 0.05);
}

.border-red-950\/50 {
  border-color: rgb(69 10 10 / 0.5);
}

.border-red-950\/55 {
  border-color: rgb(69 10 10 / 0.55);
}

.border-red-950\/60 {
  border-color: rgb(69 10 10 / 0.6);
}

.border-red-950\/65 {
  border-color: rgb(69 10 10 / 0.65);
}

.border-red-950\/70 {
  border-color: rgb(69 10 10 / 0.7);
}

.border-red-950\/75 {
  border-color: rgb(69 10 10 / 0.75);
}

.border-red-950\/80 {
  border-color: rgb(69 10 10 / 0.8);
}

.border-red-950\/85 {
  border-color: rgb(69 10 10 / 0.85);
}

.border-red-950\/90 {
  border-color: rgb(69 10 10 / 0.9);
}

.border-red-950\/95 {
  border-color: rgb(69 10 10 / 0.95);
}

.border-transparent {
  border-color: transparent;
}

.border-transparent\/0 {
  border-color: rgb(0 0 0 / 0);
}

.border-transparent\/10 {
  border-color: rgb(0 0 0 / 0.1);
}

.border-transparent\/100 {
  border-color: rgb(0 0 0 / 1);
}

.border-transparent\/15 {
  border-color: rgb(0 0 0 / 0.15);
}

.border-transparent\/20 {
  border-color: rgb(0 0 0 / 0.2);
}

.border-transparent\/25 {
  border-color: rgb(0 0 0 / 0.25);
}

.border-transparent\/30 {
  border-color: rgb(0 0 0 / 0.3);
}

.border-transparent\/35 {
  border-color: rgb(0 0 0 / 0.35);
}

.border-transparent\/40 {
  border-color: rgb(0 0 0 / 0.4);
}

.border-transparent\/45 {
  border-color: rgb(0 0 0 / 0.45);
}

.border-transparent\/5 {
  border-color: rgb(0 0 0 / 0.05);
}

.border-transparent\/50 {
  border-color: rgb(0 0 0 / 0.5);
}

.border-transparent\/55 {
  border-color: rgb(0 0 0 / 0.55);
}

.border-transparent\/60 {
  border-color: rgb(0 0 0 / 0.6);
}

.border-transparent\/65 {
  border-color: rgb(0 0 0 / 0.65);
}

.border-transparent\/70 {
  border-color: rgb(0 0 0 / 0.7);
}

.border-transparent\/75 {
  border-color: rgb(0 0 0 / 0.75);
}

.border-transparent\/80 {
  border-color: rgb(0 0 0 / 0.8);
}

.border-transparent\/85 {
  border-color: rgb(0 0 0 / 0.85);
}

.border-transparent\/90 {
  border-color: rgb(0 0 0 / 0.9);
}

.border-transparent\/95 {
  border-color: rgb(0 0 0 / 0.95);
}

.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}

.border-white\/0 {
  border-color: rgb(255 255 255 / 0);
}

.border-white\/10 {
  border-color: rgb(255 255 255 / 0.1);
}

.border-white\/100 {
  border-color: rgb(255 255 255 / 1);
}

.border-white\/15 {
  border-color: rgb(255 255 255 / 0.15);
}

.border-white\/20 {
  border-color: rgb(255 255 255 / 0.2);
}

.border-white\/25 {
  border-color: rgb(255 255 255 / 0.25);
}

.border-white\/30 {
  border-color: rgb(255 255 255 / 0.3);
}

.border-white\/35 {
  border-color: rgb(255 255 255 / 0.35);
}

.border-white\/40 {
  border-color: rgb(255 255 255 / 0.4);
}

.border-white\/45 {
  border-color: rgb(255 255 255 / 0.45);
}

.border-white\/5 {
  border-color: rgb(255 255 255 / 0.05);
}

.border-white\/50 {
  border-color: rgb(255 255 255 / 0.5);
}

.border-white\/55 {
  border-color: rgb(255 255 255 / 0.55);
}

.border-white\/60 {
  border-color: rgb(255 255 255 / 0.6);
}

.border-white\/65 {
  border-color: rgb(255 255 255 / 0.65);
}

.border-white\/70 {
  border-color: rgb(255 255 255 / 0.7);
}

.border-white\/75 {
  border-color: rgb(255 255 255 / 0.75);
}

.border-white\/80 {
  border-color: rgb(255 255 255 / 0.8);
}

.border-white\/85 {
  border-color: rgb(255 255 255 / 0.85);
}

.border-white\/90 {
  border-color: rgb(255 255 255 / 0.9);
}

.border-white\/95 {
  border-color: rgb(255 255 255 / 0.95);
}

.border-x-black {
  --tw-border-opacity: 1;
  border-left-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
  border-right-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
}

.border-x-black\/0 {
  border-left-color: rgb(0 0 0 / 0);
  border-right-color: rgb(0 0 0 / 0);
}

.border-x-black\/10 {
  border-left-color: rgb(0 0 0 / 0.1);
  border-right-color: rgb(0 0 0 / 0.1);
}

.border-x-black\/100 {
  border-left-color: rgb(0 0 0 / 1);
  border-right-color: rgb(0 0 0 / 1);
}

.border-x-black\/15 {
  border-left-color: rgb(0 0 0 / 0.15);
  border-right-color: rgb(0 0 0 / 0.15);
}

.border-x-black\/20 {
  border-left-color: rgb(0 0 0 / 0.2);
  border-right-color: rgb(0 0 0 / 0.2);
}

.border-x-black\/25 {
  border-left-color: rgb(0 0 0 / 0.25);
  border-right-color: rgb(0 0 0 / 0.25);
}

.border-x-black\/30 {
  border-left-color: rgb(0 0 0 / 0.3);
  border-right-color: rgb(0 0 0 / 0.3);
}

.border-x-black\/35 {
  border-left-color: rgb(0 0 0 / 0.35);
  border-right-color: rgb(0 0 0 / 0.35);
}

.border-x-black\/40 {
  border-left-color: rgb(0 0 0 / 0.4);
  border-right-color: rgb(0 0 0 / 0.4);
}

.border-x-black\/45 {
  border-left-color: rgb(0 0 0 / 0.45);
  border-right-color: rgb(0 0 0 / 0.45);
}

.border-x-black\/5 {
  border-left-color: rgb(0 0 0 / 0.05);
  border-right-color: rgb(0 0 0 / 0.05);
}

.border-x-black\/50 {
  border-left-color: rgb(0 0 0 / 0.5);
  border-right-color: rgb(0 0 0 / 0.5);
}

.border-x-black\/55 {
  border-left-color: rgb(0 0 0 / 0.55);
  border-right-color: rgb(0 0 0 / 0.55);
}

.border-x-black\/60 {
  border-left-color: rgb(0 0 0 / 0.6);
  border-right-color: rgb(0 0 0 / 0.6);
}

.border-x-black\/65 {
  border-left-color: rgb(0 0 0 / 0.65);
  border-right-color: rgb(0 0 0 / 0.65);
}

.border-x-black\/70 {
  border-left-color: rgb(0 0 0 / 0.7);
  border-right-color: rgb(0 0 0 / 0.7);
}

.border-x-black\/75 {
  border-left-color: rgb(0 0 0 / 0.75);
  border-right-color: rgb(0 0 0 / 0.75);
}

.border-x-black\/80 {
  border-left-color: rgb(0 0 0 / 0.8);
  border-right-color: rgb(0 0 0 / 0.8);
}

.border-x-black\/85 {
  border-left-color: rgb(0 0 0 / 0.85);
  border-right-color: rgb(0 0 0 / 0.85);
}

.border-x-black\/90 {
  border-left-color: rgb(0 0 0 / 0.9);
  border-right-color: rgb(0 0 0 / 0.9);
}

.border-x-black\/95 {
  border-left-color: rgb(0 0 0 / 0.95);
  border-right-color: rgb(0 0 0 / 0.95);
}

.border-x-blue-100 {
  --tw-border-opacity: 1;
  border-left-color: rgb(219 234 254 / var(--tw-border-opacity, 1));
  border-right-color: rgb(219 234 254 / var(--tw-border-opacity, 1));
}

.border-x-blue-100\/0 {
  border-left-color: rgb(219 234 254 / 0);
  border-right-color: rgb(219 234 254 / 0);
}

.border-x-blue-100\/10 {
  border-left-color: rgb(219 234 254 / 0.1);
  border-right-color: rgb(219 234 254 / 0.1);
}

.border-x-blue-100\/100 {
  border-left-color: rgb(219 234 254 / 1);
  border-right-color: rgb(219 234 254 / 1);
}

.border-x-blue-100\/15 {
  border-left-color: rgb(219 234 254 / 0.15);
  border-right-color: rgb(219 234 254 / 0.15);
}

.border-x-blue-100\/20 {
  border-left-color: rgb(219 234 254 / 0.2);
  border-right-color: rgb(219 234 254 / 0.2);
}

.border-x-blue-100\/25 {
  border-left-color: rgb(219 234 254 / 0.25);
  border-right-color: rgb(219 234 254 / 0.25);
}

.border-x-blue-100\/30 {
  border-left-color: rgb(219 234 254 / 0.3);
  border-right-color: rgb(219 234 254 / 0.3);
}

.border-x-blue-100\/35 {
  border-left-color: rgb(219 234 254 / 0.35);
  border-right-color: rgb(219 234 254 / 0.35);
}

.border-x-blue-100\/40 {
  border-left-color: rgb(219 234 254 / 0.4);
  border-right-color: rgb(219 234 254 / 0.4);
}

.border-x-blue-100\/45 {
  border-left-color: rgb(219 234 254 / 0.45);
  border-right-color: rgb(219 234 254 / 0.45);
}

.border-x-blue-100\/5 {
  border-left-color: rgb(219 234 254 / 0.05);
  border-right-color: rgb(219 234 254 / 0.05);
}

.border-x-blue-100\/50 {
  border-left-color: rgb(219 234 254 / 0.5);
  border-right-color: rgb(219 234 254 / 0.5);
}

.border-x-blue-100\/55 {
  border-left-color: rgb(219 234 254 / 0.55);
  border-right-color: rgb(219 234 254 / 0.55);
}

.border-x-blue-100\/60 {
  border-left-color: rgb(219 234 254 / 0.6);
  border-right-color: rgb(219 234 254 / 0.6);
}

.border-x-blue-100\/65 {
  border-left-color: rgb(219 234 254 / 0.65);
  border-right-color: rgb(219 234 254 / 0.65);
}

.border-x-blue-100\/70 {
  border-left-color: rgb(219 234 254 / 0.7);
  border-right-color: rgb(219 234 254 / 0.7);
}

.border-x-blue-100\/75 {
  border-left-color: rgb(219 234 254 / 0.75);
  border-right-color: rgb(219 234 254 / 0.75);
}

.border-x-blue-100\/80 {
  border-left-color: rgb(219 234 254 / 0.8);
  border-right-color: rgb(219 234 254 / 0.8);
}

.border-x-blue-100\/85 {
  border-left-color: rgb(219 234 254 / 0.85);
  border-right-color: rgb(219 234 254 / 0.85);
}

.border-x-blue-100\/90 {
  border-left-color: rgb(219 234 254 / 0.9);
  border-right-color: rgb(219 234 254 / 0.9);
}

.border-x-blue-100\/95 {
  border-left-color: rgb(219 234 254 / 0.95);
  border-right-color: rgb(219 234 254 / 0.95);
}

.border-x-blue-200 {
  --tw-border-opacity: 1;
  border-left-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
  border-right-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
}

.border-x-blue-200\/0 {
  border-left-color: rgb(191 219 254 / 0);
  border-right-color: rgb(191 219 254 / 0);
}

.border-x-blue-200\/10 {
  border-left-color: rgb(191 219 254 / 0.1);
  border-right-color: rgb(191 219 254 / 0.1);
}

.border-x-blue-200\/100 {
  border-left-color: rgb(191 219 254 / 1);
  border-right-color: rgb(191 219 254 / 1);
}

.border-x-blue-200\/15 {
  border-left-color: rgb(191 219 254 / 0.15);
  border-right-color: rgb(191 219 254 / 0.15);
}

.border-x-blue-200\/20 {
  border-left-color: rgb(191 219 254 / 0.2);
  border-right-color: rgb(191 219 254 / 0.2);
}

.border-x-blue-200\/25 {
  border-left-color: rgb(191 219 254 / 0.25);
  border-right-color: rgb(191 219 254 / 0.25);
}

.border-x-blue-200\/30 {
  border-left-color: rgb(191 219 254 / 0.3);
  border-right-color: rgb(191 219 254 / 0.3);
}

.border-x-blue-200\/35 {
  border-left-color: rgb(191 219 254 / 0.35);
  border-right-color: rgb(191 219 254 / 0.35);
}

.border-x-blue-200\/40 {
  border-left-color: rgb(191 219 254 / 0.4);
  border-right-color: rgb(191 219 254 / 0.4);
}

.border-x-blue-200\/45 {
  border-left-color: rgb(191 219 254 / 0.45);
  border-right-color: rgb(191 219 254 / 0.45);
}

.border-x-blue-200\/5 {
  border-left-color: rgb(191 219 254 / 0.05);
  border-right-color: rgb(191 219 254 / 0.05);
}

.border-x-blue-200\/50 {
  border-left-color: rgb(191 219 254 / 0.5);
  border-right-color: rgb(191 219 254 / 0.5);
}

.border-x-blue-200\/55 {
  border-left-color: rgb(191 219 254 / 0.55);
  border-right-color: rgb(191 219 254 / 0.55);
}

.border-x-blue-200\/60 {
  border-left-color: rgb(191 219 254 / 0.6);
  border-right-color: rgb(191 219 254 / 0.6);
}

.border-x-blue-200\/65 {
  border-left-color: rgb(191 219 254 / 0.65);
  border-right-color: rgb(191 219 254 / 0.65);
}

.border-x-blue-200\/70 {
  border-left-color: rgb(191 219 254 / 0.7);
  border-right-color: rgb(191 219 254 / 0.7);
}

.border-x-blue-200\/75 {
  border-left-color: rgb(191 219 254 / 0.75);
  border-right-color: rgb(191 219 254 / 0.75);
}

.border-x-blue-200\/80 {
  border-left-color: rgb(191 219 254 / 0.8);
  border-right-color: rgb(191 219 254 / 0.8);
}

.border-x-blue-200\/85 {
  border-left-color: rgb(191 219 254 / 0.85);
  border-right-color: rgb(191 219 254 / 0.85);
}

.border-x-blue-200\/90 {
  border-left-color: rgb(191 219 254 / 0.9);
  border-right-color: rgb(191 219 254 / 0.9);
}

.border-x-blue-200\/95 {
  border-left-color: rgb(191 219 254 / 0.95);
  border-right-color: rgb(191 219 254 / 0.95);
}

.border-x-blue-300 {
  --tw-border-opacity: 1;
  border-left-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
  border-right-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
}

.border-x-blue-300\/0 {
  border-left-color: rgb(147 197 253 / 0);
  border-right-color: rgb(147 197 253 / 0);
}

.border-x-blue-300\/10 {
  border-left-color: rgb(147 197 253 / 0.1);
  border-right-color: rgb(147 197 253 / 0.1);
}

.border-x-blue-300\/100 {
  border-left-color: rgb(147 197 253 / 1);
  border-right-color: rgb(147 197 253 / 1);
}

.border-x-blue-300\/15 {
  border-left-color: rgb(147 197 253 / 0.15);
  border-right-color: rgb(147 197 253 / 0.15);
}

.border-x-blue-300\/20 {
  border-left-color: rgb(147 197 253 / 0.2);
  border-right-color: rgb(147 197 253 / 0.2);
}

.border-x-blue-300\/25 {
  border-left-color: rgb(147 197 253 / 0.25);
  border-right-color: rgb(147 197 253 / 0.25);
}

.border-x-blue-300\/30 {
  border-left-color: rgb(147 197 253 / 0.3);
  border-right-color: rgb(147 197 253 / 0.3);
}

.border-x-blue-300\/35 {
  border-left-color: rgb(147 197 253 / 0.35);
  border-right-color: rgb(147 197 253 / 0.35);
}

.border-x-blue-300\/40 {
  border-left-color: rgb(147 197 253 / 0.4);
  border-right-color: rgb(147 197 253 / 0.4);
}

.border-x-blue-300\/45 {
  border-left-color: rgb(147 197 253 / 0.45);
  border-right-color: rgb(147 197 253 / 0.45);
}

.border-x-blue-300\/5 {
  border-left-color: rgb(147 197 253 / 0.05);
  border-right-color: rgb(147 197 253 / 0.05);
}

.border-x-blue-300\/50 {
  border-left-color: rgb(147 197 253 / 0.5);
  border-right-color: rgb(147 197 253 / 0.5);
}

.border-x-blue-300\/55 {
  border-left-color: rgb(147 197 253 / 0.55);
  border-right-color: rgb(147 197 253 / 0.55);
}

.border-x-blue-300\/60 {
  border-left-color: rgb(147 197 253 / 0.6);
  border-right-color: rgb(147 197 253 / 0.6);
}

.border-x-blue-300\/65 {
  border-left-color: rgb(147 197 253 / 0.65);
  border-right-color: rgb(147 197 253 / 0.65);
}

.border-x-blue-300\/70 {
  border-left-color: rgb(147 197 253 / 0.7);
  border-right-color: rgb(147 197 253 / 0.7);
}

.border-x-blue-300\/75 {
  border-left-color: rgb(147 197 253 / 0.75);
  border-right-color: rgb(147 197 253 / 0.75);
}

.border-x-blue-300\/80 {
  border-left-color: rgb(147 197 253 / 0.8);
  border-right-color: rgb(147 197 253 / 0.8);
}

.border-x-blue-300\/85 {
  border-left-color: rgb(147 197 253 / 0.85);
  border-right-color: rgb(147 197 253 / 0.85);
}

.border-x-blue-300\/90 {
  border-left-color: rgb(147 197 253 / 0.9);
  border-right-color: rgb(147 197 253 / 0.9);
}

.border-x-blue-300\/95 {
  border-left-color: rgb(147 197 253 / 0.95);
  border-right-color: rgb(147 197 253 / 0.95);
}

.border-x-blue-400 {
  --tw-border-opacity: 1;
  border-left-color: rgb(96 165 250 / var(--tw-border-opacity, 1));
  border-right-color: rgb(96 165 250 / var(--tw-border-opacity, 1));
}

.border-x-blue-400\/0 {
  border-left-color: rgb(96 165 250 / 0);
  border-right-color: rgb(96 165 250 / 0);
}

.border-x-blue-400\/10 {
  border-left-color: rgb(96 165 250 / 0.1);
  border-right-color: rgb(96 165 250 / 0.1);
}

.border-x-blue-400\/100 {
  border-left-color: rgb(96 165 250 / 1);
  border-right-color: rgb(96 165 250 / 1);
}

.border-x-blue-400\/15 {
  border-left-color: rgb(96 165 250 / 0.15);
  border-right-color: rgb(96 165 250 / 0.15);
}

.border-x-blue-400\/20 {
  border-left-color: rgb(96 165 250 / 0.2);
  border-right-color: rgb(96 165 250 / 0.2);
}

.border-x-blue-400\/25 {
  border-left-color: rgb(96 165 250 / 0.25);
  border-right-color: rgb(96 165 250 / 0.25);
}

.border-x-blue-400\/30 {
  border-left-color: rgb(96 165 250 / 0.3);
  border-right-color: rgb(96 165 250 / 0.3);
}

.border-x-blue-400\/35 {
  border-left-color: rgb(96 165 250 / 0.35);
  border-right-color: rgb(96 165 250 / 0.35);
}

.border-x-blue-400\/40 {
  border-left-color: rgb(96 165 250 / 0.4);
  border-right-color: rgb(96 165 250 / 0.4);
}

.border-x-blue-400\/45 {
  border-left-color: rgb(96 165 250 / 0.45);
  border-right-color: rgb(96 165 250 / 0.45);
}

.border-x-blue-400\/5 {
  border-left-color: rgb(96 165 250 / 0.05);
  border-right-color: rgb(96 165 250 / 0.05);
}

.border-x-blue-400\/50 {
  border-left-color: rgb(96 165 250 / 0.5);
  border-right-color: rgb(96 165 250 / 0.5);
}

.border-x-blue-400\/55 {
  border-left-color: rgb(96 165 250 / 0.55);
  border-right-color: rgb(96 165 250 / 0.55);
}

.border-x-blue-400\/60 {
  border-left-color: rgb(96 165 250 / 0.6);
  border-right-color: rgb(96 165 250 / 0.6);
}

.border-x-blue-400\/65 {
  border-left-color: rgb(96 165 250 / 0.65);
  border-right-color: rgb(96 165 250 / 0.65);
}

.border-x-blue-400\/70 {
  border-left-color: rgb(96 165 250 / 0.7);
  border-right-color: rgb(96 165 250 / 0.7);
}

.border-x-blue-400\/75 {
  border-left-color: rgb(96 165 250 / 0.75);
  border-right-color: rgb(96 165 250 / 0.75);
}

.border-x-blue-400\/80 {
  border-left-color: rgb(96 165 250 / 0.8);
  border-right-color: rgb(96 165 250 / 0.8);
}

.border-x-blue-400\/85 {
  border-left-color: rgb(96 165 250 / 0.85);
  border-right-color: rgb(96 165 250 / 0.85);
}

.border-x-blue-400\/90 {
  border-left-color: rgb(96 165 250 / 0.9);
  border-right-color: rgb(96 165 250 / 0.9);
}

.border-x-blue-400\/95 {
  border-left-color: rgb(96 165 250 / 0.95);
  border-right-color: rgb(96 165 250 / 0.95);
}

.border-x-blue-50 {
  --tw-border-opacity: 1;
  border-left-color: rgb(239 246 255 / var(--tw-border-opacity, 1));
  border-right-color: rgb(239 246 255 / var(--tw-border-opacity, 1));
}

.border-x-blue-50\/0 {
  border-left-color: rgb(239 246 255 / 0);
  border-right-color: rgb(239 246 255 / 0);
}

.border-x-blue-50\/10 {
  border-left-color: rgb(239 246 255 / 0.1);
  border-right-color: rgb(239 246 255 / 0.1);
}

.border-x-blue-50\/100 {
  border-left-color: rgb(239 246 255 / 1);
  border-right-color: rgb(239 246 255 / 1);
}

.border-x-blue-50\/15 {
  border-left-color: rgb(239 246 255 / 0.15);
  border-right-color: rgb(239 246 255 / 0.15);
}

.border-x-blue-50\/20 {
  border-left-color: rgb(239 246 255 / 0.2);
  border-right-color: rgb(239 246 255 / 0.2);
}

.border-x-blue-50\/25 {
  border-left-color: rgb(239 246 255 / 0.25);
  border-right-color: rgb(239 246 255 / 0.25);
}

.border-x-blue-50\/30 {
  border-left-color: rgb(239 246 255 / 0.3);
  border-right-color: rgb(239 246 255 / 0.3);
}

.border-x-blue-50\/35 {
  border-left-color: rgb(239 246 255 / 0.35);
  border-right-color: rgb(239 246 255 / 0.35);
}

.border-x-blue-50\/40 {
  border-left-color: rgb(239 246 255 / 0.4);
  border-right-color: rgb(239 246 255 / 0.4);
}

.border-x-blue-50\/45 {
  border-left-color: rgb(239 246 255 / 0.45);
  border-right-color: rgb(239 246 255 / 0.45);
}

.border-x-blue-50\/5 {
  border-left-color: rgb(239 246 255 / 0.05);
  border-right-color: rgb(239 246 255 / 0.05);
}

.border-x-blue-50\/50 {
  border-left-color: rgb(239 246 255 / 0.5);
  border-right-color: rgb(239 246 255 / 0.5);
}

.border-x-blue-50\/55 {
  border-left-color: rgb(239 246 255 / 0.55);
  border-right-color: rgb(239 246 255 / 0.55);
}

.border-x-blue-50\/60 {
  border-left-color: rgb(239 246 255 / 0.6);
  border-right-color: rgb(239 246 255 / 0.6);
}

.border-x-blue-50\/65 {
  border-left-color: rgb(239 246 255 / 0.65);
  border-right-color: rgb(239 246 255 / 0.65);
}

.border-x-blue-50\/70 {
  border-left-color: rgb(239 246 255 / 0.7);
  border-right-color: rgb(239 246 255 / 0.7);
}

.border-x-blue-50\/75 {
  border-left-color: rgb(239 246 255 / 0.75);
  border-right-color: rgb(239 246 255 / 0.75);
}

.border-x-blue-50\/80 {
  border-left-color: rgb(239 246 255 / 0.8);
  border-right-color: rgb(239 246 255 / 0.8);
}

.border-x-blue-50\/85 {
  border-left-color: rgb(239 246 255 / 0.85);
  border-right-color: rgb(239 246 255 / 0.85);
}

.border-x-blue-50\/90 {
  border-left-color: rgb(239 246 255 / 0.9);
  border-right-color: rgb(239 246 255 / 0.9);
}

.border-x-blue-50\/95 {
  border-left-color: rgb(239 246 255 / 0.95);
  border-right-color: rgb(239 246 255 / 0.95);
}

.border-x-blue-500 {
  --tw-border-opacity: 1;
  border-left-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
  border-right-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}

.border-x-blue-500\/0 {
  border-left-color: rgb(59 130 246 / 0);
  border-right-color: rgb(59 130 246 / 0);
}

.border-x-blue-500\/10 {
  border-left-color: rgb(59 130 246 / 0.1);
  border-right-color: rgb(59 130 246 / 0.1);
}

.border-x-blue-500\/100 {
  border-left-color: rgb(59 130 246 / 1);
  border-right-color: rgb(59 130 246 / 1);
}

.border-x-blue-500\/15 {
  border-left-color: rgb(59 130 246 / 0.15);
  border-right-color: rgb(59 130 246 / 0.15);
}

.border-x-blue-500\/20 {
  border-left-color: rgb(59 130 246 / 0.2);
  border-right-color: rgb(59 130 246 / 0.2);
}

.border-x-blue-500\/25 {
  border-left-color: rgb(59 130 246 / 0.25);
  border-right-color: rgb(59 130 246 / 0.25);
}

.border-x-blue-500\/30 {
  border-left-color: rgb(59 130 246 / 0.3);
  border-right-color: rgb(59 130 246 / 0.3);
}

.border-x-blue-500\/35 {
  border-left-color: rgb(59 130 246 / 0.35);
  border-right-color: rgb(59 130 246 / 0.35);
}

.border-x-blue-500\/40 {
  border-left-color: rgb(59 130 246 / 0.4);
  border-right-color: rgb(59 130 246 / 0.4);
}

.border-x-blue-500\/45 {
  border-left-color: rgb(59 130 246 / 0.45);
  border-right-color: rgb(59 130 246 / 0.45);
}

.border-x-blue-500\/5 {
  border-left-color: rgb(59 130 246 / 0.05);
  border-right-color: rgb(59 130 246 / 0.05);
}

.border-x-blue-500\/50 {
  border-left-color: rgb(59 130 246 / 0.5);
  border-right-color: rgb(59 130 246 / 0.5);
}

.border-x-blue-500\/55 {
  border-left-color: rgb(59 130 246 / 0.55);
  border-right-color: rgb(59 130 246 / 0.55);
}

.border-x-blue-500\/60 {
  border-left-color: rgb(59 130 246 / 0.6);
  border-right-color: rgb(59 130 246 / 0.6);
}

.border-x-blue-500\/65 {
  border-left-color: rgb(59 130 246 / 0.65);
  border-right-color: rgb(59 130 246 / 0.65);
}

.border-x-blue-500\/70 {
  border-left-color: rgb(59 130 246 / 0.7);
  border-right-color: rgb(59 130 246 / 0.7);
}

.border-x-blue-500\/75 {
  border-left-color: rgb(59 130 246 / 0.75);
  border-right-color: rgb(59 130 246 / 0.75);
}

.border-x-blue-500\/80 {
  border-left-color: rgb(59 130 246 / 0.8);
  border-right-color: rgb(59 130 246 / 0.8);
}

.border-x-blue-500\/85 {
  border-left-color: rgb(59 130 246 / 0.85);
  border-right-color: rgb(59 130 246 / 0.85);
}

.border-x-blue-500\/90 {
  border-left-color: rgb(59 130 246 / 0.9);
  border-right-color: rgb(59 130 246 / 0.9);
}

.border-x-blue-500\/95 {
  border-left-color: rgb(59 130 246 / 0.95);
  border-right-color: rgb(59 130 246 / 0.95);
}

.border-x-blue-600 {
  --tw-border-opacity: 1;
  border-left-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
  border-right-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}

.border-x-blue-600\/0 {
  border-left-color: rgb(37 99 235 / 0);
  border-right-color: rgb(37 99 235 / 0);
}

.border-x-blue-600\/10 {
  border-left-color: rgb(37 99 235 / 0.1);
  border-right-color: rgb(37 99 235 / 0.1);
}

.border-x-blue-600\/100 {
  border-left-color: rgb(37 99 235 / 1);
  border-right-color: rgb(37 99 235 / 1);
}

.border-x-blue-600\/15 {
  border-left-color: rgb(37 99 235 / 0.15);
  border-right-color: rgb(37 99 235 / 0.15);
}

.border-x-blue-600\/20 {
  border-left-color: rgb(37 99 235 / 0.2);
  border-right-color: rgb(37 99 235 / 0.2);
}

.border-x-blue-600\/25 {
  border-left-color: rgb(37 99 235 / 0.25);
  border-right-color: rgb(37 99 235 / 0.25);
}

.border-x-blue-600\/30 {
  border-left-color: rgb(37 99 235 / 0.3);
  border-right-color: rgb(37 99 235 / 0.3);
}

.border-x-blue-600\/35 {
  border-left-color: rgb(37 99 235 / 0.35);
  border-right-color: rgb(37 99 235 / 0.35);
}

.border-x-blue-600\/40 {
  border-left-color: rgb(37 99 235 / 0.4);
  border-right-color: rgb(37 99 235 / 0.4);
}

.border-x-blue-600\/45 {
  border-left-color: rgb(37 99 235 / 0.45);
  border-right-color: rgb(37 99 235 / 0.45);
}

.border-x-blue-600\/5 {
  border-left-color: rgb(37 99 235 / 0.05);
  border-right-color: rgb(37 99 235 / 0.05);
}

.border-x-blue-600\/50 {
  border-left-color: rgb(37 99 235 / 0.5);
  border-right-color: rgb(37 99 235 / 0.5);
}

.border-x-blue-600\/55 {
  border-left-color: rgb(37 99 235 / 0.55);
  border-right-color: rgb(37 99 235 / 0.55);
}

.border-x-blue-600\/60 {
  border-left-color: rgb(37 99 235 / 0.6);
  border-right-color: rgb(37 99 235 / 0.6);
}

.border-x-blue-600\/65 {
  border-left-color: rgb(37 99 235 / 0.65);
  border-right-color: rgb(37 99 235 / 0.65);
}

.border-x-blue-600\/70 {
  border-left-color: rgb(37 99 235 / 0.7);
  border-right-color: rgb(37 99 235 / 0.7);
}

.border-x-blue-600\/75 {
  border-left-color: rgb(37 99 235 / 0.75);
  border-right-color: rgb(37 99 235 / 0.75);
}

.border-x-blue-600\/80 {
  border-left-color: rgb(37 99 235 / 0.8);
  border-right-color: rgb(37 99 235 / 0.8);
}

.border-x-blue-600\/85 {
  border-left-color: rgb(37 99 235 / 0.85);
  border-right-color: rgb(37 99 235 / 0.85);
}

.border-x-blue-600\/90 {
  border-left-color: rgb(37 99 235 / 0.9);
  border-right-color: rgb(37 99 235 / 0.9);
}

.border-x-blue-600\/95 {
  border-left-color: rgb(37 99 235 / 0.95);
  border-right-color: rgb(37 99 235 / 0.95);
}

.border-x-blue-700 {
  --tw-border-opacity: 1;
  border-left-color: rgb(29 78 216 / var(--tw-border-opacity, 1));
  border-right-color: rgb(29 78 216 / var(--tw-border-opacity, 1));
}

.border-x-blue-700\/0 {
  border-left-color: rgb(29 78 216 / 0);
  border-right-color: rgb(29 78 216 / 0);
}

.border-x-blue-700\/10 {
  border-left-color: rgb(29 78 216 / 0.1);
  border-right-color: rgb(29 78 216 / 0.1);
}

.border-x-blue-700\/100 {
  border-left-color: rgb(29 78 216 / 1);
  border-right-color: rgb(29 78 216 / 1);
}

.border-x-blue-700\/15 {
  border-left-color: rgb(29 78 216 / 0.15);
  border-right-color: rgb(29 78 216 / 0.15);
}

.border-x-blue-700\/20 {
  border-left-color: rgb(29 78 216 / 0.2);
  border-right-color: rgb(29 78 216 / 0.2);
}

.border-x-blue-700\/25 {
  border-left-color: rgb(29 78 216 / 0.25);
  border-right-color: rgb(29 78 216 / 0.25);
}

.border-x-blue-700\/30 {
  border-left-color: rgb(29 78 216 / 0.3);
  border-right-color: rgb(29 78 216 / 0.3);
}

.border-x-blue-700\/35 {
  border-left-color: rgb(29 78 216 / 0.35);
  border-right-color: rgb(29 78 216 / 0.35);
}

.border-x-blue-700\/40 {
  border-left-color: rgb(29 78 216 / 0.4);
  border-right-color: rgb(29 78 216 / 0.4);
}

.border-x-blue-700\/45 {
  border-left-color: rgb(29 78 216 / 0.45);
  border-right-color: rgb(29 78 216 / 0.45);
}

.border-x-blue-700\/5 {
  border-left-color: rgb(29 78 216 / 0.05);
  border-right-color: rgb(29 78 216 / 0.05);
}

.border-x-blue-700\/50 {
  border-left-color: rgb(29 78 216 / 0.5);
  border-right-color: rgb(29 78 216 / 0.5);
}

.border-x-blue-700\/55 {
  border-left-color: rgb(29 78 216 / 0.55);
  border-right-color: rgb(29 78 216 / 0.55);
}

.border-x-blue-700\/60 {
  border-left-color: rgb(29 78 216 / 0.6);
  border-right-color: rgb(29 78 216 / 0.6);
}

.border-x-blue-700\/65 {
  border-left-color: rgb(29 78 216 / 0.65);
  border-right-color: rgb(29 78 216 / 0.65);
}

.border-x-blue-700\/70 {
  border-left-color: rgb(29 78 216 / 0.7);
  border-right-color: rgb(29 78 216 / 0.7);
}

.border-x-blue-700\/75 {
  border-left-color: rgb(29 78 216 / 0.75);
  border-right-color: rgb(29 78 216 / 0.75);
}

.border-x-blue-700\/80 {
  border-left-color: rgb(29 78 216 / 0.8);
  border-right-color: rgb(29 78 216 / 0.8);
}

.border-x-blue-700\/85 {
  border-left-color: rgb(29 78 216 / 0.85);
  border-right-color: rgb(29 78 216 / 0.85);
}

.border-x-blue-700\/90 {
  border-left-color: rgb(29 78 216 / 0.9);
  border-right-color: rgb(29 78 216 / 0.9);
}

.border-x-blue-700\/95 {
  border-left-color: rgb(29 78 216 / 0.95);
  border-right-color: rgb(29 78 216 / 0.95);
}

.border-x-blue-800 {
  --tw-border-opacity: 1;
  border-left-color: rgb(30 64 175 / var(--tw-border-opacity, 1));
  border-right-color: rgb(30 64 175 / var(--tw-border-opacity, 1));
}

.border-x-blue-800\/0 {
  border-left-color: rgb(30 64 175 / 0);
  border-right-color: rgb(30 64 175 / 0);
}

.border-x-blue-800\/10 {
  border-left-color: rgb(30 64 175 / 0.1);
  border-right-color: rgb(30 64 175 / 0.1);
}

.border-x-blue-800\/100 {
  border-left-color: rgb(30 64 175 / 1);
  border-right-color: rgb(30 64 175 / 1);
}

.border-x-blue-800\/15 {
  border-left-color: rgb(30 64 175 / 0.15);
  border-right-color: rgb(30 64 175 / 0.15);
}

.border-x-blue-800\/20 {
  border-left-color: rgb(30 64 175 / 0.2);
  border-right-color: rgb(30 64 175 / 0.2);
}

.border-x-blue-800\/25 {
  border-left-color: rgb(30 64 175 / 0.25);
  border-right-color: rgb(30 64 175 / 0.25);
}

.border-x-blue-800\/30 {
  border-left-color: rgb(30 64 175 / 0.3);
  border-right-color: rgb(30 64 175 / 0.3);
}

.border-x-blue-800\/35 {
  border-left-color: rgb(30 64 175 / 0.35);
  border-right-color: rgb(30 64 175 / 0.35);
}

.border-x-blue-800\/40 {
  border-left-color: rgb(30 64 175 / 0.4);
  border-right-color: rgb(30 64 175 / 0.4);
}

.border-x-blue-800\/45 {
  border-left-color: rgb(30 64 175 / 0.45);
  border-right-color: rgb(30 64 175 / 0.45);
}

.border-x-blue-800\/5 {
  border-left-color: rgb(30 64 175 / 0.05);
  border-right-color: rgb(30 64 175 / 0.05);
}

.border-x-blue-800\/50 {
  border-left-color: rgb(30 64 175 / 0.5);
  border-right-color: rgb(30 64 175 / 0.5);
}

.border-x-blue-800\/55 {
  border-left-color: rgb(30 64 175 / 0.55);
  border-right-color: rgb(30 64 175 / 0.55);
}

.border-x-blue-800\/60 {
  border-left-color: rgb(30 64 175 / 0.6);
  border-right-color: rgb(30 64 175 / 0.6);
}

.border-x-blue-800\/65 {
  border-left-color: rgb(30 64 175 / 0.65);
  border-right-color: rgb(30 64 175 / 0.65);
}

.border-x-blue-800\/70 {
  border-left-color: rgb(30 64 175 / 0.7);
  border-right-color: rgb(30 64 175 / 0.7);
}

.border-x-blue-800\/75 {
  border-left-color: rgb(30 64 175 / 0.75);
  border-right-color: rgb(30 64 175 / 0.75);
}

.border-x-blue-800\/80 {
  border-left-color: rgb(30 64 175 / 0.8);
  border-right-color: rgb(30 64 175 / 0.8);
}

.border-x-blue-800\/85 {
  border-left-color: rgb(30 64 175 / 0.85);
  border-right-color: rgb(30 64 175 / 0.85);
}

.border-x-blue-800\/90 {
  border-left-color: rgb(30 64 175 / 0.9);
  border-right-color: rgb(30 64 175 / 0.9);
}

.border-x-blue-800\/95 {
  border-left-color: rgb(30 64 175 / 0.95);
  border-right-color: rgb(30 64 175 / 0.95);
}

.border-x-blue-900 {
  --tw-border-opacity: 1;
  border-left-color: rgb(30 58 138 / var(--tw-border-opacity, 1));
  border-right-color: rgb(30 58 138 / var(--tw-border-opacity, 1));
}

.border-x-blue-900\/0 {
  border-left-color: rgb(30 58 138 / 0);
  border-right-color: rgb(30 58 138 / 0);
}

.border-x-blue-900\/10 {
  border-left-color: rgb(30 58 138 / 0.1);
  border-right-color: rgb(30 58 138 / 0.1);
}

.border-x-blue-900\/100 {
  border-left-color: rgb(30 58 138 / 1);
  border-right-color: rgb(30 58 138 / 1);
}

.border-x-blue-900\/15 {
  border-left-color: rgb(30 58 138 / 0.15);
  border-right-color: rgb(30 58 138 / 0.15);
}

.border-x-blue-900\/20 {
  border-left-color: rgb(30 58 138 / 0.2);
  border-right-color: rgb(30 58 138 / 0.2);
}

.border-x-blue-900\/25 {
  border-left-color: rgb(30 58 138 / 0.25);
  border-right-color: rgb(30 58 138 / 0.25);
}

.border-x-blue-900\/30 {
  border-left-color: rgb(30 58 138 / 0.3);
  border-right-color: rgb(30 58 138 / 0.3);
}

.border-x-blue-900\/35 {
  border-left-color: rgb(30 58 138 / 0.35);
  border-right-color: rgb(30 58 138 / 0.35);
}

.border-x-blue-900\/40 {
  border-left-color: rgb(30 58 138 / 0.4);
  border-right-color: rgb(30 58 138 / 0.4);
}

.border-x-blue-900\/45 {
  border-left-color: rgb(30 58 138 / 0.45);
  border-right-color: rgb(30 58 138 / 0.45);
}

.border-x-blue-900\/5 {
  border-left-color: rgb(30 58 138 / 0.05);
  border-right-color: rgb(30 58 138 / 0.05);
}

.border-x-blue-900\/50 {
  border-left-color: rgb(30 58 138 / 0.5);
  border-right-color: rgb(30 58 138 / 0.5);
}

.border-x-blue-900\/55 {
  border-left-color: rgb(30 58 138 / 0.55);
  border-right-color: rgb(30 58 138 / 0.55);
}

.border-x-blue-900\/60 {
  border-left-color: rgb(30 58 138 / 0.6);
  border-right-color: rgb(30 58 138 / 0.6);
}

.border-x-blue-900\/65 {
  border-left-color: rgb(30 58 138 / 0.65);
  border-right-color: rgb(30 58 138 / 0.65);
}

.border-x-blue-900\/70 {
  border-left-color: rgb(30 58 138 / 0.7);
  border-right-color: rgb(30 58 138 / 0.7);
}

.border-x-blue-900\/75 {
  border-left-color: rgb(30 58 138 / 0.75);
  border-right-color: rgb(30 58 138 / 0.75);
}

.border-x-blue-900\/80 {
  border-left-color: rgb(30 58 138 / 0.8);
  border-right-color: rgb(30 58 138 / 0.8);
}

.border-x-blue-900\/85 {
  border-left-color: rgb(30 58 138 / 0.85);
  border-right-color: rgb(30 58 138 / 0.85);
}

.border-x-blue-900\/90 {
  border-left-color: rgb(30 58 138 / 0.9);
  border-right-color: rgb(30 58 138 / 0.9);
}

.border-x-blue-900\/95 {
  border-left-color: rgb(30 58 138 / 0.95);
  border-right-color: rgb(30 58 138 / 0.95);
}

.border-x-blue-950 {
  --tw-border-opacity: 1;
  border-left-color: rgb(23 37 84 / var(--tw-border-opacity, 1));
  border-right-color: rgb(23 37 84 / var(--tw-border-opacity, 1));
}

.border-x-blue-950\/0 {
  border-left-color: rgb(23 37 84 / 0);
  border-right-color: rgb(23 37 84 / 0);
}

.border-x-blue-950\/10 {
  border-left-color: rgb(23 37 84 / 0.1);
  border-right-color: rgb(23 37 84 / 0.1);
}

.border-x-blue-950\/100 {
  border-left-color: rgb(23 37 84 / 1);
  border-right-color: rgb(23 37 84 / 1);
}

.border-x-blue-950\/15 {
  border-left-color: rgb(23 37 84 / 0.15);
  border-right-color: rgb(23 37 84 / 0.15);
}

.border-x-blue-950\/20 {
  border-left-color: rgb(23 37 84 / 0.2);
  border-right-color: rgb(23 37 84 / 0.2);
}

.border-x-blue-950\/25 {
  border-left-color: rgb(23 37 84 / 0.25);
  border-right-color: rgb(23 37 84 / 0.25);
}

.border-x-blue-950\/30 {
  border-left-color: rgb(23 37 84 / 0.3);
  border-right-color: rgb(23 37 84 / 0.3);
}

.border-x-blue-950\/35 {
  border-left-color: rgb(23 37 84 / 0.35);
  border-right-color: rgb(23 37 84 / 0.35);
}

.border-x-blue-950\/40 {
  border-left-color: rgb(23 37 84 / 0.4);
  border-right-color: rgb(23 37 84 / 0.4);
}

.border-x-blue-950\/45 {
  border-left-color: rgb(23 37 84 / 0.45);
  border-right-color: rgb(23 37 84 / 0.45);
}

.border-x-blue-950\/5 {
  border-left-color: rgb(23 37 84 / 0.05);
  border-right-color: rgb(23 37 84 / 0.05);
}

.border-x-blue-950\/50 {
  border-left-color: rgb(23 37 84 / 0.5);
  border-right-color: rgb(23 37 84 / 0.5);
}

.border-x-blue-950\/55 {
  border-left-color: rgb(23 37 84 / 0.55);
  border-right-color: rgb(23 37 84 / 0.55);
}

.border-x-blue-950\/60 {
  border-left-color: rgb(23 37 84 / 0.6);
  border-right-color: rgb(23 37 84 / 0.6);
}

.border-x-blue-950\/65 {
  border-left-color: rgb(23 37 84 / 0.65);
  border-right-color: rgb(23 37 84 / 0.65);
}

.border-x-blue-950\/70 {
  border-left-color: rgb(23 37 84 / 0.7);
  border-right-color: rgb(23 37 84 / 0.7);
}

.border-x-blue-950\/75 {
  border-left-color: rgb(23 37 84 / 0.75);
  border-right-color: rgb(23 37 84 / 0.75);
}

.border-x-blue-950\/80 {
  border-left-color: rgb(23 37 84 / 0.8);
  border-right-color: rgb(23 37 84 / 0.8);
}

.border-x-blue-950\/85 {
  border-left-color: rgb(23 37 84 / 0.85);
  border-right-color: rgb(23 37 84 / 0.85);
}

.border-x-blue-950\/90 {
  border-left-color: rgb(23 37 84 / 0.9);
  border-right-color: rgb(23 37 84 / 0.9);
}

.border-x-blue-950\/95 {
  border-left-color: rgb(23 37 84 / 0.95);
  border-right-color: rgb(23 37 84 / 0.95);
}

.border-x-current {
  border-left-color: currentColor;
  border-right-color: currentColor;
}

.border-x-eva-blue {
  --tw-border-opacity: 1;
  border-left-color: rgb(26 33 62 / var(--tw-border-opacity, 1));
  border-right-color: rgb(26 33 62 / var(--tw-border-opacity, 1));
}

.border-x-eva-blue-appt {
  --tw-border-opacity: 1;
  border-left-color: rgba(52, 137, 207, var(--tw-border-opacity, 1));
  border-right-color: rgba(52, 137, 207, var(--tw-border-opacity, 1));
}

.border-x-eva-blue-appt\/0 {
  border-left-color: rgba(52, 137, 207, 0);
  border-right-color: rgba(52, 137, 207, 0);
}

.border-x-eva-blue-appt\/10 {
  border-left-color: rgba(52, 137, 207, 0.1);
  border-right-color: rgba(52, 137, 207, 0.1);
}

.border-x-eva-blue-appt\/100 {
  border-left-color: rgba(52, 137, 207, 1);
  border-right-color: rgba(52, 137, 207, 1);
}

.border-x-eva-blue-appt\/15 {
  border-left-color: rgba(52, 137, 207, 0.15);
  border-right-color: rgba(52, 137, 207, 0.15);
}

.border-x-eva-blue-appt\/20 {
  border-left-color: rgba(52, 137, 207, 0.2);
  border-right-color: rgba(52, 137, 207, 0.2);
}

.border-x-eva-blue-appt\/25 {
  border-left-color: rgba(52, 137, 207, 0.25);
  border-right-color: rgba(52, 137, 207, 0.25);
}

.border-x-eva-blue-appt\/30 {
  border-left-color: rgba(52, 137, 207, 0.3);
  border-right-color: rgba(52, 137, 207, 0.3);
}

.border-x-eva-blue-appt\/35 {
  border-left-color: rgba(52, 137, 207, 0.35);
  border-right-color: rgba(52, 137, 207, 0.35);
}

.border-x-eva-blue-appt\/40 {
  border-left-color: rgba(52, 137, 207, 0.4);
  border-right-color: rgba(52, 137, 207, 0.4);
}

.border-x-eva-blue-appt\/45 {
  border-left-color: rgba(52, 137, 207, 0.45);
  border-right-color: rgba(52, 137, 207, 0.45);
}

.border-x-eva-blue-appt\/5 {
  border-left-color: rgba(52, 137, 207, 0.05);
  border-right-color: rgba(52, 137, 207, 0.05);
}

.border-x-eva-blue-appt\/50 {
  border-left-color: rgba(52, 137, 207, 0.5);
  border-right-color: rgba(52, 137, 207, 0.5);
}

.border-x-eva-blue-appt\/55 {
  border-left-color: rgba(52, 137, 207, 0.55);
  border-right-color: rgba(52, 137, 207, 0.55);
}

.border-x-eva-blue-appt\/60 {
  border-left-color: rgba(52, 137, 207, 0.6);
  border-right-color: rgba(52, 137, 207, 0.6);
}

.border-x-eva-blue-appt\/65 {
  border-left-color: rgba(52, 137, 207, 0.65);
  border-right-color: rgba(52, 137, 207, 0.65);
}

.border-x-eva-blue-appt\/70 {
  border-left-color: rgba(52, 137, 207, 0.7);
  border-right-color: rgba(52, 137, 207, 0.7);
}

.border-x-eva-blue-appt\/75 {
  border-left-color: rgba(52, 137, 207, 0.75);
  border-right-color: rgba(52, 137, 207, 0.75);
}

.border-x-eva-blue-appt\/80 {
  border-left-color: rgba(52, 137, 207, 0.8);
  border-right-color: rgba(52, 137, 207, 0.8);
}

.border-x-eva-blue-appt\/85 {
  border-left-color: rgba(52, 137, 207, 0.85);
  border-right-color: rgba(52, 137, 207, 0.85);
}

.border-x-eva-blue-appt\/90 {
  border-left-color: rgba(52, 137, 207, 0.9);
  border-right-color: rgba(52, 137, 207, 0.9);
}

.border-x-eva-blue-appt\/95 {
  border-left-color: rgba(52, 137, 207, 0.95);
  border-right-color: rgba(52, 137, 207, 0.95);
}

.border-x-eva-blue-gray {
  --tw-border-opacity: 1;
  border-left-color: rgb(117 121 139 / var(--tw-border-opacity, 1));
  border-right-color: rgb(117 121 139 / var(--tw-border-opacity, 1));
}

.border-x-eva-blue-gray\/0 {
  border-left-color: rgb(117 121 139 / 0);
  border-right-color: rgb(117 121 139 / 0);
}

.border-x-eva-blue-gray\/10 {
  border-left-color: rgb(117 121 139 / 0.1);
  border-right-color: rgb(117 121 139 / 0.1);
}

.border-x-eva-blue-gray\/100 {
  border-left-color: rgb(117 121 139 / 1);
  border-right-color: rgb(117 121 139 / 1);
}

.border-x-eva-blue-gray\/15 {
  border-left-color: rgb(117 121 139 / 0.15);
  border-right-color: rgb(117 121 139 / 0.15);
}

.border-x-eva-blue-gray\/20 {
  border-left-color: rgb(117 121 139 / 0.2);
  border-right-color: rgb(117 121 139 / 0.2);
}

.border-x-eva-blue-gray\/25 {
  border-left-color: rgb(117 121 139 / 0.25);
  border-right-color: rgb(117 121 139 / 0.25);
}

.border-x-eva-blue-gray\/30 {
  border-left-color: rgb(117 121 139 / 0.3);
  border-right-color: rgb(117 121 139 / 0.3);
}

.border-x-eva-blue-gray\/35 {
  border-left-color: rgb(117 121 139 / 0.35);
  border-right-color: rgb(117 121 139 / 0.35);
}

.border-x-eva-blue-gray\/40 {
  border-left-color: rgb(117 121 139 / 0.4);
  border-right-color: rgb(117 121 139 / 0.4);
}

.border-x-eva-blue-gray\/45 {
  border-left-color: rgb(117 121 139 / 0.45);
  border-right-color: rgb(117 121 139 / 0.45);
}

.border-x-eva-blue-gray\/5 {
  border-left-color: rgb(117 121 139 / 0.05);
  border-right-color: rgb(117 121 139 / 0.05);
}

.border-x-eva-blue-gray\/50 {
  border-left-color: rgb(117 121 139 / 0.5);
  border-right-color: rgb(117 121 139 / 0.5);
}

.border-x-eva-blue-gray\/55 {
  border-left-color: rgb(117 121 139 / 0.55);
  border-right-color: rgb(117 121 139 / 0.55);
}

.border-x-eva-blue-gray\/60 {
  border-left-color: rgb(117 121 139 / 0.6);
  border-right-color: rgb(117 121 139 / 0.6);
}

.border-x-eva-blue-gray\/65 {
  border-left-color: rgb(117 121 139 / 0.65);
  border-right-color: rgb(117 121 139 / 0.65);
}

.border-x-eva-blue-gray\/70 {
  border-left-color: rgb(117 121 139 / 0.7);
  border-right-color: rgb(117 121 139 / 0.7);
}

.border-x-eva-blue-gray\/75 {
  border-left-color: rgb(117 121 139 / 0.75);
  border-right-color: rgb(117 121 139 / 0.75);
}

.border-x-eva-blue-gray\/80 {
  border-left-color: rgb(117 121 139 / 0.8);
  border-right-color: rgb(117 121 139 / 0.8);
}

.border-x-eva-blue-gray\/85 {
  border-left-color: rgb(117 121 139 / 0.85);
  border-right-color: rgb(117 121 139 / 0.85);
}

.border-x-eva-blue-gray\/90 {
  border-left-color: rgb(117 121 139 / 0.9);
  border-right-color: rgb(117 121 139 / 0.9);
}

.border-x-eva-blue-gray\/95 {
  border-left-color: rgb(117 121 139 / 0.95);
  border-right-color: rgb(117 121 139 / 0.95);
}

.border-x-eva-blue-hv {
  --tw-border-opacity: 1;
  border-left-color: rgb(15 18 31 / var(--tw-border-opacity, 1));
  border-right-color: rgb(15 18 31 / var(--tw-border-opacity, 1));
}

.border-x-eva-blue-hv\/0 {
  border-left-color: rgb(15 18 31 / 0);
  border-right-color: rgb(15 18 31 / 0);
}

.border-x-eva-blue-hv\/10 {
  border-left-color: rgb(15 18 31 / 0.1);
  border-right-color: rgb(15 18 31 / 0.1);
}

.border-x-eva-blue-hv\/100 {
  border-left-color: rgb(15 18 31 / 1);
  border-right-color: rgb(15 18 31 / 1);
}

.border-x-eva-blue-hv\/15 {
  border-left-color: rgb(15 18 31 / 0.15);
  border-right-color: rgb(15 18 31 / 0.15);
}

.border-x-eva-blue-hv\/20 {
  border-left-color: rgb(15 18 31 / 0.2);
  border-right-color: rgb(15 18 31 / 0.2);
}

.border-x-eva-blue-hv\/25 {
  border-left-color: rgb(15 18 31 / 0.25);
  border-right-color: rgb(15 18 31 / 0.25);
}

.border-x-eva-blue-hv\/30 {
  border-left-color: rgb(15 18 31 / 0.3);
  border-right-color: rgb(15 18 31 / 0.3);
}

.border-x-eva-blue-hv\/35 {
  border-left-color: rgb(15 18 31 / 0.35);
  border-right-color: rgb(15 18 31 / 0.35);
}

.border-x-eva-blue-hv\/40 {
  border-left-color: rgb(15 18 31 / 0.4);
  border-right-color: rgb(15 18 31 / 0.4);
}

.border-x-eva-blue-hv\/45 {
  border-left-color: rgb(15 18 31 / 0.45);
  border-right-color: rgb(15 18 31 / 0.45);
}

.border-x-eva-blue-hv\/5 {
  border-left-color: rgb(15 18 31 / 0.05);
  border-right-color: rgb(15 18 31 / 0.05);
}

.border-x-eva-blue-hv\/50 {
  border-left-color: rgb(15 18 31 / 0.5);
  border-right-color: rgb(15 18 31 / 0.5);
}

.border-x-eva-blue-hv\/55 {
  border-left-color: rgb(15 18 31 / 0.55);
  border-right-color: rgb(15 18 31 / 0.55);
}

.border-x-eva-blue-hv\/60 {
  border-left-color: rgb(15 18 31 / 0.6);
  border-right-color: rgb(15 18 31 / 0.6);
}

.border-x-eva-blue-hv\/65 {
  border-left-color: rgb(15 18 31 / 0.65);
  border-right-color: rgb(15 18 31 / 0.65);
}

.border-x-eva-blue-hv\/70 {
  border-left-color: rgb(15 18 31 / 0.7);
  border-right-color: rgb(15 18 31 / 0.7);
}

.border-x-eva-blue-hv\/75 {
  border-left-color: rgb(15 18 31 / 0.75);
  border-right-color: rgb(15 18 31 / 0.75);
}

.border-x-eva-blue-hv\/80 {
  border-left-color: rgb(15 18 31 / 0.8);
  border-right-color: rgb(15 18 31 / 0.8);
}

.border-x-eva-blue-hv\/85 {
  border-left-color: rgb(15 18 31 / 0.85);
  border-right-color: rgb(15 18 31 / 0.85);
}

.border-x-eva-blue-hv\/90 {
  border-left-color: rgb(15 18 31 / 0.9);
  border-right-color: rgb(15 18 31 / 0.9);
}

.border-x-eva-blue-hv\/95 {
  border-left-color: rgb(15 18 31 / 0.95);
  border-right-color: rgb(15 18 31 / 0.95);
}

.border-x-eva-blue-light {
  --tw-border-opacity: 1;
  border-left-color: rgb(48 56 81 / var(--tw-border-opacity, 1));
  border-right-color: rgb(48 56 81 / var(--tw-border-opacity, 1));
}

.border-x-eva-blue-light-hv {
  border-left-color: rgba(17,20,30,.3);
  border-right-color: rgba(17,20,30,.3);
}

.border-x-eva-blue-light-hv\/0 {
  border-left-color: rgba(17, 20, 30, 0);
  border-right-color: rgba(17, 20, 30, 0);
}

.border-x-eva-blue-light-hv\/10 {
  border-left-color: rgba(17, 20, 30, 0.1);
  border-right-color: rgba(17, 20, 30, 0.1);
}

.border-x-eva-blue-light-hv\/100 {
  border-left-color: rgba(17, 20, 30, 1);
  border-right-color: rgba(17, 20, 30, 1);
}

.border-x-eva-blue-light-hv\/15 {
  border-left-color: rgba(17, 20, 30, 0.15);
  border-right-color: rgba(17, 20, 30, 0.15);
}

.border-x-eva-blue-light-hv\/20 {
  border-left-color: rgba(17, 20, 30, 0.2);
  border-right-color: rgba(17, 20, 30, 0.2);
}

.border-x-eva-blue-light-hv\/25 {
  border-left-color: rgba(17, 20, 30, 0.25);
  border-right-color: rgba(17, 20, 30, 0.25);
}

.border-x-eva-blue-light-hv\/30 {
  border-left-color: rgba(17, 20, 30, 0.3);
  border-right-color: rgba(17, 20, 30, 0.3);
}

.border-x-eva-blue-light-hv\/35 {
  border-left-color: rgba(17, 20, 30, 0.35);
  border-right-color: rgba(17, 20, 30, 0.35);
}

.border-x-eva-blue-light-hv\/40 {
  border-left-color: rgba(17, 20, 30, 0.4);
  border-right-color: rgba(17, 20, 30, 0.4);
}

.border-x-eva-blue-light-hv\/45 {
  border-left-color: rgba(17, 20, 30, 0.45);
  border-right-color: rgba(17, 20, 30, 0.45);
}

.border-x-eva-blue-light-hv\/5 {
  border-left-color: rgba(17, 20, 30, 0.05);
  border-right-color: rgba(17, 20, 30, 0.05);
}

.border-x-eva-blue-light-hv\/50 {
  border-left-color: rgba(17, 20, 30, 0.5);
  border-right-color: rgba(17, 20, 30, 0.5);
}

.border-x-eva-blue-light-hv\/55 {
  border-left-color: rgba(17, 20, 30, 0.55);
  border-right-color: rgba(17, 20, 30, 0.55);
}

.border-x-eva-blue-light-hv\/60 {
  border-left-color: rgba(17, 20, 30, 0.6);
  border-right-color: rgba(17, 20, 30, 0.6);
}

.border-x-eva-blue-light-hv\/65 {
  border-left-color: rgba(17, 20, 30, 0.65);
  border-right-color: rgba(17, 20, 30, 0.65);
}

.border-x-eva-blue-light-hv\/70 {
  border-left-color: rgba(17, 20, 30, 0.7);
  border-right-color: rgba(17, 20, 30, 0.7);
}

.border-x-eva-blue-light-hv\/75 {
  border-left-color: rgba(17, 20, 30, 0.75);
  border-right-color: rgba(17, 20, 30, 0.75);
}

.border-x-eva-blue-light-hv\/80 {
  border-left-color: rgba(17, 20, 30, 0.8);
  border-right-color: rgba(17, 20, 30, 0.8);
}

.border-x-eva-blue-light-hv\/85 {
  border-left-color: rgba(17, 20, 30, 0.85);
  border-right-color: rgba(17, 20, 30, 0.85);
}

.border-x-eva-blue-light-hv\/90 {
  border-left-color: rgba(17, 20, 30, 0.9);
  border-right-color: rgba(17, 20, 30, 0.9);
}

.border-x-eva-blue-light-hv\/95 {
  border-left-color: rgba(17, 20, 30, 0.95);
  border-right-color: rgba(17, 20, 30, 0.95);
}

.border-x-eva-blue-light\/0 {
  border-left-color: rgb(48 56 81 / 0);
  border-right-color: rgb(48 56 81 / 0);
}

.border-x-eva-blue-light\/10 {
  border-left-color: rgb(48 56 81 / 0.1);
  border-right-color: rgb(48 56 81 / 0.1);
}

.border-x-eva-blue-light\/100 {
  border-left-color: rgb(48 56 81 / 1);
  border-right-color: rgb(48 56 81 / 1);
}

.border-x-eva-blue-light\/15 {
  border-left-color: rgb(48 56 81 / 0.15);
  border-right-color: rgb(48 56 81 / 0.15);
}

.border-x-eva-blue-light\/20 {
  border-left-color: rgb(48 56 81 / 0.2);
  border-right-color: rgb(48 56 81 / 0.2);
}

.border-x-eva-blue-light\/25 {
  border-left-color: rgb(48 56 81 / 0.25);
  border-right-color: rgb(48 56 81 / 0.25);
}

.border-x-eva-blue-light\/30 {
  border-left-color: rgb(48 56 81 / 0.3);
  border-right-color: rgb(48 56 81 / 0.3);
}

.border-x-eva-blue-light\/35 {
  border-left-color: rgb(48 56 81 / 0.35);
  border-right-color: rgb(48 56 81 / 0.35);
}

.border-x-eva-blue-light\/40 {
  border-left-color: rgb(48 56 81 / 0.4);
  border-right-color: rgb(48 56 81 / 0.4);
}

.border-x-eva-blue-light\/45 {
  border-left-color: rgb(48 56 81 / 0.45);
  border-right-color: rgb(48 56 81 / 0.45);
}

.border-x-eva-blue-light\/5 {
  border-left-color: rgb(48 56 81 / 0.05);
  border-right-color: rgb(48 56 81 / 0.05);
}

.border-x-eva-blue-light\/50 {
  border-left-color: rgb(48 56 81 / 0.5);
  border-right-color: rgb(48 56 81 / 0.5);
}

.border-x-eva-blue-light\/55 {
  border-left-color: rgb(48 56 81 / 0.55);
  border-right-color: rgb(48 56 81 / 0.55);
}

.border-x-eva-blue-light\/60 {
  border-left-color: rgb(48 56 81 / 0.6);
  border-right-color: rgb(48 56 81 / 0.6);
}

.border-x-eva-blue-light\/65 {
  border-left-color: rgb(48 56 81 / 0.65);
  border-right-color: rgb(48 56 81 / 0.65);
}

.border-x-eva-blue-light\/70 {
  border-left-color: rgb(48 56 81 / 0.7);
  border-right-color: rgb(48 56 81 / 0.7);
}

.border-x-eva-blue-light\/75 {
  border-left-color: rgb(48 56 81 / 0.75);
  border-right-color: rgb(48 56 81 / 0.75);
}

.border-x-eva-blue-light\/80 {
  border-left-color: rgb(48 56 81 / 0.8);
  border-right-color: rgb(48 56 81 / 0.8);
}

.border-x-eva-blue-light\/85 {
  border-left-color: rgb(48 56 81 / 0.85);
  border-right-color: rgb(48 56 81 / 0.85);
}

.border-x-eva-blue-light\/90 {
  border-left-color: rgb(48 56 81 / 0.9);
  border-right-color: rgb(48 56 81 / 0.9);
}

.border-x-eva-blue-light\/95 {
  border-left-color: rgb(48 56 81 / 0.95);
  border-right-color: rgb(48 56 81 / 0.95);
}

.border-x-eva-blue\/0 {
  border-left-color: rgb(26 33 62 / 0);
  border-right-color: rgb(26 33 62 / 0);
}

.border-x-eva-blue\/10 {
  border-left-color: rgb(26 33 62 / 0.1);
  border-right-color: rgb(26 33 62 / 0.1);
}

.border-x-eva-blue\/100 {
  border-left-color: rgb(26 33 62 / 1);
  border-right-color: rgb(26 33 62 / 1);
}

.border-x-eva-blue\/15 {
  border-left-color: rgb(26 33 62 / 0.15);
  border-right-color: rgb(26 33 62 / 0.15);
}

.border-x-eva-blue\/20 {
  border-left-color: rgb(26 33 62 / 0.2);
  border-right-color: rgb(26 33 62 / 0.2);
}

.border-x-eva-blue\/25 {
  border-left-color: rgb(26 33 62 / 0.25);
  border-right-color: rgb(26 33 62 / 0.25);
}

.border-x-eva-blue\/30 {
  border-left-color: rgb(26 33 62 / 0.3);
  border-right-color: rgb(26 33 62 / 0.3);
}

.border-x-eva-blue\/35 {
  border-left-color: rgb(26 33 62 / 0.35);
  border-right-color: rgb(26 33 62 / 0.35);
}

.border-x-eva-blue\/40 {
  border-left-color: rgb(26 33 62 / 0.4);
  border-right-color: rgb(26 33 62 / 0.4);
}

.border-x-eva-blue\/45 {
  border-left-color: rgb(26 33 62 / 0.45);
  border-right-color: rgb(26 33 62 / 0.45);
}

.border-x-eva-blue\/5 {
  border-left-color: rgb(26 33 62 / 0.05);
  border-right-color: rgb(26 33 62 / 0.05);
}

.border-x-eva-blue\/50 {
  border-left-color: rgb(26 33 62 / 0.5);
  border-right-color: rgb(26 33 62 / 0.5);
}

.border-x-eva-blue\/55 {
  border-left-color: rgb(26 33 62 / 0.55);
  border-right-color: rgb(26 33 62 / 0.55);
}

.border-x-eva-blue\/60 {
  border-left-color: rgb(26 33 62 / 0.6);
  border-right-color: rgb(26 33 62 / 0.6);
}

.border-x-eva-blue\/65 {
  border-left-color: rgb(26 33 62 / 0.65);
  border-right-color: rgb(26 33 62 / 0.65);
}

.border-x-eva-blue\/70 {
  border-left-color: rgb(26 33 62 / 0.7);
  border-right-color: rgb(26 33 62 / 0.7);
}

.border-x-eva-blue\/75 {
  border-left-color: rgb(26 33 62 / 0.75);
  border-right-color: rgb(26 33 62 / 0.75);
}

.border-x-eva-blue\/80 {
  border-left-color: rgb(26 33 62 / 0.8);
  border-right-color: rgb(26 33 62 / 0.8);
}

.border-x-eva-blue\/85 {
  border-left-color: rgb(26 33 62 / 0.85);
  border-right-color: rgb(26 33 62 / 0.85);
}

.border-x-eva-blue\/90 {
  border-left-color: rgb(26 33 62 / 0.9);
  border-right-color: rgb(26 33 62 / 0.9);
}

.border-x-eva-blue\/95 {
  border-left-color: rgb(26 33 62 / 0.95);
  border-right-color: rgb(26 33 62 / 0.95);
}

.border-x-eva-brown-appt {
  border-left-color: rgba(99, 93, 94, 1);
  border-right-color: rgba(99, 93, 94, 1);
}

.border-x-eva-brown-appt\/0 {
  border-left-color: rgba(99, 93, 94, 0);
  border-right-color: rgba(99, 93, 94, 0);
}

.border-x-eva-brown-appt\/10 {
  border-left-color: rgba(99, 93, 94, 0.1);
  border-right-color: rgba(99, 93, 94, 0.1);
}

.border-x-eva-brown-appt\/100 {
  border-left-color: rgba(99, 93, 94, 1);
  border-right-color: rgba(99, 93, 94, 1);
}

.border-x-eva-brown-appt\/15 {
  border-left-color: rgba(99, 93, 94, 0.15);
  border-right-color: rgba(99, 93, 94, 0.15);
}

.border-x-eva-brown-appt\/20 {
  border-left-color: rgba(99, 93, 94, 0.2);
  border-right-color: rgba(99, 93, 94, 0.2);
}

.border-x-eva-brown-appt\/25 {
  border-left-color: rgba(99, 93, 94, 0.25);
  border-right-color: rgba(99, 93, 94, 0.25);
}

.border-x-eva-brown-appt\/30 {
  border-left-color: rgba(99, 93, 94, 0.3);
  border-right-color: rgba(99, 93, 94, 0.3);
}

.border-x-eva-brown-appt\/35 {
  border-left-color: rgba(99, 93, 94, 0.35);
  border-right-color: rgba(99, 93, 94, 0.35);
}

.border-x-eva-brown-appt\/40 {
  border-left-color: rgba(99, 93, 94, 0.4);
  border-right-color: rgba(99, 93, 94, 0.4);
}

.border-x-eva-brown-appt\/45 {
  border-left-color: rgba(99, 93, 94, 0.45);
  border-right-color: rgba(99, 93, 94, 0.45);
}

.border-x-eva-brown-appt\/5 {
  border-left-color: rgba(99, 93, 94, 0.05);
  border-right-color: rgba(99, 93, 94, 0.05);
}

.border-x-eva-brown-appt\/50 {
  border-left-color: rgba(99, 93, 94, 0.5);
  border-right-color: rgba(99, 93, 94, 0.5);
}

.border-x-eva-brown-appt\/55 {
  border-left-color: rgba(99, 93, 94, 0.55);
  border-right-color: rgba(99, 93, 94, 0.55);
}

.border-x-eva-brown-appt\/60 {
  border-left-color: rgba(99, 93, 94, 0.6);
  border-right-color: rgba(99, 93, 94, 0.6);
}

.border-x-eva-brown-appt\/65 {
  border-left-color: rgba(99, 93, 94, 0.65);
  border-right-color: rgba(99, 93, 94, 0.65);
}

.border-x-eva-brown-appt\/70 {
  border-left-color: rgba(99, 93, 94, 0.7);
  border-right-color: rgba(99, 93, 94, 0.7);
}

.border-x-eva-brown-appt\/75 {
  border-left-color: rgba(99, 93, 94, 0.75);
  border-right-color: rgba(99, 93, 94, 0.75);
}

.border-x-eva-brown-appt\/80 {
  border-left-color: rgba(99, 93, 94, 0.8);
  border-right-color: rgba(99, 93, 94, 0.8);
}

.border-x-eva-brown-appt\/85 {
  border-left-color: rgba(99, 93, 94, 0.85);
  border-right-color: rgba(99, 93, 94, 0.85);
}

.border-x-eva-brown-appt\/90 {
  border-left-color: rgba(99, 93, 94, 0.9);
  border-right-color: rgba(99, 93, 94, 0.9);
}

.border-x-eva-brown-appt\/95 {
  border-left-color: rgba(99, 93, 94, 0.95);
  border-right-color: rgba(99, 93, 94, 0.95);
}

.border-x-eva-dark-green-appt {
  border-left-color: rgba(102, 188, 130, 1);
  border-right-color: rgba(102, 188, 130, 1);
}

.border-x-eva-dark-green-appt\/0 {
  border-left-color: rgba(102, 188, 130, 0);
  border-right-color: rgba(102, 188, 130, 0);
}

.border-x-eva-dark-green-appt\/10 {
  border-left-color: rgba(102, 188, 130, 0.1);
  border-right-color: rgba(102, 188, 130, 0.1);
}

.border-x-eva-dark-green-appt\/100 {
  border-left-color: rgba(102, 188, 130, 1);
  border-right-color: rgba(102, 188, 130, 1);
}

.border-x-eva-dark-green-appt\/15 {
  border-left-color: rgba(102, 188, 130, 0.15);
  border-right-color: rgba(102, 188, 130, 0.15);
}

.border-x-eva-dark-green-appt\/20 {
  border-left-color: rgba(102, 188, 130, 0.2);
  border-right-color: rgba(102, 188, 130, 0.2);
}

.border-x-eva-dark-green-appt\/25 {
  border-left-color: rgba(102, 188, 130, 0.25);
  border-right-color: rgba(102, 188, 130, 0.25);
}

.border-x-eva-dark-green-appt\/30 {
  border-left-color: rgba(102, 188, 130, 0.3);
  border-right-color: rgba(102, 188, 130, 0.3);
}

.border-x-eva-dark-green-appt\/35 {
  border-left-color: rgba(102, 188, 130, 0.35);
  border-right-color: rgba(102, 188, 130, 0.35);
}

.border-x-eva-dark-green-appt\/40 {
  border-left-color: rgba(102, 188, 130, 0.4);
  border-right-color: rgba(102, 188, 130, 0.4);
}

.border-x-eva-dark-green-appt\/45 {
  border-left-color: rgba(102, 188, 130, 0.45);
  border-right-color: rgba(102, 188, 130, 0.45);
}

.border-x-eva-dark-green-appt\/5 {
  border-left-color: rgba(102, 188, 130, 0.05);
  border-right-color: rgba(102, 188, 130, 0.05);
}

.border-x-eva-dark-green-appt\/50 {
  border-left-color: rgba(102, 188, 130, 0.5);
  border-right-color: rgba(102, 188, 130, 0.5);
}

.border-x-eva-dark-green-appt\/55 {
  border-left-color: rgba(102, 188, 130, 0.55);
  border-right-color: rgba(102, 188, 130, 0.55);
}

.border-x-eva-dark-green-appt\/60 {
  border-left-color: rgba(102, 188, 130, 0.6);
  border-right-color: rgba(102, 188, 130, 0.6);
}

.border-x-eva-dark-green-appt\/65 {
  border-left-color: rgba(102, 188, 130, 0.65);
  border-right-color: rgba(102, 188, 130, 0.65);
}

.border-x-eva-dark-green-appt\/70 {
  border-left-color: rgba(102, 188, 130, 0.7);
  border-right-color: rgba(102, 188, 130, 0.7);
}

.border-x-eva-dark-green-appt\/75 {
  border-left-color: rgba(102, 188, 130, 0.75);
  border-right-color: rgba(102, 188, 130, 0.75);
}

.border-x-eva-dark-green-appt\/80 {
  border-left-color: rgba(102, 188, 130, 0.8);
  border-right-color: rgba(102, 188, 130, 0.8);
}

.border-x-eva-dark-green-appt\/85 {
  border-left-color: rgba(102, 188, 130, 0.85);
  border-right-color: rgba(102, 188, 130, 0.85);
}

.border-x-eva-dark-green-appt\/90 {
  border-left-color: rgba(102, 188, 130, 0.9);
  border-right-color: rgba(102, 188, 130, 0.9);
}

.border-x-eva-dark-green-appt\/95 {
  border-left-color: rgba(102, 188, 130, 0.95);
  border-right-color: rgba(102, 188, 130, 0.95);
}

.border-x-eva-dark-red-appt {
  border-left-color: rgba(198, 102, 94, 1);
  border-right-color: rgba(198, 102, 94, 1);
}

.border-x-eva-dark-red-appt\/0 {
  border-left-color: rgba(198, 102, 94, 0);
  border-right-color: rgba(198, 102, 94, 0);
}

.border-x-eva-dark-red-appt\/10 {
  border-left-color: rgba(198, 102, 94, 0.1);
  border-right-color: rgba(198, 102, 94, 0.1);
}

.border-x-eva-dark-red-appt\/100 {
  border-left-color: rgba(198, 102, 94, 1);
  border-right-color: rgba(198, 102, 94, 1);
}

.border-x-eva-dark-red-appt\/15 {
  border-left-color: rgba(198, 102, 94, 0.15);
  border-right-color: rgba(198, 102, 94, 0.15);
}

.border-x-eva-dark-red-appt\/20 {
  border-left-color: rgba(198, 102, 94, 0.2);
  border-right-color: rgba(198, 102, 94, 0.2);
}

.border-x-eva-dark-red-appt\/25 {
  border-left-color: rgba(198, 102, 94, 0.25);
  border-right-color: rgba(198, 102, 94, 0.25);
}

.border-x-eva-dark-red-appt\/30 {
  border-left-color: rgba(198, 102, 94, 0.3);
  border-right-color: rgba(198, 102, 94, 0.3);
}

.border-x-eva-dark-red-appt\/35 {
  border-left-color: rgba(198, 102, 94, 0.35);
  border-right-color: rgba(198, 102, 94, 0.35);
}

.border-x-eva-dark-red-appt\/40 {
  border-left-color: rgba(198, 102, 94, 0.4);
  border-right-color: rgba(198, 102, 94, 0.4);
}

.border-x-eva-dark-red-appt\/45 {
  border-left-color: rgba(198, 102, 94, 0.45);
  border-right-color: rgba(198, 102, 94, 0.45);
}

.border-x-eva-dark-red-appt\/5 {
  border-left-color: rgba(198, 102, 94, 0.05);
  border-right-color: rgba(198, 102, 94, 0.05);
}

.border-x-eva-dark-red-appt\/50 {
  border-left-color: rgba(198, 102, 94, 0.5);
  border-right-color: rgba(198, 102, 94, 0.5);
}

.border-x-eva-dark-red-appt\/55 {
  border-left-color: rgba(198, 102, 94, 0.55);
  border-right-color: rgba(198, 102, 94, 0.55);
}

.border-x-eva-dark-red-appt\/60 {
  border-left-color: rgba(198, 102, 94, 0.6);
  border-right-color: rgba(198, 102, 94, 0.6);
}

.border-x-eva-dark-red-appt\/65 {
  border-left-color: rgba(198, 102, 94, 0.65);
  border-right-color: rgba(198, 102, 94, 0.65);
}

.border-x-eva-dark-red-appt\/70 {
  border-left-color: rgba(198, 102, 94, 0.7);
  border-right-color: rgba(198, 102, 94, 0.7);
}

.border-x-eva-dark-red-appt\/75 {
  border-left-color: rgba(198, 102, 94, 0.75);
  border-right-color: rgba(198, 102, 94, 0.75);
}

.border-x-eva-dark-red-appt\/80 {
  border-left-color: rgba(198, 102, 94, 0.8);
  border-right-color: rgba(198, 102, 94, 0.8);
}

.border-x-eva-dark-red-appt\/85 {
  border-left-color: rgba(198, 102, 94, 0.85);
  border-right-color: rgba(198, 102, 94, 0.85);
}

.border-x-eva-dark-red-appt\/90 {
  border-left-color: rgba(198, 102, 94, 0.9);
  border-right-color: rgba(198, 102, 94, 0.9);
}

.border-x-eva-dark-red-appt\/95 {
  border-left-color: rgba(198, 102, 94, 0.95);
  border-right-color: rgba(198, 102, 94, 0.95);
}

.border-x-eva-green {
  --tw-border-opacity: 1;
  border-left-color: rgb(73 181 168 / var(--tw-border-opacity, 1));
  border-right-color: rgb(73 181 168 / var(--tw-border-opacity, 1));
}

.border-x-eva-green-appt {
  --tw-border-opacity: 1;
  border-left-color: rgba(128, 215, 109, var(--tw-border-opacity, 1));
  border-right-color: rgba(128, 215, 109, var(--tw-border-opacity, 1));
}

.border-x-eva-green-appt\/0 {
  border-left-color: rgba(128, 215, 109, 0);
  border-right-color: rgba(128, 215, 109, 0);
}

.border-x-eva-green-appt\/10 {
  border-left-color: rgba(128, 215, 109, 0.1);
  border-right-color: rgba(128, 215, 109, 0.1);
}

.border-x-eva-green-appt\/100 {
  border-left-color: rgba(128, 215, 109, 1);
  border-right-color: rgba(128, 215, 109, 1);
}

.border-x-eva-green-appt\/15 {
  border-left-color: rgba(128, 215, 109, 0.15);
  border-right-color: rgba(128, 215, 109, 0.15);
}

.border-x-eva-green-appt\/20 {
  border-left-color: rgba(128, 215, 109, 0.2);
  border-right-color: rgba(128, 215, 109, 0.2);
}

.border-x-eva-green-appt\/25 {
  border-left-color: rgba(128, 215, 109, 0.25);
  border-right-color: rgba(128, 215, 109, 0.25);
}

.border-x-eva-green-appt\/30 {
  border-left-color: rgba(128, 215, 109, 0.3);
  border-right-color: rgba(128, 215, 109, 0.3);
}

.border-x-eva-green-appt\/35 {
  border-left-color: rgba(128, 215, 109, 0.35);
  border-right-color: rgba(128, 215, 109, 0.35);
}

.border-x-eva-green-appt\/40 {
  border-left-color: rgba(128, 215, 109, 0.4);
  border-right-color: rgba(128, 215, 109, 0.4);
}

.border-x-eva-green-appt\/45 {
  border-left-color: rgba(128, 215, 109, 0.45);
  border-right-color: rgba(128, 215, 109, 0.45);
}

.border-x-eva-green-appt\/5 {
  border-left-color: rgba(128, 215, 109, 0.05);
  border-right-color: rgba(128, 215, 109, 0.05);
}

.border-x-eva-green-appt\/50 {
  border-left-color: rgba(128, 215, 109, 0.5);
  border-right-color: rgba(128, 215, 109, 0.5);
}

.border-x-eva-green-appt\/55 {
  border-left-color: rgba(128, 215, 109, 0.55);
  border-right-color: rgba(128, 215, 109, 0.55);
}

.border-x-eva-green-appt\/60 {
  border-left-color: rgba(128, 215, 109, 0.6);
  border-right-color: rgba(128, 215, 109, 0.6);
}

.border-x-eva-green-appt\/65 {
  border-left-color: rgba(128, 215, 109, 0.65);
  border-right-color: rgba(128, 215, 109, 0.65);
}

.border-x-eva-green-appt\/70 {
  border-left-color: rgba(128, 215, 109, 0.7);
  border-right-color: rgba(128, 215, 109, 0.7);
}

.border-x-eva-green-appt\/75 {
  border-left-color: rgba(128, 215, 109, 0.75);
  border-right-color: rgba(128, 215, 109, 0.75);
}

.border-x-eva-green-appt\/80 {
  border-left-color: rgba(128, 215, 109, 0.8);
  border-right-color: rgba(128, 215, 109, 0.8);
}

.border-x-eva-green-appt\/85 {
  border-left-color: rgba(128, 215, 109, 0.85);
  border-right-color: rgba(128, 215, 109, 0.85);
}

.border-x-eva-green-appt\/90 {
  border-left-color: rgba(128, 215, 109, 0.9);
  border-right-color: rgba(128, 215, 109, 0.9);
}

.border-x-eva-green-appt\/95 {
  border-left-color: rgba(128, 215, 109, 0.95);
  border-right-color: rgba(128, 215, 109, 0.95);
}

.border-x-eva-green-brown-appt {
  border-left-color: rgba(197, 191, 140, 1);
  border-right-color: rgba(197, 191, 140, 1);
}

.border-x-eva-green-brown-appt\/0 {
  border-left-color: rgba(197, 191, 140, 0);
  border-right-color: rgba(197, 191, 140, 0);
}

.border-x-eva-green-brown-appt\/10 {
  border-left-color: rgba(197, 191, 140, 0.1);
  border-right-color: rgba(197, 191, 140, 0.1);
}

.border-x-eva-green-brown-appt\/100 {
  border-left-color: rgba(197, 191, 140, 1);
  border-right-color: rgba(197, 191, 140, 1);
}

.border-x-eva-green-brown-appt\/15 {
  border-left-color: rgba(197, 191, 140, 0.15);
  border-right-color: rgba(197, 191, 140, 0.15);
}

.border-x-eva-green-brown-appt\/20 {
  border-left-color: rgba(197, 191, 140, 0.2);
  border-right-color: rgba(197, 191, 140, 0.2);
}

.border-x-eva-green-brown-appt\/25 {
  border-left-color: rgba(197, 191, 140, 0.25);
  border-right-color: rgba(197, 191, 140, 0.25);
}

.border-x-eva-green-brown-appt\/30 {
  border-left-color: rgba(197, 191, 140, 0.3);
  border-right-color: rgba(197, 191, 140, 0.3);
}

.border-x-eva-green-brown-appt\/35 {
  border-left-color: rgba(197, 191, 140, 0.35);
  border-right-color: rgba(197, 191, 140, 0.35);
}

.border-x-eva-green-brown-appt\/40 {
  border-left-color: rgba(197, 191, 140, 0.4);
  border-right-color: rgba(197, 191, 140, 0.4);
}

.border-x-eva-green-brown-appt\/45 {
  border-left-color: rgba(197, 191, 140, 0.45);
  border-right-color: rgba(197, 191, 140, 0.45);
}

.border-x-eva-green-brown-appt\/5 {
  border-left-color: rgba(197, 191, 140, 0.05);
  border-right-color: rgba(197, 191, 140, 0.05);
}

.border-x-eva-green-brown-appt\/50 {
  border-left-color: rgba(197, 191, 140, 0.5);
  border-right-color: rgba(197, 191, 140, 0.5);
}

.border-x-eva-green-brown-appt\/55 {
  border-left-color: rgba(197, 191, 140, 0.55);
  border-right-color: rgba(197, 191, 140, 0.55);
}

.border-x-eva-green-brown-appt\/60 {
  border-left-color: rgba(197, 191, 140, 0.6);
  border-right-color: rgba(197, 191, 140, 0.6);
}

.border-x-eva-green-brown-appt\/65 {
  border-left-color: rgba(197, 191, 140, 0.65);
  border-right-color: rgba(197, 191, 140, 0.65);
}

.border-x-eva-green-brown-appt\/70 {
  border-left-color: rgba(197, 191, 140, 0.7);
  border-right-color: rgba(197, 191, 140, 0.7);
}

.border-x-eva-green-brown-appt\/75 {
  border-left-color: rgba(197, 191, 140, 0.75);
  border-right-color: rgba(197, 191, 140, 0.75);
}

.border-x-eva-green-brown-appt\/80 {
  border-left-color: rgba(197, 191, 140, 0.8);
  border-right-color: rgba(197, 191, 140, 0.8);
}

.border-x-eva-green-brown-appt\/85 {
  border-left-color: rgba(197, 191, 140, 0.85);
  border-right-color: rgba(197, 191, 140, 0.85);
}

.border-x-eva-green-brown-appt\/90 {
  border-left-color: rgba(197, 191, 140, 0.9);
  border-right-color: rgba(197, 191, 140, 0.9);
}

.border-x-eva-green-brown-appt\/95 {
  border-left-color: rgba(197, 191, 140, 0.95);
  border-right-color: rgba(197, 191, 140, 0.95);
}

.border-x-eva-green-hv {
  --tw-border-opacity: 1;
  border-left-color: rgb(63 156 144 / var(--tw-border-opacity, 1));
  border-right-color: rgb(63 156 144 / var(--tw-border-opacity, 1));
}

.border-x-eva-green-hv\/0 {
  border-left-color: rgb(63 156 144 / 0);
  border-right-color: rgb(63 156 144 / 0);
}

.border-x-eva-green-hv\/10 {
  border-left-color: rgb(63 156 144 / 0.1);
  border-right-color: rgb(63 156 144 / 0.1);
}

.border-x-eva-green-hv\/100 {
  border-left-color: rgb(63 156 144 / 1);
  border-right-color: rgb(63 156 144 / 1);
}

.border-x-eva-green-hv\/15 {
  border-left-color: rgb(63 156 144 / 0.15);
  border-right-color: rgb(63 156 144 / 0.15);
}

.border-x-eva-green-hv\/20 {
  border-left-color: rgb(63 156 144 / 0.2);
  border-right-color: rgb(63 156 144 / 0.2);
}

.border-x-eva-green-hv\/25 {
  border-left-color: rgb(63 156 144 / 0.25);
  border-right-color: rgb(63 156 144 / 0.25);
}

.border-x-eva-green-hv\/30 {
  border-left-color: rgb(63 156 144 / 0.3);
  border-right-color: rgb(63 156 144 / 0.3);
}

.border-x-eva-green-hv\/35 {
  border-left-color: rgb(63 156 144 / 0.35);
  border-right-color: rgb(63 156 144 / 0.35);
}

.border-x-eva-green-hv\/40 {
  border-left-color: rgb(63 156 144 / 0.4);
  border-right-color: rgb(63 156 144 / 0.4);
}

.border-x-eva-green-hv\/45 {
  border-left-color: rgb(63 156 144 / 0.45);
  border-right-color: rgb(63 156 144 / 0.45);
}

.border-x-eva-green-hv\/5 {
  border-left-color: rgb(63 156 144 / 0.05);
  border-right-color: rgb(63 156 144 / 0.05);
}

.border-x-eva-green-hv\/50 {
  border-left-color: rgb(63 156 144 / 0.5);
  border-right-color: rgb(63 156 144 / 0.5);
}

.border-x-eva-green-hv\/55 {
  border-left-color: rgb(63 156 144 / 0.55);
  border-right-color: rgb(63 156 144 / 0.55);
}

.border-x-eva-green-hv\/60 {
  border-left-color: rgb(63 156 144 / 0.6);
  border-right-color: rgb(63 156 144 / 0.6);
}

.border-x-eva-green-hv\/65 {
  border-left-color: rgb(63 156 144 / 0.65);
  border-right-color: rgb(63 156 144 / 0.65);
}

.border-x-eva-green-hv\/70 {
  border-left-color: rgb(63 156 144 / 0.7);
  border-right-color: rgb(63 156 144 / 0.7);
}

.border-x-eva-green-hv\/75 {
  border-left-color: rgb(63 156 144 / 0.75);
  border-right-color: rgb(63 156 144 / 0.75);
}

.border-x-eva-green-hv\/80 {
  border-left-color: rgb(63 156 144 / 0.8);
  border-right-color: rgb(63 156 144 / 0.8);
}

.border-x-eva-green-hv\/85 {
  border-left-color: rgb(63 156 144 / 0.85);
  border-right-color: rgb(63 156 144 / 0.85);
}

.border-x-eva-green-hv\/90 {
  border-left-color: rgb(63 156 144 / 0.9);
  border-right-color: rgb(63 156 144 / 0.9);
}

.border-x-eva-green-hv\/95 {
  border-left-color: rgb(63 156 144 / 0.95);
  border-right-color: rgb(63 156 144 / 0.95);
}

.border-x-eva-green\/0 {
  border-left-color: rgb(73 181 168 / 0);
  border-right-color: rgb(73 181 168 / 0);
}

.border-x-eva-green\/10 {
  border-left-color: rgb(73 181 168 / 0.1);
  border-right-color: rgb(73 181 168 / 0.1);
}

.border-x-eva-green\/100 {
  border-left-color: rgb(73 181 168 / 1);
  border-right-color: rgb(73 181 168 / 1);
}

.border-x-eva-green\/15 {
  border-left-color: rgb(73 181 168 / 0.15);
  border-right-color: rgb(73 181 168 / 0.15);
}

.border-x-eva-green\/20 {
  border-left-color: rgb(73 181 168 / 0.2);
  border-right-color: rgb(73 181 168 / 0.2);
}

.border-x-eva-green\/25 {
  border-left-color: rgb(73 181 168 / 0.25);
  border-right-color: rgb(73 181 168 / 0.25);
}

.border-x-eva-green\/30 {
  border-left-color: rgb(73 181 168 / 0.3);
  border-right-color: rgb(73 181 168 / 0.3);
}

.border-x-eva-green\/35 {
  border-left-color: rgb(73 181 168 / 0.35);
  border-right-color: rgb(73 181 168 / 0.35);
}

.border-x-eva-green\/40 {
  border-left-color: rgb(73 181 168 / 0.4);
  border-right-color: rgb(73 181 168 / 0.4);
}

.border-x-eva-green\/45 {
  border-left-color: rgb(73 181 168 / 0.45);
  border-right-color: rgb(73 181 168 / 0.45);
}

.border-x-eva-green\/5 {
  border-left-color: rgb(73 181 168 / 0.05);
  border-right-color: rgb(73 181 168 / 0.05);
}

.border-x-eva-green\/50 {
  border-left-color: rgb(73 181 168 / 0.5);
  border-right-color: rgb(73 181 168 / 0.5);
}

.border-x-eva-green\/55 {
  border-left-color: rgb(73 181 168 / 0.55);
  border-right-color: rgb(73 181 168 / 0.55);
}

.border-x-eva-green\/60 {
  border-left-color: rgb(73 181 168 / 0.6);
  border-right-color: rgb(73 181 168 / 0.6);
}

.border-x-eva-green\/65 {
  border-left-color: rgb(73 181 168 / 0.65);
  border-right-color: rgb(73 181 168 / 0.65);
}

.border-x-eva-green\/70 {
  border-left-color: rgb(73 181 168 / 0.7);
  border-right-color: rgb(73 181 168 / 0.7);
}

.border-x-eva-green\/75 {
  border-left-color: rgb(73 181 168 / 0.75);
  border-right-color: rgb(73 181 168 / 0.75);
}

.border-x-eva-green\/80 {
  border-left-color: rgb(73 181 168 / 0.8);
  border-right-color: rgb(73 181 168 / 0.8);
}

.border-x-eva-green\/85 {
  border-left-color: rgb(73 181 168 / 0.85);
  border-right-color: rgb(73 181 168 / 0.85);
}

.border-x-eva-green\/90 {
  border-left-color: rgb(73 181 168 / 0.9);
  border-right-color: rgb(73 181 168 / 0.9);
}

.border-x-eva-green\/95 {
  border-left-color: rgb(73 181 168 / 0.95);
  border-right-color: rgb(73 181 168 / 0.95);
}

.border-x-eva-lavender-appt {
  border-left-color: rgba(169, 124, 165, 1);
  border-right-color: rgba(169, 124, 165, 1);
}

.border-x-eva-lavender-appt\/0 {
  border-left-color: rgba(169, 124, 165, 0);
  border-right-color: rgba(169, 124, 165, 0);
}

.border-x-eva-lavender-appt\/10 {
  border-left-color: rgba(169, 124, 165, 0.1);
  border-right-color: rgba(169, 124, 165, 0.1);
}

.border-x-eva-lavender-appt\/100 {
  border-left-color: rgba(169, 124, 165, 1);
  border-right-color: rgba(169, 124, 165, 1);
}

.border-x-eva-lavender-appt\/15 {
  border-left-color: rgba(169, 124, 165, 0.15);
  border-right-color: rgba(169, 124, 165, 0.15);
}

.border-x-eva-lavender-appt\/20 {
  border-left-color: rgba(169, 124, 165, 0.2);
  border-right-color: rgba(169, 124, 165, 0.2);
}

.border-x-eva-lavender-appt\/25 {
  border-left-color: rgba(169, 124, 165, 0.25);
  border-right-color: rgba(169, 124, 165, 0.25);
}

.border-x-eva-lavender-appt\/30 {
  border-left-color: rgba(169, 124, 165, 0.3);
  border-right-color: rgba(169, 124, 165, 0.3);
}

.border-x-eva-lavender-appt\/35 {
  border-left-color: rgba(169, 124, 165, 0.35);
  border-right-color: rgba(169, 124, 165, 0.35);
}

.border-x-eva-lavender-appt\/40 {
  border-left-color: rgba(169, 124, 165, 0.4);
  border-right-color: rgba(169, 124, 165, 0.4);
}

.border-x-eva-lavender-appt\/45 {
  border-left-color: rgba(169, 124, 165, 0.45);
  border-right-color: rgba(169, 124, 165, 0.45);
}

.border-x-eva-lavender-appt\/5 {
  border-left-color: rgba(169, 124, 165, 0.05);
  border-right-color: rgba(169, 124, 165, 0.05);
}

.border-x-eva-lavender-appt\/50 {
  border-left-color: rgba(169, 124, 165, 0.5);
  border-right-color: rgba(169, 124, 165, 0.5);
}

.border-x-eva-lavender-appt\/55 {
  border-left-color: rgba(169, 124, 165, 0.55);
  border-right-color: rgba(169, 124, 165, 0.55);
}

.border-x-eva-lavender-appt\/60 {
  border-left-color: rgba(169, 124, 165, 0.6);
  border-right-color: rgba(169, 124, 165, 0.6);
}

.border-x-eva-lavender-appt\/65 {
  border-left-color: rgba(169, 124, 165, 0.65);
  border-right-color: rgba(169, 124, 165, 0.65);
}

.border-x-eva-lavender-appt\/70 {
  border-left-color: rgba(169, 124, 165, 0.7);
  border-right-color: rgba(169, 124, 165, 0.7);
}

.border-x-eva-lavender-appt\/75 {
  border-left-color: rgba(169, 124, 165, 0.75);
  border-right-color: rgba(169, 124, 165, 0.75);
}

.border-x-eva-lavender-appt\/80 {
  border-left-color: rgba(169, 124, 165, 0.8);
  border-right-color: rgba(169, 124, 165, 0.8);
}

.border-x-eva-lavender-appt\/85 {
  border-left-color: rgba(169, 124, 165, 0.85);
  border-right-color: rgba(169, 124, 165, 0.85);
}

.border-x-eva-lavender-appt\/90 {
  border-left-color: rgba(169, 124, 165, 0.9);
  border-right-color: rgba(169, 124, 165, 0.9);
}

.border-x-eva-lavender-appt\/95 {
  border-left-color: rgba(169, 124, 165, 0.95);
  border-right-color: rgba(169, 124, 165, 0.95);
}

.border-x-eva-magenta-appt {
  border-left-color: rgba(223, 91, 146, 1);
  border-right-color: rgba(223, 91, 146, 1);
}

.border-x-eva-magenta-appt\/0 {
  border-left-color: rgba(223, 91, 146, 0);
  border-right-color: rgba(223, 91, 146, 0);
}

.border-x-eva-magenta-appt\/10 {
  border-left-color: rgba(223, 91, 146, 0.1);
  border-right-color: rgba(223, 91, 146, 0.1);
}

.border-x-eva-magenta-appt\/100 {
  border-left-color: rgba(223, 91, 146, 1);
  border-right-color: rgba(223, 91, 146, 1);
}

.border-x-eva-magenta-appt\/15 {
  border-left-color: rgba(223, 91, 146, 0.15);
  border-right-color: rgba(223, 91, 146, 0.15);
}

.border-x-eva-magenta-appt\/20 {
  border-left-color: rgba(223, 91, 146, 0.2);
  border-right-color: rgba(223, 91, 146, 0.2);
}

.border-x-eva-magenta-appt\/25 {
  border-left-color: rgba(223, 91, 146, 0.25);
  border-right-color: rgba(223, 91, 146, 0.25);
}

.border-x-eva-magenta-appt\/30 {
  border-left-color: rgba(223, 91, 146, 0.3);
  border-right-color: rgba(223, 91, 146, 0.3);
}

.border-x-eva-magenta-appt\/35 {
  border-left-color: rgba(223, 91, 146, 0.35);
  border-right-color: rgba(223, 91, 146, 0.35);
}

.border-x-eva-magenta-appt\/40 {
  border-left-color: rgba(223, 91, 146, 0.4);
  border-right-color: rgba(223, 91, 146, 0.4);
}

.border-x-eva-magenta-appt\/45 {
  border-left-color: rgba(223, 91, 146, 0.45);
  border-right-color: rgba(223, 91, 146, 0.45);
}

.border-x-eva-magenta-appt\/5 {
  border-left-color: rgba(223, 91, 146, 0.05);
  border-right-color: rgba(223, 91, 146, 0.05);
}

.border-x-eva-magenta-appt\/50 {
  border-left-color: rgba(223, 91, 146, 0.5);
  border-right-color: rgba(223, 91, 146, 0.5);
}

.border-x-eva-magenta-appt\/55 {
  border-left-color: rgba(223, 91, 146, 0.55);
  border-right-color: rgba(223, 91, 146, 0.55);
}

.border-x-eva-magenta-appt\/60 {
  border-left-color: rgba(223, 91, 146, 0.6);
  border-right-color: rgba(223, 91, 146, 0.6);
}

.border-x-eva-magenta-appt\/65 {
  border-left-color: rgba(223, 91, 146, 0.65);
  border-right-color: rgba(223, 91, 146, 0.65);
}

.border-x-eva-magenta-appt\/70 {
  border-left-color: rgba(223, 91, 146, 0.7);
  border-right-color: rgba(223, 91, 146, 0.7);
}

.border-x-eva-magenta-appt\/75 {
  border-left-color: rgba(223, 91, 146, 0.75);
  border-right-color: rgba(223, 91, 146, 0.75);
}

.border-x-eva-magenta-appt\/80 {
  border-left-color: rgba(223, 91, 146, 0.8);
  border-right-color: rgba(223, 91, 146, 0.8);
}

.border-x-eva-magenta-appt\/85 {
  border-left-color: rgba(223, 91, 146, 0.85);
  border-right-color: rgba(223, 91, 146, 0.85);
}

.border-x-eva-magenta-appt\/90 {
  border-left-color: rgba(223, 91, 146, 0.9);
  border-right-color: rgba(223, 91, 146, 0.9);
}

.border-x-eva-magenta-appt\/95 {
  border-left-color: rgba(223, 91, 146, 0.95);
  border-right-color: rgba(223, 91, 146, 0.95);
}

.border-x-eva-orange-appt {
  border-left-color: rgba(232, 176, 99, 1);
  border-right-color: rgba(232, 176, 99, 1);
}

.border-x-eva-orange-appt\/0 {
  border-left-color: rgba(232, 176, 99, 0);
  border-right-color: rgba(232, 176, 99, 0);
}

.border-x-eva-orange-appt\/10 {
  border-left-color: rgba(232, 176, 99, 0.1);
  border-right-color: rgba(232, 176, 99, 0.1);
}

.border-x-eva-orange-appt\/100 {
  border-left-color: rgba(232, 176, 99, 1);
  border-right-color: rgba(232, 176, 99, 1);
}

.border-x-eva-orange-appt\/15 {
  border-left-color: rgba(232, 176, 99, 0.15);
  border-right-color: rgba(232, 176, 99, 0.15);
}

.border-x-eva-orange-appt\/20 {
  border-left-color: rgba(232, 176, 99, 0.2);
  border-right-color: rgba(232, 176, 99, 0.2);
}

.border-x-eva-orange-appt\/25 {
  border-left-color: rgba(232, 176, 99, 0.25);
  border-right-color: rgba(232, 176, 99, 0.25);
}

.border-x-eva-orange-appt\/30 {
  border-left-color: rgba(232, 176, 99, 0.3);
  border-right-color: rgba(232, 176, 99, 0.3);
}

.border-x-eva-orange-appt\/35 {
  border-left-color: rgba(232, 176, 99, 0.35);
  border-right-color: rgba(232, 176, 99, 0.35);
}

.border-x-eva-orange-appt\/40 {
  border-left-color: rgba(232, 176, 99, 0.4);
  border-right-color: rgba(232, 176, 99, 0.4);
}

.border-x-eva-orange-appt\/45 {
  border-left-color: rgba(232, 176, 99, 0.45);
  border-right-color: rgba(232, 176, 99, 0.45);
}

.border-x-eva-orange-appt\/5 {
  border-left-color: rgba(232, 176, 99, 0.05);
  border-right-color: rgba(232, 176, 99, 0.05);
}

.border-x-eva-orange-appt\/50 {
  border-left-color: rgba(232, 176, 99, 0.5);
  border-right-color: rgba(232, 176, 99, 0.5);
}

.border-x-eva-orange-appt\/55 {
  border-left-color: rgba(232, 176, 99, 0.55);
  border-right-color: rgba(232, 176, 99, 0.55);
}

.border-x-eva-orange-appt\/60 {
  border-left-color: rgba(232, 176, 99, 0.6);
  border-right-color: rgba(232, 176, 99, 0.6);
}

.border-x-eva-orange-appt\/65 {
  border-left-color: rgba(232, 176, 99, 0.65);
  border-right-color: rgba(232, 176, 99, 0.65);
}

.border-x-eva-orange-appt\/70 {
  border-left-color: rgba(232, 176, 99, 0.7);
  border-right-color: rgba(232, 176, 99, 0.7);
}

.border-x-eva-orange-appt\/75 {
  border-left-color: rgba(232, 176, 99, 0.75);
  border-right-color: rgba(232, 176, 99, 0.75);
}

.border-x-eva-orange-appt\/80 {
  border-left-color: rgba(232, 176, 99, 0.8);
  border-right-color: rgba(232, 176, 99, 0.8);
}

.border-x-eva-orange-appt\/85 {
  border-left-color: rgba(232, 176, 99, 0.85);
  border-right-color: rgba(232, 176, 99, 0.85);
}

.border-x-eva-orange-appt\/90 {
  border-left-color: rgba(232, 176, 99, 0.9);
  border-right-color: rgba(232, 176, 99, 0.9);
}

.border-x-eva-orange-appt\/95 {
  border-left-color: rgba(232, 176, 99, 0.95);
  border-right-color: rgba(232, 176, 99, 0.95);
}

.border-x-eva-purple-appt {
  border-left-color: rgba(125, 117, 164, 1);
  border-right-color: rgba(125, 117, 164, 1);
}

.border-x-eva-purple-appt\/0 {
  border-left-color: rgba(125, 117, 164, 0);
  border-right-color: rgba(125, 117, 164, 0);
}

.border-x-eva-purple-appt\/10 {
  border-left-color: rgba(125, 117, 164, 0.1);
  border-right-color: rgba(125, 117, 164, 0.1);
}

.border-x-eva-purple-appt\/100 {
  border-left-color: rgba(125, 117, 164, 1);
  border-right-color: rgba(125, 117, 164, 1);
}

.border-x-eva-purple-appt\/15 {
  border-left-color: rgba(125, 117, 164, 0.15);
  border-right-color: rgba(125, 117, 164, 0.15);
}

.border-x-eva-purple-appt\/20 {
  border-left-color: rgba(125, 117, 164, 0.2);
  border-right-color: rgba(125, 117, 164, 0.2);
}

.border-x-eva-purple-appt\/25 {
  border-left-color: rgba(125, 117, 164, 0.25);
  border-right-color: rgba(125, 117, 164, 0.25);
}

.border-x-eva-purple-appt\/30 {
  border-left-color: rgba(125, 117, 164, 0.3);
  border-right-color: rgba(125, 117, 164, 0.3);
}

.border-x-eva-purple-appt\/35 {
  border-left-color: rgba(125, 117, 164, 0.35);
  border-right-color: rgba(125, 117, 164, 0.35);
}

.border-x-eva-purple-appt\/40 {
  border-left-color: rgba(125, 117, 164, 0.4);
  border-right-color: rgba(125, 117, 164, 0.4);
}

.border-x-eva-purple-appt\/45 {
  border-left-color: rgba(125, 117, 164, 0.45);
  border-right-color: rgba(125, 117, 164, 0.45);
}

.border-x-eva-purple-appt\/5 {
  border-left-color: rgba(125, 117, 164, 0.05);
  border-right-color: rgba(125, 117, 164, 0.05);
}

.border-x-eva-purple-appt\/50 {
  border-left-color: rgba(125, 117, 164, 0.5);
  border-right-color: rgba(125, 117, 164, 0.5);
}

.border-x-eva-purple-appt\/55 {
  border-left-color: rgba(125, 117, 164, 0.55);
  border-right-color: rgba(125, 117, 164, 0.55);
}

.border-x-eva-purple-appt\/60 {
  border-left-color: rgba(125, 117, 164, 0.6);
  border-right-color: rgba(125, 117, 164, 0.6);
}

.border-x-eva-purple-appt\/65 {
  border-left-color: rgba(125, 117, 164, 0.65);
  border-right-color: rgba(125, 117, 164, 0.65);
}

.border-x-eva-purple-appt\/70 {
  border-left-color: rgba(125, 117, 164, 0.7);
  border-right-color: rgba(125, 117, 164, 0.7);
}

.border-x-eva-purple-appt\/75 {
  border-left-color: rgba(125, 117, 164, 0.75);
  border-right-color: rgba(125, 117, 164, 0.75);
}

.border-x-eva-purple-appt\/80 {
  border-left-color: rgba(125, 117, 164, 0.8);
  border-right-color: rgba(125, 117, 164, 0.8);
}

.border-x-eva-purple-appt\/85 {
  border-left-color: rgba(125, 117, 164, 0.85);
  border-right-color: rgba(125, 117, 164, 0.85);
}

.border-x-eva-purple-appt\/90 {
  border-left-color: rgba(125, 117, 164, 0.9);
  border-right-color: rgba(125, 117, 164, 0.9);
}

.border-x-eva-purple-appt\/95 {
  border-left-color: rgba(125, 117, 164, 0.95);
  border-right-color: rgba(125, 117, 164, 0.95);
}

.border-x-eva-red {
  --tw-border-opacity: 1;
  border-left-color: rgb(234 101 101 / var(--tw-border-opacity, 1));
  border-right-color: rgb(234 101 101 / var(--tw-border-opacity, 1));
}

.border-x-eva-red-appt {
  border-left-color: rgba(243, 63, 77, 1);
  border-right-color: rgba(243, 63, 77, 1);
}

.border-x-eva-red-appt\/0 {
  border-left-color: rgba(243, 63, 77, 0);
  border-right-color: rgba(243, 63, 77, 0);
}

.border-x-eva-red-appt\/10 {
  border-left-color: rgba(243, 63, 77, 0.1);
  border-right-color: rgba(243, 63, 77, 0.1);
}

.border-x-eva-red-appt\/100 {
  border-left-color: rgba(243, 63, 77, 1);
  border-right-color: rgba(243, 63, 77, 1);
}

.border-x-eva-red-appt\/15 {
  border-left-color: rgba(243, 63, 77, 0.15);
  border-right-color: rgba(243, 63, 77, 0.15);
}

.border-x-eva-red-appt\/20 {
  border-left-color: rgba(243, 63, 77, 0.2);
  border-right-color: rgba(243, 63, 77, 0.2);
}

.border-x-eva-red-appt\/25 {
  border-left-color: rgba(243, 63, 77, 0.25);
  border-right-color: rgba(243, 63, 77, 0.25);
}

.border-x-eva-red-appt\/30 {
  border-left-color: rgba(243, 63, 77, 0.3);
  border-right-color: rgba(243, 63, 77, 0.3);
}

.border-x-eva-red-appt\/35 {
  border-left-color: rgba(243, 63, 77, 0.35);
  border-right-color: rgba(243, 63, 77, 0.35);
}

.border-x-eva-red-appt\/40 {
  border-left-color: rgba(243, 63, 77, 0.4);
  border-right-color: rgba(243, 63, 77, 0.4);
}

.border-x-eva-red-appt\/45 {
  border-left-color: rgba(243, 63, 77, 0.45);
  border-right-color: rgba(243, 63, 77, 0.45);
}

.border-x-eva-red-appt\/5 {
  border-left-color: rgba(243, 63, 77, 0.05);
  border-right-color: rgba(243, 63, 77, 0.05);
}

.border-x-eva-red-appt\/50 {
  border-left-color: rgba(243, 63, 77, 0.5);
  border-right-color: rgba(243, 63, 77, 0.5);
}

.border-x-eva-red-appt\/55 {
  border-left-color: rgba(243, 63, 77, 0.55);
  border-right-color: rgba(243, 63, 77, 0.55);
}

.border-x-eva-red-appt\/60 {
  border-left-color: rgba(243, 63, 77, 0.6);
  border-right-color: rgba(243, 63, 77, 0.6);
}

.border-x-eva-red-appt\/65 {
  border-left-color: rgba(243, 63, 77, 0.65);
  border-right-color: rgba(243, 63, 77, 0.65);
}

.border-x-eva-red-appt\/70 {
  border-left-color: rgba(243, 63, 77, 0.7);
  border-right-color: rgba(243, 63, 77, 0.7);
}

.border-x-eva-red-appt\/75 {
  border-left-color: rgba(243, 63, 77, 0.75);
  border-right-color: rgba(243, 63, 77, 0.75);
}

.border-x-eva-red-appt\/80 {
  border-left-color: rgba(243, 63, 77, 0.8);
  border-right-color: rgba(243, 63, 77, 0.8);
}

.border-x-eva-red-appt\/85 {
  border-left-color: rgba(243, 63, 77, 0.85);
  border-right-color: rgba(243, 63, 77, 0.85);
}

.border-x-eva-red-appt\/90 {
  border-left-color: rgba(243, 63, 77, 0.9);
  border-right-color: rgba(243, 63, 77, 0.9);
}

.border-x-eva-red-appt\/95 {
  border-left-color: rgba(243, 63, 77, 0.95);
  border-right-color: rgba(243, 63, 77, 0.95);
}

.border-x-eva-red-orange-appt {
  border-left-color: rgba(217, 154, 118, 1);
  border-right-color: rgba(217, 154, 118, 1);
}

.border-x-eva-red-orange-appt\/0 {
  border-left-color: rgba(217, 154, 118, 0);
  border-right-color: rgba(217, 154, 118, 0);
}

.border-x-eva-red-orange-appt\/10 {
  border-left-color: rgba(217, 154, 118, 0.1);
  border-right-color: rgba(217, 154, 118, 0.1);
}

.border-x-eva-red-orange-appt\/100 {
  border-left-color: rgba(217, 154, 118, 1);
  border-right-color: rgba(217, 154, 118, 1);
}

.border-x-eva-red-orange-appt\/15 {
  border-left-color: rgba(217, 154, 118, 0.15);
  border-right-color: rgba(217, 154, 118, 0.15);
}

.border-x-eva-red-orange-appt\/20 {
  border-left-color: rgba(217, 154, 118, 0.2);
  border-right-color: rgba(217, 154, 118, 0.2);
}

.border-x-eva-red-orange-appt\/25 {
  border-left-color: rgba(217, 154, 118, 0.25);
  border-right-color: rgba(217, 154, 118, 0.25);
}

.border-x-eva-red-orange-appt\/30 {
  border-left-color: rgba(217, 154, 118, 0.3);
  border-right-color: rgba(217, 154, 118, 0.3);
}

.border-x-eva-red-orange-appt\/35 {
  border-left-color: rgba(217, 154, 118, 0.35);
  border-right-color: rgba(217, 154, 118, 0.35);
}

.border-x-eva-red-orange-appt\/40 {
  border-left-color: rgba(217, 154, 118, 0.4);
  border-right-color: rgba(217, 154, 118, 0.4);
}

.border-x-eva-red-orange-appt\/45 {
  border-left-color: rgba(217, 154, 118, 0.45);
  border-right-color: rgba(217, 154, 118, 0.45);
}

.border-x-eva-red-orange-appt\/5 {
  border-left-color: rgba(217, 154, 118, 0.05);
  border-right-color: rgba(217, 154, 118, 0.05);
}

.border-x-eva-red-orange-appt\/50 {
  border-left-color: rgba(217, 154, 118, 0.5);
  border-right-color: rgba(217, 154, 118, 0.5);
}

.border-x-eva-red-orange-appt\/55 {
  border-left-color: rgba(217, 154, 118, 0.55);
  border-right-color: rgba(217, 154, 118, 0.55);
}

.border-x-eva-red-orange-appt\/60 {
  border-left-color: rgba(217, 154, 118, 0.6);
  border-right-color: rgba(217, 154, 118, 0.6);
}

.border-x-eva-red-orange-appt\/65 {
  border-left-color: rgba(217, 154, 118, 0.65);
  border-right-color: rgba(217, 154, 118, 0.65);
}

.border-x-eva-red-orange-appt\/70 {
  border-left-color: rgba(217, 154, 118, 0.7);
  border-right-color: rgba(217, 154, 118, 0.7);
}

.border-x-eva-red-orange-appt\/75 {
  border-left-color: rgba(217, 154, 118, 0.75);
  border-right-color: rgba(217, 154, 118, 0.75);
}

.border-x-eva-red-orange-appt\/80 {
  border-left-color: rgba(217, 154, 118, 0.8);
  border-right-color: rgba(217, 154, 118, 0.8);
}

.border-x-eva-red-orange-appt\/85 {
  border-left-color: rgba(217, 154, 118, 0.85);
  border-right-color: rgba(217, 154, 118, 0.85);
}

.border-x-eva-red-orange-appt\/90 {
  border-left-color: rgba(217, 154, 118, 0.9);
  border-right-color: rgba(217, 154, 118, 0.9);
}

.border-x-eva-red-orange-appt\/95 {
  border-left-color: rgba(217, 154, 118, 0.95);
  border-right-color: rgba(217, 154, 118, 0.95);
}

.border-x-eva-red\/0 {
  border-left-color: rgb(234 101 101 / 0);
  border-right-color: rgb(234 101 101 / 0);
}

.border-x-eva-red\/10 {
  border-left-color: rgb(234 101 101 / 0.1);
  border-right-color: rgb(234 101 101 / 0.1);
}

.border-x-eva-red\/100 {
  border-left-color: rgb(234 101 101 / 1);
  border-right-color: rgb(234 101 101 / 1);
}

.border-x-eva-red\/15 {
  border-left-color: rgb(234 101 101 / 0.15);
  border-right-color: rgb(234 101 101 / 0.15);
}

.border-x-eva-red\/20 {
  border-left-color: rgb(234 101 101 / 0.2);
  border-right-color: rgb(234 101 101 / 0.2);
}

.border-x-eva-red\/25 {
  border-left-color: rgb(234 101 101 / 0.25);
  border-right-color: rgb(234 101 101 / 0.25);
}

.border-x-eva-red\/30 {
  border-left-color: rgb(234 101 101 / 0.3);
  border-right-color: rgb(234 101 101 / 0.3);
}

.border-x-eva-red\/35 {
  border-left-color: rgb(234 101 101 / 0.35);
  border-right-color: rgb(234 101 101 / 0.35);
}

.border-x-eva-red\/40 {
  border-left-color: rgb(234 101 101 / 0.4);
  border-right-color: rgb(234 101 101 / 0.4);
}

.border-x-eva-red\/45 {
  border-left-color: rgb(234 101 101 / 0.45);
  border-right-color: rgb(234 101 101 / 0.45);
}

.border-x-eva-red\/5 {
  border-left-color: rgb(234 101 101 / 0.05);
  border-right-color: rgb(234 101 101 / 0.05);
}

.border-x-eva-red\/50 {
  border-left-color: rgb(234 101 101 / 0.5);
  border-right-color: rgb(234 101 101 / 0.5);
}

.border-x-eva-red\/55 {
  border-left-color: rgb(234 101 101 / 0.55);
  border-right-color: rgb(234 101 101 / 0.55);
}

.border-x-eva-red\/60 {
  border-left-color: rgb(234 101 101 / 0.6);
  border-right-color: rgb(234 101 101 / 0.6);
}

.border-x-eva-red\/65 {
  border-left-color: rgb(234 101 101 / 0.65);
  border-right-color: rgb(234 101 101 / 0.65);
}

.border-x-eva-red\/70 {
  border-left-color: rgb(234 101 101 / 0.7);
  border-right-color: rgb(234 101 101 / 0.7);
}

.border-x-eva-red\/75 {
  border-left-color: rgb(234 101 101 / 0.75);
  border-right-color: rgb(234 101 101 / 0.75);
}

.border-x-eva-red\/80 {
  border-left-color: rgb(234 101 101 / 0.8);
  border-right-color: rgb(234 101 101 / 0.8);
}

.border-x-eva-red\/85 {
  border-left-color: rgb(234 101 101 / 0.85);
  border-right-color: rgb(234 101 101 / 0.85);
}

.border-x-eva-red\/90 {
  border-left-color: rgb(234 101 101 / 0.9);
  border-right-color: rgb(234 101 101 / 0.9);
}

.border-x-eva-red\/95 {
  border-left-color: rgb(234 101 101 / 0.95);
  border-right-color: rgb(234 101 101 / 0.95);
}

.border-x-eva-teal-appt {
  --tw-border-opacity: 1;
  border-left-color: rgba(22, 172, 151, var(--tw-border-opacity, 1));
  border-right-color: rgba(22, 172, 151, var(--tw-border-opacity, 1));
}

.border-x-eva-teal-appt\/0 {
  border-left-color: rgba(22, 172, 151, 0);
  border-right-color: rgba(22, 172, 151, 0);
}

.border-x-eva-teal-appt\/10 {
  border-left-color: rgba(22, 172, 151, 0.1);
  border-right-color: rgba(22, 172, 151, 0.1);
}

.border-x-eva-teal-appt\/100 {
  border-left-color: rgba(22, 172, 151, 1);
  border-right-color: rgba(22, 172, 151, 1);
}

.border-x-eva-teal-appt\/15 {
  border-left-color: rgba(22, 172, 151, 0.15);
  border-right-color: rgba(22, 172, 151, 0.15);
}

.border-x-eva-teal-appt\/20 {
  border-left-color: rgba(22, 172, 151, 0.2);
  border-right-color: rgba(22, 172, 151, 0.2);
}

.border-x-eva-teal-appt\/25 {
  border-left-color: rgba(22, 172, 151, 0.25);
  border-right-color: rgba(22, 172, 151, 0.25);
}

.border-x-eva-teal-appt\/30 {
  border-left-color: rgba(22, 172, 151, 0.3);
  border-right-color: rgba(22, 172, 151, 0.3);
}

.border-x-eva-teal-appt\/35 {
  border-left-color: rgba(22, 172, 151, 0.35);
  border-right-color: rgba(22, 172, 151, 0.35);
}

.border-x-eva-teal-appt\/40 {
  border-left-color: rgba(22, 172, 151, 0.4);
  border-right-color: rgba(22, 172, 151, 0.4);
}

.border-x-eva-teal-appt\/45 {
  border-left-color: rgba(22, 172, 151, 0.45);
  border-right-color: rgba(22, 172, 151, 0.45);
}

.border-x-eva-teal-appt\/5 {
  border-left-color: rgba(22, 172, 151, 0.05);
  border-right-color: rgba(22, 172, 151, 0.05);
}

.border-x-eva-teal-appt\/50 {
  border-left-color: rgba(22, 172, 151, 0.5);
  border-right-color: rgba(22, 172, 151, 0.5);
}

.border-x-eva-teal-appt\/55 {
  border-left-color: rgba(22, 172, 151, 0.55);
  border-right-color: rgba(22, 172, 151, 0.55);
}

.border-x-eva-teal-appt\/60 {
  border-left-color: rgba(22, 172, 151, 0.6);
  border-right-color: rgba(22, 172, 151, 0.6);
}

.border-x-eva-teal-appt\/65 {
  border-left-color: rgba(22, 172, 151, 0.65);
  border-right-color: rgba(22, 172, 151, 0.65);
}

.border-x-eva-teal-appt\/70 {
  border-left-color: rgba(22, 172, 151, 0.7);
  border-right-color: rgba(22, 172, 151, 0.7);
}

.border-x-eva-teal-appt\/75 {
  border-left-color: rgba(22, 172, 151, 0.75);
  border-right-color: rgba(22, 172, 151, 0.75);
}

.border-x-eva-teal-appt\/80 {
  border-left-color: rgba(22, 172, 151, 0.8);
  border-right-color: rgba(22, 172, 151, 0.8);
}

.border-x-eva-teal-appt\/85 {
  border-left-color: rgba(22, 172, 151, 0.85);
  border-right-color: rgba(22, 172, 151, 0.85);
}

.border-x-eva-teal-appt\/90 {
  border-left-color: rgba(22, 172, 151, 0.9);
  border-right-color: rgba(22, 172, 151, 0.9);
}

.border-x-eva-teal-appt\/95 {
  border-left-color: rgba(22, 172, 151, 0.95);
  border-right-color: rgba(22, 172, 151, 0.95);
}

.border-x-eva-yellow {
  --tw-border-opacity: 1;
  border-left-color: rgb(233 179 98 / var(--tw-border-opacity, 1));
  border-right-color: rgb(233 179 98 / var(--tw-border-opacity, 1));
}

.border-x-eva-yellow-appt {
  border-left-color: rgba(240, 226, 0, 1);
  border-right-color: rgba(240, 226, 0, 1);
}

.border-x-eva-yellow-appt\/0 {
  border-left-color: rgba(240, 226, 0, 0);
  border-right-color: rgba(240, 226, 0, 0);
}

.border-x-eva-yellow-appt\/10 {
  border-left-color: rgba(240, 226, 0, 0.1);
  border-right-color: rgba(240, 226, 0, 0.1);
}

.border-x-eva-yellow-appt\/100 {
  border-left-color: rgba(240, 226, 0, 1);
  border-right-color: rgba(240, 226, 0, 1);
}

.border-x-eva-yellow-appt\/15 {
  border-left-color: rgba(240, 226, 0, 0.15);
  border-right-color: rgba(240, 226, 0, 0.15);
}

.border-x-eva-yellow-appt\/20 {
  border-left-color: rgba(240, 226, 0, 0.2);
  border-right-color: rgba(240, 226, 0, 0.2);
}

.border-x-eva-yellow-appt\/25 {
  border-left-color: rgba(240, 226, 0, 0.25);
  border-right-color: rgba(240, 226, 0, 0.25);
}

.border-x-eva-yellow-appt\/30 {
  border-left-color: rgba(240, 226, 0, 0.3);
  border-right-color: rgba(240, 226, 0, 0.3);
}

.border-x-eva-yellow-appt\/35 {
  border-left-color: rgba(240, 226, 0, 0.35);
  border-right-color: rgba(240, 226, 0, 0.35);
}

.border-x-eva-yellow-appt\/40 {
  border-left-color: rgba(240, 226, 0, 0.4);
  border-right-color: rgba(240, 226, 0, 0.4);
}

.border-x-eva-yellow-appt\/45 {
  border-left-color: rgba(240, 226, 0, 0.45);
  border-right-color: rgba(240, 226, 0, 0.45);
}

.border-x-eva-yellow-appt\/5 {
  border-left-color: rgba(240, 226, 0, 0.05);
  border-right-color: rgba(240, 226, 0, 0.05);
}

.border-x-eva-yellow-appt\/50 {
  border-left-color: rgba(240, 226, 0, 0.5);
  border-right-color: rgba(240, 226, 0, 0.5);
}

.border-x-eva-yellow-appt\/55 {
  border-left-color: rgba(240, 226, 0, 0.55);
  border-right-color: rgba(240, 226, 0, 0.55);
}

.border-x-eva-yellow-appt\/60 {
  border-left-color: rgba(240, 226, 0, 0.6);
  border-right-color: rgba(240, 226, 0, 0.6);
}

.border-x-eva-yellow-appt\/65 {
  border-left-color: rgba(240, 226, 0, 0.65);
  border-right-color: rgba(240, 226, 0, 0.65);
}

.border-x-eva-yellow-appt\/70 {
  border-left-color: rgba(240, 226, 0, 0.7);
  border-right-color: rgba(240, 226, 0, 0.7);
}

.border-x-eva-yellow-appt\/75 {
  border-left-color: rgba(240, 226, 0, 0.75);
  border-right-color: rgba(240, 226, 0, 0.75);
}

.border-x-eva-yellow-appt\/80 {
  border-left-color: rgba(240, 226, 0, 0.8);
  border-right-color: rgba(240, 226, 0, 0.8);
}

.border-x-eva-yellow-appt\/85 {
  border-left-color: rgba(240, 226, 0, 0.85);
  border-right-color: rgba(240, 226, 0, 0.85);
}

.border-x-eva-yellow-appt\/90 {
  border-left-color: rgba(240, 226, 0, 0.9);
  border-right-color: rgba(240, 226, 0, 0.9);
}

.border-x-eva-yellow-appt\/95 {
  border-left-color: rgba(240, 226, 0, 0.95);
  border-right-color: rgba(240, 226, 0, 0.95);
}

.border-x-eva-yellow\/0 {
  border-left-color: rgb(233 179 98 / 0);
  border-right-color: rgb(233 179 98 / 0);
}

.border-x-eva-yellow\/10 {
  border-left-color: rgb(233 179 98 / 0.1);
  border-right-color: rgb(233 179 98 / 0.1);
}

.border-x-eva-yellow\/100 {
  border-left-color: rgb(233 179 98 / 1);
  border-right-color: rgb(233 179 98 / 1);
}

.border-x-eva-yellow\/15 {
  border-left-color: rgb(233 179 98 / 0.15);
  border-right-color: rgb(233 179 98 / 0.15);
}

.border-x-eva-yellow\/20 {
  border-left-color: rgb(233 179 98 / 0.2);
  border-right-color: rgb(233 179 98 / 0.2);
}

.border-x-eva-yellow\/25 {
  border-left-color: rgb(233 179 98 / 0.25);
  border-right-color: rgb(233 179 98 / 0.25);
}

.border-x-eva-yellow\/30 {
  border-left-color: rgb(233 179 98 / 0.3);
  border-right-color: rgb(233 179 98 / 0.3);
}

.border-x-eva-yellow\/35 {
  border-left-color: rgb(233 179 98 / 0.35);
  border-right-color: rgb(233 179 98 / 0.35);
}

.border-x-eva-yellow\/40 {
  border-left-color: rgb(233 179 98 / 0.4);
  border-right-color: rgb(233 179 98 / 0.4);
}

.border-x-eva-yellow\/45 {
  border-left-color: rgb(233 179 98 / 0.45);
  border-right-color: rgb(233 179 98 / 0.45);
}

.border-x-eva-yellow\/5 {
  border-left-color: rgb(233 179 98 / 0.05);
  border-right-color: rgb(233 179 98 / 0.05);
}

.border-x-eva-yellow\/50 {
  border-left-color: rgb(233 179 98 / 0.5);
  border-right-color: rgb(233 179 98 / 0.5);
}

.border-x-eva-yellow\/55 {
  border-left-color: rgb(233 179 98 / 0.55);
  border-right-color: rgb(233 179 98 / 0.55);
}

.border-x-eva-yellow\/60 {
  border-left-color: rgb(233 179 98 / 0.6);
  border-right-color: rgb(233 179 98 / 0.6);
}

.border-x-eva-yellow\/65 {
  border-left-color: rgb(233 179 98 / 0.65);
  border-right-color: rgb(233 179 98 / 0.65);
}

.border-x-eva-yellow\/70 {
  border-left-color: rgb(233 179 98 / 0.7);
  border-right-color: rgb(233 179 98 / 0.7);
}

.border-x-eva-yellow\/75 {
  border-left-color: rgb(233 179 98 / 0.75);
  border-right-color: rgb(233 179 98 / 0.75);
}

.border-x-eva-yellow\/80 {
  border-left-color: rgb(233 179 98 / 0.8);
  border-right-color: rgb(233 179 98 / 0.8);
}

.border-x-eva-yellow\/85 {
  border-left-color: rgb(233 179 98 / 0.85);
  border-right-color: rgb(233 179 98 / 0.85);
}

.border-x-eva-yellow\/90 {
  border-left-color: rgb(233 179 98 / 0.9);
  border-right-color: rgb(233 179 98 / 0.9);
}

.border-x-eva-yellow\/95 {
  border-left-color: rgb(233 179 98 / 0.95);
  border-right-color: rgb(233 179 98 / 0.95);
}

.border-x-gray-100 {
  --tw-border-opacity: 1;
  border-left-color: rgb(245 245 245 / var(--tw-border-opacity, 1));
  border-right-color: rgb(245 245 245 / var(--tw-border-opacity, 1));
}

.border-x-gray-100\/0 {
  border-left-color: rgb(245 245 245 / 0);
  border-right-color: rgb(245 245 245 / 0);
}

.border-x-gray-100\/10 {
  border-left-color: rgb(245 245 245 / 0.1);
  border-right-color: rgb(245 245 245 / 0.1);
}

.border-x-gray-100\/100 {
  border-left-color: rgb(245 245 245 / 1);
  border-right-color: rgb(245 245 245 / 1);
}

.border-x-gray-100\/15 {
  border-left-color: rgb(245 245 245 / 0.15);
  border-right-color: rgb(245 245 245 / 0.15);
}

.border-x-gray-100\/20 {
  border-left-color: rgb(245 245 245 / 0.2);
  border-right-color: rgb(245 245 245 / 0.2);
}

.border-x-gray-100\/25 {
  border-left-color: rgb(245 245 245 / 0.25);
  border-right-color: rgb(245 245 245 / 0.25);
}

.border-x-gray-100\/30 {
  border-left-color: rgb(245 245 245 / 0.3);
  border-right-color: rgb(245 245 245 / 0.3);
}

.border-x-gray-100\/35 {
  border-left-color: rgb(245 245 245 / 0.35);
  border-right-color: rgb(245 245 245 / 0.35);
}

.border-x-gray-100\/40 {
  border-left-color: rgb(245 245 245 / 0.4);
  border-right-color: rgb(245 245 245 / 0.4);
}

.border-x-gray-100\/45 {
  border-left-color: rgb(245 245 245 / 0.45);
  border-right-color: rgb(245 245 245 / 0.45);
}

.border-x-gray-100\/5 {
  border-left-color: rgb(245 245 245 / 0.05);
  border-right-color: rgb(245 245 245 / 0.05);
}

.border-x-gray-100\/50 {
  border-left-color: rgb(245 245 245 / 0.5);
  border-right-color: rgb(245 245 245 / 0.5);
}

.border-x-gray-100\/55 {
  border-left-color: rgb(245 245 245 / 0.55);
  border-right-color: rgb(245 245 245 / 0.55);
}

.border-x-gray-100\/60 {
  border-left-color: rgb(245 245 245 / 0.6);
  border-right-color: rgb(245 245 245 / 0.6);
}

.border-x-gray-100\/65 {
  border-left-color: rgb(245 245 245 / 0.65);
  border-right-color: rgb(245 245 245 / 0.65);
}

.border-x-gray-100\/70 {
  border-left-color: rgb(245 245 245 / 0.7);
  border-right-color: rgb(245 245 245 / 0.7);
}

.border-x-gray-100\/75 {
  border-left-color: rgb(245 245 245 / 0.75);
  border-right-color: rgb(245 245 245 / 0.75);
}

.border-x-gray-100\/80 {
  border-left-color: rgb(245 245 245 / 0.8);
  border-right-color: rgb(245 245 245 / 0.8);
}

.border-x-gray-100\/85 {
  border-left-color: rgb(245 245 245 / 0.85);
  border-right-color: rgb(245 245 245 / 0.85);
}

.border-x-gray-100\/90 {
  border-left-color: rgb(245 245 245 / 0.9);
  border-right-color: rgb(245 245 245 / 0.9);
}

.border-x-gray-100\/95 {
  border-left-color: rgb(245 245 245 / 0.95);
  border-right-color: rgb(245 245 245 / 0.95);
}

.border-x-gray-200 {
  --tw-border-opacity: 1;
  border-left-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
  border-right-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
}

.border-x-gray-200\/0 {
  border-left-color: rgb(229 229 229 / 0);
  border-right-color: rgb(229 229 229 / 0);
}

.border-x-gray-200\/10 {
  border-left-color: rgb(229 229 229 / 0.1);
  border-right-color: rgb(229 229 229 / 0.1);
}

.border-x-gray-200\/100 {
  border-left-color: rgb(229 229 229 / 1);
  border-right-color: rgb(229 229 229 / 1);
}

.border-x-gray-200\/15 {
  border-left-color: rgb(229 229 229 / 0.15);
  border-right-color: rgb(229 229 229 / 0.15);
}

.border-x-gray-200\/20 {
  border-left-color: rgb(229 229 229 / 0.2);
  border-right-color: rgb(229 229 229 / 0.2);
}

.border-x-gray-200\/25 {
  border-left-color: rgb(229 229 229 / 0.25);
  border-right-color: rgb(229 229 229 / 0.25);
}

.border-x-gray-200\/30 {
  border-left-color: rgb(229 229 229 / 0.3);
  border-right-color: rgb(229 229 229 / 0.3);
}

.border-x-gray-200\/35 {
  border-left-color: rgb(229 229 229 / 0.35);
  border-right-color: rgb(229 229 229 / 0.35);
}

.border-x-gray-200\/40 {
  border-left-color: rgb(229 229 229 / 0.4);
  border-right-color: rgb(229 229 229 / 0.4);
}

.border-x-gray-200\/45 {
  border-left-color: rgb(229 229 229 / 0.45);
  border-right-color: rgb(229 229 229 / 0.45);
}

.border-x-gray-200\/5 {
  border-left-color: rgb(229 229 229 / 0.05);
  border-right-color: rgb(229 229 229 / 0.05);
}

.border-x-gray-200\/50 {
  border-left-color: rgb(229 229 229 / 0.5);
  border-right-color: rgb(229 229 229 / 0.5);
}

.border-x-gray-200\/55 {
  border-left-color: rgb(229 229 229 / 0.55);
  border-right-color: rgb(229 229 229 / 0.55);
}

.border-x-gray-200\/60 {
  border-left-color: rgb(229 229 229 / 0.6);
  border-right-color: rgb(229 229 229 / 0.6);
}

.border-x-gray-200\/65 {
  border-left-color: rgb(229 229 229 / 0.65);
  border-right-color: rgb(229 229 229 / 0.65);
}

.border-x-gray-200\/70 {
  border-left-color: rgb(229 229 229 / 0.7);
  border-right-color: rgb(229 229 229 / 0.7);
}

.border-x-gray-200\/75 {
  border-left-color: rgb(229 229 229 / 0.75);
  border-right-color: rgb(229 229 229 / 0.75);
}

.border-x-gray-200\/80 {
  border-left-color: rgb(229 229 229 / 0.8);
  border-right-color: rgb(229 229 229 / 0.8);
}

.border-x-gray-200\/85 {
  border-left-color: rgb(229 229 229 / 0.85);
  border-right-color: rgb(229 229 229 / 0.85);
}

.border-x-gray-200\/90 {
  border-left-color: rgb(229 229 229 / 0.9);
  border-right-color: rgb(229 229 229 / 0.9);
}

.border-x-gray-200\/95 {
  border-left-color: rgb(229 229 229 / 0.95);
  border-right-color: rgb(229 229 229 / 0.95);
}

.border-x-gray-300 {
  --tw-border-opacity: 1;
  border-left-color: rgb(212 212 212 / var(--tw-border-opacity, 1));
  border-right-color: rgb(212 212 212 / var(--tw-border-opacity, 1));
}

.border-x-gray-300\/0 {
  border-left-color: rgb(212 212 212 / 0);
  border-right-color: rgb(212 212 212 / 0);
}

.border-x-gray-300\/10 {
  border-left-color: rgb(212 212 212 / 0.1);
  border-right-color: rgb(212 212 212 / 0.1);
}

.border-x-gray-300\/100 {
  border-left-color: rgb(212 212 212 / 1);
  border-right-color: rgb(212 212 212 / 1);
}

.border-x-gray-300\/15 {
  border-left-color: rgb(212 212 212 / 0.15);
  border-right-color: rgb(212 212 212 / 0.15);
}

.border-x-gray-300\/20 {
  border-left-color: rgb(212 212 212 / 0.2);
  border-right-color: rgb(212 212 212 / 0.2);
}

.border-x-gray-300\/25 {
  border-left-color: rgb(212 212 212 / 0.25);
  border-right-color: rgb(212 212 212 / 0.25);
}

.border-x-gray-300\/30 {
  border-left-color: rgb(212 212 212 / 0.3);
  border-right-color: rgb(212 212 212 / 0.3);
}

.border-x-gray-300\/35 {
  border-left-color: rgb(212 212 212 / 0.35);
  border-right-color: rgb(212 212 212 / 0.35);
}

.border-x-gray-300\/40 {
  border-left-color: rgb(212 212 212 / 0.4);
  border-right-color: rgb(212 212 212 / 0.4);
}

.border-x-gray-300\/45 {
  border-left-color: rgb(212 212 212 / 0.45);
  border-right-color: rgb(212 212 212 / 0.45);
}

.border-x-gray-300\/5 {
  border-left-color: rgb(212 212 212 / 0.05);
  border-right-color: rgb(212 212 212 / 0.05);
}

.border-x-gray-300\/50 {
  border-left-color: rgb(212 212 212 / 0.5);
  border-right-color: rgb(212 212 212 / 0.5);
}

.border-x-gray-300\/55 {
  border-left-color: rgb(212 212 212 / 0.55);
  border-right-color: rgb(212 212 212 / 0.55);
}

.border-x-gray-300\/60 {
  border-left-color: rgb(212 212 212 / 0.6);
  border-right-color: rgb(212 212 212 / 0.6);
}

.border-x-gray-300\/65 {
  border-left-color: rgb(212 212 212 / 0.65);
  border-right-color: rgb(212 212 212 / 0.65);
}

.border-x-gray-300\/70 {
  border-left-color: rgb(212 212 212 / 0.7);
  border-right-color: rgb(212 212 212 / 0.7);
}

.border-x-gray-300\/75 {
  border-left-color: rgb(212 212 212 / 0.75);
  border-right-color: rgb(212 212 212 / 0.75);
}

.border-x-gray-300\/80 {
  border-left-color: rgb(212 212 212 / 0.8);
  border-right-color: rgb(212 212 212 / 0.8);
}

.border-x-gray-300\/85 {
  border-left-color: rgb(212 212 212 / 0.85);
  border-right-color: rgb(212 212 212 / 0.85);
}

.border-x-gray-300\/90 {
  border-left-color: rgb(212 212 212 / 0.9);
  border-right-color: rgb(212 212 212 / 0.9);
}

.border-x-gray-300\/95 {
  border-left-color: rgb(212 212 212 / 0.95);
  border-right-color: rgb(212 212 212 / 0.95);
}

.border-x-gray-400 {
  --tw-border-opacity: 1;
  border-left-color: rgb(163 163 163 / var(--tw-border-opacity, 1));
  border-right-color: rgb(163 163 163 / var(--tw-border-opacity, 1));
}

.border-x-gray-400\/0 {
  border-left-color: rgb(163 163 163 / 0);
  border-right-color: rgb(163 163 163 / 0);
}

.border-x-gray-400\/10 {
  border-left-color: rgb(163 163 163 / 0.1);
  border-right-color: rgb(163 163 163 / 0.1);
}

.border-x-gray-400\/100 {
  border-left-color: rgb(163 163 163 / 1);
  border-right-color: rgb(163 163 163 / 1);
}

.border-x-gray-400\/15 {
  border-left-color: rgb(163 163 163 / 0.15);
  border-right-color: rgb(163 163 163 / 0.15);
}

.border-x-gray-400\/20 {
  border-left-color: rgb(163 163 163 / 0.2);
  border-right-color: rgb(163 163 163 / 0.2);
}

.border-x-gray-400\/25 {
  border-left-color: rgb(163 163 163 / 0.25);
  border-right-color: rgb(163 163 163 / 0.25);
}

.border-x-gray-400\/30 {
  border-left-color: rgb(163 163 163 / 0.3);
  border-right-color: rgb(163 163 163 / 0.3);
}

.border-x-gray-400\/35 {
  border-left-color: rgb(163 163 163 / 0.35);
  border-right-color: rgb(163 163 163 / 0.35);
}

.border-x-gray-400\/40 {
  border-left-color: rgb(163 163 163 / 0.4);
  border-right-color: rgb(163 163 163 / 0.4);
}

.border-x-gray-400\/45 {
  border-left-color: rgb(163 163 163 / 0.45);
  border-right-color: rgb(163 163 163 / 0.45);
}

.border-x-gray-400\/5 {
  border-left-color: rgb(163 163 163 / 0.05);
  border-right-color: rgb(163 163 163 / 0.05);
}

.border-x-gray-400\/50 {
  border-left-color: rgb(163 163 163 / 0.5);
  border-right-color: rgb(163 163 163 / 0.5);
}

.border-x-gray-400\/55 {
  border-left-color: rgb(163 163 163 / 0.55);
  border-right-color: rgb(163 163 163 / 0.55);
}

.border-x-gray-400\/60 {
  border-left-color: rgb(163 163 163 / 0.6);
  border-right-color: rgb(163 163 163 / 0.6);
}

.border-x-gray-400\/65 {
  border-left-color: rgb(163 163 163 / 0.65);
  border-right-color: rgb(163 163 163 / 0.65);
}

.border-x-gray-400\/70 {
  border-left-color: rgb(163 163 163 / 0.7);
  border-right-color: rgb(163 163 163 / 0.7);
}

.border-x-gray-400\/75 {
  border-left-color: rgb(163 163 163 / 0.75);
  border-right-color: rgb(163 163 163 / 0.75);
}

.border-x-gray-400\/80 {
  border-left-color: rgb(163 163 163 / 0.8);
  border-right-color: rgb(163 163 163 / 0.8);
}

.border-x-gray-400\/85 {
  border-left-color: rgb(163 163 163 / 0.85);
  border-right-color: rgb(163 163 163 / 0.85);
}

.border-x-gray-400\/90 {
  border-left-color: rgb(163 163 163 / 0.9);
  border-right-color: rgb(163 163 163 / 0.9);
}

.border-x-gray-400\/95 {
  border-left-color: rgb(163 163 163 / 0.95);
  border-right-color: rgb(163 163 163 / 0.95);
}

.border-x-gray-50 {
  --tw-border-opacity: 1;
  border-left-color: rgb(250 250 250 / var(--tw-border-opacity, 1));
  border-right-color: rgb(250 250 250 / var(--tw-border-opacity, 1));
}

.border-x-gray-50\/0 {
  border-left-color: rgb(250 250 250 / 0);
  border-right-color: rgb(250 250 250 / 0);
}

.border-x-gray-50\/10 {
  border-left-color: rgb(250 250 250 / 0.1);
  border-right-color: rgb(250 250 250 / 0.1);
}

.border-x-gray-50\/100 {
  border-left-color: rgb(250 250 250 / 1);
  border-right-color: rgb(250 250 250 / 1);
}

.border-x-gray-50\/15 {
  border-left-color: rgb(250 250 250 / 0.15);
  border-right-color: rgb(250 250 250 / 0.15);
}

.border-x-gray-50\/20 {
  border-left-color: rgb(250 250 250 / 0.2);
  border-right-color: rgb(250 250 250 / 0.2);
}

.border-x-gray-50\/25 {
  border-left-color: rgb(250 250 250 / 0.25);
  border-right-color: rgb(250 250 250 / 0.25);
}

.border-x-gray-50\/30 {
  border-left-color: rgb(250 250 250 / 0.3);
  border-right-color: rgb(250 250 250 / 0.3);
}

.border-x-gray-50\/35 {
  border-left-color: rgb(250 250 250 / 0.35);
  border-right-color: rgb(250 250 250 / 0.35);
}

.border-x-gray-50\/40 {
  border-left-color: rgb(250 250 250 / 0.4);
  border-right-color: rgb(250 250 250 / 0.4);
}

.border-x-gray-50\/45 {
  border-left-color: rgb(250 250 250 / 0.45);
  border-right-color: rgb(250 250 250 / 0.45);
}

.border-x-gray-50\/5 {
  border-left-color: rgb(250 250 250 / 0.05);
  border-right-color: rgb(250 250 250 / 0.05);
}

.border-x-gray-50\/50 {
  border-left-color: rgb(250 250 250 / 0.5);
  border-right-color: rgb(250 250 250 / 0.5);
}

.border-x-gray-50\/55 {
  border-left-color: rgb(250 250 250 / 0.55);
  border-right-color: rgb(250 250 250 / 0.55);
}

.border-x-gray-50\/60 {
  border-left-color: rgb(250 250 250 / 0.6);
  border-right-color: rgb(250 250 250 / 0.6);
}

.border-x-gray-50\/65 {
  border-left-color: rgb(250 250 250 / 0.65);
  border-right-color: rgb(250 250 250 / 0.65);
}

.border-x-gray-50\/70 {
  border-left-color: rgb(250 250 250 / 0.7);
  border-right-color: rgb(250 250 250 / 0.7);
}

.border-x-gray-50\/75 {
  border-left-color: rgb(250 250 250 / 0.75);
  border-right-color: rgb(250 250 250 / 0.75);
}

.border-x-gray-50\/80 {
  border-left-color: rgb(250 250 250 / 0.8);
  border-right-color: rgb(250 250 250 / 0.8);
}

.border-x-gray-50\/85 {
  border-left-color: rgb(250 250 250 / 0.85);
  border-right-color: rgb(250 250 250 / 0.85);
}

.border-x-gray-50\/90 {
  border-left-color: rgb(250 250 250 / 0.9);
  border-right-color: rgb(250 250 250 / 0.9);
}

.border-x-gray-50\/95 {
  border-left-color: rgb(250 250 250 / 0.95);
  border-right-color: rgb(250 250 250 / 0.95);
}

.border-x-gray-500 {
  --tw-border-opacity: 1;
  border-left-color: rgb(115 115 115 / var(--tw-border-opacity, 1));
  border-right-color: rgb(115 115 115 / var(--tw-border-opacity, 1));
}

.border-x-gray-500\/0 {
  border-left-color: rgb(115 115 115 / 0);
  border-right-color: rgb(115 115 115 / 0);
}

.border-x-gray-500\/10 {
  border-left-color: rgb(115 115 115 / 0.1);
  border-right-color: rgb(115 115 115 / 0.1);
}

.border-x-gray-500\/100 {
  border-left-color: rgb(115 115 115 / 1);
  border-right-color: rgb(115 115 115 / 1);
}

.border-x-gray-500\/15 {
  border-left-color: rgb(115 115 115 / 0.15);
  border-right-color: rgb(115 115 115 / 0.15);
}

.border-x-gray-500\/20 {
  border-left-color: rgb(115 115 115 / 0.2);
  border-right-color: rgb(115 115 115 / 0.2);
}

.border-x-gray-500\/25 {
  border-left-color: rgb(115 115 115 / 0.25);
  border-right-color: rgb(115 115 115 / 0.25);
}

.border-x-gray-500\/30 {
  border-left-color: rgb(115 115 115 / 0.3);
  border-right-color: rgb(115 115 115 / 0.3);
}

.border-x-gray-500\/35 {
  border-left-color: rgb(115 115 115 / 0.35);
  border-right-color: rgb(115 115 115 / 0.35);
}

.border-x-gray-500\/40 {
  border-left-color: rgb(115 115 115 / 0.4);
  border-right-color: rgb(115 115 115 / 0.4);
}

.border-x-gray-500\/45 {
  border-left-color: rgb(115 115 115 / 0.45);
  border-right-color: rgb(115 115 115 / 0.45);
}

.border-x-gray-500\/5 {
  border-left-color: rgb(115 115 115 / 0.05);
  border-right-color: rgb(115 115 115 / 0.05);
}

.border-x-gray-500\/50 {
  border-left-color: rgb(115 115 115 / 0.5);
  border-right-color: rgb(115 115 115 / 0.5);
}

.border-x-gray-500\/55 {
  border-left-color: rgb(115 115 115 / 0.55);
  border-right-color: rgb(115 115 115 / 0.55);
}

.border-x-gray-500\/60 {
  border-left-color: rgb(115 115 115 / 0.6);
  border-right-color: rgb(115 115 115 / 0.6);
}

.border-x-gray-500\/65 {
  border-left-color: rgb(115 115 115 / 0.65);
  border-right-color: rgb(115 115 115 / 0.65);
}

.border-x-gray-500\/70 {
  border-left-color: rgb(115 115 115 / 0.7);
  border-right-color: rgb(115 115 115 / 0.7);
}

.border-x-gray-500\/75 {
  border-left-color: rgb(115 115 115 / 0.75);
  border-right-color: rgb(115 115 115 / 0.75);
}

.border-x-gray-500\/80 {
  border-left-color: rgb(115 115 115 / 0.8);
  border-right-color: rgb(115 115 115 / 0.8);
}

.border-x-gray-500\/85 {
  border-left-color: rgb(115 115 115 / 0.85);
  border-right-color: rgb(115 115 115 / 0.85);
}

.border-x-gray-500\/90 {
  border-left-color: rgb(115 115 115 / 0.9);
  border-right-color: rgb(115 115 115 / 0.9);
}

.border-x-gray-500\/95 {
  border-left-color: rgb(115 115 115 / 0.95);
  border-right-color: rgb(115 115 115 / 0.95);
}

.border-x-gray-600 {
  --tw-border-opacity: 1;
  border-left-color: rgb(82 82 82 / var(--tw-border-opacity, 1));
  border-right-color: rgb(82 82 82 / var(--tw-border-opacity, 1));
}

.border-x-gray-600\/0 {
  border-left-color: rgb(82 82 82 / 0);
  border-right-color: rgb(82 82 82 / 0);
}

.border-x-gray-600\/10 {
  border-left-color: rgb(82 82 82 / 0.1);
  border-right-color: rgb(82 82 82 / 0.1);
}

.border-x-gray-600\/100 {
  border-left-color: rgb(82 82 82 / 1);
  border-right-color: rgb(82 82 82 / 1);
}

.border-x-gray-600\/15 {
  border-left-color: rgb(82 82 82 / 0.15);
  border-right-color: rgb(82 82 82 / 0.15);
}

.border-x-gray-600\/20 {
  border-left-color: rgb(82 82 82 / 0.2);
  border-right-color: rgb(82 82 82 / 0.2);
}

.border-x-gray-600\/25 {
  border-left-color: rgb(82 82 82 / 0.25);
  border-right-color: rgb(82 82 82 / 0.25);
}

.border-x-gray-600\/30 {
  border-left-color: rgb(82 82 82 / 0.3);
  border-right-color: rgb(82 82 82 / 0.3);
}

.border-x-gray-600\/35 {
  border-left-color: rgb(82 82 82 / 0.35);
  border-right-color: rgb(82 82 82 / 0.35);
}

.border-x-gray-600\/40 {
  border-left-color: rgb(82 82 82 / 0.4);
  border-right-color: rgb(82 82 82 / 0.4);
}

.border-x-gray-600\/45 {
  border-left-color: rgb(82 82 82 / 0.45);
  border-right-color: rgb(82 82 82 / 0.45);
}

.border-x-gray-600\/5 {
  border-left-color: rgb(82 82 82 / 0.05);
  border-right-color: rgb(82 82 82 / 0.05);
}

.border-x-gray-600\/50 {
  border-left-color: rgb(82 82 82 / 0.5);
  border-right-color: rgb(82 82 82 / 0.5);
}

.border-x-gray-600\/55 {
  border-left-color: rgb(82 82 82 / 0.55);
  border-right-color: rgb(82 82 82 / 0.55);
}

.border-x-gray-600\/60 {
  border-left-color: rgb(82 82 82 / 0.6);
  border-right-color: rgb(82 82 82 / 0.6);
}

.border-x-gray-600\/65 {
  border-left-color: rgb(82 82 82 / 0.65);
  border-right-color: rgb(82 82 82 / 0.65);
}

.border-x-gray-600\/70 {
  border-left-color: rgb(82 82 82 / 0.7);
  border-right-color: rgb(82 82 82 / 0.7);
}

.border-x-gray-600\/75 {
  border-left-color: rgb(82 82 82 / 0.75);
  border-right-color: rgb(82 82 82 / 0.75);
}

.border-x-gray-600\/80 {
  border-left-color: rgb(82 82 82 / 0.8);
  border-right-color: rgb(82 82 82 / 0.8);
}

.border-x-gray-600\/85 {
  border-left-color: rgb(82 82 82 / 0.85);
  border-right-color: rgb(82 82 82 / 0.85);
}

.border-x-gray-600\/90 {
  border-left-color: rgb(82 82 82 / 0.9);
  border-right-color: rgb(82 82 82 / 0.9);
}

.border-x-gray-600\/95 {
  border-left-color: rgb(82 82 82 / 0.95);
  border-right-color: rgb(82 82 82 / 0.95);
}

.border-x-gray-700 {
  --tw-border-opacity: 1;
  border-left-color: rgb(64 64 64 / var(--tw-border-opacity, 1));
  border-right-color: rgb(64 64 64 / var(--tw-border-opacity, 1));
}

.border-x-gray-700\/0 {
  border-left-color: rgb(64 64 64 / 0);
  border-right-color: rgb(64 64 64 / 0);
}

.border-x-gray-700\/10 {
  border-left-color: rgb(64 64 64 / 0.1);
  border-right-color: rgb(64 64 64 / 0.1);
}

.border-x-gray-700\/100 {
  border-left-color: rgb(64 64 64 / 1);
  border-right-color: rgb(64 64 64 / 1);
}

.border-x-gray-700\/15 {
  border-left-color: rgb(64 64 64 / 0.15);
  border-right-color: rgb(64 64 64 / 0.15);
}

.border-x-gray-700\/20 {
  border-left-color: rgb(64 64 64 / 0.2);
  border-right-color: rgb(64 64 64 / 0.2);
}

.border-x-gray-700\/25 {
  border-left-color: rgb(64 64 64 / 0.25);
  border-right-color: rgb(64 64 64 / 0.25);
}

.border-x-gray-700\/30 {
  border-left-color: rgb(64 64 64 / 0.3);
  border-right-color: rgb(64 64 64 / 0.3);
}

.border-x-gray-700\/35 {
  border-left-color: rgb(64 64 64 / 0.35);
  border-right-color: rgb(64 64 64 / 0.35);
}

.border-x-gray-700\/40 {
  border-left-color: rgb(64 64 64 / 0.4);
  border-right-color: rgb(64 64 64 / 0.4);
}

.border-x-gray-700\/45 {
  border-left-color: rgb(64 64 64 / 0.45);
  border-right-color: rgb(64 64 64 / 0.45);
}

.border-x-gray-700\/5 {
  border-left-color: rgb(64 64 64 / 0.05);
  border-right-color: rgb(64 64 64 / 0.05);
}

.border-x-gray-700\/50 {
  border-left-color: rgb(64 64 64 / 0.5);
  border-right-color: rgb(64 64 64 / 0.5);
}

.border-x-gray-700\/55 {
  border-left-color: rgb(64 64 64 / 0.55);
  border-right-color: rgb(64 64 64 / 0.55);
}

.border-x-gray-700\/60 {
  border-left-color: rgb(64 64 64 / 0.6);
  border-right-color: rgb(64 64 64 / 0.6);
}

.border-x-gray-700\/65 {
  border-left-color: rgb(64 64 64 / 0.65);
  border-right-color: rgb(64 64 64 / 0.65);
}

.border-x-gray-700\/70 {
  border-left-color: rgb(64 64 64 / 0.7);
  border-right-color: rgb(64 64 64 / 0.7);
}

.border-x-gray-700\/75 {
  border-left-color: rgb(64 64 64 / 0.75);
  border-right-color: rgb(64 64 64 / 0.75);
}

.border-x-gray-700\/80 {
  border-left-color: rgb(64 64 64 / 0.8);
  border-right-color: rgb(64 64 64 / 0.8);
}

.border-x-gray-700\/85 {
  border-left-color: rgb(64 64 64 / 0.85);
  border-right-color: rgb(64 64 64 / 0.85);
}

.border-x-gray-700\/90 {
  border-left-color: rgb(64 64 64 / 0.9);
  border-right-color: rgb(64 64 64 / 0.9);
}

.border-x-gray-700\/95 {
  border-left-color: rgb(64 64 64 / 0.95);
  border-right-color: rgb(64 64 64 / 0.95);
}

.border-x-gray-800 {
  --tw-border-opacity: 1;
  border-left-color: rgb(38 38 38 / var(--tw-border-opacity, 1));
  border-right-color: rgb(38 38 38 / var(--tw-border-opacity, 1));
}

.border-x-gray-800\/0 {
  border-left-color: rgb(38 38 38 / 0);
  border-right-color: rgb(38 38 38 / 0);
}

.border-x-gray-800\/10 {
  border-left-color: rgb(38 38 38 / 0.1);
  border-right-color: rgb(38 38 38 / 0.1);
}

.border-x-gray-800\/100 {
  border-left-color: rgb(38 38 38 / 1);
  border-right-color: rgb(38 38 38 / 1);
}

.border-x-gray-800\/15 {
  border-left-color: rgb(38 38 38 / 0.15);
  border-right-color: rgb(38 38 38 / 0.15);
}

.border-x-gray-800\/20 {
  border-left-color: rgb(38 38 38 / 0.2);
  border-right-color: rgb(38 38 38 / 0.2);
}

.border-x-gray-800\/25 {
  border-left-color: rgb(38 38 38 / 0.25);
  border-right-color: rgb(38 38 38 / 0.25);
}

.border-x-gray-800\/30 {
  border-left-color: rgb(38 38 38 / 0.3);
  border-right-color: rgb(38 38 38 / 0.3);
}

.border-x-gray-800\/35 {
  border-left-color: rgb(38 38 38 / 0.35);
  border-right-color: rgb(38 38 38 / 0.35);
}

.border-x-gray-800\/40 {
  border-left-color: rgb(38 38 38 / 0.4);
  border-right-color: rgb(38 38 38 / 0.4);
}

.border-x-gray-800\/45 {
  border-left-color: rgb(38 38 38 / 0.45);
  border-right-color: rgb(38 38 38 / 0.45);
}

.border-x-gray-800\/5 {
  border-left-color: rgb(38 38 38 / 0.05);
  border-right-color: rgb(38 38 38 / 0.05);
}

.border-x-gray-800\/50 {
  border-left-color: rgb(38 38 38 / 0.5);
  border-right-color: rgb(38 38 38 / 0.5);
}

.border-x-gray-800\/55 {
  border-left-color: rgb(38 38 38 / 0.55);
  border-right-color: rgb(38 38 38 / 0.55);
}

.border-x-gray-800\/60 {
  border-left-color: rgb(38 38 38 / 0.6);
  border-right-color: rgb(38 38 38 / 0.6);
}

.border-x-gray-800\/65 {
  border-left-color: rgb(38 38 38 / 0.65);
  border-right-color: rgb(38 38 38 / 0.65);
}

.border-x-gray-800\/70 {
  border-left-color: rgb(38 38 38 / 0.7);
  border-right-color: rgb(38 38 38 / 0.7);
}

.border-x-gray-800\/75 {
  border-left-color: rgb(38 38 38 / 0.75);
  border-right-color: rgb(38 38 38 / 0.75);
}

.border-x-gray-800\/80 {
  border-left-color: rgb(38 38 38 / 0.8);
  border-right-color: rgb(38 38 38 / 0.8);
}

.border-x-gray-800\/85 {
  border-left-color: rgb(38 38 38 / 0.85);
  border-right-color: rgb(38 38 38 / 0.85);
}

.border-x-gray-800\/90 {
  border-left-color: rgb(38 38 38 / 0.9);
  border-right-color: rgb(38 38 38 / 0.9);
}

.border-x-gray-800\/95 {
  border-left-color: rgb(38 38 38 / 0.95);
  border-right-color: rgb(38 38 38 / 0.95);
}

.border-x-gray-900 {
  --tw-border-opacity: 1;
  border-left-color: rgb(23 23 23 / var(--tw-border-opacity, 1));
  border-right-color: rgb(23 23 23 / var(--tw-border-opacity, 1));
}

.border-x-gray-900\/0 {
  border-left-color: rgb(23 23 23 / 0);
  border-right-color: rgb(23 23 23 / 0);
}

.border-x-gray-900\/10 {
  border-left-color: rgb(23 23 23 / 0.1);
  border-right-color: rgb(23 23 23 / 0.1);
}

.border-x-gray-900\/100 {
  border-left-color: rgb(23 23 23 / 1);
  border-right-color: rgb(23 23 23 / 1);
}

.border-x-gray-900\/15 {
  border-left-color: rgb(23 23 23 / 0.15);
  border-right-color: rgb(23 23 23 / 0.15);
}

.border-x-gray-900\/20 {
  border-left-color: rgb(23 23 23 / 0.2);
  border-right-color: rgb(23 23 23 / 0.2);
}

.border-x-gray-900\/25 {
  border-left-color: rgb(23 23 23 / 0.25);
  border-right-color: rgb(23 23 23 / 0.25);
}

.border-x-gray-900\/30 {
  border-left-color: rgb(23 23 23 / 0.3);
  border-right-color: rgb(23 23 23 / 0.3);
}

.border-x-gray-900\/35 {
  border-left-color: rgb(23 23 23 / 0.35);
  border-right-color: rgb(23 23 23 / 0.35);
}

.border-x-gray-900\/40 {
  border-left-color: rgb(23 23 23 / 0.4);
  border-right-color: rgb(23 23 23 / 0.4);
}

.border-x-gray-900\/45 {
  border-left-color: rgb(23 23 23 / 0.45);
  border-right-color: rgb(23 23 23 / 0.45);
}

.border-x-gray-900\/5 {
  border-left-color: rgb(23 23 23 / 0.05);
  border-right-color: rgb(23 23 23 / 0.05);
}

.border-x-gray-900\/50 {
  border-left-color: rgb(23 23 23 / 0.5);
  border-right-color: rgb(23 23 23 / 0.5);
}

.border-x-gray-900\/55 {
  border-left-color: rgb(23 23 23 / 0.55);
  border-right-color: rgb(23 23 23 / 0.55);
}

.border-x-gray-900\/60 {
  border-left-color: rgb(23 23 23 / 0.6);
  border-right-color: rgb(23 23 23 / 0.6);
}

.border-x-gray-900\/65 {
  border-left-color: rgb(23 23 23 / 0.65);
  border-right-color: rgb(23 23 23 / 0.65);
}

.border-x-gray-900\/70 {
  border-left-color: rgb(23 23 23 / 0.7);
  border-right-color: rgb(23 23 23 / 0.7);
}

.border-x-gray-900\/75 {
  border-left-color: rgb(23 23 23 / 0.75);
  border-right-color: rgb(23 23 23 / 0.75);
}

.border-x-gray-900\/80 {
  border-left-color: rgb(23 23 23 / 0.8);
  border-right-color: rgb(23 23 23 / 0.8);
}

.border-x-gray-900\/85 {
  border-left-color: rgb(23 23 23 / 0.85);
  border-right-color: rgb(23 23 23 / 0.85);
}

.border-x-gray-900\/90 {
  border-left-color: rgb(23 23 23 / 0.9);
  border-right-color: rgb(23 23 23 / 0.9);
}

.border-x-gray-900\/95 {
  border-left-color: rgb(23 23 23 / 0.95);
  border-right-color: rgb(23 23 23 / 0.95);
}

.border-x-gray-950 {
  --tw-border-opacity: 1;
  border-left-color: rgb(10 10 10 / var(--tw-border-opacity, 1));
  border-right-color: rgb(10 10 10 / var(--tw-border-opacity, 1));
}

.border-x-gray-950\/0 {
  border-left-color: rgb(10 10 10 / 0);
  border-right-color: rgb(10 10 10 / 0);
}

.border-x-gray-950\/10 {
  border-left-color: rgb(10 10 10 / 0.1);
  border-right-color: rgb(10 10 10 / 0.1);
}

.border-x-gray-950\/100 {
  border-left-color: rgb(10 10 10 / 1);
  border-right-color: rgb(10 10 10 / 1);
}

.border-x-gray-950\/15 {
  border-left-color: rgb(10 10 10 / 0.15);
  border-right-color: rgb(10 10 10 / 0.15);
}

.border-x-gray-950\/20 {
  border-left-color: rgb(10 10 10 / 0.2);
  border-right-color: rgb(10 10 10 / 0.2);
}

.border-x-gray-950\/25 {
  border-left-color: rgb(10 10 10 / 0.25);
  border-right-color: rgb(10 10 10 / 0.25);
}

.border-x-gray-950\/30 {
  border-left-color: rgb(10 10 10 / 0.3);
  border-right-color: rgb(10 10 10 / 0.3);
}

.border-x-gray-950\/35 {
  border-left-color: rgb(10 10 10 / 0.35);
  border-right-color: rgb(10 10 10 / 0.35);
}

.border-x-gray-950\/40 {
  border-left-color: rgb(10 10 10 / 0.4);
  border-right-color: rgb(10 10 10 / 0.4);
}

.border-x-gray-950\/45 {
  border-left-color: rgb(10 10 10 / 0.45);
  border-right-color: rgb(10 10 10 / 0.45);
}

.border-x-gray-950\/5 {
  border-left-color: rgb(10 10 10 / 0.05);
  border-right-color: rgb(10 10 10 / 0.05);
}

.border-x-gray-950\/50 {
  border-left-color: rgb(10 10 10 / 0.5);
  border-right-color: rgb(10 10 10 / 0.5);
}

.border-x-gray-950\/55 {
  border-left-color: rgb(10 10 10 / 0.55);
  border-right-color: rgb(10 10 10 / 0.55);
}

.border-x-gray-950\/60 {
  border-left-color: rgb(10 10 10 / 0.6);
  border-right-color: rgb(10 10 10 / 0.6);
}

.border-x-gray-950\/65 {
  border-left-color: rgb(10 10 10 / 0.65);
  border-right-color: rgb(10 10 10 / 0.65);
}

.border-x-gray-950\/70 {
  border-left-color: rgb(10 10 10 / 0.7);
  border-right-color: rgb(10 10 10 / 0.7);
}

.border-x-gray-950\/75 {
  border-left-color: rgb(10 10 10 / 0.75);
  border-right-color: rgb(10 10 10 / 0.75);
}

.border-x-gray-950\/80 {
  border-left-color: rgb(10 10 10 / 0.8);
  border-right-color: rgb(10 10 10 / 0.8);
}

.border-x-gray-950\/85 {
  border-left-color: rgb(10 10 10 / 0.85);
  border-right-color: rgb(10 10 10 / 0.85);
}

.border-x-gray-950\/90 {
  border-left-color: rgb(10 10 10 / 0.9);
  border-right-color: rgb(10 10 10 / 0.9);
}

.border-x-gray-950\/95 {
  border-left-color: rgb(10 10 10 / 0.95);
  border-right-color: rgb(10 10 10 / 0.95);
}

.border-x-green-100 {
  --tw-border-opacity: 1;
  border-left-color: rgb(220 252 231 / var(--tw-border-opacity, 1));
  border-right-color: rgb(220 252 231 / var(--tw-border-opacity, 1));
}

.border-x-green-100\/0 {
  border-left-color: rgb(220 252 231 / 0);
  border-right-color: rgb(220 252 231 / 0);
}

.border-x-green-100\/10 {
  border-left-color: rgb(220 252 231 / 0.1);
  border-right-color: rgb(220 252 231 / 0.1);
}

.border-x-green-100\/100 {
  border-left-color: rgb(220 252 231 / 1);
  border-right-color: rgb(220 252 231 / 1);
}

.border-x-green-100\/15 {
  border-left-color: rgb(220 252 231 / 0.15);
  border-right-color: rgb(220 252 231 / 0.15);
}

.border-x-green-100\/20 {
  border-left-color: rgb(220 252 231 / 0.2);
  border-right-color: rgb(220 252 231 / 0.2);
}

.border-x-green-100\/25 {
  border-left-color: rgb(220 252 231 / 0.25);
  border-right-color: rgb(220 252 231 / 0.25);
}

.border-x-green-100\/30 {
  border-left-color: rgb(220 252 231 / 0.3);
  border-right-color: rgb(220 252 231 / 0.3);
}

.border-x-green-100\/35 {
  border-left-color: rgb(220 252 231 / 0.35);
  border-right-color: rgb(220 252 231 / 0.35);
}

.border-x-green-100\/40 {
  border-left-color: rgb(220 252 231 / 0.4);
  border-right-color: rgb(220 252 231 / 0.4);
}

.border-x-green-100\/45 {
  border-left-color: rgb(220 252 231 / 0.45);
  border-right-color: rgb(220 252 231 / 0.45);
}

.border-x-green-100\/5 {
  border-left-color: rgb(220 252 231 / 0.05);
  border-right-color: rgb(220 252 231 / 0.05);
}

.border-x-green-100\/50 {
  border-left-color: rgb(220 252 231 / 0.5);
  border-right-color: rgb(220 252 231 / 0.5);
}

.border-x-green-100\/55 {
  border-left-color: rgb(220 252 231 / 0.55);
  border-right-color: rgb(220 252 231 / 0.55);
}

.border-x-green-100\/60 {
  border-left-color: rgb(220 252 231 / 0.6);
  border-right-color: rgb(220 252 231 / 0.6);
}

.border-x-green-100\/65 {
  border-left-color: rgb(220 252 231 / 0.65);
  border-right-color: rgb(220 252 231 / 0.65);
}

.border-x-green-100\/70 {
  border-left-color: rgb(220 252 231 / 0.7);
  border-right-color: rgb(220 252 231 / 0.7);
}

.border-x-green-100\/75 {
  border-left-color: rgb(220 252 231 / 0.75);
  border-right-color: rgb(220 252 231 / 0.75);
}

.border-x-green-100\/80 {
  border-left-color: rgb(220 252 231 / 0.8);
  border-right-color: rgb(220 252 231 / 0.8);
}

.border-x-green-100\/85 {
  border-left-color: rgb(220 252 231 / 0.85);
  border-right-color: rgb(220 252 231 / 0.85);
}

.border-x-green-100\/90 {
  border-left-color: rgb(220 252 231 / 0.9);
  border-right-color: rgb(220 252 231 / 0.9);
}

.border-x-green-100\/95 {
  border-left-color: rgb(220 252 231 / 0.95);
  border-right-color: rgb(220 252 231 / 0.95);
}

.border-x-green-200 {
  --tw-border-opacity: 1;
  border-left-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
  border-right-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
}

.border-x-green-200\/0 {
  border-left-color: rgb(187 247 208 / 0);
  border-right-color: rgb(187 247 208 / 0);
}

.border-x-green-200\/10 {
  border-left-color: rgb(187 247 208 / 0.1);
  border-right-color: rgb(187 247 208 / 0.1);
}

.border-x-green-200\/100 {
  border-left-color: rgb(187 247 208 / 1);
  border-right-color: rgb(187 247 208 / 1);
}

.border-x-green-200\/15 {
  border-left-color: rgb(187 247 208 / 0.15);
  border-right-color: rgb(187 247 208 / 0.15);
}

.border-x-green-200\/20 {
  border-left-color: rgb(187 247 208 / 0.2);
  border-right-color: rgb(187 247 208 / 0.2);
}

.border-x-green-200\/25 {
  border-left-color: rgb(187 247 208 / 0.25);
  border-right-color: rgb(187 247 208 / 0.25);
}

.border-x-green-200\/30 {
  border-left-color: rgb(187 247 208 / 0.3);
  border-right-color: rgb(187 247 208 / 0.3);
}

.border-x-green-200\/35 {
  border-left-color: rgb(187 247 208 / 0.35);
  border-right-color: rgb(187 247 208 / 0.35);
}

.border-x-green-200\/40 {
  border-left-color: rgb(187 247 208 / 0.4);
  border-right-color: rgb(187 247 208 / 0.4);
}

.border-x-green-200\/45 {
  border-left-color: rgb(187 247 208 / 0.45);
  border-right-color: rgb(187 247 208 / 0.45);
}

.border-x-green-200\/5 {
  border-left-color: rgb(187 247 208 / 0.05);
  border-right-color: rgb(187 247 208 / 0.05);
}

.border-x-green-200\/50 {
  border-left-color: rgb(187 247 208 / 0.5);
  border-right-color: rgb(187 247 208 / 0.5);
}

.border-x-green-200\/55 {
  border-left-color: rgb(187 247 208 / 0.55);
  border-right-color: rgb(187 247 208 / 0.55);
}

.border-x-green-200\/60 {
  border-left-color: rgb(187 247 208 / 0.6);
  border-right-color: rgb(187 247 208 / 0.6);
}

.border-x-green-200\/65 {
  border-left-color: rgb(187 247 208 / 0.65);
  border-right-color: rgb(187 247 208 / 0.65);
}

.border-x-green-200\/70 {
  border-left-color: rgb(187 247 208 / 0.7);
  border-right-color: rgb(187 247 208 / 0.7);
}

.border-x-green-200\/75 {
  border-left-color: rgb(187 247 208 / 0.75);
  border-right-color: rgb(187 247 208 / 0.75);
}

.border-x-green-200\/80 {
  border-left-color: rgb(187 247 208 / 0.8);
  border-right-color: rgb(187 247 208 / 0.8);
}

.border-x-green-200\/85 {
  border-left-color: rgb(187 247 208 / 0.85);
  border-right-color: rgb(187 247 208 / 0.85);
}

.border-x-green-200\/90 {
  border-left-color: rgb(187 247 208 / 0.9);
  border-right-color: rgb(187 247 208 / 0.9);
}

.border-x-green-200\/95 {
  border-left-color: rgb(187 247 208 / 0.95);
  border-right-color: rgb(187 247 208 / 0.95);
}

.border-x-green-300 {
  --tw-border-opacity: 1;
  border-left-color: rgb(134 239 172 / var(--tw-border-opacity, 1));
  border-right-color: rgb(134 239 172 / var(--tw-border-opacity, 1));
}

.border-x-green-300\/0 {
  border-left-color: rgb(134 239 172 / 0);
  border-right-color: rgb(134 239 172 / 0);
}

.border-x-green-300\/10 {
  border-left-color: rgb(134 239 172 / 0.1);
  border-right-color: rgb(134 239 172 / 0.1);
}

.border-x-green-300\/100 {
  border-left-color: rgb(134 239 172 / 1);
  border-right-color: rgb(134 239 172 / 1);
}

.border-x-green-300\/15 {
  border-left-color: rgb(134 239 172 / 0.15);
  border-right-color: rgb(134 239 172 / 0.15);
}

.border-x-green-300\/20 {
  border-left-color: rgb(134 239 172 / 0.2);
  border-right-color: rgb(134 239 172 / 0.2);
}

.border-x-green-300\/25 {
  border-left-color: rgb(134 239 172 / 0.25);
  border-right-color: rgb(134 239 172 / 0.25);
}

.border-x-green-300\/30 {
  border-left-color: rgb(134 239 172 / 0.3);
  border-right-color: rgb(134 239 172 / 0.3);
}

.border-x-green-300\/35 {
  border-left-color: rgb(134 239 172 / 0.35);
  border-right-color: rgb(134 239 172 / 0.35);
}

.border-x-green-300\/40 {
  border-left-color: rgb(134 239 172 / 0.4);
  border-right-color: rgb(134 239 172 / 0.4);
}

.border-x-green-300\/45 {
  border-left-color: rgb(134 239 172 / 0.45);
  border-right-color: rgb(134 239 172 / 0.45);
}

.border-x-green-300\/5 {
  border-left-color: rgb(134 239 172 / 0.05);
  border-right-color: rgb(134 239 172 / 0.05);
}

.border-x-green-300\/50 {
  border-left-color: rgb(134 239 172 / 0.5);
  border-right-color: rgb(134 239 172 / 0.5);
}

.border-x-green-300\/55 {
  border-left-color: rgb(134 239 172 / 0.55);
  border-right-color: rgb(134 239 172 / 0.55);
}

.border-x-green-300\/60 {
  border-left-color: rgb(134 239 172 / 0.6);
  border-right-color: rgb(134 239 172 / 0.6);
}

.border-x-green-300\/65 {
  border-left-color: rgb(134 239 172 / 0.65);
  border-right-color: rgb(134 239 172 / 0.65);
}

.border-x-green-300\/70 {
  border-left-color: rgb(134 239 172 / 0.7);
  border-right-color: rgb(134 239 172 / 0.7);
}

.border-x-green-300\/75 {
  border-left-color: rgb(134 239 172 / 0.75);
  border-right-color: rgb(134 239 172 / 0.75);
}

.border-x-green-300\/80 {
  border-left-color: rgb(134 239 172 / 0.8);
  border-right-color: rgb(134 239 172 / 0.8);
}

.border-x-green-300\/85 {
  border-left-color: rgb(134 239 172 / 0.85);
  border-right-color: rgb(134 239 172 / 0.85);
}

.border-x-green-300\/90 {
  border-left-color: rgb(134 239 172 / 0.9);
  border-right-color: rgb(134 239 172 / 0.9);
}

.border-x-green-300\/95 {
  border-left-color: rgb(134 239 172 / 0.95);
  border-right-color: rgb(134 239 172 / 0.95);
}

.border-x-green-400 {
  --tw-border-opacity: 1;
  border-left-color: rgb(74 222 128 / var(--tw-border-opacity, 1));
  border-right-color: rgb(74 222 128 / var(--tw-border-opacity, 1));
}

.border-x-green-400\/0 {
  border-left-color: rgb(74 222 128 / 0);
  border-right-color: rgb(74 222 128 / 0);
}

.border-x-green-400\/10 {
  border-left-color: rgb(74 222 128 / 0.1);
  border-right-color: rgb(74 222 128 / 0.1);
}

.border-x-green-400\/100 {
  border-left-color: rgb(74 222 128 / 1);
  border-right-color: rgb(74 222 128 / 1);
}

.border-x-green-400\/15 {
  border-left-color: rgb(74 222 128 / 0.15);
  border-right-color: rgb(74 222 128 / 0.15);
}

.border-x-green-400\/20 {
  border-left-color: rgb(74 222 128 / 0.2);
  border-right-color: rgb(74 222 128 / 0.2);
}

.border-x-green-400\/25 {
  border-left-color: rgb(74 222 128 / 0.25);
  border-right-color: rgb(74 222 128 / 0.25);
}

.border-x-green-400\/30 {
  border-left-color: rgb(74 222 128 / 0.3);
  border-right-color: rgb(74 222 128 / 0.3);
}

.border-x-green-400\/35 {
  border-left-color: rgb(74 222 128 / 0.35);
  border-right-color: rgb(74 222 128 / 0.35);
}

.border-x-green-400\/40 {
  border-left-color: rgb(74 222 128 / 0.4);
  border-right-color: rgb(74 222 128 / 0.4);
}

.border-x-green-400\/45 {
  border-left-color: rgb(74 222 128 / 0.45);
  border-right-color: rgb(74 222 128 / 0.45);
}

.border-x-green-400\/5 {
  border-left-color: rgb(74 222 128 / 0.05);
  border-right-color: rgb(74 222 128 / 0.05);
}

.border-x-green-400\/50 {
  border-left-color: rgb(74 222 128 / 0.5);
  border-right-color: rgb(74 222 128 / 0.5);
}

.border-x-green-400\/55 {
  border-left-color: rgb(74 222 128 / 0.55);
  border-right-color: rgb(74 222 128 / 0.55);
}

.border-x-green-400\/60 {
  border-left-color: rgb(74 222 128 / 0.6);
  border-right-color: rgb(74 222 128 / 0.6);
}

.border-x-green-400\/65 {
  border-left-color: rgb(74 222 128 / 0.65);
  border-right-color: rgb(74 222 128 / 0.65);
}

.border-x-green-400\/70 {
  border-left-color: rgb(74 222 128 / 0.7);
  border-right-color: rgb(74 222 128 / 0.7);
}

.border-x-green-400\/75 {
  border-left-color: rgb(74 222 128 / 0.75);
  border-right-color: rgb(74 222 128 / 0.75);
}

.border-x-green-400\/80 {
  border-left-color: rgb(74 222 128 / 0.8);
  border-right-color: rgb(74 222 128 / 0.8);
}

.border-x-green-400\/85 {
  border-left-color: rgb(74 222 128 / 0.85);
  border-right-color: rgb(74 222 128 / 0.85);
}

.border-x-green-400\/90 {
  border-left-color: rgb(74 222 128 / 0.9);
  border-right-color: rgb(74 222 128 / 0.9);
}

.border-x-green-400\/95 {
  border-left-color: rgb(74 222 128 / 0.95);
  border-right-color: rgb(74 222 128 / 0.95);
}

.border-x-green-50 {
  --tw-border-opacity: 1;
  border-left-color: rgb(240 253 244 / var(--tw-border-opacity, 1));
  border-right-color: rgb(240 253 244 / var(--tw-border-opacity, 1));
}

.border-x-green-50\/0 {
  border-left-color: rgb(240 253 244 / 0);
  border-right-color: rgb(240 253 244 / 0);
}

.border-x-green-50\/10 {
  border-left-color: rgb(240 253 244 / 0.1);
  border-right-color: rgb(240 253 244 / 0.1);
}

.border-x-green-50\/100 {
  border-left-color: rgb(240 253 244 / 1);
  border-right-color: rgb(240 253 244 / 1);
}

.border-x-green-50\/15 {
  border-left-color: rgb(240 253 244 / 0.15);
  border-right-color: rgb(240 253 244 / 0.15);
}

.border-x-green-50\/20 {
  border-left-color: rgb(240 253 244 / 0.2);
  border-right-color: rgb(240 253 244 / 0.2);
}

.border-x-green-50\/25 {
  border-left-color: rgb(240 253 244 / 0.25);
  border-right-color: rgb(240 253 244 / 0.25);
}

.border-x-green-50\/30 {
  border-left-color: rgb(240 253 244 / 0.3);
  border-right-color: rgb(240 253 244 / 0.3);
}

.border-x-green-50\/35 {
  border-left-color: rgb(240 253 244 / 0.35);
  border-right-color: rgb(240 253 244 / 0.35);
}

.border-x-green-50\/40 {
  border-left-color: rgb(240 253 244 / 0.4);
  border-right-color: rgb(240 253 244 / 0.4);
}

.border-x-green-50\/45 {
  border-left-color: rgb(240 253 244 / 0.45);
  border-right-color: rgb(240 253 244 / 0.45);
}

.border-x-green-50\/5 {
  border-left-color: rgb(240 253 244 / 0.05);
  border-right-color: rgb(240 253 244 / 0.05);
}

.border-x-green-50\/50 {
  border-left-color: rgb(240 253 244 / 0.5);
  border-right-color: rgb(240 253 244 / 0.5);
}

.border-x-green-50\/55 {
  border-left-color: rgb(240 253 244 / 0.55);
  border-right-color: rgb(240 253 244 / 0.55);
}

.border-x-green-50\/60 {
  border-left-color: rgb(240 253 244 / 0.6);
  border-right-color: rgb(240 253 244 / 0.6);
}

.border-x-green-50\/65 {
  border-left-color: rgb(240 253 244 / 0.65);
  border-right-color: rgb(240 253 244 / 0.65);
}

.border-x-green-50\/70 {
  border-left-color: rgb(240 253 244 / 0.7);
  border-right-color: rgb(240 253 244 / 0.7);
}

.border-x-green-50\/75 {
  border-left-color: rgb(240 253 244 / 0.75);
  border-right-color: rgb(240 253 244 / 0.75);
}

.border-x-green-50\/80 {
  border-left-color: rgb(240 253 244 / 0.8);
  border-right-color: rgb(240 253 244 / 0.8);
}

.border-x-green-50\/85 {
  border-left-color: rgb(240 253 244 / 0.85);
  border-right-color: rgb(240 253 244 / 0.85);
}

.border-x-green-50\/90 {
  border-left-color: rgb(240 253 244 / 0.9);
  border-right-color: rgb(240 253 244 / 0.9);
}

.border-x-green-50\/95 {
  border-left-color: rgb(240 253 244 / 0.95);
  border-right-color: rgb(240 253 244 / 0.95);
}

.border-x-green-500 {
  --tw-border-opacity: 1;
  border-left-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
  border-right-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
}

.border-x-green-500\/0 {
  border-left-color: rgb(34 197 94 / 0);
  border-right-color: rgb(34 197 94 / 0);
}

.border-x-green-500\/10 {
  border-left-color: rgb(34 197 94 / 0.1);
  border-right-color: rgb(34 197 94 / 0.1);
}

.border-x-green-500\/100 {
  border-left-color: rgb(34 197 94 / 1);
  border-right-color: rgb(34 197 94 / 1);
}

.border-x-green-500\/15 {
  border-left-color: rgb(34 197 94 / 0.15);
  border-right-color: rgb(34 197 94 / 0.15);
}

.border-x-green-500\/20 {
  border-left-color: rgb(34 197 94 / 0.2);
  border-right-color: rgb(34 197 94 / 0.2);
}

.border-x-green-500\/25 {
  border-left-color: rgb(34 197 94 / 0.25);
  border-right-color: rgb(34 197 94 / 0.25);
}

.border-x-green-500\/30 {
  border-left-color: rgb(34 197 94 / 0.3);
  border-right-color: rgb(34 197 94 / 0.3);
}

.border-x-green-500\/35 {
  border-left-color: rgb(34 197 94 / 0.35);
  border-right-color: rgb(34 197 94 / 0.35);
}

.border-x-green-500\/40 {
  border-left-color: rgb(34 197 94 / 0.4);
  border-right-color: rgb(34 197 94 / 0.4);
}

.border-x-green-500\/45 {
  border-left-color: rgb(34 197 94 / 0.45);
  border-right-color: rgb(34 197 94 / 0.45);
}

.border-x-green-500\/5 {
  border-left-color: rgb(34 197 94 / 0.05);
  border-right-color: rgb(34 197 94 / 0.05);
}

.border-x-green-500\/50 {
  border-left-color: rgb(34 197 94 / 0.5);
  border-right-color: rgb(34 197 94 / 0.5);
}

.border-x-green-500\/55 {
  border-left-color: rgb(34 197 94 / 0.55);
  border-right-color: rgb(34 197 94 / 0.55);
}

.border-x-green-500\/60 {
  border-left-color: rgb(34 197 94 / 0.6);
  border-right-color: rgb(34 197 94 / 0.6);
}

.border-x-green-500\/65 {
  border-left-color: rgb(34 197 94 / 0.65);
  border-right-color: rgb(34 197 94 / 0.65);
}

.border-x-green-500\/70 {
  border-left-color: rgb(34 197 94 / 0.7);
  border-right-color: rgb(34 197 94 / 0.7);
}

.border-x-green-500\/75 {
  border-left-color: rgb(34 197 94 / 0.75);
  border-right-color: rgb(34 197 94 / 0.75);
}

.border-x-green-500\/80 {
  border-left-color: rgb(34 197 94 / 0.8);
  border-right-color: rgb(34 197 94 / 0.8);
}

.border-x-green-500\/85 {
  border-left-color: rgb(34 197 94 / 0.85);
  border-right-color: rgb(34 197 94 / 0.85);
}

.border-x-green-500\/90 {
  border-left-color: rgb(34 197 94 / 0.9);
  border-right-color: rgb(34 197 94 / 0.9);
}

.border-x-green-500\/95 {
  border-left-color: rgb(34 197 94 / 0.95);
  border-right-color: rgb(34 197 94 / 0.95);
}

.border-x-green-600 {
  --tw-border-opacity: 1;
  border-left-color: rgb(22 163 74 / var(--tw-border-opacity, 1));
  border-right-color: rgb(22 163 74 / var(--tw-border-opacity, 1));
}

.border-x-green-600\/0 {
  border-left-color: rgb(22 163 74 / 0);
  border-right-color: rgb(22 163 74 / 0);
}

.border-x-green-600\/10 {
  border-left-color: rgb(22 163 74 / 0.1);
  border-right-color: rgb(22 163 74 / 0.1);
}

.border-x-green-600\/100 {
  border-left-color: rgb(22 163 74 / 1);
  border-right-color: rgb(22 163 74 / 1);
}

.border-x-green-600\/15 {
  border-left-color: rgb(22 163 74 / 0.15);
  border-right-color: rgb(22 163 74 / 0.15);
}

.border-x-green-600\/20 {
  border-left-color: rgb(22 163 74 / 0.2);
  border-right-color: rgb(22 163 74 / 0.2);
}

.border-x-green-600\/25 {
  border-left-color: rgb(22 163 74 / 0.25);
  border-right-color: rgb(22 163 74 / 0.25);
}

.border-x-green-600\/30 {
  border-left-color: rgb(22 163 74 / 0.3);
  border-right-color: rgb(22 163 74 / 0.3);
}

.border-x-green-600\/35 {
  border-left-color: rgb(22 163 74 / 0.35);
  border-right-color: rgb(22 163 74 / 0.35);
}

.border-x-green-600\/40 {
  border-left-color: rgb(22 163 74 / 0.4);
  border-right-color: rgb(22 163 74 / 0.4);
}

.border-x-green-600\/45 {
  border-left-color: rgb(22 163 74 / 0.45);
  border-right-color: rgb(22 163 74 / 0.45);
}

.border-x-green-600\/5 {
  border-left-color: rgb(22 163 74 / 0.05);
  border-right-color: rgb(22 163 74 / 0.05);
}

.border-x-green-600\/50 {
  border-left-color: rgb(22 163 74 / 0.5);
  border-right-color: rgb(22 163 74 / 0.5);
}

.border-x-green-600\/55 {
  border-left-color: rgb(22 163 74 / 0.55);
  border-right-color: rgb(22 163 74 / 0.55);
}

.border-x-green-600\/60 {
  border-left-color: rgb(22 163 74 / 0.6);
  border-right-color: rgb(22 163 74 / 0.6);
}

.border-x-green-600\/65 {
  border-left-color: rgb(22 163 74 / 0.65);
  border-right-color: rgb(22 163 74 / 0.65);
}

.border-x-green-600\/70 {
  border-left-color: rgb(22 163 74 / 0.7);
  border-right-color: rgb(22 163 74 / 0.7);
}

.border-x-green-600\/75 {
  border-left-color: rgb(22 163 74 / 0.75);
  border-right-color: rgb(22 163 74 / 0.75);
}

.border-x-green-600\/80 {
  border-left-color: rgb(22 163 74 / 0.8);
  border-right-color: rgb(22 163 74 / 0.8);
}

.border-x-green-600\/85 {
  border-left-color: rgb(22 163 74 / 0.85);
  border-right-color: rgb(22 163 74 / 0.85);
}

.border-x-green-600\/90 {
  border-left-color: rgb(22 163 74 / 0.9);
  border-right-color: rgb(22 163 74 / 0.9);
}

.border-x-green-600\/95 {
  border-left-color: rgb(22 163 74 / 0.95);
  border-right-color: rgb(22 163 74 / 0.95);
}

.border-x-green-700 {
  --tw-border-opacity: 1;
  border-left-color: rgb(21 128 61 / var(--tw-border-opacity, 1));
  border-right-color: rgb(21 128 61 / var(--tw-border-opacity, 1));
}

.border-x-green-700\/0 {
  border-left-color: rgb(21 128 61 / 0);
  border-right-color: rgb(21 128 61 / 0);
}

.border-x-green-700\/10 {
  border-left-color: rgb(21 128 61 / 0.1);
  border-right-color: rgb(21 128 61 / 0.1);
}

.border-x-green-700\/100 {
  border-left-color: rgb(21 128 61 / 1);
  border-right-color: rgb(21 128 61 / 1);
}

.border-x-green-700\/15 {
  border-left-color: rgb(21 128 61 / 0.15);
  border-right-color: rgb(21 128 61 / 0.15);
}

.border-x-green-700\/20 {
  border-left-color: rgb(21 128 61 / 0.2);
  border-right-color: rgb(21 128 61 / 0.2);
}

.border-x-green-700\/25 {
  border-left-color: rgb(21 128 61 / 0.25);
  border-right-color: rgb(21 128 61 / 0.25);
}

.border-x-green-700\/30 {
  border-left-color: rgb(21 128 61 / 0.3);
  border-right-color: rgb(21 128 61 / 0.3);
}

.border-x-green-700\/35 {
  border-left-color: rgb(21 128 61 / 0.35);
  border-right-color: rgb(21 128 61 / 0.35);
}

.border-x-green-700\/40 {
  border-left-color: rgb(21 128 61 / 0.4);
  border-right-color: rgb(21 128 61 / 0.4);
}

.border-x-green-700\/45 {
  border-left-color: rgb(21 128 61 / 0.45);
  border-right-color: rgb(21 128 61 / 0.45);
}

.border-x-green-700\/5 {
  border-left-color: rgb(21 128 61 / 0.05);
  border-right-color: rgb(21 128 61 / 0.05);
}

.border-x-green-700\/50 {
  border-left-color: rgb(21 128 61 / 0.5);
  border-right-color: rgb(21 128 61 / 0.5);
}

.border-x-green-700\/55 {
  border-left-color: rgb(21 128 61 / 0.55);
  border-right-color: rgb(21 128 61 / 0.55);
}

.border-x-green-700\/60 {
  border-left-color: rgb(21 128 61 / 0.6);
  border-right-color: rgb(21 128 61 / 0.6);
}

.border-x-green-700\/65 {
  border-left-color: rgb(21 128 61 / 0.65);
  border-right-color: rgb(21 128 61 / 0.65);
}

.border-x-green-700\/70 {
  border-left-color: rgb(21 128 61 / 0.7);
  border-right-color: rgb(21 128 61 / 0.7);
}

.border-x-green-700\/75 {
  border-left-color: rgb(21 128 61 / 0.75);
  border-right-color: rgb(21 128 61 / 0.75);
}

.border-x-green-700\/80 {
  border-left-color: rgb(21 128 61 / 0.8);
  border-right-color: rgb(21 128 61 / 0.8);
}

.border-x-green-700\/85 {
  border-left-color: rgb(21 128 61 / 0.85);
  border-right-color: rgb(21 128 61 / 0.85);
}

.border-x-green-700\/90 {
  border-left-color: rgb(21 128 61 / 0.9);
  border-right-color: rgb(21 128 61 / 0.9);
}

.border-x-green-700\/95 {
  border-left-color: rgb(21 128 61 / 0.95);
  border-right-color: rgb(21 128 61 / 0.95);
}

.border-x-green-800 {
  --tw-border-opacity: 1;
  border-left-color: rgb(22 101 52 / var(--tw-border-opacity, 1));
  border-right-color: rgb(22 101 52 / var(--tw-border-opacity, 1));
}

.border-x-green-800\/0 {
  border-left-color: rgb(22 101 52 / 0);
  border-right-color: rgb(22 101 52 / 0);
}

.border-x-green-800\/10 {
  border-left-color: rgb(22 101 52 / 0.1);
  border-right-color: rgb(22 101 52 / 0.1);
}

.border-x-green-800\/100 {
  border-left-color: rgb(22 101 52 / 1);
  border-right-color: rgb(22 101 52 / 1);
}

.border-x-green-800\/15 {
  border-left-color: rgb(22 101 52 / 0.15);
  border-right-color: rgb(22 101 52 / 0.15);
}

.border-x-green-800\/20 {
  border-left-color: rgb(22 101 52 / 0.2);
  border-right-color: rgb(22 101 52 / 0.2);
}

.border-x-green-800\/25 {
  border-left-color: rgb(22 101 52 / 0.25);
  border-right-color: rgb(22 101 52 / 0.25);
}

.border-x-green-800\/30 {
  border-left-color: rgb(22 101 52 / 0.3);
  border-right-color: rgb(22 101 52 / 0.3);
}

.border-x-green-800\/35 {
  border-left-color: rgb(22 101 52 / 0.35);
  border-right-color: rgb(22 101 52 / 0.35);
}

.border-x-green-800\/40 {
  border-left-color: rgb(22 101 52 / 0.4);
  border-right-color: rgb(22 101 52 / 0.4);
}

.border-x-green-800\/45 {
  border-left-color: rgb(22 101 52 / 0.45);
  border-right-color: rgb(22 101 52 / 0.45);
}

.border-x-green-800\/5 {
  border-left-color: rgb(22 101 52 / 0.05);
  border-right-color: rgb(22 101 52 / 0.05);
}

.border-x-green-800\/50 {
  border-left-color: rgb(22 101 52 / 0.5);
  border-right-color: rgb(22 101 52 / 0.5);
}

.border-x-green-800\/55 {
  border-left-color: rgb(22 101 52 / 0.55);
  border-right-color: rgb(22 101 52 / 0.55);
}

.border-x-green-800\/60 {
  border-left-color: rgb(22 101 52 / 0.6);
  border-right-color: rgb(22 101 52 / 0.6);
}

.border-x-green-800\/65 {
  border-left-color: rgb(22 101 52 / 0.65);
  border-right-color: rgb(22 101 52 / 0.65);
}

.border-x-green-800\/70 {
  border-left-color: rgb(22 101 52 / 0.7);
  border-right-color: rgb(22 101 52 / 0.7);
}

.border-x-green-800\/75 {
  border-left-color: rgb(22 101 52 / 0.75);
  border-right-color: rgb(22 101 52 / 0.75);
}

.border-x-green-800\/80 {
  border-left-color: rgb(22 101 52 / 0.8);
  border-right-color: rgb(22 101 52 / 0.8);
}

.border-x-green-800\/85 {
  border-left-color: rgb(22 101 52 / 0.85);
  border-right-color: rgb(22 101 52 / 0.85);
}

.border-x-green-800\/90 {
  border-left-color: rgb(22 101 52 / 0.9);
  border-right-color: rgb(22 101 52 / 0.9);
}

.border-x-green-800\/95 {
  border-left-color: rgb(22 101 52 / 0.95);
  border-right-color: rgb(22 101 52 / 0.95);
}

.border-x-green-900 {
  --tw-border-opacity: 1;
  border-left-color: rgb(20 83 45 / var(--tw-border-opacity, 1));
  border-right-color: rgb(20 83 45 / var(--tw-border-opacity, 1));
}

.border-x-green-900\/0 {
  border-left-color: rgb(20 83 45 / 0);
  border-right-color: rgb(20 83 45 / 0);
}

.border-x-green-900\/10 {
  border-left-color: rgb(20 83 45 / 0.1);
  border-right-color: rgb(20 83 45 / 0.1);
}

.border-x-green-900\/100 {
  border-left-color: rgb(20 83 45 / 1);
  border-right-color: rgb(20 83 45 / 1);
}

.border-x-green-900\/15 {
  border-left-color: rgb(20 83 45 / 0.15);
  border-right-color: rgb(20 83 45 / 0.15);
}

.border-x-green-900\/20 {
  border-left-color: rgb(20 83 45 / 0.2);
  border-right-color: rgb(20 83 45 / 0.2);
}

.border-x-green-900\/25 {
  border-left-color: rgb(20 83 45 / 0.25);
  border-right-color: rgb(20 83 45 / 0.25);
}

.border-x-green-900\/30 {
  border-left-color: rgb(20 83 45 / 0.3);
  border-right-color: rgb(20 83 45 / 0.3);
}

.border-x-green-900\/35 {
  border-left-color: rgb(20 83 45 / 0.35);
  border-right-color: rgb(20 83 45 / 0.35);
}

.border-x-green-900\/40 {
  border-left-color: rgb(20 83 45 / 0.4);
  border-right-color: rgb(20 83 45 / 0.4);
}

.border-x-green-900\/45 {
  border-left-color: rgb(20 83 45 / 0.45);
  border-right-color: rgb(20 83 45 / 0.45);
}

.border-x-green-900\/5 {
  border-left-color: rgb(20 83 45 / 0.05);
  border-right-color: rgb(20 83 45 / 0.05);
}

.border-x-green-900\/50 {
  border-left-color: rgb(20 83 45 / 0.5);
  border-right-color: rgb(20 83 45 / 0.5);
}

.border-x-green-900\/55 {
  border-left-color: rgb(20 83 45 / 0.55);
  border-right-color: rgb(20 83 45 / 0.55);
}

.border-x-green-900\/60 {
  border-left-color: rgb(20 83 45 / 0.6);
  border-right-color: rgb(20 83 45 / 0.6);
}

.border-x-green-900\/65 {
  border-left-color: rgb(20 83 45 / 0.65);
  border-right-color: rgb(20 83 45 / 0.65);
}

.border-x-green-900\/70 {
  border-left-color: rgb(20 83 45 / 0.7);
  border-right-color: rgb(20 83 45 / 0.7);
}

.border-x-green-900\/75 {
  border-left-color: rgb(20 83 45 / 0.75);
  border-right-color: rgb(20 83 45 / 0.75);
}

.border-x-green-900\/80 {
  border-left-color: rgb(20 83 45 / 0.8);
  border-right-color: rgb(20 83 45 / 0.8);
}

.border-x-green-900\/85 {
  border-left-color: rgb(20 83 45 / 0.85);
  border-right-color: rgb(20 83 45 / 0.85);
}

.border-x-green-900\/90 {
  border-left-color: rgb(20 83 45 / 0.9);
  border-right-color: rgb(20 83 45 / 0.9);
}

.border-x-green-900\/95 {
  border-left-color: rgb(20 83 45 / 0.95);
  border-right-color: rgb(20 83 45 / 0.95);
}

.border-x-green-950 {
  --tw-border-opacity: 1;
  border-left-color: rgb(5 46 22 / var(--tw-border-opacity, 1));
  border-right-color: rgb(5 46 22 / var(--tw-border-opacity, 1));
}

.border-x-green-950\/0 {
  border-left-color: rgb(5 46 22 / 0);
  border-right-color: rgb(5 46 22 / 0);
}

.border-x-green-950\/10 {
  border-left-color: rgb(5 46 22 / 0.1);
  border-right-color: rgb(5 46 22 / 0.1);
}

.border-x-green-950\/100 {
  border-left-color: rgb(5 46 22 / 1);
  border-right-color: rgb(5 46 22 / 1);
}

.border-x-green-950\/15 {
  border-left-color: rgb(5 46 22 / 0.15);
  border-right-color: rgb(5 46 22 / 0.15);
}

.border-x-green-950\/20 {
  border-left-color: rgb(5 46 22 / 0.2);
  border-right-color: rgb(5 46 22 / 0.2);
}

.border-x-green-950\/25 {
  border-left-color: rgb(5 46 22 / 0.25);
  border-right-color: rgb(5 46 22 / 0.25);
}

.border-x-green-950\/30 {
  border-left-color: rgb(5 46 22 / 0.3);
  border-right-color: rgb(5 46 22 / 0.3);
}

.border-x-green-950\/35 {
  border-left-color: rgb(5 46 22 / 0.35);
  border-right-color: rgb(5 46 22 / 0.35);
}

.border-x-green-950\/40 {
  border-left-color: rgb(5 46 22 / 0.4);
  border-right-color: rgb(5 46 22 / 0.4);
}

.border-x-green-950\/45 {
  border-left-color: rgb(5 46 22 / 0.45);
  border-right-color: rgb(5 46 22 / 0.45);
}

.border-x-green-950\/5 {
  border-left-color: rgb(5 46 22 / 0.05);
  border-right-color: rgb(5 46 22 / 0.05);
}

.border-x-green-950\/50 {
  border-left-color: rgb(5 46 22 / 0.5);
  border-right-color: rgb(5 46 22 / 0.5);
}

.border-x-green-950\/55 {
  border-left-color: rgb(5 46 22 / 0.55);
  border-right-color: rgb(5 46 22 / 0.55);
}

.border-x-green-950\/60 {
  border-left-color: rgb(5 46 22 / 0.6);
  border-right-color: rgb(5 46 22 / 0.6);
}

.border-x-green-950\/65 {
  border-left-color: rgb(5 46 22 / 0.65);
  border-right-color: rgb(5 46 22 / 0.65);
}

.border-x-green-950\/70 {
  border-left-color: rgb(5 46 22 / 0.7);
  border-right-color: rgb(5 46 22 / 0.7);
}

.border-x-green-950\/75 {
  border-left-color: rgb(5 46 22 / 0.75);
  border-right-color: rgb(5 46 22 / 0.75);
}

.border-x-green-950\/80 {
  border-left-color: rgb(5 46 22 / 0.8);
  border-right-color: rgb(5 46 22 / 0.8);
}

.border-x-green-950\/85 {
  border-left-color: rgb(5 46 22 / 0.85);
  border-right-color: rgb(5 46 22 / 0.85);
}

.border-x-green-950\/90 {
  border-left-color: rgb(5 46 22 / 0.9);
  border-right-color: rgb(5 46 22 / 0.9);
}

.border-x-green-950\/95 {
  border-left-color: rgb(5 46 22 / 0.95);
  border-right-color: rgb(5 46 22 / 0.95);
}

.border-x-red-100 {
  --tw-border-opacity: 1;
  border-left-color: rgb(254 226 226 / var(--tw-border-opacity, 1));
  border-right-color: rgb(254 226 226 / var(--tw-border-opacity, 1));
}

.border-x-red-100\/0 {
  border-left-color: rgb(254 226 226 / 0);
  border-right-color: rgb(254 226 226 / 0);
}

.border-x-red-100\/10 {
  border-left-color: rgb(254 226 226 / 0.1);
  border-right-color: rgb(254 226 226 / 0.1);
}

.border-x-red-100\/100 {
  border-left-color: rgb(254 226 226 / 1);
  border-right-color: rgb(254 226 226 / 1);
}

.border-x-red-100\/15 {
  border-left-color: rgb(254 226 226 / 0.15);
  border-right-color: rgb(254 226 226 / 0.15);
}

.border-x-red-100\/20 {
  border-left-color: rgb(254 226 226 / 0.2);
  border-right-color: rgb(254 226 226 / 0.2);
}

.border-x-red-100\/25 {
  border-left-color: rgb(254 226 226 / 0.25);
  border-right-color: rgb(254 226 226 / 0.25);
}

.border-x-red-100\/30 {
  border-left-color: rgb(254 226 226 / 0.3);
  border-right-color: rgb(254 226 226 / 0.3);
}

.border-x-red-100\/35 {
  border-left-color: rgb(254 226 226 / 0.35);
  border-right-color: rgb(254 226 226 / 0.35);
}

.border-x-red-100\/40 {
  border-left-color: rgb(254 226 226 / 0.4);
  border-right-color: rgb(254 226 226 / 0.4);
}

.border-x-red-100\/45 {
  border-left-color: rgb(254 226 226 / 0.45);
  border-right-color: rgb(254 226 226 / 0.45);
}

.border-x-red-100\/5 {
  border-left-color: rgb(254 226 226 / 0.05);
  border-right-color: rgb(254 226 226 / 0.05);
}

.border-x-red-100\/50 {
  border-left-color: rgb(254 226 226 / 0.5);
  border-right-color: rgb(254 226 226 / 0.5);
}

.border-x-red-100\/55 {
  border-left-color: rgb(254 226 226 / 0.55);
  border-right-color: rgb(254 226 226 / 0.55);
}

.border-x-red-100\/60 {
  border-left-color: rgb(254 226 226 / 0.6);
  border-right-color: rgb(254 226 226 / 0.6);
}

.border-x-red-100\/65 {
  border-left-color: rgb(254 226 226 / 0.65);
  border-right-color: rgb(254 226 226 / 0.65);
}

.border-x-red-100\/70 {
  border-left-color: rgb(254 226 226 / 0.7);
  border-right-color: rgb(254 226 226 / 0.7);
}

.border-x-red-100\/75 {
  border-left-color: rgb(254 226 226 / 0.75);
  border-right-color: rgb(254 226 226 / 0.75);
}

.border-x-red-100\/80 {
  border-left-color: rgb(254 226 226 / 0.8);
  border-right-color: rgb(254 226 226 / 0.8);
}

.border-x-red-100\/85 {
  border-left-color: rgb(254 226 226 / 0.85);
  border-right-color: rgb(254 226 226 / 0.85);
}

.border-x-red-100\/90 {
  border-left-color: rgb(254 226 226 / 0.9);
  border-right-color: rgb(254 226 226 / 0.9);
}

.border-x-red-100\/95 {
  border-left-color: rgb(254 226 226 / 0.95);
  border-right-color: rgb(254 226 226 / 0.95);
}

.border-x-red-200 {
  --tw-border-opacity: 1;
  border-left-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
  border-right-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}

.border-x-red-200\/0 {
  border-left-color: rgb(254 202 202 / 0);
  border-right-color: rgb(254 202 202 / 0);
}

.border-x-red-200\/10 {
  border-left-color: rgb(254 202 202 / 0.1);
  border-right-color: rgb(254 202 202 / 0.1);
}

.border-x-red-200\/100 {
  border-left-color: rgb(254 202 202 / 1);
  border-right-color: rgb(254 202 202 / 1);
}

.border-x-red-200\/15 {
  border-left-color: rgb(254 202 202 / 0.15);
  border-right-color: rgb(254 202 202 / 0.15);
}

.border-x-red-200\/20 {
  border-left-color: rgb(254 202 202 / 0.2);
  border-right-color: rgb(254 202 202 / 0.2);
}

.border-x-red-200\/25 {
  border-left-color: rgb(254 202 202 / 0.25);
  border-right-color: rgb(254 202 202 / 0.25);
}

.border-x-red-200\/30 {
  border-left-color: rgb(254 202 202 / 0.3);
  border-right-color: rgb(254 202 202 / 0.3);
}

.border-x-red-200\/35 {
  border-left-color: rgb(254 202 202 / 0.35);
  border-right-color: rgb(254 202 202 / 0.35);
}

.border-x-red-200\/40 {
  border-left-color: rgb(254 202 202 / 0.4);
  border-right-color: rgb(254 202 202 / 0.4);
}

.border-x-red-200\/45 {
  border-left-color: rgb(254 202 202 / 0.45);
  border-right-color: rgb(254 202 202 / 0.45);
}

.border-x-red-200\/5 {
  border-left-color: rgb(254 202 202 / 0.05);
  border-right-color: rgb(254 202 202 / 0.05);
}

.border-x-red-200\/50 {
  border-left-color: rgb(254 202 202 / 0.5);
  border-right-color: rgb(254 202 202 / 0.5);
}

.border-x-red-200\/55 {
  border-left-color: rgb(254 202 202 / 0.55);
  border-right-color: rgb(254 202 202 / 0.55);
}

.border-x-red-200\/60 {
  border-left-color: rgb(254 202 202 / 0.6);
  border-right-color: rgb(254 202 202 / 0.6);
}

.border-x-red-200\/65 {
  border-left-color: rgb(254 202 202 / 0.65);
  border-right-color: rgb(254 202 202 / 0.65);
}

.border-x-red-200\/70 {
  border-left-color: rgb(254 202 202 / 0.7);
  border-right-color: rgb(254 202 202 / 0.7);
}

.border-x-red-200\/75 {
  border-left-color: rgb(254 202 202 / 0.75);
  border-right-color: rgb(254 202 202 / 0.75);
}

.border-x-red-200\/80 {
  border-left-color: rgb(254 202 202 / 0.8);
  border-right-color: rgb(254 202 202 / 0.8);
}

.border-x-red-200\/85 {
  border-left-color: rgb(254 202 202 / 0.85);
  border-right-color: rgb(254 202 202 / 0.85);
}

.border-x-red-200\/90 {
  border-left-color: rgb(254 202 202 / 0.9);
  border-right-color: rgb(254 202 202 / 0.9);
}

.border-x-red-200\/95 {
  border-left-color: rgb(254 202 202 / 0.95);
  border-right-color: rgb(254 202 202 / 0.95);
}

.border-x-red-300 {
  --tw-border-opacity: 1;
  border-left-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
  border-right-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
}

.border-x-red-300\/0 {
  border-left-color: rgb(252 165 165 / 0);
  border-right-color: rgb(252 165 165 / 0);
}

.border-x-red-300\/10 {
  border-left-color: rgb(252 165 165 / 0.1);
  border-right-color: rgb(252 165 165 / 0.1);
}

.border-x-red-300\/100 {
  border-left-color: rgb(252 165 165 / 1);
  border-right-color: rgb(252 165 165 / 1);
}

.border-x-red-300\/15 {
  border-left-color: rgb(252 165 165 / 0.15);
  border-right-color: rgb(252 165 165 / 0.15);
}

.border-x-red-300\/20 {
  border-left-color: rgb(252 165 165 / 0.2);
  border-right-color: rgb(252 165 165 / 0.2);
}

.border-x-red-300\/25 {
  border-left-color: rgb(252 165 165 / 0.25);
  border-right-color: rgb(252 165 165 / 0.25);
}

.border-x-red-300\/30 {
  border-left-color: rgb(252 165 165 / 0.3);
  border-right-color: rgb(252 165 165 / 0.3);
}

.border-x-red-300\/35 {
  border-left-color: rgb(252 165 165 / 0.35);
  border-right-color: rgb(252 165 165 / 0.35);
}

.border-x-red-300\/40 {
  border-left-color: rgb(252 165 165 / 0.4);
  border-right-color: rgb(252 165 165 / 0.4);
}

.border-x-red-300\/45 {
  border-left-color: rgb(252 165 165 / 0.45);
  border-right-color: rgb(252 165 165 / 0.45);
}

.border-x-red-300\/5 {
  border-left-color: rgb(252 165 165 / 0.05);
  border-right-color: rgb(252 165 165 / 0.05);
}

.border-x-red-300\/50 {
  border-left-color: rgb(252 165 165 / 0.5);
  border-right-color: rgb(252 165 165 / 0.5);
}

.border-x-red-300\/55 {
  border-left-color: rgb(252 165 165 / 0.55);
  border-right-color: rgb(252 165 165 / 0.55);
}

.border-x-red-300\/60 {
  border-left-color: rgb(252 165 165 / 0.6);
  border-right-color: rgb(252 165 165 / 0.6);
}

.border-x-red-300\/65 {
  border-left-color: rgb(252 165 165 / 0.65);
  border-right-color: rgb(252 165 165 / 0.65);
}

.border-x-red-300\/70 {
  border-left-color: rgb(252 165 165 / 0.7);
  border-right-color: rgb(252 165 165 / 0.7);
}

.border-x-red-300\/75 {
  border-left-color: rgb(252 165 165 / 0.75);
  border-right-color: rgb(252 165 165 / 0.75);
}

.border-x-red-300\/80 {
  border-left-color: rgb(252 165 165 / 0.8);
  border-right-color: rgb(252 165 165 / 0.8);
}

.border-x-red-300\/85 {
  border-left-color: rgb(252 165 165 / 0.85);
  border-right-color: rgb(252 165 165 / 0.85);
}

.border-x-red-300\/90 {
  border-left-color: rgb(252 165 165 / 0.9);
  border-right-color: rgb(252 165 165 / 0.9);
}

.border-x-red-300\/95 {
  border-left-color: rgb(252 165 165 / 0.95);
  border-right-color: rgb(252 165 165 / 0.95);
}

.border-x-red-400 {
  --tw-border-opacity: 1;
  border-left-color: rgb(248 113 113 / var(--tw-border-opacity, 1));
  border-right-color: rgb(248 113 113 / var(--tw-border-opacity, 1));
}

.border-x-red-400\/0 {
  border-left-color: rgb(248 113 113 / 0);
  border-right-color: rgb(248 113 113 / 0);
}

.border-x-red-400\/10 {
  border-left-color: rgb(248 113 113 / 0.1);
  border-right-color: rgb(248 113 113 / 0.1);
}

.border-x-red-400\/100 {
  border-left-color: rgb(248 113 113 / 1);
  border-right-color: rgb(248 113 113 / 1);
}

.border-x-red-400\/15 {
  border-left-color: rgb(248 113 113 / 0.15);
  border-right-color: rgb(248 113 113 / 0.15);
}

.border-x-red-400\/20 {
  border-left-color: rgb(248 113 113 / 0.2);
  border-right-color: rgb(248 113 113 / 0.2);
}

.border-x-red-400\/25 {
  border-left-color: rgb(248 113 113 / 0.25);
  border-right-color: rgb(248 113 113 / 0.25);
}

.border-x-red-400\/30 {
  border-left-color: rgb(248 113 113 / 0.3);
  border-right-color: rgb(248 113 113 / 0.3);
}

.border-x-red-400\/35 {
  border-left-color: rgb(248 113 113 / 0.35);
  border-right-color: rgb(248 113 113 / 0.35);
}

.border-x-red-400\/40 {
  border-left-color: rgb(248 113 113 / 0.4);
  border-right-color: rgb(248 113 113 / 0.4);
}

.border-x-red-400\/45 {
  border-left-color: rgb(248 113 113 / 0.45);
  border-right-color: rgb(248 113 113 / 0.45);
}

.border-x-red-400\/5 {
  border-left-color: rgb(248 113 113 / 0.05);
  border-right-color: rgb(248 113 113 / 0.05);
}

.border-x-red-400\/50 {
  border-left-color: rgb(248 113 113 / 0.5);
  border-right-color: rgb(248 113 113 / 0.5);
}

.border-x-red-400\/55 {
  border-left-color: rgb(248 113 113 / 0.55);
  border-right-color: rgb(248 113 113 / 0.55);
}

.border-x-red-400\/60 {
  border-left-color: rgb(248 113 113 / 0.6);
  border-right-color: rgb(248 113 113 / 0.6);
}

.border-x-red-400\/65 {
  border-left-color: rgb(248 113 113 / 0.65);
  border-right-color: rgb(248 113 113 / 0.65);
}

.border-x-red-400\/70 {
  border-left-color: rgb(248 113 113 / 0.7);
  border-right-color: rgb(248 113 113 / 0.7);
}

.border-x-red-400\/75 {
  border-left-color: rgb(248 113 113 / 0.75);
  border-right-color: rgb(248 113 113 / 0.75);
}

.border-x-red-400\/80 {
  border-left-color: rgb(248 113 113 / 0.8);
  border-right-color: rgb(248 113 113 / 0.8);
}

.border-x-red-400\/85 {
  border-left-color: rgb(248 113 113 / 0.85);
  border-right-color: rgb(248 113 113 / 0.85);
}

.border-x-red-400\/90 {
  border-left-color: rgb(248 113 113 / 0.9);
  border-right-color: rgb(248 113 113 / 0.9);
}

.border-x-red-400\/95 {
  border-left-color: rgb(248 113 113 / 0.95);
  border-right-color: rgb(248 113 113 / 0.95);
}

.border-x-red-50 {
  --tw-border-opacity: 1;
  border-left-color: rgb(254 242 242 / var(--tw-border-opacity, 1));
  border-right-color: rgb(254 242 242 / var(--tw-border-opacity, 1));
}

.border-x-red-50\/0 {
  border-left-color: rgb(254 242 242 / 0);
  border-right-color: rgb(254 242 242 / 0);
}

.border-x-red-50\/10 {
  border-left-color: rgb(254 242 242 / 0.1);
  border-right-color: rgb(254 242 242 / 0.1);
}

.border-x-red-50\/100 {
  border-left-color: rgb(254 242 242 / 1);
  border-right-color: rgb(254 242 242 / 1);
}

.border-x-red-50\/15 {
  border-left-color: rgb(254 242 242 / 0.15);
  border-right-color: rgb(254 242 242 / 0.15);
}

.border-x-red-50\/20 {
  border-left-color: rgb(254 242 242 / 0.2);
  border-right-color: rgb(254 242 242 / 0.2);
}

.border-x-red-50\/25 {
  border-left-color: rgb(254 242 242 / 0.25);
  border-right-color: rgb(254 242 242 / 0.25);
}

.border-x-red-50\/30 {
  border-left-color: rgb(254 242 242 / 0.3);
  border-right-color: rgb(254 242 242 / 0.3);
}

.border-x-red-50\/35 {
  border-left-color: rgb(254 242 242 / 0.35);
  border-right-color: rgb(254 242 242 / 0.35);
}

.border-x-red-50\/40 {
  border-left-color: rgb(254 242 242 / 0.4);
  border-right-color: rgb(254 242 242 / 0.4);
}

.border-x-red-50\/45 {
  border-left-color: rgb(254 242 242 / 0.45);
  border-right-color: rgb(254 242 242 / 0.45);
}

.border-x-red-50\/5 {
  border-left-color: rgb(254 242 242 / 0.05);
  border-right-color: rgb(254 242 242 / 0.05);
}

.border-x-red-50\/50 {
  border-left-color: rgb(254 242 242 / 0.5);
  border-right-color: rgb(254 242 242 / 0.5);
}

.border-x-red-50\/55 {
  border-left-color: rgb(254 242 242 / 0.55);
  border-right-color: rgb(254 242 242 / 0.55);
}

.border-x-red-50\/60 {
  border-left-color: rgb(254 242 242 / 0.6);
  border-right-color: rgb(254 242 242 / 0.6);
}

.border-x-red-50\/65 {
  border-left-color: rgb(254 242 242 / 0.65);
  border-right-color: rgb(254 242 242 / 0.65);
}

.border-x-red-50\/70 {
  border-left-color: rgb(254 242 242 / 0.7);
  border-right-color: rgb(254 242 242 / 0.7);
}

.border-x-red-50\/75 {
  border-left-color: rgb(254 242 242 / 0.75);
  border-right-color: rgb(254 242 242 / 0.75);
}

.border-x-red-50\/80 {
  border-left-color: rgb(254 242 242 / 0.8);
  border-right-color: rgb(254 242 242 / 0.8);
}

.border-x-red-50\/85 {
  border-left-color: rgb(254 242 242 / 0.85);
  border-right-color: rgb(254 242 242 / 0.85);
}

.border-x-red-50\/90 {
  border-left-color: rgb(254 242 242 / 0.9);
  border-right-color: rgb(254 242 242 / 0.9);
}

.border-x-red-50\/95 {
  border-left-color: rgb(254 242 242 / 0.95);
  border-right-color: rgb(254 242 242 / 0.95);
}

.border-x-red-500 {
  --tw-border-opacity: 1;
  border-left-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
  border-right-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}

.border-x-red-500\/0 {
  border-left-color: rgb(239 68 68 / 0);
  border-right-color: rgb(239 68 68 / 0);
}

.border-x-red-500\/10 {
  border-left-color: rgb(239 68 68 / 0.1);
  border-right-color: rgb(239 68 68 / 0.1);
}

.border-x-red-500\/100 {
  border-left-color: rgb(239 68 68 / 1);
  border-right-color: rgb(239 68 68 / 1);
}

.border-x-red-500\/15 {
  border-left-color: rgb(239 68 68 / 0.15);
  border-right-color: rgb(239 68 68 / 0.15);
}

.border-x-red-500\/20 {
  border-left-color: rgb(239 68 68 / 0.2);
  border-right-color: rgb(239 68 68 / 0.2);
}

.border-x-red-500\/25 {
  border-left-color: rgb(239 68 68 / 0.25);
  border-right-color: rgb(239 68 68 / 0.25);
}

.border-x-red-500\/30 {
  border-left-color: rgb(239 68 68 / 0.3);
  border-right-color: rgb(239 68 68 / 0.3);
}

.border-x-red-500\/35 {
  border-left-color: rgb(239 68 68 / 0.35);
  border-right-color: rgb(239 68 68 / 0.35);
}

.border-x-red-500\/40 {
  border-left-color: rgb(239 68 68 / 0.4);
  border-right-color: rgb(239 68 68 / 0.4);
}

.border-x-red-500\/45 {
  border-left-color: rgb(239 68 68 / 0.45);
  border-right-color: rgb(239 68 68 / 0.45);
}

.border-x-red-500\/5 {
  border-left-color: rgb(239 68 68 / 0.05);
  border-right-color: rgb(239 68 68 / 0.05);
}

.border-x-red-500\/50 {
  border-left-color: rgb(239 68 68 / 0.5);
  border-right-color: rgb(239 68 68 / 0.5);
}

.border-x-red-500\/55 {
  border-left-color: rgb(239 68 68 / 0.55);
  border-right-color: rgb(239 68 68 / 0.55);
}

.border-x-red-500\/60 {
  border-left-color: rgb(239 68 68 / 0.6);
  border-right-color: rgb(239 68 68 / 0.6);
}

.border-x-red-500\/65 {
  border-left-color: rgb(239 68 68 / 0.65);
  border-right-color: rgb(239 68 68 / 0.65);
}

.border-x-red-500\/70 {
  border-left-color: rgb(239 68 68 / 0.7);
  border-right-color: rgb(239 68 68 / 0.7);
}

.border-x-red-500\/75 {
  border-left-color: rgb(239 68 68 / 0.75);
  border-right-color: rgb(239 68 68 / 0.75);
}

.border-x-red-500\/80 {
  border-left-color: rgb(239 68 68 / 0.8);
  border-right-color: rgb(239 68 68 / 0.8);
}

.border-x-red-500\/85 {
  border-left-color: rgb(239 68 68 / 0.85);
  border-right-color: rgb(239 68 68 / 0.85);
}

.border-x-red-500\/90 {
  border-left-color: rgb(239 68 68 / 0.9);
  border-right-color: rgb(239 68 68 / 0.9);
}

.border-x-red-500\/95 {
  border-left-color: rgb(239 68 68 / 0.95);
  border-right-color: rgb(239 68 68 / 0.95);
}

.border-x-red-600 {
  --tw-border-opacity: 1;
  border-left-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
  border-right-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
}

.border-x-red-600\/0 {
  border-left-color: rgb(220 38 38 / 0);
  border-right-color: rgb(220 38 38 / 0);
}

.border-x-red-600\/10 {
  border-left-color: rgb(220 38 38 / 0.1);
  border-right-color: rgb(220 38 38 / 0.1);
}

.border-x-red-600\/100 {
  border-left-color: rgb(220 38 38 / 1);
  border-right-color: rgb(220 38 38 / 1);
}

.border-x-red-600\/15 {
  border-left-color: rgb(220 38 38 / 0.15);
  border-right-color: rgb(220 38 38 / 0.15);
}

.border-x-red-600\/20 {
  border-left-color: rgb(220 38 38 / 0.2);
  border-right-color: rgb(220 38 38 / 0.2);
}

.border-x-red-600\/25 {
  border-left-color: rgb(220 38 38 / 0.25);
  border-right-color: rgb(220 38 38 / 0.25);
}

.border-x-red-600\/30 {
  border-left-color: rgb(220 38 38 / 0.3);
  border-right-color: rgb(220 38 38 / 0.3);
}

.border-x-red-600\/35 {
  border-left-color: rgb(220 38 38 / 0.35);
  border-right-color: rgb(220 38 38 / 0.35);
}

.border-x-red-600\/40 {
  border-left-color: rgb(220 38 38 / 0.4);
  border-right-color: rgb(220 38 38 / 0.4);
}

.border-x-red-600\/45 {
  border-left-color: rgb(220 38 38 / 0.45);
  border-right-color: rgb(220 38 38 / 0.45);
}

.border-x-red-600\/5 {
  border-left-color: rgb(220 38 38 / 0.05);
  border-right-color: rgb(220 38 38 / 0.05);
}

.border-x-red-600\/50 {
  border-left-color: rgb(220 38 38 / 0.5);
  border-right-color: rgb(220 38 38 / 0.5);
}

.border-x-red-600\/55 {
  border-left-color: rgb(220 38 38 / 0.55);
  border-right-color: rgb(220 38 38 / 0.55);
}

.border-x-red-600\/60 {
  border-left-color: rgb(220 38 38 / 0.6);
  border-right-color: rgb(220 38 38 / 0.6);
}

.border-x-red-600\/65 {
  border-left-color: rgb(220 38 38 / 0.65);
  border-right-color: rgb(220 38 38 / 0.65);
}

.border-x-red-600\/70 {
  border-left-color: rgb(220 38 38 / 0.7);
  border-right-color: rgb(220 38 38 / 0.7);
}

.border-x-red-600\/75 {
  border-left-color: rgb(220 38 38 / 0.75);
  border-right-color: rgb(220 38 38 / 0.75);
}

.border-x-red-600\/80 {
  border-left-color: rgb(220 38 38 / 0.8);
  border-right-color: rgb(220 38 38 / 0.8);
}

.border-x-red-600\/85 {
  border-left-color: rgb(220 38 38 / 0.85);
  border-right-color: rgb(220 38 38 / 0.85);
}

.border-x-red-600\/90 {
  border-left-color: rgb(220 38 38 / 0.9);
  border-right-color: rgb(220 38 38 / 0.9);
}

.border-x-red-600\/95 {
  border-left-color: rgb(220 38 38 / 0.95);
  border-right-color: rgb(220 38 38 / 0.95);
}

.border-x-red-700 {
  --tw-border-opacity: 1;
  border-left-color: rgb(185 28 28 / var(--tw-border-opacity, 1));
  border-right-color: rgb(185 28 28 / var(--tw-border-opacity, 1));
}

.border-x-red-700\/0 {
  border-left-color: rgb(185 28 28 / 0);
  border-right-color: rgb(185 28 28 / 0);
}

.border-x-red-700\/10 {
  border-left-color: rgb(185 28 28 / 0.1);
  border-right-color: rgb(185 28 28 / 0.1);
}

.border-x-red-700\/100 {
  border-left-color: rgb(185 28 28 / 1);
  border-right-color: rgb(185 28 28 / 1);
}

.border-x-red-700\/15 {
  border-left-color: rgb(185 28 28 / 0.15);
  border-right-color: rgb(185 28 28 / 0.15);
}

.border-x-red-700\/20 {
  border-left-color: rgb(185 28 28 / 0.2);
  border-right-color: rgb(185 28 28 / 0.2);
}

.border-x-red-700\/25 {
  border-left-color: rgb(185 28 28 / 0.25);
  border-right-color: rgb(185 28 28 / 0.25);
}

.border-x-red-700\/30 {
  border-left-color: rgb(185 28 28 / 0.3);
  border-right-color: rgb(185 28 28 / 0.3);
}

.border-x-red-700\/35 {
  border-left-color: rgb(185 28 28 / 0.35);
  border-right-color: rgb(185 28 28 / 0.35);
}

.border-x-red-700\/40 {
  border-left-color: rgb(185 28 28 / 0.4);
  border-right-color: rgb(185 28 28 / 0.4);
}

.border-x-red-700\/45 {
  border-left-color: rgb(185 28 28 / 0.45);
  border-right-color: rgb(185 28 28 / 0.45);
}

.border-x-red-700\/5 {
  border-left-color: rgb(185 28 28 / 0.05);
  border-right-color: rgb(185 28 28 / 0.05);
}

.border-x-red-700\/50 {
  border-left-color: rgb(185 28 28 / 0.5);
  border-right-color: rgb(185 28 28 / 0.5);
}

.border-x-red-700\/55 {
  border-left-color: rgb(185 28 28 / 0.55);
  border-right-color: rgb(185 28 28 / 0.55);
}

.border-x-red-700\/60 {
  border-left-color: rgb(185 28 28 / 0.6);
  border-right-color: rgb(185 28 28 / 0.6);
}

.border-x-red-700\/65 {
  border-left-color: rgb(185 28 28 / 0.65);
  border-right-color: rgb(185 28 28 / 0.65);
}

.border-x-red-700\/70 {
  border-left-color: rgb(185 28 28 / 0.7);
  border-right-color: rgb(185 28 28 / 0.7);
}

.border-x-red-700\/75 {
  border-left-color: rgb(185 28 28 / 0.75);
  border-right-color: rgb(185 28 28 / 0.75);
}

.border-x-red-700\/80 {
  border-left-color: rgb(185 28 28 / 0.8);
  border-right-color: rgb(185 28 28 / 0.8);
}

.border-x-red-700\/85 {
  border-left-color: rgb(185 28 28 / 0.85);
  border-right-color: rgb(185 28 28 / 0.85);
}

.border-x-red-700\/90 {
  border-left-color: rgb(185 28 28 / 0.9);
  border-right-color: rgb(185 28 28 / 0.9);
}

.border-x-red-700\/95 {
  border-left-color: rgb(185 28 28 / 0.95);
  border-right-color: rgb(185 28 28 / 0.95);
}

.border-x-red-800 {
  --tw-border-opacity: 1;
  border-left-color: rgb(153 27 27 / var(--tw-border-opacity, 1));
  border-right-color: rgb(153 27 27 / var(--tw-border-opacity, 1));
}

.border-x-red-800\/0 {
  border-left-color: rgb(153 27 27 / 0);
  border-right-color: rgb(153 27 27 / 0);
}

.border-x-red-800\/10 {
  border-left-color: rgb(153 27 27 / 0.1);
  border-right-color: rgb(153 27 27 / 0.1);
}

.border-x-red-800\/100 {
  border-left-color: rgb(153 27 27 / 1);
  border-right-color: rgb(153 27 27 / 1);
}

.border-x-red-800\/15 {
  border-left-color: rgb(153 27 27 / 0.15);
  border-right-color: rgb(153 27 27 / 0.15);
}

.border-x-red-800\/20 {
  border-left-color: rgb(153 27 27 / 0.2);
  border-right-color: rgb(153 27 27 / 0.2);
}

.border-x-red-800\/25 {
  border-left-color: rgb(153 27 27 / 0.25);
  border-right-color: rgb(153 27 27 / 0.25);
}

.border-x-red-800\/30 {
  border-left-color: rgb(153 27 27 / 0.3);
  border-right-color: rgb(153 27 27 / 0.3);
}

.border-x-red-800\/35 {
  border-left-color: rgb(153 27 27 / 0.35);
  border-right-color: rgb(153 27 27 / 0.35);
}

.border-x-red-800\/40 {
  border-left-color: rgb(153 27 27 / 0.4);
  border-right-color: rgb(153 27 27 / 0.4);
}

.border-x-red-800\/45 {
  border-left-color: rgb(153 27 27 / 0.45);
  border-right-color: rgb(153 27 27 / 0.45);
}

.border-x-red-800\/5 {
  border-left-color: rgb(153 27 27 / 0.05);
  border-right-color: rgb(153 27 27 / 0.05);
}

.border-x-red-800\/50 {
  border-left-color: rgb(153 27 27 / 0.5);
  border-right-color: rgb(153 27 27 / 0.5);
}

.border-x-red-800\/55 {
  border-left-color: rgb(153 27 27 / 0.55);
  border-right-color: rgb(153 27 27 / 0.55);
}

.border-x-red-800\/60 {
  border-left-color: rgb(153 27 27 / 0.6);
  border-right-color: rgb(153 27 27 / 0.6);
}

.border-x-red-800\/65 {
  border-left-color: rgb(153 27 27 / 0.65);
  border-right-color: rgb(153 27 27 / 0.65);
}

.border-x-red-800\/70 {
  border-left-color: rgb(153 27 27 / 0.7);
  border-right-color: rgb(153 27 27 / 0.7);
}

.border-x-red-800\/75 {
  border-left-color: rgb(153 27 27 / 0.75);
  border-right-color: rgb(153 27 27 / 0.75);
}

.border-x-red-800\/80 {
  border-left-color: rgb(153 27 27 / 0.8);
  border-right-color: rgb(153 27 27 / 0.8);
}

.border-x-red-800\/85 {
  border-left-color: rgb(153 27 27 / 0.85);
  border-right-color: rgb(153 27 27 / 0.85);
}

.border-x-red-800\/90 {
  border-left-color: rgb(153 27 27 / 0.9);
  border-right-color: rgb(153 27 27 / 0.9);
}

.border-x-red-800\/95 {
  border-left-color: rgb(153 27 27 / 0.95);
  border-right-color: rgb(153 27 27 / 0.95);
}

.border-x-red-900 {
  --tw-border-opacity: 1;
  border-left-color: rgb(127 29 29 / var(--tw-border-opacity, 1));
  border-right-color: rgb(127 29 29 / var(--tw-border-opacity, 1));
}

.border-x-red-900\/0 {
  border-left-color: rgb(127 29 29 / 0);
  border-right-color: rgb(127 29 29 / 0);
}

.border-x-red-900\/10 {
  border-left-color: rgb(127 29 29 / 0.1);
  border-right-color: rgb(127 29 29 / 0.1);
}

.border-x-red-900\/100 {
  border-left-color: rgb(127 29 29 / 1);
  border-right-color: rgb(127 29 29 / 1);
}

.border-x-red-900\/15 {
  border-left-color: rgb(127 29 29 / 0.15);
  border-right-color: rgb(127 29 29 / 0.15);
}

.border-x-red-900\/20 {
  border-left-color: rgb(127 29 29 / 0.2);
  border-right-color: rgb(127 29 29 / 0.2);
}

.border-x-red-900\/25 {
  border-left-color: rgb(127 29 29 / 0.25);
  border-right-color: rgb(127 29 29 / 0.25);
}

.border-x-red-900\/30 {
  border-left-color: rgb(127 29 29 / 0.3);
  border-right-color: rgb(127 29 29 / 0.3);
}

.border-x-red-900\/35 {
  border-left-color: rgb(127 29 29 / 0.35);
  border-right-color: rgb(127 29 29 / 0.35);
}

.border-x-red-900\/40 {
  border-left-color: rgb(127 29 29 / 0.4);
  border-right-color: rgb(127 29 29 / 0.4);
}

.border-x-red-900\/45 {
  border-left-color: rgb(127 29 29 / 0.45);
  border-right-color: rgb(127 29 29 / 0.45);
}

.border-x-red-900\/5 {
  border-left-color: rgb(127 29 29 / 0.05);
  border-right-color: rgb(127 29 29 / 0.05);
}

.border-x-red-900\/50 {
  border-left-color: rgb(127 29 29 / 0.5);
  border-right-color: rgb(127 29 29 / 0.5);
}

.border-x-red-900\/55 {
  border-left-color: rgb(127 29 29 / 0.55);
  border-right-color: rgb(127 29 29 / 0.55);
}

.border-x-red-900\/60 {
  border-left-color: rgb(127 29 29 / 0.6);
  border-right-color: rgb(127 29 29 / 0.6);
}

.border-x-red-900\/65 {
  border-left-color: rgb(127 29 29 / 0.65);
  border-right-color: rgb(127 29 29 / 0.65);
}

.border-x-red-900\/70 {
  border-left-color: rgb(127 29 29 / 0.7);
  border-right-color: rgb(127 29 29 / 0.7);
}

.border-x-red-900\/75 {
  border-left-color: rgb(127 29 29 / 0.75);
  border-right-color: rgb(127 29 29 / 0.75);
}

.border-x-red-900\/80 {
  border-left-color: rgb(127 29 29 / 0.8);
  border-right-color: rgb(127 29 29 / 0.8);
}

.border-x-red-900\/85 {
  border-left-color: rgb(127 29 29 / 0.85);
  border-right-color: rgb(127 29 29 / 0.85);
}

.border-x-red-900\/90 {
  border-left-color: rgb(127 29 29 / 0.9);
  border-right-color: rgb(127 29 29 / 0.9);
}

.border-x-red-900\/95 {
  border-left-color: rgb(127 29 29 / 0.95);
  border-right-color: rgb(127 29 29 / 0.95);
}

.border-x-red-950 {
  --tw-border-opacity: 1;
  border-left-color: rgb(69 10 10 / var(--tw-border-opacity, 1));
  border-right-color: rgb(69 10 10 / var(--tw-border-opacity, 1));
}

.border-x-red-950\/0 {
  border-left-color: rgb(69 10 10 / 0);
  border-right-color: rgb(69 10 10 / 0);
}

.border-x-red-950\/10 {
  border-left-color: rgb(69 10 10 / 0.1);
  border-right-color: rgb(69 10 10 / 0.1);
}

.border-x-red-950\/100 {
  border-left-color: rgb(69 10 10 / 1);
  border-right-color: rgb(69 10 10 / 1);
}

.border-x-red-950\/15 {
  border-left-color: rgb(69 10 10 / 0.15);
  border-right-color: rgb(69 10 10 / 0.15);
}

.border-x-red-950\/20 {
  border-left-color: rgb(69 10 10 / 0.2);
  border-right-color: rgb(69 10 10 / 0.2);
}

.border-x-red-950\/25 {
  border-left-color: rgb(69 10 10 / 0.25);
  border-right-color: rgb(69 10 10 / 0.25);
}

.border-x-red-950\/30 {
  border-left-color: rgb(69 10 10 / 0.3);
  border-right-color: rgb(69 10 10 / 0.3);
}

.border-x-red-950\/35 {
  border-left-color: rgb(69 10 10 / 0.35);
  border-right-color: rgb(69 10 10 / 0.35);
}

.border-x-red-950\/40 {
  border-left-color: rgb(69 10 10 / 0.4);
  border-right-color: rgb(69 10 10 / 0.4);
}

.border-x-red-950\/45 {
  border-left-color: rgb(69 10 10 / 0.45);
  border-right-color: rgb(69 10 10 / 0.45);
}

.border-x-red-950\/5 {
  border-left-color: rgb(69 10 10 / 0.05);
  border-right-color: rgb(69 10 10 / 0.05);
}

.border-x-red-950\/50 {
  border-left-color: rgb(69 10 10 / 0.5);
  border-right-color: rgb(69 10 10 / 0.5);
}

.border-x-red-950\/55 {
  border-left-color: rgb(69 10 10 / 0.55);
  border-right-color: rgb(69 10 10 / 0.55);
}

.border-x-red-950\/60 {
  border-left-color: rgb(69 10 10 / 0.6);
  border-right-color: rgb(69 10 10 / 0.6);
}

.border-x-red-950\/65 {
  border-left-color: rgb(69 10 10 / 0.65);
  border-right-color: rgb(69 10 10 / 0.65);
}

.border-x-red-950\/70 {
  border-left-color: rgb(69 10 10 / 0.7);
  border-right-color: rgb(69 10 10 / 0.7);
}

.border-x-red-950\/75 {
  border-left-color: rgb(69 10 10 / 0.75);
  border-right-color: rgb(69 10 10 / 0.75);
}

.border-x-red-950\/80 {
  border-left-color: rgb(69 10 10 / 0.8);
  border-right-color: rgb(69 10 10 / 0.8);
}

.border-x-red-950\/85 {
  border-left-color: rgb(69 10 10 / 0.85);
  border-right-color: rgb(69 10 10 / 0.85);
}

.border-x-red-950\/90 {
  border-left-color: rgb(69 10 10 / 0.9);
  border-right-color: rgb(69 10 10 / 0.9);
}

.border-x-red-950\/95 {
  border-left-color: rgb(69 10 10 / 0.95);
  border-right-color: rgb(69 10 10 / 0.95);
}

.border-x-transparent {
  border-left-color: transparent;
  border-right-color: transparent;
}

.border-x-transparent\/0 {
  border-left-color: rgb(0 0 0 / 0);
  border-right-color: rgb(0 0 0 / 0);
}

.border-x-transparent\/10 {
  border-left-color: rgb(0 0 0 / 0.1);
  border-right-color: rgb(0 0 0 / 0.1);
}

.border-x-transparent\/100 {
  border-left-color: rgb(0 0 0 / 1);
  border-right-color: rgb(0 0 0 / 1);
}

.border-x-transparent\/15 {
  border-left-color: rgb(0 0 0 / 0.15);
  border-right-color: rgb(0 0 0 / 0.15);
}

.border-x-transparent\/20 {
  border-left-color: rgb(0 0 0 / 0.2);
  border-right-color: rgb(0 0 0 / 0.2);
}

.border-x-transparent\/25 {
  border-left-color: rgb(0 0 0 / 0.25);
  border-right-color: rgb(0 0 0 / 0.25);
}

.border-x-transparent\/30 {
  border-left-color: rgb(0 0 0 / 0.3);
  border-right-color: rgb(0 0 0 / 0.3);
}

.border-x-transparent\/35 {
  border-left-color: rgb(0 0 0 / 0.35);
  border-right-color: rgb(0 0 0 / 0.35);
}

.border-x-transparent\/40 {
  border-left-color: rgb(0 0 0 / 0.4);
  border-right-color: rgb(0 0 0 / 0.4);
}

.border-x-transparent\/45 {
  border-left-color: rgb(0 0 0 / 0.45);
  border-right-color: rgb(0 0 0 / 0.45);
}

.border-x-transparent\/5 {
  border-left-color: rgb(0 0 0 / 0.05);
  border-right-color: rgb(0 0 0 / 0.05);
}

.border-x-transparent\/50 {
  border-left-color: rgb(0 0 0 / 0.5);
  border-right-color: rgb(0 0 0 / 0.5);
}

.border-x-transparent\/55 {
  border-left-color: rgb(0 0 0 / 0.55);
  border-right-color: rgb(0 0 0 / 0.55);
}

.border-x-transparent\/60 {
  border-left-color: rgb(0 0 0 / 0.6);
  border-right-color: rgb(0 0 0 / 0.6);
}

.border-x-transparent\/65 {
  border-left-color: rgb(0 0 0 / 0.65);
  border-right-color: rgb(0 0 0 / 0.65);
}

.border-x-transparent\/70 {
  border-left-color: rgb(0 0 0 / 0.7);
  border-right-color: rgb(0 0 0 / 0.7);
}

.border-x-transparent\/75 {
  border-left-color: rgb(0 0 0 / 0.75);
  border-right-color: rgb(0 0 0 / 0.75);
}

.border-x-transparent\/80 {
  border-left-color: rgb(0 0 0 / 0.8);
  border-right-color: rgb(0 0 0 / 0.8);
}

.border-x-transparent\/85 {
  border-left-color: rgb(0 0 0 / 0.85);
  border-right-color: rgb(0 0 0 / 0.85);
}

.border-x-transparent\/90 {
  border-left-color: rgb(0 0 0 / 0.9);
  border-right-color: rgb(0 0 0 / 0.9);
}

.border-x-transparent\/95 {
  border-left-color: rgb(0 0 0 / 0.95);
  border-right-color: rgb(0 0 0 / 0.95);
}

.border-x-white {
  --tw-border-opacity: 1;
  border-left-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
  border-right-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}

.border-x-white\/0 {
  border-left-color: rgb(255 255 255 / 0);
  border-right-color: rgb(255 255 255 / 0);
}

.border-x-white\/10 {
  border-left-color: rgb(255 255 255 / 0.1);
  border-right-color: rgb(255 255 255 / 0.1);
}

.border-x-white\/100 {
  border-left-color: rgb(255 255 255 / 1);
  border-right-color: rgb(255 255 255 / 1);
}

.border-x-white\/15 {
  border-left-color: rgb(255 255 255 / 0.15);
  border-right-color: rgb(255 255 255 / 0.15);
}

.border-x-white\/20 {
  border-left-color: rgb(255 255 255 / 0.2);
  border-right-color: rgb(255 255 255 / 0.2);
}

.border-x-white\/25 {
  border-left-color: rgb(255 255 255 / 0.25);
  border-right-color: rgb(255 255 255 / 0.25);
}

.border-x-white\/30 {
  border-left-color: rgb(255 255 255 / 0.3);
  border-right-color: rgb(255 255 255 / 0.3);
}

.border-x-white\/35 {
  border-left-color: rgb(255 255 255 / 0.35);
  border-right-color: rgb(255 255 255 / 0.35);
}

.border-x-white\/40 {
  border-left-color: rgb(255 255 255 / 0.4);
  border-right-color: rgb(255 255 255 / 0.4);
}

.border-x-white\/45 {
  border-left-color: rgb(255 255 255 / 0.45);
  border-right-color: rgb(255 255 255 / 0.45);
}

.border-x-white\/5 {
  border-left-color: rgb(255 255 255 / 0.05);
  border-right-color: rgb(255 255 255 / 0.05);
}

.border-x-white\/50 {
  border-left-color: rgb(255 255 255 / 0.5);
  border-right-color: rgb(255 255 255 / 0.5);
}

.border-x-white\/55 {
  border-left-color: rgb(255 255 255 / 0.55);
  border-right-color: rgb(255 255 255 / 0.55);
}

.border-x-white\/60 {
  border-left-color: rgb(255 255 255 / 0.6);
  border-right-color: rgb(255 255 255 / 0.6);
}

.border-x-white\/65 {
  border-left-color: rgb(255 255 255 / 0.65);
  border-right-color: rgb(255 255 255 / 0.65);
}

.border-x-white\/70 {
  border-left-color: rgb(255 255 255 / 0.7);
  border-right-color: rgb(255 255 255 / 0.7);
}

.border-x-white\/75 {
  border-left-color: rgb(255 255 255 / 0.75);
  border-right-color: rgb(255 255 255 / 0.75);
}

.border-x-white\/80 {
  border-left-color: rgb(255 255 255 / 0.8);
  border-right-color: rgb(255 255 255 / 0.8);
}

.border-x-white\/85 {
  border-left-color: rgb(255 255 255 / 0.85);
  border-right-color: rgb(255 255 255 / 0.85);
}

.border-x-white\/90 {
  border-left-color: rgb(255 255 255 / 0.9);
  border-right-color: rgb(255 255 255 / 0.9);
}

.border-x-white\/95 {
  border-left-color: rgb(255 255 255 / 0.95);
  border-right-color: rgb(255 255 255 / 0.95);
}

.border-y-black {
  --tw-border-opacity: 1;
  border-top-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
}

.border-y-black\/0 {
  border-top-color: rgb(0 0 0 / 0);
  border-bottom-color: rgb(0 0 0 / 0);
}

.border-y-black\/10 {
  border-top-color: rgb(0 0 0 / 0.1);
  border-bottom-color: rgb(0 0 0 / 0.1);
}

.border-y-black\/100 {
  border-top-color: rgb(0 0 0 / 1);
  border-bottom-color: rgb(0 0 0 / 1);
}

.border-y-black\/15 {
  border-top-color: rgb(0 0 0 / 0.15);
  border-bottom-color: rgb(0 0 0 / 0.15);
}

.border-y-black\/20 {
  border-top-color: rgb(0 0 0 / 0.2);
  border-bottom-color: rgb(0 0 0 / 0.2);
}

.border-y-black\/25 {
  border-top-color: rgb(0 0 0 / 0.25);
  border-bottom-color: rgb(0 0 0 / 0.25);
}

.border-y-black\/30 {
  border-top-color: rgb(0 0 0 / 0.3);
  border-bottom-color: rgb(0 0 0 / 0.3);
}

.border-y-black\/35 {
  border-top-color: rgb(0 0 0 / 0.35);
  border-bottom-color: rgb(0 0 0 / 0.35);
}

.border-y-black\/40 {
  border-top-color: rgb(0 0 0 / 0.4);
  border-bottom-color: rgb(0 0 0 / 0.4);
}

.border-y-black\/45 {
  border-top-color: rgb(0 0 0 / 0.45);
  border-bottom-color: rgb(0 0 0 / 0.45);
}

.border-y-black\/5 {
  border-top-color: rgb(0 0 0 / 0.05);
  border-bottom-color: rgb(0 0 0 / 0.05);
}

.border-y-black\/50 {
  border-top-color: rgb(0 0 0 / 0.5);
  border-bottom-color: rgb(0 0 0 / 0.5);
}

.border-y-black\/55 {
  border-top-color: rgb(0 0 0 / 0.55);
  border-bottom-color: rgb(0 0 0 / 0.55);
}

.border-y-black\/60 {
  border-top-color: rgb(0 0 0 / 0.6);
  border-bottom-color: rgb(0 0 0 / 0.6);
}

.border-y-black\/65 {
  border-top-color: rgb(0 0 0 / 0.65);
  border-bottom-color: rgb(0 0 0 / 0.65);
}

.border-y-black\/70 {
  border-top-color: rgb(0 0 0 / 0.7);
  border-bottom-color: rgb(0 0 0 / 0.7);
}

.border-y-black\/75 {
  border-top-color: rgb(0 0 0 / 0.75);
  border-bottom-color: rgb(0 0 0 / 0.75);
}

.border-y-black\/80 {
  border-top-color: rgb(0 0 0 / 0.8);
  border-bottom-color: rgb(0 0 0 / 0.8);
}

.border-y-black\/85 {
  border-top-color: rgb(0 0 0 / 0.85);
  border-bottom-color: rgb(0 0 0 / 0.85);
}

.border-y-black\/90 {
  border-top-color: rgb(0 0 0 / 0.9);
  border-bottom-color: rgb(0 0 0 / 0.9);
}

.border-y-black\/95 {
  border-top-color: rgb(0 0 0 / 0.95);
  border-bottom-color: rgb(0 0 0 / 0.95);
}

.border-y-blue-100 {
  --tw-border-opacity: 1;
  border-top-color: rgb(219 234 254 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(219 234 254 / var(--tw-border-opacity, 1));
}

.border-y-blue-100\/0 {
  border-top-color: rgb(219 234 254 / 0);
  border-bottom-color: rgb(219 234 254 / 0);
}

.border-y-blue-100\/10 {
  border-top-color: rgb(219 234 254 / 0.1);
  border-bottom-color: rgb(219 234 254 / 0.1);
}

.border-y-blue-100\/100 {
  border-top-color: rgb(219 234 254 / 1);
  border-bottom-color: rgb(219 234 254 / 1);
}

.border-y-blue-100\/15 {
  border-top-color: rgb(219 234 254 / 0.15);
  border-bottom-color: rgb(219 234 254 / 0.15);
}

.border-y-blue-100\/20 {
  border-top-color: rgb(219 234 254 / 0.2);
  border-bottom-color: rgb(219 234 254 / 0.2);
}

.border-y-blue-100\/25 {
  border-top-color: rgb(219 234 254 / 0.25);
  border-bottom-color: rgb(219 234 254 / 0.25);
}

.border-y-blue-100\/30 {
  border-top-color: rgb(219 234 254 / 0.3);
  border-bottom-color: rgb(219 234 254 / 0.3);
}

.border-y-blue-100\/35 {
  border-top-color: rgb(219 234 254 / 0.35);
  border-bottom-color: rgb(219 234 254 / 0.35);
}

.border-y-blue-100\/40 {
  border-top-color: rgb(219 234 254 / 0.4);
  border-bottom-color: rgb(219 234 254 / 0.4);
}

.border-y-blue-100\/45 {
  border-top-color: rgb(219 234 254 / 0.45);
  border-bottom-color: rgb(219 234 254 / 0.45);
}

.border-y-blue-100\/5 {
  border-top-color: rgb(219 234 254 / 0.05);
  border-bottom-color: rgb(219 234 254 / 0.05);
}

.border-y-blue-100\/50 {
  border-top-color: rgb(219 234 254 / 0.5);
  border-bottom-color: rgb(219 234 254 / 0.5);
}

.border-y-blue-100\/55 {
  border-top-color: rgb(219 234 254 / 0.55);
  border-bottom-color: rgb(219 234 254 / 0.55);
}

.border-y-blue-100\/60 {
  border-top-color: rgb(219 234 254 / 0.6);
  border-bottom-color: rgb(219 234 254 / 0.6);
}

.border-y-blue-100\/65 {
  border-top-color: rgb(219 234 254 / 0.65);
  border-bottom-color: rgb(219 234 254 / 0.65);
}

.border-y-blue-100\/70 {
  border-top-color: rgb(219 234 254 / 0.7);
  border-bottom-color: rgb(219 234 254 / 0.7);
}

.border-y-blue-100\/75 {
  border-top-color: rgb(219 234 254 / 0.75);
  border-bottom-color: rgb(219 234 254 / 0.75);
}

.border-y-blue-100\/80 {
  border-top-color: rgb(219 234 254 / 0.8);
  border-bottom-color: rgb(219 234 254 / 0.8);
}

.border-y-blue-100\/85 {
  border-top-color: rgb(219 234 254 / 0.85);
  border-bottom-color: rgb(219 234 254 / 0.85);
}

.border-y-blue-100\/90 {
  border-top-color: rgb(219 234 254 / 0.9);
  border-bottom-color: rgb(219 234 254 / 0.9);
}

.border-y-blue-100\/95 {
  border-top-color: rgb(219 234 254 / 0.95);
  border-bottom-color: rgb(219 234 254 / 0.95);
}

.border-y-blue-200 {
  --tw-border-opacity: 1;
  border-top-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
}

.border-y-blue-200\/0 {
  border-top-color: rgb(191 219 254 / 0);
  border-bottom-color: rgb(191 219 254 / 0);
}

.border-y-blue-200\/10 {
  border-top-color: rgb(191 219 254 / 0.1);
  border-bottom-color: rgb(191 219 254 / 0.1);
}

.border-y-blue-200\/100 {
  border-top-color: rgb(191 219 254 / 1);
  border-bottom-color: rgb(191 219 254 / 1);
}

.border-y-blue-200\/15 {
  border-top-color: rgb(191 219 254 / 0.15);
  border-bottom-color: rgb(191 219 254 / 0.15);
}

.border-y-blue-200\/20 {
  border-top-color: rgb(191 219 254 / 0.2);
  border-bottom-color: rgb(191 219 254 / 0.2);
}

.border-y-blue-200\/25 {
  border-top-color: rgb(191 219 254 / 0.25);
  border-bottom-color: rgb(191 219 254 / 0.25);
}

.border-y-blue-200\/30 {
  border-top-color: rgb(191 219 254 / 0.3);
  border-bottom-color: rgb(191 219 254 / 0.3);
}

.border-y-blue-200\/35 {
  border-top-color: rgb(191 219 254 / 0.35);
  border-bottom-color: rgb(191 219 254 / 0.35);
}

.border-y-blue-200\/40 {
  border-top-color: rgb(191 219 254 / 0.4);
  border-bottom-color: rgb(191 219 254 / 0.4);
}

.border-y-blue-200\/45 {
  border-top-color: rgb(191 219 254 / 0.45);
  border-bottom-color: rgb(191 219 254 / 0.45);
}

.border-y-blue-200\/5 {
  border-top-color: rgb(191 219 254 / 0.05);
  border-bottom-color: rgb(191 219 254 / 0.05);
}

.border-y-blue-200\/50 {
  border-top-color: rgb(191 219 254 / 0.5);
  border-bottom-color: rgb(191 219 254 / 0.5);
}

.border-y-blue-200\/55 {
  border-top-color: rgb(191 219 254 / 0.55);
  border-bottom-color: rgb(191 219 254 / 0.55);
}

.border-y-blue-200\/60 {
  border-top-color: rgb(191 219 254 / 0.6);
  border-bottom-color: rgb(191 219 254 / 0.6);
}

.border-y-blue-200\/65 {
  border-top-color: rgb(191 219 254 / 0.65);
  border-bottom-color: rgb(191 219 254 / 0.65);
}

.border-y-blue-200\/70 {
  border-top-color: rgb(191 219 254 / 0.7);
  border-bottom-color: rgb(191 219 254 / 0.7);
}

.border-y-blue-200\/75 {
  border-top-color: rgb(191 219 254 / 0.75);
  border-bottom-color: rgb(191 219 254 / 0.75);
}

.border-y-blue-200\/80 {
  border-top-color: rgb(191 219 254 / 0.8);
  border-bottom-color: rgb(191 219 254 / 0.8);
}

.border-y-blue-200\/85 {
  border-top-color: rgb(191 219 254 / 0.85);
  border-bottom-color: rgb(191 219 254 / 0.85);
}

.border-y-blue-200\/90 {
  border-top-color: rgb(191 219 254 / 0.9);
  border-bottom-color: rgb(191 219 254 / 0.9);
}

.border-y-blue-200\/95 {
  border-top-color: rgb(191 219 254 / 0.95);
  border-bottom-color: rgb(191 219 254 / 0.95);
}

.border-y-blue-300 {
  --tw-border-opacity: 1;
  border-top-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
}

.border-y-blue-300\/0 {
  border-top-color: rgb(147 197 253 / 0);
  border-bottom-color: rgb(147 197 253 / 0);
}

.border-y-blue-300\/10 {
  border-top-color: rgb(147 197 253 / 0.1);
  border-bottom-color: rgb(147 197 253 / 0.1);
}

.border-y-blue-300\/100 {
  border-top-color: rgb(147 197 253 / 1);
  border-bottom-color: rgb(147 197 253 / 1);
}

.border-y-blue-300\/15 {
  border-top-color: rgb(147 197 253 / 0.15);
  border-bottom-color: rgb(147 197 253 / 0.15);
}

.border-y-blue-300\/20 {
  border-top-color: rgb(147 197 253 / 0.2);
  border-bottom-color: rgb(147 197 253 / 0.2);
}

.border-y-blue-300\/25 {
  border-top-color: rgb(147 197 253 / 0.25);
  border-bottom-color: rgb(147 197 253 / 0.25);
}

.border-y-blue-300\/30 {
  border-top-color: rgb(147 197 253 / 0.3);
  border-bottom-color: rgb(147 197 253 / 0.3);
}

.border-y-blue-300\/35 {
  border-top-color: rgb(147 197 253 / 0.35);
  border-bottom-color: rgb(147 197 253 / 0.35);
}

.border-y-blue-300\/40 {
  border-top-color: rgb(147 197 253 / 0.4);
  border-bottom-color: rgb(147 197 253 / 0.4);
}

.border-y-blue-300\/45 {
  border-top-color: rgb(147 197 253 / 0.45);
  border-bottom-color: rgb(147 197 253 / 0.45);
}

.border-y-blue-300\/5 {
  border-top-color: rgb(147 197 253 / 0.05);
  border-bottom-color: rgb(147 197 253 / 0.05);
}

.border-y-blue-300\/50 {
  border-top-color: rgb(147 197 253 / 0.5);
  border-bottom-color: rgb(147 197 253 / 0.5);
}

.border-y-blue-300\/55 {
  border-top-color: rgb(147 197 253 / 0.55);
  border-bottom-color: rgb(147 197 253 / 0.55);
}

.border-y-blue-300\/60 {
  border-top-color: rgb(147 197 253 / 0.6);
  border-bottom-color: rgb(147 197 253 / 0.6);
}

.border-y-blue-300\/65 {
  border-top-color: rgb(147 197 253 / 0.65);
  border-bottom-color: rgb(147 197 253 / 0.65);
}

.border-y-blue-300\/70 {
  border-top-color: rgb(147 197 253 / 0.7);
  border-bottom-color: rgb(147 197 253 / 0.7);
}

.border-y-blue-300\/75 {
  border-top-color: rgb(147 197 253 / 0.75);
  border-bottom-color: rgb(147 197 253 / 0.75);
}

.border-y-blue-300\/80 {
  border-top-color: rgb(147 197 253 / 0.8);
  border-bottom-color: rgb(147 197 253 / 0.8);
}

.border-y-blue-300\/85 {
  border-top-color: rgb(147 197 253 / 0.85);
  border-bottom-color: rgb(147 197 253 / 0.85);
}

.border-y-blue-300\/90 {
  border-top-color: rgb(147 197 253 / 0.9);
  border-bottom-color: rgb(147 197 253 / 0.9);
}

.border-y-blue-300\/95 {
  border-top-color: rgb(147 197 253 / 0.95);
  border-bottom-color: rgb(147 197 253 / 0.95);
}

.border-y-blue-400 {
  --tw-border-opacity: 1;
  border-top-color: rgb(96 165 250 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(96 165 250 / var(--tw-border-opacity, 1));
}

.border-y-blue-400\/0 {
  border-top-color: rgb(96 165 250 / 0);
  border-bottom-color: rgb(96 165 250 / 0);
}

.border-y-blue-400\/10 {
  border-top-color: rgb(96 165 250 / 0.1);
  border-bottom-color: rgb(96 165 250 / 0.1);
}

.border-y-blue-400\/100 {
  border-top-color: rgb(96 165 250 / 1);
  border-bottom-color: rgb(96 165 250 / 1);
}

.border-y-blue-400\/15 {
  border-top-color: rgb(96 165 250 / 0.15);
  border-bottom-color: rgb(96 165 250 / 0.15);
}

.border-y-blue-400\/20 {
  border-top-color: rgb(96 165 250 / 0.2);
  border-bottom-color: rgb(96 165 250 / 0.2);
}

.border-y-blue-400\/25 {
  border-top-color: rgb(96 165 250 / 0.25);
  border-bottom-color: rgb(96 165 250 / 0.25);
}

.border-y-blue-400\/30 {
  border-top-color: rgb(96 165 250 / 0.3);
  border-bottom-color: rgb(96 165 250 / 0.3);
}

.border-y-blue-400\/35 {
  border-top-color: rgb(96 165 250 / 0.35);
  border-bottom-color: rgb(96 165 250 / 0.35);
}

.border-y-blue-400\/40 {
  border-top-color: rgb(96 165 250 / 0.4);
  border-bottom-color: rgb(96 165 250 / 0.4);
}

.border-y-blue-400\/45 {
  border-top-color: rgb(96 165 250 / 0.45);
  border-bottom-color: rgb(96 165 250 / 0.45);
}

.border-y-blue-400\/5 {
  border-top-color: rgb(96 165 250 / 0.05);
  border-bottom-color: rgb(96 165 250 / 0.05);
}

.border-y-blue-400\/50 {
  border-top-color: rgb(96 165 250 / 0.5);
  border-bottom-color: rgb(96 165 250 / 0.5);
}

.border-y-blue-400\/55 {
  border-top-color: rgb(96 165 250 / 0.55);
  border-bottom-color: rgb(96 165 250 / 0.55);
}

.border-y-blue-400\/60 {
  border-top-color: rgb(96 165 250 / 0.6);
  border-bottom-color: rgb(96 165 250 / 0.6);
}

.border-y-blue-400\/65 {
  border-top-color: rgb(96 165 250 / 0.65);
  border-bottom-color: rgb(96 165 250 / 0.65);
}

.border-y-blue-400\/70 {
  border-top-color: rgb(96 165 250 / 0.7);
  border-bottom-color: rgb(96 165 250 / 0.7);
}

.border-y-blue-400\/75 {
  border-top-color: rgb(96 165 250 / 0.75);
  border-bottom-color: rgb(96 165 250 / 0.75);
}

.border-y-blue-400\/80 {
  border-top-color: rgb(96 165 250 / 0.8);
  border-bottom-color: rgb(96 165 250 / 0.8);
}

.border-y-blue-400\/85 {
  border-top-color: rgb(96 165 250 / 0.85);
  border-bottom-color: rgb(96 165 250 / 0.85);
}

.border-y-blue-400\/90 {
  border-top-color: rgb(96 165 250 / 0.9);
  border-bottom-color: rgb(96 165 250 / 0.9);
}

.border-y-blue-400\/95 {
  border-top-color: rgb(96 165 250 / 0.95);
  border-bottom-color: rgb(96 165 250 / 0.95);
}

.border-y-blue-50 {
  --tw-border-opacity: 1;
  border-top-color: rgb(239 246 255 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(239 246 255 / var(--tw-border-opacity, 1));
}

.border-y-blue-50\/0 {
  border-top-color: rgb(239 246 255 / 0);
  border-bottom-color: rgb(239 246 255 / 0);
}

.border-y-blue-50\/10 {
  border-top-color: rgb(239 246 255 / 0.1);
  border-bottom-color: rgb(239 246 255 / 0.1);
}

.border-y-blue-50\/100 {
  border-top-color: rgb(239 246 255 / 1);
  border-bottom-color: rgb(239 246 255 / 1);
}

.border-y-blue-50\/15 {
  border-top-color: rgb(239 246 255 / 0.15);
  border-bottom-color: rgb(239 246 255 / 0.15);
}

.border-y-blue-50\/20 {
  border-top-color: rgb(239 246 255 / 0.2);
  border-bottom-color: rgb(239 246 255 / 0.2);
}

.border-y-blue-50\/25 {
  border-top-color: rgb(239 246 255 / 0.25);
  border-bottom-color: rgb(239 246 255 / 0.25);
}

.border-y-blue-50\/30 {
  border-top-color: rgb(239 246 255 / 0.3);
  border-bottom-color: rgb(239 246 255 / 0.3);
}

.border-y-blue-50\/35 {
  border-top-color: rgb(239 246 255 / 0.35);
  border-bottom-color: rgb(239 246 255 / 0.35);
}

.border-y-blue-50\/40 {
  border-top-color: rgb(239 246 255 / 0.4);
  border-bottom-color: rgb(239 246 255 / 0.4);
}

.border-y-blue-50\/45 {
  border-top-color: rgb(239 246 255 / 0.45);
  border-bottom-color: rgb(239 246 255 / 0.45);
}

.border-y-blue-50\/5 {
  border-top-color: rgb(239 246 255 / 0.05);
  border-bottom-color: rgb(239 246 255 / 0.05);
}

.border-y-blue-50\/50 {
  border-top-color: rgb(239 246 255 / 0.5);
  border-bottom-color: rgb(239 246 255 / 0.5);
}

.border-y-blue-50\/55 {
  border-top-color: rgb(239 246 255 / 0.55);
  border-bottom-color: rgb(239 246 255 / 0.55);
}

.border-y-blue-50\/60 {
  border-top-color: rgb(239 246 255 / 0.6);
  border-bottom-color: rgb(239 246 255 / 0.6);
}

.border-y-blue-50\/65 {
  border-top-color: rgb(239 246 255 / 0.65);
  border-bottom-color: rgb(239 246 255 / 0.65);
}

.border-y-blue-50\/70 {
  border-top-color: rgb(239 246 255 / 0.7);
  border-bottom-color: rgb(239 246 255 / 0.7);
}

.border-y-blue-50\/75 {
  border-top-color: rgb(239 246 255 / 0.75);
  border-bottom-color: rgb(239 246 255 / 0.75);
}

.border-y-blue-50\/80 {
  border-top-color: rgb(239 246 255 / 0.8);
  border-bottom-color: rgb(239 246 255 / 0.8);
}

.border-y-blue-50\/85 {
  border-top-color: rgb(239 246 255 / 0.85);
  border-bottom-color: rgb(239 246 255 / 0.85);
}

.border-y-blue-50\/90 {
  border-top-color: rgb(239 246 255 / 0.9);
  border-bottom-color: rgb(239 246 255 / 0.9);
}

.border-y-blue-50\/95 {
  border-top-color: rgb(239 246 255 / 0.95);
  border-bottom-color: rgb(239 246 255 / 0.95);
}

.border-y-blue-500 {
  --tw-border-opacity: 1;
  border-top-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}

.border-y-blue-500\/0 {
  border-top-color: rgb(59 130 246 / 0);
  border-bottom-color: rgb(59 130 246 / 0);
}

.border-y-blue-500\/10 {
  border-top-color: rgb(59 130 246 / 0.1);
  border-bottom-color: rgb(59 130 246 / 0.1);
}

.border-y-blue-500\/100 {
  border-top-color: rgb(59 130 246 / 1);
  border-bottom-color: rgb(59 130 246 / 1);
}

.border-y-blue-500\/15 {
  border-top-color: rgb(59 130 246 / 0.15);
  border-bottom-color: rgb(59 130 246 / 0.15);
}

.border-y-blue-500\/20 {
  border-top-color: rgb(59 130 246 / 0.2);
  border-bottom-color: rgb(59 130 246 / 0.2);
}

.border-y-blue-500\/25 {
  border-top-color: rgb(59 130 246 / 0.25);
  border-bottom-color: rgb(59 130 246 / 0.25);
}

.border-y-blue-500\/30 {
  border-top-color: rgb(59 130 246 / 0.3);
  border-bottom-color: rgb(59 130 246 / 0.3);
}

.border-y-blue-500\/35 {
  border-top-color: rgb(59 130 246 / 0.35);
  border-bottom-color: rgb(59 130 246 / 0.35);
}

.border-y-blue-500\/40 {
  border-top-color: rgb(59 130 246 / 0.4);
  border-bottom-color: rgb(59 130 246 / 0.4);
}

.border-y-blue-500\/45 {
  border-top-color: rgb(59 130 246 / 0.45);
  border-bottom-color: rgb(59 130 246 / 0.45);
}

.border-y-blue-500\/5 {
  border-top-color: rgb(59 130 246 / 0.05);
  border-bottom-color: rgb(59 130 246 / 0.05);
}

.border-y-blue-500\/50 {
  border-top-color: rgb(59 130 246 / 0.5);
  border-bottom-color: rgb(59 130 246 / 0.5);
}

.border-y-blue-500\/55 {
  border-top-color: rgb(59 130 246 / 0.55);
  border-bottom-color: rgb(59 130 246 / 0.55);
}

.border-y-blue-500\/60 {
  border-top-color: rgb(59 130 246 / 0.6);
  border-bottom-color: rgb(59 130 246 / 0.6);
}

.border-y-blue-500\/65 {
  border-top-color: rgb(59 130 246 / 0.65);
  border-bottom-color: rgb(59 130 246 / 0.65);
}

.border-y-blue-500\/70 {
  border-top-color: rgb(59 130 246 / 0.7);
  border-bottom-color: rgb(59 130 246 / 0.7);
}

.border-y-blue-500\/75 {
  border-top-color: rgb(59 130 246 / 0.75);
  border-bottom-color: rgb(59 130 246 / 0.75);
}

.border-y-blue-500\/80 {
  border-top-color: rgb(59 130 246 / 0.8);
  border-bottom-color: rgb(59 130 246 / 0.8);
}

.border-y-blue-500\/85 {
  border-top-color: rgb(59 130 246 / 0.85);
  border-bottom-color: rgb(59 130 246 / 0.85);
}

.border-y-blue-500\/90 {
  border-top-color: rgb(59 130 246 / 0.9);
  border-bottom-color: rgb(59 130 246 / 0.9);
}

.border-y-blue-500\/95 {
  border-top-color: rgb(59 130 246 / 0.95);
  border-bottom-color: rgb(59 130 246 / 0.95);
}

.border-y-blue-600 {
  --tw-border-opacity: 1;
  border-top-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}

.border-y-blue-600\/0 {
  border-top-color: rgb(37 99 235 / 0);
  border-bottom-color: rgb(37 99 235 / 0);
}

.border-y-blue-600\/10 {
  border-top-color: rgb(37 99 235 / 0.1);
  border-bottom-color: rgb(37 99 235 / 0.1);
}

.border-y-blue-600\/100 {
  border-top-color: rgb(37 99 235 / 1);
  border-bottom-color: rgb(37 99 235 / 1);
}

.border-y-blue-600\/15 {
  border-top-color: rgb(37 99 235 / 0.15);
  border-bottom-color: rgb(37 99 235 / 0.15);
}

.border-y-blue-600\/20 {
  border-top-color: rgb(37 99 235 / 0.2);
  border-bottom-color: rgb(37 99 235 / 0.2);
}

.border-y-blue-600\/25 {
  border-top-color: rgb(37 99 235 / 0.25);
  border-bottom-color: rgb(37 99 235 / 0.25);
}

.border-y-blue-600\/30 {
  border-top-color: rgb(37 99 235 / 0.3);
  border-bottom-color: rgb(37 99 235 / 0.3);
}

.border-y-blue-600\/35 {
  border-top-color: rgb(37 99 235 / 0.35);
  border-bottom-color: rgb(37 99 235 / 0.35);
}

.border-y-blue-600\/40 {
  border-top-color: rgb(37 99 235 / 0.4);
  border-bottom-color: rgb(37 99 235 / 0.4);
}

.border-y-blue-600\/45 {
  border-top-color: rgb(37 99 235 / 0.45);
  border-bottom-color: rgb(37 99 235 / 0.45);
}

.border-y-blue-600\/5 {
  border-top-color: rgb(37 99 235 / 0.05);
  border-bottom-color: rgb(37 99 235 / 0.05);
}

.border-y-blue-600\/50 {
  border-top-color: rgb(37 99 235 / 0.5);
  border-bottom-color: rgb(37 99 235 / 0.5);
}

.border-y-blue-600\/55 {
  border-top-color: rgb(37 99 235 / 0.55);
  border-bottom-color: rgb(37 99 235 / 0.55);
}

.border-y-blue-600\/60 {
  border-top-color: rgb(37 99 235 / 0.6);
  border-bottom-color: rgb(37 99 235 / 0.6);
}

.border-y-blue-600\/65 {
  border-top-color: rgb(37 99 235 / 0.65);
  border-bottom-color: rgb(37 99 235 / 0.65);
}

.border-y-blue-600\/70 {
  border-top-color: rgb(37 99 235 / 0.7);
  border-bottom-color: rgb(37 99 235 / 0.7);
}

.border-y-blue-600\/75 {
  border-top-color: rgb(37 99 235 / 0.75);
  border-bottom-color: rgb(37 99 235 / 0.75);
}

.border-y-blue-600\/80 {
  border-top-color: rgb(37 99 235 / 0.8);
  border-bottom-color: rgb(37 99 235 / 0.8);
}

.border-y-blue-600\/85 {
  border-top-color: rgb(37 99 235 / 0.85);
  border-bottom-color: rgb(37 99 235 / 0.85);
}

.border-y-blue-600\/90 {
  border-top-color: rgb(37 99 235 / 0.9);
  border-bottom-color: rgb(37 99 235 / 0.9);
}

.border-y-blue-600\/95 {
  border-top-color: rgb(37 99 235 / 0.95);
  border-bottom-color: rgb(37 99 235 / 0.95);
}

.border-y-blue-700 {
  --tw-border-opacity: 1;
  border-top-color: rgb(29 78 216 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(29 78 216 / var(--tw-border-opacity, 1));
}

.border-y-blue-700\/0 {
  border-top-color: rgb(29 78 216 / 0);
  border-bottom-color: rgb(29 78 216 / 0);
}

.border-y-blue-700\/10 {
  border-top-color: rgb(29 78 216 / 0.1);
  border-bottom-color: rgb(29 78 216 / 0.1);
}

.border-y-blue-700\/100 {
  border-top-color: rgb(29 78 216 / 1);
  border-bottom-color: rgb(29 78 216 / 1);
}

.border-y-blue-700\/15 {
  border-top-color: rgb(29 78 216 / 0.15);
  border-bottom-color: rgb(29 78 216 / 0.15);
}

.border-y-blue-700\/20 {
  border-top-color: rgb(29 78 216 / 0.2);
  border-bottom-color: rgb(29 78 216 / 0.2);
}

.border-y-blue-700\/25 {
  border-top-color: rgb(29 78 216 / 0.25);
  border-bottom-color: rgb(29 78 216 / 0.25);
}

.border-y-blue-700\/30 {
  border-top-color: rgb(29 78 216 / 0.3);
  border-bottom-color: rgb(29 78 216 / 0.3);
}

.border-y-blue-700\/35 {
  border-top-color: rgb(29 78 216 / 0.35);
  border-bottom-color: rgb(29 78 216 / 0.35);
}

.border-y-blue-700\/40 {
  border-top-color: rgb(29 78 216 / 0.4);
  border-bottom-color: rgb(29 78 216 / 0.4);
}

.border-y-blue-700\/45 {
  border-top-color: rgb(29 78 216 / 0.45);
  border-bottom-color: rgb(29 78 216 / 0.45);
}

.border-y-blue-700\/5 {
  border-top-color: rgb(29 78 216 / 0.05);
  border-bottom-color: rgb(29 78 216 / 0.05);
}

.border-y-blue-700\/50 {
  border-top-color: rgb(29 78 216 / 0.5);
  border-bottom-color: rgb(29 78 216 / 0.5);
}

.border-y-blue-700\/55 {
  border-top-color: rgb(29 78 216 / 0.55);
  border-bottom-color: rgb(29 78 216 / 0.55);
}

.border-y-blue-700\/60 {
  border-top-color: rgb(29 78 216 / 0.6);
  border-bottom-color: rgb(29 78 216 / 0.6);
}

.border-y-blue-700\/65 {
  border-top-color: rgb(29 78 216 / 0.65);
  border-bottom-color: rgb(29 78 216 / 0.65);
}

.border-y-blue-700\/70 {
  border-top-color: rgb(29 78 216 / 0.7);
  border-bottom-color: rgb(29 78 216 / 0.7);
}

.border-y-blue-700\/75 {
  border-top-color: rgb(29 78 216 / 0.75);
  border-bottom-color: rgb(29 78 216 / 0.75);
}

.border-y-blue-700\/80 {
  border-top-color: rgb(29 78 216 / 0.8);
  border-bottom-color: rgb(29 78 216 / 0.8);
}

.border-y-blue-700\/85 {
  border-top-color: rgb(29 78 216 / 0.85);
  border-bottom-color: rgb(29 78 216 / 0.85);
}

.border-y-blue-700\/90 {
  border-top-color: rgb(29 78 216 / 0.9);
  border-bottom-color: rgb(29 78 216 / 0.9);
}

.border-y-blue-700\/95 {
  border-top-color: rgb(29 78 216 / 0.95);
  border-bottom-color: rgb(29 78 216 / 0.95);
}

.border-y-blue-800 {
  --tw-border-opacity: 1;
  border-top-color: rgb(30 64 175 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(30 64 175 / var(--tw-border-opacity, 1));
}

.border-y-blue-800\/0 {
  border-top-color: rgb(30 64 175 / 0);
  border-bottom-color: rgb(30 64 175 / 0);
}

.border-y-blue-800\/10 {
  border-top-color: rgb(30 64 175 / 0.1);
  border-bottom-color: rgb(30 64 175 / 0.1);
}

.border-y-blue-800\/100 {
  border-top-color: rgb(30 64 175 / 1);
  border-bottom-color: rgb(30 64 175 / 1);
}

.border-y-blue-800\/15 {
  border-top-color: rgb(30 64 175 / 0.15);
  border-bottom-color: rgb(30 64 175 / 0.15);
}

.border-y-blue-800\/20 {
  border-top-color: rgb(30 64 175 / 0.2);
  border-bottom-color: rgb(30 64 175 / 0.2);
}

.border-y-blue-800\/25 {
  border-top-color: rgb(30 64 175 / 0.25);
  border-bottom-color: rgb(30 64 175 / 0.25);
}

.border-y-blue-800\/30 {
  border-top-color: rgb(30 64 175 / 0.3);
  border-bottom-color: rgb(30 64 175 / 0.3);
}

.border-y-blue-800\/35 {
  border-top-color: rgb(30 64 175 / 0.35);
  border-bottom-color: rgb(30 64 175 / 0.35);
}

.border-y-blue-800\/40 {
  border-top-color: rgb(30 64 175 / 0.4);
  border-bottom-color: rgb(30 64 175 / 0.4);
}

.border-y-blue-800\/45 {
  border-top-color: rgb(30 64 175 / 0.45);
  border-bottom-color: rgb(30 64 175 / 0.45);
}

.border-y-blue-800\/5 {
  border-top-color: rgb(30 64 175 / 0.05);
  border-bottom-color: rgb(30 64 175 / 0.05);
}

.border-y-blue-800\/50 {
  border-top-color: rgb(30 64 175 / 0.5);
  border-bottom-color: rgb(30 64 175 / 0.5);
}

.border-y-blue-800\/55 {
  border-top-color: rgb(30 64 175 / 0.55);
  border-bottom-color: rgb(30 64 175 / 0.55);
}

.border-y-blue-800\/60 {
  border-top-color: rgb(30 64 175 / 0.6);
  border-bottom-color: rgb(30 64 175 / 0.6);
}

.border-y-blue-800\/65 {
  border-top-color: rgb(30 64 175 / 0.65);
  border-bottom-color: rgb(30 64 175 / 0.65);
}

.border-y-blue-800\/70 {
  border-top-color: rgb(30 64 175 / 0.7);
  border-bottom-color: rgb(30 64 175 / 0.7);
}

.border-y-blue-800\/75 {
  border-top-color: rgb(30 64 175 / 0.75);
  border-bottom-color: rgb(30 64 175 / 0.75);
}

.border-y-blue-800\/80 {
  border-top-color: rgb(30 64 175 / 0.8);
  border-bottom-color: rgb(30 64 175 / 0.8);
}

.border-y-blue-800\/85 {
  border-top-color: rgb(30 64 175 / 0.85);
  border-bottom-color: rgb(30 64 175 / 0.85);
}

.border-y-blue-800\/90 {
  border-top-color: rgb(30 64 175 / 0.9);
  border-bottom-color: rgb(30 64 175 / 0.9);
}

.border-y-blue-800\/95 {
  border-top-color: rgb(30 64 175 / 0.95);
  border-bottom-color: rgb(30 64 175 / 0.95);
}

.border-y-blue-900 {
  --tw-border-opacity: 1;
  border-top-color: rgb(30 58 138 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(30 58 138 / var(--tw-border-opacity, 1));
}

.border-y-blue-900\/0 {
  border-top-color: rgb(30 58 138 / 0);
  border-bottom-color: rgb(30 58 138 / 0);
}

.border-y-blue-900\/10 {
  border-top-color: rgb(30 58 138 / 0.1);
  border-bottom-color: rgb(30 58 138 / 0.1);
}

.border-y-blue-900\/100 {
  border-top-color: rgb(30 58 138 / 1);
  border-bottom-color: rgb(30 58 138 / 1);
}

.border-y-blue-900\/15 {
  border-top-color: rgb(30 58 138 / 0.15);
  border-bottom-color: rgb(30 58 138 / 0.15);
}

.border-y-blue-900\/20 {
  border-top-color: rgb(30 58 138 / 0.2);
  border-bottom-color: rgb(30 58 138 / 0.2);
}

.border-y-blue-900\/25 {
  border-top-color: rgb(30 58 138 / 0.25);
  border-bottom-color: rgb(30 58 138 / 0.25);
}

.border-y-blue-900\/30 {
  border-top-color: rgb(30 58 138 / 0.3);
  border-bottom-color: rgb(30 58 138 / 0.3);
}

.border-y-blue-900\/35 {
  border-top-color: rgb(30 58 138 / 0.35);
  border-bottom-color: rgb(30 58 138 / 0.35);
}

.border-y-blue-900\/40 {
  border-top-color: rgb(30 58 138 / 0.4);
  border-bottom-color: rgb(30 58 138 / 0.4);
}

.border-y-blue-900\/45 {
  border-top-color: rgb(30 58 138 / 0.45);
  border-bottom-color: rgb(30 58 138 / 0.45);
}

.border-y-blue-900\/5 {
  border-top-color: rgb(30 58 138 / 0.05);
  border-bottom-color: rgb(30 58 138 / 0.05);
}

.border-y-blue-900\/50 {
  border-top-color: rgb(30 58 138 / 0.5);
  border-bottom-color: rgb(30 58 138 / 0.5);
}

.border-y-blue-900\/55 {
  border-top-color: rgb(30 58 138 / 0.55);
  border-bottom-color: rgb(30 58 138 / 0.55);
}

.border-y-blue-900\/60 {
  border-top-color: rgb(30 58 138 / 0.6);
  border-bottom-color: rgb(30 58 138 / 0.6);
}

.border-y-blue-900\/65 {
  border-top-color: rgb(30 58 138 / 0.65);
  border-bottom-color: rgb(30 58 138 / 0.65);
}

.border-y-blue-900\/70 {
  border-top-color: rgb(30 58 138 / 0.7);
  border-bottom-color: rgb(30 58 138 / 0.7);
}

.border-y-blue-900\/75 {
  border-top-color: rgb(30 58 138 / 0.75);
  border-bottom-color: rgb(30 58 138 / 0.75);
}

.border-y-blue-900\/80 {
  border-top-color: rgb(30 58 138 / 0.8);
  border-bottom-color: rgb(30 58 138 / 0.8);
}

.border-y-blue-900\/85 {
  border-top-color: rgb(30 58 138 / 0.85);
  border-bottom-color: rgb(30 58 138 / 0.85);
}

.border-y-blue-900\/90 {
  border-top-color: rgb(30 58 138 / 0.9);
  border-bottom-color: rgb(30 58 138 / 0.9);
}

.border-y-blue-900\/95 {
  border-top-color: rgb(30 58 138 / 0.95);
  border-bottom-color: rgb(30 58 138 / 0.95);
}

.border-y-blue-950 {
  --tw-border-opacity: 1;
  border-top-color: rgb(23 37 84 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(23 37 84 / var(--tw-border-opacity, 1));
}

.border-y-blue-950\/0 {
  border-top-color: rgb(23 37 84 / 0);
  border-bottom-color: rgb(23 37 84 / 0);
}

.border-y-blue-950\/10 {
  border-top-color: rgb(23 37 84 / 0.1);
  border-bottom-color: rgb(23 37 84 / 0.1);
}

.border-y-blue-950\/100 {
  border-top-color: rgb(23 37 84 / 1);
  border-bottom-color: rgb(23 37 84 / 1);
}

.border-y-blue-950\/15 {
  border-top-color: rgb(23 37 84 / 0.15);
  border-bottom-color: rgb(23 37 84 / 0.15);
}

.border-y-blue-950\/20 {
  border-top-color: rgb(23 37 84 / 0.2);
  border-bottom-color: rgb(23 37 84 / 0.2);
}

.border-y-blue-950\/25 {
  border-top-color: rgb(23 37 84 / 0.25);
  border-bottom-color: rgb(23 37 84 / 0.25);
}

.border-y-blue-950\/30 {
  border-top-color: rgb(23 37 84 / 0.3);
  border-bottom-color: rgb(23 37 84 / 0.3);
}

.border-y-blue-950\/35 {
  border-top-color: rgb(23 37 84 / 0.35);
  border-bottom-color: rgb(23 37 84 / 0.35);
}

.border-y-blue-950\/40 {
  border-top-color: rgb(23 37 84 / 0.4);
  border-bottom-color: rgb(23 37 84 / 0.4);
}

.border-y-blue-950\/45 {
  border-top-color: rgb(23 37 84 / 0.45);
  border-bottom-color: rgb(23 37 84 / 0.45);
}

.border-y-blue-950\/5 {
  border-top-color: rgb(23 37 84 / 0.05);
  border-bottom-color: rgb(23 37 84 / 0.05);
}

.border-y-blue-950\/50 {
  border-top-color: rgb(23 37 84 / 0.5);
  border-bottom-color: rgb(23 37 84 / 0.5);
}

.border-y-blue-950\/55 {
  border-top-color: rgb(23 37 84 / 0.55);
  border-bottom-color: rgb(23 37 84 / 0.55);
}

.border-y-blue-950\/60 {
  border-top-color: rgb(23 37 84 / 0.6);
  border-bottom-color: rgb(23 37 84 / 0.6);
}

.border-y-blue-950\/65 {
  border-top-color: rgb(23 37 84 / 0.65);
  border-bottom-color: rgb(23 37 84 / 0.65);
}

.border-y-blue-950\/70 {
  border-top-color: rgb(23 37 84 / 0.7);
  border-bottom-color: rgb(23 37 84 / 0.7);
}

.border-y-blue-950\/75 {
  border-top-color: rgb(23 37 84 / 0.75);
  border-bottom-color: rgb(23 37 84 / 0.75);
}

.border-y-blue-950\/80 {
  border-top-color: rgb(23 37 84 / 0.8);
  border-bottom-color: rgb(23 37 84 / 0.8);
}

.border-y-blue-950\/85 {
  border-top-color: rgb(23 37 84 / 0.85);
  border-bottom-color: rgb(23 37 84 / 0.85);
}

.border-y-blue-950\/90 {
  border-top-color: rgb(23 37 84 / 0.9);
  border-bottom-color: rgb(23 37 84 / 0.9);
}

.border-y-blue-950\/95 {
  border-top-color: rgb(23 37 84 / 0.95);
  border-bottom-color: rgb(23 37 84 / 0.95);
}

.border-y-current {
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}

.border-y-eva-blue {
  --tw-border-opacity: 1;
  border-top-color: rgb(26 33 62 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(26 33 62 / var(--tw-border-opacity, 1));
}

.border-y-eva-blue-appt {
  --tw-border-opacity: 1;
  border-top-color: rgba(52, 137, 207, var(--tw-border-opacity, 1));
  border-bottom-color: rgba(52, 137, 207, var(--tw-border-opacity, 1));
}

.border-y-eva-blue-appt\/0 {
  border-top-color: rgba(52, 137, 207, 0);
  border-bottom-color: rgba(52, 137, 207, 0);
}

.border-y-eva-blue-appt\/10 {
  border-top-color: rgba(52, 137, 207, 0.1);
  border-bottom-color: rgba(52, 137, 207, 0.1);
}

.border-y-eva-blue-appt\/100 {
  border-top-color: rgba(52, 137, 207, 1);
  border-bottom-color: rgba(52, 137, 207, 1);
}

.border-y-eva-blue-appt\/15 {
  border-top-color: rgba(52, 137, 207, 0.15);
  border-bottom-color: rgba(52, 137, 207, 0.15);
}

.border-y-eva-blue-appt\/20 {
  border-top-color: rgba(52, 137, 207, 0.2);
  border-bottom-color: rgba(52, 137, 207, 0.2);
}

.border-y-eva-blue-appt\/25 {
  border-top-color: rgba(52, 137, 207, 0.25);
  border-bottom-color: rgba(52, 137, 207, 0.25);
}

.border-y-eva-blue-appt\/30 {
  border-top-color: rgba(52, 137, 207, 0.3);
  border-bottom-color: rgba(52, 137, 207, 0.3);
}

.border-y-eva-blue-appt\/35 {
  border-top-color: rgba(52, 137, 207, 0.35);
  border-bottom-color: rgba(52, 137, 207, 0.35);
}

.border-y-eva-blue-appt\/40 {
  border-top-color: rgba(52, 137, 207, 0.4);
  border-bottom-color: rgba(52, 137, 207, 0.4);
}

.border-y-eva-blue-appt\/45 {
  border-top-color: rgba(52, 137, 207, 0.45);
  border-bottom-color: rgba(52, 137, 207, 0.45);
}

.border-y-eva-blue-appt\/5 {
  border-top-color: rgba(52, 137, 207, 0.05);
  border-bottom-color: rgba(52, 137, 207, 0.05);
}

.border-y-eva-blue-appt\/50 {
  border-top-color: rgba(52, 137, 207, 0.5);
  border-bottom-color: rgba(52, 137, 207, 0.5);
}

.border-y-eva-blue-appt\/55 {
  border-top-color: rgba(52, 137, 207, 0.55);
  border-bottom-color: rgba(52, 137, 207, 0.55);
}

.border-y-eva-blue-appt\/60 {
  border-top-color: rgba(52, 137, 207, 0.6);
  border-bottom-color: rgba(52, 137, 207, 0.6);
}

.border-y-eva-blue-appt\/65 {
  border-top-color: rgba(52, 137, 207, 0.65);
  border-bottom-color: rgba(52, 137, 207, 0.65);
}

.border-y-eva-blue-appt\/70 {
  border-top-color: rgba(52, 137, 207, 0.7);
  border-bottom-color: rgba(52, 137, 207, 0.7);
}

.border-y-eva-blue-appt\/75 {
  border-top-color: rgba(52, 137, 207, 0.75);
  border-bottom-color: rgba(52, 137, 207, 0.75);
}

.border-y-eva-blue-appt\/80 {
  border-top-color: rgba(52, 137, 207, 0.8);
  border-bottom-color: rgba(52, 137, 207, 0.8);
}

.border-y-eva-blue-appt\/85 {
  border-top-color: rgba(52, 137, 207, 0.85);
  border-bottom-color: rgba(52, 137, 207, 0.85);
}

.border-y-eva-blue-appt\/90 {
  border-top-color: rgba(52, 137, 207, 0.9);
  border-bottom-color: rgba(52, 137, 207, 0.9);
}

.border-y-eva-blue-appt\/95 {
  border-top-color: rgba(52, 137, 207, 0.95);
  border-bottom-color: rgba(52, 137, 207, 0.95);
}

.border-y-eva-blue-gray {
  --tw-border-opacity: 1;
  border-top-color: rgb(117 121 139 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(117 121 139 / var(--tw-border-opacity, 1));
}

.border-y-eva-blue-gray\/0 {
  border-top-color: rgb(117 121 139 / 0);
  border-bottom-color: rgb(117 121 139 / 0);
}

.border-y-eva-blue-gray\/10 {
  border-top-color: rgb(117 121 139 / 0.1);
  border-bottom-color: rgb(117 121 139 / 0.1);
}

.border-y-eva-blue-gray\/100 {
  border-top-color: rgb(117 121 139 / 1);
  border-bottom-color: rgb(117 121 139 / 1);
}

.border-y-eva-blue-gray\/15 {
  border-top-color: rgb(117 121 139 / 0.15);
  border-bottom-color: rgb(117 121 139 / 0.15);
}

.border-y-eva-blue-gray\/20 {
  border-top-color: rgb(117 121 139 / 0.2);
  border-bottom-color: rgb(117 121 139 / 0.2);
}

.border-y-eva-blue-gray\/25 {
  border-top-color: rgb(117 121 139 / 0.25);
  border-bottom-color: rgb(117 121 139 / 0.25);
}

.border-y-eva-blue-gray\/30 {
  border-top-color: rgb(117 121 139 / 0.3);
  border-bottom-color: rgb(117 121 139 / 0.3);
}

.border-y-eva-blue-gray\/35 {
  border-top-color: rgb(117 121 139 / 0.35);
  border-bottom-color: rgb(117 121 139 / 0.35);
}

.border-y-eva-blue-gray\/40 {
  border-top-color: rgb(117 121 139 / 0.4);
  border-bottom-color: rgb(117 121 139 / 0.4);
}

.border-y-eva-blue-gray\/45 {
  border-top-color: rgb(117 121 139 / 0.45);
  border-bottom-color: rgb(117 121 139 / 0.45);
}

.border-y-eva-blue-gray\/5 {
  border-top-color: rgb(117 121 139 / 0.05);
  border-bottom-color: rgb(117 121 139 / 0.05);
}

.border-y-eva-blue-gray\/50 {
  border-top-color: rgb(117 121 139 / 0.5);
  border-bottom-color: rgb(117 121 139 / 0.5);
}

.border-y-eva-blue-gray\/55 {
  border-top-color: rgb(117 121 139 / 0.55);
  border-bottom-color: rgb(117 121 139 / 0.55);
}

.border-y-eva-blue-gray\/60 {
  border-top-color: rgb(117 121 139 / 0.6);
  border-bottom-color: rgb(117 121 139 / 0.6);
}

.border-y-eva-blue-gray\/65 {
  border-top-color: rgb(117 121 139 / 0.65);
  border-bottom-color: rgb(117 121 139 / 0.65);
}

.border-y-eva-blue-gray\/70 {
  border-top-color: rgb(117 121 139 / 0.7);
  border-bottom-color: rgb(117 121 139 / 0.7);
}

.border-y-eva-blue-gray\/75 {
  border-top-color: rgb(117 121 139 / 0.75);
  border-bottom-color: rgb(117 121 139 / 0.75);
}

.border-y-eva-blue-gray\/80 {
  border-top-color: rgb(117 121 139 / 0.8);
  border-bottom-color: rgb(117 121 139 / 0.8);
}

.border-y-eva-blue-gray\/85 {
  border-top-color: rgb(117 121 139 / 0.85);
  border-bottom-color: rgb(117 121 139 / 0.85);
}

.border-y-eva-blue-gray\/90 {
  border-top-color: rgb(117 121 139 / 0.9);
  border-bottom-color: rgb(117 121 139 / 0.9);
}

.border-y-eva-blue-gray\/95 {
  border-top-color: rgb(117 121 139 / 0.95);
  border-bottom-color: rgb(117 121 139 / 0.95);
}

.border-y-eva-blue-hv {
  --tw-border-opacity: 1;
  border-top-color: rgb(15 18 31 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(15 18 31 / var(--tw-border-opacity, 1));
}

.border-y-eva-blue-hv\/0 {
  border-top-color: rgb(15 18 31 / 0);
  border-bottom-color: rgb(15 18 31 / 0);
}

.border-y-eva-blue-hv\/10 {
  border-top-color: rgb(15 18 31 / 0.1);
  border-bottom-color: rgb(15 18 31 / 0.1);
}

.border-y-eva-blue-hv\/100 {
  border-top-color: rgb(15 18 31 / 1);
  border-bottom-color: rgb(15 18 31 / 1);
}

.border-y-eva-blue-hv\/15 {
  border-top-color: rgb(15 18 31 / 0.15);
  border-bottom-color: rgb(15 18 31 / 0.15);
}

.border-y-eva-blue-hv\/20 {
  border-top-color: rgb(15 18 31 / 0.2);
  border-bottom-color: rgb(15 18 31 / 0.2);
}

.border-y-eva-blue-hv\/25 {
  border-top-color: rgb(15 18 31 / 0.25);
  border-bottom-color: rgb(15 18 31 / 0.25);
}

.border-y-eva-blue-hv\/30 {
  border-top-color: rgb(15 18 31 / 0.3);
  border-bottom-color: rgb(15 18 31 / 0.3);
}

.border-y-eva-blue-hv\/35 {
  border-top-color: rgb(15 18 31 / 0.35);
  border-bottom-color: rgb(15 18 31 / 0.35);
}

.border-y-eva-blue-hv\/40 {
  border-top-color: rgb(15 18 31 / 0.4);
  border-bottom-color: rgb(15 18 31 / 0.4);
}

.border-y-eva-blue-hv\/45 {
  border-top-color: rgb(15 18 31 / 0.45);
  border-bottom-color: rgb(15 18 31 / 0.45);
}

.border-y-eva-blue-hv\/5 {
  border-top-color: rgb(15 18 31 / 0.05);
  border-bottom-color: rgb(15 18 31 / 0.05);
}

.border-y-eva-blue-hv\/50 {
  border-top-color: rgb(15 18 31 / 0.5);
  border-bottom-color: rgb(15 18 31 / 0.5);
}

.border-y-eva-blue-hv\/55 {
  border-top-color: rgb(15 18 31 / 0.55);
  border-bottom-color: rgb(15 18 31 / 0.55);
}

.border-y-eva-blue-hv\/60 {
  border-top-color: rgb(15 18 31 / 0.6);
  border-bottom-color: rgb(15 18 31 / 0.6);
}

.border-y-eva-blue-hv\/65 {
  border-top-color: rgb(15 18 31 / 0.65);
  border-bottom-color: rgb(15 18 31 / 0.65);
}

.border-y-eva-blue-hv\/70 {
  border-top-color: rgb(15 18 31 / 0.7);
  border-bottom-color: rgb(15 18 31 / 0.7);
}

.border-y-eva-blue-hv\/75 {
  border-top-color: rgb(15 18 31 / 0.75);
  border-bottom-color: rgb(15 18 31 / 0.75);
}

.border-y-eva-blue-hv\/80 {
  border-top-color: rgb(15 18 31 / 0.8);
  border-bottom-color: rgb(15 18 31 / 0.8);
}

.border-y-eva-blue-hv\/85 {
  border-top-color: rgb(15 18 31 / 0.85);
  border-bottom-color: rgb(15 18 31 / 0.85);
}

.border-y-eva-blue-hv\/90 {
  border-top-color: rgb(15 18 31 / 0.9);
  border-bottom-color: rgb(15 18 31 / 0.9);
}

.border-y-eva-blue-hv\/95 {
  border-top-color: rgb(15 18 31 / 0.95);
  border-bottom-color: rgb(15 18 31 / 0.95);
}

.border-y-eva-blue-light {
  --tw-border-opacity: 1;
  border-top-color: rgb(48 56 81 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(48 56 81 / var(--tw-border-opacity, 1));
}

.border-y-eva-blue-light-hv {
  border-top-color: rgba(17,20,30,.3);
  border-bottom-color: rgba(17,20,30,.3);
}

.border-y-eva-blue-light-hv\/0 {
  border-top-color: rgba(17, 20, 30, 0);
  border-bottom-color: rgba(17, 20, 30, 0);
}

.border-y-eva-blue-light-hv\/10 {
  border-top-color: rgba(17, 20, 30, 0.1);
  border-bottom-color: rgba(17, 20, 30, 0.1);
}

.border-y-eva-blue-light-hv\/100 {
  border-top-color: rgba(17, 20, 30, 1);
  border-bottom-color: rgba(17, 20, 30, 1);
}

.border-y-eva-blue-light-hv\/15 {
  border-top-color: rgba(17, 20, 30, 0.15);
  border-bottom-color: rgba(17, 20, 30, 0.15);
}

.border-y-eva-blue-light-hv\/20 {
  border-top-color: rgba(17, 20, 30, 0.2);
  border-bottom-color: rgba(17, 20, 30, 0.2);
}

.border-y-eva-blue-light-hv\/25 {
  border-top-color: rgba(17, 20, 30, 0.25);
  border-bottom-color: rgba(17, 20, 30, 0.25);
}

.border-y-eva-blue-light-hv\/30 {
  border-top-color: rgba(17, 20, 30, 0.3);
  border-bottom-color: rgba(17, 20, 30, 0.3);
}

.border-y-eva-blue-light-hv\/35 {
  border-top-color: rgba(17, 20, 30, 0.35);
  border-bottom-color: rgba(17, 20, 30, 0.35);
}

.border-y-eva-blue-light-hv\/40 {
  border-top-color: rgba(17, 20, 30, 0.4);
  border-bottom-color: rgba(17, 20, 30, 0.4);
}

.border-y-eva-blue-light-hv\/45 {
  border-top-color: rgba(17, 20, 30, 0.45);
  border-bottom-color: rgba(17, 20, 30, 0.45);
}

.border-y-eva-blue-light-hv\/5 {
  border-top-color: rgba(17, 20, 30, 0.05);
  border-bottom-color: rgba(17, 20, 30, 0.05);
}

.border-y-eva-blue-light-hv\/50 {
  border-top-color: rgba(17, 20, 30, 0.5);
  border-bottom-color: rgba(17, 20, 30, 0.5);
}

.border-y-eva-blue-light-hv\/55 {
  border-top-color: rgba(17, 20, 30, 0.55);
  border-bottom-color: rgba(17, 20, 30, 0.55);
}

.border-y-eva-blue-light-hv\/60 {
  border-top-color: rgba(17, 20, 30, 0.6);
  border-bottom-color: rgba(17, 20, 30, 0.6);
}

.border-y-eva-blue-light-hv\/65 {
  border-top-color: rgba(17, 20, 30, 0.65);
  border-bottom-color: rgba(17, 20, 30, 0.65);
}

.border-y-eva-blue-light-hv\/70 {
  border-top-color: rgba(17, 20, 30, 0.7);
  border-bottom-color: rgba(17, 20, 30, 0.7);
}

.border-y-eva-blue-light-hv\/75 {
  border-top-color: rgba(17, 20, 30, 0.75);
  border-bottom-color: rgba(17, 20, 30, 0.75);
}

.border-y-eva-blue-light-hv\/80 {
  border-top-color: rgba(17, 20, 30, 0.8);
  border-bottom-color: rgba(17, 20, 30, 0.8);
}

.border-y-eva-blue-light-hv\/85 {
  border-top-color: rgba(17, 20, 30, 0.85);
  border-bottom-color: rgba(17, 20, 30, 0.85);
}

.border-y-eva-blue-light-hv\/90 {
  border-top-color: rgba(17, 20, 30, 0.9);
  border-bottom-color: rgba(17, 20, 30, 0.9);
}

.border-y-eva-blue-light-hv\/95 {
  border-top-color: rgba(17, 20, 30, 0.95);
  border-bottom-color: rgba(17, 20, 30, 0.95);
}

.border-y-eva-blue-light\/0 {
  border-top-color: rgb(48 56 81 / 0);
  border-bottom-color: rgb(48 56 81 / 0);
}

.border-y-eva-blue-light\/10 {
  border-top-color: rgb(48 56 81 / 0.1);
  border-bottom-color: rgb(48 56 81 / 0.1);
}

.border-y-eva-blue-light\/100 {
  border-top-color: rgb(48 56 81 / 1);
  border-bottom-color: rgb(48 56 81 / 1);
}

.border-y-eva-blue-light\/15 {
  border-top-color: rgb(48 56 81 / 0.15);
  border-bottom-color: rgb(48 56 81 / 0.15);
}

.border-y-eva-blue-light\/20 {
  border-top-color: rgb(48 56 81 / 0.2);
  border-bottom-color: rgb(48 56 81 / 0.2);
}

.border-y-eva-blue-light\/25 {
  border-top-color: rgb(48 56 81 / 0.25);
  border-bottom-color: rgb(48 56 81 / 0.25);
}

.border-y-eva-blue-light\/30 {
  border-top-color: rgb(48 56 81 / 0.3);
  border-bottom-color: rgb(48 56 81 / 0.3);
}

.border-y-eva-blue-light\/35 {
  border-top-color: rgb(48 56 81 / 0.35);
  border-bottom-color: rgb(48 56 81 / 0.35);
}

.border-y-eva-blue-light\/40 {
  border-top-color: rgb(48 56 81 / 0.4);
  border-bottom-color: rgb(48 56 81 / 0.4);
}

.border-y-eva-blue-light\/45 {
  border-top-color: rgb(48 56 81 / 0.45);
  border-bottom-color: rgb(48 56 81 / 0.45);
}

.border-y-eva-blue-light\/5 {
  border-top-color: rgb(48 56 81 / 0.05);
  border-bottom-color: rgb(48 56 81 / 0.05);
}

.border-y-eva-blue-light\/50 {
  border-top-color: rgb(48 56 81 / 0.5);
  border-bottom-color: rgb(48 56 81 / 0.5);
}

.border-y-eva-blue-light\/55 {
  border-top-color: rgb(48 56 81 / 0.55);
  border-bottom-color: rgb(48 56 81 / 0.55);
}

.border-y-eva-blue-light\/60 {
  border-top-color: rgb(48 56 81 / 0.6);
  border-bottom-color: rgb(48 56 81 / 0.6);
}

.border-y-eva-blue-light\/65 {
  border-top-color: rgb(48 56 81 / 0.65);
  border-bottom-color: rgb(48 56 81 / 0.65);
}

.border-y-eva-blue-light\/70 {
  border-top-color: rgb(48 56 81 / 0.7);
  border-bottom-color: rgb(48 56 81 / 0.7);
}

.border-y-eva-blue-light\/75 {
  border-top-color: rgb(48 56 81 / 0.75);
  border-bottom-color: rgb(48 56 81 / 0.75);
}

.border-y-eva-blue-light\/80 {
  border-top-color: rgb(48 56 81 / 0.8);
  border-bottom-color: rgb(48 56 81 / 0.8);
}

.border-y-eva-blue-light\/85 {
  border-top-color: rgb(48 56 81 / 0.85);
  border-bottom-color: rgb(48 56 81 / 0.85);
}

.border-y-eva-blue-light\/90 {
  border-top-color: rgb(48 56 81 / 0.9);
  border-bottom-color: rgb(48 56 81 / 0.9);
}

.border-y-eva-blue-light\/95 {
  border-top-color: rgb(48 56 81 / 0.95);
  border-bottom-color: rgb(48 56 81 / 0.95);
}

.border-y-eva-blue\/0 {
  border-top-color: rgb(26 33 62 / 0);
  border-bottom-color: rgb(26 33 62 / 0);
}

.border-y-eva-blue\/10 {
  border-top-color: rgb(26 33 62 / 0.1);
  border-bottom-color: rgb(26 33 62 / 0.1);
}

.border-y-eva-blue\/100 {
  border-top-color: rgb(26 33 62 / 1);
  border-bottom-color: rgb(26 33 62 / 1);
}

.border-y-eva-blue\/15 {
  border-top-color: rgb(26 33 62 / 0.15);
  border-bottom-color: rgb(26 33 62 / 0.15);
}

.border-y-eva-blue\/20 {
  border-top-color: rgb(26 33 62 / 0.2);
  border-bottom-color: rgb(26 33 62 / 0.2);
}

.border-y-eva-blue\/25 {
  border-top-color: rgb(26 33 62 / 0.25);
  border-bottom-color: rgb(26 33 62 / 0.25);
}

.border-y-eva-blue\/30 {
  border-top-color: rgb(26 33 62 / 0.3);
  border-bottom-color: rgb(26 33 62 / 0.3);
}

.border-y-eva-blue\/35 {
  border-top-color: rgb(26 33 62 / 0.35);
  border-bottom-color: rgb(26 33 62 / 0.35);
}

.border-y-eva-blue\/40 {
  border-top-color: rgb(26 33 62 / 0.4);
  border-bottom-color: rgb(26 33 62 / 0.4);
}

.border-y-eva-blue\/45 {
  border-top-color: rgb(26 33 62 / 0.45);
  border-bottom-color: rgb(26 33 62 / 0.45);
}

.border-y-eva-blue\/5 {
  border-top-color: rgb(26 33 62 / 0.05);
  border-bottom-color: rgb(26 33 62 / 0.05);
}

.border-y-eva-blue\/50 {
  border-top-color: rgb(26 33 62 / 0.5);
  border-bottom-color: rgb(26 33 62 / 0.5);
}

.border-y-eva-blue\/55 {
  border-top-color: rgb(26 33 62 / 0.55);
  border-bottom-color: rgb(26 33 62 / 0.55);
}

.border-y-eva-blue\/60 {
  border-top-color: rgb(26 33 62 / 0.6);
  border-bottom-color: rgb(26 33 62 / 0.6);
}

.border-y-eva-blue\/65 {
  border-top-color: rgb(26 33 62 / 0.65);
  border-bottom-color: rgb(26 33 62 / 0.65);
}

.border-y-eva-blue\/70 {
  border-top-color: rgb(26 33 62 / 0.7);
  border-bottom-color: rgb(26 33 62 / 0.7);
}

.border-y-eva-blue\/75 {
  border-top-color: rgb(26 33 62 / 0.75);
  border-bottom-color: rgb(26 33 62 / 0.75);
}

.border-y-eva-blue\/80 {
  border-top-color: rgb(26 33 62 / 0.8);
  border-bottom-color: rgb(26 33 62 / 0.8);
}

.border-y-eva-blue\/85 {
  border-top-color: rgb(26 33 62 / 0.85);
  border-bottom-color: rgb(26 33 62 / 0.85);
}

.border-y-eva-blue\/90 {
  border-top-color: rgb(26 33 62 / 0.9);
  border-bottom-color: rgb(26 33 62 / 0.9);
}

.border-y-eva-blue\/95 {
  border-top-color: rgb(26 33 62 / 0.95);
  border-bottom-color: rgb(26 33 62 / 0.95);
}

.border-y-eva-brown-appt {
  border-top-color: rgba(99, 93, 94, 1);
  border-bottom-color: rgba(99, 93, 94, 1);
}

.border-y-eva-brown-appt\/0 {
  border-top-color: rgba(99, 93, 94, 0);
  border-bottom-color: rgba(99, 93, 94, 0);
}

.border-y-eva-brown-appt\/10 {
  border-top-color: rgba(99, 93, 94, 0.1);
  border-bottom-color: rgba(99, 93, 94, 0.1);
}

.border-y-eva-brown-appt\/100 {
  border-top-color: rgba(99, 93, 94, 1);
  border-bottom-color: rgba(99, 93, 94, 1);
}

.border-y-eva-brown-appt\/15 {
  border-top-color: rgba(99, 93, 94, 0.15);
  border-bottom-color: rgba(99, 93, 94, 0.15);
}

.border-y-eva-brown-appt\/20 {
  border-top-color: rgba(99, 93, 94, 0.2);
  border-bottom-color: rgba(99, 93, 94, 0.2);
}

.border-y-eva-brown-appt\/25 {
  border-top-color: rgba(99, 93, 94, 0.25);
  border-bottom-color: rgba(99, 93, 94, 0.25);
}

.border-y-eva-brown-appt\/30 {
  border-top-color: rgba(99, 93, 94, 0.3);
  border-bottom-color: rgba(99, 93, 94, 0.3);
}

.border-y-eva-brown-appt\/35 {
  border-top-color: rgba(99, 93, 94, 0.35);
  border-bottom-color: rgba(99, 93, 94, 0.35);
}

.border-y-eva-brown-appt\/40 {
  border-top-color: rgba(99, 93, 94, 0.4);
  border-bottom-color: rgba(99, 93, 94, 0.4);
}

.border-y-eva-brown-appt\/45 {
  border-top-color: rgba(99, 93, 94, 0.45);
  border-bottom-color: rgba(99, 93, 94, 0.45);
}

.border-y-eva-brown-appt\/5 {
  border-top-color: rgba(99, 93, 94, 0.05);
  border-bottom-color: rgba(99, 93, 94, 0.05);
}

.border-y-eva-brown-appt\/50 {
  border-top-color: rgba(99, 93, 94, 0.5);
  border-bottom-color: rgba(99, 93, 94, 0.5);
}

.border-y-eva-brown-appt\/55 {
  border-top-color: rgba(99, 93, 94, 0.55);
  border-bottom-color: rgba(99, 93, 94, 0.55);
}

.border-y-eva-brown-appt\/60 {
  border-top-color: rgba(99, 93, 94, 0.6);
  border-bottom-color: rgba(99, 93, 94, 0.6);
}

.border-y-eva-brown-appt\/65 {
  border-top-color: rgba(99, 93, 94, 0.65);
  border-bottom-color: rgba(99, 93, 94, 0.65);
}

.border-y-eva-brown-appt\/70 {
  border-top-color: rgba(99, 93, 94, 0.7);
  border-bottom-color: rgba(99, 93, 94, 0.7);
}

.border-y-eva-brown-appt\/75 {
  border-top-color: rgba(99, 93, 94, 0.75);
  border-bottom-color: rgba(99, 93, 94, 0.75);
}

.border-y-eva-brown-appt\/80 {
  border-top-color: rgba(99, 93, 94, 0.8);
  border-bottom-color: rgba(99, 93, 94, 0.8);
}

.border-y-eva-brown-appt\/85 {
  border-top-color: rgba(99, 93, 94, 0.85);
  border-bottom-color: rgba(99, 93, 94, 0.85);
}

.border-y-eva-brown-appt\/90 {
  border-top-color: rgba(99, 93, 94, 0.9);
  border-bottom-color: rgba(99, 93, 94, 0.9);
}

.border-y-eva-brown-appt\/95 {
  border-top-color: rgba(99, 93, 94, 0.95);
  border-bottom-color: rgba(99, 93, 94, 0.95);
}

.border-y-eva-dark-green-appt {
  border-top-color: rgba(102, 188, 130, 1);
  border-bottom-color: rgba(102, 188, 130, 1);
}

.border-y-eva-dark-green-appt\/0 {
  border-top-color: rgba(102, 188, 130, 0);
  border-bottom-color: rgba(102, 188, 130, 0);
}

.border-y-eva-dark-green-appt\/10 {
  border-top-color: rgba(102, 188, 130, 0.1);
  border-bottom-color: rgba(102, 188, 130, 0.1);
}

.border-y-eva-dark-green-appt\/100 {
  border-top-color: rgba(102, 188, 130, 1);
  border-bottom-color: rgba(102, 188, 130, 1);
}

.border-y-eva-dark-green-appt\/15 {
  border-top-color: rgba(102, 188, 130, 0.15);
  border-bottom-color: rgba(102, 188, 130, 0.15);
}

.border-y-eva-dark-green-appt\/20 {
  border-top-color: rgba(102, 188, 130, 0.2);
  border-bottom-color: rgba(102, 188, 130, 0.2);
}

.border-y-eva-dark-green-appt\/25 {
  border-top-color: rgba(102, 188, 130, 0.25);
  border-bottom-color: rgba(102, 188, 130, 0.25);
}

.border-y-eva-dark-green-appt\/30 {
  border-top-color: rgba(102, 188, 130, 0.3);
  border-bottom-color: rgba(102, 188, 130, 0.3);
}

.border-y-eva-dark-green-appt\/35 {
  border-top-color: rgba(102, 188, 130, 0.35);
  border-bottom-color: rgba(102, 188, 130, 0.35);
}

.border-y-eva-dark-green-appt\/40 {
  border-top-color: rgba(102, 188, 130, 0.4);
  border-bottom-color: rgba(102, 188, 130, 0.4);
}

.border-y-eva-dark-green-appt\/45 {
  border-top-color: rgba(102, 188, 130, 0.45);
  border-bottom-color: rgba(102, 188, 130, 0.45);
}

.border-y-eva-dark-green-appt\/5 {
  border-top-color: rgba(102, 188, 130, 0.05);
  border-bottom-color: rgba(102, 188, 130, 0.05);
}

.border-y-eva-dark-green-appt\/50 {
  border-top-color: rgba(102, 188, 130, 0.5);
  border-bottom-color: rgba(102, 188, 130, 0.5);
}

.border-y-eva-dark-green-appt\/55 {
  border-top-color: rgba(102, 188, 130, 0.55);
  border-bottom-color: rgba(102, 188, 130, 0.55);
}

.border-y-eva-dark-green-appt\/60 {
  border-top-color: rgba(102, 188, 130, 0.6);
  border-bottom-color: rgba(102, 188, 130, 0.6);
}

.border-y-eva-dark-green-appt\/65 {
  border-top-color: rgba(102, 188, 130, 0.65);
  border-bottom-color: rgba(102, 188, 130, 0.65);
}

.border-y-eva-dark-green-appt\/70 {
  border-top-color: rgba(102, 188, 130, 0.7);
  border-bottom-color: rgba(102, 188, 130, 0.7);
}

.border-y-eva-dark-green-appt\/75 {
  border-top-color: rgba(102, 188, 130, 0.75);
  border-bottom-color: rgba(102, 188, 130, 0.75);
}

.border-y-eva-dark-green-appt\/80 {
  border-top-color: rgba(102, 188, 130, 0.8);
  border-bottom-color: rgba(102, 188, 130, 0.8);
}

.border-y-eva-dark-green-appt\/85 {
  border-top-color: rgba(102, 188, 130, 0.85);
  border-bottom-color: rgba(102, 188, 130, 0.85);
}

.border-y-eva-dark-green-appt\/90 {
  border-top-color: rgba(102, 188, 130, 0.9);
  border-bottom-color: rgba(102, 188, 130, 0.9);
}

.border-y-eva-dark-green-appt\/95 {
  border-top-color: rgba(102, 188, 130, 0.95);
  border-bottom-color: rgba(102, 188, 130, 0.95);
}

.border-y-eva-dark-red-appt {
  border-top-color: rgba(198, 102, 94, 1);
  border-bottom-color: rgba(198, 102, 94, 1);
}

.border-y-eva-dark-red-appt\/0 {
  border-top-color: rgba(198, 102, 94, 0);
  border-bottom-color: rgba(198, 102, 94, 0);
}

.border-y-eva-dark-red-appt\/10 {
  border-top-color: rgba(198, 102, 94, 0.1);
  border-bottom-color: rgba(198, 102, 94, 0.1);
}

.border-y-eva-dark-red-appt\/100 {
  border-top-color: rgba(198, 102, 94, 1);
  border-bottom-color: rgba(198, 102, 94, 1);
}

.border-y-eva-dark-red-appt\/15 {
  border-top-color: rgba(198, 102, 94, 0.15);
  border-bottom-color: rgba(198, 102, 94, 0.15);
}

.border-y-eva-dark-red-appt\/20 {
  border-top-color: rgba(198, 102, 94, 0.2);
  border-bottom-color: rgba(198, 102, 94, 0.2);
}

.border-y-eva-dark-red-appt\/25 {
  border-top-color: rgba(198, 102, 94, 0.25);
  border-bottom-color: rgba(198, 102, 94, 0.25);
}

.border-y-eva-dark-red-appt\/30 {
  border-top-color: rgba(198, 102, 94, 0.3);
  border-bottom-color: rgba(198, 102, 94, 0.3);
}

.border-y-eva-dark-red-appt\/35 {
  border-top-color: rgba(198, 102, 94, 0.35);
  border-bottom-color: rgba(198, 102, 94, 0.35);
}

.border-y-eva-dark-red-appt\/40 {
  border-top-color: rgba(198, 102, 94, 0.4);
  border-bottom-color: rgba(198, 102, 94, 0.4);
}

.border-y-eva-dark-red-appt\/45 {
  border-top-color: rgba(198, 102, 94, 0.45);
  border-bottom-color: rgba(198, 102, 94, 0.45);
}

.border-y-eva-dark-red-appt\/5 {
  border-top-color: rgba(198, 102, 94, 0.05);
  border-bottom-color: rgba(198, 102, 94, 0.05);
}

.border-y-eva-dark-red-appt\/50 {
  border-top-color: rgba(198, 102, 94, 0.5);
  border-bottom-color: rgba(198, 102, 94, 0.5);
}

.border-y-eva-dark-red-appt\/55 {
  border-top-color: rgba(198, 102, 94, 0.55);
  border-bottom-color: rgba(198, 102, 94, 0.55);
}

.border-y-eva-dark-red-appt\/60 {
  border-top-color: rgba(198, 102, 94, 0.6);
  border-bottom-color: rgba(198, 102, 94, 0.6);
}

.border-y-eva-dark-red-appt\/65 {
  border-top-color: rgba(198, 102, 94, 0.65);
  border-bottom-color: rgba(198, 102, 94, 0.65);
}

.border-y-eva-dark-red-appt\/70 {
  border-top-color: rgba(198, 102, 94, 0.7);
  border-bottom-color: rgba(198, 102, 94, 0.7);
}

.border-y-eva-dark-red-appt\/75 {
  border-top-color: rgba(198, 102, 94, 0.75);
  border-bottom-color: rgba(198, 102, 94, 0.75);
}

.border-y-eva-dark-red-appt\/80 {
  border-top-color: rgba(198, 102, 94, 0.8);
  border-bottom-color: rgba(198, 102, 94, 0.8);
}

.border-y-eva-dark-red-appt\/85 {
  border-top-color: rgba(198, 102, 94, 0.85);
  border-bottom-color: rgba(198, 102, 94, 0.85);
}

.border-y-eva-dark-red-appt\/90 {
  border-top-color: rgba(198, 102, 94, 0.9);
  border-bottom-color: rgba(198, 102, 94, 0.9);
}

.border-y-eva-dark-red-appt\/95 {
  border-top-color: rgba(198, 102, 94, 0.95);
  border-bottom-color: rgba(198, 102, 94, 0.95);
}

.border-y-eva-green {
  --tw-border-opacity: 1;
  border-top-color: rgb(73 181 168 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(73 181 168 / var(--tw-border-opacity, 1));
}

.border-y-eva-green-appt {
  --tw-border-opacity: 1;
  border-top-color: rgba(128, 215, 109, var(--tw-border-opacity, 1));
  border-bottom-color: rgba(128, 215, 109, var(--tw-border-opacity, 1));
}

.border-y-eva-green-appt\/0 {
  border-top-color: rgba(128, 215, 109, 0);
  border-bottom-color: rgba(128, 215, 109, 0);
}

.border-y-eva-green-appt\/10 {
  border-top-color: rgba(128, 215, 109, 0.1);
  border-bottom-color: rgba(128, 215, 109, 0.1);
}

.border-y-eva-green-appt\/100 {
  border-top-color: rgba(128, 215, 109, 1);
  border-bottom-color: rgba(128, 215, 109, 1);
}

.border-y-eva-green-appt\/15 {
  border-top-color: rgba(128, 215, 109, 0.15);
  border-bottom-color: rgba(128, 215, 109, 0.15);
}

.border-y-eva-green-appt\/20 {
  border-top-color: rgba(128, 215, 109, 0.2);
  border-bottom-color: rgba(128, 215, 109, 0.2);
}

.border-y-eva-green-appt\/25 {
  border-top-color: rgba(128, 215, 109, 0.25);
  border-bottom-color: rgba(128, 215, 109, 0.25);
}

.border-y-eva-green-appt\/30 {
  border-top-color: rgba(128, 215, 109, 0.3);
  border-bottom-color: rgba(128, 215, 109, 0.3);
}

.border-y-eva-green-appt\/35 {
  border-top-color: rgba(128, 215, 109, 0.35);
  border-bottom-color: rgba(128, 215, 109, 0.35);
}

.border-y-eva-green-appt\/40 {
  border-top-color: rgba(128, 215, 109, 0.4);
  border-bottom-color: rgba(128, 215, 109, 0.4);
}

.border-y-eva-green-appt\/45 {
  border-top-color: rgba(128, 215, 109, 0.45);
  border-bottom-color: rgba(128, 215, 109, 0.45);
}

.border-y-eva-green-appt\/5 {
  border-top-color: rgba(128, 215, 109, 0.05);
  border-bottom-color: rgba(128, 215, 109, 0.05);
}

.border-y-eva-green-appt\/50 {
  border-top-color: rgba(128, 215, 109, 0.5);
  border-bottom-color: rgba(128, 215, 109, 0.5);
}

.border-y-eva-green-appt\/55 {
  border-top-color: rgba(128, 215, 109, 0.55);
  border-bottom-color: rgba(128, 215, 109, 0.55);
}

.border-y-eva-green-appt\/60 {
  border-top-color: rgba(128, 215, 109, 0.6);
  border-bottom-color: rgba(128, 215, 109, 0.6);
}

.border-y-eva-green-appt\/65 {
  border-top-color: rgba(128, 215, 109, 0.65);
  border-bottom-color: rgba(128, 215, 109, 0.65);
}

.border-y-eva-green-appt\/70 {
  border-top-color: rgba(128, 215, 109, 0.7);
  border-bottom-color: rgba(128, 215, 109, 0.7);
}

.border-y-eva-green-appt\/75 {
  border-top-color: rgba(128, 215, 109, 0.75);
  border-bottom-color: rgba(128, 215, 109, 0.75);
}

.border-y-eva-green-appt\/80 {
  border-top-color: rgba(128, 215, 109, 0.8);
  border-bottom-color: rgba(128, 215, 109, 0.8);
}

.border-y-eva-green-appt\/85 {
  border-top-color: rgba(128, 215, 109, 0.85);
  border-bottom-color: rgba(128, 215, 109, 0.85);
}

.border-y-eva-green-appt\/90 {
  border-top-color: rgba(128, 215, 109, 0.9);
  border-bottom-color: rgba(128, 215, 109, 0.9);
}

.border-y-eva-green-appt\/95 {
  border-top-color: rgba(128, 215, 109, 0.95);
  border-bottom-color: rgba(128, 215, 109, 0.95);
}

.border-y-eva-green-brown-appt {
  border-top-color: rgba(197, 191, 140, 1);
  border-bottom-color: rgba(197, 191, 140, 1);
}

.border-y-eva-green-brown-appt\/0 {
  border-top-color: rgba(197, 191, 140, 0);
  border-bottom-color: rgba(197, 191, 140, 0);
}

.border-y-eva-green-brown-appt\/10 {
  border-top-color: rgba(197, 191, 140, 0.1);
  border-bottom-color: rgba(197, 191, 140, 0.1);
}

.border-y-eva-green-brown-appt\/100 {
  border-top-color: rgba(197, 191, 140, 1);
  border-bottom-color: rgba(197, 191, 140, 1);
}

.border-y-eva-green-brown-appt\/15 {
  border-top-color: rgba(197, 191, 140, 0.15);
  border-bottom-color: rgba(197, 191, 140, 0.15);
}

.border-y-eva-green-brown-appt\/20 {
  border-top-color: rgba(197, 191, 140, 0.2);
  border-bottom-color: rgba(197, 191, 140, 0.2);
}

.border-y-eva-green-brown-appt\/25 {
  border-top-color: rgba(197, 191, 140, 0.25);
  border-bottom-color: rgba(197, 191, 140, 0.25);
}

.border-y-eva-green-brown-appt\/30 {
  border-top-color: rgba(197, 191, 140, 0.3);
  border-bottom-color: rgba(197, 191, 140, 0.3);
}

.border-y-eva-green-brown-appt\/35 {
  border-top-color: rgba(197, 191, 140, 0.35);
  border-bottom-color: rgba(197, 191, 140, 0.35);
}

.border-y-eva-green-brown-appt\/40 {
  border-top-color: rgba(197, 191, 140, 0.4);
  border-bottom-color: rgba(197, 191, 140, 0.4);
}

.border-y-eva-green-brown-appt\/45 {
  border-top-color: rgba(197, 191, 140, 0.45);
  border-bottom-color: rgba(197, 191, 140, 0.45);
}

.border-y-eva-green-brown-appt\/5 {
  border-top-color: rgba(197, 191, 140, 0.05);
  border-bottom-color: rgba(197, 191, 140, 0.05);
}

.border-y-eva-green-brown-appt\/50 {
  border-top-color: rgba(197, 191, 140, 0.5);
  border-bottom-color: rgba(197, 191, 140, 0.5);
}

.border-y-eva-green-brown-appt\/55 {
  border-top-color: rgba(197, 191, 140, 0.55);
  border-bottom-color: rgba(197, 191, 140, 0.55);
}

.border-y-eva-green-brown-appt\/60 {
  border-top-color: rgba(197, 191, 140, 0.6);
  border-bottom-color: rgba(197, 191, 140, 0.6);
}

.border-y-eva-green-brown-appt\/65 {
  border-top-color: rgba(197, 191, 140, 0.65);
  border-bottom-color: rgba(197, 191, 140, 0.65);
}

.border-y-eva-green-brown-appt\/70 {
  border-top-color: rgba(197, 191, 140, 0.7);
  border-bottom-color: rgba(197, 191, 140, 0.7);
}

.border-y-eva-green-brown-appt\/75 {
  border-top-color: rgba(197, 191, 140, 0.75);
  border-bottom-color: rgba(197, 191, 140, 0.75);
}

.border-y-eva-green-brown-appt\/80 {
  border-top-color: rgba(197, 191, 140, 0.8);
  border-bottom-color: rgba(197, 191, 140, 0.8);
}

.border-y-eva-green-brown-appt\/85 {
  border-top-color: rgba(197, 191, 140, 0.85);
  border-bottom-color: rgba(197, 191, 140, 0.85);
}

.border-y-eva-green-brown-appt\/90 {
  border-top-color: rgba(197, 191, 140, 0.9);
  border-bottom-color: rgba(197, 191, 140, 0.9);
}

.border-y-eva-green-brown-appt\/95 {
  border-top-color: rgba(197, 191, 140, 0.95);
  border-bottom-color: rgba(197, 191, 140, 0.95);
}

.border-y-eva-green-hv {
  --tw-border-opacity: 1;
  border-top-color: rgb(63 156 144 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(63 156 144 / var(--tw-border-opacity, 1));
}

.border-y-eva-green-hv\/0 {
  border-top-color: rgb(63 156 144 / 0);
  border-bottom-color: rgb(63 156 144 / 0);
}

.border-y-eva-green-hv\/10 {
  border-top-color: rgb(63 156 144 / 0.1);
  border-bottom-color: rgb(63 156 144 / 0.1);
}

.border-y-eva-green-hv\/100 {
  border-top-color: rgb(63 156 144 / 1);
  border-bottom-color: rgb(63 156 144 / 1);
}

.border-y-eva-green-hv\/15 {
  border-top-color: rgb(63 156 144 / 0.15);
  border-bottom-color: rgb(63 156 144 / 0.15);
}

.border-y-eva-green-hv\/20 {
  border-top-color: rgb(63 156 144 / 0.2);
  border-bottom-color: rgb(63 156 144 / 0.2);
}

.border-y-eva-green-hv\/25 {
  border-top-color: rgb(63 156 144 / 0.25);
  border-bottom-color: rgb(63 156 144 / 0.25);
}

.border-y-eva-green-hv\/30 {
  border-top-color: rgb(63 156 144 / 0.3);
  border-bottom-color: rgb(63 156 144 / 0.3);
}

.border-y-eva-green-hv\/35 {
  border-top-color: rgb(63 156 144 / 0.35);
  border-bottom-color: rgb(63 156 144 / 0.35);
}

.border-y-eva-green-hv\/40 {
  border-top-color: rgb(63 156 144 / 0.4);
  border-bottom-color: rgb(63 156 144 / 0.4);
}

.border-y-eva-green-hv\/45 {
  border-top-color: rgb(63 156 144 / 0.45);
  border-bottom-color: rgb(63 156 144 / 0.45);
}

.border-y-eva-green-hv\/5 {
  border-top-color: rgb(63 156 144 / 0.05);
  border-bottom-color: rgb(63 156 144 / 0.05);
}

.border-y-eva-green-hv\/50 {
  border-top-color: rgb(63 156 144 / 0.5);
  border-bottom-color: rgb(63 156 144 / 0.5);
}

.border-y-eva-green-hv\/55 {
  border-top-color: rgb(63 156 144 / 0.55);
  border-bottom-color: rgb(63 156 144 / 0.55);
}

.border-y-eva-green-hv\/60 {
  border-top-color: rgb(63 156 144 / 0.6);
  border-bottom-color: rgb(63 156 144 / 0.6);
}

.border-y-eva-green-hv\/65 {
  border-top-color: rgb(63 156 144 / 0.65);
  border-bottom-color: rgb(63 156 144 / 0.65);
}

.border-y-eva-green-hv\/70 {
  border-top-color: rgb(63 156 144 / 0.7);
  border-bottom-color: rgb(63 156 144 / 0.7);
}

.border-y-eva-green-hv\/75 {
  border-top-color: rgb(63 156 144 / 0.75);
  border-bottom-color: rgb(63 156 144 / 0.75);
}

.border-y-eva-green-hv\/80 {
  border-top-color: rgb(63 156 144 / 0.8);
  border-bottom-color: rgb(63 156 144 / 0.8);
}

.border-y-eva-green-hv\/85 {
  border-top-color: rgb(63 156 144 / 0.85);
  border-bottom-color: rgb(63 156 144 / 0.85);
}

.border-y-eva-green-hv\/90 {
  border-top-color: rgb(63 156 144 / 0.9);
  border-bottom-color: rgb(63 156 144 / 0.9);
}

.border-y-eva-green-hv\/95 {
  border-top-color: rgb(63 156 144 / 0.95);
  border-bottom-color: rgb(63 156 144 / 0.95);
}

.border-y-eva-green\/0 {
  border-top-color: rgb(73 181 168 / 0);
  border-bottom-color: rgb(73 181 168 / 0);
}

.border-y-eva-green\/10 {
  border-top-color: rgb(73 181 168 / 0.1);
  border-bottom-color: rgb(73 181 168 / 0.1);
}

.border-y-eva-green\/100 {
  border-top-color: rgb(73 181 168 / 1);
  border-bottom-color: rgb(73 181 168 / 1);
}

.border-y-eva-green\/15 {
  border-top-color: rgb(73 181 168 / 0.15);
  border-bottom-color: rgb(73 181 168 / 0.15);
}

.border-y-eva-green\/20 {
  border-top-color: rgb(73 181 168 / 0.2);
  border-bottom-color: rgb(73 181 168 / 0.2);
}

.border-y-eva-green\/25 {
  border-top-color: rgb(73 181 168 / 0.25);
  border-bottom-color: rgb(73 181 168 / 0.25);
}

.border-y-eva-green\/30 {
  border-top-color: rgb(73 181 168 / 0.3);
  border-bottom-color: rgb(73 181 168 / 0.3);
}

.border-y-eva-green\/35 {
  border-top-color: rgb(73 181 168 / 0.35);
  border-bottom-color: rgb(73 181 168 / 0.35);
}

.border-y-eva-green\/40 {
  border-top-color: rgb(73 181 168 / 0.4);
  border-bottom-color: rgb(73 181 168 / 0.4);
}

.border-y-eva-green\/45 {
  border-top-color: rgb(73 181 168 / 0.45);
  border-bottom-color: rgb(73 181 168 / 0.45);
}

.border-y-eva-green\/5 {
  border-top-color: rgb(73 181 168 / 0.05);
  border-bottom-color: rgb(73 181 168 / 0.05);
}

.border-y-eva-green\/50 {
  border-top-color: rgb(73 181 168 / 0.5);
  border-bottom-color: rgb(73 181 168 / 0.5);
}

.border-y-eva-green\/55 {
  border-top-color: rgb(73 181 168 / 0.55);
  border-bottom-color: rgb(73 181 168 / 0.55);
}

.border-y-eva-green\/60 {
  border-top-color: rgb(73 181 168 / 0.6);
  border-bottom-color: rgb(73 181 168 / 0.6);
}

.border-y-eva-green\/65 {
  border-top-color: rgb(73 181 168 / 0.65);
  border-bottom-color: rgb(73 181 168 / 0.65);
}

.border-y-eva-green\/70 {
  border-top-color: rgb(73 181 168 / 0.7);
  border-bottom-color: rgb(73 181 168 / 0.7);
}

.border-y-eva-green\/75 {
  border-top-color: rgb(73 181 168 / 0.75);
  border-bottom-color: rgb(73 181 168 / 0.75);
}

.border-y-eva-green\/80 {
  border-top-color: rgb(73 181 168 / 0.8);
  border-bottom-color: rgb(73 181 168 / 0.8);
}

.border-y-eva-green\/85 {
  border-top-color: rgb(73 181 168 / 0.85);
  border-bottom-color: rgb(73 181 168 / 0.85);
}

.border-y-eva-green\/90 {
  border-top-color: rgb(73 181 168 / 0.9);
  border-bottom-color: rgb(73 181 168 / 0.9);
}

.border-y-eva-green\/95 {
  border-top-color: rgb(73 181 168 / 0.95);
  border-bottom-color: rgb(73 181 168 / 0.95);
}

.border-y-eva-lavender-appt {
  border-top-color: rgba(169, 124, 165, 1);
  border-bottom-color: rgba(169, 124, 165, 1);
}

.border-y-eva-lavender-appt\/0 {
  border-top-color: rgba(169, 124, 165, 0);
  border-bottom-color: rgba(169, 124, 165, 0);
}

.border-y-eva-lavender-appt\/10 {
  border-top-color: rgba(169, 124, 165, 0.1);
  border-bottom-color: rgba(169, 124, 165, 0.1);
}

.border-y-eva-lavender-appt\/100 {
  border-top-color: rgba(169, 124, 165, 1);
  border-bottom-color: rgba(169, 124, 165, 1);
}

.border-y-eva-lavender-appt\/15 {
  border-top-color: rgba(169, 124, 165, 0.15);
  border-bottom-color: rgba(169, 124, 165, 0.15);
}

.border-y-eva-lavender-appt\/20 {
  border-top-color: rgba(169, 124, 165, 0.2);
  border-bottom-color: rgba(169, 124, 165, 0.2);
}

.border-y-eva-lavender-appt\/25 {
  border-top-color: rgba(169, 124, 165, 0.25);
  border-bottom-color: rgba(169, 124, 165, 0.25);
}

.border-y-eva-lavender-appt\/30 {
  border-top-color: rgba(169, 124, 165, 0.3);
  border-bottom-color: rgba(169, 124, 165, 0.3);
}

.border-y-eva-lavender-appt\/35 {
  border-top-color: rgba(169, 124, 165, 0.35);
  border-bottom-color: rgba(169, 124, 165, 0.35);
}

.border-y-eva-lavender-appt\/40 {
  border-top-color: rgba(169, 124, 165, 0.4);
  border-bottom-color: rgba(169, 124, 165, 0.4);
}

.border-y-eva-lavender-appt\/45 {
  border-top-color: rgba(169, 124, 165, 0.45);
  border-bottom-color: rgba(169, 124, 165, 0.45);
}

.border-y-eva-lavender-appt\/5 {
  border-top-color: rgba(169, 124, 165, 0.05);
  border-bottom-color: rgba(169, 124, 165, 0.05);
}

.border-y-eva-lavender-appt\/50 {
  border-top-color: rgba(169, 124, 165, 0.5);
  border-bottom-color: rgba(169, 124, 165, 0.5);
}

.border-y-eva-lavender-appt\/55 {
  border-top-color: rgba(169, 124, 165, 0.55);
  border-bottom-color: rgba(169, 124, 165, 0.55);
}

.border-y-eva-lavender-appt\/60 {
  border-top-color: rgba(169, 124, 165, 0.6);
  border-bottom-color: rgba(169, 124, 165, 0.6);
}

.border-y-eva-lavender-appt\/65 {
  border-top-color: rgba(169, 124, 165, 0.65);
  border-bottom-color: rgba(169, 124, 165, 0.65);
}

.border-y-eva-lavender-appt\/70 {
  border-top-color: rgba(169, 124, 165, 0.7);
  border-bottom-color: rgba(169, 124, 165, 0.7);
}

.border-y-eva-lavender-appt\/75 {
  border-top-color: rgba(169, 124, 165, 0.75);
  border-bottom-color: rgba(169, 124, 165, 0.75);
}

.border-y-eva-lavender-appt\/80 {
  border-top-color: rgba(169, 124, 165, 0.8);
  border-bottom-color: rgba(169, 124, 165, 0.8);
}

.border-y-eva-lavender-appt\/85 {
  border-top-color: rgba(169, 124, 165, 0.85);
  border-bottom-color: rgba(169, 124, 165, 0.85);
}

.border-y-eva-lavender-appt\/90 {
  border-top-color: rgba(169, 124, 165, 0.9);
  border-bottom-color: rgba(169, 124, 165, 0.9);
}

.border-y-eva-lavender-appt\/95 {
  border-top-color: rgba(169, 124, 165, 0.95);
  border-bottom-color: rgba(169, 124, 165, 0.95);
}

.border-y-eva-magenta-appt {
  border-top-color: rgba(223, 91, 146, 1);
  border-bottom-color: rgba(223, 91, 146, 1);
}

.border-y-eva-magenta-appt\/0 {
  border-top-color: rgba(223, 91, 146, 0);
  border-bottom-color: rgba(223, 91, 146, 0);
}

.border-y-eva-magenta-appt\/10 {
  border-top-color: rgba(223, 91, 146, 0.1);
  border-bottom-color: rgba(223, 91, 146, 0.1);
}

.border-y-eva-magenta-appt\/100 {
  border-top-color: rgba(223, 91, 146, 1);
  border-bottom-color: rgba(223, 91, 146, 1);
}

.border-y-eva-magenta-appt\/15 {
  border-top-color: rgba(223, 91, 146, 0.15);
  border-bottom-color: rgba(223, 91, 146, 0.15);
}

.border-y-eva-magenta-appt\/20 {
  border-top-color: rgba(223, 91, 146, 0.2);
  border-bottom-color: rgba(223, 91, 146, 0.2);
}

.border-y-eva-magenta-appt\/25 {
  border-top-color: rgba(223, 91, 146, 0.25);
  border-bottom-color: rgba(223, 91, 146, 0.25);
}

.border-y-eva-magenta-appt\/30 {
  border-top-color: rgba(223, 91, 146, 0.3);
  border-bottom-color: rgba(223, 91, 146, 0.3);
}

.border-y-eva-magenta-appt\/35 {
  border-top-color: rgba(223, 91, 146, 0.35);
  border-bottom-color: rgba(223, 91, 146, 0.35);
}

.border-y-eva-magenta-appt\/40 {
  border-top-color: rgba(223, 91, 146, 0.4);
  border-bottom-color: rgba(223, 91, 146, 0.4);
}

.border-y-eva-magenta-appt\/45 {
  border-top-color: rgba(223, 91, 146, 0.45);
  border-bottom-color: rgba(223, 91, 146, 0.45);
}

.border-y-eva-magenta-appt\/5 {
  border-top-color: rgba(223, 91, 146, 0.05);
  border-bottom-color: rgba(223, 91, 146, 0.05);
}

.border-y-eva-magenta-appt\/50 {
  border-top-color: rgba(223, 91, 146, 0.5);
  border-bottom-color: rgba(223, 91, 146, 0.5);
}

.border-y-eva-magenta-appt\/55 {
  border-top-color: rgba(223, 91, 146, 0.55);
  border-bottom-color: rgba(223, 91, 146, 0.55);
}

.border-y-eva-magenta-appt\/60 {
  border-top-color: rgba(223, 91, 146, 0.6);
  border-bottom-color: rgba(223, 91, 146, 0.6);
}

.border-y-eva-magenta-appt\/65 {
  border-top-color: rgba(223, 91, 146, 0.65);
  border-bottom-color: rgba(223, 91, 146, 0.65);
}

.border-y-eva-magenta-appt\/70 {
  border-top-color: rgba(223, 91, 146, 0.7);
  border-bottom-color: rgba(223, 91, 146, 0.7);
}

.border-y-eva-magenta-appt\/75 {
  border-top-color: rgba(223, 91, 146, 0.75);
  border-bottom-color: rgba(223, 91, 146, 0.75);
}

.border-y-eva-magenta-appt\/80 {
  border-top-color: rgba(223, 91, 146, 0.8);
  border-bottom-color: rgba(223, 91, 146, 0.8);
}

.border-y-eva-magenta-appt\/85 {
  border-top-color: rgba(223, 91, 146, 0.85);
  border-bottom-color: rgba(223, 91, 146, 0.85);
}

.border-y-eva-magenta-appt\/90 {
  border-top-color: rgba(223, 91, 146, 0.9);
  border-bottom-color: rgba(223, 91, 146, 0.9);
}

.border-y-eva-magenta-appt\/95 {
  border-top-color: rgba(223, 91, 146, 0.95);
  border-bottom-color: rgba(223, 91, 146, 0.95);
}

.border-y-eva-orange-appt {
  border-top-color: rgba(232, 176, 99, 1);
  border-bottom-color: rgba(232, 176, 99, 1);
}

.border-y-eva-orange-appt\/0 {
  border-top-color: rgba(232, 176, 99, 0);
  border-bottom-color: rgba(232, 176, 99, 0);
}

.border-y-eva-orange-appt\/10 {
  border-top-color: rgba(232, 176, 99, 0.1);
  border-bottom-color: rgba(232, 176, 99, 0.1);
}

.border-y-eva-orange-appt\/100 {
  border-top-color: rgba(232, 176, 99, 1);
  border-bottom-color: rgba(232, 176, 99, 1);
}

.border-y-eva-orange-appt\/15 {
  border-top-color: rgba(232, 176, 99, 0.15);
  border-bottom-color: rgba(232, 176, 99, 0.15);
}

.border-y-eva-orange-appt\/20 {
  border-top-color: rgba(232, 176, 99, 0.2);
  border-bottom-color: rgba(232, 176, 99, 0.2);
}

.border-y-eva-orange-appt\/25 {
  border-top-color: rgba(232, 176, 99, 0.25);
  border-bottom-color: rgba(232, 176, 99, 0.25);
}

.border-y-eva-orange-appt\/30 {
  border-top-color: rgba(232, 176, 99, 0.3);
  border-bottom-color: rgba(232, 176, 99, 0.3);
}

.border-y-eva-orange-appt\/35 {
  border-top-color: rgba(232, 176, 99, 0.35);
  border-bottom-color: rgba(232, 176, 99, 0.35);
}

.border-y-eva-orange-appt\/40 {
  border-top-color: rgba(232, 176, 99, 0.4);
  border-bottom-color: rgba(232, 176, 99, 0.4);
}

.border-y-eva-orange-appt\/45 {
  border-top-color: rgba(232, 176, 99, 0.45);
  border-bottom-color: rgba(232, 176, 99, 0.45);
}

.border-y-eva-orange-appt\/5 {
  border-top-color: rgba(232, 176, 99, 0.05);
  border-bottom-color: rgba(232, 176, 99, 0.05);
}

.border-y-eva-orange-appt\/50 {
  border-top-color: rgba(232, 176, 99, 0.5);
  border-bottom-color: rgba(232, 176, 99, 0.5);
}

.border-y-eva-orange-appt\/55 {
  border-top-color: rgba(232, 176, 99, 0.55);
  border-bottom-color: rgba(232, 176, 99, 0.55);
}

.border-y-eva-orange-appt\/60 {
  border-top-color: rgba(232, 176, 99, 0.6);
  border-bottom-color: rgba(232, 176, 99, 0.6);
}

.border-y-eva-orange-appt\/65 {
  border-top-color: rgba(232, 176, 99, 0.65);
  border-bottom-color: rgba(232, 176, 99, 0.65);
}

.border-y-eva-orange-appt\/70 {
  border-top-color: rgba(232, 176, 99, 0.7);
  border-bottom-color: rgba(232, 176, 99, 0.7);
}

.border-y-eva-orange-appt\/75 {
  border-top-color: rgba(232, 176, 99, 0.75);
  border-bottom-color: rgba(232, 176, 99, 0.75);
}

.border-y-eva-orange-appt\/80 {
  border-top-color: rgba(232, 176, 99, 0.8);
  border-bottom-color: rgba(232, 176, 99, 0.8);
}

.border-y-eva-orange-appt\/85 {
  border-top-color: rgba(232, 176, 99, 0.85);
  border-bottom-color: rgba(232, 176, 99, 0.85);
}

.border-y-eva-orange-appt\/90 {
  border-top-color: rgba(232, 176, 99, 0.9);
  border-bottom-color: rgba(232, 176, 99, 0.9);
}

.border-y-eva-orange-appt\/95 {
  border-top-color: rgba(232, 176, 99, 0.95);
  border-bottom-color: rgba(232, 176, 99, 0.95);
}

.border-y-eva-purple-appt {
  border-top-color: rgba(125, 117, 164, 1);
  border-bottom-color: rgba(125, 117, 164, 1);
}

.border-y-eva-purple-appt\/0 {
  border-top-color: rgba(125, 117, 164, 0);
  border-bottom-color: rgba(125, 117, 164, 0);
}

.border-y-eva-purple-appt\/10 {
  border-top-color: rgba(125, 117, 164, 0.1);
  border-bottom-color: rgba(125, 117, 164, 0.1);
}

.border-y-eva-purple-appt\/100 {
  border-top-color: rgba(125, 117, 164, 1);
  border-bottom-color: rgba(125, 117, 164, 1);
}

.border-y-eva-purple-appt\/15 {
  border-top-color: rgba(125, 117, 164, 0.15);
  border-bottom-color: rgba(125, 117, 164, 0.15);
}

.border-y-eva-purple-appt\/20 {
  border-top-color: rgba(125, 117, 164, 0.2);
  border-bottom-color: rgba(125, 117, 164, 0.2);
}

.border-y-eva-purple-appt\/25 {
  border-top-color: rgba(125, 117, 164, 0.25);
  border-bottom-color: rgba(125, 117, 164, 0.25);
}

.border-y-eva-purple-appt\/30 {
  border-top-color: rgba(125, 117, 164, 0.3);
  border-bottom-color: rgba(125, 117, 164, 0.3);
}

.border-y-eva-purple-appt\/35 {
  border-top-color: rgba(125, 117, 164, 0.35);
  border-bottom-color: rgba(125, 117, 164, 0.35);
}

.border-y-eva-purple-appt\/40 {
  border-top-color: rgba(125, 117, 164, 0.4);
  border-bottom-color: rgba(125, 117, 164, 0.4);
}

.border-y-eva-purple-appt\/45 {
  border-top-color: rgba(125, 117, 164, 0.45);
  border-bottom-color: rgba(125, 117, 164, 0.45);
}

.border-y-eva-purple-appt\/5 {
  border-top-color: rgba(125, 117, 164, 0.05);
  border-bottom-color: rgba(125, 117, 164, 0.05);
}

.border-y-eva-purple-appt\/50 {
  border-top-color: rgba(125, 117, 164, 0.5);
  border-bottom-color: rgba(125, 117, 164, 0.5);
}

.border-y-eva-purple-appt\/55 {
  border-top-color: rgba(125, 117, 164, 0.55);
  border-bottom-color: rgba(125, 117, 164, 0.55);
}

.border-y-eva-purple-appt\/60 {
  border-top-color: rgba(125, 117, 164, 0.6);
  border-bottom-color: rgba(125, 117, 164, 0.6);
}

.border-y-eva-purple-appt\/65 {
  border-top-color: rgba(125, 117, 164, 0.65);
  border-bottom-color: rgba(125, 117, 164, 0.65);
}

.border-y-eva-purple-appt\/70 {
  border-top-color: rgba(125, 117, 164, 0.7);
  border-bottom-color: rgba(125, 117, 164, 0.7);
}

.border-y-eva-purple-appt\/75 {
  border-top-color: rgba(125, 117, 164, 0.75);
  border-bottom-color: rgba(125, 117, 164, 0.75);
}

.border-y-eva-purple-appt\/80 {
  border-top-color: rgba(125, 117, 164, 0.8);
  border-bottom-color: rgba(125, 117, 164, 0.8);
}

.border-y-eva-purple-appt\/85 {
  border-top-color: rgba(125, 117, 164, 0.85);
  border-bottom-color: rgba(125, 117, 164, 0.85);
}

.border-y-eva-purple-appt\/90 {
  border-top-color: rgba(125, 117, 164, 0.9);
  border-bottom-color: rgba(125, 117, 164, 0.9);
}

.border-y-eva-purple-appt\/95 {
  border-top-color: rgba(125, 117, 164, 0.95);
  border-bottom-color: rgba(125, 117, 164, 0.95);
}

.border-y-eva-red {
  --tw-border-opacity: 1;
  border-top-color: rgb(234 101 101 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(234 101 101 / var(--tw-border-opacity, 1));
}

.border-y-eva-red-appt {
  border-top-color: rgba(243, 63, 77, 1);
  border-bottom-color: rgba(243, 63, 77, 1);
}

.border-y-eva-red-appt\/0 {
  border-top-color: rgba(243, 63, 77, 0);
  border-bottom-color: rgba(243, 63, 77, 0);
}

.border-y-eva-red-appt\/10 {
  border-top-color: rgba(243, 63, 77, 0.1);
  border-bottom-color: rgba(243, 63, 77, 0.1);
}

.border-y-eva-red-appt\/100 {
  border-top-color: rgba(243, 63, 77, 1);
  border-bottom-color: rgba(243, 63, 77, 1);
}

.border-y-eva-red-appt\/15 {
  border-top-color: rgba(243, 63, 77, 0.15);
  border-bottom-color: rgba(243, 63, 77, 0.15);
}

.border-y-eva-red-appt\/20 {
  border-top-color: rgba(243, 63, 77, 0.2);
  border-bottom-color: rgba(243, 63, 77, 0.2);
}

.border-y-eva-red-appt\/25 {
  border-top-color: rgba(243, 63, 77, 0.25);
  border-bottom-color: rgba(243, 63, 77, 0.25);
}

.border-y-eva-red-appt\/30 {
  border-top-color: rgba(243, 63, 77, 0.3);
  border-bottom-color: rgba(243, 63, 77, 0.3);
}

.border-y-eva-red-appt\/35 {
  border-top-color: rgba(243, 63, 77, 0.35);
  border-bottom-color: rgba(243, 63, 77, 0.35);
}

.border-y-eva-red-appt\/40 {
  border-top-color: rgba(243, 63, 77, 0.4);
  border-bottom-color: rgba(243, 63, 77, 0.4);
}

.border-y-eva-red-appt\/45 {
  border-top-color: rgba(243, 63, 77, 0.45);
  border-bottom-color: rgba(243, 63, 77, 0.45);
}

.border-y-eva-red-appt\/5 {
  border-top-color: rgba(243, 63, 77, 0.05);
  border-bottom-color: rgba(243, 63, 77, 0.05);
}

.border-y-eva-red-appt\/50 {
  border-top-color: rgba(243, 63, 77, 0.5);
  border-bottom-color: rgba(243, 63, 77, 0.5);
}

.border-y-eva-red-appt\/55 {
  border-top-color: rgba(243, 63, 77, 0.55);
  border-bottom-color: rgba(243, 63, 77, 0.55);
}

.border-y-eva-red-appt\/60 {
  border-top-color: rgba(243, 63, 77, 0.6);
  border-bottom-color: rgba(243, 63, 77, 0.6);
}

.border-y-eva-red-appt\/65 {
  border-top-color: rgba(243, 63, 77, 0.65);
  border-bottom-color: rgba(243, 63, 77, 0.65);
}

.border-y-eva-red-appt\/70 {
  border-top-color: rgba(243, 63, 77, 0.7);
  border-bottom-color: rgba(243, 63, 77, 0.7);
}

.border-y-eva-red-appt\/75 {
  border-top-color: rgba(243, 63, 77, 0.75);
  border-bottom-color: rgba(243, 63, 77, 0.75);
}

.border-y-eva-red-appt\/80 {
  border-top-color: rgba(243, 63, 77, 0.8);
  border-bottom-color: rgba(243, 63, 77, 0.8);
}

.border-y-eva-red-appt\/85 {
  border-top-color: rgba(243, 63, 77, 0.85);
  border-bottom-color: rgba(243, 63, 77, 0.85);
}

.border-y-eva-red-appt\/90 {
  border-top-color: rgba(243, 63, 77, 0.9);
  border-bottom-color: rgba(243, 63, 77, 0.9);
}

.border-y-eva-red-appt\/95 {
  border-top-color: rgba(243, 63, 77, 0.95);
  border-bottom-color: rgba(243, 63, 77, 0.95);
}

.border-y-eva-red-orange-appt {
  border-top-color: rgba(217, 154, 118, 1);
  border-bottom-color: rgba(217, 154, 118, 1);
}

.border-y-eva-red-orange-appt\/0 {
  border-top-color: rgba(217, 154, 118, 0);
  border-bottom-color: rgba(217, 154, 118, 0);
}

.border-y-eva-red-orange-appt\/10 {
  border-top-color: rgba(217, 154, 118, 0.1);
  border-bottom-color: rgba(217, 154, 118, 0.1);
}

.border-y-eva-red-orange-appt\/100 {
  border-top-color: rgba(217, 154, 118, 1);
  border-bottom-color: rgba(217, 154, 118, 1);
}

.border-y-eva-red-orange-appt\/15 {
  border-top-color: rgba(217, 154, 118, 0.15);
  border-bottom-color: rgba(217, 154, 118, 0.15);
}

.border-y-eva-red-orange-appt\/20 {
  border-top-color: rgba(217, 154, 118, 0.2);
  border-bottom-color: rgba(217, 154, 118, 0.2);
}

.border-y-eva-red-orange-appt\/25 {
  border-top-color: rgba(217, 154, 118, 0.25);
  border-bottom-color: rgba(217, 154, 118, 0.25);
}

.border-y-eva-red-orange-appt\/30 {
  border-top-color: rgba(217, 154, 118, 0.3);
  border-bottom-color: rgba(217, 154, 118, 0.3);
}

.border-y-eva-red-orange-appt\/35 {
  border-top-color: rgba(217, 154, 118, 0.35);
  border-bottom-color: rgba(217, 154, 118, 0.35);
}

.border-y-eva-red-orange-appt\/40 {
  border-top-color: rgba(217, 154, 118, 0.4);
  border-bottom-color: rgba(217, 154, 118, 0.4);
}

.border-y-eva-red-orange-appt\/45 {
  border-top-color: rgba(217, 154, 118, 0.45);
  border-bottom-color: rgba(217, 154, 118, 0.45);
}

.border-y-eva-red-orange-appt\/5 {
  border-top-color: rgba(217, 154, 118, 0.05);
  border-bottom-color: rgba(217, 154, 118, 0.05);
}

.border-y-eva-red-orange-appt\/50 {
  border-top-color: rgba(217, 154, 118, 0.5);
  border-bottom-color: rgba(217, 154, 118, 0.5);
}

.border-y-eva-red-orange-appt\/55 {
  border-top-color: rgba(217, 154, 118, 0.55);
  border-bottom-color: rgba(217, 154, 118, 0.55);
}

.border-y-eva-red-orange-appt\/60 {
  border-top-color: rgba(217, 154, 118, 0.6);
  border-bottom-color: rgba(217, 154, 118, 0.6);
}

.border-y-eva-red-orange-appt\/65 {
  border-top-color: rgba(217, 154, 118, 0.65);
  border-bottom-color: rgba(217, 154, 118, 0.65);
}

.border-y-eva-red-orange-appt\/70 {
  border-top-color: rgba(217, 154, 118, 0.7);
  border-bottom-color: rgba(217, 154, 118, 0.7);
}

.border-y-eva-red-orange-appt\/75 {
  border-top-color: rgba(217, 154, 118, 0.75);
  border-bottom-color: rgba(217, 154, 118, 0.75);
}

.border-y-eva-red-orange-appt\/80 {
  border-top-color: rgba(217, 154, 118, 0.8);
  border-bottom-color: rgba(217, 154, 118, 0.8);
}

.border-y-eva-red-orange-appt\/85 {
  border-top-color: rgba(217, 154, 118, 0.85);
  border-bottom-color: rgba(217, 154, 118, 0.85);
}

.border-y-eva-red-orange-appt\/90 {
  border-top-color: rgba(217, 154, 118, 0.9);
  border-bottom-color: rgba(217, 154, 118, 0.9);
}

.border-y-eva-red-orange-appt\/95 {
  border-top-color: rgba(217, 154, 118, 0.95);
  border-bottom-color: rgba(217, 154, 118, 0.95);
}

.border-y-eva-red\/0 {
  border-top-color: rgb(234 101 101 / 0);
  border-bottom-color: rgb(234 101 101 / 0);
}

.border-y-eva-red\/10 {
  border-top-color: rgb(234 101 101 / 0.1);
  border-bottom-color: rgb(234 101 101 / 0.1);
}

.border-y-eva-red\/100 {
  border-top-color: rgb(234 101 101 / 1);
  border-bottom-color: rgb(234 101 101 / 1);
}

.border-y-eva-red\/15 {
  border-top-color: rgb(234 101 101 / 0.15);
  border-bottom-color: rgb(234 101 101 / 0.15);
}

.border-y-eva-red\/20 {
  border-top-color: rgb(234 101 101 / 0.2);
  border-bottom-color: rgb(234 101 101 / 0.2);
}

.border-y-eva-red\/25 {
  border-top-color: rgb(234 101 101 / 0.25);
  border-bottom-color: rgb(234 101 101 / 0.25);
}

.border-y-eva-red\/30 {
  border-top-color: rgb(234 101 101 / 0.3);
  border-bottom-color: rgb(234 101 101 / 0.3);
}

.border-y-eva-red\/35 {
  border-top-color: rgb(234 101 101 / 0.35);
  border-bottom-color: rgb(234 101 101 / 0.35);
}

.border-y-eva-red\/40 {
  border-top-color: rgb(234 101 101 / 0.4);
  border-bottom-color: rgb(234 101 101 / 0.4);
}

.border-y-eva-red\/45 {
  border-top-color: rgb(234 101 101 / 0.45);
  border-bottom-color: rgb(234 101 101 / 0.45);
}

.border-y-eva-red\/5 {
  border-top-color: rgb(234 101 101 / 0.05);
  border-bottom-color: rgb(234 101 101 / 0.05);
}

.border-y-eva-red\/50 {
  border-top-color: rgb(234 101 101 / 0.5);
  border-bottom-color: rgb(234 101 101 / 0.5);
}

.border-y-eva-red\/55 {
  border-top-color: rgb(234 101 101 / 0.55);
  border-bottom-color: rgb(234 101 101 / 0.55);
}

.border-y-eva-red\/60 {
  border-top-color: rgb(234 101 101 / 0.6);
  border-bottom-color: rgb(234 101 101 / 0.6);
}

.border-y-eva-red\/65 {
  border-top-color: rgb(234 101 101 / 0.65);
  border-bottom-color: rgb(234 101 101 / 0.65);
}

.border-y-eva-red\/70 {
  border-top-color: rgb(234 101 101 / 0.7);
  border-bottom-color: rgb(234 101 101 / 0.7);
}

.border-y-eva-red\/75 {
  border-top-color: rgb(234 101 101 / 0.75);
  border-bottom-color: rgb(234 101 101 / 0.75);
}

.border-y-eva-red\/80 {
  border-top-color: rgb(234 101 101 / 0.8);
  border-bottom-color: rgb(234 101 101 / 0.8);
}

.border-y-eva-red\/85 {
  border-top-color: rgb(234 101 101 / 0.85);
  border-bottom-color: rgb(234 101 101 / 0.85);
}

.border-y-eva-red\/90 {
  border-top-color: rgb(234 101 101 / 0.9);
  border-bottom-color: rgb(234 101 101 / 0.9);
}

.border-y-eva-red\/95 {
  border-top-color: rgb(234 101 101 / 0.95);
  border-bottom-color: rgb(234 101 101 / 0.95);
}

.border-y-eva-teal-appt {
  --tw-border-opacity: 1;
  border-top-color: rgba(22, 172, 151, var(--tw-border-opacity, 1));
  border-bottom-color: rgba(22, 172, 151, var(--tw-border-opacity, 1));
}

.border-y-eva-teal-appt\/0 {
  border-top-color: rgba(22, 172, 151, 0);
  border-bottom-color: rgba(22, 172, 151, 0);
}

.border-y-eva-teal-appt\/10 {
  border-top-color: rgba(22, 172, 151, 0.1);
  border-bottom-color: rgba(22, 172, 151, 0.1);
}

.border-y-eva-teal-appt\/100 {
  border-top-color: rgba(22, 172, 151, 1);
  border-bottom-color: rgba(22, 172, 151, 1);
}

.border-y-eva-teal-appt\/15 {
  border-top-color: rgba(22, 172, 151, 0.15);
  border-bottom-color: rgba(22, 172, 151, 0.15);
}

.border-y-eva-teal-appt\/20 {
  border-top-color: rgba(22, 172, 151, 0.2);
  border-bottom-color: rgba(22, 172, 151, 0.2);
}

.border-y-eva-teal-appt\/25 {
  border-top-color: rgba(22, 172, 151, 0.25);
  border-bottom-color: rgba(22, 172, 151, 0.25);
}

.border-y-eva-teal-appt\/30 {
  border-top-color: rgba(22, 172, 151, 0.3);
  border-bottom-color: rgba(22, 172, 151, 0.3);
}

.border-y-eva-teal-appt\/35 {
  border-top-color: rgba(22, 172, 151, 0.35);
  border-bottom-color: rgba(22, 172, 151, 0.35);
}

.border-y-eva-teal-appt\/40 {
  border-top-color: rgba(22, 172, 151, 0.4);
  border-bottom-color: rgba(22, 172, 151, 0.4);
}

.border-y-eva-teal-appt\/45 {
  border-top-color: rgba(22, 172, 151, 0.45);
  border-bottom-color: rgba(22, 172, 151, 0.45);
}

.border-y-eva-teal-appt\/5 {
  border-top-color: rgba(22, 172, 151, 0.05);
  border-bottom-color: rgba(22, 172, 151, 0.05);
}

.border-y-eva-teal-appt\/50 {
  border-top-color: rgba(22, 172, 151, 0.5);
  border-bottom-color: rgba(22, 172, 151, 0.5);
}

.border-y-eva-teal-appt\/55 {
  border-top-color: rgba(22, 172, 151, 0.55);
  border-bottom-color: rgba(22, 172, 151, 0.55);
}

.border-y-eva-teal-appt\/60 {
  border-top-color: rgba(22, 172, 151, 0.6);
  border-bottom-color: rgba(22, 172, 151, 0.6);
}

.border-y-eva-teal-appt\/65 {
  border-top-color: rgba(22, 172, 151, 0.65);
  border-bottom-color: rgba(22, 172, 151, 0.65);
}

.border-y-eva-teal-appt\/70 {
  border-top-color: rgba(22, 172, 151, 0.7);
  border-bottom-color: rgba(22, 172, 151, 0.7);
}

.border-y-eva-teal-appt\/75 {
  border-top-color: rgba(22, 172, 151, 0.75);
  border-bottom-color: rgba(22, 172, 151, 0.75);
}

.border-y-eva-teal-appt\/80 {
  border-top-color: rgba(22, 172, 151, 0.8);
  border-bottom-color: rgba(22, 172, 151, 0.8);
}

.border-y-eva-teal-appt\/85 {
  border-top-color: rgba(22, 172, 151, 0.85);
  border-bottom-color: rgba(22, 172, 151, 0.85);
}

.border-y-eva-teal-appt\/90 {
  border-top-color: rgba(22, 172, 151, 0.9);
  border-bottom-color: rgba(22, 172, 151, 0.9);
}

.border-y-eva-teal-appt\/95 {
  border-top-color: rgba(22, 172, 151, 0.95);
  border-bottom-color: rgba(22, 172, 151, 0.95);
}

.border-y-eva-yellow {
  --tw-border-opacity: 1;
  border-top-color: rgb(233 179 98 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(233 179 98 / var(--tw-border-opacity, 1));
}

.border-y-eva-yellow-appt {
  border-top-color: rgba(240, 226, 0, 1);
  border-bottom-color: rgba(240, 226, 0, 1);
}

.border-y-eva-yellow-appt\/0 {
  border-top-color: rgba(240, 226, 0, 0);
  border-bottom-color: rgba(240, 226, 0, 0);
}

.border-y-eva-yellow-appt\/10 {
  border-top-color: rgba(240, 226, 0, 0.1);
  border-bottom-color: rgba(240, 226, 0, 0.1);
}

.border-y-eva-yellow-appt\/100 {
  border-top-color: rgba(240, 226, 0, 1);
  border-bottom-color: rgba(240, 226, 0, 1);
}

.border-y-eva-yellow-appt\/15 {
  border-top-color: rgba(240, 226, 0, 0.15);
  border-bottom-color: rgba(240, 226, 0, 0.15);
}

.border-y-eva-yellow-appt\/20 {
  border-top-color: rgba(240, 226, 0, 0.2);
  border-bottom-color: rgba(240, 226, 0, 0.2);
}

.border-y-eva-yellow-appt\/25 {
  border-top-color: rgba(240, 226, 0, 0.25);
  border-bottom-color: rgba(240, 226, 0, 0.25);
}

.border-y-eva-yellow-appt\/30 {
  border-top-color: rgba(240, 226, 0, 0.3);
  border-bottom-color: rgba(240, 226, 0, 0.3);
}

.border-y-eva-yellow-appt\/35 {
  border-top-color: rgba(240, 226, 0, 0.35);
  border-bottom-color: rgba(240, 226, 0, 0.35);
}

.border-y-eva-yellow-appt\/40 {
  border-top-color: rgba(240, 226, 0, 0.4);
  border-bottom-color: rgba(240, 226, 0, 0.4);
}

.border-y-eva-yellow-appt\/45 {
  border-top-color: rgba(240, 226, 0, 0.45);
  border-bottom-color: rgba(240, 226, 0, 0.45);
}

.border-y-eva-yellow-appt\/5 {
  border-top-color: rgba(240, 226, 0, 0.05);
  border-bottom-color: rgba(240, 226, 0, 0.05);
}

.border-y-eva-yellow-appt\/50 {
  border-top-color: rgba(240, 226, 0, 0.5);
  border-bottom-color: rgba(240, 226, 0, 0.5);
}

.border-y-eva-yellow-appt\/55 {
  border-top-color: rgba(240, 226, 0, 0.55);
  border-bottom-color: rgba(240, 226, 0, 0.55);
}

.border-y-eva-yellow-appt\/60 {
  border-top-color: rgba(240, 226, 0, 0.6);
  border-bottom-color: rgba(240, 226, 0, 0.6);
}

.border-y-eva-yellow-appt\/65 {
  border-top-color: rgba(240, 226, 0, 0.65);
  border-bottom-color: rgba(240, 226, 0, 0.65);
}

.border-y-eva-yellow-appt\/70 {
  border-top-color: rgba(240, 226, 0, 0.7);
  border-bottom-color: rgba(240, 226, 0, 0.7);
}

.border-y-eva-yellow-appt\/75 {
  border-top-color: rgba(240, 226, 0, 0.75);
  border-bottom-color: rgba(240, 226, 0, 0.75);
}

.border-y-eva-yellow-appt\/80 {
  border-top-color: rgba(240, 226, 0, 0.8);
  border-bottom-color: rgba(240, 226, 0, 0.8);
}

.border-y-eva-yellow-appt\/85 {
  border-top-color: rgba(240, 226, 0, 0.85);
  border-bottom-color: rgba(240, 226, 0, 0.85);
}

.border-y-eva-yellow-appt\/90 {
  border-top-color: rgba(240, 226, 0, 0.9);
  border-bottom-color: rgba(240, 226, 0, 0.9);
}

.border-y-eva-yellow-appt\/95 {
  border-top-color: rgba(240, 226, 0, 0.95);
  border-bottom-color: rgba(240, 226, 0, 0.95);
}

.border-y-eva-yellow\/0 {
  border-top-color: rgb(233 179 98 / 0);
  border-bottom-color: rgb(233 179 98 / 0);
}

.border-y-eva-yellow\/10 {
  border-top-color: rgb(233 179 98 / 0.1);
  border-bottom-color: rgb(233 179 98 / 0.1);
}

.border-y-eva-yellow\/100 {
  border-top-color: rgb(233 179 98 / 1);
  border-bottom-color: rgb(233 179 98 / 1);
}

.border-y-eva-yellow\/15 {
  border-top-color: rgb(233 179 98 / 0.15);
  border-bottom-color: rgb(233 179 98 / 0.15);
}

.border-y-eva-yellow\/20 {
  border-top-color: rgb(233 179 98 / 0.2);
  border-bottom-color: rgb(233 179 98 / 0.2);
}

.border-y-eva-yellow\/25 {
  border-top-color: rgb(233 179 98 / 0.25);
  border-bottom-color: rgb(233 179 98 / 0.25);
}

.border-y-eva-yellow\/30 {
  border-top-color: rgb(233 179 98 / 0.3);
  border-bottom-color: rgb(233 179 98 / 0.3);
}

.border-y-eva-yellow\/35 {
  border-top-color: rgb(233 179 98 / 0.35);
  border-bottom-color: rgb(233 179 98 / 0.35);
}

.border-y-eva-yellow\/40 {
  border-top-color: rgb(233 179 98 / 0.4);
  border-bottom-color: rgb(233 179 98 / 0.4);
}

.border-y-eva-yellow\/45 {
  border-top-color: rgb(233 179 98 / 0.45);
  border-bottom-color: rgb(233 179 98 / 0.45);
}

.border-y-eva-yellow\/5 {
  border-top-color: rgb(233 179 98 / 0.05);
  border-bottom-color: rgb(233 179 98 / 0.05);
}

.border-y-eva-yellow\/50 {
  border-top-color: rgb(233 179 98 / 0.5);
  border-bottom-color: rgb(233 179 98 / 0.5);
}

.border-y-eva-yellow\/55 {
  border-top-color: rgb(233 179 98 / 0.55);
  border-bottom-color: rgb(233 179 98 / 0.55);
}

.border-y-eva-yellow\/60 {
  border-top-color: rgb(233 179 98 / 0.6);
  border-bottom-color: rgb(233 179 98 / 0.6);
}

.border-y-eva-yellow\/65 {
  border-top-color: rgb(233 179 98 / 0.65);
  border-bottom-color: rgb(233 179 98 / 0.65);
}

.border-y-eva-yellow\/70 {
  border-top-color: rgb(233 179 98 / 0.7);
  border-bottom-color: rgb(233 179 98 / 0.7);
}

.border-y-eva-yellow\/75 {
  border-top-color: rgb(233 179 98 / 0.75);
  border-bottom-color: rgb(233 179 98 / 0.75);
}

.border-y-eva-yellow\/80 {
  border-top-color: rgb(233 179 98 / 0.8);
  border-bottom-color: rgb(233 179 98 / 0.8);
}

.border-y-eva-yellow\/85 {
  border-top-color: rgb(233 179 98 / 0.85);
  border-bottom-color: rgb(233 179 98 / 0.85);
}

.border-y-eva-yellow\/90 {
  border-top-color: rgb(233 179 98 / 0.9);
  border-bottom-color: rgb(233 179 98 / 0.9);
}

.border-y-eva-yellow\/95 {
  border-top-color: rgb(233 179 98 / 0.95);
  border-bottom-color: rgb(233 179 98 / 0.95);
}

.border-y-gray-100 {
  --tw-border-opacity: 1;
  border-top-color: rgb(245 245 245 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(245 245 245 / var(--tw-border-opacity, 1));
}

.border-y-gray-100\/0 {
  border-top-color: rgb(245 245 245 / 0);
  border-bottom-color: rgb(245 245 245 / 0);
}

.border-y-gray-100\/10 {
  border-top-color: rgb(245 245 245 / 0.1);
  border-bottom-color: rgb(245 245 245 / 0.1);
}

.border-y-gray-100\/100 {
  border-top-color: rgb(245 245 245 / 1);
  border-bottom-color: rgb(245 245 245 / 1);
}

.border-y-gray-100\/15 {
  border-top-color: rgb(245 245 245 / 0.15);
  border-bottom-color: rgb(245 245 245 / 0.15);
}

.border-y-gray-100\/20 {
  border-top-color: rgb(245 245 245 / 0.2);
  border-bottom-color: rgb(245 245 245 / 0.2);
}

.border-y-gray-100\/25 {
  border-top-color: rgb(245 245 245 / 0.25);
  border-bottom-color: rgb(245 245 245 / 0.25);
}

.border-y-gray-100\/30 {
  border-top-color: rgb(245 245 245 / 0.3);
  border-bottom-color: rgb(245 245 245 / 0.3);
}

.border-y-gray-100\/35 {
  border-top-color: rgb(245 245 245 / 0.35);
  border-bottom-color: rgb(245 245 245 / 0.35);
}

.border-y-gray-100\/40 {
  border-top-color: rgb(245 245 245 / 0.4);
  border-bottom-color: rgb(245 245 245 / 0.4);
}

.border-y-gray-100\/45 {
  border-top-color: rgb(245 245 245 / 0.45);
  border-bottom-color: rgb(245 245 245 / 0.45);
}

.border-y-gray-100\/5 {
  border-top-color: rgb(245 245 245 / 0.05);
  border-bottom-color: rgb(245 245 245 / 0.05);
}

.border-y-gray-100\/50 {
  border-top-color: rgb(245 245 245 / 0.5);
  border-bottom-color: rgb(245 245 245 / 0.5);
}

.border-y-gray-100\/55 {
  border-top-color: rgb(245 245 245 / 0.55);
  border-bottom-color: rgb(245 245 245 / 0.55);
}

.border-y-gray-100\/60 {
  border-top-color: rgb(245 245 245 / 0.6);
  border-bottom-color: rgb(245 245 245 / 0.6);
}

.border-y-gray-100\/65 {
  border-top-color: rgb(245 245 245 / 0.65);
  border-bottom-color: rgb(245 245 245 / 0.65);
}

.border-y-gray-100\/70 {
  border-top-color: rgb(245 245 245 / 0.7);
  border-bottom-color: rgb(245 245 245 / 0.7);
}

.border-y-gray-100\/75 {
  border-top-color: rgb(245 245 245 / 0.75);
  border-bottom-color: rgb(245 245 245 / 0.75);
}

.border-y-gray-100\/80 {
  border-top-color: rgb(245 245 245 / 0.8);
  border-bottom-color: rgb(245 245 245 / 0.8);
}

.border-y-gray-100\/85 {
  border-top-color: rgb(245 245 245 / 0.85);
  border-bottom-color: rgb(245 245 245 / 0.85);
}

.border-y-gray-100\/90 {
  border-top-color: rgb(245 245 245 / 0.9);
  border-bottom-color: rgb(245 245 245 / 0.9);
}

.border-y-gray-100\/95 {
  border-top-color: rgb(245 245 245 / 0.95);
  border-bottom-color: rgb(245 245 245 / 0.95);
}

.border-y-gray-200 {
  --tw-border-opacity: 1;
  border-top-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
}

.border-y-gray-200\/0 {
  border-top-color: rgb(229 229 229 / 0);
  border-bottom-color: rgb(229 229 229 / 0);
}

.border-y-gray-200\/10 {
  border-top-color: rgb(229 229 229 / 0.1);
  border-bottom-color: rgb(229 229 229 / 0.1);
}

.border-y-gray-200\/100 {
  border-top-color: rgb(229 229 229 / 1);
  border-bottom-color: rgb(229 229 229 / 1);
}

.border-y-gray-200\/15 {
  border-top-color: rgb(229 229 229 / 0.15);
  border-bottom-color: rgb(229 229 229 / 0.15);
}

.border-y-gray-200\/20 {
  border-top-color: rgb(229 229 229 / 0.2);
  border-bottom-color: rgb(229 229 229 / 0.2);
}

.border-y-gray-200\/25 {
  border-top-color: rgb(229 229 229 / 0.25);
  border-bottom-color: rgb(229 229 229 / 0.25);
}

.border-y-gray-200\/30 {
  border-top-color: rgb(229 229 229 / 0.3);
  border-bottom-color: rgb(229 229 229 / 0.3);
}

.border-y-gray-200\/35 {
  border-top-color: rgb(229 229 229 / 0.35);
  border-bottom-color: rgb(229 229 229 / 0.35);
}

.border-y-gray-200\/40 {
  border-top-color: rgb(229 229 229 / 0.4);
  border-bottom-color: rgb(229 229 229 / 0.4);
}

.border-y-gray-200\/45 {
  border-top-color: rgb(229 229 229 / 0.45);
  border-bottom-color: rgb(229 229 229 / 0.45);
}

.border-y-gray-200\/5 {
  border-top-color: rgb(229 229 229 / 0.05);
  border-bottom-color: rgb(229 229 229 / 0.05);
}

.border-y-gray-200\/50 {
  border-top-color: rgb(229 229 229 / 0.5);
  border-bottom-color: rgb(229 229 229 / 0.5);
}

.border-y-gray-200\/55 {
  border-top-color: rgb(229 229 229 / 0.55);
  border-bottom-color: rgb(229 229 229 / 0.55);
}

.border-y-gray-200\/60 {
  border-top-color: rgb(229 229 229 / 0.6);
  border-bottom-color: rgb(229 229 229 / 0.6);
}

.border-y-gray-200\/65 {
  border-top-color: rgb(229 229 229 / 0.65);
  border-bottom-color: rgb(229 229 229 / 0.65);
}

.border-y-gray-200\/70 {
  border-top-color: rgb(229 229 229 / 0.7);
  border-bottom-color: rgb(229 229 229 / 0.7);
}

.border-y-gray-200\/75 {
  border-top-color: rgb(229 229 229 / 0.75);
  border-bottom-color: rgb(229 229 229 / 0.75);
}

.border-y-gray-200\/80 {
  border-top-color: rgb(229 229 229 / 0.8);
  border-bottom-color: rgb(229 229 229 / 0.8);
}

.border-y-gray-200\/85 {
  border-top-color: rgb(229 229 229 / 0.85);
  border-bottom-color: rgb(229 229 229 / 0.85);
}

.border-y-gray-200\/90 {
  border-top-color: rgb(229 229 229 / 0.9);
  border-bottom-color: rgb(229 229 229 / 0.9);
}

.border-y-gray-200\/95 {
  border-top-color: rgb(229 229 229 / 0.95);
  border-bottom-color: rgb(229 229 229 / 0.95);
}

.border-y-gray-300 {
  --tw-border-opacity: 1;
  border-top-color: rgb(212 212 212 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(212 212 212 / var(--tw-border-opacity, 1));
}

.border-y-gray-300\/0 {
  border-top-color: rgb(212 212 212 / 0);
  border-bottom-color: rgb(212 212 212 / 0);
}

.border-y-gray-300\/10 {
  border-top-color: rgb(212 212 212 / 0.1);
  border-bottom-color: rgb(212 212 212 / 0.1);
}

.border-y-gray-300\/100 {
  border-top-color: rgb(212 212 212 / 1);
  border-bottom-color: rgb(212 212 212 / 1);
}

.border-y-gray-300\/15 {
  border-top-color: rgb(212 212 212 / 0.15);
  border-bottom-color: rgb(212 212 212 / 0.15);
}

.border-y-gray-300\/20 {
  border-top-color: rgb(212 212 212 / 0.2);
  border-bottom-color: rgb(212 212 212 / 0.2);
}

.border-y-gray-300\/25 {
  border-top-color: rgb(212 212 212 / 0.25);
  border-bottom-color: rgb(212 212 212 / 0.25);
}

.border-y-gray-300\/30 {
  border-top-color: rgb(212 212 212 / 0.3);
  border-bottom-color: rgb(212 212 212 / 0.3);
}

.border-y-gray-300\/35 {
  border-top-color: rgb(212 212 212 / 0.35);
  border-bottom-color: rgb(212 212 212 / 0.35);
}

.border-y-gray-300\/40 {
  border-top-color: rgb(212 212 212 / 0.4);
  border-bottom-color: rgb(212 212 212 / 0.4);
}

.border-y-gray-300\/45 {
  border-top-color: rgb(212 212 212 / 0.45);
  border-bottom-color: rgb(212 212 212 / 0.45);
}

.border-y-gray-300\/5 {
  border-top-color: rgb(212 212 212 / 0.05);
  border-bottom-color: rgb(212 212 212 / 0.05);
}

.border-y-gray-300\/50 {
  border-top-color: rgb(212 212 212 / 0.5);
  border-bottom-color: rgb(212 212 212 / 0.5);
}

.border-y-gray-300\/55 {
  border-top-color: rgb(212 212 212 / 0.55);
  border-bottom-color: rgb(212 212 212 / 0.55);
}

.border-y-gray-300\/60 {
  border-top-color: rgb(212 212 212 / 0.6);
  border-bottom-color: rgb(212 212 212 / 0.6);
}

.border-y-gray-300\/65 {
  border-top-color: rgb(212 212 212 / 0.65);
  border-bottom-color: rgb(212 212 212 / 0.65);
}

.border-y-gray-300\/70 {
  border-top-color: rgb(212 212 212 / 0.7);
  border-bottom-color: rgb(212 212 212 / 0.7);
}

.border-y-gray-300\/75 {
  border-top-color: rgb(212 212 212 / 0.75);
  border-bottom-color: rgb(212 212 212 / 0.75);
}

.border-y-gray-300\/80 {
  border-top-color: rgb(212 212 212 / 0.8);
  border-bottom-color: rgb(212 212 212 / 0.8);
}

.border-y-gray-300\/85 {
  border-top-color: rgb(212 212 212 / 0.85);
  border-bottom-color: rgb(212 212 212 / 0.85);
}

.border-y-gray-300\/90 {
  border-top-color: rgb(212 212 212 / 0.9);
  border-bottom-color: rgb(212 212 212 / 0.9);
}

.border-y-gray-300\/95 {
  border-top-color: rgb(212 212 212 / 0.95);
  border-bottom-color: rgb(212 212 212 / 0.95);
}

.border-y-gray-400 {
  --tw-border-opacity: 1;
  border-top-color: rgb(163 163 163 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(163 163 163 / var(--tw-border-opacity, 1));
}

.border-y-gray-400\/0 {
  border-top-color: rgb(163 163 163 / 0);
  border-bottom-color: rgb(163 163 163 / 0);
}

.border-y-gray-400\/10 {
  border-top-color: rgb(163 163 163 / 0.1);
  border-bottom-color: rgb(163 163 163 / 0.1);
}

.border-y-gray-400\/100 {
  border-top-color: rgb(163 163 163 / 1);
  border-bottom-color: rgb(163 163 163 / 1);
}

.border-y-gray-400\/15 {
  border-top-color: rgb(163 163 163 / 0.15);
  border-bottom-color: rgb(163 163 163 / 0.15);
}

.border-y-gray-400\/20 {
  border-top-color: rgb(163 163 163 / 0.2);
  border-bottom-color: rgb(163 163 163 / 0.2);
}

.border-y-gray-400\/25 {
  border-top-color: rgb(163 163 163 / 0.25);
  border-bottom-color: rgb(163 163 163 / 0.25);
}

.border-y-gray-400\/30 {
  border-top-color: rgb(163 163 163 / 0.3);
  border-bottom-color: rgb(163 163 163 / 0.3);
}

.border-y-gray-400\/35 {
  border-top-color: rgb(163 163 163 / 0.35);
  border-bottom-color: rgb(163 163 163 / 0.35);
}

.border-y-gray-400\/40 {
  border-top-color: rgb(163 163 163 / 0.4);
  border-bottom-color: rgb(163 163 163 / 0.4);
}

.border-y-gray-400\/45 {
  border-top-color: rgb(163 163 163 / 0.45);
  border-bottom-color: rgb(163 163 163 / 0.45);
}

.border-y-gray-400\/5 {
  border-top-color: rgb(163 163 163 / 0.05);
  border-bottom-color: rgb(163 163 163 / 0.05);
}

.border-y-gray-400\/50 {
  border-top-color: rgb(163 163 163 / 0.5);
  border-bottom-color: rgb(163 163 163 / 0.5);
}

.border-y-gray-400\/55 {
  border-top-color: rgb(163 163 163 / 0.55);
  border-bottom-color: rgb(163 163 163 / 0.55);
}

.border-y-gray-400\/60 {
  border-top-color: rgb(163 163 163 / 0.6);
  border-bottom-color: rgb(163 163 163 / 0.6);
}

.border-y-gray-400\/65 {
  border-top-color: rgb(163 163 163 / 0.65);
  border-bottom-color: rgb(163 163 163 / 0.65);
}

.border-y-gray-400\/70 {
  border-top-color: rgb(163 163 163 / 0.7);
  border-bottom-color: rgb(163 163 163 / 0.7);
}

.border-y-gray-400\/75 {
  border-top-color: rgb(163 163 163 / 0.75);
  border-bottom-color: rgb(163 163 163 / 0.75);
}

.border-y-gray-400\/80 {
  border-top-color: rgb(163 163 163 / 0.8);
  border-bottom-color: rgb(163 163 163 / 0.8);
}

.border-y-gray-400\/85 {
  border-top-color: rgb(163 163 163 / 0.85);
  border-bottom-color: rgb(163 163 163 / 0.85);
}

.border-y-gray-400\/90 {
  border-top-color: rgb(163 163 163 / 0.9);
  border-bottom-color: rgb(163 163 163 / 0.9);
}

.border-y-gray-400\/95 {
  border-top-color: rgb(163 163 163 / 0.95);
  border-bottom-color: rgb(163 163 163 / 0.95);
}

.border-y-gray-50 {
  --tw-border-opacity: 1;
  border-top-color: rgb(250 250 250 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(250 250 250 / var(--tw-border-opacity, 1));
}

.border-y-gray-50\/0 {
  border-top-color: rgb(250 250 250 / 0);
  border-bottom-color: rgb(250 250 250 / 0);
}

.border-y-gray-50\/10 {
  border-top-color: rgb(250 250 250 / 0.1);
  border-bottom-color: rgb(250 250 250 / 0.1);
}

.border-y-gray-50\/100 {
  border-top-color: rgb(250 250 250 / 1);
  border-bottom-color: rgb(250 250 250 / 1);
}

.border-y-gray-50\/15 {
  border-top-color: rgb(250 250 250 / 0.15);
  border-bottom-color: rgb(250 250 250 / 0.15);
}

.border-y-gray-50\/20 {
  border-top-color: rgb(250 250 250 / 0.2);
  border-bottom-color: rgb(250 250 250 / 0.2);
}

.border-y-gray-50\/25 {
  border-top-color: rgb(250 250 250 / 0.25);
  border-bottom-color: rgb(250 250 250 / 0.25);
}

.border-y-gray-50\/30 {
  border-top-color: rgb(250 250 250 / 0.3);
  border-bottom-color: rgb(250 250 250 / 0.3);
}

.border-y-gray-50\/35 {
  border-top-color: rgb(250 250 250 / 0.35);
  border-bottom-color: rgb(250 250 250 / 0.35);
}

.border-y-gray-50\/40 {
  border-top-color: rgb(250 250 250 / 0.4);
  border-bottom-color: rgb(250 250 250 / 0.4);
}

.border-y-gray-50\/45 {
  border-top-color: rgb(250 250 250 / 0.45);
  border-bottom-color: rgb(250 250 250 / 0.45);
}

.border-y-gray-50\/5 {
  border-top-color: rgb(250 250 250 / 0.05);
  border-bottom-color: rgb(250 250 250 / 0.05);
}

.border-y-gray-50\/50 {
  border-top-color: rgb(250 250 250 / 0.5);
  border-bottom-color: rgb(250 250 250 / 0.5);
}

.border-y-gray-50\/55 {
  border-top-color: rgb(250 250 250 / 0.55);
  border-bottom-color: rgb(250 250 250 / 0.55);
}

.border-y-gray-50\/60 {
  border-top-color: rgb(250 250 250 / 0.6);
  border-bottom-color: rgb(250 250 250 / 0.6);
}

.border-y-gray-50\/65 {
  border-top-color: rgb(250 250 250 / 0.65);
  border-bottom-color: rgb(250 250 250 / 0.65);
}

.border-y-gray-50\/70 {
  border-top-color: rgb(250 250 250 / 0.7);
  border-bottom-color: rgb(250 250 250 / 0.7);
}

.border-y-gray-50\/75 {
  border-top-color: rgb(250 250 250 / 0.75);
  border-bottom-color: rgb(250 250 250 / 0.75);
}

.border-y-gray-50\/80 {
  border-top-color: rgb(250 250 250 / 0.8);
  border-bottom-color: rgb(250 250 250 / 0.8);
}

.border-y-gray-50\/85 {
  border-top-color: rgb(250 250 250 / 0.85);
  border-bottom-color: rgb(250 250 250 / 0.85);
}

.border-y-gray-50\/90 {
  border-top-color: rgb(250 250 250 / 0.9);
  border-bottom-color: rgb(250 250 250 / 0.9);
}

.border-y-gray-50\/95 {
  border-top-color: rgb(250 250 250 / 0.95);
  border-bottom-color: rgb(250 250 250 / 0.95);
}

.border-y-gray-500 {
  --tw-border-opacity: 1;
  border-top-color: rgb(115 115 115 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(115 115 115 / var(--tw-border-opacity, 1));
}

.border-y-gray-500\/0 {
  border-top-color: rgb(115 115 115 / 0);
  border-bottom-color: rgb(115 115 115 / 0);
}

.border-y-gray-500\/10 {
  border-top-color: rgb(115 115 115 / 0.1);
  border-bottom-color: rgb(115 115 115 / 0.1);
}

.border-y-gray-500\/100 {
  border-top-color: rgb(115 115 115 / 1);
  border-bottom-color: rgb(115 115 115 / 1);
}

.border-y-gray-500\/15 {
  border-top-color: rgb(115 115 115 / 0.15);
  border-bottom-color: rgb(115 115 115 / 0.15);
}

.border-y-gray-500\/20 {
  border-top-color: rgb(115 115 115 / 0.2);
  border-bottom-color: rgb(115 115 115 / 0.2);
}

.border-y-gray-500\/25 {
  border-top-color: rgb(115 115 115 / 0.25);
  border-bottom-color: rgb(115 115 115 / 0.25);
}

.border-y-gray-500\/30 {
  border-top-color: rgb(115 115 115 / 0.3);
  border-bottom-color: rgb(115 115 115 / 0.3);
}

.border-y-gray-500\/35 {
  border-top-color: rgb(115 115 115 / 0.35);
  border-bottom-color: rgb(115 115 115 / 0.35);
}

.border-y-gray-500\/40 {
  border-top-color: rgb(115 115 115 / 0.4);
  border-bottom-color: rgb(115 115 115 / 0.4);
}

.border-y-gray-500\/45 {
  border-top-color: rgb(115 115 115 / 0.45);
  border-bottom-color: rgb(115 115 115 / 0.45);
}

.border-y-gray-500\/5 {
  border-top-color: rgb(115 115 115 / 0.05);
  border-bottom-color: rgb(115 115 115 / 0.05);
}

.border-y-gray-500\/50 {
  border-top-color: rgb(115 115 115 / 0.5);
  border-bottom-color: rgb(115 115 115 / 0.5);
}

.border-y-gray-500\/55 {
  border-top-color: rgb(115 115 115 / 0.55);
  border-bottom-color: rgb(115 115 115 / 0.55);
}

.border-y-gray-500\/60 {
  border-top-color: rgb(115 115 115 / 0.6);
  border-bottom-color: rgb(115 115 115 / 0.6);
}

.border-y-gray-500\/65 {
  border-top-color: rgb(115 115 115 / 0.65);
  border-bottom-color: rgb(115 115 115 / 0.65);
}

.border-y-gray-500\/70 {
  border-top-color: rgb(115 115 115 / 0.7);
  border-bottom-color: rgb(115 115 115 / 0.7);
}

.border-y-gray-500\/75 {
  border-top-color: rgb(115 115 115 / 0.75);
  border-bottom-color: rgb(115 115 115 / 0.75);
}

.border-y-gray-500\/80 {
  border-top-color: rgb(115 115 115 / 0.8);
  border-bottom-color: rgb(115 115 115 / 0.8);
}

.border-y-gray-500\/85 {
  border-top-color: rgb(115 115 115 / 0.85);
  border-bottom-color: rgb(115 115 115 / 0.85);
}

.border-y-gray-500\/90 {
  border-top-color: rgb(115 115 115 / 0.9);
  border-bottom-color: rgb(115 115 115 / 0.9);
}

.border-y-gray-500\/95 {
  border-top-color: rgb(115 115 115 / 0.95);
  border-bottom-color: rgb(115 115 115 / 0.95);
}

.border-y-gray-600 {
  --tw-border-opacity: 1;
  border-top-color: rgb(82 82 82 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(82 82 82 / var(--tw-border-opacity, 1));
}

.border-y-gray-600\/0 {
  border-top-color: rgb(82 82 82 / 0);
  border-bottom-color: rgb(82 82 82 / 0);
}

.border-y-gray-600\/10 {
  border-top-color: rgb(82 82 82 / 0.1);
  border-bottom-color: rgb(82 82 82 / 0.1);
}

.border-y-gray-600\/100 {
  border-top-color: rgb(82 82 82 / 1);
  border-bottom-color: rgb(82 82 82 / 1);
}

.border-y-gray-600\/15 {
  border-top-color: rgb(82 82 82 / 0.15);
  border-bottom-color: rgb(82 82 82 / 0.15);
}

.border-y-gray-600\/20 {
  border-top-color: rgb(82 82 82 / 0.2);
  border-bottom-color: rgb(82 82 82 / 0.2);
}

.border-y-gray-600\/25 {
  border-top-color: rgb(82 82 82 / 0.25);
  border-bottom-color: rgb(82 82 82 / 0.25);
}

.border-y-gray-600\/30 {
  border-top-color: rgb(82 82 82 / 0.3);
  border-bottom-color: rgb(82 82 82 / 0.3);
}

.border-y-gray-600\/35 {
  border-top-color: rgb(82 82 82 / 0.35);
  border-bottom-color: rgb(82 82 82 / 0.35);
}

.border-y-gray-600\/40 {
  border-top-color: rgb(82 82 82 / 0.4);
  border-bottom-color: rgb(82 82 82 / 0.4);
}

.border-y-gray-600\/45 {
  border-top-color: rgb(82 82 82 / 0.45);
  border-bottom-color: rgb(82 82 82 / 0.45);
}

.border-y-gray-600\/5 {
  border-top-color: rgb(82 82 82 / 0.05);
  border-bottom-color: rgb(82 82 82 / 0.05);
}

.border-y-gray-600\/50 {
  border-top-color: rgb(82 82 82 / 0.5);
  border-bottom-color: rgb(82 82 82 / 0.5);
}

.border-y-gray-600\/55 {
  border-top-color: rgb(82 82 82 / 0.55);
  border-bottom-color: rgb(82 82 82 / 0.55);
}

.border-y-gray-600\/60 {
  border-top-color: rgb(82 82 82 / 0.6);
  border-bottom-color: rgb(82 82 82 / 0.6);
}

.border-y-gray-600\/65 {
  border-top-color: rgb(82 82 82 / 0.65);
  border-bottom-color: rgb(82 82 82 / 0.65);
}

.border-y-gray-600\/70 {
  border-top-color: rgb(82 82 82 / 0.7);
  border-bottom-color: rgb(82 82 82 / 0.7);
}

.border-y-gray-600\/75 {
  border-top-color: rgb(82 82 82 / 0.75);
  border-bottom-color: rgb(82 82 82 / 0.75);
}

.border-y-gray-600\/80 {
  border-top-color: rgb(82 82 82 / 0.8);
  border-bottom-color: rgb(82 82 82 / 0.8);
}

.border-y-gray-600\/85 {
  border-top-color: rgb(82 82 82 / 0.85);
  border-bottom-color: rgb(82 82 82 / 0.85);
}

.border-y-gray-600\/90 {
  border-top-color: rgb(82 82 82 / 0.9);
  border-bottom-color: rgb(82 82 82 / 0.9);
}

.border-y-gray-600\/95 {
  border-top-color: rgb(82 82 82 / 0.95);
  border-bottom-color: rgb(82 82 82 / 0.95);
}

.border-y-gray-700 {
  --tw-border-opacity: 1;
  border-top-color: rgb(64 64 64 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(64 64 64 / var(--tw-border-opacity, 1));
}

.border-y-gray-700\/0 {
  border-top-color: rgb(64 64 64 / 0);
  border-bottom-color: rgb(64 64 64 / 0);
}

.border-y-gray-700\/10 {
  border-top-color: rgb(64 64 64 / 0.1);
  border-bottom-color: rgb(64 64 64 / 0.1);
}

.border-y-gray-700\/100 {
  border-top-color: rgb(64 64 64 / 1);
  border-bottom-color: rgb(64 64 64 / 1);
}

.border-y-gray-700\/15 {
  border-top-color: rgb(64 64 64 / 0.15);
  border-bottom-color: rgb(64 64 64 / 0.15);
}

.border-y-gray-700\/20 {
  border-top-color: rgb(64 64 64 / 0.2);
  border-bottom-color: rgb(64 64 64 / 0.2);
}

.border-y-gray-700\/25 {
  border-top-color: rgb(64 64 64 / 0.25);
  border-bottom-color: rgb(64 64 64 / 0.25);
}

.border-y-gray-700\/30 {
  border-top-color: rgb(64 64 64 / 0.3);
  border-bottom-color: rgb(64 64 64 / 0.3);
}

.border-y-gray-700\/35 {
  border-top-color: rgb(64 64 64 / 0.35);
  border-bottom-color: rgb(64 64 64 / 0.35);
}

.border-y-gray-700\/40 {
  border-top-color: rgb(64 64 64 / 0.4);
  border-bottom-color: rgb(64 64 64 / 0.4);
}

.border-y-gray-700\/45 {
  border-top-color: rgb(64 64 64 / 0.45);
  border-bottom-color: rgb(64 64 64 / 0.45);
}

.border-y-gray-700\/5 {
  border-top-color: rgb(64 64 64 / 0.05);
  border-bottom-color: rgb(64 64 64 / 0.05);
}

.border-y-gray-700\/50 {
  border-top-color: rgb(64 64 64 / 0.5);
  border-bottom-color: rgb(64 64 64 / 0.5);
}

.border-y-gray-700\/55 {
  border-top-color: rgb(64 64 64 / 0.55);
  border-bottom-color: rgb(64 64 64 / 0.55);
}

.border-y-gray-700\/60 {
  border-top-color: rgb(64 64 64 / 0.6);
  border-bottom-color: rgb(64 64 64 / 0.6);
}

.border-y-gray-700\/65 {
  border-top-color: rgb(64 64 64 / 0.65);
  border-bottom-color: rgb(64 64 64 / 0.65);
}

.border-y-gray-700\/70 {
  border-top-color: rgb(64 64 64 / 0.7);
  border-bottom-color: rgb(64 64 64 / 0.7);
}

.border-y-gray-700\/75 {
  border-top-color: rgb(64 64 64 / 0.75);
  border-bottom-color: rgb(64 64 64 / 0.75);
}

.border-y-gray-700\/80 {
  border-top-color: rgb(64 64 64 / 0.8);
  border-bottom-color: rgb(64 64 64 / 0.8);
}

.border-y-gray-700\/85 {
  border-top-color: rgb(64 64 64 / 0.85);
  border-bottom-color: rgb(64 64 64 / 0.85);
}

.border-y-gray-700\/90 {
  border-top-color: rgb(64 64 64 / 0.9);
  border-bottom-color: rgb(64 64 64 / 0.9);
}

.border-y-gray-700\/95 {
  border-top-color: rgb(64 64 64 / 0.95);
  border-bottom-color: rgb(64 64 64 / 0.95);
}

.border-y-gray-800 {
  --tw-border-opacity: 1;
  border-top-color: rgb(38 38 38 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(38 38 38 / var(--tw-border-opacity, 1));
}

.border-y-gray-800\/0 {
  border-top-color: rgb(38 38 38 / 0);
  border-bottom-color: rgb(38 38 38 / 0);
}

.border-y-gray-800\/10 {
  border-top-color: rgb(38 38 38 / 0.1);
  border-bottom-color: rgb(38 38 38 / 0.1);
}

.border-y-gray-800\/100 {
  border-top-color: rgb(38 38 38 / 1);
  border-bottom-color: rgb(38 38 38 / 1);
}

.border-y-gray-800\/15 {
  border-top-color: rgb(38 38 38 / 0.15);
  border-bottom-color: rgb(38 38 38 / 0.15);
}

.border-y-gray-800\/20 {
  border-top-color: rgb(38 38 38 / 0.2);
  border-bottom-color: rgb(38 38 38 / 0.2);
}

.border-y-gray-800\/25 {
  border-top-color: rgb(38 38 38 / 0.25);
  border-bottom-color: rgb(38 38 38 / 0.25);
}

.border-y-gray-800\/30 {
  border-top-color: rgb(38 38 38 / 0.3);
  border-bottom-color: rgb(38 38 38 / 0.3);
}

.border-y-gray-800\/35 {
  border-top-color: rgb(38 38 38 / 0.35);
  border-bottom-color: rgb(38 38 38 / 0.35);
}

.border-y-gray-800\/40 {
  border-top-color: rgb(38 38 38 / 0.4);
  border-bottom-color: rgb(38 38 38 / 0.4);
}

.border-y-gray-800\/45 {
  border-top-color: rgb(38 38 38 / 0.45);
  border-bottom-color: rgb(38 38 38 / 0.45);
}

.border-y-gray-800\/5 {
  border-top-color: rgb(38 38 38 / 0.05);
  border-bottom-color: rgb(38 38 38 / 0.05);
}

.border-y-gray-800\/50 {
  border-top-color: rgb(38 38 38 / 0.5);
  border-bottom-color: rgb(38 38 38 / 0.5);
}

.border-y-gray-800\/55 {
  border-top-color: rgb(38 38 38 / 0.55);
  border-bottom-color: rgb(38 38 38 / 0.55);
}

.border-y-gray-800\/60 {
  border-top-color: rgb(38 38 38 / 0.6);
  border-bottom-color: rgb(38 38 38 / 0.6);
}

.border-y-gray-800\/65 {
  border-top-color: rgb(38 38 38 / 0.65);
  border-bottom-color: rgb(38 38 38 / 0.65);
}

.border-y-gray-800\/70 {
  border-top-color: rgb(38 38 38 / 0.7);
  border-bottom-color: rgb(38 38 38 / 0.7);
}

.border-y-gray-800\/75 {
  border-top-color: rgb(38 38 38 / 0.75);
  border-bottom-color: rgb(38 38 38 / 0.75);
}

.border-y-gray-800\/80 {
  border-top-color: rgb(38 38 38 / 0.8);
  border-bottom-color: rgb(38 38 38 / 0.8);
}

.border-y-gray-800\/85 {
  border-top-color: rgb(38 38 38 / 0.85);
  border-bottom-color: rgb(38 38 38 / 0.85);
}

.border-y-gray-800\/90 {
  border-top-color: rgb(38 38 38 / 0.9);
  border-bottom-color: rgb(38 38 38 / 0.9);
}

.border-y-gray-800\/95 {
  border-top-color: rgb(38 38 38 / 0.95);
  border-bottom-color: rgb(38 38 38 / 0.95);
}

.border-y-gray-900 {
  --tw-border-opacity: 1;
  border-top-color: rgb(23 23 23 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(23 23 23 / var(--tw-border-opacity, 1));
}

.border-y-gray-900\/0 {
  border-top-color: rgb(23 23 23 / 0);
  border-bottom-color: rgb(23 23 23 / 0);
}

.border-y-gray-900\/10 {
  border-top-color: rgb(23 23 23 / 0.1);
  border-bottom-color: rgb(23 23 23 / 0.1);
}

.border-y-gray-900\/100 {
  border-top-color: rgb(23 23 23 / 1);
  border-bottom-color: rgb(23 23 23 / 1);
}

.border-y-gray-900\/15 {
  border-top-color: rgb(23 23 23 / 0.15);
  border-bottom-color: rgb(23 23 23 / 0.15);
}

.border-y-gray-900\/20 {
  border-top-color: rgb(23 23 23 / 0.2);
  border-bottom-color: rgb(23 23 23 / 0.2);
}

.border-y-gray-900\/25 {
  border-top-color: rgb(23 23 23 / 0.25);
  border-bottom-color: rgb(23 23 23 / 0.25);
}

.border-y-gray-900\/30 {
  border-top-color: rgb(23 23 23 / 0.3);
  border-bottom-color: rgb(23 23 23 / 0.3);
}

.border-y-gray-900\/35 {
  border-top-color: rgb(23 23 23 / 0.35);
  border-bottom-color: rgb(23 23 23 / 0.35);
}

.border-y-gray-900\/40 {
  border-top-color: rgb(23 23 23 / 0.4);
  border-bottom-color: rgb(23 23 23 / 0.4);
}

.border-y-gray-900\/45 {
  border-top-color: rgb(23 23 23 / 0.45);
  border-bottom-color: rgb(23 23 23 / 0.45);
}

.border-y-gray-900\/5 {
  border-top-color: rgb(23 23 23 / 0.05);
  border-bottom-color: rgb(23 23 23 / 0.05);
}

.border-y-gray-900\/50 {
  border-top-color: rgb(23 23 23 / 0.5);
  border-bottom-color: rgb(23 23 23 / 0.5);
}

.border-y-gray-900\/55 {
  border-top-color: rgb(23 23 23 / 0.55);
  border-bottom-color: rgb(23 23 23 / 0.55);
}

.border-y-gray-900\/60 {
  border-top-color: rgb(23 23 23 / 0.6);
  border-bottom-color: rgb(23 23 23 / 0.6);
}

.border-y-gray-900\/65 {
  border-top-color: rgb(23 23 23 / 0.65);
  border-bottom-color: rgb(23 23 23 / 0.65);
}

.border-y-gray-900\/70 {
  border-top-color: rgb(23 23 23 / 0.7);
  border-bottom-color: rgb(23 23 23 / 0.7);
}

.border-y-gray-900\/75 {
  border-top-color: rgb(23 23 23 / 0.75);
  border-bottom-color: rgb(23 23 23 / 0.75);
}

.border-y-gray-900\/80 {
  border-top-color: rgb(23 23 23 / 0.8);
  border-bottom-color: rgb(23 23 23 / 0.8);
}

.border-y-gray-900\/85 {
  border-top-color: rgb(23 23 23 / 0.85);
  border-bottom-color: rgb(23 23 23 / 0.85);
}

.border-y-gray-900\/90 {
  border-top-color: rgb(23 23 23 / 0.9);
  border-bottom-color: rgb(23 23 23 / 0.9);
}

.border-y-gray-900\/95 {
  border-top-color: rgb(23 23 23 / 0.95);
  border-bottom-color: rgb(23 23 23 / 0.95);
}

.border-y-gray-950 {
  --tw-border-opacity: 1;
  border-top-color: rgb(10 10 10 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(10 10 10 / var(--tw-border-opacity, 1));
}

.border-y-gray-950\/0 {
  border-top-color: rgb(10 10 10 / 0);
  border-bottom-color: rgb(10 10 10 / 0);
}

.border-y-gray-950\/10 {
  border-top-color: rgb(10 10 10 / 0.1);
  border-bottom-color: rgb(10 10 10 / 0.1);
}

.border-y-gray-950\/100 {
  border-top-color: rgb(10 10 10 / 1);
  border-bottom-color: rgb(10 10 10 / 1);
}

.border-y-gray-950\/15 {
  border-top-color: rgb(10 10 10 / 0.15);
  border-bottom-color: rgb(10 10 10 / 0.15);
}

.border-y-gray-950\/20 {
  border-top-color: rgb(10 10 10 / 0.2);
  border-bottom-color: rgb(10 10 10 / 0.2);
}

.border-y-gray-950\/25 {
  border-top-color: rgb(10 10 10 / 0.25);
  border-bottom-color: rgb(10 10 10 / 0.25);
}

.border-y-gray-950\/30 {
  border-top-color: rgb(10 10 10 / 0.3);
  border-bottom-color: rgb(10 10 10 / 0.3);
}

.border-y-gray-950\/35 {
  border-top-color: rgb(10 10 10 / 0.35);
  border-bottom-color: rgb(10 10 10 / 0.35);
}

.border-y-gray-950\/40 {
  border-top-color: rgb(10 10 10 / 0.4);
  border-bottom-color: rgb(10 10 10 / 0.4);
}

.border-y-gray-950\/45 {
  border-top-color: rgb(10 10 10 / 0.45);
  border-bottom-color: rgb(10 10 10 / 0.45);
}

.border-y-gray-950\/5 {
  border-top-color: rgb(10 10 10 / 0.05);
  border-bottom-color: rgb(10 10 10 / 0.05);
}

.border-y-gray-950\/50 {
  border-top-color: rgb(10 10 10 / 0.5);
  border-bottom-color: rgb(10 10 10 / 0.5);
}

.border-y-gray-950\/55 {
  border-top-color: rgb(10 10 10 / 0.55);
  border-bottom-color: rgb(10 10 10 / 0.55);
}

.border-y-gray-950\/60 {
  border-top-color: rgb(10 10 10 / 0.6);
  border-bottom-color: rgb(10 10 10 / 0.6);
}

.border-y-gray-950\/65 {
  border-top-color: rgb(10 10 10 / 0.65);
  border-bottom-color: rgb(10 10 10 / 0.65);
}

.border-y-gray-950\/70 {
  border-top-color: rgb(10 10 10 / 0.7);
  border-bottom-color: rgb(10 10 10 / 0.7);
}

.border-y-gray-950\/75 {
  border-top-color: rgb(10 10 10 / 0.75);
  border-bottom-color: rgb(10 10 10 / 0.75);
}

.border-y-gray-950\/80 {
  border-top-color: rgb(10 10 10 / 0.8);
  border-bottom-color: rgb(10 10 10 / 0.8);
}

.border-y-gray-950\/85 {
  border-top-color: rgb(10 10 10 / 0.85);
  border-bottom-color: rgb(10 10 10 / 0.85);
}

.border-y-gray-950\/90 {
  border-top-color: rgb(10 10 10 / 0.9);
  border-bottom-color: rgb(10 10 10 / 0.9);
}

.border-y-gray-950\/95 {
  border-top-color: rgb(10 10 10 / 0.95);
  border-bottom-color: rgb(10 10 10 / 0.95);
}

.border-y-green-100 {
  --tw-border-opacity: 1;
  border-top-color: rgb(220 252 231 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(220 252 231 / var(--tw-border-opacity, 1));
}

.border-y-green-100\/0 {
  border-top-color: rgb(220 252 231 / 0);
  border-bottom-color: rgb(220 252 231 / 0);
}

.border-y-green-100\/10 {
  border-top-color: rgb(220 252 231 / 0.1);
  border-bottom-color: rgb(220 252 231 / 0.1);
}

.border-y-green-100\/100 {
  border-top-color: rgb(220 252 231 / 1);
  border-bottom-color: rgb(220 252 231 / 1);
}

.border-y-green-100\/15 {
  border-top-color: rgb(220 252 231 / 0.15);
  border-bottom-color: rgb(220 252 231 / 0.15);
}

.border-y-green-100\/20 {
  border-top-color: rgb(220 252 231 / 0.2);
  border-bottom-color: rgb(220 252 231 / 0.2);
}

.border-y-green-100\/25 {
  border-top-color: rgb(220 252 231 / 0.25);
  border-bottom-color: rgb(220 252 231 / 0.25);
}

.border-y-green-100\/30 {
  border-top-color: rgb(220 252 231 / 0.3);
  border-bottom-color: rgb(220 252 231 / 0.3);
}

.border-y-green-100\/35 {
  border-top-color: rgb(220 252 231 / 0.35);
  border-bottom-color: rgb(220 252 231 / 0.35);
}

.border-y-green-100\/40 {
  border-top-color: rgb(220 252 231 / 0.4);
  border-bottom-color: rgb(220 252 231 / 0.4);
}

.border-y-green-100\/45 {
  border-top-color: rgb(220 252 231 / 0.45);
  border-bottom-color: rgb(220 252 231 / 0.45);
}

.border-y-green-100\/5 {
  border-top-color: rgb(220 252 231 / 0.05);
  border-bottom-color: rgb(220 252 231 / 0.05);
}

.border-y-green-100\/50 {
  border-top-color: rgb(220 252 231 / 0.5);
  border-bottom-color: rgb(220 252 231 / 0.5);
}

.border-y-green-100\/55 {
  border-top-color: rgb(220 252 231 / 0.55);
  border-bottom-color: rgb(220 252 231 / 0.55);
}

.border-y-green-100\/60 {
  border-top-color: rgb(220 252 231 / 0.6);
  border-bottom-color: rgb(220 252 231 / 0.6);
}

.border-y-green-100\/65 {
  border-top-color: rgb(220 252 231 / 0.65);
  border-bottom-color: rgb(220 252 231 / 0.65);
}

.border-y-green-100\/70 {
  border-top-color: rgb(220 252 231 / 0.7);
  border-bottom-color: rgb(220 252 231 / 0.7);
}

.border-y-green-100\/75 {
  border-top-color: rgb(220 252 231 / 0.75);
  border-bottom-color: rgb(220 252 231 / 0.75);
}

.border-y-green-100\/80 {
  border-top-color: rgb(220 252 231 / 0.8);
  border-bottom-color: rgb(220 252 231 / 0.8);
}

.border-y-green-100\/85 {
  border-top-color: rgb(220 252 231 / 0.85);
  border-bottom-color: rgb(220 252 231 / 0.85);
}

.border-y-green-100\/90 {
  border-top-color: rgb(220 252 231 / 0.9);
  border-bottom-color: rgb(220 252 231 / 0.9);
}

.border-y-green-100\/95 {
  border-top-color: rgb(220 252 231 / 0.95);
  border-bottom-color: rgb(220 252 231 / 0.95);
}

.border-y-green-200 {
  --tw-border-opacity: 1;
  border-top-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
}

.border-y-green-200\/0 {
  border-top-color: rgb(187 247 208 / 0);
  border-bottom-color: rgb(187 247 208 / 0);
}

.border-y-green-200\/10 {
  border-top-color: rgb(187 247 208 / 0.1);
  border-bottom-color: rgb(187 247 208 / 0.1);
}

.border-y-green-200\/100 {
  border-top-color: rgb(187 247 208 / 1);
  border-bottom-color: rgb(187 247 208 / 1);
}

.border-y-green-200\/15 {
  border-top-color: rgb(187 247 208 / 0.15);
  border-bottom-color: rgb(187 247 208 / 0.15);
}

.border-y-green-200\/20 {
  border-top-color: rgb(187 247 208 / 0.2);
  border-bottom-color: rgb(187 247 208 / 0.2);
}

.border-y-green-200\/25 {
  border-top-color: rgb(187 247 208 / 0.25);
  border-bottom-color: rgb(187 247 208 / 0.25);
}

.border-y-green-200\/30 {
  border-top-color: rgb(187 247 208 / 0.3);
  border-bottom-color: rgb(187 247 208 / 0.3);
}

.border-y-green-200\/35 {
  border-top-color: rgb(187 247 208 / 0.35);
  border-bottom-color: rgb(187 247 208 / 0.35);
}

.border-y-green-200\/40 {
  border-top-color: rgb(187 247 208 / 0.4);
  border-bottom-color: rgb(187 247 208 / 0.4);
}

.border-y-green-200\/45 {
  border-top-color: rgb(187 247 208 / 0.45);
  border-bottom-color: rgb(187 247 208 / 0.45);
}

.border-y-green-200\/5 {
  border-top-color: rgb(187 247 208 / 0.05);
  border-bottom-color: rgb(187 247 208 / 0.05);
}

.border-y-green-200\/50 {
  border-top-color: rgb(187 247 208 / 0.5);
  border-bottom-color: rgb(187 247 208 / 0.5);
}

.border-y-green-200\/55 {
  border-top-color: rgb(187 247 208 / 0.55);
  border-bottom-color: rgb(187 247 208 / 0.55);
}

.border-y-green-200\/60 {
  border-top-color: rgb(187 247 208 / 0.6);
  border-bottom-color: rgb(187 247 208 / 0.6);
}

.border-y-green-200\/65 {
  border-top-color: rgb(187 247 208 / 0.65);
  border-bottom-color: rgb(187 247 208 / 0.65);
}

.border-y-green-200\/70 {
  border-top-color: rgb(187 247 208 / 0.7);
  border-bottom-color: rgb(187 247 208 / 0.7);
}

.border-y-green-200\/75 {
  border-top-color: rgb(187 247 208 / 0.75);
  border-bottom-color: rgb(187 247 208 / 0.75);
}

.border-y-green-200\/80 {
  border-top-color: rgb(187 247 208 / 0.8);
  border-bottom-color: rgb(187 247 208 / 0.8);
}

.border-y-green-200\/85 {
  border-top-color: rgb(187 247 208 / 0.85);
  border-bottom-color: rgb(187 247 208 / 0.85);
}

.border-y-green-200\/90 {
  border-top-color: rgb(187 247 208 / 0.9);
  border-bottom-color: rgb(187 247 208 / 0.9);
}

.border-y-green-200\/95 {
  border-top-color: rgb(187 247 208 / 0.95);
  border-bottom-color: rgb(187 247 208 / 0.95);
}

.border-y-green-300 {
  --tw-border-opacity: 1;
  border-top-color: rgb(134 239 172 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(134 239 172 / var(--tw-border-opacity, 1));
}

.border-y-green-300\/0 {
  border-top-color: rgb(134 239 172 / 0);
  border-bottom-color: rgb(134 239 172 / 0);
}

.border-y-green-300\/10 {
  border-top-color: rgb(134 239 172 / 0.1);
  border-bottom-color: rgb(134 239 172 / 0.1);
}

.border-y-green-300\/100 {
  border-top-color: rgb(134 239 172 / 1);
  border-bottom-color: rgb(134 239 172 / 1);
}

.border-y-green-300\/15 {
  border-top-color: rgb(134 239 172 / 0.15);
  border-bottom-color: rgb(134 239 172 / 0.15);
}

.border-y-green-300\/20 {
  border-top-color: rgb(134 239 172 / 0.2);
  border-bottom-color: rgb(134 239 172 / 0.2);
}

.border-y-green-300\/25 {
  border-top-color: rgb(134 239 172 / 0.25);
  border-bottom-color: rgb(134 239 172 / 0.25);
}

.border-y-green-300\/30 {
  border-top-color: rgb(134 239 172 / 0.3);
  border-bottom-color: rgb(134 239 172 / 0.3);
}

.border-y-green-300\/35 {
  border-top-color: rgb(134 239 172 / 0.35);
  border-bottom-color: rgb(134 239 172 / 0.35);
}

.border-y-green-300\/40 {
  border-top-color: rgb(134 239 172 / 0.4);
  border-bottom-color: rgb(134 239 172 / 0.4);
}

.border-y-green-300\/45 {
  border-top-color: rgb(134 239 172 / 0.45);
  border-bottom-color: rgb(134 239 172 / 0.45);
}

.border-y-green-300\/5 {
  border-top-color: rgb(134 239 172 / 0.05);
  border-bottom-color: rgb(134 239 172 / 0.05);
}

.border-y-green-300\/50 {
  border-top-color: rgb(134 239 172 / 0.5);
  border-bottom-color: rgb(134 239 172 / 0.5);
}

.border-y-green-300\/55 {
  border-top-color: rgb(134 239 172 / 0.55);
  border-bottom-color: rgb(134 239 172 / 0.55);
}

.border-y-green-300\/60 {
  border-top-color: rgb(134 239 172 / 0.6);
  border-bottom-color: rgb(134 239 172 / 0.6);
}

.border-y-green-300\/65 {
  border-top-color: rgb(134 239 172 / 0.65);
  border-bottom-color: rgb(134 239 172 / 0.65);
}

.border-y-green-300\/70 {
  border-top-color: rgb(134 239 172 / 0.7);
  border-bottom-color: rgb(134 239 172 / 0.7);
}

.border-y-green-300\/75 {
  border-top-color: rgb(134 239 172 / 0.75);
  border-bottom-color: rgb(134 239 172 / 0.75);
}

.border-y-green-300\/80 {
  border-top-color: rgb(134 239 172 / 0.8);
  border-bottom-color: rgb(134 239 172 / 0.8);
}

.border-y-green-300\/85 {
  border-top-color: rgb(134 239 172 / 0.85);
  border-bottom-color: rgb(134 239 172 / 0.85);
}

.border-y-green-300\/90 {
  border-top-color: rgb(134 239 172 / 0.9);
  border-bottom-color: rgb(134 239 172 / 0.9);
}

.border-y-green-300\/95 {
  border-top-color: rgb(134 239 172 / 0.95);
  border-bottom-color: rgb(134 239 172 / 0.95);
}

.border-y-green-400 {
  --tw-border-opacity: 1;
  border-top-color: rgb(74 222 128 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(74 222 128 / var(--tw-border-opacity, 1));
}

.border-y-green-400\/0 {
  border-top-color: rgb(74 222 128 / 0);
  border-bottom-color: rgb(74 222 128 / 0);
}

.border-y-green-400\/10 {
  border-top-color: rgb(74 222 128 / 0.1);
  border-bottom-color: rgb(74 222 128 / 0.1);
}

.border-y-green-400\/100 {
  border-top-color: rgb(74 222 128 / 1);
  border-bottom-color: rgb(74 222 128 / 1);
}

.border-y-green-400\/15 {
  border-top-color: rgb(74 222 128 / 0.15);
  border-bottom-color: rgb(74 222 128 / 0.15);
}

.border-y-green-400\/20 {
  border-top-color: rgb(74 222 128 / 0.2);
  border-bottom-color: rgb(74 222 128 / 0.2);
}

.border-y-green-400\/25 {
  border-top-color: rgb(74 222 128 / 0.25);
  border-bottom-color: rgb(74 222 128 / 0.25);
}

.border-y-green-400\/30 {
  border-top-color: rgb(74 222 128 / 0.3);
  border-bottom-color: rgb(74 222 128 / 0.3);
}

.border-y-green-400\/35 {
  border-top-color: rgb(74 222 128 / 0.35);
  border-bottom-color: rgb(74 222 128 / 0.35);
}

.border-y-green-400\/40 {
  border-top-color: rgb(74 222 128 / 0.4);
  border-bottom-color: rgb(74 222 128 / 0.4);
}

.border-y-green-400\/45 {
  border-top-color: rgb(74 222 128 / 0.45);
  border-bottom-color: rgb(74 222 128 / 0.45);
}

.border-y-green-400\/5 {
  border-top-color: rgb(74 222 128 / 0.05);
  border-bottom-color: rgb(74 222 128 / 0.05);
}

.border-y-green-400\/50 {
  border-top-color: rgb(74 222 128 / 0.5);
  border-bottom-color: rgb(74 222 128 / 0.5);
}

.border-y-green-400\/55 {
  border-top-color: rgb(74 222 128 / 0.55);
  border-bottom-color: rgb(74 222 128 / 0.55);
}

.border-y-green-400\/60 {
  border-top-color: rgb(74 222 128 / 0.6);
  border-bottom-color: rgb(74 222 128 / 0.6);
}

.border-y-green-400\/65 {
  border-top-color: rgb(74 222 128 / 0.65);
  border-bottom-color: rgb(74 222 128 / 0.65);
}

.border-y-green-400\/70 {
  border-top-color: rgb(74 222 128 / 0.7);
  border-bottom-color: rgb(74 222 128 / 0.7);
}

.border-y-green-400\/75 {
  border-top-color: rgb(74 222 128 / 0.75);
  border-bottom-color: rgb(74 222 128 / 0.75);
}

.border-y-green-400\/80 {
  border-top-color: rgb(74 222 128 / 0.8);
  border-bottom-color: rgb(74 222 128 / 0.8);
}

.border-y-green-400\/85 {
  border-top-color: rgb(74 222 128 / 0.85);
  border-bottom-color: rgb(74 222 128 / 0.85);
}

.border-y-green-400\/90 {
  border-top-color: rgb(74 222 128 / 0.9);
  border-bottom-color: rgb(74 222 128 / 0.9);
}

.border-y-green-400\/95 {
  border-top-color: rgb(74 222 128 / 0.95);
  border-bottom-color: rgb(74 222 128 / 0.95);
}

.border-y-green-50 {
  --tw-border-opacity: 1;
  border-top-color: rgb(240 253 244 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(240 253 244 / var(--tw-border-opacity, 1));
}

.border-y-green-50\/0 {
  border-top-color: rgb(240 253 244 / 0);
  border-bottom-color: rgb(240 253 244 / 0);
}

.border-y-green-50\/10 {
  border-top-color: rgb(240 253 244 / 0.1);
  border-bottom-color: rgb(240 253 244 / 0.1);
}

.border-y-green-50\/100 {
  border-top-color: rgb(240 253 244 / 1);
  border-bottom-color: rgb(240 253 244 / 1);
}

.border-y-green-50\/15 {
  border-top-color: rgb(240 253 244 / 0.15);
  border-bottom-color: rgb(240 253 244 / 0.15);
}

.border-y-green-50\/20 {
  border-top-color: rgb(240 253 244 / 0.2);
  border-bottom-color: rgb(240 253 244 / 0.2);
}

.border-y-green-50\/25 {
  border-top-color: rgb(240 253 244 / 0.25);
  border-bottom-color: rgb(240 253 244 / 0.25);
}

.border-y-green-50\/30 {
  border-top-color: rgb(240 253 244 / 0.3);
  border-bottom-color: rgb(240 253 244 / 0.3);
}

.border-y-green-50\/35 {
  border-top-color: rgb(240 253 244 / 0.35);
  border-bottom-color: rgb(240 253 244 / 0.35);
}

.border-y-green-50\/40 {
  border-top-color: rgb(240 253 244 / 0.4);
  border-bottom-color: rgb(240 253 244 / 0.4);
}

.border-y-green-50\/45 {
  border-top-color: rgb(240 253 244 / 0.45);
  border-bottom-color: rgb(240 253 244 / 0.45);
}

.border-y-green-50\/5 {
  border-top-color: rgb(240 253 244 / 0.05);
  border-bottom-color: rgb(240 253 244 / 0.05);
}

.border-y-green-50\/50 {
  border-top-color: rgb(240 253 244 / 0.5);
  border-bottom-color: rgb(240 253 244 / 0.5);
}

.border-y-green-50\/55 {
  border-top-color: rgb(240 253 244 / 0.55);
  border-bottom-color: rgb(240 253 244 / 0.55);
}

.border-y-green-50\/60 {
  border-top-color: rgb(240 253 244 / 0.6);
  border-bottom-color: rgb(240 253 244 / 0.6);
}

.border-y-green-50\/65 {
  border-top-color: rgb(240 253 244 / 0.65);
  border-bottom-color: rgb(240 253 244 / 0.65);
}

.border-y-green-50\/70 {
  border-top-color: rgb(240 253 244 / 0.7);
  border-bottom-color: rgb(240 253 244 / 0.7);
}

.border-y-green-50\/75 {
  border-top-color: rgb(240 253 244 / 0.75);
  border-bottom-color: rgb(240 253 244 / 0.75);
}

.border-y-green-50\/80 {
  border-top-color: rgb(240 253 244 / 0.8);
  border-bottom-color: rgb(240 253 244 / 0.8);
}

.border-y-green-50\/85 {
  border-top-color: rgb(240 253 244 / 0.85);
  border-bottom-color: rgb(240 253 244 / 0.85);
}

.border-y-green-50\/90 {
  border-top-color: rgb(240 253 244 / 0.9);
  border-bottom-color: rgb(240 253 244 / 0.9);
}

.border-y-green-50\/95 {
  border-top-color: rgb(240 253 244 / 0.95);
  border-bottom-color: rgb(240 253 244 / 0.95);
}

.border-y-green-500 {
  --tw-border-opacity: 1;
  border-top-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
}

.border-y-green-500\/0 {
  border-top-color: rgb(34 197 94 / 0);
  border-bottom-color: rgb(34 197 94 / 0);
}

.border-y-green-500\/10 {
  border-top-color: rgb(34 197 94 / 0.1);
  border-bottom-color: rgb(34 197 94 / 0.1);
}

.border-y-green-500\/100 {
  border-top-color: rgb(34 197 94 / 1);
  border-bottom-color: rgb(34 197 94 / 1);
}

.border-y-green-500\/15 {
  border-top-color: rgb(34 197 94 / 0.15);
  border-bottom-color: rgb(34 197 94 / 0.15);
}

.border-y-green-500\/20 {
  border-top-color: rgb(34 197 94 / 0.2);
  border-bottom-color: rgb(34 197 94 / 0.2);
}

.border-y-green-500\/25 {
  border-top-color: rgb(34 197 94 / 0.25);
  border-bottom-color: rgb(34 197 94 / 0.25);
}

.border-y-green-500\/30 {
  border-top-color: rgb(34 197 94 / 0.3);
  border-bottom-color: rgb(34 197 94 / 0.3);
}

.border-y-green-500\/35 {
  border-top-color: rgb(34 197 94 / 0.35);
  border-bottom-color: rgb(34 197 94 / 0.35);
}

.border-y-green-500\/40 {
  border-top-color: rgb(34 197 94 / 0.4);
  border-bottom-color: rgb(34 197 94 / 0.4);
}

.border-y-green-500\/45 {
  border-top-color: rgb(34 197 94 / 0.45);
  border-bottom-color: rgb(34 197 94 / 0.45);
}

.border-y-green-500\/5 {
  border-top-color: rgb(34 197 94 / 0.05);
  border-bottom-color: rgb(34 197 94 / 0.05);
}

.border-y-green-500\/50 {
  border-top-color: rgb(34 197 94 / 0.5);
  border-bottom-color: rgb(34 197 94 / 0.5);
}

.border-y-green-500\/55 {
  border-top-color: rgb(34 197 94 / 0.55);
  border-bottom-color: rgb(34 197 94 / 0.55);
}

.border-y-green-500\/60 {
  border-top-color: rgb(34 197 94 / 0.6);
  border-bottom-color: rgb(34 197 94 / 0.6);
}

.border-y-green-500\/65 {
  border-top-color: rgb(34 197 94 / 0.65);
  border-bottom-color: rgb(34 197 94 / 0.65);
}

.border-y-green-500\/70 {
  border-top-color: rgb(34 197 94 / 0.7);
  border-bottom-color: rgb(34 197 94 / 0.7);
}

.border-y-green-500\/75 {
  border-top-color: rgb(34 197 94 / 0.75);
  border-bottom-color: rgb(34 197 94 / 0.75);
}

.border-y-green-500\/80 {
  border-top-color: rgb(34 197 94 / 0.8);
  border-bottom-color: rgb(34 197 94 / 0.8);
}

.border-y-green-500\/85 {
  border-top-color: rgb(34 197 94 / 0.85);
  border-bottom-color: rgb(34 197 94 / 0.85);
}

.border-y-green-500\/90 {
  border-top-color: rgb(34 197 94 / 0.9);
  border-bottom-color: rgb(34 197 94 / 0.9);
}

.border-y-green-500\/95 {
  border-top-color: rgb(34 197 94 / 0.95);
  border-bottom-color: rgb(34 197 94 / 0.95);
}

.border-y-green-600 {
  --tw-border-opacity: 1;
  border-top-color: rgb(22 163 74 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(22 163 74 / var(--tw-border-opacity, 1));
}

.border-y-green-600\/0 {
  border-top-color: rgb(22 163 74 / 0);
  border-bottom-color: rgb(22 163 74 / 0);
}

.border-y-green-600\/10 {
  border-top-color: rgb(22 163 74 / 0.1);
  border-bottom-color: rgb(22 163 74 / 0.1);
}

.border-y-green-600\/100 {
  border-top-color: rgb(22 163 74 / 1);
  border-bottom-color: rgb(22 163 74 / 1);
}

.border-y-green-600\/15 {
  border-top-color: rgb(22 163 74 / 0.15);
  border-bottom-color: rgb(22 163 74 / 0.15);
}

.border-y-green-600\/20 {
  border-top-color: rgb(22 163 74 / 0.2);
  border-bottom-color: rgb(22 163 74 / 0.2);
}

.border-y-green-600\/25 {
  border-top-color: rgb(22 163 74 / 0.25);
  border-bottom-color: rgb(22 163 74 / 0.25);
}

.border-y-green-600\/30 {
  border-top-color: rgb(22 163 74 / 0.3);
  border-bottom-color: rgb(22 163 74 / 0.3);
}

.border-y-green-600\/35 {
  border-top-color: rgb(22 163 74 / 0.35);
  border-bottom-color: rgb(22 163 74 / 0.35);
}

.border-y-green-600\/40 {
  border-top-color: rgb(22 163 74 / 0.4);
  border-bottom-color: rgb(22 163 74 / 0.4);
}

.border-y-green-600\/45 {
  border-top-color: rgb(22 163 74 / 0.45);
  border-bottom-color: rgb(22 163 74 / 0.45);
}

.border-y-green-600\/5 {
  border-top-color: rgb(22 163 74 / 0.05);
  border-bottom-color: rgb(22 163 74 / 0.05);
}

.border-y-green-600\/50 {
  border-top-color: rgb(22 163 74 / 0.5);
  border-bottom-color: rgb(22 163 74 / 0.5);
}

.border-y-green-600\/55 {
  border-top-color: rgb(22 163 74 / 0.55);
  border-bottom-color: rgb(22 163 74 / 0.55);
}

.border-y-green-600\/60 {
  border-top-color: rgb(22 163 74 / 0.6);
  border-bottom-color: rgb(22 163 74 / 0.6);
}

.border-y-green-600\/65 {
  border-top-color: rgb(22 163 74 / 0.65);
  border-bottom-color: rgb(22 163 74 / 0.65);
}

.border-y-green-600\/70 {
  border-top-color: rgb(22 163 74 / 0.7);
  border-bottom-color: rgb(22 163 74 / 0.7);
}

.border-y-green-600\/75 {
  border-top-color: rgb(22 163 74 / 0.75);
  border-bottom-color: rgb(22 163 74 / 0.75);
}

.border-y-green-600\/80 {
  border-top-color: rgb(22 163 74 / 0.8);
  border-bottom-color: rgb(22 163 74 / 0.8);
}

.border-y-green-600\/85 {
  border-top-color: rgb(22 163 74 / 0.85);
  border-bottom-color: rgb(22 163 74 / 0.85);
}

.border-y-green-600\/90 {
  border-top-color: rgb(22 163 74 / 0.9);
  border-bottom-color: rgb(22 163 74 / 0.9);
}

.border-y-green-600\/95 {
  border-top-color: rgb(22 163 74 / 0.95);
  border-bottom-color: rgb(22 163 74 / 0.95);
}

.border-y-green-700 {
  --tw-border-opacity: 1;
  border-top-color: rgb(21 128 61 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(21 128 61 / var(--tw-border-opacity, 1));
}

.border-y-green-700\/0 {
  border-top-color: rgb(21 128 61 / 0);
  border-bottom-color: rgb(21 128 61 / 0);
}

.border-y-green-700\/10 {
  border-top-color: rgb(21 128 61 / 0.1);
  border-bottom-color: rgb(21 128 61 / 0.1);
}

.border-y-green-700\/100 {
  border-top-color: rgb(21 128 61 / 1);
  border-bottom-color: rgb(21 128 61 / 1);
}

.border-y-green-700\/15 {
  border-top-color: rgb(21 128 61 / 0.15);
  border-bottom-color: rgb(21 128 61 / 0.15);
}

.border-y-green-700\/20 {
  border-top-color: rgb(21 128 61 / 0.2);
  border-bottom-color: rgb(21 128 61 / 0.2);
}

.border-y-green-700\/25 {
  border-top-color: rgb(21 128 61 / 0.25);
  border-bottom-color: rgb(21 128 61 / 0.25);
}

.border-y-green-700\/30 {
  border-top-color: rgb(21 128 61 / 0.3);
  border-bottom-color: rgb(21 128 61 / 0.3);
}

.border-y-green-700\/35 {
  border-top-color: rgb(21 128 61 / 0.35);
  border-bottom-color: rgb(21 128 61 / 0.35);
}

.border-y-green-700\/40 {
  border-top-color: rgb(21 128 61 / 0.4);
  border-bottom-color: rgb(21 128 61 / 0.4);
}

.border-y-green-700\/45 {
  border-top-color: rgb(21 128 61 / 0.45);
  border-bottom-color: rgb(21 128 61 / 0.45);
}

.border-y-green-700\/5 {
  border-top-color: rgb(21 128 61 / 0.05);
  border-bottom-color: rgb(21 128 61 / 0.05);
}

.border-y-green-700\/50 {
  border-top-color: rgb(21 128 61 / 0.5);
  border-bottom-color: rgb(21 128 61 / 0.5);
}

.border-y-green-700\/55 {
  border-top-color: rgb(21 128 61 / 0.55);
  border-bottom-color: rgb(21 128 61 / 0.55);
}

.border-y-green-700\/60 {
  border-top-color: rgb(21 128 61 / 0.6);
  border-bottom-color: rgb(21 128 61 / 0.6);
}

.border-y-green-700\/65 {
  border-top-color: rgb(21 128 61 / 0.65);
  border-bottom-color: rgb(21 128 61 / 0.65);
}

.border-y-green-700\/70 {
  border-top-color: rgb(21 128 61 / 0.7);
  border-bottom-color: rgb(21 128 61 / 0.7);
}

.border-y-green-700\/75 {
  border-top-color: rgb(21 128 61 / 0.75);
  border-bottom-color: rgb(21 128 61 / 0.75);
}

.border-y-green-700\/80 {
  border-top-color: rgb(21 128 61 / 0.8);
  border-bottom-color: rgb(21 128 61 / 0.8);
}

.border-y-green-700\/85 {
  border-top-color: rgb(21 128 61 / 0.85);
  border-bottom-color: rgb(21 128 61 / 0.85);
}

.border-y-green-700\/90 {
  border-top-color: rgb(21 128 61 / 0.9);
  border-bottom-color: rgb(21 128 61 / 0.9);
}

.border-y-green-700\/95 {
  border-top-color: rgb(21 128 61 / 0.95);
  border-bottom-color: rgb(21 128 61 / 0.95);
}

.border-y-green-800 {
  --tw-border-opacity: 1;
  border-top-color: rgb(22 101 52 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(22 101 52 / var(--tw-border-opacity, 1));
}

.border-y-green-800\/0 {
  border-top-color: rgb(22 101 52 / 0);
  border-bottom-color: rgb(22 101 52 / 0);
}

.border-y-green-800\/10 {
  border-top-color: rgb(22 101 52 / 0.1);
  border-bottom-color: rgb(22 101 52 / 0.1);
}

.border-y-green-800\/100 {
  border-top-color: rgb(22 101 52 / 1);
  border-bottom-color: rgb(22 101 52 / 1);
}

.border-y-green-800\/15 {
  border-top-color: rgb(22 101 52 / 0.15);
  border-bottom-color: rgb(22 101 52 / 0.15);
}

.border-y-green-800\/20 {
  border-top-color: rgb(22 101 52 / 0.2);
  border-bottom-color: rgb(22 101 52 / 0.2);
}

.border-y-green-800\/25 {
  border-top-color: rgb(22 101 52 / 0.25);
  border-bottom-color: rgb(22 101 52 / 0.25);
}

.border-y-green-800\/30 {
  border-top-color: rgb(22 101 52 / 0.3);
  border-bottom-color: rgb(22 101 52 / 0.3);
}

.border-y-green-800\/35 {
  border-top-color: rgb(22 101 52 / 0.35);
  border-bottom-color: rgb(22 101 52 / 0.35);
}

.border-y-green-800\/40 {
  border-top-color: rgb(22 101 52 / 0.4);
  border-bottom-color: rgb(22 101 52 / 0.4);
}

.border-y-green-800\/45 {
  border-top-color: rgb(22 101 52 / 0.45);
  border-bottom-color: rgb(22 101 52 / 0.45);
}

.border-y-green-800\/5 {
  border-top-color: rgb(22 101 52 / 0.05);
  border-bottom-color: rgb(22 101 52 / 0.05);
}

.border-y-green-800\/50 {
  border-top-color: rgb(22 101 52 / 0.5);
  border-bottom-color: rgb(22 101 52 / 0.5);
}

.border-y-green-800\/55 {
  border-top-color: rgb(22 101 52 / 0.55);
  border-bottom-color: rgb(22 101 52 / 0.55);
}

.border-y-green-800\/60 {
  border-top-color: rgb(22 101 52 / 0.6);
  border-bottom-color: rgb(22 101 52 / 0.6);
}

.border-y-green-800\/65 {
  border-top-color: rgb(22 101 52 / 0.65);
  border-bottom-color: rgb(22 101 52 / 0.65);
}

.border-y-green-800\/70 {
  border-top-color: rgb(22 101 52 / 0.7);
  border-bottom-color: rgb(22 101 52 / 0.7);
}

.border-y-green-800\/75 {
  border-top-color: rgb(22 101 52 / 0.75);
  border-bottom-color: rgb(22 101 52 / 0.75);
}

.border-y-green-800\/80 {
  border-top-color: rgb(22 101 52 / 0.8);
  border-bottom-color: rgb(22 101 52 / 0.8);
}

.border-y-green-800\/85 {
  border-top-color: rgb(22 101 52 / 0.85);
  border-bottom-color: rgb(22 101 52 / 0.85);
}

.border-y-green-800\/90 {
  border-top-color: rgb(22 101 52 / 0.9);
  border-bottom-color: rgb(22 101 52 / 0.9);
}

.border-y-green-800\/95 {
  border-top-color: rgb(22 101 52 / 0.95);
  border-bottom-color: rgb(22 101 52 / 0.95);
}

.border-y-green-900 {
  --tw-border-opacity: 1;
  border-top-color: rgb(20 83 45 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(20 83 45 / var(--tw-border-opacity, 1));
}

.border-y-green-900\/0 {
  border-top-color: rgb(20 83 45 / 0);
  border-bottom-color: rgb(20 83 45 / 0);
}

.border-y-green-900\/10 {
  border-top-color: rgb(20 83 45 / 0.1);
  border-bottom-color: rgb(20 83 45 / 0.1);
}

.border-y-green-900\/100 {
  border-top-color: rgb(20 83 45 / 1);
  border-bottom-color: rgb(20 83 45 / 1);
}

.border-y-green-900\/15 {
  border-top-color: rgb(20 83 45 / 0.15);
  border-bottom-color: rgb(20 83 45 / 0.15);
}

.border-y-green-900\/20 {
  border-top-color: rgb(20 83 45 / 0.2);
  border-bottom-color: rgb(20 83 45 / 0.2);
}

.border-y-green-900\/25 {
  border-top-color: rgb(20 83 45 / 0.25);
  border-bottom-color: rgb(20 83 45 / 0.25);
}

.border-y-green-900\/30 {
  border-top-color: rgb(20 83 45 / 0.3);
  border-bottom-color: rgb(20 83 45 / 0.3);
}

.border-y-green-900\/35 {
  border-top-color: rgb(20 83 45 / 0.35);
  border-bottom-color: rgb(20 83 45 / 0.35);
}

.border-y-green-900\/40 {
  border-top-color: rgb(20 83 45 / 0.4);
  border-bottom-color: rgb(20 83 45 / 0.4);
}

.border-y-green-900\/45 {
  border-top-color: rgb(20 83 45 / 0.45);
  border-bottom-color: rgb(20 83 45 / 0.45);
}

.border-y-green-900\/5 {
  border-top-color: rgb(20 83 45 / 0.05);
  border-bottom-color: rgb(20 83 45 / 0.05);
}

.border-y-green-900\/50 {
  border-top-color: rgb(20 83 45 / 0.5);
  border-bottom-color: rgb(20 83 45 / 0.5);
}

.border-y-green-900\/55 {
  border-top-color: rgb(20 83 45 / 0.55);
  border-bottom-color: rgb(20 83 45 / 0.55);
}

.border-y-green-900\/60 {
  border-top-color: rgb(20 83 45 / 0.6);
  border-bottom-color: rgb(20 83 45 / 0.6);
}

.border-y-green-900\/65 {
  border-top-color: rgb(20 83 45 / 0.65);
  border-bottom-color: rgb(20 83 45 / 0.65);
}

.border-y-green-900\/70 {
  border-top-color: rgb(20 83 45 / 0.7);
  border-bottom-color: rgb(20 83 45 / 0.7);
}

.border-y-green-900\/75 {
  border-top-color: rgb(20 83 45 / 0.75);
  border-bottom-color: rgb(20 83 45 / 0.75);
}

.border-y-green-900\/80 {
  border-top-color: rgb(20 83 45 / 0.8);
  border-bottom-color: rgb(20 83 45 / 0.8);
}

.border-y-green-900\/85 {
  border-top-color: rgb(20 83 45 / 0.85);
  border-bottom-color: rgb(20 83 45 / 0.85);
}

.border-y-green-900\/90 {
  border-top-color: rgb(20 83 45 / 0.9);
  border-bottom-color: rgb(20 83 45 / 0.9);
}

.border-y-green-900\/95 {
  border-top-color: rgb(20 83 45 / 0.95);
  border-bottom-color: rgb(20 83 45 / 0.95);
}

.border-y-green-950 {
  --tw-border-opacity: 1;
  border-top-color: rgb(5 46 22 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(5 46 22 / var(--tw-border-opacity, 1));
}

.border-y-green-950\/0 {
  border-top-color: rgb(5 46 22 / 0);
  border-bottom-color: rgb(5 46 22 / 0);
}

.border-y-green-950\/10 {
  border-top-color: rgb(5 46 22 / 0.1);
  border-bottom-color: rgb(5 46 22 / 0.1);
}

.border-y-green-950\/100 {
  border-top-color: rgb(5 46 22 / 1);
  border-bottom-color: rgb(5 46 22 / 1);
}

.border-y-green-950\/15 {
  border-top-color: rgb(5 46 22 / 0.15);
  border-bottom-color: rgb(5 46 22 / 0.15);
}

.border-y-green-950\/20 {
  border-top-color: rgb(5 46 22 / 0.2);
  border-bottom-color: rgb(5 46 22 / 0.2);
}

.border-y-green-950\/25 {
  border-top-color: rgb(5 46 22 / 0.25);
  border-bottom-color: rgb(5 46 22 / 0.25);
}

.border-y-green-950\/30 {
  border-top-color: rgb(5 46 22 / 0.3);
  border-bottom-color: rgb(5 46 22 / 0.3);
}

.border-y-green-950\/35 {
  border-top-color: rgb(5 46 22 / 0.35);
  border-bottom-color: rgb(5 46 22 / 0.35);
}

.border-y-green-950\/40 {
  border-top-color: rgb(5 46 22 / 0.4);
  border-bottom-color: rgb(5 46 22 / 0.4);
}

.border-y-green-950\/45 {
  border-top-color: rgb(5 46 22 / 0.45);
  border-bottom-color: rgb(5 46 22 / 0.45);
}

.border-y-green-950\/5 {
  border-top-color: rgb(5 46 22 / 0.05);
  border-bottom-color: rgb(5 46 22 / 0.05);
}

.border-y-green-950\/50 {
  border-top-color: rgb(5 46 22 / 0.5);
  border-bottom-color: rgb(5 46 22 / 0.5);
}

.border-y-green-950\/55 {
  border-top-color: rgb(5 46 22 / 0.55);
  border-bottom-color: rgb(5 46 22 / 0.55);
}

.border-y-green-950\/60 {
  border-top-color: rgb(5 46 22 / 0.6);
  border-bottom-color: rgb(5 46 22 / 0.6);
}

.border-y-green-950\/65 {
  border-top-color: rgb(5 46 22 / 0.65);
  border-bottom-color: rgb(5 46 22 / 0.65);
}

.border-y-green-950\/70 {
  border-top-color: rgb(5 46 22 / 0.7);
  border-bottom-color: rgb(5 46 22 / 0.7);
}

.border-y-green-950\/75 {
  border-top-color: rgb(5 46 22 / 0.75);
  border-bottom-color: rgb(5 46 22 / 0.75);
}

.border-y-green-950\/80 {
  border-top-color: rgb(5 46 22 / 0.8);
  border-bottom-color: rgb(5 46 22 / 0.8);
}

.border-y-green-950\/85 {
  border-top-color: rgb(5 46 22 / 0.85);
  border-bottom-color: rgb(5 46 22 / 0.85);
}

.border-y-green-950\/90 {
  border-top-color: rgb(5 46 22 / 0.9);
  border-bottom-color: rgb(5 46 22 / 0.9);
}

.border-y-green-950\/95 {
  border-top-color: rgb(5 46 22 / 0.95);
  border-bottom-color: rgb(5 46 22 / 0.95);
}

.border-y-red-100 {
  --tw-border-opacity: 1;
  border-top-color: rgb(254 226 226 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(254 226 226 / var(--tw-border-opacity, 1));
}

.border-y-red-100\/0 {
  border-top-color: rgb(254 226 226 / 0);
  border-bottom-color: rgb(254 226 226 / 0);
}

.border-y-red-100\/10 {
  border-top-color: rgb(254 226 226 / 0.1);
  border-bottom-color: rgb(254 226 226 / 0.1);
}

.border-y-red-100\/100 {
  border-top-color: rgb(254 226 226 / 1);
  border-bottom-color: rgb(254 226 226 / 1);
}

.border-y-red-100\/15 {
  border-top-color: rgb(254 226 226 / 0.15);
  border-bottom-color: rgb(254 226 226 / 0.15);
}

.border-y-red-100\/20 {
  border-top-color: rgb(254 226 226 / 0.2);
  border-bottom-color: rgb(254 226 226 / 0.2);
}

.border-y-red-100\/25 {
  border-top-color: rgb(254 226 226 / 0.25);
  border-bottom-color: rgb(254 226 226 / 0.25);
}

.border-y-red-100\/30 {
  border-top-color: rgb(254 226 226 / 0.3);
  border-bottom-color: rgb(254 226 226 / 0.3);
}

.border-y-red-100\/35 {
  border-top-color: rgb(254 226 226 / 0.35);
  border-bottom-color: rgb(254 226 226 / 0.35);
}

.border-y-red-100\/40 {
  border-top-color: rgb(254 226 226 / 0.4);
  border-bottom-color: rgb(254 226 226 / 0.4);
}

.border-y-red-100\/45 {
  border-top-color: rgb(254 226 226 / 0.45);
  border-bottom-color: rgb(254 226 226 / 0.45);
}

.border-y-red-100\/5 {
  border-top-color: rgb(254 226 226 / 0.05);
  border-bottom-color: rgb(254 226 226 / 0.05);
}

.border-y-red-100\/50 {
  border-top-color: rgb(254 226 226 / 0.5);
  border-bottom-color: rgb(254 226 226 / 0.5);
}

.border-y-red-100\/55 {
  border-top-color: rgb(254 226 226 / 0.55);
  border-bottom-color: rgb(254 226 226 / 0.55);
}

.border-y-red-100\/60 {
  border-top-color: rgb(254 226 226 / 0.6);
  border-bottom-color: rgb(254 226 226 / 0.6);
}

.border-y-red-100\/65 {
  border-top-color: rgb(254 226 226 / 0.65);
  border-bottom-color: rgb(254 226 226 / 0.65);
}

.border-y-red-100\/70 {
  border-top-color: rgb(254 226 226 / 0.7);
  border-bottom-color: rgb(254 226 226 / 0.7);
}

.border-y-red-100\/75 {
  border-top-color: rgb(254 226 226 / 0.75);
  border-bottom-color: rgb(254 226 226 / 0.75);
}

.border-y-red-100\/80 {
  border-top-color: rgb(254 226 226 / 0.8);
  border-bottom-color: rgb(254 226 226 / 0.8);
}

.border-y-red-100\/85 {
  border-top-color: rgb(254 226 226 / 0.85);
  border-bottom-color: rgb(254 226 226 / 0.85);
}

.border-y-red-100\/90 {
  border-top-color: rgb(254 226 226 / 0.9);
  border-bottom-color: rgb(254 226 226 / 0.9);
}

.border-y-red-100\/95 {
  border-top-color: rgb(254 226 226 / 0.95);
  border-bottom-color: rgb(254 226 226 / 0.95);
}

.border-y-red-200 {
  --tw-border-opacity: 1;
  border-top-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}

.border-y-red-200\/0 {
  border-top-color: rgb(254 202 202 / 0);
  border-bottom-color: rgb(254 202 202 / 0);
}

.border-y-red-200\/10 {
  border-top-color: rgb(254 202 202 / 0.1);
  border-bottom-color: rgb(254 202 202 / 0.1);
}

.border-y-red-200\/100 {
  border-top-color: rgb(254 202 202 / 1);
  border-bottom-color: rgb(254 202 202 / 1);
}

.border-y-red-200\/15 {
  border-top-color: rgb(254 202 202 / 0.15);
  border-bottom-color: rgb(254 202 202 / 0.15);
}

.border-y-red-200\/20 {
  border-top-color: rgb(254 202 202 / 0.2);
  border-bottom-color: rgb(254 202 202 / 0.2);
}

.border-y-red-200\/25 {
  border-top-color: rgb(254 202 202 / 0.25);
  border-bottom-color: rgb(254 202 202 / 0.25);
}

.border-y-red-200\/30 {
  border-top-color: rgb(254 202 202 / 0.3);
  border-bottom-color: rgb(254 202 202 / 0.3);
}

.border-y-red-200\/35 {
  border-top-color: rgb(254 202 202 / 0.35);
  border-bottom-color: rgb(254 202 202 / 0.35);
}

.border-y-red-200\/40 {
  border-top-color: rgb(254 202 202 / 0.4);
  border-bottom-color: rgb(254 202 202 / 0.4);
}

.border-y-red-200\/45 {
  border-top-color: rgb(254 202 202 / 0.45);
  border-bottom-color: rgb(254 202 202 / 0.45);
}

.border-y-red-200\/5 {
  border-top-color: rgb(254 202 202 / 0.05);
  border-bottom-color: rgb(254 202 202 / 0.05);
}

.border-y-red-200\/50 {
  border-top-color: rgb(254 202 202 / 0.5);
  border-bottom-color: rgb(254 202 202 / 0.5);
}

.border-y-red-200\/55 {
  border-top-color: rgb(254 202 202 / 0.55);
  border-bottom-color: rgb(254 202 202 / 0.55);
}

.border-y-red-200\/60 {
  border-top-color: rgb(254 202 202 / 0.6);
  border-bottom-color: rgb(254 202 202 / 0.6);
}

.border-y-red-200\/65 {
  border-top-color: rgb(254 202 202 / 0.65);
  border-bottom-color: rgb(254 202 202 / 0.65);
}

.border-y-red-200\/70 {
  border-top-color: rgb(254 202 202 / 0.7);
  border-bottom-color: rgb(254 202 202 / 0.7);
}

.border-y-red-200\/75 {
  border-top-color: rgb(254 202 202 / 0.75);
  border-bottom-color: rgb(254 202 202 / 0.75);
}

.border-y-red-200\/80 {
  border-top-color: rgb(254 202 202 / 0.8);
  border-bottom-color: rgb(254 202 202 / 0.8);
}

.border-y-red-200\/85 {
  border-top-color: rgb(254 202 202 / 0.85);
  border-bottom-color: rgb(254 202 202 / 0.85);
}

.border-y-red-200\/90 {
  border-top-color: rgb(254 202 202 / 0.9);
  border-bottom-color: rgb(254 202 202 / 0.9);
}

.border-y-red-200\/95 {
  border-top-color: rgb(254 202 202 / 0.95);
  border-bottom-color: rgb(254 202 202 / 0.95);
}

.border-y-red-300 {
  --tw-border-opacity: 1;
  border-top-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
}

.border-y-red-300\/0 {
  border-top-color: rgb(252 165 165 / 0);
  border-bottom-color: rgb(252 165 165 / 0);
}

.border-y-red-300\/10 {
  border-top-color: rgb(252 165 165 / 0.1);
  border-bottom-color: rgb(252 165 165 / 0.1);
}

.border-y-red-300\/100 {
  border-top-color: rgb(252 165 165 / 1);
  border-bottom-color: rgb(252 165 165 / 1);
}

.border-y-red-300\/15 {
  border-top-color: rgb(252 165 165 / 0.15);
  border-bottom-color: rgb(252 165 165 / 0.15);
}

.border-y-red-300\/20 {
  border-top-color: rgb(252 165 165 / 0.2);
  border-bottom-color: rgb(252 165 165 / 0.2);
}

.border-y-red-300\/25 {
  border-top-color: rgb(252 165 165 / 0.25);
  border-bottom-color: rgb(252 165 165 / 0.25);
}

.border-y-red-300\/30 {
  border-top-color: rgb(252 165 165 / 0.3);
  border-bottom-color: rgb(252 165 165 / 0.3);
}

.border-y-red-300\/35 {
  border-top-color: rgb(252 165 165 / 0.35);
  border-bottom-color: rgb(252 165 165 / 0.35);
}

.border-y-red-300\/40 {
  border-top-color: rgb(252 165 165 / 0.4);
  border-bottom-color: rgb(252 165 165 / 0.4);
}

.border-y-red-300\/45 {
  border-top-color: rgb(252 165 165 / 0.45);
  border-bottom-color: rgb(252 165 165 / 0.45);
}

.border-y-red-300\/5 {
  border-top-color: rgb(252 165 165 / 0.05);
  border-bottom-color: rgb(252 165 165 / 0.05);
}

.border-y-red-300\/50 {
  border-top-color: rgb(252 165 165 / 0.5);
  border-bottom-color: rgb(252 165 165 / 0.5);
}

.border-y-red-300\/55 {
  border-top-color: rgb(252 165 165 / 0.55);
  border-bottom-color: rgb(252 165 165 / 0.55);
}

.border-y-red-300\/60 {
  border-top-color: rgb(252 165 165 / 0.6);
  border-bottom-color: rgb(252 165 165 / 0.6);
}

.border-y-red-300\/65 {
  border-top-color: rgb(252 165 165 / 0.65);
  border-bottom-color: rgb(252 165 165 / 0.65);
}

.border-y-red-300\/70 {
  border-top-color: rgb(252 165 165 / 0.7);
  border-bottom-color: rgb(252 165 165 / 0.7);
}

.border-y-red-300\/75 {
  border-top-color: rgb(252 165 165 / 0.75);
  border-bottom-color: rgb(252 165 165 / 0.75);
}

.border-y-red-300\/80 {
  border-top-color: rgb(252 165 165 / 0.8);
  border-bottom-color: rgb(252 165 165 / 0.8);
}

.border-y-red-300\/85 {
  border-top-color: rgb(252 165 165 / 0.85);
  border-bottom-color: rgb(252 165 165 / 0.85);
}

.border-y-red-300\/90 {
  border-top-color: rgb(252 165 165 / 0.9);
  border-bottom-color: rgb(252 165 165 / 0.9);
}

.border-y-red-300\/95 {
  border-top-color: rgb(252 165 165 / 0.95);
  border-bottom-color: rgb(252 165 165 / 0.95);
}

.border-y-red-400 {
  --tw-border-opacity: 1;
  border-top-color: rgb(248 113 113 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(248 113 113 / var(--tw-border-opacity, 1));
}

.border-y-red-400\/0 {
  border-top-color: rgb(248 113 113 / 0);
  border-bottom-color: rgb(248 113 113 / 0);
}

.border-y-red-400\/10 {
  border-top-color: rgb(248 113 113 / 0.1);
  border-bottom-color: rgb(248 113 113 / 0.1);
}

.border-y-red-400\/100 {
  border-top-color: rgb(248 113 113 / 1);
  border-bottom-color: rgb(248 113 113 / 1);
}

.border-y-red-400\/15 {
  border-top-color: rgb(248 113 113 / 0.15);
  border-bottom-color: rgb(248 113 113 / 0.15);
}

.border-y-red-400\/20 {
  border-top-color: rgb(248 113 113 / 0.2);
  border-bottom-color: rgb(248 113 113 / 0.2);
}

.border-y-red-400\/25 {
  border-top-color: rgb(248 113 113 / 0.25);
  border-bottom-color: rgb(248 113 113 / 0.25);
}

.border-y-red-400\/30 {
  border-top-color: rgb(248 113 113 / 0.3);
  border-bottom-color: rgb(248 113 113 / 0.3);
}

.border-y-red-400\/35 {
  border-top-color: rgb(248 113 113 / 0.35);
  border-bottom-color: rgb(248 113 113 / 0.35);
}

.border-y-red-400\/40 {
  border-top-color: rgb(248 113 113 / 0.4);
  border-bottom-color: rgb(248 113 113 / 0.4);
}

.border-y-red-400\/45 {
  border-top-color: rgb(248 113 113 / 0.45);
  border-bottom-color: rgb(248 113 113 / 0.45);
}

.border-y-red-400\/5 {
  border-top-color: rgb(248 113 113 / 0.05);
  border-bottom-color: rgb(248 113 113 / 0.05);
}

.border-y-red-400\/50 {
  border-top-color: rgb(248 113 113 / 0.5);
  border-bottom-color: rgb(248 113 113 / 0.5);
}

.border-y-red-400\/55 {
  border-top-color: rgb(248 113 113 / 0.55);
  border-bottom-color: rgb(248 113 113 / 0.55);
}

.border-y-red-400\/60 {
  border-top-color: rgb(248 113 113 / 0.6);
  border-bottom-color: rgb(248 113 113 / 0.6);
}

.border-y-red-400\/65 {
  border-top-color: rgb(248 113 113 / 0.65);
  border-bottom-color: rgb(248 113 113 / 0.65);
}

.border-y-red-400\/70 {
  border-top-color: rgb(248 113 113 / 0.7);
  border-bottom-color: rgb(248 113 113 / 0.7);
}

.border-y-red-400\/75 {
  border-top-color: rgb(248 113 113 / 0.75);
  border-bottom-color: rgb(248 113 113 / 0.75);
}

.border-y-red-400\/80 {
  border-top-color: rgb(248 113 113 / 0.8);
  border-bottom-color: rgb(248 113 113 / 0.8);
}

.border-y-red-400\/85 {
  border-top-color: rgb(248 113 113 / 0.85);
  border-bottom-color: rgb(248 113 113 / 0.85);
}

.border-y-red-400\/90 {
  border-top-color: rgb(248 113 113 / 0.9);
  border-bottom-color: rgb(248 113 113 / 0.9);
}

.border-y-red-400\/95 {
  border-top-color: rgb(248 113 113 / 0.95);
  border-bottom-color: rgb(248 113 113 / 0.95);
}

.border-y-red-50 {
  --tw-border-opacity: 1;
  border-top-color: rgb(254 242 242 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(254 242 242 / var(--tw-border-opacity, 1));
}

.border-y-red-50\/0 {
  border-top-color: rgb(254 242 242 / 0);
  border-bottom-color: rgb(254 242 242 / 0);
}

.border-y-red-50\/10 {
  border-top-color: rgb(254 242 242 / 0.1);
  border-bottom-color: rgb(254 242 242 / 0.1);
}

.border-y-red-50\/100 {
  border-top-color: rgb(254 242 242 / 1);
  border-bottom-color: rgb(254 242 242 / 1);
}

.border-y-red-50\/15 {
  border-top-color: rgb(254 242 242 / 0.15);
  border-bottom-color: rgb(254 242 242 / 0.15);
}

.border-y-red-50\/20 {
  border-top-color: rgb(254 242 242 / 0.2);
  border-bottom-color: rgb(254 242 242 / 0.2);
}

.border-y-red-50\/25 {
  border-top-color: rgb(254 242 242 / 0.25);
  border-bottom-color: rgb(254 242 242 / 0.25);
}

.border-y-red-50\/30 {
  border-top-color: rgb(254 242 242 / 0.3);
  border-bottom-color: rgb(254 242 242 / 0.3);
}

.border-y-red-50\/35 {
  border-top-color: rgb(254 242 242 / 0.35);
  border-bottom-color: rgb(254 242 242 / 0.35);
}

.border-y-red-50\/40 {
  border-top-color: rgb(254 242 242 / 0.4);
  border-bottom-color: rgb(254 242 242 / 0.4);
}

.border-y-red-50\/45 {
  border-top-color: rgb(254 242 242 / 0.45);
  border-bottom-color: rgb(254 242 242 / 0.45);
}

.border-y-red-50\/5 {
  border-top-color: rgb(254 242 242 / 0.05);
  border-bottom-color: rgb(254 242 242 / 0.05);
}

.border-y-red-50\/50 {
  border-top-color: rgb(254 242 242 / 0.5);
  border-bottom-color: rgb(254 242 242 / 0.5);
}

.border-y-red-50\/55 {
  border-top-color: rgb(254 242 242 / 0.55);
  border-bottom-color: rgb(254 242 242 / 0.55);
}

.border-y-red-50\/60 {
  border-top-color: rgb(254 242 242 / 0.6);
  border-bottom-color: rgb(254 242 242 / 0.6);
}

.border-y-red-50\/65 {
  border-top-color: rgb(254 242 242 / 0.65);
  border-bottom-color: rgb(254 242 242 / 0.65);
}

.border-y-red-50\/70 {
  border-top-color: rgb(254 242 242 / 0.7);
  border-bottom-color: rgb(254 242 242 / 0.7);
}

.border-y-red-50\/75 {
  border-top-color: rgb(254 242 242 / 0.75);
  border-bottom-color: rgb(254 242 242 / 0.75);
}

.border-y-red-50\/80 {
  border-top-color: rgb(254 242 242 / 0.8);
  border-bottom-color: rgb(254 242 242 / 0.8);
}

.border-y-red-50\/85 {
  border-top-color: rgb(254 242 242 / 0.85);
  border-bottom-color: rgb(254 242 242 / 0.85);
}

.border-y-red-50\/90 {
  border-top-color: rgb(254 242 242 / 0.9);
  border-bottom-color: rgb(254 242 242 / 0.9);
}

.border-y-red-50\/95 {
  border-top-color: rgb(254 242 242 / 0.95);
  border-bottom-color: rgb(254 242 242 / 0.95);
}

.border-y-red-500 {
  --tw-border-opacity: 1;
  border-top-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}

.border-y-red-500\/0 {
  border-top-color: rgb(239 68 68 / 0);
  border-bottom-color: rgb(239 68 68 / 0);
}

.border-y-red-500\/10 {
  border-top-color: rgb(239 68 68 / 0.1);
  border-bottom-color: rgb(239 68 68 / 0.1);
}

.border-y-red-500\/100 {
  border-top-color: rgb(239 68 68 / 1);
  border-bottom-color: rgb(239 68 68 / 1);
}

.border-y-red-500\/15 {
  border-top-color: rgb(239 68 68 / 0.15);
  border-bottom-color: rgb(239 68 68 / 0.15);
}

.border-y-red-500\/20 {
  border-top-color: rgb(239 68 68 / 0.2);
  border-bottom-color: rgb(239 68 68 / 0.2);
}

.border-y-red-500\/25 {
  border-top-color: rgb(239 68 68 / 0.25);
  border-bottom-color: rgb(239 68 68 / 0.25);
}

.border-y-red-500\/30 {
  border-top-color: rgb(239 68 68 / 0.3);
  border-bottom-color: rgb(239 68 68 / 0.3);
}

.border-y-red-500\/35 {
  border-top-color: rgb(239 68 68 / 0.35);
  border-bottom-color: rgb(239 68 68 / 0.35);
}

.border-y-red-500\/40 {
  border-top-color: rgb(239 68 68 / 0.4);
  border-bottom-color: rgb(239 68 68 / 0.4);
}

.border-y-red-500\/45 {
  border-top-color: rgb(239 68 68 / 0.45);
  border-bottom-color: rgb(239 68 68 / 0.45);
}

.border-y-red-500\/5 {
  border-top-color: rgb(239 68 68 / 0.05);
  border-bottom-color: rgb(239 68 68 / 0.05);
}

.border-y-red-500\/50 {
  border-top-color: rgb(239 68 68 / 0.5);
  border-bottom-color: rgb(239 68 68 / 0.5);
}

.border-y-red-500\/55 {
  border-top-color: rgb(239 68 68 / 0.55);
  border-bottom-color: rgb(239 68 68 / 0.55);
}

.border-y-red-500\/60 {
  border-top-color: rgb(239 68 68 / 0.6);
  border-bottom-color: rgb(239 68 68 / 0.6);
}

.border-y-red-500\/65 {
  border-top-color: rgb(239 68 68 / 0.65);
  border-bottom-color: rgb(239 68 68 / 0.65);
}

.border-y-red-500\/70 {
  border-top-color: rgb(239 68 68 / 0.7);
  border-bottom-color: rgb(239 68 68 / 0.7);
}

.border-y-red-500\/75 {
  border-top-color: rgb(239 68 68 / 0.75);
  border-bottom-color: rgb(239 68 68 / 0.75);
}

.border-y-red-500\/80 {
  border-top-color: rgb(239 68 68 / 0.8);
  border-bottom-color: rgb(239 68 68 / 0.8);
}

.border-y-red-500\/85 {
  border-top-color: rgb(239 68 68 / 0.85);
  border-bottom-color: rgb(239 68 68 / 0.85);
}

.border-y-red-500\/90 {
  border-top-color: rgb(239 68 68 / 0.9);
  border-bottom-color: rgb(239 68 68 / 0.9);
}

.border-y-red-500\/95 {
  border-top-color: rgb(239 68 68 / 0.95);
  border-bottom-color: rgb(239 68 68 / 0.95);
}

.border-y-red-600 {
  --tw-border-opacity: 1;
  border-top-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
}

.border-y-red-600\/0 {
  border-top-color: rgb(220 38 38 / 0);
  border-bottom-color: rgb(220 38 38 / 0);
}

.border-y-red-600\/10 {
  border-top-color: rgb(220 38 38 / 0.1);
  border-bottom-color: rgb(220 38 38 / 0.1);
}

.border-y-red-600\/100 {
  border-top-color: rgb(220 38 38 / 1);
  border-bottom-color: rgb(220 38 38 / 1);
}

.border-y-red-600\/15 {
  border-top-color: rgb(220 38 38 / 0.15);
  border-bottom-color: rgb(220 38 38 / 0.15);
}

.border-y-red-600\/20 {
  border-top-color: rgb(220 38 38 / 0.2);
  border-bottom-color: rgb(220 38 38 / 0.2);
}

.border-y-red-600\/25 {
  border-top-color: rgb(220 38 38 / 0.25);
  border-bottom-color: rgb(220 38 38 / 0.25);
}

.border-y-red-600\/30 {
  border-top-color: rgb(220 38 38 / 0.3);
  border-bottom-color: rgb(220 38 38 / 0.3);
}

.border-y-red-600\/35 {
  border-top-color: rgb(220 38 38 / 0.35);
  border-bottom-color: rgb(220 38 38 / 0.35);
}

.border-y-red-600\/40 {
  border-top-color: rgb(220 38 38 / 0.4);
  border-bottom-color: rgb(220 38 38 / 0.4);
}

.border-y-red-600\/45 {
  border-top-color: rgb(220 38 38 / 0.45);
  border-bottom-color: rgb(220 38 38 / 0.45);
}

.border-y-red-600\/5 {
  border-top-color: rgb(220 38 38 / 0.05);
  border-bottom-color: rgb(220 38 38 / 0.05);
}

.border-y-red-600\/50 {
  border-top-color: rgb(220 38 38 / 0.5);
  border-bottom-color: rgb(220 38 38 / 0.5);
}

.border-y-red-600\/55 {
  border-top-color: rgb(220 38 38 / 0.55);
  border-bottom-color: rgb(220 38 38 / 0.55);
}

.border-y-red-600\/60 {
  border-top-color: rgb(220 38 38 / 0.6);
  border-bottom-color: rgb(220 38 38 / 0.6);
}

.border-y-red-600\/65 {
  border-top-color: rgb(220 38 38 / 0.65);
  border-bottom-color: rgb(220 38 38 / 0.65);
}

.border-y-red-600\/70 {
  border-top-color: rgb(220 38 38 / 0.7);
  border-bottom-color: rgb(220 38 38 / 0.7);
}

.border-y-red-600\/75 {
  border-top-color: rgb(220 38 38 / 0.75);
  border-bottom-color: rgb(220 38 38 / 0.75);
}

.border-y-red-600\/80 {
  border-top-color: rgb(220 38 38 / 0.8);
  border-bottom-color: rgb(220 38 38 / 0.8);
}

.border-y-red-600\/85 {
  border-top-color: rgb(220 38 38 / 0.85);
  border-bottom-color: rgb(220 38 38 / 0.85);
}

.border-y-red-600\/90 {
  border-top-color: rgb(220 38 38 / 0.9);
  border-bottom-color: rgb(220 38 38 / 0.9);
}

.border-y-red-600\/95 {
  border-top-color: rgb(220 38 38 / 0.95);
  border-bottom-color: rgb(220 38 38 / 0.95);
}

.border-y-red-700 {
  --tw-border-opacity: 1;
  border-top-color: rgb(185 28 28 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(185 28 28 / var(--tw-border-opacity, 1));
}

.border-y-red-700\/0 {
  border-top-color: rgb(185 28 28 / 0);
  border-bottom-color: rgb(185 28 28 / 0);
}

.border-y-red-700\/10 {
  border-top-color: rgb(185 28 28 / 0.1);
  border-bottom-color: rgb(185 28 28 / 0.1);
}

.border-y-red-700\/100 {
  border-top-color: rgb(185 28 28 / 1);
  border-bottom-color: rgb(185 28 28 / 1);
}

.border-y-red-700\/15 {
  border-top-color: rgb(185 28 28 / 0.15);
  border-bottom-color: rgb(185 28 28 / 0.15);
}

.border-y-red-700\/20 {
  border-top-color: rgb(185 28 28 / 0.2);
  border-bottom-color: rgb(185 28 28 / 0.2);
}

.border-y-red-700\/25 {
  border-top-color: rgb(185 28 28 / 0.25);
  border-bottom-color: rgb(185 28 28 / 0.25);
}

.border-y-red-700\/30 {
  border-top-color: rgb(185 28 28 / 0.3);
  border-bottom-color: rgb(185 28 28 / 0.3);
}

.border-y-red-700\/35 {
  border-top-color: rgb(185 28 28 / 0.35);
  border-bottom-color: rgb(185 28 28 / 0.35);
}

.border-y-red-700\/40 {
  border-top-color: rgb(185 28 28 / 0.4);
  border-bottom-color: rgb(185 28 28 / 0.4);
}

.border-y-red-700\/45 {
  border-top-color: rgb(185 28 28 / 0.45);
  border-bottom-color: rgb(185 28 28 / 0.45);
}

.border-y-red-700\/5 {
  border-top-color: rgb(185 28 28 / 0.05);
  border-bottom-color: rgb(185 28 28 / 0.05);
}

.border-y-red-700\/50 {
  border-top-color: rgb(185 28 28 / 0.5);
  border-bottom-color: rgb(185 28 28 / 0.5);
}

.border-y-red-700\/55 {
  border-top-color: rgb(185 28 28 / 0.55);
  border-bottom-color: rgb(185 28 28 / 0.55);
}

.border-y-red-700\/60 {
  border-top-color: rgb(185 28 28 / 0.6);
  border-bottom-color: rgb(185 28 28 / 0.6);
}

.border-y-red-700\/65 {
  border-top-color: rgb(185 28 28 / 0.65);
  border-bottom-color: rgb(185 28 28 / 0.65);
}

.border-y-red-700\/70 {
  border-top-color: rgb(185 28 28 / 0.7);
  border-bottom-color: rgb(185 28 28 / 0.7);
}

.border-y-red-700\/75 {
  border-top-color: rgb(185 28 28 / 0.75);
  border-bottom-color: rgb(185 28 28 / 0.75);
}

.border-y-red-700\/80 {
  border-top-color: rgb(185 28 28 / 0.8);
  border-bottom-color: rgb(185 28 28 / 0.8);
}

.border-y-red-700\/85 {
  border-top-color: rgb(185 28 28 / 0.85);
  border-bottom-color: rgb(185 28 28 / 0.85);
}

.border-y-red-700\/90 {
  border-top-color: rgb(185 28 28 / 0.9);
  border-bottom-color: rgb(185 28 28 / 0.9);
}

.border-y-red-700\/95 {
  border-top-color: rgb(185 28 28 / 0.95);
  border-bottom-color: rgb(185 28 28 / 0.95);
}

.border-y-red-800 {
  --tw-border-opacity: 1;
  border-top-color: rgb(153 27 27 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(153 27 27 / var(--tw-border-opacity, 1));
}

.border-y-red-800\/0 {
  border-top-color: rgb(153 27 27 / 0);
  border-bottom-color: rgb(153 27 27 / 0);
}

.border-y-red-800\/10 {
  border-top-color: rgb(153 27 27 / 0.1);
  border-bottom-color: rgb(153 27 27 / 0.1);
}

.border-y-red-800\/100 {
  border-top-color: rgb(153 27 27 / 1);
  border-bottom-color: rgb(153 27 27 / 1);
}

.border-y-red-800\/15 {
  border-top-color: rgb(153 27 27 / 0.15);
  border-bottom-color: rgb(153 27 27 / 0.15);
}

.border-y-red-800\/20 {
  border-top-color: rgb(153 27 27 / 0.2);
  border-bottom-color: rgb(153 27 27 / 0.2);
}

.border-y-red-800\/25 {
  border-top-color: rgb(153 27 27 / 0.25);
  border-bottom-color: rgb(153 27 27 / 0.25);
}

.border-y-red-800\/30 {
  border-top-color: rgb(153 27 27 / 0.3);
  border-bottom-color: rgb(153 27 27 / 0.3);
}

.border-y-red-800\/35 {
  border-top-color: rgb(153 27 27 / 0.35);
  border-bottom-color: rgb(153 27 27 / 0.35);
}

.border-y-red-800\/40 {
  border-top-color: rgb(153 27 27 / 0.4);
  border-bottom-color: rgb(153 27 27 / 0.4);
}

.border-y-red-800\/45 {
  border-top-color: rgb(153 27 27 / 0.45);
  border-bottom-color: rgb(153 27 27 / 0.45);
}

.border-y-red-800\/5 {
  border-top-color: rgb(153 27 27 / 0.05);
  border-bottom-color: rgb(153 27 27 / 0.05);
}

.border-y-red-800\/50 {
  border-top-color: rgb(153 27 27 / 0.5);
  border-bottom-color: rgb(153 27 27 / 0.5);
}

.border-y-red-800\/55 {
  border-top-color: rgb(153 27 27 / 0.55);
  border-bottom-color: rgb(153 27 27 / 0.55);
}

.border-y-red-800\/60 {
  border-top-color: rgb(153 27 27 / 0.6);
  border-bottom-color: rgb(153 27 27 / 0.6);
}

.border-y-red-800\/65 {
  border-top-color: rgb(153 27 27 / 0.65);
  border-bottom-color: rgb(153 27 27 / 0.65);
}

.border-y-red-800\/70 {
  border-top-color: rgb(153 27 27 / 0.7);
  border-bottom-color: rgb(153 27 27 / 0.7);
}

.border-y-red-800\/75 {
  border-top-color: rgb(153 27 27 / 0.75);
  border-bottom-color: rgb(153 27 27 / 0.75);
}

.border-y-red-800\/80 {
  border-top-color: rgb(153 27 27 / 0.8);
  border-bottom-color: rgb(153 27 27 / 0.8);
}

.border-y-red-800\/85 {
  border-top-color: rgb(153 27 27 / 0.85);
  border-bottom-color: rgb(153 27 27 / 0.85);
}

.border-y-red-800\/90 {
  border-top-color: rgb(153 27 27 / 0.9);
  border-bottom-color: rgb(153 27 27 / 0.9);
}

.border-y-red-800\/95 {
  border-top-color: rgb(153 27 27 / 0.95);
  border-bottom-color: rgb(153 27 27 / 0.95);
}

.border-y-red-900 {
  --tw-border-opacity: 1;
  border-top-color: rgb(127 29 29 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(127 29 29 / var(--tw-border-opacity, 1));
}

.border-y-red-900\/0 {
  border-top-color: rgb(127 29 29 / 0);
  border-bottom-color: rgb(127 29 29 / 0);
}

.border-y-red-900\/10 {
  border-top-color: rgb(127 29 29 / 0.1);
  border-bottom-color: rgb(127 29 29 / 0.1);
}

.border-y-red-900\/100 {
  border-top-color: rgb(127 29 29 / 1);
  border-bottom-color: rgb(127 29 29 / 1);
}

.border-y-red-900\/15 {
  border-top-color: rgb(127 29 29 / 0.15);
  border-bottom-color: rgb(127 29 29 / 0.15);
}

.border-y-red-900\/20 {
  border-top-color: rgb(127 29 29 / 0.2);
  border-bottom-color: rgb(127 29 29 / 0.2);
}

.border-y-red-900\/25 {
  border-top-color: rgb(127 29 29 / 0.25);
  border-bottom-color: rgb(127 29 29 / 0.25);
}

.border-y-red-900\/30 {
  border-top-color: rgb(127 29 29 / 0.3);
  border-bottom-color: rgb(127 29 29 / 0.3);
}

.border-y-red-900\/35 {
  border-top-color: rgb(127 29 29 / 0.35);
  border-bottom-color: rgb(127 29 29 / 0.35);
}

.border-y-red-900\/40 {
  border-top-color: rgb(127 29 29 / 0.4);
  border-bottom-color: rgb(127 29 29 / 0.4);
}

.border-y-red-900\/45 {
  border-top-color: rgb(127 29 29 / 0.45);
  border-bottom-color: rgb(127 29 29 / 0.45);
}

.border-y-red-900\/5 {
  border-top-color: rgb(127 29 29 / 0.05);
  border-bottom-color: rgb(127 29 29 / 0.05);
}

.border-y-red-900\/50 {
  border-top-color: rgb(127 29 29 / 0.5);
  border-bottom-color: rgb(127 29 29 / 0.5);
}

.border-y-red-900\/55 {
  border-top-color: rgb(127 29 29 / 0.55);
  border-bottom-color: rgb(127 29 29 / 0.55);
}

.border-y-red-900\/60 {
  border-top-color: rgb(127 29 29 / 0.6);
  border-bottom-color: rgb(127 29 29 / 0.6);
}

.border-y-red-900\/65 {
  border-top-color: rgb(127 29 29 / 0.65);
  border-bottom-color: rgb(127 29 29 / 0.65);
}

.border-y-red-900\/70 {
  border-top-color: rgb(127 29 29 / 0.7);
  border-bottom-color: rgb(127 29 29 / 0.7);
}

.border-y-red-900\/75 {
  border-top-color: rgb(127 29 29 / 0.75);
  border-bottom-color: rgb(127 29 29 / 0.75);
}

.border-y-red-900\/80 {
  border-top-color: rgb(127 29 29 / 0.8);
  border-bottom-color: rgb(127 29 29 / 0.8);
}

.border-y-red-900\/85 {
  border-top-color: rgb(127 29 29 / 0.85);
  border-bottom-color: rgb(127 29 29 / 0.85);
}

.border-y-red-900\/90 {
  border-top-color: rgb(127 29 29 / 0.9);
  border-bottom-color: rgb(127 29 29 / 0.9);
}

.border-y-red-900\/95 {
  border-top-color: rgb(127 29 29 / 0.95);
  border-bottom-color: rgb(127 29 29 / 0.95);
}

.border-y-red-950 {
  --tw-border-opacity: 1;
  border-top-color: rgb(69 10 10 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(69 10 10 / var(--tw-border-opacity, 1));
}

.border-y-red-950\/0 {
  border-top-color: rgb(69 10 10 / 0);
  border-bottom-color: rgb(69 10 10 / 0);
}

.border-y-red-950\/10 {
  border-top-color: rgb(69 10 10 / 0.1);
  border-bottom-color: rgb(69 10 10 / 0.1);
}

.border-y-red-950\/100 {
  border-top-color: rgb(69 10 10 / 1);
  border-bottom-color: rgb(69 10 10 / 1);
}

.border-y-red-950\/15 {
  border-top-color: rgb(69 10 10 / 0.15);
  border-bottom-color: rgb(69 10 10 / 0.15);
}

.border-y-red-950\/20 {
  border-top-color: rgb(69 10 10 / 0.2);
  border-bottom-color: rgb(69 10 10 / 0.2);
}

.border-y-red-950\/25 {
  border-top-color: rgb(69 10 10 / 0.25);
  border-bottom-color: rgb(69 10 10 / 0.25);
}

.border-y-red-950\/30 {
  border-top-color: rgb(69 10 10 / 0.3);
  border-bottom-color: rgb(69 10 10 / 0.3);
}

.border-y-red-950\/35 {
  border-top-color: rgb(69 10 10 / 0.35);
  border-bottom-color: rgb(69 10 10 / 0.35);
}

.border-y-red-950\/40 {
  border-top-color: rgb(69 10 10 / 0.4);
  border-bottom-color: rgb(69 10 10 / 0.4);
}

.border-y-red-950\/45 {
  border-top-color: rgb(69 10 10 / 0.45);
  border-bottom-color: rgb(69 10 10 / 0.45);
}

.border-y-red-950\/5 {
  border-top-color: rgb(69 10 10 / 0.05);
  border-bottom-color: rgb(69 10 10 / 0.05);
}

.border-y-red-950\/50 {
  border-top-color: rgb(69 10 10 / 0.5);
  border-bottom-color: rgb(69 10 10 / 0.5);
}

.border-y-red-950\/55 {
  border-top-color: rgb(69 10 10 / 0.55);
  border-bottom-color: rgb(69 10 10 / 0.55);
}

.border-y-red-950\/60 {
  border-top-color: rgb(69 10 10 / 0.6);
  border-bottom-color: rgb(69 10 10 / 0.6);
}

.border-y-red-950\/65 {
  border-top-color: rgb(69 10 10 / 0.65);
  border-bottom-color: rgb(69 10 10 / 0.65);
}

.border-y-red-950\/70 {
  border-top-color: rgb(69 10 10 / 0.7);
  border-bottom-color: rgb(69 10 10 / 0.7);
}

.border-y-red-950\/75 {
  border-top-color: rgb(69 10 10 / 0.75);
  border-bottom-color: rgb(69 10 10 / 0.75);
}

.border-y-red-950\/80 {
  border-top-color: rgb(69 10 10 / 0.8);
  border-bottom-color: rgb(69 10 10 / 0.8);
}

.border-y-red-950\/85 {
  border-top-color: rgb(69 10 10 / 0.85);
  border-bottom-color: rgb(69 10 10 / 0.85);
}

.border-y-red-950\/90 {
  border-top-color: rgb(69 10 10 / 0.9);
  border-bottom-color: rgb(69 10 10 / 0.9);
}

.border-y-red-950\/95 {
  border-top-color: rgb(69 10 10 / 0.95);
  border-bottom-color: rgb(69 10 10 / 0.95);
}

.border-y-transparent {
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.border-y-transparent\/0 {
  border-top-color: rgb(0 0 0 / 0);
  border-bottom-color: rgb(0 0 0 / 0);
}

.border-y-transparent\/10 {
  border-top-color: rgb(0 0 0 / 0.1);
  border-bottom-color: rgb(0 0 0 / 0.1);
}

.border-y-transparent\/100 {
  border-top-color: rgb(0 0 0 / 1);
  border-bottom-color: rgb(0 0 0 / 1);
}

.border-y-transparent\/15 {
  border-top-color: rgb(0 0 0 / 0.15);
  border-bottom-color: rgb(0 0 0 / 0.15);
}

.border-y-transparent\/20 {
  border-top-color: rgb(0 0 0 / 0.2);
  border-bottom-color: rgb(0 0 0 / 0.2);
}

.border-y-transparent\/25 {
  border-top-color: rgb(0 0 0 / 0.25);
  border-bottom-color: rgb(0 0 0 / 0.25);
}

.border-y-transparent\/30 {
  border-top-color: rgb(0 0 0 / 0.3);
  border-bottom-color: rgb(0 0 0 / 0.3);
}

.border-y-transparent\/35 {
  border-top-color: rgb(0 0 0 / 0.35);
  border-bottom-color: rgb(0 0 0 / 0.35);
}

.border-y-transparent\/40 {
  border-top-color: rgb(0 0 0 / 0.4);
  border-bottom-color: rgb(0 0 0 / 0.4);
}

.border-y-transparent\/45 {
  border-top-color: rgb(0 0 0 / 0.45);
  border-bottom-color: rgb(0 0 0 / 0.45);
}

.border-y-transparent\/5 {
  border-top-color: rgb(0 0 0 / 0.05);
  border-bottom-color: rgb(0 0 0 / 0.05);
}

.border-y-transparent\/50 {
  border-top-color: rgb(0 0 0 / 0.5);
  border-bottom-color: rgb(0 0 0 / 0.5);
}

.border-y-transparent\/55 {
  border-top-color: rgb(0 0 0 / 0.55);
  border-bottom-color: rgb(0 0 0 / 0.55);
}

.border-y-transparent\/60 {
  border-top-color: rgb(0 0 0 / 0.6);
  border-bottom-color: rgb(0 0 0 / 0.6);
}

.border-y-transparent\/65 {
  border-top-color: rgb(0 0 0 / 0.65);
  border-bottom-color: rgb(0 0 0 / 0.65);
}

.border-y-transparent\/70 {
  border-top-color: rgb(0 0 0 / 0.7);
  border-bottom-color: rgb(0 0 0 / 0.7);
}

.border-y-transparent\/75 {
  border-top-color: rgb(0 0 0 / 0.75);
  border-bottom-color: rgb(0 0 0 / 0.75);
}

.border-y-transparent\/80 {
  border-top-color: rgb(0 0 0 / 0.8);
  border-bottom-color: rgb(0 0 0 / 0.8);
}

.border-y-transparent\/85 {
  border-top-color: rgb(0 0 0 / 0.85);
  border-bottom-color: rgb(0 0 0 / 0.85);
}

.border-y-transparent\/90 {
  border-top-color: rgb(0 0 0 / 0.9);
  border-bottom-color: rgb(0 0 0 / 0.9);
}

.border-y-transparent\/95 {
  border-top-color: rgb(0 0 0 / 0.95);
  border-bottom-color: rgb(0 0 0 / 0.95);
}

.border-y-white {
  --tw-border-opacity: 1;
  border-top-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
  border-bottom-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}

.border-y-white\/0 {
  border-top-color: rgb(255 255 255 / 0);
  border-bottom-color: rgb(255 255 255 / 0);
}

.border-y-white\/10 {
  border-top-color: rgb(255 255 255 / 0.1);
  border-bottom-color: rgb(255 255 255 / 0.1);
}

.border-y-white\/100 {
  border-top-color: rgb(255 255 255 / 1);
  border-bottom-color: rgb(255 255 255 / 1);
}

.border-y-white\/15 {
  border-top-color: rgb(255 255 255 / 0.15);
  border-bottom-color: rgb(255 255 255 / 0.15);
}

.border-y-white\/20 {
  border-top-color: rgb(255 255 255 / 0.2);
  border-bottom-color: rgb(255 255 255 / 0.2);
}

.border-y-white\/25 {
  border-top-color: rgb(255 255 255 / 0.25);
  border-bottom-color: rgb(255 255 255 / 0.25);
}

.border-y-white\/30 {
  border-top-color: rgb(255 255 255 / 0.3);
  border-bottom-color: rgb(255 255 255 / 0.3);
}

.border-y-white\/35 {
  border-top-color: rgb(255 255 255 / 0.35);
  border-bottom-color: rgb(255 255 255 / 0.35);
}

.border-y-white\/40 {
  border-top-color: rgb(255 255 255 / 0.4);
  border-bottom-color: rgb(255 255 255 / 0.4);
}

.border-y-white\/45 {
  border-top-color: rgb(255 255 255 / 0.45);
  border-bottom-color: rgb(255 255 255 / 0.45);
}

.border-y-white\/5 {
  border-top-color: rgb(255 255 255 / 0.05);
  border-bottom-color: rgb(255 255 255 / 0.05);
}

.border-y-white\/50 {
  border-top-color: rgb(255 255 255 / 0.5);
  border-bottom-color: rgb(255 255 255 / 0.5);
}

.border-y-white\/55 {
  border-top-color: rgb(255 255 255 / 0.55);
  border-bottom-color: rgb(255 255 255 / 0.55);
}

.border-y-white\/60 {
  border-top-color: rgb(255 255 255 / 0.6);
  border-bottom-color: rgb(255 255 255 / 0.6);
}

.border-y-white\/65 {
  border-top-color: rgb(255 255 255 / 0.65);
  border-bottom-color: rgb(255 255 255 / 0.65);
}

.border-y-white\/70 {
  border-top-color: rgb(255 255 255 / 0.7);
  border-bottom-color: rgb(255 255 255 / 0.7);
}

.border-y-white\/75 {
  border-top-color: rgb(255 255 255 / 0.75);
  border-bottom-color: rgb(255 255 255 / 0.75);
}

.border-y-white\/80 {
  border-top-color: rgb(255 255 255 / 0.8);
  border-bottom-color: rgb(255 255 255 / 0.8);
}

.border-y-white\/85 {
  border-top-color: rgb(255 255 255 / 0.85);
  border-bottom-color: rgb(255 255 255 / 0.85);
}

.border-y-white\/90 {
  border-top-color: rgb(255 255 255 / 0.9);
  border-bottom-color: rgb(255 255 255 / 0.9);
}

.border-y-white\/95 {
  border-top-color: rgb(255 255 255 / 0.95);
  border-bottom-color: rgb(255 255 255 / 0.95);
}

.border-b-black {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
}

.border-b-black\/0 {
  border-bottom-color: rgb(0 0 0 / 0);
}

.border-b-black\/10 {
  border-bottom-color: rgb(0 0 0 / 0.1);
}

.border-b-black\/100 {
  border-bottom-color: rgb(0 0 0 / 1);
}

.border-b-black\/15 {
  border-bottom-color: rgb(0 0 0 / 0.15);
}

.border-b-black\/20 {
  border-bottom-color: rgb(0 0 0 / 0.2);
}

.border-b-black\/25 {
  border-bottom-color: rgb(0 0 0 / 0.25);
}

.border-b-black\/30 {
  border-bottom-color: rgb(0 0 0 / 0.3);
}

.border-b-black\/35 {
  border-bottom-color: rgb(0 0 0 / 0.35);
}

.border-b-black\/40 {
  border-bottom-color: rgb(0 0 0 / 0.4);
}

.border-b-black\/45 {
  border-bottom-color: rgb(0 0 0 / 0.45);
}

.border-b-black\/5 {
  border-bottom-color: rgb(0 0 0 / 0.05);
}

.border-b-black\/50 {
  border-bottom-color: rgb(0 0 0 / 0.5);
}

.border-b-black\/55 {
  border-bottom-color: rgb(0 0 0 / 0.55);
}

.border-b-black\/60 {
  border-bottom-color: rgb(0 0 0 / 0.6);
}

.border-b-black\/65 {
  border-bottom-color: rgb(0 0 0 / 0.65);
}

.border-b-black\/70 {
  border-bottom-color: rgb(0 0 0 / 0.7);
}

.border-b-black\/75 {
  border-bottom-color: rgb(0 0 0 / 0.75);
}

.border-b-black\/80 {
  border-bottom-color: rgb(0 0 0 / 0.8);
}

.border-b-black\/85 {
  border-bottom-color: rgb(0 0 0 / 0.85);
}

.border-b-black\/90 {
  border-bottom-color: rgb(0 0 0 / 0.9);
}

.border-b-black\/95 {
  border-bottom-color: rgb(0 0 0 / 0.95);
}

.border-b-blue-100 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(219 234 254 / var(--tw-border-opacity, 1));
}

.border-b-blue-100\/0 {
  border-bottom-color: rgb(219 234 254 / 0);
}

.border-b-blue-100\/10 {
  border-bottom-color: rgb(219 234 254 / 0.1);
}

.border-b-blue-100\/100 {
  border-bottom-color: rgb(219 234 254 / 1);
}

.border-b-blue-100\/15 {
  border-bottom-color: rgb(219 234 254 / 0.15);
}

.border-b-blue-100\/20 {
  border-bottom-color: rgb(219 234 254 / 0.2);
}

.border-b-blue-100\/25 {
  border-bottom-color: rgb(219 234 254 / 0.25);
}

.border-b-blue-100\/30 {
  border-bottom-color: rgb(219 234 254 / 0.3);
}

.border-b-blue-100\/35 {
  border-bottom-color: rgb(219 234 254 / 0.35);
}

.border-b-blue-100\/40 {
  border-bottom-color: rgb(219 234 254 / 0.4);
}

.border-b-blue-100\/45 {
  border-bottom-color: rgb(219 234 254 / 0.45);
}

.border-b-blue-100\/5 {
  border-bottom-color: rgb(219 234 254 / 0.05);
}

.border-b-blue-100\/50 {
  border-bottom-color: rgb(219 234 254 / 0.5);
}

.border-b-blue-100\/55 {
  border-bottom-color: rgb(219 234 254 / 0.55);
}

.border-b-blue-100\/60 {
  border-bottom-color: rgb(219 234 254 / 0.6);
}

.border-b-blue-100\/65 {
  border-bottom-color: rgb(219 234 254 / 0.65);
}

.border-b-blue-100\/70 {
  border-bottom-color: rgb(219 234 254 / 0.7);
}

.border-b-blue-100\/75 {
  border-bottom-color: rgb(219 234 254 / 0.75);
}

.border-b-blue-100\/80 {
  border-bottom-color: rgb(219 234 254 / 0.8);
}

.border-b-blue-100\/85 {
  border-bottom-color: rgb(219 234 254 / 0.85);
}

.border-b-blue-100\/90 {
  border-bottom-color: rgb(219 234 254 / 0.9);
}

.border-b-blue-100\/95 {
  border-bottom-color: rgb(219 234 254 / 0.95);
}

.border-b-blue-200 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
}

.border-b-blue-200\/0 {
  border-bottom-color: rgb(191 219 254 / 0);
}

.border-b-blue-200\/10 {
  border-bottom-color: rgb(191 219 254 / 0.1);
}

.border-b-blue-200\/100 {
  border-bottom-color: rgb(191 219 254 / 1);
}

.border-b-blue-200\/15 {
  border-bottom-color: rgb(191 219 254 / 0.15);
}

.border-b-blue-200\/20 {
  border-bottom-color: rgb(191 219 254 / 0.2);
}

.border-b-blue-200\/25 {
  border-bottom-color: rgb(191 219 254 / 0.25);
}

.border-b-blue-200\/30 {
  border-bottom-color: rgb(191 219 254 / 0.3);
}

.border-b-blue-200\/35 {
  border-bottom-color: rgb(191 219 254 / 0.35);
}

.border-b-blue-200\/40 {
  border-bottom-color: rgb(191 219 254 / 0.4);
}

.border-b-blue-200\/45 {
  border-bottom-color: rgb(191 219 254 / 0.45);
}

.border-b-blue-200\/5 {
  border-bottom-color: rgb(191 219 254 / 0.05);
}

.border-b-blue-200\/50 {
  border-bottom-color: rgb(191 219 254 / 0.5);
}

.border-b-blue-200\/55 {
  border-bottom-color: rgb(191 219 254 / 0.55);
}

.border-b-blue-200\/60 {
  border-bottom-color: rgb(191 219 254 / 0.6);
}

.border-b-blue-200\/65 {
  border-bottom-color: rgb(191 219 254 / 0.65);
}

.border-b-blue-200\/70 {
  border-bottom-color: rgb(191 219 254 / 0.7);
}

.border-b-blue-200\/75 {
  border-bottom-color: rgb(191 219 254 / 0.75);
}

.border-b-blue-200\/80 {
  border-bottom-color: rgb(191 219 254 / 0.8);
}

.border-b-blue-200\/85 {
  border-bottom-color: rgb(191 219 254 / 0.85);
}

.border-b-blue-200\/90 {
  border-bottom-color: rgb(191 219 254 / 0.9);
}

.border-b-blue-200\/95 {
  border-bottom-color: rgb(191 219 254 / 0.95);
}

.border-b-blue-300 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
}

.border-b-blue-300\/0 {
  border-bottom-color: rgb(147 197 253 / 0);
}

.border-b-blue-300\/10 {
  border-bottom-color: rgb(147 197 253 / 0.1);
}

.border-b-blue-300\/100 {
  border-bottom-color: rgb(147 197 253 / 1);
}

.border-b-blue-300\/15 {
  border-bottom-color: rgb(147 197 253 / 0.15);
}

.border-b-blue-300\/20 {
  border-bottom-color: rgb(147 197 253 / 0.2);
}

.border-b-blue-300\/25 {
  border-bottom-color: rgb(147 197 253 / 0.25);
}

.border-b-blue-300\/30 {
  border-bottom-color: rgb(147 197 253 / 0.3);
}

.border-b-blue-300\/35 {
  border-bottom-color: rgb(147 197 253 / 0.35);
}

.border-b-blue-300\/40 {
  border-bottom-color: rgb(147 197 253 / 0.4);
}

.border-b-blue-300\/45 {
  border-bottom-color: rgb(147 197 253 / 0.45);
}

.border-b-blue-300\/5 {
  border-bottom-color: rgb(147 197 253 / 0.05);
}

.border-b-blue-300\/50 {
  border-bottom-color: rgb(147 197 253 / 0.5);
}

.border-b-blue-300\/55 {
  border-bottom-color: rgb(147 197 253 / 0.55);
}

.border-b-blue-300\/60 {
  border-bottom-color: rgb(147 197 253 / 0.6);
}

.border-b-blue-300\/65 {
  border-bottom-color: rgb(147 197 253 / 0.65);
}

.border-b-blue-300\/70 {
  border-bottom-color: rgb(147 197 253 / 0.7);
}

.border-b-blue-300\/75 {
  border-bottom-color: rgb(147 197 253 / 0.75);
}

.border-b-blue-300\/80 {
  border-bottom-color: rgb(147 197 253 / 0.8);
}

.border-b-blue-300\/85 {
  border-bottom-color: rgb(147 197 253 / 0.85);
}

.border-b-blue-300\/90 {
  border-bottom-color: rgb(147 197 253 / 0.9);
}

.border-b-blue-300\/95 {
  border-bottom-color: rgb(147 197 253 / 0.95);
}

.border-b-blue-400 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(96 165 250 / var(--tw-border-opacity, 1));
}

.border-b-blue-400\/0 {
  border-bottom-color: rgb(96 165 250 / 0);
}

.border-b-blue-400\/10 {
  border-bottom-color: rgb(96 165 250 / 0.1);
}

.border-b-blue-400\/100 {
  border-bottom-color: rgb(96 165 250 / 1);
}

.border-b-blue-400\/15 {
  border-bottom-color: rgb(96 165 250 / 0.15);
}

.border-b-blue-400\/20 {
  border-bottom-color: rgb(96 165 250 / 0.2);
}

.border-b-blue-400\/25 {
  border-bottom-color: rgb(96 165 250 / 0.25);
}

.border-b-blue-400\/30 {
  border-bottom-color: rgb(96 165 250 / 0.3);
}

.border-b-blue-400\/35 {
  border-bottom-color: rgb(96 165 250 / 0.35);
}

.border-b-blue-400\/40 {
  border-bottom-color: rgb(96 165 250 / 0.4);
}

.border-b-blue-400\/45 {
  border-bottom-color: rgb(96 165 250 / 0.45);
}

.border-b-blue-400\/5 {
  border-bottom-color: rgb(96 165 250 / 0.05);
}

.border-b-blue-400\/50 {
  border-bottom-color: rgb(96 165 250 / 0.5);
}

.border-b-blue-400\/55 {
  border-bottom-color: rgb(96 165 250 / 0.55);
}

.border-b-blue-400\/60 {
  border-bottom-color: rgb(96 165 250 / 0.6);
}

.border-b-blue-400\/65 {
  border-bottom-color: rgb(96 165 250 / 0.65);
}

.border-b-blue-400\/70 {
  border-bottom-color: rgb(96 165 250 / 0.7);
}

.border-b-blue-400\/75 {
  border-bottom-color: rgb(96 165 250 / 0.75);
}

.border-b-blue-400\/80 {
  border-bottom-color: rgb(96 165 250 / 0.8);
}

.border-b-blue-400\/85 {
  border-bottom-color: rgb(96 165 250 / 0.85);
}

.border-b-blue-400\/90 {
  border-bottom-color: rgb(96 165 250 / 0.9);
}

.border-b-blue-400\/95 {
  border-bottom-color: rgb(96 165 250 / 0.95);
}

.border-b-blue-50 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(239 246 255 / var(--tw-border-opacity, 1));
}

.border-b-blue-50\/0 {
  border-bottom-color: rgb(239 246 255 / 0);
}

.border-b-blue-50\/10 {
  border-bottom-color: rgb(239 246 255 / 0.1);
}

.border-b-blue-50\/100 {
  border-bottom-color: rgb(239 246 255 / 1);
}

.border-b-blue-50\/15 {
  border-bottom-color: rgb(239 246 255 / 0.15);
}

.border-b-blue-50\/20 {
  border-bottom-color: rgb(239 246 255 / 0.2);
}

.border-b-blue-50\/25 {
  border-bottom-color: rgb(239 246 255 / 0.25);
}

.border-b-blue-50\/30 {
  border-bottom-color: rgb(239 246 255 / 0.3);
}

.border-b-blue-50\/35 {
  border-bottom-color: rgb(239 246 255 / 0.35);
}

.border-b-blue-50\/40 {
  border-bottom-color: rgb(239 246 255 / 0.4);
}

.border-b-blue-50\/45 {
  border-bottom-color: rgb(239 246 255 / 0.45);
}

.border-b-blue-50\/5 {
  border-bottom-color: rgb(239 246 255 / 0.05);
}

.border-b-blue-50\/50 {
  border-bottom-color: rgb(239 246 255 / 0.5);
}

.border-b-blue-50\/55 {
  border-bottom-color: rgb(239 246 255 / 0.55);
}

.border-b-blue-50\/60 {
  border-bottom-color: rgb(239 246 255 / 0.6);
}

.border-b-blue-50\/65 {
  border-bottom-color: rgb(239 246 255 / 0.65);
}

.border-b-blue-50\/70 {
  border-bottom-color: rgb(239 246 255 / 0.7);
}

.border-b-blue-50\/75 {
  border-bottom-color: rgb(239 246 255 / 0.75);
}

.border-b-blue-50\/80 {
  border-bottom-color: rgb(239 246 255 / 0.8);
}

.border-b-blue-50\/85 {
  border-bottom-color: rgb(239 246 255 / 0.85);
}

.border-b-blue-50\/90 {
  border-bottom-color: rgb(239 246 255 / 0.9);
}

.border-b-blue-50\/95 {
  border-bottom-color: rgb(239 246 255 / 0.95);
}

.border-b-blue-500 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}

.border-b-blue-500\/0 {
  border-bottom-color: rgb(59 130 246 / 0);
}

.border-b-blue-500\/10 {
  border-bottom-color: rgb(59 130 246 / 0.1);
}

.border-b-blue-500\/100 {
  border-bottom-color: rgb(59 130 246 / 1);
}

.border-b-blue-500\/15 {
  border-bottom-color: rgb(59 130 246 / 0.15);
}

.border-b-blue-500\/20 {
  border-bottom-color: rgb(59 130 246 / 0.2);
}

.border-b-blue-500\/25 {
  border-bottom-color: rgb(59 130 246 / 0.25);
}

.border-b-blue-500\/30 {
  border-bottom-color: rgb(59 130 246 / 0.3);
}

.border-b-blue-500\/35 {
  border-bottom-color: rgb(59 130 246 / 0.35);
}

.border-b-blue-500\/40 {
  border-bottom-color: rgb(59 130 246 / 0.4);
}

.border-b-blue-500\/45 {
  border-bottom-color: rgb(59 130 246 / 0.45);
}

.border-b-blue-500\/5 {
  border-bottom-color: rgb(59 130 246 / 0.05);
}

.border-b-blue-500\/50 {
  border-bottom-color: rgb(59 130 246 / 0.5);
}

.border-b-blue-500\/55 {
  border-bottom-color: rgb(59 130 246 / 0.55);
}

.border-b-blue-500\/60 {
  border-bottom-color: rgb(59 130 246 / 0.6);
}

.border-b-blue-500\/65 {
  border-bottom-color: rgb(59 130 246 / 0.65);
}

.border-b-blue-500\/70 {
  border-bottom-color: rgb(59 130 246 / 0.7);
}

.border-b-blue-500\/75 {
  border-bottom-color: rgb(59 130 246 / 0.75);
}

.border-b-blue-500\/80 {
  border-bottom-color: rgb(59 130 246 / 0.8);
}

.border-b-blue-500\/85 {
  border-bottom-color: rgb(59 130 246 / 0.85);
}

.border-b-blue-500\/90 {
  border-bottom-color: rgb(59 130 246 / 0.9);
}

.border-b-blue-500\/95 {
  border-bottom-color: rgb(59 130 246 / 0.95);
}

.border-b-blue-600 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}

.border-b-blue-600\/0 {
  border-bottom-color: rgb(37 99 235 / 0);
}

.border-b-blue-600\/10 {
  border-bottom-color: rgb(37 99 235 / 0.1);
}

.border-b-blue-600\/100 {
  border-bottom-color: rgb(37 99 235 / 1);
}

.border-b-blue-600\/15 {
  border-bottom-color: rgb(37 99 235 / 0.15);
}

.border-b-blue-600\/20 {
  border-bottom-color: rgb(37 99 235 / 0.2);
}

.border-b-blue-600\/25 {
  border-bottom-color: rgb(37 99 235 / 0.25);
}

.border-b-blue-600\/30 {
  border-bottom-color: rgb(37 99 235 / 0.3);
}

.border-b-blue-600\/35 {
  border-bottom-color: rgb(37 99 235 / 0.35);
}

.border-b-blue-600\/40 {
  border-bottom-color: rgb(37 99 235 / 0.4);
}

.border-b-blue-600\/45 {
  border-bottom-color: rgb(37 99 235 / 0.45);
}

.border-b-blue-600\/5 {
  border-bottom-color: rgb(37 99 235 / 0.05);
}

.border-b-blue-600\/50 {
  border-bottom-color: rgb(37 99 235 / 0.5);
}

.border-b-blue-600\/55 {
  border-bottom-color: rgb(37 99 235 / 0.55);
}

.border-b-blue-600\/60 {
  border-bottom-color: rgb(37 99 235 / 0.6);
}

.border-b-blue-600\/65 {
  border-bottom-color: rgb(37 99 235 / 0.65);
}

.border-b-blue-600\/70 {
  border-bottom-color: rgb(37 99 235 / 0.7);
}

.border-b-blue-600\/75 {
  border-bottom-color: rgb(37 99 235 / 0.75);
}

.border-b-blue-600\/80 {
  border-bottom-color: rgb(37 99 235 / 0.8);
}

.border-b-blue-600\/85 {
  border-bottom-color: rgb(37 99 235 / 0.85);
}

.border-b-blue-600\/90 {
  border-bottom-color: rgb(37 99 235 / 0.9);
}

.border-b-blue-600\/95 {
  border-bottom-color: rgb(37 99 235 / 0.95);
}

.border-b-blue-700 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(29 78 216 / var(--tw-border-opacity, 1));
}

.border-b-blue-700\/0 {
  border-bottom-color: rgb(29 78 216 / 0);
}

.border-b-blue-700\/10 {
  border-bottom-color: rgb(29 78 216 / 0.1);
}

.border-b-blue-700\/100 {
  border-bottom-color: rgb(29 78 216 / 1);
}

.border-b-blue-700\/15 {
  border-bottom-color: rgb(29 78 216 / 0.15);
}

.border-b-blue-700\/20 {
  border-bottom-color: rgb(29 78 216 / 0.2);
}

.border-b-blue-700\/25 {
  border-bottom-color: rgb(29 78 216 / 0.25);
}

.border-b-blue-700\/30 {
  border-bottom-color: rgb(29 78 216 / 0.3);
}

.border-b-blue-700\/35 {
  border-bottom-color: rgb(29 78 216 / 0.35);
}

.border-b-blue-700\/40 {
  border-bottom-color: rgb(29 78 216 / 0.4);
}

.border-b-blue-700\/45 {
  border-bottom-color: rgb(29 78 216 / 0.45);
}

.border-b-blue-700\/5 {
  border-bottom-color: rgb(29 78 216 / 0.05);
}

.border-b-blue-700\/50 {
  border-bottom-color: rgb(29 78 216 / 0.5);
}

.border-b-blue-700\/55 {
  border-bottom-color: rgb(29 78 216 / 0.55);
}

.border-b-blue-700\/60 {
  border-bottom-color: rgb(29 78 216 / 0.6);
}

.border-b-blue-700\/65 {
  border-bottom-color: rgb(29 78 216 / 0.65);
}

.border-b-blue-700\/70 {
  border-bottom-color: rgb(29 78 216 / 0.7);
}

.border-b-blue-700\/75 {
  border-bottom-color: rgb(29 78 216 / 0.75);
}

.border-b-blue-700\/80 {
  border-bottom-color: rgb(29 78 216 / 0.8);
}

.border-b-blue-700\/85 {
  border-bottom-color: rgb(29 78 216 / 0.85);
}

.border-b-blue-700\/90 {
  border-bottom-color: rgb(29 78 216 / 0.9);
}

.border-b-blue-700\/95 {
  border-bottom-color: rgb(29 78 216 / 0.95);
}

.border-b-blue-800 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(30 64 175 / var(--tw-border-opacity, 1));
}

.border-b-blue-800\/0 {
  border-bottom-color: rgb(30 64 175 / 0);
}

.border-b-blue-800\/10 {
  border-bottom-color: rgb(30 64 175 / 0.1);
}

.border-b-blue-800\/100 {
  border-bottom-color: rgb(30 64 175 / 1);
}

.border-b-blue-800\/15 {
  border-bottom-color: rgb(30 64 175 / 0.15);
}

.border-b-blue-800\/20 {
  border-bottom-color: rgb(30 64 175 / 0.2);
}

.border-b-blue-800\/25 {
  border-bottom-color: rgb(30 64 175 / 0.25);
}

.border-b-blue-800\/30 {
  border-bottom-color: rgb(30 64 175 / 0.3);
}

.border-b-blue-800\/35 {
  border-bottom-color: rgb(30 64 175 / 0.35);
}

.border-b-blue-800\/40 {
  border-bottom-color: rgb(30 64 175 / 0.4);
}

.border-b-blue-800\/45 {
  border-bottom-color: rgb(30 64 175 / 0.45);
}

.border-b-blue-800\/5 {
  border-bottom-color: rgb(30 64 175 / 0.05);
}

.border-b-blue-800\/50 {
  border-bottom-color: rgb(30 64 175 / 0.5);
}

.border-b-blue-800\/55 {
  border-bottom-color: rgb(30 64 175 / 0.55);
}

.border-b-blue-800\/60 {
  border-bottom-color: rgb(30 64 175 / 0.6);
}

.border-b-blue-800\/65 {
  border-bottom-color: rgb(30 64 175 / 0.65);
}

.border-b-blue-800\/70 {
  border-bottom-color: rgb(30 64 175 / 0.7);
}

.border-b-blue-800\/75 {
  border-bottom-color: rgb(30 64 175 / 0.75);
}

.border-b-blue-800\/80 {
  border-bottom-color: rgb(30 64 175 / 0.8);
}

.border-b-blue-800\/85 {
  border-bottom-color: rgb(30 64 175 / 0.85);
}

.border-b-blue-800\/90 {
  border-bottom-color: rgb(30 64 175 / 0.9);
}

.border-b-blue-800\/95 {
  border-bottom-color: rgb(30 64 175 / 0.95);
}

.border-b-blue-900 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(30 58 138 / var(--tw-border-opacity, 1));
}

.border-b-blue-900\/0 {
  border-bottom-color: rgb(30 58 138 / 0);
}

.border-b-blue-900\/10 {
  border-bottom-color: rgb(30 58 138 / 0.1);
}

.border-b-blue-900\/100 {
  border-bottom-color: rgb(30 58 138 / 1);
}

.border-b-blue-900\/15 {
  border-bottom-color: rgb(30 58 138 / 0.15);
}

.border-b-blue-900\/20 {
  border-bottom-color: rgb(30 58 138 / 0.2);
}

.border-b-blue-900\/25 {
  border-bottom-color: rgb(30 58 138 / 0.25);
}

.border-b-blue-900\/30 {
  border-bottom-color: rgb(30 58 138 / 0.3);
}

.border-b-blue-900\/35 {
  border-bottom-color: rgb(30 58 138 / 0.35);
}

.border-b-blue-900\/40 {
  border-bottom-color: rgb(30 58 138 / 0.4);
}

.border-b-blue-900\/45 {
  border-bottom-color: rgb(30 58 138 / 0.45);
}

.border-b-blue-900\/5 {
  border-bottom-color: rgb(30 58 138 / 0.05);
}

.border-b-blue-900\/50 {
  border-bottom-color: rgb(30 58 138 / 0.5);
}

.border-b-blue-900\/55 {
  border-bottom-color: rgb(30 58 138 / 0.55);
}

.border-b-blue-900\/60 {
  border-bottom-color: rgb(30 58 138 / 0.6);
}

.border-b-blue-900\/65 {
  border-bottom-color: rgb(30 58 138 / 0.65);
}

.border-b-blue-900\/70 {
  border-bottom-color: rgb(30 58 138 / 0.7);
}

.border-b-blue-900\/75 {
  border-bottom-color: rgb(30 58 138 / 0.75);
}

.border-b-blue-900\/80 {
  border-bottom-color: rgb(30 58 138 / 0.8);
}

.border-b-blue-900\/85 {
  border-bottom-color: rgb(30 58 138 / 0.85);
}

.border-b-blue-900\/90 {
  border-bottom-color: rgb(30 58 138 / 0.9);
}

.border-b-blue-900\/95 {
  border-bottom-color: rgb(30 58 138 / 0.95);
}

.border-b-blue-950 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(23 37 84 / var(--tw-border-opacity, 1));
}

.border-b-blue-950\/0 {
  border-bottom-color: rgb(23 37 84 / 0);
}

.border-b-blue-950\/10 {
  border-bottom-color: rgb(23 37 84 / 0.1);
}

.border-b-blue-950\/100 {
  border-bottom-color: rgb(23 37 84 / 1);
}

.border-b-blue-950\/15 {
  border-bottom-color: rgb(23 37 84 / 0.15);
}

.border-b-blue-950\/20 {
  border-bottom-color: rgb(23 37 84 / 0.2);
}

.border-b-blue-950\/25 {
  border-bottom-color: rgb(23 37 84 / 0.25);
}

.border-b-blue-950\/30 {
  border-bottom-color: rgb(23 37 84 / 0.3);
}

.border-b-blue-950\/35 {
  border-bottom-color: rgb(23 37 84 / 0.35);
}

.border-b-blue-950\/40 {
  border-bottom-color: rgb(23 37 84 / 0.4);
}

.border-b-blue-950\/45 {
  border-bottom-color: rgb(23 37 84 / 0.45);
}

.border-b-blue-950\/5 {
  border-bottom-color: rgb(23 37 84 / 0.05);
}

.border-b-blue-950\/50 {
  border-bottom-color: rgb(23 37 84 / 0.5);
}

.border-b-blue-950\/55 {
  border-bottom-color: rgb(23 37 84 / 0.55);
}

.border-b-blue-950\/60 {
  border-bottom-color: rgb(23 37 84 / 0.6);
}

.border-b-blue-950\/65 {
  border-bottom-color: rgb(23 37 84 / 0.65);
}

.border-b-blue-950\/70 {
  border-bottom-color: rgb(23 37 84 / 0.7);
}

.border-b-blue-950\/75 {
  border-bottom-color: rgb(23 37 84 / 0.75);
}

.border-b-blue-950\/80 {
  border-bottom-color: rgb(23 37 84 / 0.8);
}

.border-b-blue-950\/85 {
  border-bottom-color: rgb(23 37 84 / 0.85);
}

.border-b-blue-950\/90 {
  border-bottom-color: rgb(23 37 84 / 0.9);
}

.border-b-blue-950\/95 {
  border-bottom-color: rgb(23 37 84 / 0.95);
}

.border-b-current {
  border-bottom-color: currentColor;
}

.border-b-eva-blue {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(26 33 62 / var(--tw-border-opacity, 1));
}

.border-b-eva-blue-appt {
  --tw-border-opacity: 1;
  border-bottom-color: rgba(52, 137, 207, var(--tw-border-opacity, 1));
}

.border-b-eva-blue-appt\/0 {
  border-bottom-color: rgba(52, 137, 207, 0);
}

.border-b-eva-blue-appt\/10 {
  border-bottom-color: rgba(52, 137, 207, 0.1);
}

.border-b-eva-blue-appt\/100 {
  border-bottom-color: rgba(52, 137, 207, 1);
}

.border-b-eva-blue-appt\/15 {
  border-bottom-color: rgba(52, 137, 207, 0.15);
}

.border-b-eva-blue-appt\/20 {
  border-bottom-color: rgba(52, 137, 207, 0.2);
}

.border-b-eva-blue-appt\/25 {
  border-bottom-color: rgba(52, 137, 207, 0.25);
}

.border-b-eva-blue-appt\/30 {
  border-bottom-color: rgba(52, 137, 207, 0.3);
}

.border-b-eva-blue-appt\/35 {
  border-bottom-color: rgba(52, 137, 207, 0.35);
}

.border-b-eva-blue-appt\/40 {
  border-bottom-color: rgba(52, 137, 207, 0.4);
}

.border-b-eva-blue-appt\/45 {
  border-bottom-color: rgba(52, 137, 207, 0.45);
}

.border-b-eva-blue-appt\/5 {
  border-bottom-color: rgba(52, 137, 207, 0.05);
}

.border-b-eva-blue-appt\/50 {
  border-bottom-color: rgba(52, 137, 207, 0.5);
}

.border-b-eva-blue-appt\/55 {
  border-bottom-color: rgba(52, 137, 207, 0.55);
}

.border-b-eva-blue-appt\/60 {
  border-bottom-color: rgba(52, 137, 207, 0.6);
}

.border-b-eva-blue-appt\/65 {
  border-bottom-color: rgba(52, 137, 207, 0.65);
}

.border-b-eva-blue-appt\/70 {
  border-bottom-color: rgba(52, 137, 207, 0.7);
}

.border-b-eva-blue-appt\/75 {
  border-bottom-color: rgba(52, 137, 207, 0.75);
}

.border-b-eva-blue-appt\/80 {
  border-bottom-color: rgba(52, 137, 207, 0.8);
}

.border-b-eva-blue-appt\/85 {
  border-bottom-color: rgba(52, 137, 207, 0.85);
}

.border-b-eva-blue-appt\/90 {
  border-bottom-color: rgba(52, 137, 207, 0.9);
}

.border-b-eva-blue-appt\/95 {
  border-bottom-color: rgba(52, 137, 207, 0.95);
}

.border-b-eva-blue-gray {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(117 121 139 / var(--tw-border-opacity, 1));
}

.border-b-eva-blue-gray\/0 {
  border-bottom-color: rgb(117 121 139 / 0);
}

.border-b-eva-blue-gray\/10 {
  border-bottom-color: rgb(117 121 139 / 0.1);
}

.border-b-eva-blue-gray\/100 {
  border-bottom-color: rgb(117 121 139 / 1);
}

.border-b-eva-blue-gray\/15 {
  border-bottom-color: rgb(117 121 139 / 0.15);
}

.border-b-eva-blue-gray\/20 {
  border-bottom-color: rgb(117 121 139 / 0.2);
}

.border-b-eva-blue-gray\/25 {
  border-bottom-color: rgb(117 121 139 / 0.25);
}

.border-b-eva-blue-gray\/30 {
  border-bottom-color: rgb(117 121 139 / 0.3);
}

.border-b-eva-blue-gray\/35 {
  border-bottom-color: rgb(117 121 139 / 0.35);
}

.border-b-eva-blue-gray\/40 {
  border-bottom-color: rgb(117 121 139 / 0.4);
}

.border-b-eva-blue-gray\/45 {
  border-bottom-color: rgb(117 121 139 / 0.45);
}

.border-b-eva-blue-gray\/5 {
  border-bottom-color: rgb(117 121 139 / 0.05);
}

.border-b-eva-blue-gray\/50 {
  border-bottom-color: rgb(117 121 139 / 0.5);
}

.border-b-eva-blue-gray\/55 {
  border-bottom-color: rgb(117 121 139 / 0.55);
}

.border-b-eva-blue-gray\/60 {
  border-bottom-color: rgb(117 121 139 / 0.6);
}

.border-b-eva-blue-gray\/65 {
  border-bottom-color: rgb(117 121 139 / 0.65);
}

.border-b-eva-blue-gray\/70 {
  border-bottom-color: rgb(117 121 139 / 0.7);
}

.border-b-eva-blue-gray\/75 {
  border-bottom-color: rgb(117 121 139 / 0.75);
}

.border-b-eva-blue-gray\/80 {
  border-bottom-color: rgb(117 121 139 / 0.8);
}

.border-b-eva-blue-gray\/85 {
  border-bottom-color: rgb(117 121 139 / 0.85);
}

.border-b-eva-blue-gray\/90 {
  border-bottom-color: rgb(117 121 139 / 0.9);
}

.border-b-eva-blue-gray\/95 {
  border-bottom-color: rgb(117 121 139 / 0.95);
}

.border-b-eva-blue-hv {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(15 18 31 / var(--tw-border-opacity, 1));
}

.border-b-eva-blue-hv\/0 {
  border-bottom-color: rgb(15 18 31 / 0);
}

.border-b-eva-blue-hv\/10 {
  border-bottom-color: rgb(15 18 31 / 0.1);
}

.border-b-eva-blue-hv\/100 {
  border-bottom-color: rgb(15 18 31 / 1);
}

.border-b-eva-blue-hv\/15 {
  border-bottom-color: rgb(15 18 31 / 0.15);
}

.border-b-eva-blue-hv\/20 {
  border-bottom-color: rgb(15 18 31 / 0.2);
}

.border-b-eva-blue-hv\/25 {
  border-bottom-color: rgb(15 18 31 / 0.25);
}

.border-b-eva-blue-hv\/30 {
  border-bottom-color: rgb(15 18 31 / 0.3);
}

.border-b-eva-blue-hv\/35 {
  border-bottom-color: rgb(15 18 31 / 0.35);
}

.border-b-eva-blue-hv\/40 {
  border-bottom-color: rgb(15 18 31 / 0.4);
}

.border-b-eva-blue-hv\/45 {
  border-bottom-color: rgb(15 18 31 / 0.45);
}

.border-b-eva-blue-hv\/5 {
  border-bottom-color: rgb(15 18 31 / 0.05);
}

.border-b-eva-blue-hv\/50 {
  border-bottom-color: rgb(15 18 31 / 0.5);
}

.border-b-eva-blue-hv\/55 {
  border-bottom-color: rgb(15 18 31 / 0.55);
}

.border-b-eva-blue-hv\/60 {
  border-bottom-color: rgb(15 18 31 / 0.6);
}

.border-b-eva-blue-hv\/65 {
  border-bottom-color: rgb(15 18 31 / 0.65);
}

.border-b-eva-blue-hv\/70 {
  border-bottom-color: rgb(15 18 31 / 0.7);
}

.border-b-eva-blue-hv\/75 {
  border-bottom-color: rgb(15 18 31 / 0.75);
}

.border-b-eva-blue-hv\/80 {
  border-bottom-color: rgb(15 18 31 / 0.8);
}

.border-b-eva-blue-hv\/85 {
  border-bottom-color: rgb(15 18 31 / 0.85);
}

.border-b-eva-blue-hv\/90 {
  border-bottom-color: rgb(15 18 31 / 0.9);
}

.border-b-eva-blue-hv\/95 {
  border-bottom-color: rgb(15 18 31 / 0.95);
}

.border-b-eva-blue-light {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(48 56 81 / var(--tw-border-opacity, 1));
}

.border-b-eva-blue-light-hv {
  border-bottom-color: rgba(17,20,30,.3);
}

.border-b-eva-blue-light-hv\/0 {
  border-bottom-color: rgba(17, 20, 30, 0);
}

.border-b-eva-blue-light-hv\/10 {
  border-bottom-color: rgba(17, 20, 30, 0.1);
}

.border-b-eva-blue-light-hv\/100 {
  border-bottom-color: rgba(17, 20, 30, 1);
}

.border-b-eva-blue-light-hv\/15 {
  border-bottom-color: rgba(17, 20, 30, 0.15);
}

.border-b-eva-blue-light-hv\/20 {
  border-bottom-color: rgba(17, 20, 30, 0.2);
}

.border-b-eva-blue-light-hv\/25 {
  border-bottom-color: rgba(17, 20, 30, 0.25);
}

.border-b-eva-blue-light-hv\/30 {
  border-bottom-color: rgba(17, 20, 30, 0.3);
}

.border-b-eva-blue-light-hv\/35 {
  border-bottom-color: rgba(17, 20, 30, 0.35);
}

.border-b-eva-blue-light-hv\/40 {
  border-bottom-color: rgba(17, 20, 30, 0.4);
}

.border-b-eva-blue-light-hv\/45 {
  border-bottom-color: rgba(17, 20, 30, 0.45);
}

.border-b-eva-blue-light-hv\/5 {
  border-bottom-color: rgba(17, 20, 30, 0.05);
}

.border-b-eva-blue-light-hv\/50 {
  border-bottom-color: rgba(17, 20, 30, 0.5);
}

.border-b-eva-blue-light-hv\/55 {
  border-bottom-color: rgba(17, 20, 30, 0.55);
}

.border-b-eva-blue-light-hv\/60 {
  border-bottom-color: rgba(17, 20, 30, 0.6);
}

.border-b-eva-blue-light-hv\/65 {
  border-bottom-color: rgba(17, 20, 30, 0.65);
}

.border-b-eva-blue-light-hv\/70 {
  border-bottom-color: rgba(17, 20, 30, 0.7);
}

.border-b-eva-blue-light-hv\/75 {
  border-bottom-color: rgba(17, 20, 30, 0.75);
}

.border-b-eva-blue-light-hv\/80 {
  border-bottom-color: rgba(17, 20, 30, 0.8);
}

.border-b-eva-blue-light-hv\/85 {
  border-bottom-color: rgba(17, 20, 30, 0.85);
}

.border-b-eva-blue-light-hv\/90 {
  border-bottom-color: rgba(17, 20, 30, 0.9);
}

.border-b-eva-blue-light-hv\/95 {
  border-bottom-color: rgba(17, 20, 30, 0.95);
}

.border-b-eva-blue-light\/0 {
  border-bottom-color: rgb(48 56 81 / 0);
}

.border-b-eva-blue-light\/10 {
  border-bottom-color: rgb(48 56 81 / 0.1);
}

.border-b-eva-blue-light\/100 {
  border-bottom-color: rgb(48 56 81 / 1);
}

.border-b-eva-blue-light\/15 {
  border-bottom-color: rgb(48 56 81 / 0.15);
}

.border-b-eva-blue-light\/20 {
  border-bottom-color: rgb(48 56 81 / 0.2);
}

.border-b-eva-blue-light\/25 {
  border-bottom-color: rgb(48 56 81 / 0.25);
}

.border-b-eva-blue-light\/30 {
  border-bottom-color: rgb(48 56 81 / 0.3);
}

.border-b-eva-blue-light\/35 {
  border-bottom-color: rgb(48 56 81 / 0.35);
}

.border-b-eva-blue-light\/40 {
  border-bottom-color: rgb(48 56 81 / 0.4);
}

.border-b-eva-blue-light\/45 {
  border-bottom-color: rgb(48 56 81 / 0.45);
}

.border-b-eva-blue-light\/5 {
  border-bottom-color: rgb(48 56 81 / 0.05);
}

.border-b-eva-blue-light\/50 {
  border-bottom-color: rgb(48 56 81 / 0.5);
}

.border-b-eva-blue-light\/55 {
  border-bottom-color: rgb(48 56 81 / 0.55);
}

.border-b-eva-blue-light\/60 {
  border-bottom-color: rgb(48 56 81 / 0.6);
}

.border-b-eva-blue-light\/65 {
  border-bottom-color: rgb(48 56 81 / 0.65);
}

.border-b-eva-blue-light\/70 {
  border-bottom-color: rgb(48 56 81 / 0.7);
}

.border-b-eva-blue-light\/75 {
  border-bottom-color: rgb(48 56 81 / 0.75);
}

.border-b-eva-blue-light\/80 {
  border-bottom-color: rgb(48 56 81 / 0.8);
}

.border-b-eva-blue-light\/85 {
  border-bottom-color: rgb(48 56 81 / 0.85);
}

.border-b-eva-blue-light\/90 {
  border-bottom-color: rgb(48 56 81 / 0.9);
}

.border-b-eva-blue-light\/95 {
  border-bottom-color: rgb(48 56 81 / 0.95);
}

.border-b-eva-blue\/0 {
  border-bottom-color: rgb(26 33 62 / 0);
}

.border-b-eva-blue\/10 {
  border-bottom-color: rgb(26 33 62 / 0.1);
}

.border-b-eva-blue\/100 {
  border-bottom-color: rgb(26 33 62 / 1);
}

.border-b-eva-blue\/15 {
  border-bottom-color: rgb(26 33 62 / 0.15);
}

.border-b-eva-blue\/20 {
  border-bottom-color: rgb(26 33 62 / 0.2);
}

.border-b-eva-blue\/25 {
  border-bottom-color: rgb(26 33 62 / 0.25);
}

.border-b-eva-blue\/30 {
  border-bottom-color: rgb(26 33 62 / 0.3);
}

.border-b-eva-blue\/35 {
  border-bottom-color: rgb(26 33 62 / 0.35);
}

.border-b-eva-blue\/40 {
  border-bottom-color: rgb(26 33 62 / 0.4);
}

.border-b-eva-blue\/45 {
  border-bottom-color: rgb(26 33 62 / 0.45);
}

.border-b-eva-blue\/5 {
  border-bottom-color: rgb(26 33 62 / 0.05);
}

.border-b-eva-blue\/50 {
  border-bottom-color: rgb(26 33 62 / 0.5);
}

.border-b-eva-blue\/55 {
  border-bottom-color: rgb(26 33 62 / 0.55);
}

.border-b-eva-blue\/60 {
  border-bottom-color: rgb(26 33 62 / 0.6);
}

.border-b-eva-blue\/65 {
  border-bottom-color: rgb(26 33 62 / 0.65);
}

.border-b-eva-blue\/70 {
  border-bottom-color: rgb(26 33 62 / 0.7);
}

.border-b-eva-blue\/75 {
  border-bottom-color: rgb(26 33 62 / 0.75);
}

.border-b-eva-blue\/80 {
  border-bottom-color: rgb(26 33 62 / 0.8);
}

.border-b-eva-blue\/85 {
  border-bottom-color: rgb(26 33 62 / 0.85);
}

.border-b-eva-blue\/90 {
  border-bottom-color: rgb(26 33 62 / 0.9);
}

.border-b-eva-blue\/95 {
  border-bottom-color: rgb(26 33 62 / 0.95);
}

.border-b-eva-brown-appt {
  border-bottom-color: rgba(99, 93, 94, 1);
}

.border-b-eva-brown-appt\/0 {
  border-bottom-color: rgba(99, 93, 94, 0);
}

.border-b-eva-brown-appt\/10 {
  border-bottom-color: rgba(99, 93, 94, 0.1);
}

.border-b-eva-brown-appt\/100 {
  border-bottom-color: rgba(99, 93, 94, 1);
}

.border-b-eva-brown-appt\/15 {
  border-bottom-color: rgba(99, 93, 94, 0.15);
}

.border-b-eva-brown-appt\/20 {
  border-bottom-color: rgba(99, 93, 94, 0.2);
}

.border-b-eva-brown-appt\/25 {
  border-bottom-color: rgba(99, 93, 94, 0.25);
}

.border-b-eva-brown-appt\/30 {
  border-bottom-color: rgba(99, 93, 94, 0.3);
}

.border-b-eva-brown-appt\/35 {
  border-bottom-color: rgba(99, 93, 94, 0.35);
}

.border-b-eva-brown-appt\/40 {
  border-bottom-color: rgba(99, 93, 94, 0.4);
}

.border-b-eva-brown-appt\/45 {
  border-bottom-color: rgba(99, 93, 94, 0.45);
}

.border-b-eva-brown-appt\/5 {
  border-bottom-color: rgba(99, 93, 94, 0.05);
}

.border-b-eva-brown-appt\/50 {
  border-bottom-color: rgba(99, 93, 94, 0.5);
}

.border-b-eva-brown-appt\/55 {
  border-bottom-color: rgba(99, 93, 94, 0.55);
}

.border-b-eva-brown-appt\/60 {
  border-bottom-color: rgba(99, 93, 94, 0.6);
}

.border-b-eva-brown-appt\/65 {
  border-bottom-color: rgba(99, 93, 94, 0.65);
}

.border-b-eva-brown-appt\/70 {
  border-bottom-color: rgba(99, 93, 94, 0.7);
}

.border-b-eva-brown-appt\/75 {
  border-bottom-color: rgba(99, 93, 94, 0.75);
}

.border-b-eva-brown-appt\/80 {
  border-bottom-color: rgba(99, 93, 94, 0.8);
}

.border-b-eva-brown-appt\/85 {
  border-bottom-color: rgba(99, 93, 94, 0.85);
}

.border-b-eva-brown-appt\/90 {
  border-bottom-color: rgba(99, 93, 94, 0.9);
}

.border-b-eva-brown-appt\/95 {
  border-bottom-color: rgba(99, 93, 94, 0.95);
}

.border-b-eva-dark-green-appt {
  border-bottom-color: rgba(102, 188, 130, 1);
}

.border-b-eva-dark-green-appt\/0 {
  border-bottom-color: rgba(102, 188, 130, 0);
}

.border-b-eva-dark-green-appt\/10 {
  border-bottom-color: rgba(102, 188, 130, 0.1);
}

.border-b-eva-dark-green-appt\/100 {
  border-bottom-color: rgba(102, 188, 130, 1);
}

.border-b-eva-dark-green-appt\/15 {
  border-bottom-color: rgba(102, 188, 130, 0.15);
}

.border-b-eva-dark-green-appt\/20 {
  border-bottom-color: rgba(102, 188, 130, 0.2);
}

.border-b-eva-dark-green-appt\/25 {
  border-bottom-color: rgba(102, 188, 130, 0.25);
}

.border-b-eva-dark-green-appt\/30 {
  border-bottom-color: rgba(102, 188, 130, 0.3);
}

.border-b-eva-dark-green-appt\/35 {
  border-bottom-color: rgba(102, 188, 130, 0.35);
}

.border-b-eva-dark-green-appt\/40 {
  border-bottom-color: rgba(102, 188, 130, 0.4);
}

.border-b-eva-dark-green-appt\/45 {
  border-bottom-color: rgba(102, 188, 130, 0.45);
}

.border-b-eva-dark-green-appt\/5 {
  border-bottom-color: rgba(102, 188, 130, 0.05);
}

.border-b-eva-dark-green-appt\/50 {
  border-bottom-color: rgba(102, 188, 130, 0.5);
}

.border-b-eva-dark-green-appt\/55 {
  border-bottom-color: rgba(102, 188, 130, 0.55);
}

.border-b-eva-dark-green-appt\/60 {
  border-bottom-color: rgba(102, 188, 130, 0.6);
}

.border-b-eva-dark-green-appt\/65 {
  border-bottom-color: rgba(102, 188, 130, 0.65);
}

.border-b-eva-dark-green-appt\/70 {
  border-bottom-color: rgba(102, 188, 130, 0.7);
}

.border-b-eva-dark-green-appt\/75 {
  border-bottom-color: rgba(102, 188, 130, 0.75);
}

.border-b-eva-dark-green-appt\/80 {
  border-bottom-color: rgba(102, 188, 130, 0.8);
}

.border-b-eva-dark-green-appt\/85 {
  border-bottom-color: rgba(102, 188, 130, 0.85);
}

.border-b-eva-dark-green-appt\/90 {
  border-bottom-color: rgba(102, 188, 130, 0.9);
}

.border-b-eva-dark-green-appt\/95 {
  border-bottom-color: rgba(102, 188, 130, 0.95);
}

.border-b-eva-dark-red-appt {
  border-bottom-color: rgba(198, 102, 94, 1);
}

.border-b-eva-dark-red-appt\/0 {
  border-bottom-color: rgba(198, 102, 94, 0);
}

.border-b-eva-dark-red-appt\/10 {
  border-bottom-color: rgba(198, 102, 94, 0.1);
}

.border-b-eva-dark-red-appt\/100 {
  border-bottom-color: rgba(198, 102, 94, 1);
}

.border-b-eva-dark-red-appt\/15 {
  border-bottom-color: rgba(198, 102, 94, 0.15);
}

.border-b-eva-dark-red-appt\/20 {
  border-bottom-color: rgba(198, 102, 94, 0.2);
}

.border-b-eva-dark-red-appt\/25 {
  border-bottom-color: rgba(198, 102, 94, 0.25);
}

.border-b-eva-dark-red-appt\/30 {
  border-bottom-color: rgba(198, 102, 94, 0.3);
}

.border-b-eva-dark-red-appt\/35 {
  border-bottom-color: rgba(198, 102, 94, 0.35);
}

.border-b-eva-dark-red-appt\/40 {
  border-bottom-color: rgba(198, 102, 94, 0.4);
}

.border-b-eva-dark-red-appt\/45 {
  border-bottom-color: rgba(198, 102, 94, 0.45);
}

.border-b-eva-dark-red-appt\/5 {
  border-bottom-color: rgba(198, 102, 94, 0.05);
}

.border-b-eva-dark-red-appt\/50 {
  border-bottom-color: rgba(198, 102, 94, 0.5);
}

.border-b-eva-dark-red-appt\/55 {
  border-bottom-color: rgba(198, 102, 94, 0.55);
}

.border-b-eva-dark-red-appt\/60 {
  border-bottom-color: rgba(198, 102, 94, 0.6);
}

.border-b-eva-dark-red-appt\/65 {
  border-bottom-color: rgba(198, 102, 94, 0.65);
}

.border-b-eva-dark-red-appt\/70 {
  border-bottom-color: rgba(198, 102, 94, 0.7);
}

.border-b-eva-dark-red-appt\/75 {
  border-bottom-color: rgba(198, 102, 94, 0.75);
}

.border-b-eva-dark-red-appt\/80 {
  border-bottom-color: rgba(198, 102, 94, 0.8);
}

.border-b-eva-dark-red-appt\/85 {
  border-bottom-color: rgba(198, 102, 94, 0.85);
}

.border-b-eva-dark-red-appt\/90 {
  border-bottom-color: rgba(198, 102, 94, 0.9);
}

.border-b-eva-dark-red-appt\/95 {
  border-bottom-color: rgba(198, 102, 94, 0.95);
}

.border-b-eva-green {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(73 181 168 / var(--tw-border-opacity, 1));
}

.border-b-eva-green-appt {
  --tw-border-opacity: 1;
  border-bottom-color: rgba(128, 215, 109, var(--tw-border-opacity, 1));
}

.border-b-eva-green-appt\/0 {
  border-bottom-color: rgba(128, 215, 109, 0);
}

.border-b-eva-green-appt\/10 {
  border-bottom-color: rgba(128, 215, 109, 0.1);
}

.border-b-eva-green-appt\/100 {
  border-bottom-color: rgba(128, 215, 109, 1);
}

.border-b-eva-green-appt\/15 {
  border-bottom-color: rgba(128, 215, 109, 0.15);
}

.border-b-eva-green-appt\/20 {
  border-bottom-color: rgba(128, 215, 109, 0.2);
}

.border-b-eva-green-appt\/25 {
  border-bottom-color: rgba(128, 215, 109, 0.25);
}

.border-b-eva-green-appt\/30 {
  border-bottom-color: rgba(128, 215, 109, 0.3);
}

.border-b-eva-green-appt\/35 {
  border-bottom-color: rgba(128, 215, 109, 0.35);
}

.border-b-eva-green-appt\/40 {
  border-bottom-color: rgba(128, 215, 109, 0.4);
}

.border-b-eva-green-appt\/45 {
  border-bottom-color: rgba(128, 215, 109, 0.45);
}

.border-b-eva-green-appt\/5 {
  border-bottom-color: rgba(128, 215, 109, 0.05);
}

.border-b-eva-green-appt\/50 {
  border-bottom-color: rgba(128, 215, 109, 0.5);
}

.border-b-eva-green-appt\/55 {
  border-bottom-color: rgba(128, 215, 109, 0.55);
}

.border-b-eva-green-appt\/60 {
  border-bottom-color: rgba(128, 215, 109, 0.6);
}

.border-b-eva-green-appt\/65 {
  border-bottom-color: rgba(128, 215, 109, 0.65);
}

.border-b-eva-green-appt\/70 {
  border-bottom-color: rgba(128, 215, 109, 0.7);
}

.border-b-eva-green-appt\/75 {
  border-bottom-color: rgba(128, 215, 109, 0.75);
}

.border-b-eva-green-appt\/80 {
  border-bottom-color: rgba(128, 215, 109, 0.8);
}

.border-b-eva-green-appt\/85 {
  border-bottom-color: rgba(128, 215, 109, 0.85);
}

.border-b-eva-green-appt\/90 {
  border-bottom-color: rgba(128, 215, 109, 0.9);
}

.border-b-eva-green-appt\/95 {
  border-bottom-color: rgba(128, 215, 109, 0.95);
}

.border-b-eva-green-brown-appt {
  border-bottom-color: rgba(197, 191, 140, 1);
}

.border-b-eva-green-brown-appt\/0 {
  border-bottom-color: rgba(197, 191, 140, 0);
}

.border-b-eva-green-brown-appt\/10 {
  border-bottom-color: rgba(197, 191, 140, 0.1);
}

.border-b-eva-green-brown-appt\/100 {
  border-bottom-color: rgba(197, 191, 140, 1);
}

.border-b-eva-green-brown-appt\/15 {
  border-bottom-color: rgba(197, 191, 140, 0.15);
}

.border-b-eva-green-brown-appt\/20 {
  border-bottom-color: rgba(197, 191, 140, 0.2);
}

.border-b-eva-green-brown-appt\/25 {
  border-bottom-color: rgba(197, 191, 140, 0.25);
}

.border-b-eva-green-brown-appt\/30 {
  border-bottom-color: rgba(197, 191, 140, 0.3);
}

.border-b-eva-green-brown-appt\/35 {
  border-bottom-color: rgba(197, 191, 140, 0.35);
}

.border-b-eva-green-brown-appt\/40 {
  border-bottom-color: rgba(197, 191, 140, 0.4);
}

.border-b-eva-green-brown-appt\/45 {
  border-bottom-color: rgba(197, 191, 140, 0.45);
}

.border-b-eva-green-brown-appt\/5 {
  border-bottom-color: rgba(197, 191, 140, 0.05);
}

.border-b-eva-green-brown-appt\/50 {
  border-bottom-color: rgba(197, 191, 140, 0.5);
}

.border-b-eva-green-brown-appt\/55 {
  border-bottom-color: rgba(197, 191, 140, 0.55);
}

.border-b-eva-green-brown-appt\/60 {
  border-bottom-color: rgba(197, 191, 140, 0.6);
}

.border-b-eva-green-brown-appt\/65 {
  border-bottom-color: rgba(197, 191, 140, 0.65);
}

.border-b-eva-green-brown-appt\/70 {
  border-bottom-color: rgba(197, 191, 140, 0.7);
}

.border-b-eva-green-brown-appt\/75 {
  border-bottom-color: rgba(197, 191, 140, 0.75);
}

.border-b-eva-green-brown-appt\/80 {
  border-bottom-color: rgba(197, 191, 140, 0.8);
}

.border-b-eva-green-brown-appt\/85 {
  border-bottom-color: rgba(197, 191, 140, 0.85);
}

.border-b-eva-green-brown-appt\/90 {
  border-bottom-color: rgba(197, 191, 140, 0.9);
}

.border-b-eva-green-brown-appt\/95 {
  border-bottom-color: rgba(197, 191, 140, 0.95);
}

.border-b-eva-green-hv {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(63 156 144 / var(--tw-border-opacity, 1));
}

.border-b-eva-green-hv\/0 {
  border-bottom-color: rgb(63 156 144 / 0);
}

.border-b-eva-green-hv\/10 {
  border-bottom-color: rgb(63 156 144 / 0.1);
}

.border-b-eva-green-hv\/100 {
  border-bottom-color: rgb(63 156 144 / 1);
}

.border-b-eva-green-hv\/15 {
  border-bottom-color: rgb(63 156 144 / 0.15);
}

.border-b-eva-green-hv\/20 {
  border-bottom-color: rgb(63 156 144 / 0.2);
}

.border-b-eva-green-hv\/25 {
  border-bottom-color: rgb(63 156 144 / 0.25);
}

.border-b-eva-green-hv\/30 {
  border-bottom-color: rgb(63 156 144 / 0.3);
}

.border-b-eva-green-hv\/35 {
  border-bottom-color: rgb(63 156 144 / 0.35);
}

.border-b-eva-green-hv\/40 {
  border-bottom-color: rgb(63 156 144 / 0.4);
}

.border-b-eva-green-hv\/45 {
  border-bottom-color: rgb(63 156 144 / 0.45);
}

.border-b-eva-green-hv\/5 {
  border-bottom-color: rgb(63 156 144 / 0.05);
}

.border-b-eva-green-hv\/50 {
  border-bottom-color: rgb(63 156 144 / 0.5);
}

.border-b-eva-green-hv\/55 {
  border-bottom-color: rgb(63 156 144 / 0.55);
}

.border-b-eva-green-hv\/60 {
  border-bottom-color: rgb(63 156 144 / 0.6);
}

.border-b-eva-green-hv\/65 {
  border-bottom-color: rgb(63 156 144 / 0.65);
}

.border-b-eva-green-hv\/70 {
  border-bottom-color: rgb(63 156 144 / 0.7);
}

.border-b-eva-green-hv\/75 {
  border-bottom-color: rgb(63 156 144 / 0.75);
}

.border-b-eva-green-hv\/80 {
  border-bottom-color: rgb(63 156 144 / 0.8);
}

.border-b-eva-green-hv\/85 {
  border-bottom-color: rgb(63 156 144 / 0.85);
}

.border-b-eva-green-hv\/90 {
  border-bottom-color: rgb(63 156 144 / 0.9);
}

.border-b-eva-green-hv\/95 {
  border-bottom-color: rgb(63 156 144 / 0.95);
}

.border-b-eva-green\/0 {
  border-bottom-color: rgb(73 181 168 / 0);
}

.border-b-eva-green\/10 {
  border-bottom-color: rgb(73 181 168 / 0.1);
}

.border-b-eva-green\/100 {
  border-bottom-color: rgb(73 181 168 / 1);
}

.border-b-eva-green\/15 {
  border-bottom-color: rgb(73 181 168 / 0.15);
}

.border-b-eva-green\/20 {
  border-bottom-color: rgb(73 181 168 / 0.2);
}

.border-b-eva-green\/25 {
  border-bottom-color: rgb(73 181 168 / 0.25);
}

.border-b-eva-green\/30 {
  border-bottom-color: rgb(73 181 168 / 0.3);
}

.border-b-eva-green\/35 {
  border-bottom-color: rgb(73 181 168 / 0.35);
}

.border-b-eva-green\/40 {
  border-bottom-color: rgb(73 181 168 / 0.4);
}

.border-b-eva-green\/45 {
  border-bottom-color: rgb(73 181 168 / 0.45);
}

.border-b-eva-green\/5 {
  border-bottom-color: rgb(73 181 168 / 0.05);
}

.border-b-eva-green\/50 {
  border-bottom-color: rgb(73 181 168 / 0.5);
}

.border-b-eva-green\/55 {
  border-bottom-color: rgb(73 181 168 / 0.55);
}

.border-b-eva-green\/60 {
  border-bottom-color: rgb(73 181 168 / 0.6);
}

.border-b-eva-green\/65 {
  border-bottom-color: rgb(73 181 168 / 0.65);
}

.border-b-eva-green\/70 {
  border-bottom-color: rgb(73 181 168 / 0.7);
}

.border-b-eva-green\/75 {
  border-bottom-color: rgb(73 181 168 / 0.75);
}

.border-b-eva-green\/80 {
  border-bottom-color: rgb(73 181 168 / 0.8);
}

.border-b-eva-green\/85 {
  border-bottom-color: rgb(73 181 168 / 0.85);
}

.border-b-eva-green\/90 {
  border-bottom-color: rgb(73 181 168 / 0.9);
}

.border-b-eva-green\/95 {
  border-bottom-color: rgb(73 181 168 / 0.95);
}

.border-b-eva-lavender-appt {
  border-bottom-color: rgba(169, 124, 165, 1);
}

.border-b-eva-lavender-appt\/0 {
  border-bottom-color: rgba(169, 124, 165, 0);
}

.border-b-eva-lavender-appt\/10 {
  border-bottom-color: rgba(169, 124, 165, 0.1);
}

.border-b-eva-lavender-appt\/100 {
  border-bottom-color: rgba(169, 124, 165, 1);
}

.border-b-eva-lavender-appt\/15 {
  border-bottom-color: rgba(169, 124, 165, 0.15);
}

.border-b-eva-lavender-appt\/20 {
  border-bottom-color: rgba(169, 124, 165, 0.2);
}

.border-b-eva-lavender-appt\/25 {
  border-bottom-color: rgba(169, 124, 165, 0.25);
}

.border-b-eva-lavender-appt\/30 {
  border-bottom-color: rgba(169, 124, 165, 0.3);
}

.border-b-eva-lavender-appt\/35 {
  border-bottom-color: rgba(169, 124, 165, 0.35);
}

.border-b-eva-lavender-appt\/40 {
  border-bottom-color: rgba(169, 124, 165, 0.4);
}

.border-b-eva-lavender-appt\/45 {
  border-bottom-color: rgba(169, 124, 165, 0.45);
}

.border-b-eva-lavender-appt\/5 {
  border-bottom-color: rgba(169, 124, 165, 0.05);
}

.border-b-eva-lavender-appt\/50 {
  border-bottom-color: rgba(169, 124, 165, 0.5);
}

.border-b-eva-lavender-appt\/55 {
  border-bottom-color: rgba(169, 124, 165, 0.55);
}

.border-b-eva-lavender-appt\/60 {
  border-bottom-color: rgba(169, 124, 165, 0.6);
}

.border-b-eva-lavender-appt\/65 {
  border-bottom-color: rgba(169, 124, 165, 0.65);
}

.border-b-eva-lavender-appt\/70 {
  border-bottom-color: rgba(169, 124, 165, 0.7);
}

.border-b-eva-lavender-appt\/75 {
  border-bottom-color: rgba(169, 124, 165, 0.75);
}

.border-b-eva-lavender-appt\/80 {
  border-bottom-color: rgba(169, 124, 165, 0.8);
}

.border-b-eva-lavender-appt\/85 {
  border-bottom-color: rgba(169, 124, 165, 0.85);
}

.border-b-eva-lavender-appt\/90 {
  border-bottom-color: rgba(169, 124, 165, 0.9);
}

.border-b-eva-lavender-appt\/95 {
  border-bottom-color: rgba(169, 124, 165, 0.95);
}

.border-b-eva-magenta-appt {
  border-bottom-color: rgba(223, 91, 146, 1);
}

.border-b-eva-magenta-appt\/0 {
  border-bottom-color: rgba(223, 91, 146, 0);
}

.border-b-eva-magenta-appt\/10 {
  border-bottom-color: rgba(223, 91, 146, 0.1);
}

.border-b-eva-magenta-appt\/100 {
  border-bottom-color: rgba(223, 91, 146, 1);
}

.border-b-eva-magenta-appt\/15 {
  border-bottom-color: rgba(223, 91, 146, 0.15);
}

.border-b-eva-magenta-appt\/20 {
  border-bottom-color: rgba(223, 91, 146, 0.2);
}

.border-b-eva-magenta-appt\/25 {
  border-bottom-color: rgba(223, 91, 146, 0.25);
}

.border-b-eva-magenta-appt\/30 {
  border-bottom-color: rgba(223, 91, 146, 0.3);
}

.border-b-eva-magenta-appt\/35 {
  border-bottom-color: rgba(223, 91, 146, 0.35);
}

.border-b-eva-magenta-appt\/40 {
  border-bottom-color: rgba(223, 91, 146, 0.4);
}

.border-b-eva-magenta-appt\/45 {
  border-bottom-color: rgba(223, 91, 146, 0.45);
}

.border-b-eva-magenta-appt\/5 {
  border-bottom-color: rgba(223, 91, 146, 0.05);
}

.border-b-eva-magenta-appt\/50 {
  border-bottom-color: rgba(223, 91, 146, 0.5);
}

.border-b-eva-magenta-appt\/55 {
  border-bottom-color: rgba(223, 91, 146, 0.55);
}

.border-b-eva-magenta-appt\/60 {
  border-bottom-color: rgba(223, 91, 146, 0.6);
}

.border-b-eva-magenta-appt\/65 {
  border-bottom-color: rgba(223, 91, 146, 0.65);
}

.border-b-eva-magenta-appt\/70 {
  border-bottom-color: rgba(223, 91, 146, 0.7);
}

.border-b-eva-magenta-appt\/75 {
  border-bottom-color: rgba(223, 91, 146, 0.75);
}

.border-b-eva-magenta-appt\/80 {
  border-bottom-color: rgba(223, 91, 146, 0.8);
}

.border-b-eva-magenta-appt\/85 {
  border-bottom-color: rgba(223, 91, 146, 0.85);
}

.border-b-eva-magenta-appt\/90 {
  border-bottom-color: rgba(223, 91, 146, 0.9);
}

.border-b-eva-magenta-appt\/95 {
  border-bottom-color: rgba(223, 91, 146, 0.95);
}

.border-b-eva-orange-appt {
  border-bottom-color: rgba(232, 176, 99, 1);
}

.border-b-eva-orange-appt\/0 {
  border-bottom-color: rgba(232, 176, 99, 0);
}

.border-b-eva-orange-appt\/10 {
  border-bottom-color: rgba(232, 176, 99, 0.1);
}

.border-b-eva-orange-appt\/100 {
  border-bottom-color: rgba(232, 176, 99, 1);
}

.border-b-eva-orange-appt\/15 {
  border-bottom-color: rgba(232, 176, 99, 0.15);
}

.border-b-eva-orange-appt\/20 {
  border-bottom-color: rgba(232, 176, 99, 0.2);
}

.border-b-eva-orange-appt\/25 {
  border-bottom-color: rgba(232, 176, 99, 0.25);
}

.border-b-eva-orange-appt\/30 {
  border-bottom-color: rgba(232, 176, 99, 0.3);
}

.border-b-eva-orange-appt\/35 {
  border-bottom-color: rgba(232, 176, 99, 0.35);
}

.border-b-eva-orange-appt\/40 {
  border-bottom-color: rgba(232, 176, 99, 0.4);
}

.border-b-eva-orange-appt\/45 {
  border-bottom-color: rgba(232, 176, 99, 0.45);
}

.border-b-eva-orange-appt\/5 {
  border-bottom-color: rgba(232, 176, 99, 0.05);
}

.border-b-eva-orange-appt\/50 {
  border-bottom-color: rgba(232, 176, 99, 0.5);
}

.border-b-eva-orange-appt\/55 {
  border-bottom-color: rgba(232, 176, 99, 0.55);
}

.border-b-eva-orange-appt\/60 {
  border-bottom-color: rgba(232, 176, 99, 0.6);
}

.border-b-eva-orange-appt\/65 {
  border-bottom-color: rgba(232, 176, 99, 0.65);
}

.border-b-eva-orange-appt\/70 {
  border-bottom-color: rgba(232, 176, 99, 0.7);
}

.border-b-eva-orange-appt\/75 {
  border-bottom-color: rgba(232, 176, 99, 0.75);
}

.border-b-eva-orange-appt\/80 {
  border-bottom-color: rgba(232, 176, 99, 0.8);
}

.border-b-eva-orange-appt\/85 {
  border-bottom-color: rgba(232, 176, 99, 0.85);
}

.border-b-eva-orange-appt\/90 {
  border-bottom-color: rgba(232, 176, 99, 0.9);
}

.border-b-eva-orange-appt\/95 {
  border-bottom-color: rgba(232, 176, 99, 0.95);
}

.border-b-eva-purple-appt {
  border-bottom-color: rgba(125, 117, 164, 1);
}

.border-b-eva-purple-appt\/0 {
  border-bottom-color: rgba(125, 117, 164, 0);
}

.border-b-eva-purple-appt\/10 {
  border-bottom-color: rgba(125, 117, 164, 0.1);
}

.border-b-eva-purple-appt\/100 {
  border-bottom-color: rgba(125, 117, 164, 1);
}

.border-b-eva-purple-appt\/15 {
  border-bottom-color: rgba(125, 117, 164, 0.15);
}

.border-b-eva-purple-appt\/20 {
  border-bottom-color: rgba(125, 117, 164, 0.2);
}

.border-b-eva-purple-appt\/25 {
  border-bottom-color: rgba(125, 117, 164, 0.25);
}

.border-b-eva-purple-appt\/30 {
  border-bottom-color: rgba(125, 117, 164, 0.3);
}

.border-b-eva-purple-appt\/35 {
  border-bottom-color: rgba(125, 117, 164, 0.35);
}

.border-b-eva-purple-appt\/40 {
  border-bottom-color: rgba(125, 117, 164, 0.4);
}

.border-b-eva-purple-appt\/45 {
  border-bottom-color: rgba(125, 117, 164, 0.45);
}

.border-b-eva-purple-appt\/5 {
  border-bottom-color: rgba(125, 117, 164, 0.05);
}

.border-b-eva-purple-appt\/50 {
  border-bottom-color: rgba(125, 117, 164, 0.5);
}

.border-b-eva-purple-appt\/55 {
  border-bottom-color: rgba(125, 117, 164, 0.55);
}

.border-b-eva-purple-appt\/60 {
  border-bottom-color: rgba(125, 117, 164, 0.6);
}

.border-b-eva-purple-appt\/65 {
  border-bottom-color: rgba(125, 117, 164, 0.65);
}

.border-b-eva-purple-appt\/70 {
  border-bottom-color: rgba(125, 117, 164, 0.7);
}

.border-b-eva-purple-appt\/75 {
  border-bottom-color: rgba(125, 117, 164, 0.75);
}

.border-b-eva-purple-appt\/80 {
  border-bottom-color: rgba(125, 117, 164, 0.8);
}

.border-b-eva-purple-appt\/85 {
  border-bottom-color: rgba(125, 117, 164, 0.85);
}

.border-b-eva-purple-appt\/90 {
  border-bottom-color: rgba(125, 117, 164, 0.9);
}

.border-b-eva-purple-appt\/95 {
  border-bottom-color: rgba(125, 117, 164, 0.95);
}

.border-b-eva-red {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(234 101 101 / var(--tw-border-opacity, 1));
}

.border-b-eva-red-appt {
  border-bottom-color: rgba(243, 63, 77, 1);
}

.border-b-eva-red-appt\/0 {
  border-bottom-color: rgba(243, 63, 77, 0);
}

.border-b-eva-red-appt\/10 {
  border-bottom-color: rgba(243, 63, 77, 0.1);
}

.border-b-eva-red-appt\/100 {
  border-bottom-color: rgba(243, 63, 77, 1);
}

.border-b-eva-red-appt\/15 {
  border-bottom-color: rgba(243, 63, 77, 0.15);
}

.border-b-eva-red-appt\/20 {
  border-bottom-color: rgba(243, 63, 77, 0.2);
}

.border-b-eva-red-appt\/25 {
  border-bottom-color: rgba(243, 63, 77, 0.25);
}

.border-b-eva-red-appt\/30 {
  border-bottom-color: rgba(243, 63, 77, 0.3);
}

.border-b-eva-red-appt\/35 {
  border-bottom-color: rgba(243, 63, 77, 0.35);
}

.border-b-eva-red-appt\/40 {
  border-bottom-color: rgba(243, 63, 77, 0.4);
}

.border-b-eva-red-appt\/45 {
  border-bottom-color: rgba(243, 63, 77, 0.45);
}

.border-b-eva-red-appt\/5 {
  border-bottom-color: rgba(243, 63, 77, 0.05);
}

.border-b-eva-red-appt\/50 {
  border-bottom-color: rgba(243, 63, 77, 0.5);
}

.border-b-eva-red-appt\/55 {
  border-bottom-color: rgba(243, 63, 77, 0.55);
}

.border-b-eva-red-appt\/60 {
  border-bottom-color: rgba(243, 63, 77, 0.6);
}

.border-b-eva-red-appt\/65 {
  border-bottom-color: rgba(243, 63, 77, 0.65);
}

.border-b-eva-red-appt\/70 {
  border-bottom-color: rgba(243, 63, 77, 0.7);
}

.border-b-eva-red-appt\/75 {
  border-bottom-color: rgba(243, 63, 77, 0.75);
}

.border-b-eva-red-appt\/80 {
  border-bottom-color: rgba(243, 63, 77, 0.8);
}

.border-b-eva-red-appt\/85 {
  border-bottom-color: rgba(243, 63, 77, 0.85);
}

.border-b-eva-red-appt\/90 {
  border-bottom-color: rgba(243, 63, 77, 0.9);
}

.border-b-eva-red-appt\/95 {
  border-bottom-color: rgba(243, 63, 77, 0.95);
}

.border-b-eva-red-orange-appt {
  border-bottom-color: rgba(217, 154, 118, 1);
}

.border-b-eva-red-orange-appt\/0 {
  border-bottom-color: rgba(217, 154, 118, 0);
}

.border-b-eva-red-orange-appt\/10 {
  border-bottom-color: rgba(217, 154, 118, 0.1);
}

.border-b-eva-red-orange-appt\/100 {
  border-bottom-color: rgba(217, 154, 118, 1);
}

.border-b-eva-red-orange-appt\/15 {
  border-bottom-color: rgba(217, 154, 118, 0.15);
}

.border-b-eva-red-orange-appt\/20 {
  border-bottom-color: rgba(217, 154, 118, 0.2);
}

.border-b-eva-red-orange-appt\/25 {
  border-bottom-color: rgba(217, 154, 118, 0.25);
}

.border-b-eva-red-orange-appt\/30 {
  border-bottom-color: rgba(217, 154, 118, 0.3);
}

.border-b-eva-red-orange-appt\/35 {
  border-bottom-color: rgba(217, 154, 118, 0.35);
}

.border-b-eva-red-orange-appt\/40 {
  border-bottom-color: rgba(217, 154, 118, 0.4);
}

.border-b-eva-red-orange-appt\/45 {
  border-bottom-color: rgba(217, 154, 118, 0.45);
}

.border-b-eva-red-orange-appt\/5 {
  border-bottom-color: rgba(217, 154, 118, 0.05);
}

.border-b-eva-red-orange-appt\/50 {
  border-bottom-color: rgba(217, 154, 118, 0.5);
}

.border-b-eva-red-orange-appt\/55 {
  border-bottom-color: rgba(217, 154, 118, 0.55);
}

.border-b-eva-red-orange-appt\/60 {
  border-bottom-color: rgba(217, 154, 118, 0.6);
}

.border-b-eva-red-orange-appt\/65 {
  border-bottom-color: rgba(217, 154, 118, 0.65);
}

.border-b-eva-red-orange-appt\/70 {
  border-bottom-color: rgba(217, 154, 118, 0.7);
}

.border-b-eva-red-orange-appt\/75 {
  border-bottom-color: rgba(217, 154, 118, 0.75);
}

.border-b-eva-red-orange-appt\/80 {
  border-bottom-color: rgba(217, 154, 118, 0.8);
}

.border-b-eva-red-orange-appt\/85 {
  border-bottom-color: rgba(217, 154, 118, 0.85);
}

.border-b-eva-red-orange-appt\/90 {
  border-bottom-color: rgba(217, 154, 118, 0.9);
}

.border-b-eva-red-orange-appt\/95 {
  border-bottom-color: rgba(217, 154, 118, 0.95);
}

.border-b-eva-red\/0 {
  border-bottom-color: rgb(234 101 101 / 0);
}

.border-b-eva-red\/10 {
  border-bottom-color: rgb(234 101 101 / 0.1);
}

.border-b-eva-red\/100 {
  border-bottom-color: rgb(234 101 101 / 1);
}

.border-b-eva-red\/15 {
  border-bottom-color: rgb(234 101 101 / 0.15);
}

.border-b-eva-red\/20 {
  border-bottom-color: rgb(234 101 101 / 0.2);
}

.border-b-eva-red\/25 {
  border-bottom-color: rgb(234 101 101 / 0.25);
}

.border-b-eva-red\/30 {
  border-bottom-color: rgb(234 101 101 / 0.3);
}

.border-b-eva-red\/35 {
  border-bottom-color: rgb(234 101 101 / 0.35);
}

.border-b-eva-red\/40 {
  border-bottom-color: rgb(234 101 101 / 0.4);
}

.border-b-eva-red\/45 {
  border-bottom-color: rgb(234 101 101 / 0.45);
}

.border-b-eva-red\/5 {
  border-bottom-color: rgb(234 101 101 / 0.05);
}

.border-b-eva-red\/50 {
  border-bottom-color: rgb(234 101 101 / 0.5);
}

.border-b-eva-red\/55 {
  border-bottom-color: rgb(234 101 101 / 0.55);
}

.border-b-eva-red\/60 {
  border-bottom-color: rgb(234 101 101 / 0.6);
}

.border-b-eva-red\/65 {
  border-bottom-color: rgb(234 101 101 / 0.65);
}

.border-b-eva-red\/70 {
  border-bottom-color: rgb(234 101 101 / 0.7);
}

.border-b-eva-red\/75 {
  border-bottom-color: rgb(234 101 101 / 0.75);
}

.border-b-eva-red\/80 {
  border-bottom-color: rgb(234 101 101 / 0.8);
}

.border-b-eva-red\/85 {
  border-bottom-color: rgb(234 101 101 / 0.85);
}

.border-b-eva-red\/90 {
  border-bottom-color: rgb(234 101 101 / 0.9);
}

.border-b-eva-red\/95 {
  border-bottom-color: rgb(234 101 101 / 0.95);
}

.border-b-eva-teal-appt {
  --tw-border-opacity: 1;
  border-bottom-color: rgba(22, 172, 151, var(--tw-border-opacity, 1));
}

.border-b-eva-teal-appt\/0 {
  border-bottom-color: rgba(22, 172, 151, 0);
}

.border-b-eva-teal-appt\/10 {
  border-bottom-color: rgba(22, 172, 151, 0.1);
}

.border-b-eva-teal-appt\/100 {
  border-bottom-color: rgba(22, 172, 151, 1);
}

.border-b-eva-teal-appt\/15 {
  border-bottom-color: rgba(22, 172, 151, 0.15);
}

.border-b-eva-teal-appt\/20 {
  border-bottom-color: rgba(22, 172, 151, 0.2);
}

.border-b-eva-teal-appt\/25 {
  border-bottom-color: rgba(22, 172, 151, 0.25);
}

.border-b-eva-teal-appt\/30 {
  border-bottom-color: rgba(22, 172, 151, 0.3);
}

.border-b-eva-teal-appt\/35 {
  border-bottom-color: rgba(22, 172, 151, 0.35);
}

.border-b-eva-teal-appt\/40 {
  border-bottom-color: rgba(22, 172, 151, 0.4);
}

.border-b-eva-teal-appt\/45 {
  border-bottom-color: rgba(22, 172, 151, 0.45);
}

.border-b-eva-teal-appt\/5 {
  border-bottom-color: rgba(22, 172, 151, 0.05);
}

.border-b-eva-teal-appt\/50 {
  border-bottom-color: rgba(22, 172, 151, 0.5);
}

.border-b-eva-teal-appt\/55 {
  border-bottom-color: rgba(22, 172, 151, 0.55);
}

.border-b-eva-teal-appt\/60 {
  border-bottom-color: rgba(22, 172, 151, 0.6);
}

.border-b-eva-teal-appt\/65 {
  border-bottom-color: rgba(22, 172, 151, 0.65);
}

.border-b-eva-teal-appt\/70 {
  border-bottom-color: rgba(22, 172, 151, 0.7);
}

.border-b-eva-teal-appt\/75 {
  border-bottom-color: rgba(22, 172, 151, 0.75);
}

.border-b-eva-teal-appt\/80 {
  border-bottom-color: rgba(22, 172, 151, 0.8);
}

.border-b-eva-teal-appt\/85 {
  border-bottom-color: rgba(22, 172, 151, 0.85);
}

.border-b-eva-teal-appt\/90 {
  border-bottom-color: rgba(22, 172, 151, 0.9);
}

.border-b-eva-teal-appt\/95 {
  border-bottom-color: rgba(22, 172, 151, 0.95);
}

.border-b-eva-yellow {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(233 179 98 / var(--tw-border-opacity, 1));
}

.border-b-eva-yellow-appt {
  border-bottom-color: rgba(240, 226, 0, 1);
}

.border-b-eva-yellow-appt\/0 {
  border-bottom-color: rgba(240, 226, 0, 0);
}

.border-b-eva-yellow-appt\/10 {
  border-bottom-color: rgba(240, 226, 0, 0.1);
}

.border-b-eva-yellow-appt\/100 {
  border-bottom-color: rgba(240, 226, 0, 1);
}

.border-b-eva-yellow-appt\/15 {
  border-bottom-color: rgba(240, 226, 0, 0.15);
}

.border-b-eva-yellow-appt\/20 {
  border-bottom-color: rgba(240, 226, 0, 0.2);
}

.border-b-eva-yellow-appt\/25 {
  border-bottom-color: rgba(240, 226, 0, 0.25);
}

.border-b-eva-yellow-appt\/30 {
  border-bottom-color: rgba(240, 226, 0, 0.3);
}

.border-b-eva-yellow-appt\/35 {
  border-bottom-color: rgba(240, 226, 0, 0.35);
}

.border-b-eva-yellow-appt\/40 {
  border-bottom-color: rgba(240, 226, 0, 0.4);
}

.border-b-eva-yellow-appt\/45 {
  border-bottom-color: rgba(240, 226, 0, 0.45);
}

.border-b-eva-yellow-appt\/5 {
  border-bottom-color: rgba(240, 226, 0, 0.05);
}

.border-b-eva-yellow-appt\/50 {
  border-bottom-color: rgba(240, 226, 0, 0.5);
}

.border-b-eva-yellow-appt\/55 {
  border-bottom-color: rgba(240, 226, 0, 0.55);
}

.border-b-eva-yellow-appt\/60 {
  border-bottom-color: rgba(240, 226, 0, 0.6);
}

.border-b-eva-yellow-appt\/65 {
  border-bottom-color: rgba(240, 226, 0, 0.65);
}

.border-b-eva-yellow-appt\/70 {
  border-bottom-color: rgba(240, 226, 0, 0.7);
}

.border-b-eva-yellow-appt\/75 {
  border-bottom-color: rgba(240, 226, 0, 0.75);
}

.border-b-eva-yellow-appt\/80 {
  border-bottom-color: rgba(240, 226, 0, 0.8);
}

.border-b-eva-yellow-appt\/85 {
  border-bottom-color: rgba(240, 226, 0, 0.85);
}

.border-b-eva-yellow-appt\/90 {
  border-bottom-color: rgba(240, 226, 0, 0.9);
}

.border-b-eva-yellow-appt\/95 {
  border-bottom-color: rgba(240, 226, 0, 0.95);
}

.border-b-eva-yellow\/0 {
  border-bottom-color: rgb(233 179 98 / 0);
}

.border-b-eva-yellow\/10 {
  border-bottom-color: rgb(233 179 98 / 0.1);
}

.border-b-eva-yellow\/100 {
  border-bottom-color: rgb(233 179 98 / 1);
}

.border-b-eva-yellow\/15 {
  border-bottom-color: rgb(233 179 98 / 0.15);
}

.border-b-eva-yellow\/20 {
  border-bottom-color: rgb(233 179 98 / 0.2);
}

.border-b-eva-yellow\/25 {
  border-bottom-color: rgb(233 179 98 / 0.25);
}

.border-b-eva-yellow\/30 {
  border-bottom-color: rgb(233 179 98 / 0.3);
}

.border-b-eva-yellow\/35 {
  border-bottom-color: rgb(233 179 98 / 0.35);
}

.border-b-eva-yellow\/40 {
  border-bottom-color: rgb(233 179 98 / 0.4);
}

.border-b-eva-yellow\/45 {
  border-bottom-color: rgb(233 179 98 / 0.45);
}

.border-b-eva-yellow\/5 {
  border-bottom-color: rgb(233 179 98 / 0.05);
}

.border-b-eva-yellow\/50 {
  border-bottom-color: rgb(233 179 98 / 0.5);
}

.border-b-eva-yellow\/55 {
  border-bottom-color: rgb(233 179 98 / 0.55);
}

.border-b-eva-yellow\/60 {
  border-bottom-color: rgb(233 179 98 / 0.6);
}

.border-b-eva-yellow\/65 {
  border-bottom-color: rgb(233 179 98 / 0.65);
}

.border-b-eva-yellow\/70 {
  border-bottom-color: rgb(233 179 98 / 0.7);
}

.border-b-eva-yellow\/75 {
  border-bottom-color: rgb(233 179 98 / 0.75);
}

.border-b-eva-yellow\/80 {
  border-bottom-color: rgb(233 179 98 / 0.8);
}

.border-b-eva-yellow\/85 {
  border-bottom-color: rgb(233 179 98 / 0.85);
}

.border-b-eva-yellow\/90 {
  border-bottom-color: rgb(233 179 98 / 0.9);
}

.border-b-eva-yellow\/95 {
  border-bottom-color: rgb(233 179 98 / 0.95);
}

.border-b-gray-100 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(245 245 245 / var(--tw-border-opacity, 1));
}

.border-b-gray-100\/0 {
  border-bottom-color: rgb(245 245 245 / 0);
}

.border-b-gray-100\/10 {
  border-bottom-color: rgb(245 245 245 / 0.1);
}

.border-b-gray-100\/100 {
  border-bottom-color: rgb(245 245 245 / 1);
}

.border-b-gray-100\/15 {
  border-bottom-color: rgb(245 245 245 / 0.15);
}

.border-b-gray-100\/20 {
  border-bottom-color: rgb(245 245 245 / 0.2);
}

.border-b-gray-100\/25 {
  border-bottom-color: rgb(245 245 245 / 0.25);
}

.border-b-gray-100\/30 {
  border-bottom-color: rgb(245 245 245 / 0.3);
}

.border-b-gray-100\/35 {
  border-bottom-color: rgb(245 245 245 / 0.35);
}

.border-b-gray-100\/40 {
  border-bottom-color: rgb(245 245 245 / 0.4);
}

.border-b-gray-100\/45 {
  border-bottom-color: rgb(245 245 245 / 0.45);
}

.border-b-gray-100\/5 {
  border-bottom-color: rgb(245 245 245 / 0.05);
}

.border-b-gray-100\/50 {
  border-bottom-color: rgb(245 245 245 / 0.5);
}

.border-b-gray-100\/55 {
  border-bottom-color: rgb(245 245 245 / 0.55);
}

.border-b-gray-100\/60 {
  border-bottom-color: rgb(245 245 245 / 0.6);
}

.border-b-gray-100\/65 {
  border-bottom-color: rgb(245 245 245 / 0.65);
}

.border-b-gray-100\/70 {
  border-bottom-color: rgb(245 245 245 / 0.7);
}

.border-b-gray-100\/75 {
  border-bottom-color: rgb(245 245 245 / 0.75);
}

.border-b-gray-100\/80 {
  border-bottom-color: rgb(245 245 245 / 0.8);
}

.border-b-gray-100\/85 {
  border-bottom-color: rgb(245 245 245 / 0.85);
}

.border-b-gray-100\/90 {
  border-bottom-color: rgb(245 245 245 / 0.9);
}

.border-b-gray-100\/95 {
  border-bottom-color: rgb(245 245 245 / 0.95);
}

.border-b-gray-200 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
}

.border-b-gray-200\/0 {
  border-bottom-color: rgb(229 229 229 / 0);
}

.border-b-gray-200\/10 {
  border-bottom-color: rgb(229 229 229 / 0.1);
}

.border-b-gray-200\/100 {
  border-bottom-color: rgb(229 229 229 / 1);
}

.border-b-gray-200\/15 {
  border-bottom-color: rgb(229 229 229 / 0.15);
}

.border-b-gray-200\/20 {
  border-bottom-color: rgb(229 229 229 / 0.2);
}

.border-b-gray-200\/25 {
  border-bottom-color: rgb(229 229 229 / 0.25);
}

.border-b-gray-200\/30 {
  border-bottom-color: rgb(229 229 229 / 0.3);
}

.border-b-gray-200\/35 {
  border-bottom-color: rgb(229 229 229 / 0.35);
}

.border-b-gray-200\/40 {
  border-bottom-color: rgb(229 229 229 / 0.4);
}

.border-b-gray-200\/45 {
  border-bottom-color: rgb(229 229 229 / 0.45);
}

.border-b-gray-200\/5 {
  border-bottom-color: rgb(229 229 229 / 0.05);
}

.border-b-gray-200\/50 {
  border-bottom-color: rgb(229 229 229 / 0.5);
}

.border-b-gray-200\/55 {
  border-bottom-color: rgb(229 229 229 / 0.55);
}

.border-b-gray-200\/60 {
  border-bottom-color: rgb(229 229 229 / 0.6);
}

.border-b-gray-200\/65 {
  border-bottom-color: rgb(229 229 229 / 0.65);
}

.border-b-gray-200\/70 {
  border-bottom-color: rgb(229 229 229 / 0.7);
}

.border-b-gray-200\/75 {
  border-bottom-color: rgb(229 229 229 / 0.75);
}

.border-b-gray-200\/80 {
  border-bottom-color: rgb(229 229 229 / 0.8);
}

.border-b-gray-200\/85 {
  border-bottom-color: rgb(229 229 229 / 0.85);
}

.border-b-gray-200\/90 {
  border-bottom-color: rgb(229 229 229 / 0.9);
}

.border-b-gray-200\/95 {
  border-bottom-color: rgb(229 229 229 / 0.95);
}

.border-b-gray-300 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(212 212 212 / var(--tw-border-opacity, 1));
}

.border-b-gray-300\/0 {
  border-bottom-color: rgb(212 212 212 / 0);
}

.border-b-gray-300\/10 {
  border-bottom-color: rgb(212 212 212 / 0.1);
}

.border-b-gray-300\/100 {
  border-bottom-color: rgb(212 212 212 / 1);
}

.border-b-gray-300\/15 {
  border-bottom-color: rgb(212 212 212 / 0.15);
}

.border-b-gray-300\/20 {
  border-bottom-color: rgb(212 212 212 / 0.2);
}

.border-b-gray-300\/25 {
  border-bottom-color: rgb(212 212 212 / 0.25);
}

.border-b-gray-300\/30 {
  border-bottom-color: rgb(212 212 212 / 0.3);
}

.border-b-gray-300\/35 {
  border-bottom-color: rgb(212 212 212 / 0.35);
}

.border-b-gray-300\/40 {
  border-bottom-color: rgb(212 212 212 / 0.4);
}

.border-b-gray-300\/45 {
  border-bottom-color: rgb(212 212 212 / 0.45);
}

.border-b-gray-300\/5 {
  border-bottom-color: rgb(212 212 212 / 0.05);
}

.border-b-gray-300\/50 {
  border-bottom-color: rgb(212 212 212 / 0.5);
}

.border-b-gray-300\/55 {
  border-bottom-color: rgb(212 212 212 / 0.55);
}

.border-b-gray-300\/60 {
  border-bottom-color: rgb(212 212 212 / 0.6);
}

.border-b-gray-300\/65 {
  border-bottom-color: rgb(212 212 212 / 0.65);
}

.border-b-gray-300\/70 {
  border-bottom-color: rgb(212 212 212 / 0.7);
}

.border-b-gray-300\/75 {
  border-bottom-color: rgb(212 212 212 / 0.75);
}

.border-b-gray-300\/80 {
  border-bottom-color: rgb(212 212 212 / 0.8);
}

.border-b-gray-300\/85 {
  border-bottom-color: rgb(212 212 212 / 0.85);
}

.border-b-gray-300\/90 {
  border-bottom-color: rgb(212 212 212 / 0.9);
}

.border-b-gray-300\/95 {
  border-bottom-color: rgb(212 212 212 / 0.95);
}

.border-b-gray-400 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(163 163 163 / var(--tw-border-opacity, 1));
}

.border-b-gray-400\/0 {
  border-bottom-color: rgb(163 163 163 / 0);
}

.border-b-gray-400\/10 {
  border-bottom-color: rgb(163 163 163 / 0.1);
}

.border-b-gray-400\/100 {
  border-bottom-color: rgb(163 163 163 / 1);
}

.border-b-gray-400\/15 {
  border-bottom-color: rgb(163 163 163 / 0.15);
}

.border-b-gray-400\/20 {
  border-bottom-color: rgb(163 163 163 / 0.2);
}

.border-b-gray-400\/25 {
  border-bottom-color: rgb(163 163 163 / 0.25);
}

.border-b-gray-400\/30 {
  border-bottom-color: rgb(163 163 163 / 0.3);
}

.border-b-gray-400\/35 {
  border-bottom-color: rgb(163 163 163 / 0.35);
}

.border-b-gray-400\/40 {
  border-bottom-color: rgb(163 163 163 / 0.4);
}

.border-b-gray-400\/45 {
  border-bottom-color: rgb(163 163 163 / 0.45);
}

.border-b-gray-400\/5 {
  border-bottom-color: rgb(163 163 163 / 0.05);
}

.border-b-gray-400\/50 {
  border-bottom-color: rgb(163 163 163 / 0.5);
}

.border-b-gray-400\/55 {
  border-bottom-color: rgb(163 163 163 / 0.55);
}

.border-b-gray-400\/60 {
  border-bottom-color: rgb(163 163 163 / 0.6);
}

.border-b-gray-400\/65 {
  border-bottom-color: rgb(163 163 163 / 0.65);
}

.border-b-gray-400\/70 {
  border-bottom-color: rgb(163 163 163 / 0.7);
}

.border-b-gray-400\/75 {
  border-bottom-color: rgb(163 163 163 / 0.75);
}

.border-b-gray-400\/80 {
  border-bottom-color: rgb(163 163 163 / 0.8);
}

.border-b-gray-400\/85 {
  border-bottom-color: rgb(163 163 163 / 0.85);
}

.border-b-gray-400\/90 {
  border-bottom-color: rgb(163 163 163 / 0.9);
}

.border-b-gray-400\/95 {
  border-bottom-color: rgb(163 163 163 / 0.95);
}

.border-b-gray-50 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(250 250 250 / var(--tw-border-opacity, 1));
}

.border-b-gray-50\/0 {
  border-bottom-color: rgb(250 250 250 / 0);
}

.border-b-gray-50\/10 {
  border-bottom-color: rgb(250 250 250 / 0.1);
}

.border-b-gray-50\/100 {
  border-bottom-color: rgb(250 250 250 / 1);
}

.border-b-gray-50\/15 {
  border-bottom-color: rgb(250 250 250 / 0.15);
}

.border-b-gray-50\/20 {
  border-bottom-color: rgb(250 250 250 / 0.2);
}

.border-b-gray-50\/25 {
  border-bottom-color: rgb(250 250 250 / 0.25);
}

.border-b-gray-50\/30 {
  border-bottom-color: rgb(250 250 250 / 0.3);
}

.border-b-gray-50\/35 {
  border-bottom-color: rgb(250 250 250 / 0.35);
}

.border-b-gray-50\/40 {
  border-bottom-color: rgb(250 250 250 / 0.4);
}

.border-b-gray-50\/45 {
  border-bottom-color: rgb(250 250 250 / 0.45);
}

.border-b-gray-50\/5 {
  border-bottom-color: rgb(250 250 250 / 0.05);
}

.border-b-gray-50\/50 {
  border-bottom-color: rgb(250 250 250 / 0.5);
}

.border-b-gray-50\/55 {
  border-bottom-color: rgb(250 250 250 / 0.55);
}

.border-b-gray-50\/60 {
  border-bottom-color: rgb(250 250 250 / 0.6);
}

.border-b-gray-50\/65 {
  border-bottom-color: rgb(250 250 250 / 0.65);
}

.border-b-gray-50\/70 {
  border-bottom-color: rgb(250 250 250 / 0.7);
}

.border-b-gray-50\/75 {
  border-bottom-color: rgb(250 250 250 / 0.75);
}

.border-b-gray-50\/80 {
  border-bottom-color: rgb(250 250 250 / 0.8);
}

.border-b-gray-50\/85 {
  border-bottom-color: rgb(250 250 250 / 0.85);
}

.border-b-gray-50\/90 {
  border-bottom-color: rgb(250 250 250 / 0.9);
}

.border-b-gray-50\/95 {
  border-bottom-color: rgb(250 250 250 / 0.95);
}

.border-b-gray-500 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(115 115 115 / var(--tw-border-opacity, 1));
}

.border-b-gray-500\/0 {
  border-bottom-color: rgb(115 115 115 / 0);
}

.border-b-gray-500\/10 {
  border-bottom-color: rgb(115 115 115 / 0.1);
}

.border-b-gray-500\/100 {
  border-bottom-color: rgb(115 115 115 / 1);
}

.border-b-gray-500\/15 {
  border-bottom-color: rgb(115 115 115 / 0.15);
}

.border-b-gray-500\/20 {
  border-bottom-color: rgb(115 115 115 / 0.2);
}

.border-b-gray-500\/25 {
  border-bottom-color: rgb(115 115 115 / 0.25);
}

.border-b-gray-500\/30 {
  border-bottom-color: rgb(115 115 115 / 0.3);
}

.border-b-gray-500\/35 {
  border-bottom-color: rgb(115 115 115 / 0.35);
}

.border-b-gray-500\/40 {
  border-bottom-color: rgb(115 115 115 / 0.4);
}

.border-b-gray-500\/45 {
  border-bottom-color: rgb(115 115 115 / 0.45);
}

.border-b-gray-500\/5 {
  border-bottom-color: rgb(115 115 115 / 0.05);
}

.border-b-gray-500\/50 {
  border-bottom-color: rgb(115 115 115 / 0.5);
}

.border-b-gray-500\/55 {
  border-bottom-color: rgb(115 115 115 / 0.55);
}

.border-b-gray-500\/60 {
  border-bottom-color: rgb(115 115 115 / 0.6);
}

.border-b-gray-500\/65 {
  border-bottom-color: rgb(115 115 115 / 0.65);
}

.border-b-gray-500\/70 {
  border-bottom-color: rgb(115 115 115 / 0.7);
}

.border-b-gray-500\/75 {
  border-bottom-color: rgb(115 115 115 / 0.75);
}

.border-b-gray-500\/80 {
  border-bottom-color: rgb(115 115 115 / 0.8);
}

.border-b-gray-500\/85 {
  border-bottom-color: rgb(115 115 115 / 0.85);
}

.border-b-gray-500\/90 {
  border-bottom-color: rgb(115 115 115 / 0.9);
}

.border-b-gray-500\/95 {
  border-bottom-color: rgb(115 115 115 / 0.95);
}

.border-b-gray-600 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(82 82 82 / var(--tw-border-opacity, 1));
}

.border-b-gray-600\/0 {
  border-bottom-color: rgb(82 82 82 / 0);
}

.border-b-gray-600\/10 {
  border-bottom-color: rgb(82 82 82 / 0.1);
}

.border-b-gray-600\/100 {
  border-bottom-color: rgb(82 82 82 / 1);
}

.border-b-gray-600\/15 {
  border-bottom-color: rgb(82 82 82 / 0.15);
}

.border-b-gray-600\/20 {
  border-bottom-color: rgb(82 82 82 / 0.2);
}

.border-b-gray-600\/25 {
  border-bottom-color: rgb(82 82 82 / 0.25);
}

.border-b-gray-600\/30 {
  border-bottom-color: rgb(82 82 82 / 0.3);
}

.border-b-gray-600\/35 {
  border-bottom-color: rgb(82 82 82 / 0.35);
}

.border-b-gray-600\/40 {
  border-bottom-color: rgb(82 82 82 / 0.4);
}

.border-b-gray-600\/45 {
  border-bottom-color: rgb(82 82 82 / 0.45);
}

.border-b-gray-600\/5 {
  border-bottom-color: rgb(82 82 82 / 0.05);
}

.border-b-gray-600\/50 {
  border-bottom-color: rgb(82 82 82 / 0.5);
}

.border-b-gray-600\/55 {
  border-bottom-color: rgb(82 82 82 / 0.55);
}

.border-b-gray-600\/60 {
  border-bottom-color: rgb(82 82 82 / 0.6);
}

.border-b-gray-600\/65 {
  border-bottom-color: rgb(82 82 82 / 0.65);
}

.border-b-gray-600\/70 {
  border-bottom-color: rgb(82 82 82 / 0.7);
}

.border-b-gray-600\/75 {
  border-bottom-color: rgb(82 82 82 / 0.75);
}

.border-b-gray-600\/80 {
  border-bottom-color: rgb(82 82 82 / 0.8);
}

.border-b-gray-600\/85 {
  border-bottom-color: rgb(82 82 82 / 0.85);
}

.border-b-gray-600\/90 {
  border-bottom-color: rgb(82 82 82 / 0.9);
}

.border-b-gray-600\/95 {
  border-bottom-color: rgb(82 82 82 / 0.95);
}

.border-b-gray-700 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(64 64 64 / var(--tw-border-opacity, 1));
}

.border-b-gray-700\/0 {
  border-bottom-color: rgb(64 64 64 / 0);
}

.border-b-gray-700\/10 {
  border-bottom-color: rgb(64 64 64 / 0.1);
}

.border-b-gray-700\/100 {
  border-bottom-color: rgb(64 64 64 / 1);
}

.border-b-gray-700\/15 {
  border-bottom-color: rgb(64 64 64 / 0.15);
}

.border-b-gray-700\/20 {
  border-bottom-color: rgb(64 64 64 / 0.2);
}

.border-b-gray-700\/25 {
  border-bottom-color: rgb(64 64 64 / 0.25);
}

.border-b-gray-700\/30 {
  border-bottom-color: rgb(64 64 64 / 0.3);
}

.border-b-gray-700\/35 {
  border-bottom-color: rgb(64 64 64 / 0.35);
}

.border-b-gray-700\/40 {
  border-bottom-color: rgb(64 64 64 / 0.4);
}

.border-b-gray-700\/45 {
  border-bottom-color: rgb(64 64 64 / 0.45);
}

.border-b-gray-700\/5 {
  border-bottom-color: rgb(64 64 64 / 0.05);
}

.border-b-gray-700\/50 {
  border-bottom-color: rgb(64 64 64 / 0.5);
}

.border-b-gray-700\/55 {
  border-bottom-color: rgb(64 64 64 / 0.55);
}

.border-b-gray-700\/60 {
  border-bottom-color: rgb(64 64 64 / 0.6);
}

.border-b-gray-700\/65 {
  border-bottom-color: rgb(64 64 64 / 0.65);
}

.border-b-gray-700\/70 {
  border-bottom-color: rgb(64 64 64 / 0.7);
}

.border-b-gray-700\/75 {
  border-bottom-color: rgb(64 64 64 / 0.75);
}

.border-b-gray-700\/80 {
  border-bottom-color: rgb(64 64 64 / 0.8);
}

.border-b-gray-700\/85 {
  border-bottom-color: rgb(64 64 64 / 0.85);
}

.border-b-gray-700\/90 {
  border-bottom-color: rgb(64 64 64 / 0.9);
}

.border-b-gray-700\/95 {
  border-bottom-color: rgb(64 64 64 / 0.95);
}

.border-b-gray-800 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(38 38 38 / var(--tw-border-opacity, 1));
}

.border-b-gray-800\/0 {
  border-bottom-color: rgb(38 38 38 / 0);
}

.border-b-gray-800\/10 {
  border-bottom-color: rgb(38 38 38 / 0.1);
}

.border-b-gray-800\/100 {
  border-bottom-color: rgb(38 38 38 / 1);
}

.border-b-gray-800\/15 {
  border-bottom-color: rgb(38 38 38 / 0.15);
}

.border-b-gray-800\/20 {
  border-bottom-color: rgb(38 38 38 / 0.2);
}

.border-b-gray-800\/25 {
  border-bottom-color: rgb(38 38 38 / 0.25);
}

.border-b-gray-800\/30 {
  border-bottom-color: rgb(38 38 38 / 0.3);
}

.border-b-gray-800\/35 {
  border-bottom-color: rgb(38 38 38 / 0.35);
}

.border-b-gray-800\/40 {
  border-bottom-color: rgb(38 38 38 / 0.4);
}

.border-b-gray-800\/45 {
  border-bottom-color: rgb(38 38 38 / 0.45);
}

.border-b-gray-800\/5 {
  border-bottom-color: rgb(38 38 38 / 0.05);
}

.border-b-gray-800\/50 {
  border-bottom-color: rgb(38 38 38 / 0.5);
}

.border-b-gray-800\/55 {
  border-bottom-color: rgb(38 38 38 / 0.55);
}

.border-b-gray-800\/60 {
  border-bottom-color: rgb(38 38 38 / 0.6);
}

.border-b-gray-800\/65 {
  border-bottom-color: rgb(38 38 38 / 0.65);
}

.border-b-gray-800\/70 {
  border-bottom-color: rgb(38 38 38 / 0.7);
}

.border-b-gray-800\/75 {
  border-bottom-color: rgb(38 38 38 / 0.75);
}

.border-b-gray-800\/80 {
  border-bottom-color: rgb(38 38 38 / 0.8);
}

.border-b-gray-800\/85 {
  border-bottom-color: rgb(38 38 38 / 0.85);
}

.border-b-gray-800\/90 {
  border-bottom-color: rgb(38 38 38 / 0.9);
}

.border-b-gray-800\/95 {
  border-bottom-color: rgb(38 38 38 / 0.95);
}

.border-b-gray-900 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(23 23 23 / var(--tw-border-opacity, 1));
}

.border-b-gray-900\/0 {
  border-bottom-color: rgb(23 23 23 / 0);
}

.border-b-gray-900\/10 {
  border-bottom-color: rgb(23 23 23 / 0.1);
}

.border-b-gray-900\/100 {
  border-bottom-color: rgb(23 23 23 / 1);
}

.border-b-gray-900\/15 {
  border-bottom-color: rgb(23 23 23 / 0.15);
}

.border-b-gray-900\/20 {
  border-bottom-color: rgb(23 23 23 / 0.2);
}

.border-b-gray-900\/25 {
  border-bottom-color: rgb(23 23 23 / 0.25);
}

.border-b-gray-900\/30 {
  border-bottom-color: rgb(23 23 23 / 0.3);
}

.border-b-gray-900\/35 {
  border-bottom-color: rgb(23 23 23 / 0.35);
}

.border-b-gray-900\/40 {
  border-bottom-color: rgb(23 23 23 / 0.4);
}

.border-b-gray-900\/45 {
  border-bottom-color: rgb(23 23 23 / 0.45);
}

.border-b-gray-900\/5 {
  border-bottom-color: rgb(23 23 23 / 0.05);
}

.border-b-gray-900\/50 {
  border-bottom-color: rgb(23 23 23 / 0.5);
}

.border-b-gray-900\/55 {
  border-bottom-color: rgb(23 23 23 / 0.55);
}

.border-b-gray-900\/60 {
  border-bottom-color: rgb(23 23 23 / 0.6);
}

.border-b-gray-900\/65 {
  border-bottom-color: rgb(23 23 23 / 0.65);
}

.border-b-gray-900\/70 {
  border-bottom-color: rgb(23 23 23 / 0.7);
}

.border-b-gray-900\/75 {
  border-bottom-color: rgb(23 23 23 / 0.75);
}

.border-b-gray-900\/80 {
  border-bottom-color: rgb(23 23 23 / 0.8);
}

.border-b-gray-900\/85 {
  border-bottom-color: rgb(23 23 23 / 0.85);
}

.border-b-gray-900\/90 {
  border-bottom-color: rgb(23 23 23 / 0.9);
}

.border-b-gray-900\/95 {
  border-bottom-color: rgb(23 23 23 / 0.95);
}

.border-b-gray-950 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(10 10 10 / var(--tw-border-opacity, 1));
}

.border-b-gray-950\/0 {
  border-bottom-color: rgb(10 10 10 / 0);
}

.border-b-gray-950\/10 {
  border-bottom-color: rgb(10 10 10 / 0.1);
}

.border-b-gray-950\/100 {
  border-bottom-color: rgb(10 10 10 / 1);
}

.border-b-gray-950\/15 {
  border-bottom-color: rgb(10 10 10 / 0.15);
}

.border-b-gray-950\/20 {
  border-bottom-color: rgb(10 10 10 / 0.2);
}

.border-b-gray-950\/25 {
  border-bottom-color: rgb(10 10 10 / 0.25);
}

.border-b-gray-950\/30 {
  border-bottom-color: rgb(10 10 10 / 0.3);
}

.border-b-gray-950\/35 {
  border-bottom-color: rgb(10 10 10 / 0.35);
}

.border-b-gray-950\/40 {
  border-bottom-color: rgb(10 10 10 / 0.4);
}

.border-b-gray-950\/45 {
  border-bottom-color: rgb(10 10 10 / 0.45);
}

.border-b-gray-950\/5 {
  border-bottom-color: rgb(10 10 10 / 0.05);
}

.border-b-gray-950\/50 {
  border-bottom-color: rgb(10 10 10 / 0.5);
}

.border-b-gray-950\/55 {
  border-bottom-color: rgb(10 10 10 / 0.55);
}

.border-b-gray-950\/60 {
  border-bottom-color: rgb(10 10 10 / 0.6);
}

.border-b-gray-950\/65 {
  border-bottom-color: rgb(10 10 10 / 0.65);
}

.border-b-gray-950\/70 {
  border-bottom-color: rgb(10 10 10 / 0.7);
}

.border-b-gray-950\/75 {
  border-bottom-color: rgb(10 10 10 / 0.75);
}

.border-b-gray-950\/80 {
  border-bottom-color: rgb(10 10 10 / 0.8);
}

.border-b-gray-950\/85 {
  border-bottom-color: rgb(10 10 10 / 0.85);
}

.border-b-gray-950\/90 {
  border-bottom-color: rgb(10 10 10 / 0.9);
}

.border-b-gray-950\/95 {
  border-bottom-color: rgb(10 10 10 / 0.95);
}

.border-b-green-100 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(220 252 231 / var(--tw-border-opacity, 1));
}

.border-b-green-100\/0 {
  border-bottom-color: rgb(220 252 231 / 0);
}

.border-b-green-100\/10 {
  border-bottom-color: rgb(220 252 231 / 0.1);
}

.border-b-green-100\/100 {
  border-bottom-color: rgb(220 252 231 / 1);
}

.border-b-green-100\/15 {
  border-bottom-color: rgb(220 252 231 / 0.15);
}

.border-b-green-100\/20 {
  border-bottom-color: rgb(220 252 231 / 0.2);
}

.border-b-green-100\/25 {
  border-bottom-color: rgb(220 252 231 / 0.25);
}

.border-b-green-100\/30 {
  border-bottom-color: rgb(220 252 231 / 0.3);
}

.border-b-green-100\/35 {
  border-bottom-color: rgb(220 252 231 / 0.35);
}

.border-b-green-100\/40 {
  border-bottom-color: rgb(220 252 231 / 0.4);
}

.border-b-green-100\/45 {
  border-bottom-color: rgb(220 252 231 / 0.45);
}

.border-b-green-100\/5 {
  border-bottom-color: rgb(220 252 231 / 0.05);
}

.border-b-green-100\/50 {
  border-bottom-color: rgb(220 252 231 / 0.5);
}

.border-b-green-100\/55 {
  border-bottom-color: rgb(220 252 231 / 0.55);
}

.border-b-green-100\/60 {
  border-bottom-color: rgb(220 252 231 / 0.6);
}

.border-b-green-100\/65 {
  border-bottom-color: rgb(220 252 231 / 0.65);
}

.border-b-green-100\/70 {
  border-bottom-color: rgb(220 252 231 / 0.7);
}

.border-b-green-100\/75 {
  border-bottom-color: rgb(220 252 231 / 0.75);
}

.border-b-green-100\/80 {
  border-bottom-color: rgb(220 252 231 / 0.8);
}

.border-b-green-100\/85 {
  border-bottom-color: rgb(220 252 231 / 0.85);
}

.border-b-green-100\/90 {
  border-bottom-color: rgb(220 252 231 / 0.9);
}

.border-b-green-100\/95 {
  border-bottom-color: rgb(220 252 231 / 0.95);
}

.border-b-green-200 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
}

.border-b-green-200\/0 {
  border-bottom-color: rgb(187 247 208 / 0);
}

.border-b-green-200\/10 {
  border-bottom-color: rgb(187 247 208 / 0.1);
}

.border-b-green-200\/100 {
  border-bottom-color: rgb(187 247 208 / 1);
}

.border-b-green-200\/15 {
  border-bottom-color: rgb(187 247 208 / 0.15);
}

.border-b-green-200\/20 {
  border-bottom-color: rgb(187 247 208 / 0.2);
}

.border-b-green-200\/25 {
  border-bottom-color: rgb(187 247 208 / 0.25);
}

.border-b-green-200\/30 {
  border-bottom-color: rgb(187 247 208 / 0.3);
}

.border-b-green-200\/35 {
  border-bottom-color: rgb(187 247 208 / 0.35);
}

.border-b-green-200\/40 {
  border-bottom-color: rgb(187 247 208 / 0.4);
}

.border-b-green-200\/45 {
  border-bottom-color: rgb(187 247 208 / 0.45);
}

.border-b-green-200\/5 {
  border-bottom-color: rgb(187 247 208 / 0.05);
}

.border-b-green-200\/50 {
  border-bottom-color: rgb(187 247 208 / 0.5);
}

.border-b-green-200\/55 {
  border-bottom-color: rgb(187 247 208 / 0.55);
}

.border-b-green-200\/60 {
  border-bottom-color: rgb(187 247 208 / 0.6);
}

.border-b-green-200\/65 {
  border-bottom-color: rgb(187 247 208 / 0.65);
}

.border-b-green-200\/70 {
  border-bottom-color: rgb(187 247 208 / 0.7);
}

.border-b-green-200\/75 {
  border-bottom-color: rgb(187 247 208 / 0.75);
}

.border-b-green-200\/80 {
  border-bottom-color: rgb(187 247 208 / 0.8);
}

.border-b-green-200\/85 {
  border-bottom-color: rgb(187 247 208 / 0.85);
}

.border-b-green-200\/90 {
  border-bottom-color: rgb(187 247 208 / 0.9);
}

.border-b-green-200\/95 {
  border-bottom-color: rgb(187 247 208 / 0.95);
}

.border-b-green-300 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(134 239 172 / var(--tw-border-opacity, 1));
}

.border-b-green-300\/0 {
  border-bottom-color: rgb(134 239 172 / 0);
}

.border-b-green-300\/10 {
  border-bottom-color: rgb(134 239 172 / 0.1);
}

.border-b-green-300\/100 {
  border-bottom-color: rgb(134 239 172 / 1);
}

.border-b-green-300\/15 {
  border-bottom-color: rgb(134 239 172 / 0.15);
}

.border-b-green-300\/20 {
  border-bottom-color: rgb(134 239 172 / 0.2);
}

.border-b-green-300\/25 {
  border-bottom-color: rgb(134 239 172 / 0.25);
}

.border-b-green-300\/30 {
  border-bottom-color: rgb(134 239 172 / 0.3);
}

.border-b-green-300\/35 {
  border-bottom-color: rgb(134 239 172 / 0.35);
}

.border-b-green-300\/40 {
  border-bottom-color: rgb(134 239 172 / 0.4);
}

.border-b-green-300\/45 {
  border-bottom-color: rgb(134 239 172 / 0.45);
}

.border-b-green-300\/5 {
  border-bottom-color: rgb(134 239 172 / 0.05);
}

.border-b-green-300\/50 {
  border-bottom-color: rgb(134 239 172 / 0.5);
}

.border-b-green-300\/55 {
  border-bottom-color: rgb(134 239 172 / 0.55);
}

.border-b-green-300\/60 {
  border-bottom-color: rgb(134 239 172 / 0.6);
}

.border-b-green-300\/65 {
  border-bottom-color: rgb(134 239 172 / 0.65);
}

.border-b-green-300\/70 {
  border-bottom-color: rgb(134 239 172 / 0.7);
}

.border-b-green-300\/75 {
  border-bottom-color: rgb(134 239 172 / 0.75);
}

.border-b-green-300\/80 {
  border-bottom-color: rgb(134 239 172 / 0.8);
}

.border-b-green-300\/85 {
  border-bottom-color: rgb(134 239 172 / 0.85);
}

.border-b-green-300\/90 {
  border-bottom-color: rgb(134 239 172 / 0.9);
}

.border-b-green-300\/95 {
  border-bottom-color: rgb(134 239 172 / 0.95);
}

.border-b-green-400 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(74 222 128 / var(--tw-border-opacity, 1));
}

.border-b-green-400\/0 {
  border-bottom-color: rgb(74 222 128 / 0);
}

.border-b-green-400\/10 {
  border-bottom-color: rgb(74 222 128 / 0.1);
}

.border-b-green-400\/100 {
  border-bottom-color: rgb(74 222 128 / 1);
}

.border-b-green-400\/15 {
  border-bottom-color: rgb(74 222 128 / 0.15);
}

.border-b-green-400\/20 {
  border-bottom-color: rgb(74 222 128 / 0.2);
}

.border-b-green-400\/25 {
  border-bottom-color: rgb(74 222 128 / 0.25);
}

.border-b-green-400\/30 {
  border-bottom-color: rgb(74 222 128 / 0.3);
}

.border-b-green-400\/35 {
  border-bottom-color: rgb(74 222 128 / 0.35);
}

.border-b-green-400\/40 {
  border-bottom-color: rgb(74 222 128 / 0.4);
}

.border-b-green-400\/45 {
  border-bottom-color: rgb(74 222 128 / 0.45);
}

.border-b-green-400\/5 {
  border-bottom-color: rgb(74 222 128 / 0.05);
}

.border-b-green-400\/50 {
  border-bottom-color: rgb(74 222 128 / 0.5);
}

.border-b-green-400\/55 {
  border-bottom-color: rgb(74 222 128 / 0.55);
}

.border-b-green-400\/60 {
  border-bottom-color: rgb(74 222 128 / 0.6);
}

.border-b-green-400\/65 {
  border-bottom-color: rgb(74 222 128 / 0.65);
}

.border-b-green-400\/70 {
  border-bottom-color: rgb(74 222 128 / 0.7);
}

.border-b-green-400\/75 {
  border-bottom-color: rgb(74 222 128 / 0.75);
}

.border-b-green-400\/80 {
  border-bottom-color: rgb(74 222 128 / 0.8);
}

.border-b-green-400\/85 {
  border-bottom-color: rgb(74 222 128 / 0.85);
}

.border-b-green-400\/90 {
  border-bottom-color: rgb(74 222 128 / 0.9);
}

.border-b-green-400\/95 {
  border-bottom-color: rgb(74 222 128 / 0.95);
}

.border-b-green-50 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(240 253 244 / var(--tw-border-opacity, 1));
}

.border-b-green-50\/0 {
  border-bottom-color: rgb(240 253 244 / 0);
}

.border-b-green-50\/10 {
  border-bottom-color: rgb(240 253 244 / 0.1);
}

.border-b-green-50\/100 {
  border-bottom-color: rgb(240 253 244 / 1);
}

.border-b-green-50\/15 {
  border-bottom-color: rgb(240 253 244 / 0.15);
}

.border-b-green-50\/20 {
  border-bottom-color: rgb(240 253 244 / 0.2);
}

.border-b-green-50\/25 {
  border-bottom-color: rgb(240 253 244 / 0.25);
}

.border-b-green-50\/30 {
  border-bottom-color: rgb(240 253 244 / 0.3);
}

.border-b-green-50\/35 {
  border-bottom-color: rgb(240 253 244 / 0.35);
}

.border-b-green-50\/40 {
  border-bottom-color: rgb(240 253 244 / 0.4);
}

.border-b-green-50\/45 {
  border-bottom-color: rgb(240 253 244 / 0.45);
}

.border-b-green-50\/5 {
  border-bottom-color: rgb(240 253 244 / 0.05);
}

.border-b-green-50\/50 {
  border-bottom-color: rgb(240 253 244 / 0.5);
}

.border-b-green-50\/55 {
  border-bottom-color: rgb(240 253 244 / 0.55);
}

.border-b-green-50\/60 {
  border-bottom-color: rgb(240 253 244 / 0.6);
}

.border-b-green-50\/65 {
  border-bottom-color: rgb(240 253 244 / 0.65);
}

.border-b-green-50\/70 {
  border-bottom-color: rgb(240 253 244 / 0.7);
}

.border-b-green-50\/75 {
  border-bottom-color: rgb(240 253 244 / 0.75);
}

.border-b-green-50\/80 {
  border-bottom-color: rgb(240 253 244 / 0.8);
}

.border-b-green-50\/85 {
  border-bottom-color: rgb(240 253 244 / 0.85);
}

.border-b-green-50\/90 {
  border-bottom-color: rgb(240 253 244 / 0.9);
}

.border-b-green-50\/95 {
  border-bottom-color: rgb(240 253 244 / 0.95);
}

.border-b-green-500 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
}

.border-b-green-500\/0 {
  border-bottom-color: rgb(34 197 94 / 0);
}

.border-b-green-500\/10 {
  border-bottom-color: rgb(34 197 94 / 0.1);
}

.border-b-green-500\/100 {
  border-bottom-color: rgb(34 197 94 / 1);
}

.border-b-green-500\/15 {
  border-bottom-color: rgb(34 197 94 / 0.15);
}

.border-b-green-500\/20 {
  border-bottom-color: rgb(34 197 94 / 0.2);
}

.border-b-green-500\/25 {
  border-bottom-color: rgb(34 197 94 / 0.25);
}

.border-b-green-500\/30 {
  border-bottom-color: rgb(34 197 94 / 0.3);
}

.border-b-green-500\/35 {
  border-bottom-color: rgb(34 197 94 / 0.35);
}

.border-b-green-500\/40 {
  border-bottom-color: rgb(34 197 94 / 0.4);
}

.border-b-green-500\/45 {
  border-bottom-color: rgb(34 197 94 / 0.45);
}

.border-b-green-500\/5 {
  border-bottom-color: rgb(34 197 94 / 0.05);
}

.border-b-green-500\/50 {
  border-bottom-color: rgb(34 197 94 / 0.5);
}

.border-b-green-500\/55 {
  border-bottom-color: rgb(34 197 94 / 0.55);
}

.border-b-green-500\/60 {
  border-bottom-color: rgb(34 197 94 / 0.6);
}

.border-b-green-500\/65 {
  border-bottom-color: rgb(34 197 94 / 0.65);
}

.border-b-green-500\/70 {
  border-bottom-color: rgb(34 197 94 / 0.7);
}

.border-b-green-500\/75 {
  border-bottom-color: rgb(34 197 94 / 0.75);
}

.border-b-green-500\/80 {
  border-bottom-color: rgb(34 197 94 / 0.8);
}

.border-b-green-500\/85 {
  border-bottom-color: rgb(34 197 94 / 0.85);
}

.border-b-green-500\/90 {
  border-bottom-color: rgb(34 197 94 / 0.9);
}

.border-b-green-500\/95 {
  border-bottom-color: rgb(34 197 94 / 0.95);
}

.border-b-green-600 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(22 163 74 / var(--tw-border-opacity, 1));
}

.border-b-green-600\/0 {
  border-bottom-color: rgb(22 163 74 / 0);
}

.border-b-green-600\/10 {
  border-bottom-color: rgb(22 163 74 / 0.1);
}

.border-b-green-600\/100 {
  border-bottom-color: rgb(22 163 74 / 1);
}

.border-b-green-600\/15 {
  border-bottom-color: rgb(22 163 74 / 0.15);
}

.border-b-green-600\/20 {
  border-bottom-color: rgb(22 163 74 / 0.2);
}

.border-b-green-600\/25 {
  border-bottom-color: rgb(22 163 74 / 0.25);
}

.border-b-green-600\/30 {
  border-bottom-color: rgb(22 163 74 / 0.3);
}

.border-b-green-600\/35 {
  border-bottom-color: rgb(22 163 74 / 0.35);
}

.border-b-green-600\/40 {
  border-bottom-color: rgb(22 163 74 / 0.4);
}

.border-b-green-600\/45 {
  border-bottom-color: rgb(22 163 74 / 0.45);
}

.border-b-green-600\/5 {
  border-bottom-color: rgb(22 163 74 / 0.05);
}

.border-b-green-600\/50 {
  border-bottom-color: rgb(22 163 74 / 0.5);
}

.border-b-green-600\/55 {
  border-bottom-color: rgb(22 163 74 / 0.55);
}

.border-b-green-600\/60 {
  border-bottom-color: rgb(22 163 74 / 0.6);
}

.border-b-green-600\/65 {
  border-bottom-color: rgb(22 163 74 / 0.65);
}

.border-b-green-600\/70 {
  border-bottom-color: rgb(22 163 74 / 0.7);
}

.border-b-green-600\/75 {
  border-bottom-color: rgb(22 163 74 / 0.75);
}

.border-b-green-600\/80 {
  border-bottom-color: rgb(22 163 74 / 0.8);
}

.border-b-green-600\/85 {
  border-bottom-color: rgb(22 163 74 / 0.85);
}

.border-b-green-600\/90 {
  border-bottom-color: rgb(22 163 74 / 0.9);
}

.border-b-green-600\/95 {
  border-bottom-color: rgb(22 163 74 / 0.95);
}

.border-b-green-700 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(21 128 61 / var(--tw-border-opacity, 1));
}

.border-b-green-700\/0 {
  border-bottom-color: rgb(21 128 61 / 0);
}

.border-b-green-700\/10 {
  border-bottom-color: rgb(21 128 61 / 0.1);
}

.border-b-green-700\/100 {
  border-bottom-color: rgb(21 128 61 / 1);
}

.border-b-green-700\/15 {
  border-bottom-color: rgb(21 128 61 / 0.15);
}

.border-b-green-700\/20 {
  border-bottom-color: rgb(21 128 61 / 0.2);
}

.border-b-green-700\/25 {
  border-bottom-color: rgb(21 128 61 / 0.25);
}

.border-b-green-700\/30 {
  border-bottom-color: rgb(21 128 61 / 0.3);
}

.border-b-green-700\/35 {
  border-bottom-color: rgb(21 128 61 / 0.35);
}

.border-b-green-700\/40 {
  border-bottom-color: rgb(21 128 61 / 0.4);
}

.border-b-green-700\/45 {
  border-bottom-color: rgb(21 128 61 / 0.45);
}

.border-b-green-700\/5 {
  border-bottom-color: rgb(21 128 61 / 0.05);
}

.border-b-green-700\/50 {
  border-bottom-color: rgb(21 128 61 / 0.5);
}

.border-b-green-700\/55 {
  border-bottom-color: rgb(21 128 61 / 0.55);
}

.border-b-green-700\/60 {
  border-bottom-color: rgb(21 128 61 / 0.6);
}

.border-b-green-700\/65 {
  border-bottom-color: rgb(21 128 61 / 0.65);
}

.border-b-green-700\/70 {
  border-bottom-color: rgb(21 128 61 / 0.7);
}

.border-b-green-700\/75 {
  border-bottom-color: rgb(21 128 61 / 0.75);
}

.border-b-green-700\/80 {
  border-bottom-color: rgb(21 128 61 / 0.8);
}

.border-b-green-700\/85 {
  border-bottom-color: rgb(21 128 61 / 0.85);
}

.border-b-green-700\/90 {
  border-bottom-color: rgb(21 128 61 / 0.9);
}

.border-b-green-700\/95 {
  border-bottom-color: rgb(21 128 61 / 0.95);
}

.border-b-green-800 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(22 101 52 / var(--tw-border-opacity, 1));
}

.border-b-green-800\/0 {
  border-bottom-color: rgb(22 101 52 / 0);
}

.border-b-green-800\/10 {
  border-bottom-color: rgb(22 101 52 / 0.1);
}

.border-b-green-800\/100 {
  border-bottom-color: rgb(22 101 52 / 1);
}

.border-b-green-800\/15 {
  border-bottom-color: rgb(22 101 52 / 0.15);
}

.border-b-green-800\/20 {
  border-bottom-color: rgb(22 101 52 / 0.2);
}

.border-b-green-800\/25 {
  border-bottom-color: rgb(22 101 52 / 0.25);
}

.border-b-green-800\/30 {
  border-bottom-color: rgb(22 101 52 / 0.3);
}

.border-b-green-800\/35 {
  border-bottom-color: rgb(22 101 52 / 0.35);
}

.border-b-green-800\/40 {
  border-bottom-color: rgb(22 101 52 / 0.4);
}

.border-b-green-800\/45 {
  border-bottom-color: rgb(22 101 52 / 0.45);
}

.border-b-green-800\/5 {
  border-bottom-color: rgb(22 101 52 / 0.05);
}

.border-b-green-800\/50 {
  border-bottom-color: rgb(22 101 52 / 0.5);
}

.border-b-green-800\/55 {
  border-bottom-color: rgb(22 101 52 / 0.55);
}

.border-b-green-800\/60 {
  border-bottom-color: rgb(22 101 52 / 0.6);
}

.border-b-green-800\/65 {
  border-bottom-color: rgb(22 101 52 / 0.65);
}

.border-b-green-800\/70 {
  border-bottom-color: rgb(22 101 52 / 0.7);
}

.border-b-green-800\/75 {
  border-bottom-color: rgb(22 101 52 / 0.75);
}

.border-b-green-800\/80 {
  border-bottom-color: rgb(22 101 52 / 0.8);
}

.border-b-green-800\/85 {
  border-bottom-color: rgb(22 101 52 / 0.85);
}

.border-b-green-800\/90 {
  border-bottom-color: rgb(22 101 52 / 0.9);
}

.border-b-green-800\/95 {
  border-bottom-color: rgb(22 101 52 / 0.95);
}

.border-b-green-900 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(20 83 45 / var(--tw-border-opacity, 1));
}

.border-b-green-900\/0 {
  border-bottom-color: rgb(20 83 45 / 0);
}

.border-b-green-900\/10 {
  border-bottom-color: rgb(20 83 45 / 0.1);
}

.border-b-green-900\/100 {
  border-bottom-color: rgb(20 83 45 / 1);
}

.border-b-green-900\/15 {
  border-bottom-color: rgb(20 83 45 / 0.15);
}

.border-b-green-900\/20 {
  border-bottom-color: rgb(20 83 45 / 0.2);
}

.border-b-green-900\/25 {
  border-bottom-color: rgb(20 83 45 / 0.25);
}

.border-b-green-900\/30 {
  border-bottom-color: rgb(20 83 45 / 0.3);
}

.border-b-green-900\/35 {
  border-bottom-color: rgb(20 83 45 / 0.35);
}

.border-b-green-900\/40 {
  border-bottom-color: rgb(20 83 45 / 0.4);
}

.border-b-green-900\/45 {
  border-bottom-color: rgb(20 83 45 / 0.45);
}

.border-b-green-900\/5 {
  border-bottom-color: rgb(20 83 45 / 0.05);
}

.border-b-green-900\/50 {
  border-bottom-color: rgb(20 83 45 / 0.5);
}

.border-b-green-900\/55 {
  border-bottom-color: rgb(20 83 45 / 0.55);
}

.border-b-green-900\/60 {
  border-bottom-color: rgb(20 83 45 / 0.6);
}

.border-b-green-900\/65 {
  border-bottom-color: rgb(20 83 45 / 0.65);
}

.border-b-green-900\/70 {
  border-bottom-color: rgb(20 83 45 / 0.7);
}

.border-b-green-900\/75 {
  border-bottom-color: rgb(20 83 45 / 0.75);
}

.border-b-green-900\/80 {
  border-bottom-color: rgb(20 83 45 / 0.8);
}

.border-b-green-900\/85 {
  border-bottom-color: rgb(20 83 45 / 0.85);
}

.border-b-green-900\/90 {
  border-bottom-color: rgb(20 83 45 / 0.9);
}

.border-b-green-900\/95 {
  border-bottom-color: rgb(20 83 45 / 0.95);
}

.border-b-green-950 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(5 46 22 / var(--tw-border-opacity, 1));
}

.border-b-green-950\/0 {
  border-bottom-color: rgb(5 46 22 / 0);
}

.border-b-green-950\/10 {
  border-bottom-color: rgb(5 46 22 / 0.1);
}

.border-b-green-950\/100 {
  border-bottom-color: rgb(5 46 22 / 1);
}

.border-b-green-950\/15 {
  border-bottom-color: rgb(5 46 22 / 0.15);
}

.border-b-green-950\/20 {
  border-bottom-color: rgb(5 46 22 / 0.2);
}

.border-b-green-950\/25 {
  border-bottom-color: rgb(5 46 22 / 0.25);
}

.border-b-green-950\/30 {
  border-bottom-color: rgb(5 46 22 / 0.3);
}

.border-b-green-950\/35 {
  border-bottom-color: rgb(5 46 22 / 0.35);
}

.border-b-green-950\/40 {
  border-bottom-color: rgb(5 46 22 / 0.4);
}

.border-b-green-950\/45 {
  border-bottom-color: rgb(5 46 22 / 0.45);
}

.border-b-green-950\/5 {
  border-bottom-color: rgb(5 46 22 / 0.05);
}

.border-b-green-950\/50 {
  border-bottom-color: rgb(5 46 22 / 0.5);
}

.border-b-green-950\/55 {
  border-bottom-color: rgb(5 46 22 / 0.55);
}

.border-b-green-950\/60 {
  border-bottom-color: rgb(5 46 22 / 0.6);
}

.border-b-green-950\/65 {
  border-bottom-color: rgb(5 46 22 / 0.65);
}

.border-b-green-950\/70 {
  border-bottom-color: rgb(5 46 22 / 0.7);
}

.border-b-green-950\/75 {
  border-bottom-color: rgb(5 46 22 / 0.75);
}

.border-b-green-950\/80 {
  border-bottom-color: rgb(5 46 22 / 0.8);
}

.border-b-green-950\/85 {
  border-bottom-color: rgb(5 46 22 / 0.85);
}

.border-b-green-950\/90 {
  border-bottom-color: rgb(5 46 22 / 0.9);
}

.border-b-green-950\/95 {
  border-bottom-color: rgb(5 46 22 / 0.95);
}

.border-b-red-100 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(254 226 226 / var(--tw-border-opacity, 1));
}

.border-b-red-100\/0 {
  border-bottom-color: rgb(254 226 226 / 0);
}

.border-b-red-100\/10 {
  border-bottom-color: rgb(254 226 226 / 0.1);
}

.border-b-red-100\/100 {
  border-bottom-color: rgb(254 226 226 / 1);
}

.border-b-red-100\/15 {
  border-bottom-color: rgb(254 226 226 / 0.15);
}

.border-b-red-100\/20 {
  border-bottom-color: rgb(254 226 226 / 0.2);
}

.border-b-red-100\/25 {
  border-bottom-color: rgb(254 226 226 / 0.25);
}

.border-b-red-100\/30 {
  border-bottom-color: rgb(254 226 226 / 0.3);
}

.border-b-red-100\/35 {
  border-bottom-color: rgb(254 226 226 / 0.35);
}

.border-b-red-100\/40 {
  border-bottom-color: rgb(254 226 226 / 0.4);
}

.border-b-red-100\/45 {
  border-bottom-color: rgb(254 226 226 / 0.45);
}

.border-b-red-100\/5 {
  border-bottom-color: rgb(254 226 226 / 0.05);
}

.border-b-red-100\/50 {
  border-bottom-color: rgb(254 226 226 / 0.5);
}

.border-b-red-100\/55 {
  border-bottom-color: rgb(254 226 226 / 0.55);
}

.border-b-red-100\/60 {
  border-bottom-color: rgb(254 226 226 / 0.6);
}

.border-b-red-100\/65 {
  border-bottom-color: rgb(254 226 226 / 0.65);
}

.border-b-red-100\/70 {
  border-bottom-color: rgb(254 226 226 / 0.7);
}

.border-b-red-100\/75 {
  border-bottom-color: rgb(254 226 226 / 0.75);
}

.border-b-red-100\/80 {
  border-bottom-color: rgb(254 226 226 / 0.8);
}

.border-b-red-100\/85 {
  border-bottom-color: rgb(254 226 226 / 0.85);
}

.border-b-red-100\/90 {
  border-bottom-color: rgb(254 226 226 / 0.9);
}

.border-b-red-100\/95 {
  border-bottom-color: rgb(254 226 226 / 0.95);
}

.border-b-red-200 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}

.border-b-red-200\/0 {
  border-bottom-color: rgb(254 202 202 / 0);
}

.border-b-red-200\/10 {
  border-bottom-color: rgb(254 202 202 / 0.1);
}

.border-b-red-200\/100 {
  border-bottom-color: rgb(254 202 202 / 1);
}

.border-b-red-200\/15 {
  border-bottom-color: rgb(254 202 202 / 0.15);
}

.border-b-red-200\/20 {
  border-bottom-color: rgb(254 202 202 / 0.2);
}

.border-b-red-200\/25 {
  border-bottom-color: rgb(254 202 202 / 0.25);
}

.border-b-red-200\/30 {
  border-bottom-color: rgb(254 202 202 / 0.3);
}

.border-b-red-200\/35 {
  border-bottom-color: rgb(254 202 202 / 0.35);
}

.border-b-red-200\/40 {
  border-bottom-color: rgb(254 202 202 / 0.4);
}

.border-b-red-200\/45 {
  border-bottom-color: rgb(254 202 202 / 0.45);
}

.border-b-red-200\/5 {
  border-bottom-color: rgb(254 202 202 / 0.05);
}

.border-b-red-200\/50 {
  border-bottom-color: rgb(254 202 202 / 0.5);
}

.border-b-red-200\/55 {
  border-bottom-color: rgb(254 202 202 / 0.55);
}

.border-b-red-200\/60 {
  border-bottom-color: rgb(254 202 202 / 0.6);
}

.border-b-red-200\/65 {
  border-bottom-color: rgb(254 202 202 / 0.65);
}

.border-b-red-200\/70 {
  border-bottom-color: rgb(254 202 202 / 0.7);
}

.border-b-red-200\/75 {
  border-bottom-color: rgb(254 202 202 / 0.75);
}

.border-b-red-200\/80 {
  border-bottom-color: rgb(254 202 202 / 0.8);
}

.border-b-red-200\/85 {
  border-bottom-color: rgb(254 202 202 / 0.85);
}

.border-b-red-200\/90 {
  border-bottom-color: rgb(254 202 202 / 0.9);
}

.border-b-red-200\/95 {
  border-bottom-color: rgb(254 202 202 / 0.95);
}

.border-b-red-300 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
}

.border-b-red-300\/0 {
  border-bottom-color: rgb(252 165 165 / 0);
}

.border-b-red-300\/10 {
  border-bottom-color: rgb(252 165 165 / 0.1);
}

.border-b-red-300\/100 {
  border-bottom-color: rgb(252 165 165 / 1);
}

.border-b-red-300\/15 {
  border-bottom-color: rgb(252 165 165 / 0.15);
}

.border-b-red-300\/20 {
  border-bottom-color: rgb(252 165 165 / 0.2);
}

.border-b-red-300\/25 {
  border-bottom-color: rgb(252 165 165 / 0.25);
}

.border-b-red-300\/30 {
  border-bottom-color: rgb(252 165 165 / 0.3);
}

.border-b-red-300\/35 {
  border-bottom-color: rgb(252 165 165 / 0.35);
}

.border-b-red-300\/40 {
  border-bottom-color: rgb(252 165 165 / 0.4);
}

.border-b-red-300\/45 {
  border-bottom-color: rgb(252 165 165 / 0.45);
}

.border-b-red-300\/5 {
  border-bottom-color: rgb(252 165 165 / 0.05);
}

.border-b-red-300\/50 {
  border-bottom-color: rgb(252 165 165 / 0.5);
}

.border-b-red-300\/55 {
  border-bottom-color: rgb(252 165 165 / 0.55);
}

.border-b-red-300\/60 {
  border-bottom-color: rgb(252 165 165 / 0.6);
}

.border-b-red-300\/65 {
  border-bottom-color: rgb(252 165 165 / 0.65);
}

.border-b-red-300\/70 {
  border-bottom-color: rgb(252 165 165 / 0.7);
}

.border-b-red-300\/75 {
  border-bottom-color: rgb(252 165 165 / 0.75);
}

.border-b-red-300\/80 {
  border-bottom-color: rgb(252 165 165 / 0.8);
}

.border-b-red-300\/85 {
  border-bottom-color: rgb(252 165 165 / 0.85);
}

.border-b-red-300\/90 {
  border-bottom-color: rgb(252 165 165 / 0.9);
}

.border-b-red-300\/95 {
  border-bottom-color: rgb(252 165 165 / 0.95);
}

.border-b-red-400 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(248 113 113 / var(--tw-border-opacity, 1));
}

.border-b-red-400\/0 {
  border-bottom-color: rgb(248 113 113 / 0);
}

.border-b-red-400\/10 {
  border-bottom-color: rgb(248 113 113 / 0.1);
}

.border-b-red-400\/100 {
  border-bottom-color: rgb(248 113 113 / 1);
}

.border-b-red-400\/15 {
  border-bottom-color: rgb(248 113 113 / 0.15);
}

.border-b-red-400\/20 {
  border-bottom-color: rgb(248 113 113 / 0.2);
}

.border-b-red-400\/25 {
  border-bottom-color: rgb(248 113 113 / 0.25);
}

.border-b-red-400\/30 {
  border-bottom-color: rgb(248 113 113 / 0.3);
}

.border-b-red-400\/35 {
  border-bottom-color: rgb(248 113 113 / 0.35);
}

.border-b-red-400\/40 {
  border-bottom-color: rgb(248 113 113 / 0.4);
}

.border-b-red-400\/45 {
  border-bottom-color: rgb(248 113 113 / 0.45);
}

.border-b-red-400\/5 {
  border-bottom-color: rgb(248 113 113 / 0.05);
}

.border-b-red-400\/50 {
  border-bottom-color: rgb(248 113 113 / 0.5);
}

.border-b-red-400\/55 {
  border-bottom-color: rgb(248 113 113 / 0.55);
}

.border-b-red-400\/60 {
  border-bottom-color: rgb(248 113 113 / 0.6);
}

.border-b-red-400\/65 {
  border-bottom-color: rgb(248 113 113 / 0.65);
}

.border-b-red-400\/70 {
  border-bottom-color: rgb(248 113 113 / 0.7);
}

.border-b-red-400\/75 {
  border-bottom-color: rgb(248 113 113 / 0.75);
}

.border-b-red-400\/80 {
  border-bottom-color: rgb(248 113 113 / 0.8);
}

.border-b-red-400\/85 {
  border-bottom-color: rgb(248 113 113 / 0.85);
}

.border-b-red-400\/90 {
  border-bottom-color: rgb(248 113 113 / 0.9);
}

.border-b-red-400\/95 {
  border-bottom-color: rgb(248 113 113 / 0.95);
}

.border-b-red-50 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(254 242 242 / var(--tw-border-opacity, 1));
}

.border-b-red-50\/0 {
  border-bottom-color: rgb(254 242 242 / 0);
}

.border-b-red-50\/10 {
  border-bottom-color: rgb(254 242 242 / 0.1);
}

.border-b-red-50\/100 {
  border-bottom-color: rgb(254 242 242 / 1);
}

.border-b-red-50\/15 {
  border-bottom-color: rgb(254 242 242 / 0.15);
}

.border-b-red-50\/20 {
  border-bottom-color: rgb(254 242 242 / 0.2);
}

.border-b-red-50\/25 {
  border-bottom-color: rgb(254 242 242 / 0.25);
}

.border-b-red-50\/30 {
  border-bottom-color: rgb(254 242 242 / 0.3);
}

.border-b-red-50\/35 {
  border-bottom-color: rgb(254 242 242 / 0.35);
}

.border-b-red-50\/40 {
  border-bottom-color: rgb(254 242 242 / 0.4);
}

.border-b-red-50\/45 {
  border-bottom-color: rgb(254 242 242 / 0.45);
}

.border-b-red-50\/5 {
  border-bottom-color: rgb(254 242 242 / 0.05);
}

.border-b-red-50\/50 {
  border-bottom-color: rgb(254 242 242 / 0.5);
}

.border-b-red-50\/55 {
  border-bottom-color: rgb(254 242 242 / 0.55);
}

.border-b-red-50\/60 {
  border-bottom-color: rgb(254 242 242 / 0.6);
}

.border-b-red-50\/65 {
  border-bottom-color: rgb(254 242 242 / 0.65);
}

.border-b-red-50\/70 {
  border-bottom-color: rgb(254 242 242 / 0.7);
}

.border-b-red-50\/75 {
  border-bottom-color: rgb(254 242 242 / 0.75);
}

.border-b-red-50\/80 {
  border-bottom-color: rgb(254 242 242 / 0.8);
}

.border-b-red-50\/85 {
  border-bottom-color: rgb(254 242 242 / 0.85);
}

.border-b-red-50\/90 {
  border-bottom-color: rgb(254 242 242 / 0.9);
}

.border-b-red-50\/95 {
  border-bottom-color: rgb(254 242 242 / 0.95);
}

.border-b-red-500 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}

.border-b-red-500\/0 {
  border-bottom-color: rgb(239 68 68 / 0);
}

.border-b-red-500\/10 {
  border-bottom-color: rgb(239 68 68 / 0.1);
}

.border-b-red-500\/100 {
  border-bottom-color: rgb(239 68 68 / 1);
}

.border-b-red-500\/15 {
  border-bottom-color: rgb(239 68 68 / 0.15);
}

.border-b-red-500\/20 {
  border-bottom-color: rgb(239 68 68 / 0.2);
}

.border-b-red-500\/25 {
  border-bottom-color: rgb(239 68 68 / 0.25);
}

.border-b-red-500\/30 {
  border-bottom-color: rgb(239 68 68 / 0.3);
}

.border-b-red-500\/35 {
  border-bottom-color: rgb(239 68 68 / 0.35);
}

.border-b-red-500\/40 {
  border-bottom-color: rgb(239 68 68 / 0.4);
}

.border-b-red-500\/45 {
  border-bottom-color: rgb(239 68 68 / 0.45);
}

.border-b-red-500\/5 {
  border-bottom-color: rgb(239 68 68 / 0.05);
}

.border-b-red-500\/50 {
  border-bottom-color: rgb(239 68 68 / 0.5);
}

.border-b-red-500\/55 {
  border-bottom-color: rgb(239 68 68 / 0.55);
}

.border-b-red-500\/60 {
  border-bottom-color: rgb(239 68 68 / 0.6);
}

.border-b-red-500\/65 {
  border-bottom-color: rgb(239 68 68 / 0.65);
}

.border-b-red-500\/70 {
  border-bottom-color: rgb(239 68 68 / 0.7);
}

.border-b-red-500\/75 {
  border-bottom-color: rgb(239 68 68 / 0.75);
}

.border-b-red-500\/80 {
  border-bottom-color: rgb(239 68 68 / 0.8);
}

.border-b-red-500\/85 {
  border-bottom-color: rgb(239 68 68 / 0.85);
}

.border-b-red-500\/90 {
  border-bottom-color: rgb(239 68 68 / 0.9);
}

.border-b-red-500\/95 {
  border-bottom-color: rgb(239 68 68 / 0.95);
}

.border-b-red-600 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
}

.border-b-red-600\/0 {
  border-bottom-color: rgb(220 38 38 / 0);
}

.border-b-red-600\/10 {
  border-bottom-color: rgb(220 38 38 / 0.1);
}

.border-b-red-600\/100 {
  border-bottom-color: rgb(220 38 38 / 1);
}

.border-b-red-600\/15 {
  border-bottom-color: rgb(220 38 38 / 0.15);
}

.border-b-red-600\/20 {
  border-bottom-color: rgb(220 38 38 / 0.2);
}

.border-b-red-600\/25 {
  border-bottom-color: rgb(220 38 38 / 0.25);
}

.border-b-red-600\/30 {
  border-bottom-color: rgb(220 38 38 / 0.3);
}

.border-b-red-600\/35 {
  border-bottom-color: rgb(220 38 38 / 0.35);
}

.border-b-red-600\/40 {
  border-bottom-color: rgb(220 38 38 / 0.4);
}

.border-b-red-600\/45 {
  border-bottom-color: rgb(220 38 38 / 0.45);
}

.border-b-red-600\/5 {
  border-bottom-color: rgb(220 38 38 / 0.05);
}

.border-b-red-600\/50 {
  border-bottom-color: rgb(220 38 38 / 0.5);
}

.border-b-red-600\/55 {
  border-bottom-color: rgb(220 38 38 / 0.55);
}

.border-b-red-600\/60 {
  border-bottom-color: rgb(220 38 38 / 0.6);
}

.border-b-red-600\/65 {
  border-bottom-color: rgb(220 38 38 / 0.65);
}

.border-b-red-600\/70 {
  border-bottom-color: rgb(220 38 38 / 0.7);
}

.border-b-red-600\/75 {
  border-bottom-color: rgb(220 38 38 / 0.75);
}

.border-b-red-600\/80 {
  border-bottom-color: rgb(220 38 38 / 0.8);
}

.border-b-red-600\/85 {
  border-bottom-color: rgb(220 38 38 / 0.85);
}

.border-b-red-600\/90 {
  border-bottom-color: rgb(220 38 38 / 0.9);
}

.border-b-red-600\/95 {
  border-bottom-color: rgb(220 38 38 / 0.95);
}

.border-b-red-700 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(185 28 28 / var(--tw-border-opacity, 1));
}

.border-b-red-700\/0 {
  border-bottom-color: rgb(185 28 28 / 0);
}

.border-b-red-700\/10 {
  border-bottom-color: rgb(185 28 28 / 0.1);
}

.border-b-red-700\/100 {
  border-bottom-color: rgb(185 28 28 / 1);
}

.border-b-red-700\/15 {
  border-bottom-color: rgb(185 28 28 / 0.15);
}

.border-b-red-700\/20 {
  border-bottom-color: rgb(185 28 28 / 0.2);
}

.border-b-red-700\/25 {
  border-bottom-color: rgb(185 28 28 / 0.25);
}

.border-b-red-700\/30 {
  border-bottom-color: rgb(185 28 28 / 0.3);
}

.border-b-red-700\/35 {
  border-bottom-color: rgb(185 28 28 / 0.35);
}

.border-b-red-700\/40 {
  border-bottom-color: rgb(185 28 28 / 0.4);
}

.border-b-red-700\/45 {
  border-bottom-color: rgb(185 28 28 / 0.45);
}

.border-b-red-700\/5 {
  border-bottom-color: rgb(185 28 28 / 0.05);
}

.border-b-red-700\/50 {
  border-bottom-color: rgb(185 28 28 / 0.5);
}

.border-b-red-700\/55 {
  border-bottom-color: rgb(185 28 28 / 0.55);
}

.border-b-red-700\/60 {
  border-bottom-color: rgb(185 28 28 / 0.6);
}

.border-b-red-700\/65 {
  border-bottom-color: rgb(185 28 28 / 0.65);
}

.border-b-red-700\/70 {
  border-bottom-color: rgb(185 28 28 / 0.7);
}

.border-b-red-700\/75 {
  border-bottom-color: rgb(185 28 28 / 0.75);
}

.border-b-red-700\/80 {
  border-bottom-color: rgb(185 28 28 / 0.8);
}

.border-b-red-700\/85 {
  border-bottom-color: rgb(185 28 28 / 0.85);
}

.border-b-red-700\/90 {
  border-bottom-color: rgb(185 28 28 / 0.9);
}

.border-b-red-700\/95 {
  border-bottom-color: rgb(185 28 28 / 0.95);
}

.border-b-red-800 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(153 27 27 / var(--tw-border-opacity, 1));
}

.border-b-red-800\/0 {
  border-bottom-color: rgb(153 27 27 / 0);
}

.border-b-red-800\/10 {
  border-bottom-color: rgb(153 27 27 / 0.1);
}

.border-b-red-800\/100 {
  border-bottom-color: rgb(153 27 27 / 1);
}

.border-b-red-800\/15 {
  border-bottom-color: rgb(153 27 27 / 0.15);
}

.border-b-red-800\/20 {
  border-bottom-color: rgb(153 27 27 / 0.2);
}

.border-b-red-800\/25 {
  border-bottom-color: rgb(153 27 27 / 0.25);
}

.border-b-red-800\/30 {
  border-bottom-color: rgb(153 27 27 / 0.3);
}

.border-b-red-800\/35 {
  border-bottom-color: rgb(153 27 27 / 0.35);
}

.border-b-red-800\/40 {
  border-bottom-color: rgb(153 27 27 / 0.4);
}

.border-b-red-800\/45 {
  border-bottom-color: rgb(153 27 27 / 0.45);
}

.border-b-red-800\/5 {
  border-bottom-color: rgb(153 27 27 / 0.05);
}

.border-b-red-800\/50 {
  border-bottom-color: rgb(153 27 27 / 0.5);
}

.border-b-red-800\/55 {
  border-bottom-color: rgb(153 27 27 / 0.55);
}

.border-b-red-800\/60 {
  border-bottom-color: rgb(153 27 27 / 0.6);
}

.border-b-red-800\/65 {
  border-bottom-color: rgb(153 27 27 / 0.65);
}

.border-b-red-800\/70 {
  border-bottom-color: rgb(153 27 27 / 0.7);
}

.border-b-red-800\/75 {
  border-bottom-color: rgb(153 27 27 / 0.75);
}

.border-b-red-800\/80 {
  border-bottom-color: rgb(153 27 27 / 0.8);
}

.border-b-red-800\/85 {
  border-bottom-color: rgb(153 27 27 / 0.85);
}

.border-b-red-800\/90 {
  border-bottom-color: rgb(153 27 27 / 0.9);
}

.border-b-red-800\/95 {
  border-bottom-color: rgb(153 27 27 / 0.95);
}

.border-b-red-900 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(127 29 29 / var(--tw-border-opacity, 1));
}

.border-b-red-900\/0 {
  border-bottom-color: rgb(127 29 29 / 0);
}

.border-b-red-900\/10 {
  border-bottom-color: rgb(127 29 29 / 0.1);
}

.border-b-red-900\/100 {
  border-bottom-color: rgb(127 29 29 / 1);
}

.border-b-red-900\/15 {
  border-bottom-color: rgb(127 29 29 / 0.15);
}

.border-b-red-900\/20 {
  border-bottom-color: rgb(127 29 29 / 0.2);
}

.border-b-red-900\/25 {
  border-bottom-color: rgb(127 29 29 / 0.25);
}

.border-b-red-900\/30 {
  border-bottom-color: rgb(127 29 29 / 0.3);
}

.border-b-red-900\/35 {
  border-bottom-color: rgb(127 29 29 / 0.35);
}

.border-b-red-900\/40 {
  border-bottom-color: rgb(127 29 29 / 0.4);
}

.border-b-red-900\/45 {
  border-bottom-color: rgb(127 29 29 / 0.45);
}

.border-b-red-900\/5 {
  border-bottom-color: rgb(127 29 29 / 0.05);
}

.border-b-red-900\/50 {
  border-bottom-color: rgb(127 29 29 / 0.5);
}

.border-b-red-900\/55 {
  border-bottom-color: rgb(127 29 29 / 0.55);
}

.border-b-red-900\/60 {
  border-bottom-color: rgb(127 29 29 / 0.6);
}

.border-b-red-900\/65 {
  border-bottom-color: rgb(127 29 29 / 0.65);
}

.border-b-red-900\/70 {
  border-bottom-color: rgb(127 29 29 / 0.7);
}

.border-b-red-900\/75 {
  border-bottom-color: rgb(127 29 29 / 0.75);
}

.border-b-red-900\/80 {
  border-bottom-color: rgb(127 29 29 / 0.8);
}

.border-b-red-900\/85 {
  border-bottom-color: rgb(127 29 29 / 0.85);
}

.border-b-red-900\/90 {
  border-bottom-color: rgb(127 29 29 / 0.9);
}

.border-b-red-900\/95 {
  border-bottom-color: rgb(127 29 29 / 0.95);
}

.border-b-red-950 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(69 10 10 / var(--tw-border-opacity, 1));
}

.border-b-red-950\/0 {
  border-bottom-color: rgb(69 10 10 / 0);
}

.border-b-red-950\/10 {
  border-bottom-color: rgb(69 10 10 / 0.1);
}

.border-b-red-950\/100 {
  border-bottom-color: rgb(69 10 10 / 1);
}

.border-b-red-950\/15 {
  border-bottom-color: rgb(69 10 10 / 0.15);
}

.border-b-red-950\/20 {
  border-bottom-color: rgb(69 10 10 / 0.2);
}

.border-b-red-950\/25 {
  border-bottom-color: rgb(69 10 10 / 0.25);
}

.border-b-red-950\/30 {
  border-bottom-color: rgb(69 10 10 / 0.3);
}

.border-b-red-950\/35 {
  border-bottom-color: rgb(69 10 10 / 0.35);
}

.border-b-red-950\/40 {
  border-bottom-color: rgb(69 10 10 / 0.4);
}

.border-b-red-950\/45 {
  border-bottom-color: rgb(69 10 10 / 0.45);
}

.border-b-red-950\/5 {
  border-bottom-color: rgb(69 10 10 / 0.05);
}

.border-b-red-950\/50 {
  border-bottom-color: rgb(69 10 10 / 0.5);
}

.border-b-red-950\/55 {
  border-bottom-color: rgb(69 10 10 / 0.55);
}

.border-b-red-950\/60 {
  border-bottom-color: rgb(69 10 10 / 0.6);
}

.border-b-red-950\/65 {
  border-bottom-color: rgb(69 10 10 / 0.65);
}

.border-b-red-950\/70 {
  border-bottom-color: rgb(69 10 10 / 0.7);
}

.border-b-red-950\/75 {
  border-bottom-color: rgb(69 10 10 / 0.75);
}

.border-b-red-950\/80 {
  border-bottom-color: rgb(69 10 10 / 0.8);
}

.border-b-red-950\/85 {
  border-bottom-color: rgb(69 10 10 / 0.85);
}

.border-b-red-950\/90 {
  border-bottom-color: rgb(69 10 10 / 0.9);
}

.border-b-red-950\/95 {
  border-bottom-color: rgb(69 10 10 / 0.95);
}

.border-b-transparent {
  border-bottom-color: transparent;
}

.border-b-transparent\/0 {
  border-bottom-color: rgb(0 0 0 / 0);
}

.border-b-transparent\/10 {
  border-bottom-color: rgb(0 0 0 / 0.1);
}

.border-b-transparent\/100 {
  border-bottom-color: rgb(0 0 0 / 1);
}

.border-b-transparent\/15 {
  border-bottom-color: rgb(0 0 0 / 0.15);
}

.border-b-transparent\/20 {
  border-bottom-color: rgb(0 0 0 / 0.2);
}

.border-b-transparent\/25 {
  border-bottom-color: rgb(0 0 0 / 0.25);
}

.border-b-transparent\/30 {
  border-bottom-color: rgb(0 0 0 / 0.3);
}

.border-b-transparent\/35 {
  border-bottom-color: rgb(0 0 0 / 0.35);
}

.border-b-transparent\/40 {
  border-bottom-color: rgb(0 0 0 / 0.4);
}

.border-b-transparent\/45 {
  border-bottom-color: rgb(0 0 0 / 0.45);
}

.border-b-transparent\/5 {
  border-bottom-color: rgb(0 0 0 / 0.05);
}

.border-b-transparent\/50 {
  border-bottom-color: rgb(0 0 0 / 0.5);
}

.border-b-transparent\/55 {
  border-bottom-color: rgb(0 0 0 / 0.55);
}

.border-b-transparent\/60 {
  border-bottom-color: rgb(0 0 0 / 0.6);
}

.border-b-transparent\/65 {
  border-bottom-color: rgb(0 0 0 / 0.65);
}

.border-b-transparent\/70 {
  border-bottom-color: rgb(0 0 0 / 0.7);
}

.border-b-transparent\/75 {
  border-bottom-color: rgb(0 0 0 / 0.75);
}

.border-b-transparent\/80 {
  border-bottom-color: rgb(0 0 0 / 0.8);
}

.border-b-transparent\/85 {
  border-bottom-color: rgb(0 0 0 / 0.85);
}

.border-b-transparent\/90 {
  border-bottom-color: rgb(0 0 0 / 0.9);
}

.border-b-transparent\/95 {
  border-bottom-color: rgb(0 0 0 / 0.95);
}

.border-b-white {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}

.border-b-white\/0 {
  border-bottom-color: rgb(255 255 255 / 0);
}

.border-b-white\/10 {
  border-bottom-color: rgb(255 255 255 / 0.1);
}

.border-b-white\/100 {
  border-bottom-color: rgb(255 255 255 / 1);
}

.border-b-white\/15 {
  border-bottom-color: rgb(255 255 255 / 0.15);
}

.border-b-white\/20 {
  border-bottom-color: rgb(255 255 255 / 0.2);
}

.border-b-white\/25 {
  border-bottom-color: rgb(255 255 255 / 0.25);
}

.border-b-white\/30 {
  border-bottom-color: rgb(255 255 255 / 0.3);
}

.border-b-white\/35 {
  border-bottom-color: rgb(255 255 255 / 0.35);
}

.border-b-white\/40 {
  border-bottom-color: rgb(255 255 255 / 0.4);
}

.border-b-white\/45 {
  border-bottom-color: rgb(255 255 255 / 0.45);
}

.border-b-white\/5 {
  border-bottom-color: rgb(255 255 255 / 0.05);
}

.border-b-white\/50 {
  border-bottom-color: rgb(255 255 255 / 0.5);
}

.border-b-white\/55 {
  border-bottom-color: rgb(255 255 255 / 0.55);
}

.border-b-white\/60 {
  border-bottom-color: rgb(255 255 255 / 0.6);
}

.border-b-white\/65 {
  border-bottom-color: rgb(255 255 255 / 0.65);
}

.border-b-white\/70 {
  border-bottom-color: rgb(255 255 255 / 0.7);
}

.border-b-white\/75 {
  border-bottom-color: rgb(255 255 255 / 0.75);
}

.border-b-white\/80 {
  border-bottom-color: rgb(255 255 255 / 0.8);
}

.border-b-white\/85 {
  border-bottom-color: rgb(255 255 255 / 0.85);
}

.border-b-white\/90 {
  border-bottom-color: rgb(255 255 255 / 0.9);
}

.border-b-white\/95 {
  border-bottom-color: rgb(255 255 255 / 0.95);
}

.border-e-black {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
}

.border-e-black\/0 {
  border-inline-end-color: rgb(0 0 0 / 0);
}

.border-e-black\/10 {
  border-inline-end-color: rgb(0 0 0 / 0.1);
}

.border-e-black\/100 {
  border-inline-end-color: rgb(0 0 0 / 1);
}

.border-e-black\/15 {
  border-inline-end-color: rgb(0 0 0 / 0.15);
}

.border-e-black\/20 {
  border-inline-end-color: rgb(0 0 0 / 0.2);
}

.border-e-black\/25 {
  border-inline-end-color: rgb(0 0 0 / 0.25);
}

.border-e-black\/30 {
  border-inline-end-color: rgb(0 0 0 / 0.3);
}

.border-e-black\/35 {
  border-inline-end-color: rgb(0 0 0 / 0.35);
}

.border-e-black\/40 {
  border-inline-end-color: rgb(0 0 0 / 0.4);
}

.border-e-black\/45 {
  border-inline-end-color: rgb(0 0 0 / 0.45);
}

.border-e-black\/5 {
  border-inline-end-color: rgb(0 0 0 / 0.05);
}

.border-e-black\/50 {
  border-inline-end-color: rgb(0 0 0 / 0.5);
}

.border-e-black\/55 {
  border-inline-end-color: rgb(0 0 0 / 0.55);
}

.border-e-black\/60 {
  border-inline-end-color: rgb(0 0 0 / 0.6);
}

.border-e-black\/65 {
  border-inline-end-color: rgb(0 0 0 / 0.65);
}

.border-e-black\/70 {
  border-inline-end-color: rgb(0 0 0 / 0.7);
}

.border-e-black\/75 {
  border-inline-end-color: rgb(0 0 0 / 0.75);
}

.border-e-black\/80 {
  border-inline-end-color: rgb(0 0 0 / 0.8);
}

.border-e-black\/85 {
  border-inline-end-color: rgb(0 0 0 / 0.85);
}

.border-e-black\/90 {
  border-inline-end-color: rgb(0 0 0 / 0.9);
}

.border-e-black\/95 {
  border-inline-end-color: rgb(0 0 0 / 0.95);
}

.border-e-blue-100 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(219 234 254 / var(--tw-border-opacity, 1));
}

.border-e-blue-100\/0 {
  border-inline-end-color: rgb(219 234 254 / 0);
}

.border-e-blue-100\/10 {
  border-inline-end-color: rgb(219 234 254 / 0.1);
}

.border-e-blue-100\/100 {
  border-inline-end-color: rgb(219 234 254 / 1);
}

.border-e-blue-100\/15 {
  border-inline-end-color: rgb(219 234 254 / 0.15);
}

.border-e-blue-100\/20 {
  border-inline-end-color: rgb(219 234 254 / 0.2);
}

.border-e-blue-100\/25 {
  border-inline-end-color: rgb(219 234 254 / 0.25);
}

.border-e-blue-100\/30 {
  border-inline-end-color: rgb(219 234 254 / 0.3);
}

.border-e-blue-100\/35 {
  border-inline-end-color: rgb(219 234 254 / 0.35);
}

.border-e-blue-100\/40 {
  border-inline-end-color: rgb(219 234 254 / 0.4);
}

.border-e-blue-100\/45 {
  border-inline-end-color: rgb(219 234 254 / 0.45);
}

.border-e-blue-100\/5 {
  border-inline-end-color: rgb(219 234 254 / 0.05);
}

.border-e-blue-100\/50 {
  border-inline-end-color: rgb(219 234 254 / 0.5);
}

.border-e-blue-100\/55 {
  border-inline-end-color: rgb(219 234 254 / 0.55);
}

.border-e-blue-100\/60 {
  border-inline-end-color: rgb(219 234 254 / 0.6);
}

.border-e-blue-100\/65 {
  border-inline-end-color: rgb(219 234 254 / 0.65);
}

.border-e-blue-100\/70 {
  border-inline-end-color: rgb(219 234 254 / 0.7);
}

.border-e-blue-100\/75 {
  border-inline-end-color: rgb(219 234 254 / 0.75);
}

.border-e-blue-100\/80 {
  border-inline-end-color: rgb(219 234 254 / 0.8);
}

.border-e-blue-100\/85 {
  border-inline-end-color: rgb(219 234 254 / 0.85);
}

.border-e-blue-100\/90 {
  border-inline-end-color: rgb(219 234 254 / 0.9);
}

.border-e-blue-100\/95 {
  border-inline-end-color: rgb(219 234 254 / 0.95);
}

.border-e-blue-200 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
}

.border-e-blue-200\/0 {
  border-inline-end-color: rgb(191 219 254 / 0);
}

.border-e-blue-200\/10 {
  border-inline-end-color: rgb(191 219 254 / 0.1);
}

.border-e-blue-200\/100 {
  border-inline-end-color: rgb(191 219 254 / 1);
}

.border-e-blue-200\/15 {
  border-inline-end-color: rgb(191 219 254 / 0.15);
}

.border-e-blue-200\/20 {
  border-inline-end-color: rgb(191 219 254 / 0.2);
}

.border-e-blue-200\/25 {
  border-inline-end-color: rgb(191 219 254 / 0.25);
}

.border-e-blue-200\/30 {
  border-inline-end-color: rgb(191 219 254 / 0.3);
}

.border-e-blue-200\/35 {
  border-inline-end-color: rgb(191 219 254 / 0.35);
}

.border-e-blue-200\/40 {
  border-inline-end-color: rgb(191 219 254 / 0.4);
}

.border-e-blue-200\/45 {
  border-inline-end-color: rgb(191 219 254 / 0.45);
}

.border-e-blue-200\/5 {
  border-inline-end-color: rgb(191 219 254 / 0.05);
}

.border-e-blue-200\/50 {
  border-inline-end-color: rgb(191 219 254 / 0.5);
}

.border-e-blue-200\/55 {
  border-inline-end-color: rgb(191 219 254 / 0.55);
}

.border-e-blue-200\/60 {
  border-inline-end-color: rgb(191 219 254 / 0.6);
}

.border-e-blue-200\/65 {
  border-inline-end-color: rgb(191 219 254 / 0.65);
}

.border-e-blue-200\/70 {
  border-inline-end-color: rgb(191 219 254 / 0.7);
}

.border-e-blue-200\/75 {
  border-inline-end-color: rgb(191 219 254 / 0.75);
}

.border-e-blue-200\/80 {
  border-inline-end-color: rgb(191 219 254 / 0.8);
}

.border-e-blue-200\/85 {
  border-inline-end-color: rgb(191 219 254 / 0.85);
}

.border-e-blue-200\/90 {
  border-inline-end-color: rgb(191 219 254 / 0.9);
}

.border-e-blue-200\/95 {
  border-inline-end-color: rgb(191 219 254 / 0.95);
}

.border-e-blue-300 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
}

.border-e-blue-300\/0 {
  border-inline-end-color: rgb(147 197 253 / 0);
}

.border-e-blue-300\/10 {
  border-inline-end-color: rgb(147 197 253 / 0.1);
}

.border-e-blue-300\/100 {
  border-inline-end-color: rgb(147 197 253 / 1);
}

.border-e-blue-300\/15 {
  border-inline-end-color: rgb(147 197 253 / 0.15);
}

.border-e-blue-300\/20 {
  border-inline-end-color: rgb(147 197 253 / 0.2);
}

.border-e-blue-300\/25 {
  border-inline-end-color: rgb(147 197 253 / 0.25);
}

.border-e-blue-300\/30 {
  border-inline-end-color: rgb(147 197 253 / 0.3);
}

.border-e-blue-300\/35 {
  border-inline-end-color: rgb(147 197 253 / 0.35);
}

.border-e-blue-300\/40 {
  border-inline-end-color: rgb(147 197 253 / 0.4);
}

.border-e-blue-300\/45 {
  border-inline-end-color: rgb(147 197 253 / 0.45);
}

.border-e-blue-300\/5 {
  border-inline-end-color: rgb(147 197 253 / 0.05);
}

.border-e-blue-300\/50 {
  border-inline-end-color: rgb(147 197 253 / 0.5);
}

.border-e-blue-300\/55 {
  border-inline-end-color: rgb(147 197 253 / 0.55);
}

.border-e-blue-300\/60 {
  border-inline-end-color: rgb(147 197 253 / 0.6);
}

.border-e-blue-300\/65 {
  border-inline-end-color: rgb(147 197 253 / 0.65);
}

.border-e-blue-300\/70 {
  border-inline-end-color: rgb(147 197 253 / 0.7);
}

.border-e-blue-300\/75 {
  border-inline-end-color: rgb(147 197 253 / 0.75);
}

.border-e-blue-300\/80 {
  border-inline-end-color: rgb(147 197 253 / 0.8);
}

.border-e-blue-300\/85 {
  border-inline-end-color: rgb(147 197 253 / 0.85);
}

.border-e-blue-300\/90 {
  border-inline-end-color: rgb(147 197 253 / 0.9);
}

.border-e-blue-300\/95 {
  border-inline-end-color: rgb(147 197 253 / 0.95);
}

.border-e-blue-400 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(96 165 250 / var(--tw-border-opacity, 1));
}

.border-e-blue-400\/0 {
  border-inline-end-color: rgb(96 165 250 / 0);
}

.border-e-blue-400\/10 {
  border-inline-end-color: rgb(96 165 250 / 0.1);
}

.border-e-blue-400\/100 {
  border-inline-end-color: rgb(96 165 250 / 1);
}

.border-e-blue-400\/15 {
  border-inline-end-color: rgb(96 165 250 / 0.15);
}

.border-e-blue-400\/20 {
  border-inline-end-color: rgb(96 165 250 / 0.2);
}

.border-e-blue-400\/25 {
  border-inline-end-color: rgb(96 165 250 / 0.25);
}

.border-e-blue-400\/30 {
  border-inline-end-color: rgb(96 165 250 / 0.3);
}

.border-e-blue-400\/35 {
  border-inline-end-color: rgb(96 165 250 / 0.35);
}

.border-e-blue-400\/40 {
  border-inline-end-color: rgb(96 165 250 / 0.4);
}

.border-e-blue-400\/45 {
  border-inline-end-color: rgb(96 165 250 / 0.45);
}

.border-e-blue-400\/5 {
  border-inline-end-color: rgb(96 165 250 / 0.05);
}

.border-e-blue-400\/50 {
  border-inline-end-color: rgb(96 165 250 / 0.5);
}

.border-e-blue-400\/55 {
  border-inline-end-color: rgb(96 165 250 / 0.55);
}

.border-e-blue-400\/60 {
  border-inline-end-color: rgb(96 165 250 / 0.6);
}

.border-e-blue-400\/65 {
  border-inline-end-color: rgb(96 165 250 / 0.65);
}

.border-e-blue-400\/70 {
  border-inline-end-color: rgb(96 165 250 / 0.7);
}

.border-e-blue-400\/75 {
  border-inline-end-color: rgb(96 165 250 / 0.75);
}

.border-e-blue-400\/80 {
  border-inline-end-color: rgb(96 165 250 / 0.8);
}

.border-e-blue-400\/85 {
  border-inline-end-color: rgb(96 165 250 / 0.85);
}

.border-e-blue-400\/90 {
  border-inline-end-color: rgb(96 165 250 / 0.9);
}

.border-e-blue-400\/95 {
  border-inline-end-color: rgb(96 165 250 / 0.95);
}

.border-e-blue-50 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(239 246 255 / var(--tw-border-opacity, 1));
}

.border-e-blue-50\/0 {
  border-inline-end-color: rgb(239 246 255 / 0);
}

.border-e-blue-50\/10 {
  border-inline-end-color: rgb(239 246 255 / 0.1);
}

.border-e-blue-50\/100 {
  border-inline-end-color: rgb(239 246 255 / 1);
}

.border-e-blue-50\/15 {
  border-inline-end-color: rgb(239 246 255 / 0.15);
}

.border-e-blue-50\/20 {
  border-inline-end-color: rgb(239 246 255 / 0.2);
}

.border-e-blue-50\/25 {
  border-inline-end-color: rgb(239 246 255 / 0.25);
}

.border-e-blue-50\/30 {
  border-inline-end-color: rgb(239 246 255 / 0.3);
}

.border-e-blue-50\/35 {
  border-inline-end-color: rgb(239 246 255 / 0.35);
}

.border-e-blue-50\/40 {
  border-inline-end-color: rgb(239 246 255 / 0.4);
}

.border-e-blue-50\/45 {
  border-inline-end-color: rgb(239 246 255 / 0.45);
}

.border-e-blue-50\/5 {
  border-inline-end-color: rgb(239 246 255 / 0.05);
}

.border-e-blue-50\/50 {
  border-inline-end-color: rgb(239 246 255 / 0.5);
}

.border-e-blue-50\/55 {
  border-inline-end-color: rgb(239 246 255 / 0.55);
}

.border-e-blue-50\/60 {
  border-inline-end-color: rgb(239 246 255 / 0.6);
}

.border-e-blue-50\/65 {
  border-inline-end-color: rgb(239 246 255 / 0.65);
}

.border-e-blue-50\/70 {
  border-inline-end-color: rgb(239 246 255 / 0.7);
}

.border-e-blue-50\/75 {
  border-inline-end-color: rgb(239 246 255 / 0.75);
}

.border-e-blue-50\/80 {
  border-inline-end-color: rgb(239 246 255 / 0.8);
}

.border-e-blue-50\/85 {
  border-inline-end-color: rgb(239 246 255 / 0.85);
}

.border-e-blue-50\/90 {
  border-inline-end-color: rgb(239 246 255 / 0.9);
}

.border-e-blue-50\/95 {
  border-inline-end-color: rgb(239 246 255 / 0.95);
}

.border-e-blue-500 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}

.border-e-blue-500\/0 {
  border-inline-end-color: rgb(59 130 246 / 0);
}

.border-e-blue-500\/10 {
  border-inline-end-color: rgb(59 130 246 / 0.1);
}

.border-e-blue-500\/100 {
  border-inline-end-color: rgb(59 130 246 / 1);
}

.border-e-blue-500\/15 {
  border-inline-end-color: rgb(59 130 246 / 0.15);
}

.border-e-blue-500\/20 {
  border-inline-end-color: rgb(59 130 246 / 0.2);
}

.border-e-blue-500\/25 {
  border-inline-end-color: rgb(59 130 246 / 0.25);
}

.border-e-blue-500\/30 {
  border-inline-end-color: rgb(59 130 246 / 0.3);
}

.border-e-blue-500\/35 {
  border-inline-end-color: rgb(59 130 246 / 0.35);
}

.border-e-blue-500\/40 {
  border-inline-end-color: rgb(59 130 246 / 0.4);
}

.border-e-blue-500\/45 {
  border-inline-end-color: rgb(59 130 246 / 0.45);
}

.border-e-blue-500\/5 {
  border-inline-end-color: rgb(59 130 246 / 0.05);
}

.border-e-blue-500\/50 {
  border-inline-end-color: rgb(59 130 246 / 0.5);
}

.border-e-blue-500\/55 {
  border-inline-end-color: rgb(59 130 246 / 0.55);
}

.border-e-blue-500\/60 {
  border-inline-end-color: rgb(59 130 246 / 0.6);
}

.border-e-blue-500\/65 {
  border-inline-end-color: rgb(59 130 246 / 0.65);
}

.border-e-blue-500\/70 {
  border-inline-end-color: rgb(59 130 246 / 0.7);
}

.border-e-blue-500\/75 {
  border-inline-end-color: rgb(59 130 246 / 0.75);
}

.border-e-blue-500\/80 {
  border-inline-end-color: rgb(59 130 246 / 0.8);
}

.border-e-blue-500\/85 {
  border-inline-end-color: rgb(59 130 246 / 0.85);
}

.border-e-blue-500\/90 {
  border-inline-end-color: rgb(59 130 246 / 0.9);
}

.border-e-blue-500\/95 {
  border-inline-end-color: rgb(59 130 246 / 0.95);
}

.border-e-blue-600 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}

.border-e-blue-600\/0 {
  border-inline-end-color: rgb(37 99 235 / 0);
}

.border-e-blue-600\/10 {
  border-inline-end-color: rgb(37 99 235 / 0.1);
}

.border-e-blue-600\/100 {
  border-inline-end-color: rgb(37 99 235 / 1);
}

.border-e-blue-600\/15 {
  border-inline-end-color: rgb(37 99 235 / 0.15);
}

.border-e-blue-600\/20 {
  border-inline-end-color: rgb(37 99 235 / 0.2);
}

.border-e-blue-600\/25 {
  border-inline-end-color: rgb(37 99 235 / 0.25);
}

.border-e-blue-600\/30 {
  border-inline-end-color: rgb(37 99 235 / 0.3);
}

.border-e-blue-600\/35 {
  border-inline-end-color: rgb(37 99 235 / 0.35);
}

.border-e-blue-600\/40 {
  border-inline-end-color: rgb(37 99 235 / 0.4);
}

.border-e-blue-600\/45 {
  border-inline-end-color: rgb(37 99 235 / 0.45);
}

.border-e-blue-600\/5 {
  border-inline-end-color: rgb(37 99 235 / 0.05);
}

.border-e-blue-600\/50 {
  border-inline-end-color: rgb(37 99 235 / 0.5);
}

.border-e-blue-600\/55 {
  border-inline-end-color: rgb(37 99 235 / 0.55);
}

.border-e-blue-600\/60 {
  border-inline-end-color: rgb(37 99 235 / 0.6);
}

.border-e-blue-600\/65 {
  border-inline-end-color: rgb(37 99 235 / 0.65);
}

.border-e-blue-600\/70 {
  border-inline-end-color: rgb(37 99 235 / 0.7);
}

.border-e-blue-600\/75 {
  border-inline-end-color: rgb(37 99 235 / 0.75);
}

.border-e-blue-600\/80 {
  border-inline-end-color: rgb(37 99 235 / 0.8);
}

.border-e-blue-600\/85 {
  border-inline-end-color: rgb(37 99 235 / 0.85);
}

.border-e-blue-600\/90 {
  border-inline-end-color: rgb(37 99 235 / 0.9);
}

.border-e-blue-600\/95 {
  border-inline-end-color: rgb(37 99 235 / 0.95);
}

.border-e-blue-700 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(29 78 216 / var(--tw-border-opacity, 1));
}

.border-e-blue-700\/0 {
  border-inline-end-color: rgb(29 78 216 / 0);
}

.border-e-blue-700\/10 {
  border-inline-end-color: rgb(29 78 216 / 0.1);
}

.border-e-blue-700\/100 {
  border-inline-end-color: rgb(29 78 216 / 1);
}

.border-e-blue-700\/15 {
  border-inline-end-color: rgb(29 78 216 / 0.15);
}

.border-e-blue-700\/20 {
  border-inline-end-color: rgb(29 78 216 / 0.2);
}

.border-e-blue-700\/25 {
  border-inline-end-color: rgb(29 78 216 / 0.25);
}

.border-e-blue-700\/30 {
  border-inline-end-color: rgb(29 78 216 / 0.3);
}

.border-e-blue-700\/35 {
  border-inline-end-color: rgb(29 78 216 / 0.35);
}

.border-e-blue-700\/40 {
  border-inline-end-color: rgb(29 78 216 / 0.4);
}

.border-e-blue-700\/45 {
  border-inline-end-color: rgb(29 78 216 / 0.45);
}

.border-e-blue-700\/5 {
  border-inline-end-color: rgb(29 78 216 / 0.05);
}

.border-e-blue-700\/50 {
  border-inline-end-color: rgb(29 78 216 / 0.5);
}

.border-e-blue-700\/55 {
  border-inline-end-color: rgb(29 78 216 / 0.55);
}

.border-e-blue-700\/60 {
  border-inline-end-color: rgb(29 78 216 / 0.6);
}

.border-e-blue-700\/65 {
  border-inline-end-color: rgb(29 78 216 / 0.65);
}

.border-e-blue-700\/70 {
  border-inline-end-color: rgb(29 78 216 / 0.7);
}

.border-e-blue-700\/75 {
  border-inline-end-color: rgb(29 78 216 / 0.75);
}

.border-e-blue-700\/80 {
  border-inline-end-color: rgb(29 78 216 / 0.8);
}

.border-e-blue-700\/85 {
  border-inline-end-color: rgb(29 78 216 / 0.85);
}

.border-e-blue-700\/90 {
  border-inline-end-color: rgb(29 78 216 / 0.9);
}

.border-e-blue-700\/95 {
  border-inline-end-color: rgb(29 78 216 / 0.95);
}

.border-e-blue-800 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(30 64 175 / var(--tw-border-opacity, 1));
}

.border-e-blue-800\/0 {
  border-inline-end-color: rgb(30 64 175 / 0);
}

.border-e-blue-800\/10 {
  border-inline-end-color: rgb(30 64 175 / 0.1);
}

.border-e-blue-800\/100 {
  border-inline-end-color: rgb(30 64 175 / 1);
}

.border-e-blue-800\/15 {
  border-inline-end-color: rgb(30 64 175 / 0.15);
}

.border-e-blue-800\/20 {
  border-inline-end-color: rgb(30 64 175 / 0.2);
}

.border-e-blue-800\/25 {
  border-inline-end-color: rgb(30 64 175 / 0.25);
}

.border-e-blue-800\/30 {
  border-inline-end-color: rgb(30 64 175 / 0.3);
}

.border-e-blue-800\/35 {
  border-inline-end-color: rgb(30 64 175 / 0.35);
}

.border-e-blue-800\/40 {
  border-inline-end-color: rgb(30 64 175 / 0.4);
}

.border-e-blue-800\/45 {
  border-inline-end-color: rgb(30 64 175 / 0.45);
}

.border-e-blue-800\/5 {
  border-inline-end-color: rgb(30 64 175 / 0.05);
}

.border-e-blue-800\/50 {
  border-inline-end-color: rgb(30 64 175 / 0.5);
}

.border-e-blue-800\/55 {
  border-inline-end-color: rgb(30 64 175 / 0.55);
}

.border-e-blue-800\/60 {
  border-inline-end-color: rgb(30 64 175 / 0.6);
}

.border-e-blue-800\/65 {
  border-inline-end-color: rgb(30 64 175 / 0.65);
}

.border-e-blue-800\/70 {
  border-inline-end-color: rgb(30 64 175 / 0.7);
}

.border-e-blue-800\/75 {
  border-inline-end-color: rgb(30 64 175 / 0.75);
}

.border-e-blue-800\/80 {
  border-inline-end-color: rgb(30 64 175 / 0.8);
}

.border-e-blue-800\/85 {
  border-inline-end-color: rgb(30 64 175 / 0.85);
}

.border-e-blue-800\/90 {
  border-inline-end-color: rgb(30 64 175 / 0.9);
}

.border-e-blue-800\/95 {
  border-inline-end-color: rgb(30 64 175 / 0.95);
}

.border-e-blue-900 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(30 58 138 / var(--tw-border-opacity, 1));
}

.border-e-blue-900\/0 {
  border-inline-end-color: rgb(30 58 138 / 0);
}

.border-e-blue-900\/10 {
  border-inline-end-color: rgb(30 58 138 / 0.1);
}

.border-e-blue-900\/100 {
  border-inline-end-color: rgb(30 58 138 / 1);
}

.border-e-blue-900\/15 {
  border-inline-end-color: rgb(30 58 138 / 0.15);
}

.border-e-blue-900\/20 {
  border-inline-end-color: rgb(30 58 138 / 0.2);
}

.border-e-blue-900\/25 {
  border-inline-end-color: rgb(30 58 138 / 0.25);
}

.border-e-blue-900\/30 {
  border-inline-end-color: rgb(30 58 138 / 0.3);
}

.border-e-blue-900\/35 {
  border-inline-end-color: rgb(30 58 138 / 0.35);
}

.border-e-blue-900\/40 {
  border-inline-end-color: rgb(30 58 138 / 0.4);
}

.border-e-blue-900\/45 {
  border-inline-end-color: rgb(30 58 138 / 0.45);
}

.border-e-blue-900\/5 {
  border-inline-end-color: rgb(30 58 138 / 0.05);
}

.border-e-blue-900\/50 {
  border-inline-end-color: rgb(30 58 138 / 0.5);
}

.border-e-blue-900\/55 {
  border-inline-end-color: rgb(30 58 138 / 0.55);
}

.border-e-blue-900\/60 {
  border-inline-end-color: rgb(30 58 138 / 0.6);
}

.border-e-blue-900\/65 {
  border-inline-end-color: rgb(30 58 138 / 0.65);
}

.border-e-blue-900\/70 {
  border-inline-end-color: rgb(30 58 138 / 0.7);
}

.border-e-blue-900\/75 {
  border-inline-end-color: rgb(30 58 138 / 0.75);
}

.border-e-blue-900\/80 {
  border-inline-end-color: rgb(30 58 138 / 0.8);
}

.border-e-blue-900\/85 {
  border-inline-end-color: rgb(30 58 138 / 0.85);
}

.border-e-blue-900\/90 {
  border-inline-end-color: rgb(30 58 138 / 0.9);
}

.border-e-blue-900\/95 {
  border-inline-end-color: rgb(30 58 138 / 0.95);
}

.border-e-blue-950 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(23 37 84 / var(--tw-border-opacity, 1));
}

.border-e-blue-950\/0 {
  border-inline-end-color: rgb(23 37 84 / 0);
}

.border-e-blue-950\/10 {
  border-inline-end-color: rgb(23 37 84 / 0.1);
}

.border-e-blue-950\/100 {
  border-inline-end-color: rgb(23 37 84 / 1);
}

.border-e-blue-950\/15 {
  border-inline-end-color: rgb(23 37 84 / 0.15);
}

.border-e-blue-950\/20 {
  border-inline-end-color: rgb(23 37 84 / 0.2);
}

.border-e-blue-950\/25 {
  border-inline-end-color: rgb(23 37 84 / 0.25);
}

.border-e-blue-950\/30 {
  border-inline-end-color: rgb(23 37 84 / 0.3);
}

.border-e-blue-950\/35 {
  border-inline-end-color: rgb(23 37 84 / 0.35);
}

.border-e-blue-950\/40 {
  border-inline-end-color: rgb(23 37 84 / 0.4);
}

.border-e-blue-950\/45 {
  border-inline-end-color: rgb(23 37 84 / 0.45);
}

.border-e-blue-950\/5 {
  border-inline-end-color: rgb(23 37 84 / 0.05);
}

.border-e-blue-950\/50 {
  border-inline-end-color: rgb(23 37 84 / 0.5);
}

.border-e-blue-950\/55 {
  border-inline-end-color: rgb(23 37 84 / 0.55);
}

.border-e-blue-950\/60 {
  border-inline-end-color: rgb(23 37 84 / 0.6);
}

.border-e-blue-950\/65 {
  border-inline-end-color: rgb(23 37 84 / 0.65);
}

.border-e-blue-950\/70 {
  border-inline-end-color: rgb(23 37 84 / 0.7);
}

.border-e-blue-950\/75 {
  border-inline-end-color: rgb(23 37 84 / 0.75);
}

.border-e-blue-950\/80 {
  border-inline-end-color: rgb(23 37 84 / 0.8);
}

.border-e-blue-950\/85 {
  border-inline-end-color: rgb(23 37 84 / 0.85);
}

.border-e-blue-950\/90 {
  border-inline-end-color: rgb(23 37 84 / 0.9);
}

.border-e-blue-950\/95 {
  border-inline-end-color: rgb(23 37 84 / 0.95);
}

.border-e-current {
  border-inline-end-color: currentColor;
}

.border-e-eva-blue {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(26 33 62 / var(--tw-border-opacity, 1));
}

.border-e-eva-blue-appt {
  --tw-border-opacity: 1;
  border-inline-end-color: rgba(52, 137, 207, var(--tw-border-opacity, 1));
}

.border-e-eva-blue-appt\/0 {
  border-inline-end-color: rgba(52, 137, 207, 0);
}

.border-e-eva-blue-appt\/10 {
  border-inline-end-color: rgba(52, 137, 207, 0.1);
}

.border-e-eva-blue-appt\/100 {
  border-inline-end-color: rgba(52, 137, 207, 1);
}

.border-e-eva-blue-appt\/15 {
  border-inline-end-color: rgba(52, 137, 207, 0.15);
}

.border-e-eva-blue-appt\/20 {
  border-inline-end-color: rgba(52, 137, 207, 0.2);
}

.border-e-eva-blue-appt\/25 {
  border-inline-end-color: rgba(52, 137, 207, 0.25);
}

.border-e-eva-blue-appt\/30 {
  border-inline-end-color: rgba(52, 137, 207, 0.3);
}

.border-e-eva-blue-appt\/35 {
  border-inline-end-color: rgba(52, 137, 207, 0.35);
}

.border-e-eva-blue-appt\/40 {
  border-inline-end-color: rgba(52, 137, 207, 0.4);
}

.border-e-eva-blue-appt\/45 {
  border-inline-end-color: rgba(52, 137, 207, 0.45);
}

.border-e-eva-blue-appt\/5 {
  border-inline-end-color: rgba(52, 137, 207, 0.05);
}

.border-e-eva-blue-appt\/50 {
  border-inline-end-color: rgba(52, 137, 207, 0.5);
}

.border-e-eva-blue-appt\/55 {
  border-inline-end-color: rgba(52, 137, 207, 0.55);
}

.border-e-eva-blue-appt\/60 {
  border-inline-end-color: rgba(52, 137, 207, 0.6);
}

.border-e-eva-blue-appt\/65 {
  border-inline-end-color: rgba(52, 137, 207, 0.65);
}

.border-e-eva-blue-appt\/70 {
  border-inline-end-color: rgba(52, 137, 207, 0.7);
}

.border-e-eva-blue-appt\/75 {
  border-inline-end-color: rgba(52, 137, 207, 0.75);
}

.border-e-eva-blue-appt\/80 {
  border-inline-end-color: rgba(52, 137, 207, 0.8);
}

.border-e-eva-blue-appt\/85 {
  border-inline-end-color: rgba(52, 137, 207, 0.85);
}

.border-e-eva-blue-appt\/90 {
  border-inline-end-color: rgba(52, 137, 207, 0.9);
}

.border-e-eva-blue-appt\/95 {
  border-inline-end-color: rgba(52, 137, 207, 0.95);
}

.border-e-eva-blue-gray {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(117 121 139 / var(--tw-border-opacity, 1));
}

.border-e-eva-blue-gray\/0 {
  border-inline-end-color: rgb(117 121 139 / 0);
}

.border-e-eva-blue-gray\/10 {
  border-inline-end-color: rgb(117 121 139 / 0.1);
}

.border-e-eva-blue-gray\/100 {
  border-inline-end-color: rgb(117 121 139 / 1);
}

.border-e-eva-blue-gray\/15 {
  border-inline-end-color: rgb(117 121 139 / 0.15);
}

.border-e-eva-blue-gray\/20 {
  border-inline-end-color: rgb(117 121 139 / 0.2);
}

.border-e-eva-blue-gray\/25 {
  border-inline-end-color: rgb(117 121 139 / 0.25);
}

.border-e-eva-blue-gray\/30 {
  border-inline-end-color: rgb(117 121 139 / 0.3);
}

.border-e-eva-blue-gray\/35 {
  border-inline-end-color: rgb(117 121 139 / 0.35);
}

.border-e-eva-blue-gray\/40 {
  border-inline-end-color: rgb(117 121 139 / 0.4);
}

.border-e-eva-blue-gray\/45 {
  border-inline-end-color: rgb(117 121 139 / 0.45);
}

.border-e-eva-blue-gray\/5 {
  border-inline-end-color: rgb(117 121 139 / 0.05);
}

.border-e-eva-blue-gray\/50 {
  border-inline-end-color: rgb(117 121 139 / 0.5);
}

.border-e-eva-blue-gray\/55 {
  border-inline-end-color: rgb(117 121 139 / 0.55);
}

.border-e-eva-blue-gray\/60 {
  border-inline-end-color: rgb(117 121 139 / 0.6);
}

.border-e-eva-blue-gray\/65 {
  border-inline-end-color: rgb(117 121 139 / 0.65);
}

.border-e-eva-blue-gray\/70 {
  border-inline-end-color: rgb(117 121 139 / 0.7);
}

.border-e-eva-blue-gray\/75 {
  border-inline-end-color: rgb(117 121 139 / 0.75);
}

.border-e-eva-blue-gray\/80 {
  border-inline-end-color: rgb(117 121 139 / 0.8);
}

.border-e-eva-blue-gray\/85 {
  border-inline-end-color: rgb(117 121 139 / 0.85);
}

.border-e-eva-blue-gray\/90 {
  border-inline-end-color: rgb(117 121 139 / 0.9);
}

.border-e-eva-blue-gray\/95 {
  border-inline-end-color: rgb(117 121 139 / 0.95);
}

.border-e-eva-blue-hv {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(15 18 31 / var(--tw-border-opacity, 1));
}

.border-e-eva-blue-hv\/0 {
  border-inline-end-color: rgb(15 18 31 / 0);
}

.border-e-eva-blue-hv\/10 {
  border-inline-end-color: rgb(15 18 31 / 0.1);
}

.border-e-eva-blue-hv\/100 {
  border-inline-end-color: rgb(15 18 31 / 1);
}

.border-e-eva-blue-hv\/15 {
  border-inline-end-color: rgb(15 18 31 / 0.15);
}

.border-e-eva-blue-hv\/20 {
  border-inline-end-color: rgb(15 18 31 / 0.2);
}

.border-e-eva-blue-hv\/25 {
  border-inline-end-color: rgb(15 18 31 / 0.25);
}

.border-e-eva-blue-hv\/30 {
  border-inline-end-color: rgb(15 18 31 / 0.3);
}

.border-e-eva-blue-hv\/35 {
  border-inline-end-color: rgb(15 18 31 / 0.35);
}

.border-e-eva-blue-hv\/40 {
  border-inline-end-color: rgb(15 18 31 / 0.4);
}

.border-e-eva-blue-hv\/45 {
  border-inline-end-color: rgb(15 18 31 / 0.45);
}

.border-e-eva-blue-hv\/5 {
  border-inline-end-color: rgb(15 18 31 / 0.05);
}

.border-e-eva-blue-hv\/50 {
  border-inline-end-color: rgb(15 18 31 / 0.5);
}

.border-e-eva-blue-hv\/55 {
  border-inline-end-color: rgb(15 18 31 / 0.55);
}

.border-e-eva-blue-hv\/60 {
  border-inline-end-color: rgb(15 18 31 / 0.6);
}

.border-e-eva-blue-hv\/65 {
  border-inline-end-color: rgb(15 18 31 / 0.65);
}

.border-e-eva-blue-hv\/70 {
  border-inline-end-color: rgb(15 18 31 / 0.7);
}

.border-e-eva-blue-hv\/75 {
  border-inline-end-color: rgb(15 18 31 / 0.75);
}

.border-e-eva-blue-hv\/80 {
  border-inline-end-color: rgb(15 18 31 / 0.8);
}

.border-e-eva-blue-hv\/85 {
  border-inline-end-color: rgb(15 18 31 / 0.85);
}

.border-e-eva-blue-hv\/90 {
  border-inline-end-color: rgb(15 18 31 / 0.9);
}

.border-e-eva-blue-hv\/95 {
  border-inline-end-color: rgb(15 18 31 / 0.95);
}

.border-e-eva-blue-light {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(48 56 81 / var(--tw-border-opacity, 1));
}

.border-e-eva-blue-light-hv {
  border-inline-end-color: rgba(17,20,30,.3);
}

.border-e-eva-blue-light-hv\/0 {
  border-inline-end-color: rgba(17, 20, 30, 0);
}

.border-e-eva-blue-light-hv\/10 {
  border-inline-end-color: rgba(17, 20, 30, 0.1);
}

.border-e-eva-blue-light-hv\/100 {
  border-inline-end-color: rgba(17, 20, 30, 1);
}

.border-e-eva-blue-light-hv\/15 {
  border-inline-end-color: rgba(17, 20, 30, 0.15);
}

.border-e-eva-blue-light-hv\/20 {
  border-inline-end-color: rgba(17, 20, 30, 0.2);
}

.border-e-eva-blue-light-hv\/25 {
  border-inline-end-color: rgba(17, 20, 30, 0.25);
}

.border-e-eva-blue-light-hv\/30 {
  border-inline-end-color: rgba(17, 20, 30, 0.3);
}

.border-e-eva-blue-light-hv\/35 {
  border-inline-end-color: rgba(17, 20, 30, 0.35);
}

.border-e-eva-blue-light-hv\/40 {
  border-inline-end-color: rgba(17, 20, 30, 0.4);
}

.border-e-eva-blue-light-hv\/45 {
  border-inline-end-color: rgba(17, 20, 30, 0.45);
}

.border-e-eva-blue-light-hv\/5 {
  border-inline-end-color: rgba(17, 20, 30, 0.05);
}

.border-e-eva-blue-light-hv\/50 {
  border-inline-end-color: rgba(17, 20, 30, 0.5);
}

.border-e-eva-blue-light-hv\/55 {
  border-inline-end-color: rgba(17, 20, 30, 0.55);
}

.border-e-eva-blue-light-hv\/60 {
  border-inline-end-color: rgba(17, 20, 30, 0.6);
}

.border-e-eva-blue-light-hv\/65 {
  border-inline-end-color: rgba(17, 20, 30, 0.65);
}

.border-e-eva-blue-light-hv\/70 {
  border-inline-end-color: rgba(17, 20, 30, 0.7);
}

.border-e-eva-blue-light-hv\/75 {
  border-inline-end-color: rgba(17, 20, 30, 0.75);
}

.border-e-eva-blue-light-hv\/80 {
  border-inline-end-color: rgba(17, 20, 30, 0.8);
}

.border-e-eva-blue-light-hv\/85 {
  border-inline-end-color: rgba(17, 20, 30, 0.85);
}

.border-e-eva-blue-light-hv\/90 {
  border-inline-end-color: rgba(17, 20, 30, 0.9);
}

.border-e-eva-blue-light-hv\/95 {
  border-inline-end-color: rgba(17, 20, 30, 0.95);
}

.border-e-eva-blue-light\/0 {
  border-inline-end-color: rgb(48 56 81 / 0);
}

.border-e-eva-blue-light\/10 {
  border-inline-end-color: rgb(48 56 81 / 0.1);
}

.border-e-eva-blue-light\/100 {
  border-inline-end-color: rgb(48 56 81 / 1);
}

.border-e-eva-blue-light\/15 {
  border-inline-end-color: rgb(48 56 81 / 0.15);
}

.border-e-eva-blue-light\/20 {
  border-inline-end-color: rgb(48 56 81 / 0.2);
}

.border-e-eva-blue-light\/25 {
  border-inline-end-color: rgb(48 56 81 / 0.25);
}

.border-e-eva-blue-light\/30 {
  border-inline-end-color: rgb(48 56 81 / 0.3);
}

.border-e-eva-blue-light\/35 {
  border-inline-end-color: rgb(48 56 81 / 0.35);
}

.border-e-eva-blue-light\/40 {
  border-inline-end-color: rgb(48 56 81 / 0.4);
}

.border-e-eva-blue-light\/45 {
  border-inline-end-color: rgb(48 56 81 / 0.45);
}

.border-e-eva-blue-light\/5 {
  border-inline-end-color: rgb(48 56 81 / 0.05);
}

.border-e-eva-blue-light\/50 {
  border-inline-end-color: rgb(48 56 81 / 0.5);
}

.border-e-eva-blue-light\/55 {
  border-inline-end-color: rgb(48 56 81 / 0.55);
}

.border-e-eva-blue-light\/60 {
  border-inline-end-color: rgb(48 56 81 / 0.6);
}

.border-e-eva-blue-light\/65 {
  border-inline-end-color: rgb(48 56 81 / 0.65);
}

.border-e-eva-blue-light\/70 {
  border-inline-end-color: rgb(48 56 81 / 0.7);
}

.border-e-eva-blue-light\/75 {
  border-inline-end-color: rgb(48 56 81 / 0.75);
}

.border-e-eva-blue-light\/80 {
  border-inline-end-color: rgb(48 56 81 / 0.8);
}

.border-e-eva-blue-light\/85 {
  border-inline-end-color: rgb(48 56 81 / 0.85);
}

.border-e-eva-blue-light\/90 {
  border-inline-end-color: rgb(48 56 81 / 0.9);
}

.border-e-eva-blue-light\/95 {
  border-inline-end-color: rgb(48 56 81 / 0.95);
}

.border-e-eva-blue\/0 {
  border-inline-end-color: rgb(26 33 62 / 0);
}

.border-e-eva-blue\/10 {
  border-inline-end-color: rgb(26 33 62 / 0.1);
}

.border-e-eva-blue\/100 {
  border-inline-end-color: rgb(26 33 62 / 1);
}

.border-e-eva-blue\/15 {
  border-inline-end-color: rgb(26 33 62 / 0.15);
}

.border-e-eva-blue\/20 {
  border-inline-end-color: rgb(26 33 62 / 0.2);
}

.border-e-eva-blue\/25 {
  border-inline-end-color: rgb(26 33 62 / 0.25);
}

.border-e-eva-blue\/30 {
  border-inline-end-color: rgb(26 33 62 / 0.3);
}

.border-e-eva-blue\/35 {
  border-inline-end-color: rgb(26 33 62 / 0.35);
}

.border-e-eva-blue\/40 {
  border-inline-end-color: rgb(26 33 62 / 0.4);
}

.border-e-eva-blue\/45 {
  border-inline-end-color: rgb(26 33 62 / 0.45);
}

.border-e-eva-blue\/5 {
  border-inline-end-color: rgb(26 33 62 / 0.05);
}

.border-e-eva-blue\/50 {
  border-inline-end-color: rgb(26 33 62 / 0.5);
}

.border-e-eva-blue\/55 {
  border-inline-end-color: rgb(26 33 62 / 0.55);
}

.border-e-eva-blue\/60 {
  border-inline-end-color: rgb(26 33 62 / 0.6);
}

.border-e-eva-blue\/65 {
  border-inline-end-color: rgb(26 33 62 / 0.65);
}

.border-e-eva-blue\/70 {
  border-inline-end-color: rgb(26 33 62 / 0.7);
}

.border-e-eva-blue\/75 {
  border-inline-end-color: rgb(26 33 62 / 0.75);
}

.border-e-eva-blue\/80 {
  border-inline-end-color: rgb(26 33 62 / 0.8);
}

.border-e-eva-blue\/85 {
  border-inline-end-color: rgb(26 33 62 / 0.85);
}

.border-e-eva-blue\/90 {
  border-inline-end-color: rgb(26 33 62 / 0.9);
}

.border-e-eva-blue\/95 {
  border-inline-end-color: rgb(26 33 62 / 0.95);
}

.border-e-eva-brown-appt {
  border-inline-end-color: rgba(99, 93, 94, 1);
}

.border-e-eva-brown-appt\/0 {
  border-inline-end-color: rgba(99, 93, 94, 0);
}

.border-e-eva-brown-appt\/10 {
  border-inline-end-color: rgba(99, 93, 94, 0.1);
}

.border-e-eva-brown-appt\/100 {
  border-inline-end-color: rgba(99, 93, 94, 1);
}

.border-e-eva-brown-appt\/15 {
  border-inline-end-color: rgba(99, 93, 94, 0.15);
}

.border-e-eva-brown-appt\/20 {
  border-inline-end-color: rgba(99, 93, 94, 0.2);
}

.border-e-eva-brown-appt\/25 {
  border-inline-end-color: rgba(99, 93, 94, 0.25);
}

.border-e-eva-brown-appt\/30 {
  border-inline-end-color: rgba(99, 93, 94, 0.3);
}

.border-e-eva-brown-appt\/35 {
  border-inline-end-color: rgba(99, 93, 94, 0.35);
}

.border-e-eva-brown-appt\/40 {
  border-inline-end-color: rgba(99, 93, 94, 0.4);
}

.border-e-eva-brown-appt\/45 {
  border-inline-end-color: rgba(99, 93, 94, 0.45);
}

.border-e-eva-brown-appt\/5 {
  border-inline-end-color: rgba(99, 93, 94, 0.05);
}

.border-e-eva-brown-appt\/50 {
  border-inline-end-color: rgba(99, 93, 94, 0.5);
}

.border-e-eva-brown-appt\/55 {
  border-inline-end-color: rgba(99, 93, 94, 0.55);
}

.border-e-eva-brown-appt\/60 {
  border-inline-end-color: rgba(99, 93, 94, 0.6);
}

.border-e-eva-brown-appt\/65 {
  border-inline-end-color: rgba(99, 93, 94, 0.65);
}

.border-e-eva-brown-appt\/70 {
  border-inline-end-color: rgba(99, 93, 94, 0.7);
}

.border-e-eva-brown-appt\/75 {
  border-inline-end-color: rgba(99, 93, 94, 0.75);
}

.border-e-eva-brown-appt\/80 {
  border-inline-end-color: rgba(99, 93, 94, 0.8);
}

.border-e-eva-brown-appt\/85 {
  border-inline-end-color: rgba(99, 93, 94, 0.85);
}

.border-e-eva-brown-appt\/90 {
  border-inline-end-color: rgba(99, 93, 94, 0.9);
}

.border-e-eva-brown-appt\/95 {
  border-inline-end-color: rgba(99, 93, 94, 0.95);
}

.border-e-eva-dark-green-appt {
  border-inline-end-color: rgba(102, 188, 130, 1);
}

.border-e-eva-dark-green-appt\/0 {
  border-inline-end-color: rgba(102, 188, 130, 0);
}

.border-e-eva-dark-green-appt\/10 {
  border-inline-end-color: rgba(102, 188, 130, 0.1);
}

.border-e-eva-dark-green-appt\/100 {
  border-inline-end-color: rgba(102, 188, 130, 1);
}

.border-e-eva-dark-green-appt\/15 {
  border-inline-end-color: rgba(102, 188, 130, 0.15);
}

.border-e-eva-dark-green-appt\/20 {
  border-inline-end-color: rgba(102, 188, 130, 0.2);
}

.border-e-eva-dark-green-appt\/25 {
  border-inline-end-color: rgba(102, 188, 130, 0.25);
}

.border-e-eva-dark-green-appt\/30 {
  border-inline-end-color: rgba(102, 188, 130, 0.3);
}

.border-e-eva-dark-green-appt\/35 {
  border-inline-end-color: rgba(102, 188, 130, 0.35);
}

.border-e-eva-dark-green-appt\/40 {
  border-inline-end-color: rgba(102, 188, 130, 0.4);
}

.border-e-eva-dark-green-appt\/45 {
  border-inline-end-color: rgba(102, 188, 130, 0.45);
}

.border-e-eva-dark-green-appt\/5 {
  border-inline-end-color: rgba(102, 188, 130, 0.05);
}

.border-e-eva-dark-green-appt\/50 {
  border-inline-end-color: rgba(102, 188, 130, 0.5);
}

.border-e-eva-dark-green-appt\/55 {
  border-inline-end-color: rgba(102, 188, 130, 0.55);
}

.border-e-eva-dark-green-appt\/60 {
  border-inline-end-color: rgba(102, 188, 130, 0.6);
}

.border-e-eva-dark-green-appt\/65 {
  border-inline-end-color: rgba(102, 188, 130, 0.65);
}

.border-e-eva-dark-green-appt\/70 {
  border-inline-end-color: rgba(102, 188, 130, 0.7);
}

.border-e-eva-dark-green-appt\/75 {
  border-inline-end-color: rgba(102, 188, 130, 0.75);
}

.border-e-eva-dark-green-appt\/80 {
  border-inline-end-color: rgba(102, 188, 130, 0.8);
}

.border-e-eva-dark-green-appt\/85 {
  border-inline-end-color: rgba(102, 188, 130, 0.85);
}

.border-e-eva-dark-green-appt\/90 {
  border-inline-end-color: rgba(102, 188, 130, 0.9);
}

.border-e-eva-dark-green-appt\/95 {
  border-inline-end-color: rgba(102, 188, 130, 0.95);
}

.border-e-eva-dark-red-appt {
  border-inline-end-color: rgba(198, 102, 94, 1);
}

.border-e-eva-dark-red-appt\/0 {
  border-inline-end-color: rgba(198, 102, 94, 0);
}

.border-e-eva-dark-red-appt\/10 {
  border-inline-end-color: rgba(198, 102, 94, 0.1);
}

.border-e-eva-dark-red-appt\/100 {
  border-inline-end-color: rgba(198, 102, 94, 1);
}

.border-e-eva-dark-red-appt\/15 {
  border-inline-end-color: rgba(198, 102, 94, 0.15);
}

.border-e-eva-dark-red-appt\/20 {
  border-inline-end-color: rgba(198, 102, 94, 0.2);
}

.border-e-eva-dark-red-appt\/25 {
  border-inline-end-color: rgba(198, 102, 94, 0.25);
}

.border-e-eva-dark-red-appt\/30 {
  border-inline-end-color: rgba(198, 102, 94, 0.3);
}

.border-e-eva-dark-red-appt\/35 {
  border-inline-end-color: rgba(198, 102, 94, 0.35);
}

.border-e-eva-dark-red-appt\/40 {
  border-inline-end-color: rgba(198, 102, 94, 0.4);
}

.border-e-eva-dark-red-appt\/45 {
  border-inline-end-color: rgba(198, 102, 94, 0.45);
}

.border-e-eva-dark-red-appt\/5 {
  border-inline-end-color: rgba(198, 102, 94, 0.05);
}

.border-e-eva-dark-red-appt\/50 {
  border-inline-end-color: rgba(198, 102, 94, 0.5);
}

.border-e-eva-dark-red-appt\/55 {
  border-inline-end-color: rgba(198, 102, 94, 0.55);
}

.border-e-eva-dark-red-appt\/60 {
  border-inline-end-color: rgba(198, 102, 94, 0.6);
}

.border-e-eva-dark-red-appt\/65 {
  border-inline-end-color: rgba(198, 102, 94, 0.65);
}

.border-e-eva-dark-red-appt\/70 {
  border-inline-end-color: rgba(198, 102, 94, 0.7);
}

.border-e-eva-dark-red-appt\/75 {
  border-inline-end-color: rgba(198, 102, 94, 0.75);
}

.border-e-eva-dark-red-appt\/80 {
  border-inline-end-color: rgba(198, 102, 94, 0.8);
}

.border-e-eva-dark-red-appt\/85 {
  border-inline-end-color: rgba(198, 102, 94, 0.85);
}

.border-e-eva-dark-red-appt\/90 {
  border-inline-end-color: rgba(198, 102, 94, 0.9);
}

.border-e-eva-dark-red-appt\/95 {
  border-inline-end-color: rgba(198, 102, 94, 0.95);
}

.border-e-eva-green {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(73 181 168 / var(--tw-border-opacity, 1));
}

.border-e-eva-green-appt {
  --tw-border-opacity: 1;
  border-inline-end-color: rgba(128, 215, 109, var(--tw-border-opacity, 1));
}

.border-e-eva-green-appt\/0 {
  border-inline-end-color: rgba(128, 215, 109, 0);
}

.border-e-eva-green-appt\/10 {
  border-inline-end-color: rgba(128, 215, 109, 0.1);
}

.border-e-eva-green-appt\/100 {
  border-inline-end-color: rgba(128, 215, 109, 1);
}

.border-e-eva-green-appt\/15 {
  border-inline-end-color: rgba(128, 215, 109, 0.15);
}

.border-e-eva-green-appt\/20 {
  border-inline-end-color: rgba(128, 215, 109, 0.2);
}

.border-e-eva-green-appt\/25 {
  border-inline-end-color: rgba(128, 215, 109, 0.25);
}

.border-e-eva-green-appt\/30 {
  border-inline-end-color: rgba(128, 215, 109, 0.3);
}

.border-e-eva-green-appt\/35 {
  border-inline-end-color: rgba(128, 215, 109, 0.35);
}

.border-e-eva-green-appt\/40 {
  border-inline-end-color: rgba(128, 215, 109, 0.4);
}

.border-e-eva-green-appt\/45 {
  border-inline-end-color: rgba(128, 215, 109, 0.45);
}

.border-e-eva-green-appt\/5 {
  border-inline-end-color: rgba(128, 215, 109, 0.05);
}

.border-e-eva-green-appt\/50 {
  border-inline-end-color: rgba(128, 215, 109, 0.5);
}

.border-e-eva-green-appt\/55 {
  border-inline-end-color: rgba(128, 215, 109, 0.55);
}

.border-e-eva-green-appt\/60 {
  border-inline-end-color: rgba(128, 215, 109, 0.6);
}

.border-e-eva-green-appt\/65 {
  border-inline-end-color: rgba(128, 215, 109, 0.65);
}

.border-e-eva-green-appt\/70 {
  border-inline-end-color: rgba(128, 215, 109, 0.7);
}

.border-e-eva-green-appt\/75 {
  border-inline-end-color: rgba(128, 215, 109, 0.75);
}

.border-e-eva-green-appt\/80 {
  border-inline-end-color: rgba(128, 215, 109, 0.8);
}

.border-e-eva-green-appt\/85 {
  border-inline-end-color: rgba(128, 215, 109, 0.85);
}

.border-e-eva-green-appt\/90 {
  border-inline-end-color: rgba(128, 215, 109, 0.9);
}

.border-e-eva-green-appt\/95 {
  border-inline-end-color: rgba(128, 215, 109, 0.95);
}

.border-e-eva-green-brown-appt {
  border-inline-end-color: rgba(197, 191, 140, 1);
}

.border-e-eva-green-brown-appt\/0 {
  border-inline-end-color: rgba(197, 191, 140, 0);
}

.border-e-eva-green-brown-appt\/10 {
  border-inline-end-color: rgba(197, 191, 140, 0.1);
}

.border-e-eva-green-brown-appt\/100 {
  border-inline-end-color: rgba(197, 191, 140, 1);
}

.border-e-eva-green-brown-appt\/15 {
  border-inline-end-color: rgba(197, 191, 140, 0.15);
}

.border-e-eva-green-brown-appt\/20 {
  border-inline-end-color: rgba(197, 191, 140, 0.2);
}

.border-e-eva-green-brown-appt\/25 {
  border-inline-end-color: rgba(197, 191, 140, 0.25);
}

.border-e-eva-green-brown-appt\/30 {
  border-inline-end-color: rgba(197, 191, 140, 0.3);
}

.border-e-eva-green-brown-appt\/35 {
  border-inline-end-color: rgba(197, 191, 140, 0.35);
}

.border-e-eva-green-brown-appt\/40 {
  border-inline-end-color: rgba(197, 191, 140, 0.4);
}

.border-e-eva-green-brown-appt\/45 {
  border-inline-end-color: rgba(197, 191, 140, 0.45);
}

.border-e-eva-green-brown-appt\/5 {
  border-inline-end-color: rgba(197, 191, 140, 0.05);
}

.border-e-eva-green-brown-appt\/50 {
  border-inline-end-color: rgba(197, 191, 140, 0.5);
}

.border-e-eva-green-brown-appt\/55 {
  border-inline-end-color: rgba(197, 191, 140, 0.55);
}

.border-e-eva-green-brown-appt\/60 {
  border-inline-end-color: rgba(197, 191, 140, 0.6);
}

.border-e-eva-green-brown-appt\/65 {
  border-inline-end-color: rgba(197, 191, 140, 0.65);
}

.border-e-eva-green-brown-appt\/70 {
  border-inline-end-color: rgba(197, 191, 140, 0.7);
}

.border-e-eva-green-brown-appt\/75 {
  border-inline-end-color: rgba(197, 191, 140, 0.75);
}

.border-e-eva-green-brown-appt\/80 {
  border-inline-end-color: rgba(197, 191, 140, 0.8);
}

.border-e-eva-green-brown-appt\/85 {
  border-inline-end-color: rgba(197, 191, 140, 0.85);
}

.border-e-eva-green-brown-appt\/90 {
  border-inline-end-color: rgba(197, 191, 140, 0.9);
}

.border-e-eva-green-brown-appt\/95 {
  border-inline-end-color: rgba(197, 191, 140, 0.95);
}

.border-e-eva-green-hv {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(63 156 144 / var(--tw-border-opacity, 1));
}

.border-e-eva-green-hv\/0 {
  border-inline-end-color: rgb(63 156 144 / 0);
}

.border-e-eva-green-hv\/10 {
  border-inline-end-color: rgb(63 156 144 / 0.1);
}

.border-e-eva-green-hv\/100 {
  border-inline-end-color: rgb(63 156 144 / 1);
}

.border-e-eva-green-hv\/15 {
  border-inline-end-color: rgb(63 156 144 / 0.15);
}

.border-e-eva-green-hv\/20 {
  border-inline-end-color: rgb(63 156 144 / 0.2);
}

.border-e-eva-green-hv\/25 {
  border-inline-end-color: rgb(63 156 144 / 0.25);
}

.border-e-eva-green-hv\/30 {
  border-inline-end-color: rgb(63 156 144 / 0.3);
}

.border-e-eva-green-hv\/35 {
  border-inline-end-color: rgb(63 156 144 / 0.35);
}

.border-e-eva-green-hv\/40 {
  border-inline-end-color: rgb(63 156 144 / 0.4);
}

.border-e-eva-green-hv\/45 {
  border-inline-end-color: rgb(63 156 144 / 0.45);
}

.border-e-eva-green-hv\/5 {
  border-inline-end-color: rgb(63 156 144 / 0.05);
}

.border-e-eva-green-hv\/50 {
  border-inline-end-color: rgb(63 156 144 / 0.5);
}

.border-e-eva-green-hv\/55 {
  border-inline-end-color: rgb(63 156 144 / 0.55);
}

.border-e-eva-green-hv\/60 {
  border-inline-end-color: rgb(63 156 144 / 0.6);
}

.border-e-eva-green-hv\/65 {
  border-inline-end-color: rgb(63 156 144 / 0.65);
}

.border-e-eva-green-hv\/70 {
  border-inline-end-color: rgb(63 156 144 / 0.7);
}

.border-e-eva-green-hv\/75 {
  border-inline-end-color: rgb(63 156 144 / 0.75);
}

.border-e-eva-green-hv\/80 {
  border-inline-end-color: rgb(63 156 144 / 0.8);
}

.border-e-eva-green-hv\/85 {
  border-inline-end-color: rgb(63 156 144 / 0.85);
}

.border-e-eva-green-hv\/90 {
  border-inline-end-color: rgb(63 156 144 / 0.9);
}

.border-e-eva-green-hv\/95 {
  border-inline-end-color: rgb(63 156 144 / 0.95);
}

.border-e-eva-green\/0 {
  border-inline-end-color: rgb(73 181 168 / 0);
}

.border-e-eva-green\/10 {
  border-inline-end-color: rgb(73 181 168 / 0.1);
}

.border-e-eva-green\/100 {
  border-inline-end-color: rgb(73 181 168 / 1);
}

.border-e-eva-green\/15 {
  border-inline-end-color: rgb(73 181 168 / 0.15);
}

.border-e-eva-green\/20 {
  border-inline-end-color: rgb(73 181 168 / 0.2);
}

.border-e-eva-green\/25 {
  border-inline-end-color: rgb(73 181 168 / 0.25);
}

.border-e-eva-green\/30 {
  border-inline-end-color: rgb(73 181 168 / 0.3);
}

.border-e-eva-green\/35 {
  border-inline-end-color: rgb(73 181 168 / 0.35);
}

.border-e-eva-green\/40 {
  border-inline-end-color: rgb(73 181 168 / 0.4);
}

.border-e-eva-green\/45 {
  border-inline-end-color: rgb(73 181 168 / 0.45);
}

.border-e-eva-green\/5 {
  border-inline-end-color: rgb(73 181 168 / 0.05);
}

.border-e-eva-green\/50 {
  border-inline-end-color: rgb(73 181 168 / 0.5);
}

.border-e-eva-green\/55 {
  border-inline-end-color: rgb(73 181 168 / 0.55);
}

.border-e-eva-green\/60 {
  border-inline-end-color: rgb(73 181 168 / 0.6);
}

.border-e-eva-green\/65 {
  border-inline-end-color: rgb(73 181 168 / 0.65);
}

.border-e-eva-green\/70 {
  border-inline-end-color: rgb(73 181 168 / 0.7);
}

.border-e-eva-green\/75 {
  border-inline-end-color: rgb(73 181 168 / 0.75);
}

.border-e-eva-green\/80 {
  border-inline-end-color: rgb(73 181 168 / 0.8);
}

.border-e-eva-green\/85 {
  border-inline-end-color: rgb(73 181 168 / 0.85);
}

.border-e-eva-green\/90 {
  border-inline-end-color: rgb(73 181 168 / 0.9);
}

.border-e-eva-green\/95 {
  border-inline-end-color: rgb(73 181 168 / 0.95);
}

.border-e-eva-lavender-appt {
  border-inline-end-color: rgba(169, 124, 165, 1);
}

.border-e-eva-lavender-appt\/0 {
  border-inline-end-color: rgba(169, 124, 165, 0);
}

.border-e-eva-lavender-appt\/10 {
  border-inline-end-color: rgba(169, 124, 165, 0.1);
}

.border-e-eva-lavender-appt\/100 {
  border-inline-end-color: rgba(169, 124, 165, 1);
}

.border-e-eva-lavender-appt\/15 {
  border-inline-end-color: rgba(169, 124, 165, 0.15);
}

.border-e-eva-lavender-appt\/20 {
  border-inline-end-color: rgba(169, 124, 165, 0.2);
}

.border-e-eva-lavender-appt\/25 {
  border-inline-end-color: rgba(169, 124, 165, 0.25);
}

.border-e-eva-lavender-appt\/30 {
  border-inline-end-color: rgba(169, 124, 165, 0.3);
}

.border-e-eva-lavender-appt\/35 {
  border-inline-end-color: rgba(169, 124, 165, 0.35);
}

.border-e-eva-lavender-appt\/40 {
  border-inline-end-color: rgba(169, 124, 165, 0.4);
}

.border-e-eva-lavender-appt\/45 {
  border-inline-end-color: rgba(169, 124, 165, 0.45);
}

.border-e-eva-lavender-appt\/5 {
  border-inline-end-color: rgba(169, 124, 165, 0.05);
}

.border-e-eva-lavender-appt\/50 {
  border-inline-end-color: rgba(169, 124, 165, 0.5);
}

.border-e-eva-lavender-appt\/55 {
  border-inline-end-color: rgba(169, 124, 165, 0.55);
}

.border-e-eva-lavender-appt\/60 {
  border-inline-end-color: rgba(169, 124, 165, 0.6);
}

.border-e-eva-lavender-appt\/65 {
  border-inline-end-color: rgba(169, 124, 165, 0.65);
}

.border-e-eva-lavender-appt\/70 {
  border-inline-end-color: rgba(169, 124, 165, 0.7);
}

.border-e-eva-lavender-appt\/75 {
  border-inline-end-color: rgba(169, 124, 165, 0.75);
}

.border-e-eva-lavender-appt\/80 {
  border-inline-end-color: rgba(169, 124, 165, 0.8);
}

.border-e-eva-lavender-appt\/85 {
  border-inline-end-color: rgba(169, 124, 165, 0.85);
}

.border-e-eva-lavender-appt\/90 {
  border-inline-end-color: rgba(169, 124, 165, 0.9);
}

.border-e-eva-lavender-appt\/95 {
  border-inline-end-color: rgba(169, 124, 165, 0.95);
}

.border-e-eva-magenta-appt {
  border-inline-end-color: rgba(223, 91, 146, 1);
}

.border-e-eva-magenta-appt\/0 {
  border-inline-end-color: rgba(223, 91, 146, 0);
}

.border-e-eva-magenta-appt\/10 {
  border-inline-end-color: rgba(223, 91, 146, 0.1);
}

.border-e-eva-magenta-appt\/100 {
  border-inline-end-color: rgba(223, 91, 146, 1);
}

.border-e-eva-magenta-appt\/15 {
  border-inline-end-color: rgba(223, 91, 146, 0.15);
}

.border-e-eva-magenta-appt\/20 {
  border-inline-end-color: rgba(223, 91, 146, 0.2);
}

.border-e-eva-magenta-appt\/25 {
  border-inline-end-color: rgba(223, 91, 146, 0.25);
}

.border-e-eva-magenta-appt\/30 {
  border-inline-end-color: rgba(223, 91, 146, 0.3);
}

.border-e-eva-magenta-appt\/35 {
  border-inline-end-color: rgba(223, 91, 146, 0.35);
}

.border-e-eva-magenta-appt\/40 {
  border-inline-end-color: rgba(223, 91, 146, 0.4);
}

.border-e-eva-magenta-appt\/45 {
  border-inline-end-color: rgba(223, 91, 146, 0.45);
}

.border-e-eva-magenta-appt\/5 {
  border-inline-end-color: rgba(223, 91, 146, 0.05);
}

.border-e-eva-magenta-appt\/50 {
  border-inline-end-color: rgba(223, 91, 146, 0.5);
}

.border-e-eva-magenta-appt\/55 {
  border-inline-end-color: rgba(223, 91, 146, 0.55);
}

.border-e-eva-magenta-appt\/60 {
  border-inline-end-color: rgba(223, 91, 146, 0.6);
}

.border-e-eva-magenta-appt\/65 {
  border-inline-end-color: rgba(223, 91, 146, 0.65);
}

.border-e-eva-magenta-appt\/70 {
  border-inline-end-color: rgba(223, 91, 146, 0.7);
}

.border-e-eva-magenta-appt\/75 {
  border-inline-end-color: rgba(223, 91, 146, 0.75);
}

.border-e-eva-magenta-appt\/80 {
  border-inline-end-color: rgba(223, 91, 146, 0.8);
}

.border-e-eva-magenta-appt\/85 {
  border-inline-end-color: rgba(223, 91, 146, 0.85);
}

.border-e-eva-magenta-appt\/90 {
  border-inline-end-color: rgba(223, 91, 146, 0.9);
}

.border-e-eva-magenta-appt\/95 {
  border-inline-end-color: rgba(223, 91, 146, 0.95);
}

.border-e-eva-orange-appt {
  border-inline-end-color: rgba(232, 176, 99, 1);
}

.border-e-eva-orange-appt\/0 {
  border-inline-end-color: rgba(232, 176, 99, 0);
}

.border-e-eva-orange-appt\/10 {
  border-inline-end-color: rgba(232, 176, 99, 0.1);
}

.border-e-eva-orange-appt\/100 {
  border-inline-end-color: rgba(232, 176, 99, 1);
}

.border-e-eva-orange-appt\/15 {
  border-inline-end-color: rgba(232, 176, 99, 0.15);
}

.border-e-eva-orange-appt\/20 {
  border-inline-end-color: rgba(232, 176, 99, 0.2);
}

.border-e-eva-orange-appt\/25 {
  border-inline-end-color: rgba(232, 176, 99, 0.25);
}

.border-e-eva-orange-appt\/30 {
  border-inline-end-color: rgba(232, 176, 99, 0.3);
}

.border-e-eva-orange-appt\/35 {
  border-inline-end-color: rgba(232, 176, 99, 0.35);
}

.border-e-eva-orange-appt\/40 {
  border-inline-end-color: rgba(232, 176, 99, 0.4);
}

.border-e-eva-orange-appt\/45 {
  border-inline-end-color: rgba(232, 176, 99, 0.45);
}

.border-e-eva-orange-appt\/5 {
  border-inline-end-color: rgba(232, 176, 99, 0.05);
}

.border-e-eva-orange-appt\/50 {
  border-inline-end-color: rgba(232, 176, 99, 0.5);
}

.border-e-eva-orange-appt\/55 {
  border-inline-end-color: rgba(232, 176, 99, 0.55);
}

.border-e-eva-orange-appt\/60 {
  border-inline-end-color: rgba(232, 176, 99, 0.6);
}

.border-e-eva-orange-appt\/65 {
  border-inline-end-color: rgba(232, 176, 99, 0.65);
}

.border-e-eva-orange-appt\/70 {
  border-inline-end-color: rgba(232, 176, 99, 0.7);
}

.border-e-eva-orange-appt\/75 {
  border-inline-end-color: rgba(232, 176, 99, 0.75);
}

.border-e-eva-orange-appt\/80 {
  border-inline-end-color: rgba(232, 176, 99, 0.8);
}

.border-e-eva-orange-appt\/85 {
  border-inline-end-color: rgba(232, 176, 99, 0.85);
}

.border-e-eva-orange-appt\/90 {
  border-inline-end-color: rgba(232, 176, 99, 0.9);
}

.border-e-eva-orange-appt\/95 {
  border-inline-end-color: rgba(232, 176, 99, 0.95);
}

.border-e-eva-purple-appt {
  border-inline-end-color: rgba(125, 117, 164, 1);
}

.border-e-eva-purple-appt\/0 {
  border-inline-end-color: rgba(125, 117, 164, 0);
}

.border-e-eva-purple-appt\/10 {
  border-inline-end-color: rgba(125, 117, 164, 0.1);
}

.border-e-eva-purple-appt\/100 {
  border-inline-end-color: rgba(125, 117, 164, 1);
}

.border-e-eva-purple-appt\/15 {
  border-inline-end-color: rgba(125, 117, 164, 0.15);
}

.border-e-eva-purple-appt\/20 {
  border-inline-end-color: rgba(125, 117, 164, 0.2);
}

.border-e-eva-purple-appt\/25 {
  border-inline-end-color: rgba(125, 117, 164, 0.25);
}

.border-e-eva-purple-appt\/30 {
  border-inline-end-color: rgba(125, 117, 164, 0.3);
}

.border-e-eva-purple-appt\/35 {
  border-inline-end-color: rgba(125, 117, 164, 0.35);
}

.border-e-eva-purple-appt\/40 {
  border-inline-end-color: rgba(125, 117, 164, 0.4);
}

.border-e-eva-purple-appt\/45 {
  border-inline-end-color: rgba(125, 117, 164, 0.45);
}

.border-e-eva-purple-appt\/5 {
  border-inline-end-color: rgba(125, 117, 164, 0.05);
}

.border-e-eva-purple-appt\/50 {
  border-inline-end-color: rgba(125, 117, 164, 0.5);
}

.border-e-eva-purple-appt\/55 {
  border-inline-end-color: rgba(125, 117, 164, 0.55);
}

.border-e-eva-purple-appt\/60 {
  border-inline-end-color: rgba(125, 117, 164, 0.6);
}

.border-e-eva-purple-appt\/65 {
  border-inline-end-color: rgba(125, 117, 164, 0.65);
}

.border-e-eva-purple-appt\/70 {
  border-inline-end-color: rgba(125, 117, 164, 0.7);
}

.border-e-eva-purple-appt\/75 {
  border-inline-end-color: rgba(125, 117, 164, 0.75);
}

.border-e-eva-purple-appt\/80 {
  border-inline-end-color: rgba(125, 117, 164, 0.8);
}

.border-e-eva-purple-appt\/85 {
  border-inline-end-color: rgba(125, 117, 164, 0.85);
}

.border-e-eva-purple-appt\/90 {
  border-inline-end-color: rgba(125, 117, 164, 0.9);
}

.border-e-eva-purple-appt\/95 {
  border-inline-end-color: rgba(125, 117, 164, 0.95);
}

.border-e-eva-red {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(234 101 101 / var(--tw-border-opacity, 1));
}

.border-e-eva-red-appt {
  border-inline-end-color: rgba(243, 63, 77, 1);
}

.border-e-eva-red-appt\/0 {
  border-inline-end-color: rgba(243, 63, 77, 0);
}

.border-e-eva-red-appt\/10 {
  border-inline-end-color: rgba(243, 63, 77, 0.1);
}

.border-e-eva-red-appt\/100 {
  border-inline-end-color: rgba(243, 63, 77, 1);
}

.border-e-eva-red-appt\/15 {
  border-inline-end-color: rgba(243, 63, 77, 0.15);
}

.border-e-eva-red-appt\/20 {
  border-inline-end-color: rgba(243, 63, 77, 0.2);
}

.border-e-eva-red-appt\/25 {
  border-inline-end-color: rgba(243, 63, 77, 0.25);
}

.border-e-eva-red-appt\/30 {
  border-inline-end-color: rgba(243, 63, 77, 0.3);
}

.border-e-eva-red-appt\/35 {
  border-inline-end-color: rgba(243, 63, 77, 0.35);
}

.border-e-eva-red-appt\/40 {
  border-inline-end-color: rgba(243, 63, 77, 0.4);
}

.border-e-eva-red-appt\/45 {
  border-inline-end-color: rgba(243, 63, 77, 0.45);
}

.border-e-eva-red-appt\/5 {
  border-inline-end-color: rgba(243, 63, 77, 0.05);
}

.border-e-eva-red-appt\/50 {
  border-inline-end-color: rgba(243, 63, 77, 0.5);
}

.border-e-eva-red-appt\/55 {
  border-inline-end-color: rgba(243, 63, 77, 0.55);
}

.border-e-eva-red-appt\/60 {
  border-inline-end-color: rgba(243, 63, 77, 0.6);
}

.border-e-eva-red-appt\/65 {
  border-inline-end-color: rgba(243, 63, 77, 0.65);
}

.border-e-eva-red-appt\/70 {
  border-inline-end-color: rgba(243, 63, 77, 0.7);
}

.border-e-eva-red-appt\/75 {
  border-inline-end-color: rgba(243, 63, 77, 0.75);
}

.border-e-eva-red-appt\/80 {
  border-inline-end-color: rgba(243, 63, 77, 0.8);
}

.border-e-eva-red-appt\/85 {
  border-inline-end-color: rgba(243, 63, 77, 0.85);
}

.border-e-eva-red-appt\/90 {
  border-inline-end-color: rgba(243, 63, 77, 0.9);
}

.border-e-eva-red-appt\/95 {
  border-inline-end-color: rgba(243, 63, 77, 0.95);
}

.border-e-eva-red-orange-appt {
  border-inline-end-color: rgba(217, 154, 118, 1);
}

.border-e-eva-red-orange-appt\/0 {
  border-inline-end-color: rgba(217, 154, 118, 0);
}

.border-e-eva-red-orange-appt\/10 {
  border-inline-end-color: rgba(217, 154, 118, 0.1);
}

.border-e-eva-red-orange-appt\/100 {
  border-inline-end-color: rgba(217, 154, 118, 1);
}

.border-e-eva-red-orange-appt\/15 {
  border-inline-end-color: rgba(217, 154, 118, 0.15);
}

.border-e-eva-red-orange-appt\/20 {
  border-inline-end-color: rgba(217, 154, 118, 0.2);
}

.border-e-eva-red-orange-appt\/25 {
  border-inline-end-color: rgba(217, 154, 118, 0.25);
}

.border-e-eva-red-orange-appt\/30 {
  border-inline-end-color: rgba(217, 154, 118, 0.3);
}

.border-e-eva-red-orange-appt\/35 {
  border-inline-end-color: rgba(217, 154, 118, 0.35);
}

.border-e-eva-red-orange-appt\/40 {
  border-inline-end-color: rgba(217, 154, 118, 0.4);
}

.border-e-eva-red-orange-appt\/45 {
  border-inline-end-color: rgba(217, 154, 118, 0.45);
}

.border-e-eva-red-orange-appt\/5 {
  border-inline-end-color: rgba(217, 154, 118, 0.05);
}

.border-e-eva-red-orange-appt\/50 {
  border-inline-end-color: rgba(217, 154, 118, 0.5);
}

.border-e-eva-red-orange-appt\/55 {
  border-inline-end-color: rgba(217, 154, 118, 0.55);
}

.border-e-eva-red-orange-appt\/60 {
  border-inline-end-color: rgba(217, 154, 118, 0.6);
}

.border-e-eva-red-orange-appt\/65 {
  border-inline-end-color: rgba(217, 154, 118, 0.65);
}

.border-e-eva-red-orange-appt\/70 {
  border-inline-end-color: rgba(217, 154, 118, 0.7);
}

.border-e-eva-red-orange-appt\/75 {
  border-inline-end-color: rgba(217, 154, 118, 0.75);
}

.border-e-eva-red-orange-appt\/80 {
  border-inline-end-color: rgba(217, 154, 118, 0.8);
}

.border-e-eva-red-orange-appt\/85 {
  border-inline-end-color: rgba(217, 154, 118, 0.85);
}

.border-e-eva-red-orange-appt\/90 {
  border-inline-end-color: rgba(217, 154, 118, 0.9);
}

.border-e-eva-red-orange-appt\/95 {
  border-inline-end-color: rgba(217, 154, 118, 0.95);
}

.border-e-eva-red\/0 {
  border-inline-end-color: rgb(234 101 101 / 0);
}

.border-e-eva-red\/10 {
  border-inline-end-color: rgb(234 101 101 / 0.1);
}

.border-e-eva-red\/100 {
  border-inline-end-color: rgb(234 101 101 / 1);
}

.border-e-eva-red\/15 {
  border-inline-end-color: rgb(234 101 101 / 0.15);
}

.border-e-eva-red\/20 {
  border-inline-end-color: rgb(234 101 101 / 0.2);
}

.border-e-eva-red\/25 {
  border-inline-end-color: rgb(234 101 101 / 0.25);
}

.border-e-eva-red\/30 {
  border-inline-end-color: rgb(234 101 101 / 0.3);
}

.border-e-eva-red\/35 {
  border-inline-end-color: rgb(234 101 101 / 0.35);
}

.border-e-eva-red\/40 {
  border-inline-end-color: rgb(234 101 101 / 0.4);
}

.border-e-eva-red\/45 {
  border-inline-end-color: rgb(234 101 101 / 0.45);
}

.border-e-eva-red\/5 {
  border-inline-end-color: rgb(234 101 101 / 0.05);
}

.border-e-eva-red\/50 {
  border-inline-end-color: rgb(234 101 101 / 0.5);
}

.border-e-eva-red\/55 {
  border-inline-end-color: rgb(234 101 101 / 0.55);
}

.border-e-eva-red\/60 {
  border-inline-end-color: rgb(234 101 101 / 0.6);
}

.border-e-eva-red\/65 {
  border-inline-end-color: rgb(234 101 101 / 0.65);
}

.border-e-eva-red\/70 {
  border-inline-end-color: rgb(234 101 101 / 0.7);
}

.border-e-eva-red\/75 {
  border-inline-end-color: rgb(234 101 101 / 0.75);
}

.border-e-eva-red\/80 {
  border-inline-end-color: rgb(234 101 101 / 0.8);
}

.border-e-eva-red\/85 {
  border-inline-end-color: rgb(234 101 101 / 0.85);
}

.border-e-eva-red\/90 {
  border-inline-end-color: rgb(234 101 101 / 0.9);
}

.border-e-eva-red\/95 {
  border-inline-end-color: rgb(234 101 101 / 0.95);
}

.border-e-eva-teal-appt {
  --tw-border-opacity: 1;
  border-inline-end-color: rgba(22, 172, 151, var(--tw-border-opacity, 1));
}

.border-e-eva-teal-appt\/0 {
  border-inline-end-color: rgba(22, 172, 151, 0);
}

.border-e-eva-teal-appt\/10 {
  border-inline-end-color: rgba(22, 172, 151, 0.1);
}

.border-e-eva-teal-appt\/100 {
  border-inline-end-color: rgba(22, 172, 151, 1);
}

.border-e-eva-teal-appt\/15 {
  border-inline-end-color: rgba(22, 172, 151, 0.15);
}

.border-e-eva-teal-appt\/20 {
  border-inline-end-color: rgba(22, 172, 151, 0.2);
}

.border-e-eva-teal-appt\/25 {
  border-inline-end-color: rgba(22, 172, 151, 0.25);
}

.border-e-eva-teal-appt\/30 {
  border-inline-end-color: rgba(22, 172, 151, 0.3);
}

.border-e-eva-teal-appt\/35 {
  border-inline-end-color: rgba(22, 172, 151, 0.35);
}

.border-e-eva-teal-appt\/40 {
  border-inline-end-color: rgba(22, 172, 151, 0.4);
}

.border-e-eva-teal-appt\/45 {
  border-inline-end-color: rgba(22, 172, 151, 0.45);
}

.border-e-eva-teal-appt\/5 {
  border-inline-end-color: rgba(22, 172, 151, 0.05);
}

.border-e-eva-teal-appt\/50 {
  border-inline-end-color: rgba(22, 172, 151, 0.5);
}

.border-e-eva-teal-appt\/55 {
  border-inline-end-color: rgba(22, 172, 151, 0.55);
}

.border-e-eva-teal-appt\/60 {
  border-inline-end-color: rgba(22, 172, 151, 0.6);
}

.border-e-eva-teal-appt\/65 {
  border-inline-end-color: rgba(22, 172, 151, 0.65);
}

.border-e-eva-teal-appt\/70 {
  border-inline-end-color: rgba(22, 172, 151, 0.7);
}

.border-e-eva-teal-appt\/75 {
  border-inline-end-color: rgba(22, 172, 151, 0.75);
}

.border-e-eva-teal-appt\/80 {
  border-inline-end-color: rgba(22, 172, 151, 0.8);
}

.border-e-eva-teal-appt\/85 {
  border-inline-end-color: rgba(22, 172, 151, 0.85);
}

.border-e-eva-teal-appt\/90 {
  border-inline-end-color: rgba(22, 172, 151, 0.9);
}

.border-e-eva-teal-appt\/95 {
  border-inline-end-color: rgba(22, 172, 151, 0.95);
}

.border-e-eva-yellow {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(233 179 98 / var(--tw-border-opacity, 1));
}

.border-e-eva-yellow-appt {
  border-inline-end-color: rgba(240, 226, 0, 1);
}

.border-e-eva-yellow-appt\/0 {
  border-inline-end-color: rgba(240, 226, 0, 0);
}

.border-e-eva-yellow-appt\/10 {
  border-inline-end-color: rgba(240, 226, 0, 0.1);
}

.border-e-eva-yellow-appt\/100 {
  border-inline-end-color: rgba(240, 226, 0, 1);
}

.border-e-eva-yellow-appt\/15 {
  border-inline-end-color: rgba(240, 226, 0, 0.15);
}

.border-e-eva-yellow-appt\/20 {
  border-inline-end-color: rgba(240, 226, 0, 0.2);
}

.border-e-eva-yellow-appt\/25 {
  border-inline-end-color: rgba(240, 226, 0, 0.25);
}

.border-e-eva-yellow-appt\/30 {
  border-inline-end-color: rgba(240, 226, 0, 0.3);
}

.border-e-eva-yellow-appt\/35 {
  border-inline-end-color: rgba(240, 226, 0, 0.35);
}

.border-e-eva-yellow-appt\/40 {
  border-inline-end-color: rgba(240, 226, 0, 0.4);
}

.border-e-eva-yellow-appt\/45 {
  border-inline-end-color: rgba(240, 226, 0, 0.45);
}

.border-e-eva-yellow-appt\/5 {
  border-inline-end-color: rgba(240, 226, 0, 0.05);
}

.border-e-eva-yellow-appt\/50 {
  border-inline-end-color: rgba(240, 226, 0, 0.5);
}

.border-e-eva-yellow-appt\/55 {
  border-inline-end-color: rgba(240, 226, 0, 0.55);
}

.border-e-eva-yellow-appt\/60 {
  border-inline-end-color: rgba(240, 226, 0, 0.6);
}

.border-e-eva-yellow-appt\/65 {
  border-inline-end-color: rgba(240, 226, 0, 0.65);
}

.border-e-eva-yellow-appt\/70 {
  border-inline-end-color: rgba(240, 226, 0, 0.7);
}

.border-e-eva-yellow-appt\/75 {
  border-inline-end-color: rgba(240, 226, 0, 0.75);
}

.border-e-eva-yellow-appt\/80 {
  border-inline-end-color: rgba(240, 226, 0, 0.8);
}

.border-e-eva-yellow-appt\/85 {
  border-inline-end-color: rgba(240, 226, 0, 0.85);
}

.border-e-eva-yellow-appt\/90 {
  border-inline-end-color: rgba(240, 226, 0, 0.9);
}

.border-e-eva-yellow-appt\/95 {
  border-inline-end-color: rgba(240, 226, 0, 0.95);
}

.border-e-eva-yellow\/0 {
  border-inline-end-color: rgb(233 179 98 / 0);
}

.border-e-eva-yellow\/10 {
  border-inline-end-color: rgb(233 179 98 / 0.1);
}

.border-e-eva-yellow\/100 {
  border-inline-end-color: rgb(233 179 98 / 1);
}

.border-e-eva-yellow\/15 {
  border-inline-end-color: rgb(233 179 98 / 0.15);
}

.border-e-eva-yellow\/20 {
  border-inline-end-color: rgb(233 179 98 / 0.2);
}

.border-e-eva-yellow\/25 {
  border-inline-end-color: rgb(233 179 98 / 0.25);
}

.border-e-eva-yellow\/30 {
  border-inline-end-color: rgb(233 179 98 / 0.3);
}

.border-e-eva-yellow\/35 {
  border-inline-end-color: rgb(233 179 98 / 0.35);
}

.border-e-eva-yellow\/40 {
  border-inline-end-color: rgb(233 179 98 / 0.4);
}

.border-e-eva-yellow\/45 {
  border-inline-end-color: rgb(233 179 98 / 0.45);
}

.border-e-eva-yellow\/5 {
  border-inline-end-color: rgb(233 179 98 / 0.05);
}

.border-e-eva-yellow\/50 {
  border-inline-end-color: rgb(233 179 98 / 0.5);
}

.border-e-eva-yellow\/55 {
  border-inline-end-color: rgb(233 179 98 / 0.55);
}

.border-e-eva-yellow\/60 {
  border-inline-end-color: rgb(233 179 98 / 0.6);
}

.border-e-eva-yellow\/65 {
  border-inline-end-color: rgb(233 179 98 / 0.65);
}

.border-e-eva-yellow\/70 {
  border-inline-end-color: rgb(233 179 98 / 0.7);
}

.border-e-eva-yellow\/75 {
  border-inline-end-color: rgb(233 179 98 / 0.75);
}

.border-e-eva-yellow\/80 {
  border-inline-end-color: rgb(233 179 98 / 0.8);
}

.border-e-eva-yellow\/85 {
  border-inline-end-color: rgb(233 179 98 / 0.85);
}

.border-e-eva-yellow\/90 {
  border-inline-end-color: rgb(233 179 98 / 0.9);
}

.border-e-eva-yellow\/95 {
  border-inline-end-color: rgb(233 179 98 / 0.95);
}

.border-e-gray-100 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(245 245 245 / var(--tw-border-opacity, 1));
}

.border-e-gray-100\/0 {
  border-inline-end-color: rgb(245 245 245 / 0);
}

.border-e-gray-100\/10 {
  border-inline-end-color: rgb(245 245 245 / 0.1);
}

.border-e-gray-100\/100 {
  border-inline-end-color: rgb(245 245 245 / 1);
}

.border-e-gray-100\/15 {
  border-inline-end-color: rgb(245 245 245 / 0.15);
}

.border-e-gray-100\/20 {
  border-inline-end-color: rgb(245 245 245 / 0.2);
}

.border-e-gray-100\/25 {
  border-inline-end-color: rgb(245 245 245 / 0.25);
}

.border-e-gray-100\/30 {
  border-inline-end-color: rgb(245 245 245 / 0.3);
}

.border-e-gray-100\/35 {
  border-inline-end-color: rgb(245 245 245 / 0.35);
}

.border-e-gray-100\/40 {
  border-inline-end-color: rgb(245 245 245 / 0.4);
}

.border-e-gray-100\/45 {
  border-inline-end-color: rgb(245 245 245 / 0.45);
}

.border-e-gray-100\/5 {
  border-inline-end-color: rgb(245 245 245 / 0.05);
}

.border-e-gray-100\/50 {
  border-inline-end-color: rgb(245 245 245 / 0.5);
}

.border-e-gray-100\/55 {
  border-inline-end-color: rgb(245 245 245 / 0.55);
}

.border-e-gray-100\/60 {
  border-inline-end-color: rgb(245 245 245 / 0.6);
}

.border-e-gray-100\/65 {
  border-inline-end-color: rgb(245 245 245 / 0.65);
}

.border-e-gray-100\/70 {
  border-inline-end-color: rgb(245 245 245 / 0.7);
}

.border-e-gray-100\/75 {
  border-inline-end-color: rgb(245 245 245 / 0.75);
}

.border-e-gray-100\/80 {
  border-inline-end-color: rgb(245 245 245 / 0.8);
}

.border-e-gray-100\/85 {
  border-inline-end-color: rgb(245 245 245 / 0.85);
}

.border-e-gray-100\/90 {
  border-inline-end-color: rgb(245 245 245 / 0.9);
}

.border-e-gray-100\/95 {
  border-inline-end-color: rgb(245 245 245 / 0.95);
}

.border-e-gray-200 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
}

.border-e-gray-200\/0 {
  border-inline-end-color: rgb(229 229 229 / 0);
}

.border-e-gray-200\/10 {
  border-inline-end-color: rgb(229 229 229 / 0.1);
}

.border-e-gray-200\/100 {
  border-inline-end-color: rgb(229 229 229 / 1);
}

.border-e-gray-200\/15 {
  border-inline-end-color: rgb(229 229 229 / 0.15);
}

.border-e-gray-200\/20 {
  border-inline-end-color: rgb(229 229 229 / 0.2);
}

.border-e-gray-200\/25 {
  border-inline-end-color: rgb(229 229 229 / 0.25);
}

.border-e-gray-200\/30 {
  border-inline-end-color: rgb(229 229 229 / 0.3);
}

.border-e-gray-200\/35 {
  border-inline-end-color: rgb(229 229 229 / 0.35);
}

.border-e-gray-200\/40 {
  border-inline-end-color: rgb(229 229 229 / 0.4);
}

.border-e-gray-200\/45 {
  border-inline-end-color: rgb(229 229 229 / 0.45);
}

.border-e-gray-200\/5 {
  border-inline-end-color: rgb(229 229 229 / 0.05);
}

.border-e-gray-200\/50 {
  border-inline-end-color: rgb(229 229 229 / 0.5);
}

.border-e-gray-200\/55 {
  border-inline-end-color: rgb(229 229 229 / 0.55);
}

.border-e-gray-200\/60 {
  border-inline-end-color: rgb(229 229 229 / 0.6);
}

.border-e-gray-200\/65 {
  border-inline-end-color: rgb(229 229 229 / 0.65);
}

.border-e-gray-200\/70 {
  border-inline-end-color: rgb(229 229 229 / 0.7);
}

.border-e-gray-200\/75 {
  border-inline-end-color: rgb(229 229 229 / 0.75);
}

.border-e-gray-200\/80 {
  border-inline-end-color: rgb(229 229 229 / 0.8);
}

.border-e-gray-200\/85 {
  border-inline-end-color: rgb(229 229 229 / 0.85);
}

.border-e-gray-200\/90 {
  border-inline-end-color: rgb(229 229 229 / 0.9);
}

.border-e-gray-200\/95 {
  border-inline-end-color: rgb(229 229 229 / 0.95);
}

.border-e-gray-300 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(212 212 212 / var(--tw-border-opacity, 1));
}

.border-e-gray-300\/0 {
  border-inline-end-color: rgb(212 212 212 / 0);
}

.border-e-gray-300\/10 {
  border-inline-end-color: rgb(212 212 212 / 0.1);
}

.border-e-gray-300\/100 {
  border-inline-end-color: rgb(212 212 212 / 1);
}

.border-e-gray-300\/15 {
  border-inline-end-color: rgb(212 212 212 / 0.15);
}

.border-e-gray-300\/20 {
  border-inline-end-color: rgb(212 212 212 / 0.2);
}

.border-e-gray-300\/25 {
  border-inline-end-color: rgb(212 212 212 / 0.25);
}

.border-e-gray-300\/30 {
  border-inline-end-color: rgb(212 212 212 / 0.3);
}

.border-e-gray-300\/35 {
  border-inline-end-color: rgb(212 212 212 / 0.35);
}

.border-e-gray-300\/40 {
  border-inline-end-color: rgb(212 212 212 / 0.4);
}

.border-e-gray-300\/45 {
  border-inline-end-color: rgb(212 212 212 / 0.45);
}

.border-e-gray-300\/5 {
  border-inline-end-color: rgb(212 212 212 / 0.05);
}

.border-e-gray-300\/50 {
  border-inline-end-color: rgb(212 212 212 / 0.5);
}

.border-e-gray-300\/55 {
  border-inline-end-color: rgb(212 212 212 / 0.55);
}

.border-e-gray-300\/60 {
  border-inline-end-color: rgb(212 212 212 / 0.6);
}

.border-e-gray-300\/65 {
  border-inline-end-color: rgb(212 212 212 / 0.65);
}

.border-e-gray-300\/70 {
  border-inline-end-color: rgb(212 212 212 / 0.7);
}

.border-e-gray-300\/75 {
  border-inline-end-color: rgb(212 212 212 / 0.75);
}

.border-e-gray-300\/80 {
  border-inline-end-color: rgb(212 212 212 / 0.8);
}

.border-e-gray-300\/85 {
  border-inline-end-color: rgb(212 212 212 / 0.85);
}

.border-e-gray-300\/90 {
  border-inline-end-color: rgb(212 212 212 / 0.9);
}

.border-e-gray-300\/95 {
  border-inline-end-color: rgb(212 212 212 / 0.95);
}

.border-e-gray-400 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(163 163 163 / var(--tw-border-opacity, 1));
}

.border-e-gray-400\/0 {
  border-inline-end-color: rgb(163 163 163 / 0);
}

.border-e-gray-400\/10 {
  border-inline-end-color: rgb(163 163 163 / 0.1);
}

.border-e-gray-400\/100 {
  border-inline-end-color: rgb(163 163 163 / 1);
}

.border-e-gray-400\/15 {
  border-inline-end-color: rgb(163 163 163 / 0.15);
}

.border-e-gray-400\/20 {
  border-inline-end-color: rgb(163 163 163 / 0.2);
}

.border-e-gray-400\/25 {
  border-inline-end-color: rgb(163 163 163 / 0.25);
}

.border-e-gray-400\/30 {
  border-inline-end-color: rgb(163 163 163 / 0.3);
}

.border-e-gray-400\/35 {
  border-inline-end-color: rgb(163 163 163 / 0.35);
}

.border-e-gray-400\/40 {
  border-inline-end-color: rgb(163 163 163 / 0.4);
}

.border-e-gray-400\/45 {
  border-inline-end-color: rgb(163 163 163 / 0.45);
}

.border-e-gray-400\/5 {
  border-inline-end-color: rgb(163 163 163 / 0.05);
}

.border-e-gray-400\/50 {
  border-inline-end-color: rgb(163 163 163 / 0.5);
}

.border-e-gray-400\/55 {
  border-inline-end-color: rgb(163 163 163 / 0.55);
}

.border-e-gray-400\/60 {
  border-inline-end-color: rgb(163 163 163 / 0.6);
}

.border-e-gray-400\/65 {
  border-inline-end-color: rgb(163 163 163 / 0.65);
}

.border-e-gray-400\/70 {
  border-inline-end-color: rgb(163 163 163 / 0.7);
}

.border-e-gray-400\/75 {
  border-inline-end-color: rgb(163 163 163 / 0.75);
}

.border-e-gray-400\/80 {
  border-inline-end-color: rgb(163 163 163 / 0.8);
}

.border-e-gray-400\/85 {
  border-inline-end-color: rgb(163 163 163 / 0.85);
}

.border-e-gray-400\/90 {
  border-inline-end-color: rgb(163 163 163 / 0.9);
}

.border-e-gray-400\/95 {
  border-inline-end-color: rgb(163 163 163 / 0.95);
}

.border-e-gray-50 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(250 250 250 / var(--tw-border-opacity, 1));
}

.border-e-gray-50\/0 {
  border-inline-end-color: rgb(250 250 250 / 0);
}

.border-e-gray-50\/10 {
  border-inline-end-color: rgb(250 250 250 / 0.1);
}

.border-e-gray-50\/100 {
  border-inline-end-color: rgb(250 250 250 / 1);
}

.border-e-gray-50\/15 {
  border-inline-end-color: rgb(250 250 250 / 0.15);
}

.border-e-gray-50\/20 {
  border-inline-end-color: rgb(250 250 250 / 0.2);
}

.border-e-gray-50\/25 {
  border-inline-end-color: rgb(250 250 250 / 0.25);
}

.border-e-gray-50\/30 {
  border-inline-end-color: rgb(250 250 250 / 0.3);
}

.border-e-gray-50\/35 {
  border-inline-end-color: rgb(250 250 250 / 0.35);
}

.border-e-gray-50\/40 {
  border-inline-end-color: rgb(250 250 250 / 0.4);
}

.border-e-gray-50\/45 {
  border-inline-end-color: rgb(250 250 250 / 0.45);
}

.border-e-gray-50\/5 {
  border-inline-end-color: rgb(250 250 250 / 0.05);
}

.border-e-gray-50\/50 {
  border-inline-end-color: rgb(250 250 250 / 0.5);
}

.border-e-gray-50\/55 {
  border-inline-end-color: rgb(250 250 250 / 0.55);
}

.border-e-gray-50\/60 {
  border-inline-end-color: rgb(250 250 250 / 0.6);
}

.border-e-gray-50\/65 {
  border-inline-end-color: rgb(250 250 250 / 0.65);
}

.border-e-gray-50\/70 {
  border-inline-end-color: rgb(250 250 250 / 0.7);
}

.border-e-gray-50\/75 {
  border-inline-end-color: rgb(250 250 250 / 0.75);
}

.border-e-gray-50\/80 {
  border-inline-end-color: rgb(250 250 250 / 0.8);
}

.border-e-gray-50\/85 {
  border-inline-end-color: rgb(250 250 250 / 0.85);
}

.border-e-gray-50\/90 {
  border-inline-end-color: rgb(250 250 250 / 0.9);
}

.border-e-gray-50\/95 {
  border-inline-end-color: rgb(250 250 250 / 0.95);
}

.border-e-gray-500 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(115 115 115 / var(--tw-border-opacity, 1));
}

.border-e-gray-500\/0 {
  border-inline-end-color: rgb(115 115 115 / 0);
}

.border-e-gray-500\/10 {
  border-inline-end-color: rgb(115 115 115 / 0.1);
}

.border-e-gray-500\/100 {
  border-inline-end-color: rgb(115 115 115 / 1);
}

.border-e-gray-500\/15 {
  border-inline-end-color: rgb(115 115 115 / 0.15);
}

.border-e-gray-500\/20 {
  border-inline-end-color: rgb(115 115 115 / 0.2);
}

.border-e-gray-500\/25 {
  border-inline-end-color: rgb(115 115 115 / 0.25);
}

.border-e-gray-500\/30 {
  border-inline-end-color: rgb(115 115 115 / 0.3);
}

.border-e-gray-500\/35 {
  border-inline-end-color: rgb(115 115 115 / 0.35);
}

.border-e-gray-500\/40 {
  border-inline-end-color: rgb(115 115 115 / 0.4);
}

.border-e-gray-500\/45 {
  border-inline-end-color: rgb(115 115 115 / 0.45);
}

.border-e-gray-500\/5 {
  border-inline-end-color: rgb(115 115 115 / 0.05);
}

.border-e-gray-500\/50 {
  border-inline-end-color: rgb(115 115 115 / 0.5);
}

.border-e-gray-500\/55 {
  border-inline-end-color: rgb(115 115 115 / 0.55);
}

.border-e-gray-500\/60 {
  border-inline-end-color: rgb(115 115 115 / 0.6);
}

.border-e-gray-500\/65 {
  border-inline-end-color: rgb(115 115 115 / 0.65);
}

.border-e-gray-500\/70 {
  border-inline-end-color: rgb(115 115 115 / 0.7);
}

.border-e-gray-500\/75 {
  border-inline-end-color: rgb(115 115 115 / 0.75);
}

.border-e-gray-500\/80 {
  border-inline-end-color: rgb(115 115 115 / 0.8);
}

.border-e-gray-500\/85 {
  border-inline-end-color: rgb(115 115 115 / 0.85);
}

.border-e-gray-500\/90 {
  border-inline-end-color: rgb(115 115 115 / 0.9);
}

.border-e-gray-500\/95 {
  border-inline-end-color: rgb(115 115 115 / 0.95);
}

.border-e-gray-600 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(82 82 82 / var(--tw-border-opacity, 1));
}

.border-e-gray-600\/0 {
  border-inline-end-color: rgb(82 82 82 / 0);
}

.border-e-gray-600\/10 {
  border-inline-end-color: rgb(82 82 82 / 0.1);
}

.border-e-gray-600\/100 {
  border-inline-end-color: rgb(82 82 82 / 1);
}

.border-e-gray-600\/15 {
  border-inline-end-color: rgb(82 82 82 / 0.15);
}

.border-e-gray-600\/20 {
  border-inline-end-color: rgb(82 82 82 / 0.2);
}

.border-e-gray-600\/25 {
  border-inline-end-color: rgb(82 82 82 / 0.25);
}

.border-e-gray-600\/30 {
  border-inline-end-color: rgb(82 82 82 / 0.3);
}

.border-e-gray-600\/35 {
  border-inline-end-color: rgb(82 82 82 / 0.35);
}

.border-e-gray-600\/40 {
  border-inline-end-color: rgb(82 82 82 / 0.4);
}

.border-e-gray-600\/45 {
  border-inline-end-color: rgb(82 82 82 / 0.45);
}

.border-e-gray-600\/5 {
  border-inline-end-color: rgb(82 82 82 / 0.05);
}

.border-e-gray-600\/50 {
  border-inline-end-color: rgb(82 82 82 / 0.5);
}

.border-e-gray-600\/55 {
  border-inline-end-color: rgb(82 82 82 / 0.55);
}

.border-e-gray-600\/60 {
  border-inline-end-color: rgb(82 82 82 / 0.6);
}

.border-e-gray-600\/65 {
  border-inline-end-color: rgb(82 82 82 / 0.65);
}

.border-e-gray-600\/70 {
  border-inline-end-color: rgb(82 82 82 / 0.7);
}

.border-e-gray-600\/75 {
  border-inline-end-color: rgb(82 82 82 / 0.75);
}

.border-e-gray-600\/80 {
  border-inline-end-color: rgb(82 82 82 / 0.8);
}

.border-e-gray-600\/85 {
  border-inline-end-color: rgb(82 82 82 / 0.85);
}

.border-e-gray-600\/90 {
  border-inline-end-color: rgb(82 82 82 / 0.9);
}

.border-e-gray-600\/95 {
  border-inline-end-color: rgb(82 82 82 / 0.95);
}

.border-e-gray-700 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(64 64 64 / var(--tw-border-opacity, 1));
}

.border-e-gray-700\/0 {
  border-inline-end-color: rgb(64 64 64 / 0);
}

.border-e-gray-700\/10 {
  border-inline-end-color: rgb(64 64 64 / 0.1);
}

.border-e-gray-700\/100 {
  border-inline-end-color: rgb(64 64 64 / 1);
}

.border-e-gray-700\/15 {
  border-inline-end-color: rgb(64 64 64 / 0.15);
}

.border-e-gray-700\/20 {
  border-inline-end-color: rgb(64 64 64 / 0.2);
}

.border-e-gray-700\/25 {
  border-inline-end-color: rgb(64 64 64 / 0.25);
}

.border-e-gray-700\/30 {
  border-inline-end-color: rgb(64 64 64 / 0.3);
}

.border-e-gray-700\/35 {
  border-inline-end-color: rgb(64 64 64 / 0.35);
}

.border-e-gray-700\/40 {
  border-inline-end-color: rgb(64 64 64 / 0.4);
}

.border-e-gray-700\/45 {
  border-inline-end-color: rgb(64 64 64 / 0.45);
}

.border-e-gray-700\/5 {
  border-inline-end-color: rgb(64 64 64 / 0.05);
}

.border-e-gray-700\/50 {
  border-inline-end-color: rgb(64 64 64 / 0.5);
}

.border-e-gray-700\/55 {
  border-inline-end-color: rgb(64 64 64 / 0.55);
}

.border-e-gray-700\/60 {
  border-inline-end-color: rgb(64 64 64 / 0.6);
}

.border-e-gray-700\/65 {
  border-inline-end-color: rgb(64 64 64 / 0.65);
}

.border-e-gray-700\/70 {
  border-inline-end-color: rgb(64 64 64 / 0.7);
}

.border-e-gray-700\/75 {
  border-inline-end-color: rgb(64 64 64 / 0.75);
}

.border-e-gray-700\/80 {
  border-inline-end-color: rgb(64 64 64 / 0.8);
}

.border-e-gray-700\/85 {
  border-inline-end-color: rgb(64 64 64 / 0.85);
}

.border-e-gray-700\/90 {
  border-inline-end-color: rgb(64 64 64 / 0.9);
}

.border-e-gray-700\/95 {
  border-inline-end-color: rgb(64 64 64 / 0.95);
}

.border-e-gray-800 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(38 38 38 / var(--tw-border-opacity, 1));
}

.border-e-gray-800\/0 {
  border-inline-end-color: rgb(38 38 38 / 0);
}

.border-e-gray-800\/10 {
  border-inline-end-color: rgb(38 38 38 / 0.1);
}

.border-e-gray-800\/100 {
  border-inline-end-color: rgb(38 38 38 / 1);
}

.border-e-gray-800\/15 {
  border-inline-end-color: rgb(38 38 38 / 0.15);
}

.border-e-gray-800\/20 {
  border-inline-end-color: rgb(38 38 38 / 0.2);
}

.border-e-gray-800\/25 {
  border-inline-end-color: rgb(38 38 38 / 0.25);
}

.border-e-gray-800\/30 {
  border-inline-end-color: rgb(38 38 38 / 0.3);
}

.border-e-gray-800\/35 {
  border-inline-end-color: rgb(38 38 38 / 0.35);
}

.border-e-gray-800\/40 {
  border-inline-end-color: rgb(38 38 38 / 0.4);
}

.border-e-gray-800\/45 {
  border-inline-end-color: rgb(38 38 38 / 0.45);
}

.border-e-gray-800\/5 {
  border-inline-end-color: rgb(38 38 38 / 0.05);
}

.border-e-gray-800\/50 {
  border-inline-end-color: rgb(38 38 38 / 0.5);
}

.border-e-gray-800\/55 {
  border-inline-end-color: rgb(38 38 38 / 0.55);
}

.border-e-gray-800\/60 {
  border-inline-end-color: rgb(38 38 38 / 0.6);
}

.border-e-gray-800\/65 {
  border-inline-end-color: rgb(38 38 38 / 0.65);
}

.border-e-gray-800\/70 {
  border-inline-end-color: rgb(38 38 38 / 0.7);
}

.border-e-gray-800\/75 {
  border-inline-end-color: rgb(38 38 38 / 0.75);
}

.border-e-gray-800\/80 {
  border-inline-end-color: rgb(38 38 38 / 0.8);
}

.border-e-gray-800\/85 {
  border-inline-end-color: rgb(38 38 38 / 0.85);
}

.border-e-gray-800\/90 {
  border-inline-end-color: rgb(38 38 38 / 0.9);
}

.border-e-gray-800\/95 {
  border-inline-end-color: rgb(38 38 38 / 0.95);
}

.border-e-gray-900 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(23 23 23 / var(--tw-border-opacity, 1));
}

.border-e-gray-900\/0 {
  border-inline-end-color: rgb(23 23 23 / 0);
}

.border-e-gray-900\/10 {
  border-inline-end-color: rgb(23 23 23 / 0.1);
}

.border-e-gray-900\/100 {
  border-inline-end-color: rgb(23 23 23 / 1);
}

.border-e-gray-900\/15 {
  border-inline-end-color: rgb(23 23 23 / 0.15);
}

.border-e-gray-900\/20 {
  border-inline-end-color: rgb(23 23 23 / 0.2);
}

.border-e-gray-900\/25 {
  border-inline-end-color: rgb(23 23 23 / 0.25);
}

.border-e-gray-900\/30 {
  border-inline-end-color: rgb(23 23 23 / 0.3);
}

.border-e-gray-900\/35 {
  border-inline-end-color: rgb(23 23 23 / 0.35);
}

.border-e-gray-900\/40 {
  border-inline-end-color: rgb(23 23 23 / 0.4);
}

.border-e-gray-900\/45 {
  border-inline-end-color: rgb(23 23 23 / 0.45);
}

.border-e-gray-900\/5 {
  border-inline-end-color: rgb(23 23 23 / 0.05);
}

.border-e-gray-900\/50 {
  border-inline-end-color: rgb(23 23 23 / 0.5);
}

.border-e-gray-900\/55 {
  border-inline-end-color: rgb(23 23 23 / 0.55);
}

.border-e-gray-900\/60 {
  border-inline-end-color: rgb(23 23 23 / 0.6);
}

.border-e-gray-900\/65 {
  border-inline-end-color: rgb(23 23 23 / 0.65);
}

.border-e-gray-900\/70 {
  border-inline-end-color: rgb(23 23 23 / 0.7);
}

.border-e-gray-900\/75 {
  border-inline-end-color: rgb(23 23 23 / 0.75);
}

.border-e-gray-900\/80 {
  border-inline-end-color: rgb(23 23 23 / 0.8);
}

.border-e-gray-900\/85 {
  border-inline-end-color: rgb(23 23 23 / 0.85);
}

.border-e-gray-900\/90 {
  border-inline-end-color: rgb(23 23 23 / 0.9);
}

.border-e-gray-900\/95 {
  border-inline-end-color: rgb(23 23 23 / 0.95);
}

.border-e-gray-950 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(10 10 10 / var(--tw-border-opacity, 1));
}

.border-e-gray-950\/0 {
  border-inline-end-color: rgb(10 10 10 / 0);
}

.border-e-gray-950\/10 {
  border-inline-end-color: rgb(10 10 10 / 0.1);
}

.border-e-gray-950\/100 {
  border-inline-end-color: rgb(10 10 10 / 1);
}

.border-e-gray-950\/15 {
  border-inline-end-color: rgb(10 10 10 / 0.15);
}

.border-e-gray-950\/20 {
  border-inline-end-color: rgb(10 10 10 / 0.2);
}

.border-e-gray-950\/25 {
  border-inline-end-color: rgb(10 10 10 / 0.25);
}

.border-e-gray-950\/30 {
  border-inline-end-color: rgb(10 10 10 / 0.3);
}

.border-e-gray-950\/35 {
  border-inline-end-color: rgb(10 10 10 / 0.35);
}

.border-e-gray-950\/40 {
  border-inline-end-color: rgb(10 10 10 / 0.4);
}

.border-e-gray-950\/45 {
  border-inline-end-color: rgb(10 10 10 / 0.45);
}

.border-e-gray-950\/5 {
  border-inline-end-color: rgb(10 10 10 / 0.05);
}

.border-e-gray-950\/50 {
  border-inline-end-color: rgb(10 10 10 / 0.5);
}

.border-e-gray-950\/55 {
  border-inline-end-color: rgb(10 10 10 / 0.55);
}

.border-e-gray-950\/60 {
  border-inline-end-color: rgb(10 10 10 / 0.6);
}

.border-e-gray-950\/65 {
  border-inline-end-color: rgb(10 10 10 / 0.65);
}

.border-e-gray-950\/70 {
  border-inline-end-color: rgb(10 10 10 / 0.7);
}

.border-e-gray-950\/75 {
  border-inline-end-color: rgb(10 10 10 / 0.75);
}

.border-e-gray-950\/80 {
  border-inline-end-color: rgb(10 10 10 / 0.8);
}

.border-e-gray-950\/85 {
  border-inline-end-color: rgb(10 10 10 / 0.85);
}

.border-e-gray-950\/90 {
  border-inline-end-color: rgb(10 10 10 / 0.9);
}

.border-e-gray-950\/95 {
  border-inline-end-color: rgb(10 10 10 / 0.95);
}

.border-e-green-100 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(220 252 231 / var(--tw-border-opacity, 1));
}

.border-e-green-100\/0 {
  border-inline-end-color: rgb(220 252 231 / 0);
}

.border-e-green-100\/10 {
  border-inline-end-color: rgb(220 252 231 / 0.1);
}

.border-e-green-100\/100 {
  border-inline-end-color: rgb(220 252 231 / 1);
}

.border-e-green-100\/15 {
  border-inline-end-color: rgb(220 252 231 / 0.15);
}

.border-e-green-100\/20 {
  border-inline-end-color: rgb(220 252 231 / 0.2);
}

.border-e-green-100\/25 {
  border-inline-end-color: rgb(220 252 231 / 0.25);
}

.border-e-green-100\/30 {
  border-inline-end-color: rgb(220 252 231 / 0.3);
}

.border-e-green-100\/35 {
  border-inline-end-color: rgb(220 252 231 / 0.35);
}

.border-e-green-100\/40 {
  border-inline-end-color: rgb(220 252 231 / 0.4);
}

.border-e-green-100\/45 {
  border-inline-end-color: rgb(220 252 231 / 0.45);
}

.border-e-green-100\/5 {
  border-inline-end-color: rgb(220 252 231 / 0.05);
}

.border-e-green-100\/50 {
  border-inline-end-color: rgb(220 252 231 / 0.5);
}

.border-e-green-100\/55 {
  border-inline-end-color: rgb(220 252 231 / 0.55);
}

.border-e-green-100\/60 {
  border-inline-end-color: rgb(220 252 231 / 0.6);
}

.border-e-green-100\/65 {
  border-inline-end-color: rgb(220 252 231 / 0.65);
}

.border-e-green-100\/70 {
  border-inline-end-color: rgb(220 252 231 / 0.7);
}

.border-e-green-100\/75 {
  border-inline-end-color: rgb(220 252 231 / 0.75);
}

.border-e-green-100\/80 {
  border-inline-end-color: rgb(220 252 231 / 0.8);
}

.border-e-green-100\/85 {
  border-inline-end-color: rgb(220 252 231 / 0.85);
}

.border-e-green-100\/90 {
  border-inline-end-color: rgb(220 252 231 / 0.9);
}

.border-e-green-100\/95 {
  border-inline-end-color: rgb(220 252 231 / 0.95);
}

.border-e-green-200 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
}

.border-e-green-200\/0 {
  border-inline-end-color: rgb(187 247 208 / 0);
}

.border-e-green-200\/10 {
  border-inline-end-color: rgb(187 247 208 / 0.1);
}

.border-e-green-200\/100 {
  border-inline-end-color: rgb(187 247 208 / 1);
}

.border-e-green-200\/15 {
  border-inline-end-color: rgb(187 247 208 / 0.15);
}

.border-e-green-200\/20 {
  border-inline-end-color: rgb(187 247 208 / 0.2);
}

.border-e-green-200\/25 {
  border-inline-end-color: rgb(187 247 208 / 0.25);
}

.border-e-green-200\/30 {
  border-inline-end-color: rgb(187 247 208 / 0.3);
}

.border-e-green-200\/35 {
  border-inline-end-color: rgb(187 247 208 / 0.35);
}

.border-e-green-200\/40 {
  border-inline-end-color: rgb(187 247 208 / 0.4);
}

.border-e-green-200\/45 {
  border-inline-end-color: rgb(187 247 208 / 0.45);
}

.border-e-green-200\/5 {
  border-inline-end-color: rgb(187 247 208 / 0.05);
}

.border-e-green-200\/50 {
  border-inline-end-color: rgb(187 247 208 / 0.5);
}

.border-e-green-200\/55 {
  border-inline-end-color: rgb(187 247 208 / 0.55);
}

.border-e-green-200\/60 {
  border-inline-end-color: rgb(187 247 208 / 0.6);
}

.border-e-green-200\/65 {
  border-inline-end-color: rgb(187 247 208 / 0.65);
}

.border-e-green-200\/70 {
  border-inline-end-color: rgb(187 247 208 / 0.7);
}

.border-e-green-200\/75 {
  border-inline-end-color: rgb(187 247 208 / 0.75);
}

.border-e-green-200\/80 {
  border-inline-end-color: rgb(187 247 208 / 0.8);
}

.border-e-green-200\/85 {
  border-inline-end-color: rgb(187 247 208 / 0.85);
}

.border-e-green-200\/90 {
  border-inline-end-color: rgb(187 247 208 / 0.9);
}

.border-e-green-200\/95 {
  border-inline-end-color: rgb(187 247 208 / 0.95);
}

.border-e-green-300 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(134 239 172 / var(--tw-border-opacity, 1));
}

.border-e-green-300\/0 {
  border-inline-end-color: rgb(134 239 172 / 0);
}

.border-e-green-300\/10 {
  border-inline-end-color: rgb(134 239 172 / 0.1);
}

.border-e-green-300\/100 {
  border-inline-end-color: rgb(134 239 172 / 1);
}

.border-e-green-300\/15 {
  border-inline-end-color: rgb(134 239 172 / 0.15);
}

.border-e-green-300\/20 {
  border-inline-end-color: rgb(134 239 172 / 0.2);
}

.border-e-green-300\/25 {
  border-inline-end-color: rgb(134 239 172 / 0.25);
}

.border-e-green-300\/30 {
  border-inline-end-color: rgb(134 239 172 / 0.3);
}

.border-e-green-300\/35 {
  border-inline-end-color: rgb(134 239 172 / 0.35);
}

.border-e-green-300\/40 {
  border-inline-end-color: rgb(134 239 172 / 0.4);
}

.border-e-green-300\/45 {
  border-inline-end-color: rgb(134 239 172 / 0.45);
}

.border-e-green-300\/5 {
  border-inline-end-color: rgb(134 239 172 / 0.05);
}

.border-e-green-300\/50 {
  border-inline-end-color: rgb(134 239 172 / 0.5);
}

.border-e-green-300\/55 {
  border-inline-end-color: rgb(134 239 172 / 0.55);
}

.border-e-green-300\/60 {
  border-inline-end-color: rgb(134 239 172 / 0.6);
}

.border-e-green-300\/65 {
  border-inline-end-color: rgb(134 239 172 / 0.65);
}

.border-e-green-300\/70 {
  border-inline-end-color: rgb(134 239 172 / 0.7);
}

.border-e-green-300\/75 {
  border-inline-end-color: rgb(134 239 172 / 0.75);
}

.border-e-green-300\/80 {
  border-inline-end-color: rgb(134 239 172 / 0.8);
}

.border-e-green-300\/85 {
  border-inline-end-color: rgb(134 239 172 / 0.85);
}

.border-e-green-300\/90 {
  border-inline-end-color: rgb(134 239 172 / 0.9);
}

.border-e-green-300\/95 {
  border-inline-end-color: rgb(134 239 172 / 0.95);
}

.border-e-green-400 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(74 222 128 / var(--tw-border-opacity, 1));
}

.border-e-green-400\/0 {
  border-inline-end-color: rgb(74 222 128 / 0);
}

.border-e-green-400\/10 {
  border-inline-end-color: rgb(74 222 128 / 0.1);
}

.border-e-green-400\/100 {
  border-inline-end-color: rgb(74 222 128 / 1);
}

.border-e-green-400\/15 {
  border-inline-end-color: rgb(74 222 128 / 0.15);
}

.border-e-green-400\/20 {
  border-inline-end-color: rgb(74 222 128 / 0.2);
}

.border-e-green-400\/25 {
  border-inline-end-color: rgb(74 222 128 / 0.25);
}

.border-e-green-400\/30 {
  border-inline-end-color: rgb(74 222 128 / 0.3);
}

.border-e-green-400\/35 {
  border-inline-end-color: rgb(74 222 128 / 0.35);
}

.border-e-green-400\/40 {
  border-inline-end-color: rgb(74 222 128 / 0.4);
}

.border-e-green-400\/45 {
  border-inline-end-color: rgb(74 222 128 / 0.45);
}

.border-e-green-400\/5 {
  border-inline-end-color: rgb(74 222 128 / 0.05);
}

.border-e-green-400\/50 {
  border-inline-end-color: rgb(74 222 128 / 0.5);
}

.border-e-green-400\/55 {
  border-inline-end-color: rgb(74 222 128 / 0.55);
}

.border-e-green-400\/60 {
  border-inline-end-color: rgb(74 222 128 / 0.6);
}

.border-e-green-400\/65 {
  border-inline-end-color: rgb(74 222 128 / 0.65);
}

.border-e-green-400\/70 {
  border-inline-end-color: rgb(74 222 128 / 0.7);
}

.border-e-green-400\/75 {
  border-inline-end-color: rgb(74 222 128 / 0.75);
}

.border-e-green-400\/80 {
  border-inline-end-color: rgb(74 222 128 / 0.8);
}

.border-e-green-400\/85 {
  border-inline-end-color: rgb(74 222 128 / 0.85);
}

.border-e-green-400\/90 {
  border-inline-end-color: rgb(74 222 128 / 0.9);
}

.border-e-green-400\/95 {
  border-inline-end-color: rgb(74 222 128 / 0.95);
}

.border-e-green-50 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(240 253 244 / var(--tw-border-opacity, 1));
}

.border-e-green-50\/0 {
  border-inline-end-color: rgb(240 253 244 / 0);
}

.border-e-green-50\/10 {
  border-inline-end-color: rgb(240 253 244 / 0.1);
}

.border-e-green-50\/100 {
  border-inline-end-color: rgb(240 253 244 / 1);
}

.border-e-green-50\/15 {
  border-inline-end-color: rgb(240 253 244 / 0.15);
}

.border-e-green-50\/20 {
  border-inline-end-color: rgb(240 253 244 / 0.2);
}

.border-e-green-50\/25 {
  border-inline-end-color: rgb(240 253 244 / 0.25);
}

.border-e-green-50\/30 {
  border-inline-end-color: rgb(240 253 244 / 0.3);
}

.border-e-green-50\/35 {
  border-inline-end-color: rgb(240 253 244 / 0.35);
}

.border-e-green-50\/40 {
  border-inline-end-color: rgb(240 253 244 / 0.4);
}

.border-e-green-50\/45 {
  border-inline-end-color: rgb(240 253 244 / 0.45);
}

.border-e-green-50\/5 {
  border-inline-end-color: rgb(240 253 244 / 0.05);
}

.border-e-green-50\/50 {
  border-inline-end-color: rgb(240 253 244 / 0.5);
}

.border-e-green-50\/55 {
  border-inline-end-color: rgb(240 253 244 / 0.55);
}

.border-e-green-50\/60 {
  border-inline-end-color: rgb(240 253 244 / 0.6);
}

.border-e-green-50\/65 {
  border-inline-end-color: rgb(240 253 244 / 0.65);
}

.border-e-green-50\/70 {
  border-inline-end-color: rgb(240 253 244 / 0.7);
}

.border-e-green-50\/75 {
  border-inline-end-color: rgb(240 253 244 / 0.75);
}

.border-e-green-50\/80 {
  border-inline-end-color: rgb(240 253 244 / 0.8);
}

.border-e-green-50\/85 {
  border-inline-end-color: rgb(240 253 244 / 0.85);
}

.border-e-green-50\/90 {
  border-inline-end-color: rgb(240 253 244 / 0.9);
}

.border-e-green-50\/95 {
  border-inline-end-color: rgb(240 253 244 / 0.95);
}

.border-e-green-500 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
}

.border-e-green-500\/0 {
  border-inline-end-color: rgb(34 197 94 / 0);
}

.border-e-green-500\/10 {
  border-inline-end-color: rgb(34 197 94 / 0.1);
}

.border-e-green-500\/100 {
  border-inline-end-color: rgb(34 197 94 / 1);
}

.border-e-green-500\/15 {
  border-inline-end-color: rgb(34 197 94 / 0.15);
}

.border-e-green-500\/20 {
  border-inline-end-color: rgb(34 197 94 / 0.2);
}

.border-e-green-500\/25 {
  border-inline-end-color: rgb(34 197 94 / 0.25);
}

.border-e-green-500\/30 {
  border-inline-end-color: rgb(34 197 94 / 0.3);
}

.border-e-green-500\/35 {
  border-inline-end-color: rgb(34 197 94 / 0.35);
}

.border-e-green-500\/40 {
  border-inline-end-color: rgb(34 197 94 / 0.4);
}

.border-e-green-500\/45 {
  border-inline-end-color: rgb(34 197 94 / 0.45);
}

.border-e-green-500\/5 {
  border-inline-end-color: rgb(34 197 94 / 0.05);
}

.border-e-green-500\/50 {
  border-inline-end-color: rgb(34 197 94 / 0.5);
}

.border-e-green-500\/55 {
  border-inline-end-color: rgb(34 197 94 / 0.55);
}

.border-e-green-500\/60 {
  border-inline-end-color: rgb(34 197 94 / 0.6);
}

.border-e-green-500\/65 {
  border-inline-end-color: rgb(34 197 94 / 0.65);
}

.border-e-green-500\/70 {
  border-inline-end-color: rgb(34 197 94 / 0.7);
}

.border-e-green-500\/75 {
  border-inline-end-color: rgb(34 197 94 / 0.75);
}

.border-e-green-500\/80 {
  border-inline-end-color: rgb(34 197 94 / 0.8);
}

.border-e-green-500\/85 {
  border-inline-end-color: rgb(34 197 94 / 0.85);
}

.border-e-green-500\/90 {
  border-inline-end-color: rgb(34 197 94 / 0.9);
}

.border-e-green-500\/95 {
  border-inline-end-color: rgb(34 197 94 / 0.95);
}

.border-e-green-600 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(22 163 74 / var(--tw-border-opacity, 1));
}

.border-e-green-600\/0 {
  border-inline-end-color: rgb(22 163 74 / 0);
}

.border-e-green-600\/10 {
  border-inline-end-color: rgb(22 163 74 / 0.1);
}

.border-e-green-600\/100 {
  border-inline-end-color: rgb(22 163 74 / 1);
}

.border-e-green-600\/15 {
  border-inline-end-color: rgb(22 163 74 / 0.15);
}

.border-e-green-600\/20 {
  border-inline-end-color: rgb(22 163 74 / 0.2);
}

.border-e-green-600\/25 {
  border-inline-end-color: rgb(22 163 74 / 0.25);
}

.border-e-green-600\/30 {
  border-inline-end-color: rgb(22 163 74 / 0.3);
}

.border-e-green-600\/35 {
  border-inline-end-color: rgb(22 163 74 / 0.35);
}

.border-e-green-600\/40 {
  border-inline-end-color: rgb(22 163 74 / 0.4);
}

.border-e-green-600\/45 {
  border-inline-end-color: rgb(22 163 74 / 0.45);
}

.border-e-green-600\/5 {
  border-inline-end-color: rgb(22 163 74 / 0.05);
}

.border-e-green-600\/50 {
  border-inline-end-color: rgb(22 163 74 / 0.5);
}

.border-e-green-600\/55 {
  border-inline-end-color: rgb(22 163 74 / 0.55);
}

.border-e-green-600\/60 {
  border-inline-end-color: rgb(22 163 74 / 0.6);
}

.border-e-green-600\/65 {
  border-inline-end-color: rgb(22 163 74 / 0.65);
}

.border-e-green-600\/70 {
  border-inline-end-color: rgb(22 163 74 / 0.7);
}

.border-e-green-600\/75 {
  border-inline-end-color: rgb(22 163 74 / 0.75);
}

.border-e-green-600\/80 {
  border-inline-end-color: rgb(22 163 74 / 0.8);
}

.border-e-green-600\/85 {
  border-inline-end-color: rgb(22 163 74 / 0.85);
}

.border-e-green-600\/90 {
  border-inline-end-color: rgb(22 163 74 / 0.9);
}

.border-e-green-600\/95 {
  border-inline-end-color: rgb(22 163 74 / 0.95);
}

.border-e-green-700 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(21 128 61 / var(--tw-border-opacity, 1));
}

.border-e-green-700\/0 {
  border-inline-end-color: rgb(21 128 61 / 0);
}

.border-e-green-700\/10 {
  border-inline-end-color: rgb(21 128 61 / 0.1);
}

.border-e-green-700\/100 {
  border-inline-end-color: rgb(21 128 61 / 1);
}

.border-e-green-700\/15 {
  border-inline-end-color: rgb(21 128 61 / 0.15);
}

.border-e-green-700\/20 {
  border-inline-end-color: rgb(21 128 61 / 0.2);
}

.border-e-green-700\/25 {
  border-inline-end-color: rgb(21 128 61 / 0.25);
}

.border-e-green-700\/30 {
  border-inline-end-color: rgb(21 128 61 / 0.3);
}

.border-e-green-700\/35 {
  border-inline-end-color: rgb(21 128 61 / 0.35);
}

.border-e-green-700\/40 {
  border-inline-end-color: rgb(21 128 61 / 0.4);
}

.border-e-green-700\/45 {
  border-inline-end-color: rgb(21 128 61 / 0.45);
}

.border-e-green-700\/5 {
  border-inline-end-color: rgb(21 128 61 / 0.05);
}

.border-e-green-700\/50 {
  border-inline-end-color: rgb(21 128 61 / 0.5);
}

.border-e-green-700\/55 {
  border-inline-end-color: rgb(21 128 61 / 0.55);
}

.border-e-green-700\/60 {
  border-inline-end-color: rgb(21 128 61 / 0.6);
}

.border-e-green-700\/65 {
  border-inline-end-color: rgb(21 128 61 / 0.65);
}

.border-e-green-700\/70 {
  border-inline-end-color: rgb(21 128 61 / 0.7);
}

.border-e-green-700\/75 {
  border-inline-end-color: rgb(21 128 61 / 0.75);
}

.border-e-green-700\/80 {
  border-inline-end-color: rgb(21 128 61 / 0.8);
}

.border-e-green-700\/85 {
  border-inline-end-color: rgb(21 128 61 / 0.85);
}

.border-e-green-700\/90 {
  border-inline-end-color: rgb(21 128 61 / 0.9);
}

.border-e-green-700\/95 {
  border-inline-end-color: rgb(21 128 61 / 0.95);
}

.border-e-green-800 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(22 101 52 / var(--tw-border-opacity, 1));
}

.border-e-green-800\/0 {
  border-inline-end-color: rgb(22 101 52 / 0);
}

.border-e-green-800\/10 {
  border-inline-end-color: rgb(22 101 52 / 0.1);
}

.border-e-green-800\/100 {
  border-inline-end-color: rgb(22 101 52 / 1);
}

.border-e-green-800\/15 {
  border-inline-end-color: rgb(22 101 52 / 0.15);
}

.border-e-green-800\/20 {
  border-inline-end-color: rgb(22 101 52 / 0.2);
}

.border-e-green-800\/25 {
  border-inline-end-color: rgb(22 101 52 / 0.25);
}

.border-e-green-800\/30 {
  border-inline-end-color: rgb(22 101 52 / 0.3);
}

.border-e-green-800\/35 {
  border-inline-end-color: rgb(22 101 52 / 0.35);
}

.border-e-green-800\/40 {
  border-inline-end-color: rgb(22 101 52 / 0.4);
}

.border-e-green-800\/45 {
  border-inline-end-color: rgb(22 101 52 / 0.45);
}

.border-e-green-800\/5 {
  border-inline-end-color: rgb(22 101 52 / 0.05);
}

.border-e-green-800\/50 {
  border-inline-end-color: rgb(22 101 52 / 0.5);
}

.border-e-green-800\/55 {
  border-inline-end-color: rgb(22 101 52 / 0.55);
}

.border-e-green-800\/60 {
  border-inline-end-color: rgb(22 101 52 / 0.6);
}

.border-e-green-800\/65 {
  border-inline-end-color: rgb(22 101 52 / 0.65);
}

.border-e-green-800\/70 {
  border-inline-end-color: rgb(22 101 52 / 0.7);
}

.border-e-green-800\/75 {
  border-inline-end-color: rgb(22 101 52 / 0.75);
}

.border-e-green-800\/80 {
  border-inline-end-color: rgb(22 101 52 / 0.8);
}

.border-e-green-800\/85 {
  border-inline-end-color: rgb(22 101 52 / 0.85);
}

.border-e-green-800\/90 {
  border-inline-end-color: rgb(22 101 52 / 0.9);
}

.border-e-green-800\/95 {
  border-inline-end-color: rgb(22 101 52 / 0.95);
}

.border-e-green-900 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(20 83 45 / var(--tw-border-opacity, 1));
}

.border-e-green-900\/0 {
  border-inline-end-color: rgb(20 83 45 / 0);
}

.border-e-green-900\/10 {
  border-inline-end-color: rgb(20 83 45 / 0.1);
}

.border-e-green-900\/100 {
  border-inline-end-color: rgb(20 83 45 / 1);
}

.border-e-green-900\/15 {
  border-inline-end-color: rgb(20 83 45 / 0.15);
}

.border-e-green-900\/20 {
  border-inline-end-color: rgb(20 83 45 / 0.2);
}

.border-e-green-900\/25 {
  border-inline-end-color: rgb(20 83 45 / 0.25);
}

.border-e-green-900\/30 {
  border-inline-end-color: rgb(20 83 45 / 0.3);
}

.border-e-green-900\/35 {
  border-inline-end-color: rgb(20 83 45 / 0.35);
}

.border-e-green-900\/40 {
  border-inline-end-color: rgb(20 83 45 / 0.4);
}

.border-e-green-900\/45 {
  border-inline-end-color: rgb(20 83 45 / 0.45);
}

.border-e-green-900\/5 {
  border-inline-end-color: rgb(20 83 45 / 0.05);
}

.border-e-green-900\/50 {
  border-inline-end-color: rgb(20 83 45 / 0.5);
}

.border-e-green-900\/55 {
  border-inline-end-color: rgb(20 83 45 / 0.55);
}

.border-e-green-900\/60 {
  border-inline-end-color: rgb(20 83 45 / 0.6);
}

.border-e-green-900\/65 {
  border-inline-end-color: rgb(20 83 45 / 0.65);
}

.border-e-green-900\/70 {
  border-inline-end-color: rgb(20 83 45 / 0.7);
}

.border-e-green-900\/75 {
  border-inline-end-color: rgb(20 83 45 / 0.75);
}

.border-e-green-900\/80 {
  border-inline-end-color: rgb(20 83 45 / 0.8);
}

.border-e-green-900\/85 {
  border-inline-end-color: rgb(20 83 45 / 0.85);
}

.border-e-green-900\/90 {
  border-inline-end-color: rgb(20 83 45 / 0.9);
}

.border-e-green-900\/95 {
  border-inline-end-color: rgb(20 83 45 / 0.95);
}

.border-e-green-950 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(5 46 22 / var(--tw-border-opacity, 1));
}

.border-e-green-950\/0 {
  border-inline-end-color: rgb(5 46 22 / 0);
}

.border-e-green-950\/10 {
  border-inline-end-color: rgb(5 46 22 / 0.1);
}

.border-e-green-950\/100 {
  border-inline-end-color: rgb(5 46 22 / 1);
}

.border-e-green-950\/15 {
  border-inline-end-color: rgb(5 46 22 / 0.15);
}

.border-e-green-950\/20 {
  border-inline-end-color: rgb(5 46 22 / 0.2);
}

.border-e-green-950\/25 {
  border-inline-end-color: rgb(5 46 22 / 0.25);
}

.border-e-green-950\/30 {
  border-inline-end-color: rgb(5 46 22 / 0.3);
}

.border-e-green-950\/35 {
  border-inline-end-color: rgb(5 46 22 / 0.35);
}

.border-e-green-950\/40 {
  border-inline-end-color: rgb(5 46 22 / 0.4);
}

.border-e-green-950\/45 {
  border-inline-end-color: rgb(5 46 22 / 0.45);
}

.border-e-green-950\/5 {
  border-inline-end-color: rgb(5 46 22 / 0.05);
}

.border-e-green-950\/50 {
  border-inline-end-color: rgb(5 46 22 / 0.5);
}

.border-e-green-950\/55 {
  border-inline-end-color: rgb(5 46 22 / 0.55);
}

.border-e-green-950\/60 {
  border-inline-end-color: rgb(5 46 22 / 0.6);
}

.border-e-green-950\/65 {
  border-inline-end-color: rgb(5 46 22 / 0.65);
}

.border-e-green-950\/70 {
  border-inline-end-color: rgb(5 46 22 / 0.7);
}

.border-e-green-950\/75 {
  border-inline-end-color: rgb(5 46 22 / 0.75);
}

.border-e-green-950\/80 {
  border-inline-end-color: rgb(5 46 22 / 0.8);
}

.border-e-green-950\/85 {
  border-inline-end-color: rgb(5 46 22 / 0.85);
}

.border-e-green-950\/90 {
  border-inline-end-color: rgb(5 46 22 / 0.9);
}

.border-e-green-950\/95 {
  border-inline-end-color: rgb(5 46 22 / 0.95);
}

.border-e-red-100 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(254 226 226 / var(--tw-border-opacity, 1));
}

.border-e-red-100\/0 {
  border-inline-end-color: rgb(254 226 226 / 0);
}

.border-e-red-100\/10 {
  border-inline-end-color: rgb(254 226 226 / 0.1);
}

.border-e-red-100\/100 {
  border-inline-end-color: rgb(254 226 226 / 1);
}

.border-e-red-100\/15 {
  border-inline-end-color: rgb(254 226 226 / 0.15);
}

.border-e-red-100\/20 {
  border-inline-end-color: rgb(254 226 226 / 0.2);
}

.border-e-red-100\/25 {
  border-inline-end-color: rgb(254 226 226 / 0.25);
}

.border-e-red-100\/30 {
  border-inline-end-color: rgb(254 226 226 / 0.3);
}

.border-e-red-100\/35 {
  border-inline-end-color: rgb(254 226 226 / 0.35);
}

.border-e-red-100\/40 {
  border-inline-end-color: rgb(254 226 226 / 0.4);
}

.border-e-red-100\/45 {
  border-inline-end-color: rgb(254 226 226 / 0.45);
}

.border-e-red-100\/5 {
  border-inline-end-color: rgb(254 226 226 / 0.05);
}

.border-e-red-100\/50 {
  border-inline-end-color: rgb(254 226 226 / 0.5);
}

.border-e-red-100\/55 {
  border-inline-end-color: rgb(254 226 226 / 0.55);
}

.border-e-red-100\/60 {
  border-inline-end-color: rgb(254 226 226 / 0.6);
}

.border-e-red-100\/65 {
  border-inline-end-color: rgb(254 226 226 / 0.65);
}

.border-e-red-100\/70 {
  border-inline-end-color: rgb(254 226 226 / 0.7);
}

.border-e-red-100\/75 {
  border-inline-end-color: rgb(254 226 226 / 0.75);
}

.border-e-red-100\/80 {
  border-inline-end-color: rgb(254 226 226 / 0.8);
}

.border-e-red-100\/85 {
  border-inline-end-color: rgb(254 226 226 / 0.85);
}

.border-e-red-100\/90 {
  border-inline-end-color: rgb(254 226 226 / 0.9);
}

.border-e-red-100\/95 {
  border-inline-end-color: rgb(254 226 226 / 0.95);
}

.border-e-red-200 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}

.border-e-red-200\/0 {
  border-inline-end-color: rgb(254 202 202 / 0);
}

.border-e-red-200\/10 {
  border-inline-end-color: rgb(254 202 202 / 0.1);
}

.border-e-red-200\/100 {
  border-inline-end-color: rgb(254 202 202 / 1);
}

.border-e-red-200\/15 {
  border-inline-end-color: rgb(254 202 202 / 0.15);
}

.border-e-red-200\/20 {
  border-inline-end-color: rgb(254 202 202 / 0.2);
}

.border-e-red-200\/25 {
  border-inline-end-color: rgb(254 202 202 / 0.25);
}

.border-e-red-200\/30 {
  border-inline-end-color: rgb(254 202 202 / 0.3);
}

.border-e-red-200\/35 {
  border-inline-end-color: rgb(254 202 202 / 0.35);
}

.border-e-red-200\/40 {
  border-inline-end-color: rgb(254 202 202 / 0.4);
}

.border-e-red-200\/45 {
  border-inline-end-color: rgb(254 202 202 / 0.45);
}

.border-e-red-200\/5 {
  border-inline-end-color: rgb(254 202 202 / 0.05);
}

.border-e-red-200\/50 {
  border-inline-end-color: rgb(254 202 202 / 0.5);
}

.border-e-red-200\/55 {
  border-inline-end-color: rgb(254 202 202 / 0.55);
}

.border-e-red-200\/60 {
  border-inline-end-color: rgb(254 202 202 / 0.6);
}

.border-e-red-200\/65 {
  border-inline-end-color: rgb(254 202 202 / 0.65);
}

.border-e-red-200\/70 {
  border-inline-end-color: rgb(254 202 202 / 0.7);
}

.border-e-red-200\/75 {
  border-inline-end-color: rgb(254 202 202 / 0.75);
}

.border-e-red-200\/80 {
  border-inline-end-color: rgb(254 202 202 / 0.8);
}

.border-e-red-200\/85 {
  border-inline-end-color: rgb(254 202 202 / 0.85);
}

.border-e-red-200\/90 {
  border-inline-end-color: rgb(254 202 202 / 0.9);
}

.border-e-red-200\/95 {
  border-inline-end-color: rgb(254 202 202 / 0.95);
}

.border-e-red-300 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
}

.border-e-red-300\/0 {
  border-inline-end-color: rgb(252 165 165 / 0);
}

.border-e-red-300\/10 {
  border-inline-end-color: rgb(252 165 165 / 0.1);
}

.border-e-red-300\/100 {
  border-inline-end-color: rgb(252 165 165 / 1);
}

.border-e-red-300\/15 {
  border-inline-end-color: rgb(252 165 165 / 0.15);
}

.border-e-red-300\/20 {
  border-inline-end-color: rgb(252 165 165 / 0.2);
}

.border-e-red-300\/25 {
  border-inline-end-color: rgb(252 165 165 / 0.25);
}

.border-e-red-300\/30 {
  border-inline-end-color: rgb(252 165 165 / 0.3);
}

.border-e-red-300\/35 {
  border-inline-end-color: rgb(252 165 165 / 0.35);
}

.border-e-red-300\/40 {
  border-inline-end-color: rgb(252 165 165 / 0.4);
}

.border-e-red-300\/45 {
  border-inline-end-color: rgb(252 165 165 / 0.45);
}

.border-e-red-300\/5 {
  border-inline-end-color: rgb(252 165 165 / 0.05);
}

.border-e-red-300\/50 {
  border-inline-end-color: rgb(252 165 165 / 0.5);
}

.border-e-red-300\/55 {
  border-inline-end-color: rgb(252 165 165 / 0.55);
}

.border-e-red-300\/60 {
  border-inline-end-color: rgb(252 165 165 / 0.6);
}

.border-e-red-300\/65 {
  border-inline-end-color: rgb(252 165 165 / 0.65);
}

.border-e-red-300\/70 {
  border-inline-end-color: rgb(252 165 165 / 0.7);
}

.border-e-red-300\/75 {
  border-inline-end-color: rgb(252 165 165 / 0.75);
}

.border-e-red-300\/80 {
  border-inline-end-color: rgb(252 165 165 / 0.8);
}

.border-e-red-300\/85 {
  border-inline-end-color: rgb(252 165 165 / 0.85);
}

.border-e-red-300\/90 {
  border-inline-end-color: rgb(252 165 165 / 0.9);
}

.border-e-red-300\/95 {
  border-inline-end-color: rgb(252 165 165 / 0.95);
}

.border-e-red-400 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(248 113 113 / var(--tw-border-opacity, 1));
}

.border-e-red-400\/0 {
  border-inline-end-color: rgb(248 113 113 / 0);
}

.border-e-red-400\/10 {
  border-inline-end-color: rgb(248 113 113 / 0.1);
}

.border-e-red-400\/100 {
  border-inline-end-color: rgb(248 113 113 / 1);
}

.border-e-red-400\/15 {
  border-inline-end-color: rgb(248 113 113 / 0.15);
}

.border-e-red-400\/20 {
  border-inline-end-color: rgb(248 113 113 / 0.2);
}

.border-e-red-400\/25 {
  border-inline-end-color: rgb(248 113 113 / 0.25);
}

.border-e-red-400\/30 {
  border-inline-end-color: rgb(248 113 113 / 0.3);
}

.border-e-red-400\/35 {
  border-inline-end-color: rgb(248 113 113 / 0.35);
}

.border-e-red-400\/40 {
  border-inline-end-color: rgb(248 113 113 / 0.4);
}

.border-e-red-400\/45 {
  border-inline-end-color: rgb(248 113 113 / 0.45);
}

.border-e-red-400\/5 {
  border-inline-end-color: rgb(248 113 113 / 0.05);
}

.border-e-red-400\/50 {
  border-inline-end-color: rgb(248 113 113 / 0.5);
}

.border-e-red-400\/55 {
  border-inline-end-color: rgb(248 113 113 / 0.55);
}

.border-e-red-400\/60 {
  border-inline-end-color: rgb(248 113 113 / 0.6);
}

.border-e-red-400\/65 {
  border-inline-end-color: rgb(248 113 113 / 0.65);
}

.border-e-red-400\/70 {
  border-inline-end-color: rgb(248 113 113 / 0.7);
}

.border-e-red-400\/75 {
  border-inline-end-color: rgb(248 113 113 / 0.75);
}

.border-e-red-400\/80 {
  border-inline-end-color: rgb(248 113 113 / 0.8);
}

.border-e-red-400\/85 {
  border-inline-end-color: rgb(248 113 113 / 0.85);
}

.border-e-red-400\/90 {
  border-inline-end-color: rgb(248 113 113 / 0.9);
}

.border-e-red-400\/95 {
  border-inline-end-color: rgb(248 113 113 / 0.95);
}

.border-e-red-50 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(254 242 242 / var(--tw-border-opacity, 1));
}

.border-e-red-50\/0 {
  border-inline-end-color: rgb(254 242 242 / 0);
}

.border-e-red-50\/10 {
  border-inline-end-color: rgb(254 242 242 / 0.1);
}

.border-e-red-50\/100 {
  border-inline-end-color: rgb(254 242 242 / 1);
}

.border-e-red-50\/15 {
  border-inline-end-color: rgb(254 242 242 / 0.15);
}

.border-e-red-50\/20 {
  border-inline-end-color: rgb(254 242 242 / 0.2);
}

.border-e-red-50\/25 {
  border-inline-end-color: rgb(254 242 242 / 0.25);
}

.border-e-red-50\/30 {
  border-inline-end-color: rgb(254 242 242 / 0.3);
}

.border-e-red-50\/35 {
  border-inline-end-color: rgb(254 242 242 / 0.35);
}

.border-e-red-50\/40 {
  border-inline-end-color: rgb(254 242 242 / 0.4);
}

.border-e-red-50\/45 {
  border-inline-end-color: rgb(254 242 242 / 0.45);
}

.border-e-red-50\/5 {
  border-inline-end-color: rgb(254 242 242 / 0.05);
}

.border-e-red-50\/50 {
  border-inline-end-color: rgb(254 242 242 / 0.5);
}

.border-e-red-50\/55 {
  border-inline-end-color: rgb(254 242 242 / 0.55);
}

.border-e-red-50\/60 {
  border-inline-end-color: rgb(254 242 242 / 0.6);
}

.border-e-red-50\/65 {
  border-inline-end-color: rgb(254 242 242 / 0.65);
}

.border-e-red-50\/70 {
  border-inline-end-color: rgb(254 242 242 / 0.7);
}

.border-e-red-50\/75 {
  border-inline-end-color: rgb(254 242 242 / 0.75);
}

.border-e-red-50\/80 {
  border-inline-end-color: rgb(254 242 242 / 0.8);
}

.border-e-red-50\/85 {
  border-inline-end-color: rgb(254 242 242 / 0.85);
}

.border-e-red-50\/90 {
  border-inline-end-color: rgb(254 242 242 / 0.9);
}

.border-e-red-50\/95 {
  border-inline-end-color: rgb(254 242 242 / 0.95);
}

.border-e-red-500 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}

.border-e-red-500\/0 {
  border-inline-end-color: rgb(239 68 68 / 0);
}

.border-e-red-500\/10 {
  border-inline-end-color: rgb(239 68 68 / 0.1);
}

.border-e-red-500\/100 {
  border-inline-end-color: rgb(239 68 68 / 1);
}

.border-e-red-500\/15 {
  border-inline-end-color: rgb(239 68 68 / 0.15);
}

.border-e-red-500\/20 {
  border-inline-end-color: rgb(239 68 68 / 0.2);
}

.border-e-red-500\/25 {
  border-inline-end-color: rgb(239 68 68 / 0.25);
}

.border-e-red-500\/30 {
  border-inline-end-color: rgb(239 68 68 / 0.3);
}

.border-e-red-500\/35 {
  border-inline-end-color: rgb(239 68 68 / 0.35);
}

.border-e-red-500\/40 {
  border-inline-end-color: rgb(239 68 68 / 0.4);
}

.border-e-red-500\/45 {
  border-inline-end-color: rgb(239 68 68 / 0.45);
}

.border-e-red-500\/5 {
  border-inline-end-color: rgb(239 68 68 / 0.05);
}

.border-e-red-500\/50 {
  border-inline-end-color: rgb(239 68 68 / 0.5);
}

.border-e-red-500\/55 {
  border-inline-end-color: rgb(239 68 68 / 0.55);
}

.border-e-red-500\/60 {
  border-inline-end-color: rgb(239 68 68 / 0.6);
}

.border-e-red-500\/65 {
  border-inline-end-color: rgb(239 68 68 / 0.65);
}

.border-e-red-500\/70 {
  border-inline-end-color: rgb(239 68 68 / 0.7);
}

.border-e-red-500\/75 {
  border-inline-end-color: rgb(239 68 68 / 0.75);
}

.border-e-red-500\/80 {
  border-inline-end-color: rgb(239 68 68 / 0.8);
}

.border-e-red-500\/85 {
  border-inline-end-color: rgb(239 68 68 / 0.85);
}

.border-e-red-500\/90 {
  border-inline-end-color: rgb(239 68 68 / 0.9);
}

.border-e-red-500\/95 {
  border-inline-end-color: rgb(239 68 68 / 0.95);
}

.border-e-red-600 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
}

.border-e-red-600\/0 {
  border-inline-end-color: rgb(220 38 38 / 0);
}

.border-e-red-600\/10 {
  border-inline-end-color: rgb(220 38 38 / 0.1);
}

.border-e-red-600\/100 {
  border-inline-end-color: rgb(220 38 38 / 1);
}

.border-e-red-600\/15 {
  border-inline-end-color: rgb(220 38 38 / 0.15);
}

.border-e-red-600\/20 {
  border-inline-end-color: rgb(220 38 38 / 0.2);
}

.border-e-red-600\/25 {
  border-inline-end-color: rgb(220 38 38 / 0.25);
}

.border-e-red-600\/30 {
  border-inline-end-color: rgb(220 38 38 / 0.3);
}

.border-e-red-600\/35 {
  border-inline-end-color: rgb(220 38 38 / 0.35);
}

.border-e-red-600\/40 {
  border-inline-end-color: rgb(220 38 38 / 0.4);
}

.border-e-red-600\/45 {
  border-inline-end-color: rgb(220 38 38 / 0.45);
}

.border-e-red-600\/5 {
  border-inline-end-color: rgb(220 38 38 / 0.05);
}

.border-e-red-600\/50 {
  border-inline-end-color: rgb(220 38 38 / 0.5);
}

.border-e-red-600\/55 {
  border-inline-end-color: rgb(220 38 38 / 0.55);
}

.border-e-red-600\/60 {
  border-inline-end-color: rgb(220 38 38 / 0.6);
}

.border-e-red-600\/65 {
  border-inline-end-color: rgb(220 38 38 / 0.65);
}

.border-e-red-600\/70 {
  border-inline-end-color: rgb(220 38 38 / 0.7);
}

.border-e-red-600\/75 {
  border-inline-end-color: rgb(220 38 38 / 0.75);
}

.border-e-red-600\/80 {
  border-inline-end-color: rgb(220 38 38 / 0.8);
}

.border-e-red-600\/85 {
  border-inline-end-color: rgb(220 38 38 / 0.85);
}

.border-e-red-600\/90 {
  border-inline-end-color: rgb(220 38 38 / 0.9);
}

.border-e-red-600\/95 {
  border-inline-end-color: rgb(220 38 38 / 0.95);
}

.border-e-red-700 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(185 28 28 / var(--tw-border-opacity, 1));
}

.border-e-red-700\/0 {
  border-inline-end-color: rgb(185 28 28 / 0);
}

.border-e-red-700\/10 {
  border-inline-end-color: rgb(185 28 28 / 0.1);
}

.border-e-red-700\/100 {
  border-inline-end-color: rgb(185 28 28 / 1);
}

.border-e-red-700\/15 {
  border-inline-end-color: rgb(185 28 28 / 0.15);
}

.border-e-red-700\/20 {
  border-inline-end-color: rgb(185 28 28 / 0.2);
}

.border-e-red-700\/25 {
  border-inline-end-color: rgb(185 28 28 / 0.25);
}

.border-e-red-700\/30 {
  border-inline-end-color: rgb(185 28 28 / 0.3);
}

.border-e-red-700\/35 {
  border-inline-end-color: rgb(185 28 28 / 0.35);
}

.border-e-red-700\/40 {
  border-inline-end-color: rgb(185 28 28 / 0.4);
}

.border-e-red-700\/45 {
  border-inline-end-color: rgb(185 28 28 / 0.45);
}

.border-e-red-700\/5 {
  border-inline-end-color: rgb(185 28 28 / 0.05);
}

.border-e-red-700\/50 {
  border-inline-end-color: rgb(185 28 28 / 0.5);
}

.border-e-red-700\/55 {
  border-inline-end-color: rgb(185 28 28 / 0.55);
}

.border-e-red-700\/60 {
  border-inline-end-color: rgb(185 28 28 / 0.6);
}

.border-e-red-700\/65 {
  border-inline-end-color: rgb(185 28 28 / 0.65);
}

.border-e-red-700\/70 {
  border-inline-end-color: rgb(185 28 28 / 0.7);
}

.border-e-red-700\/75 {
  border-inline-end-color: rgb(185 28 28 / 0.75);
}

.border-e-red-700\/80 {
  border-inline-end-color: rgb(185 28 28 / 0.8);
}

.border-e-red-700\/85 {
  border-inline-end-color: rgb(185 28 28 / 0.85);
}

.border-e-red-700\/90 {
  border-inline-end-color: rgb(185 28 28 / 0.9);
}

.border-e-red-700\/95 {
  border-inline-end-color: rgb(185 28 28 / 0.95);
}

.border-e-red-800 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(153 27 27 / var(--tw-border-opacity, 1));
}

.border-e-red-800\/0 {
  border-inline-end-color: rgb(153 27 27 / 0);
}

.border-e-red-800\/10 {
  border-inline-end-color: rgb(153 27 27 / 0.1);
}

.border-e-red-800\/100 {
  border-inline-end-color: rgb(153 27 27 / 1);
}

.border-e-red-800\/15 {
  border-inline-end-color: rgb(153 27 27 / 0.15);
}

.border-e-red-800\/20 {
  border-inline-end-color: rgb(153 27 27 / 0.2);
}

.border-e-red-800\/25 {
  border-inline-end-color: rgb(153 27 27 / 0.25);
}

.border-e-red-800\/30 {
  border-inline-end-color: rgb(153 27 27 / 0.3);
}

.border-e-red-800\/35 {
  border-inline-end-color: rgb(153 27 27 / 0.35);
}

.border-e-red-800\/40 {
  border-inline-end-color: rgb(153 27 27 / 0.4);
}

.border-e-red-800\/45 {
  border-inline-end-color: rgb(153 27 27 / 0.45);
}

.border-e-red-800\/5 {
  border-inline-end-color: rgb(153 27 27 / 0.05);
}

.border-e-red-800\/50 {
  border-inline-end-color: rgb(153 27 27 / 0.5);
}

.border-e-red-800\/55 {
  border-inline-end-color: rgb(153 27 27 / 0.55);
}

.border-e-red-800\/60 {
  border-inline-end-color: rgb(153 27 27 / 0.6);
}

.border-e-red-800\/65 {
  border-inline-end-color: rgb(153 27 27 / 0.65);
}

.border-e-red-800\/70 {
  border-inline-end-color: rgb(153 27 27 / 0.7);
}

.border-e-red-800\/75 {
  border-inline-end-color: rgb(153 27 27 / 0.75);
}

.border-e-red-800\/80 {
  border-inline-end-color: rgb(153 27 27 / 0.8);
}

.border-e-red-800\/85 {
  border-inline-end-color: rgb(153 27 27 / 0.85);
}

.border-e-red-800\/90 {
  border-inline-end-color: rgb(153 27 27 / 0.9);
}

.border-e-red-800\/95 {
  border-inline-end-color: rgb(153 27 27 / 0.95);
}

.border-e-red-900 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(127 29 29 / var(--tw-border-opacity, 1));
}

.border-e-red-900\/0 {
  border-inline-end-color: rgb(127 29 29 / 0);
}

.border-e-red-900\/10 {
  border-inline-end-color: rgb(127 29 29 / 0.1);
}

.border-e-red-900\/100 {
  border-inline-end-color: rgb(127 29 29 / 1);
}

.border-e-red-900\/15 {
  border-inline-end-color: rgb(127 29 29 / 0.15);
}

.border-e-red-900\/20 {
  border-inline-end-color: rgb(127 29 29 / 0.2);
}

.border-e-red-900\/25 {
  border-inline-end-color: rgb(127 29 29 / 0.25);
}

.border-e-red-900\/30 {
  border-inline-end-color: rgb(127 29 29 / 0.3);
}

.border-e-red-900\/35 {
  border-inline-end-color: rgb(127 29 29 / 0.35);
}

.border-e-red-900\/40 {
  border-inline-end-color: rgb(127 29 29 / 0.4);
}

.border-e-red-900\/45 {
  border-inline-end-color: rgb(127 29 29 / 0.45);
}

.border-e-red-900\/5 {
  border-inline-end-color: rgb(127 29 29 / 0.05);
}

.border-e-red-900\/50 {
  border-inline-end-color: rgb(127 29 29 / 0.5);
}

.border-e-red-900\/55 {
  border-inline-end-color: rgb(127 29 29 / 0.55);
}

.border-e-red-900\/60 {
  border-inline-end-color: rgb(127 29 29 / 0.6);
}

.border-e-red-900\/65 {
  border-inline-end-color: rgb(127 29 29 / 0.65);
}

.border-e-red-900\/70 {
  border-inline-end-color: rgb(127 29 29 / 0.7);
}

.border-e-red-900\/75 {
  border-inline-end-color: rgb(127 29 29 / 0.75);
}

.border-e-red-900\/80 {
  border-inline-end-color: rgb(127 29 29 / 0.8);
}

.border-e-red-900\/85 {
  border-inline-end-color: rgb(127 29 29 / 0.85);
}

.border-e-red-900\/90 {
  border-inline-end-color: rgb(127 29 29 / 0.9);
}

.border-e-red-900\/95 {
  border-inline-end-color: rgb(127 29 29 / 0.95);
}

.border-e-red-950 {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(69 10 10 / var(--tw-border-opacity, 1));
}

.border-e-red-950\/0 {
  border-inline-end-color: rgb(69 10 10 / 0);
}

.border-e-red-950\/10 {
  border-inline-end-color: rgb(69 10 10 / 0.1);
}

.border-e-red-950\/100 {
  border-inline-end-color: rgb(69 10 10 / 1);
}

.border-e-red-950\/15 {
  border-inline-end-color: rgb(69 10 10 / 0.15);
}

.border-e-red-950\/20 {
  border-inline-end-color: rgb(69 10 10 / 0.2);
}

.border-e-red-950\/25 {
  border-inline-end-color: rgb(69 10 10 / 0.25);
}

.border-e-red-950\/30 {
  border-inline-end-color: rgb(69 10 10 / 0.3);
}

.border-e-red-950\/35 {
  border-inline-end-color: rgb(69 10 10 / 0.35);
}

.border-e-red-950\/40 {
  border-inline-end-color: rgb(69 10 10 / 0.4);
}

.border-e-red-950\/45 {
  border-inline-end-color: rgb(69 10 10 / 0.45);
}

.border-e-red-950\/5 {
  border-inline-end-color: rgb(69 10 10 / 0.05);
}

.border-e-red-950\/50 {
  border-inline-end-color: rgb(69 10 10 / 0.5);
}

.border-e-red-950\/55 {
  border-inline-end-color: rgb(69 10 10 / 0.55);
}

.border-e-red-950\/60 {
  border-inline-end-color: rgb(69 10 10 / 0.6);
}

.border-e-red-950\/65 {
  border-inline-end-color: rgb(69 10 10 / 0.65);
}

.border-e-red-950\/70 {
  border-inline-end-color: rgb(69 10 10 / 0.7);
}

.border-e-red-950\/75 {
  border-inline-end-color: rgb(69 10 10 / 0.75);
}

.border-e-red-950\/80 {
  border-inline-end-color: rgb(69 10 10 / 0.8);
}

.border-e-red-950\/85 {
  border-inline-end-color: rgb(69 10 10 / 0.85);
}

.border-e-red-950\/90 {
  border-inline-end-color: rgb(69 10 10 / 0.9);
}

.border-e-red-950\/95 {
  border-inline-end-color: rgb(69 10 10 / 0.95);
}

.border-e-transparent {
  border-inline-end-color: transparent;
}

.border-e-transparent\/0 {
  border-inline-end-color: rgb(0 0 0 / 0);
}

.border-e-transparent\/10 {
  border-inline-end-color: rgb(0 0 0 / 0.1);
}

.border-e-transparent\/100 {
  border-inline-end-color: rgb(0 0 0 / 1);
}

.border-e-transparent\/15 {
  border-inline-end-color: rgb(0 0 0 / 0.15);
}

.border-e-transparent\/20 {
  border-inline-end-color: rgb(0 0 0 / 0.2);
}

.border-e-transparent\/25 {
  border-inline-end-color: rgb(0 0 0 / 0.25);
}

.border-e-transparent\/30 {
  border-inline-end-color: rgb(0 0 0 / 0.3);
}

.border-e-transparent\/35 {
  border-inline-end-color: rgb(0 0 0 / 0.35);
}

.border-e-transparent\/40 {
  border-inline-end-color: rgb(0 0 0 / 0.4);
}

.border-e-transparent\/45 {
  border-inline-end-color: rgb(0 0 0 / 0.45);
}

.border-e-transparent\/5 {
  border-inline-end-color: rgb(0 0 0 / 0.05);
}

.border-e-transparent\/50 {
  border-inline-end-color: rgb(0 0 0 / 0.5);
}

.border-e-transparent\/55 {
  border-inline-end-color: rgb(0 0 0 / 0.55);
}

.border-e-transparent\/60 {
  border-inline-end-color: rgb(0 0 0 / 0.6);
}

.border-e-transparent\/65 {
  border-inline-end-color: rgb(0 0 0 / 0.65);
}

.border-e-transparent\/70 {
  border-inline-end-color: rgb(0 0 0 / 0.7);
}

.border-e-transparent\/75 {
  border-inline-end-color: rgb(0 0 0 / 0.75);
}

.border-e-transparent\/80 {
  border-inline-end-color: rgb(0 0 0 / 0.8);
}

.border-e-transparent\/85 {
  border-inline-end-color: rgb(0 0 0 / 0.85);
}

.border-e-transparent\/90 {
  border-inline-end-color: rgb(0 0 0 / 0.9);
}

.border-e-transparent\/95 {
  border-inline-end-color: rgb(0 0 0 / 0.95);
}

.border-e-white {
  --tw-border-opacity: 1;
  border-inline-end-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}

.border-e-white\/0 {
  border-inline-end-color: rgb(255 255 255 / 0);
}

.border-e-white\/10 {
  border-inline-end-color: rgb(255 255 255 / 0.1);
}

.border-e-white\/100 {
  border-inline-end-color: rgb(255 255 255 / 1);
}

.border-e-white\/15 {
  border-inline-end-color: rgb(255 255 255 / 0.15);
}

.border-e-white\/20 {
  border-inline-end-color: rgb(255 255 255 / 0.2);
}

.border-e-white\/25 {
  border-inline-end-color: rgb(255 255 255 / 0.25);
}

.border-e-white\/30 {
  border-inline-end-color: rgb(255 255 255 / 0.3);
}

.border-e-white\/35 {
  border-inline-end-color: rgb(255 255 255 / 0.35);
}

.border-e-white\/40 {
  border-inline-end-color: rgb(255 255 255 / 0.4);
}

.border-e-white\/45 {
  border-inline-end-color: rgb(255 255 255 / 0.45);
}

.border-e-white\/5 {
  border-inline-end-color: rgb(255 255 255 / 0.05);
}

.border-e-white\/50 {
  border-inline-end-color: rgb(255 255 255 / 0.5);
}

.border-e-white\/55 {
  border-inline-end-color: rgb(255 255 255 / 0.55);
}

.border-e-white\/60 {
  border-inline-end-color: rgb(255 255 255 / 0.6);
}

.border-e-white\/65 {
  border-inline-end-color: rgb(255 255 255 / 0.65);
}

.border-e-white\/70 {
  border-inline-end-color: rgb(255 255 255 / 0.7);
}

.border-e-white\/75 {
  border-inline-end-color: rgb(255 255 255 / 0.75);
}

.border-e-white\/80 {
  border-inline-end-color: rgb(255 255 255 / 0.8);
}

.border-e-white\/85 {
  border-inline-end-color: rgb(255 255 255 / 0.85);
}

.border-e-white\/90 {
  border-inline-end-color: rgb(255 255 255 / 0.9);
}

.border-e-white\/95 {
  border-inline-end-color: rgb(255 255 255 / 0.95);
}

.border-l-black {
  --tw-border-opacity: 1;
  border-left-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
}

.border-l-black\/0 {
  border-left-color: rgb(0 0 0 / 0);
}

.border-l-black\/10 {
  border-left-color: rgb(0 0 0 / 0.1);
}

.border-l-black\/100 {
  border-left-color: rgb(0 0 0 / 1);
}

.border-l-black\/15 {
  border-left-color: rgb(0 0 0 / 0.15);
}

.border-l-black\/20 {
  border-left-color: rgb(0 0 0 / 0.2);
}

.border-l-black\/25 {
  border-left-color: rgb(0 0 0 / 0.25);
}

.border-l-black\/30 {
  border-left-color: rgb(0 0 0 / 0.3);
}

.border-l-black\/35 {
  border-left-color: rgb(0 0 0 / 0.35);
}

.border-l-black\/40 {
  border-left-color: rgb(0 0 0 / 0.4);
}

.border-l-black\/45 {
  border-left-color: rgb(0 0 0 / 0.45);
}

.border-l-black\/5 {
  border-left-color: rgb(0 0 0 / 0.05);
}

.border-l-black\/50 {
  border-left-color: rgb(0 0 0 / 0.5);
}

.border-l-black\/55 {
  border-left-color: rgb(0 0 0 / 0.55);
}

.border-l-black\/60 {
  border-left-color: rgb(0 0 0 / 0.6);
}

.border-l-black\/65 {
  border-left-color: rgb(0 0 0 / 0.65);
}

.border-l-black\/70 {
  border-left-color: rgb(0 0 0 / 0.7);
}

.border-l-black\/75 {
  border-left-color: rgb(0 0 0 / 0.75);
}

.border-l-black\/80 {
  border-left-color: rgb(0 0 0 / 0.8);
}

.border-l-black\/85 {
  border-left-color: rgb(0 0 0 / 0.85);
}

.border-l-black\/90 {
  border-left-color: rgb(0 0 0 / 0.9);
}

.border-l-black\/95 {
  border-left-color: rgb(0 0 0 / 0.95);
}

.border-l-blue-100 {
  --tw-border-opacity: 1;
  border-left-color: rgb(219 234 254 / var(--tw-border-opacity, 1));
}

.border-l-blue-100\/0 {
  border-left-color: rgb(219 234 254 / 0);
}

.border-l-blue-100\/10 {
  border-left-color: rgb(219 234 254 / 0.1);
}

.border-l-blue-100\/100 {
  border-left-color: rgb(219 234 254 / 1);
}

.border-l-blue-100\/15 {
  border-left-color: rgb(219 234 254 / 0.15);
}

.border-l-blue-100\/20 {
  border-left-color: rgb(219 234 254 / 0.2);
}

.border-l-blue-100\/25 {
  border-left-color: rgb(219 234 254 / 0.25);
}

.border-l-blue-100\/30 {
  border-left-color: rgb(219 234 254 / 0.3);
}

.border-l-blue-100\/35 {
  border-left-color: rgb(219 234 254 / 0.35);
}

.border-l-blue-100\/40 {
  border-left-color: rgb(219 234 254 / 0.4);
}

.border-l-blue-100\/45 {
  border-left-color: rgb(219 234 254 / 0.45);
}

.border-l-blue-100\/5 {
  border-left-color: rgb(219 234 254 / 0.05);
}

.border-l-blue-100\/50 {
  border-left-color: rgb(219 234 254 / 0.5);
}

.border-l-blue-100\/55 {
  border-left-color: rgb(219 234 254 / 0.55);
}

.border-l-blue-100\/60 {
  border-left-color: rgb(219 234 254 / 0.6);
}

.border-l-blue-100\/65 {
  border-left-color: rgb(219 234 254 / 0.65);
}

.border-l-blue-100\/70 {
  border-left-color: rgb(219 234 254 / 0.7);
}

.border-l-blue-100\/75 {
  border-left-color: rgb(219 234 254 / 0.75);
}

.border-l-blue-100\/80 {
  border-left-color: rgb(219 234 254 / 0.8);
}

.border-l-blue-100\/85 {
  border-left-color: rgb(219 234 254 / 0.85);
}

.border-l-blue-100\/90 {
  border-left-color: rgb(219 234 254 / 0.9);
}

.border-l-blue-100\/95 {
  border-left-color: rgb(219 234 254 / 0.95);
}

.border-l-blue-200 {
  --tw-border-opacity: 1;
  border-left-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
}

.border-l-blue-200\/0 {
  border-left-color: rgb(191 219 254 / 0);
}

.border-l-blue-200\/10 {
  border-left-color: rgb(191 219 254 / 0.1);
}

.border-l-blue-200\/100 {
  border-left-color: rgb(191 219 254 / 1);
}

.border-l-blue-200\/15 {
  border-left-color: rgb(191 219 254 / 0.15);
}

.border-l-blue-200\/20 {
  border-left-color: rgb(191 219 254 / 0.2);
}

.border-l-blue-200\/25 {
  border-left-color: rgb(191 219 254 / 0.25);
}

.border-l-blue-200\/30 {
  border-left-color: rgb(191 219 254 / 0.3);
}

.border-l-blue-200\/35 {
  border-left-color: rgb(191 219 254 / 0.35);
}

.border-l-blue-200\/40 {
  border-left-color: rgb(191 219 254 / 0.4);
}

.border-l-blue-200\/45 {
  border-left-color: rgb(191 219 254 / 0.45);
}

.border-l-blue-200\/5 {
  border-left-color: rgb(191 219 254 / 0.05);
}

.border-l-blue-200\/50 {
  border-left-color: rgb(191 219 254 / 0.5);
}

.border-l-blue-200\/55 {
  border-left-color: rgb(191 219 254 / 0.55);
}

.border-l-blue-200\/60 {
  border-left-color: rgb(191 219 254 / 0.6);
}

.border-l-blue-200\/65 {
  border-left-color: rgb(191 219 254 / 0.65);
}

.border-l-blue-200\/70 {
  border-left-color: rgb(191 219 254 / 0.7);
}

.border-l-blue-200\/75 {
  border-left-color: rgb(191 219 254 / 0.75);
}

.border-l-blue-200\/80 {
  border-left-color: rgb(191 219 254 / 0.8);
}

.border-l-blue-200\/85 {
  border-left-color: rgb(191 219 254 / 0.85);
}

.border-l-blue-200\/90 {
  border-left-color: rgb(191 219 254 / 0.9);
}

.border-l-blue-200\/95 {
  border-left-color: rgb(191 219 254 / 0.95);
}

.border-l-blue-300 {
  --tw-border-opacity: 1;
  border-left-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
}

.border-l-blue-300\/0 {
  border-left-color: rgb(147 197 253 / 0);
}

.border-l-blue-300\/10 {
  border-left-color: rgb(147 197 253 / 0.1);
}

.border-l-blue-300\/100 {
  border-left-color: rgb(147 197 253 / 1);
}

.border-l-blue-300\/15 {
  border-left-color: rgb(147 197 253 / 0.15);
}

.border-l-blue-300\/20 {
  border-left-color: rgb(147 197 253 / 0.2);
}

.border-l-blue-300\/25 {
  border-left-color: rgb(147 197 253 / 0.25);
}

.border-l-blue-300\/30 {
  border-left-color: rgb(147 197 253 / 0.3);
}

.border-l-blue-300\/35 {
  border-left-color: rgb(147 197 253 / 0.35);
}

.border-l-blue-300\/40 {
  border-left-color: rgb(147 197 253 / 0.4);
}

.border-l-blue-300\/45 {
  border-left-color: rgb(147 197 253 / 0.45);
}

.border-l-blue-300\/5 {
  border-left-color: rgb(147 197 253 / 0.05);
}

.border-l-blue-300\/50 {
  border-left-color: rgb(147 197 253 / 0.5);
}

.border-l-blue-300\/55 {
  border-left-color: rgb(147 197 253 / 0.55);
}

.border-l-blue-300\/60 {
  border-left-color: rgb(147 197 253 / 0.6);
}

.border-l-blue-300\/65 {
  border-left-color: rgb(147 197 253 / 0.65);
}

.border-l-blue-300\/70 {
  border-left-color: rgb(147 197 253 / 0.7);
}

.border-l-blue-300\/75 {
  border-left-color: rgb(147 197 253 / 0.75);
}

.border-l-blue-300\/80 {
  border-left-color: rgb(147 197 253 / 0.8);
}

.border-l-blue-300\/85 {
  border-left-color: rgb(147 197 253 / 0.85);
}

.border-l-blue-300\/90 {
  border-left-color: rgb(147 197 253 / 0.9);
}

.border-l-blue-300\/95 {
  border-left-color: rgb(147 197 253 / 0.95);
}

.border-l-blue-400 {
  --tw-border-opacity: 1;
  border-left-color: rgb(96 165 250 / var(--tw-border-opacity, 1));
}

.border-l-blue-400\/0 {
  border-left-color: rgb(96 165 250 / 0);
}

.border-l-blue-400\/10 {
  border-left-color: rgb(96 165 250 / 0.1);
}

.border-l-blue-400\/100 {
  border-left-color: rgb(96 165 250 / 1);
}

.border-l-blue-400\/15 {
  border-left-color: rgb(96 165 250 / 0.15);
}

.border-l-blue-400\/20 {
  border-left-color: rgb(96 165 250 / 0.2);
}

.border-l-blue-400\/25 {
  border-left-color: rgb(96 165 250 / 0.25);
}

.border-l-blue-400\/30 {
  border-left-color: rgb(96 165 250 / 0.3);
}

.border-l-blue-400\/35 {
  border-left-color: rgb(96 165 250 / 0.35);
}

.border-l-blue-400\/40 {
  border-left-color: rgb(96 165 250 / 0.4);
}

.border-l-blue-400\/45 {
  border-left-color: rgb(96 165 250 / 0.45);
}

.border-l-blue-400\/5 {
  border-left-color: rgb(96 165 250 / 0.05);
}

.border-l-blue-400\/50 {
  border-left-color: rgb(96 165 250 / 0.5);
}

.border-l-blue-400\/55 {
  border-left-color: rgb(96 165 250 / 0.55);
}

.border-l-blue-400\/60 {
  border-left-color: rgb(96 165 250 / 0.6);
}

.border-l-blue-400\/65 {
  border-left-color: rgb(96 165 250 / 0.65);
}

.border-l-blue-400\/70 {
  border-left-color: rgb(96 165 250 / 0.7);
}

.border-l-blue-400\/75 {
  border-left-color: rgb(96 165 250 / 0.75);
}

.border-l-blue-400\/80 {
  border-left-color: rgb(96 165 250 / 0.8);
}

.border-l-blue-400\/85 {
  border-left-color: rgb(96 165 250 / 0.85);
}

.border-l-blue-400\/90 {
  border-left-color: rgb(96 165 250 / 0.9);
}

.border-l-blue-400\/95 {
  border-left-color: rgb(96 165 250 / 0.95);
}

.border-l-blue-50 {
  --tw-border-opacity: 1;
  border-left-color: rgb(239 246 255 / var(--tw-border-opacity, 1));
}

.border-l-blue-50\/0 {
  border-left-color: rgb(239 246 255 / 0);
}

.border-l-blue-50\/10 {
  border-left-color: rgb(239 246 255 / 0.1);
}

.border-l-blue-50\/100 {
  border-left-color: rgb(239 246 255 / 1);
}

.border-l-blue-50\/15 {
  border-left-color: rgb(239 246 255 / 0.15);
}

.border-l-blue-50\/20 {
  border-left-color: rgb(239 246 255 / 0.2);
}

.border-l-blue-50\/25 {
  border-left-color: rgb(239 246 255 / 0.25);
}

.border-l-blue-50\/30 {
  border-left-color: rgb(239 246 255 / 0.3);
}

.border-l-blue-50\/35 {
  border-left-color: rgb(239 246 255 / 0.35);
}

.border-l-blue-50\/40 {
  border-left-color: rgb(239 246 255 / 0.4);
}

.border-l-blue-50\/45 {
  border-left-color: rgb(239 246 255 / 0.45);
}

.border-l-blue-50\/5 {
  border-left-color: rgb(239 246 255 / 0.05);
}

.border-l-blue-50\/50 {
  border-left-color: rgb(239 246 255 / 0.5);
}

.border-l-blue-50\/55 {
  border-left-color: rgb(239 246 255 / 0.55);
}

.border-l-blue-50\/60 {
  border-left-color: rgb(239 246 255 / 0.6);
}

.border-l-blue-50\/65 {
  border-left-color: rgb(239 246 255 / 0.65);
}

.border-l-blue-50\/70 {
  border-left-color: rgb(239 246 255 / 0.7);
}

.border-l-blue-50\/75 {
  border-left-color: rgb(239 246 255 / 0.75);
}

.border-l-blue-50\/80 {
  border-left-color: rgb(239 246 255 / 0.8);
}

.border-l-blue-50\/85 {
  border-left-color: rgb(239 246 255 / 0.85);
}

.border-l-blue-50\/90 {
  border-left-color: rgb(239 246 255 / 0.9);
}

.border-l-blue-50\/95 {
  border-left-color: rgb(239 246 255 / 0.95);
}

.border-l-blue-500 {
  --tw-border-opacity: 1;
  border-left-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}

.border-l-blue-500\/0 {
  border-left-color: rgb(59 130 246 / 0);
}

.border-l-blue-500\/10 {
  border-left-color: rgb(59 130 246 / 0.1);
}

.border-l-blue-500\/100 {
  border-left-color: rgb(59 130 246 / 1);
}

.border-l-blue-500\/15 {
  border-left-color: rgb(59 130 246 / 0.15);
}

.border-l-blue-500\/20 {
  border-left-color: rgb(59 130 246 / 0.2);
}

.border-l-blue-500\/25 {
  border-left-color: rgb(59 130 246 / 0.25);
}

.border-l-blue-500\/30 {
  border-left-color: rgb(59 130 246 / 0.3);
}

.border-l-blue-500\/35 {
  border-left-color: rgb(59 130 246 / 0.35);
}

.border-l-blue-500\/40 {
  border-left-color: rgb(59 130 246 / 0.4);
}

.border-l-blue-500\/45 {
  border-left-color: rgb(59 130 246 / 0.45);
}

.border-l-blue-500\/5 {
  border-left-color: rgb(59 130 246 / 0.05);
}

.border-l-blue-500\/50 {
  border-left-color: rgb(59 130 246 / 0.5);
}

.border-l-blue-500\/55 {
  border-left-color: rgb(59 130 246 / 0.55);
}

.border-l-blue-500\/60 {
  border-left-color: rgb(59 130 246 / 0.6);
}

.border-l-blue-500\/65 {
  border-left-color: rgb(59 130 246 / 0.65);
}

.border-l-blue-500\/70 {
  border-left-color: rgb(59 130 246 / 0.7);
}

.border-l-blue-500\/75 {
  border-left-color: rgb(59 130 246 / 0.75);
}

.border-l-blue-500\/80 {
  border-left-color: rgb(59 130 246 / 0.8);
}

.border-l-blue-500\/85 {
  border-left-color: rgb(59 130 246 / 0.85);
}

.border-l-blue-500\/90 {
  border-left-color: rgb(59 130 246 / 0.9);
}

.border-l-blue-500\/95 {
  border-left-color: rgb(59 130 246 / 0.95);
}

.border-l-blue-600 {
  --tw-border-opacity: 1;
  border-left-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}

.border-l-blue-600\/0 {
  border-left-color: rgb(37 99 235 / 0);
}

.border-l-blue-600\/10 {
  border-left-color: rgb(37 99 235 / 0.1);
}

.border-l-blue-600\/100 {
  border-left-color: rgb(37 99 235 / 1);
}

.border-l-blue-600\/15 {
  border-left-color: rgb(37 99 235 / 0.15);
}

.border-l-blue-600\/20 {
  border-left-color: rgb(37 99 235 / 0.2);
}

.border-l-blue-600\/25 {
  border-left-color: rgb(37 99 235 / 0.25);
}

.border-l-blue-600\/30 {
  border-left-color: rgb(37 99 235 / 0.3);
}

.border-l-blue-600\/35 {
  border-left-color: rgb(37 99 235 / 0.35);
}

.border-l-blue-600\/40 {
  border-left-color: rgb(37 99 235 / 0.4);
}

.border-l-blue-600\/45 {
  border-left-color: rgb(37 99 235 / 0.45);
}

.border-l-blue-600\/5 {
  border-left-color: rgb(37 99 235 / 0.05);
}

.border-l-blue-600\/50 {
  border-left-color: rgb(37 99 235 / 0.5);
}

.border-l-blue-600\/55 {
  border-left-color: rgb(37 99 235 / 0.55);
}

.border-l-blue-600\/60 {
  border-left-color: rgb(37 99 235 / 0.6);
}

.border-l-blue-600\/65 {
  border-left-color: rgb(37 99 235 / 0.65);
}

.border-l-blue-600\/70 {
  border-left-color: rgb(37 99 235 / 0.7);
}

.border-l-blue-600\/75 {
  border-left-color: rgb(37 99 235 / 0.75);
}

.border-l-blue-600\/80 {
  border-left-color: rgb(37 99 235 / 0.8);
}

.border-l-blue-600\/85 {
  border-left-color: rgb(37 99 235 / 0.85);
}

.border-l-blue-600\/90 {
  border-left-color: rgb(37 99 235 / 0.9);
}

.border-l-blue-600\/95 {
  border-left-color: rgb(37 99 235 / 0.95);
}

.border-l-blue-700 {
  --tw-border-opacity: 1;
  border-left-color: rgb(29 78 216 / var(--tw-border-opacity, 1));
}

.border-l-blue-700\/0 {
  border-left-color: rgb(29 78 216 / 0);
}

.border-l-blue-700\/10 {
  border-left-color: rgb(29 78 216 / 0.1);
}

.border-l-blue-700\/100 {
  border-left-color: rgb(29 78 216 / 1);
}

.border-l-blue-700\/15 {
  border-left-color: rgb(29 78 216 / 0.15);
}

.border-l-blue-700\/20 {
  border-left-color: rgb(29 78 216 / 0.2);
}

.border-l-blue-700\/25 {
  border-left-color: rgb(29 78 216 / 0.25);
}

.border-l-blue-700\/30 {
  border-left-color: rgb(29 78 216 / 0.3);
}

.border-l-blue-700\/35 {
  border-left-color: rgb(29 78 216 / 0.35);
}

.border-l-blue-700\/40 {
  border-left-color: rgb(29 78 216 / 0.4);
}

.border-l-blue-700\/45 {
  border-left-color: rgb(29 78 216 / 0.45);
}

.border-l-blue-700\/5 {
  border-left-color: rgb(29 78 216 / 0.05);
}

.border-l-blue-700\/50 {
  border-left-color: rgb(29 78 216 / 0.5);
}

.border-l-blue-700\/55 {
  border-left-color: rgb(29 78 216 / 0.55);
}

.border-l-blue-700\/60 {
  border-left-color: rgb(29 78 216 / 0.6);
}

.border-l-blue-700\/65 {
  border-left-color: rgb(29 78 216 / 0.65);
}

.border-l-blue-700\/70 {
  border-left-color: rgb(29 78 216 / 0.7);
}

.border-l-blue-700\/75 {
  border-left-color: rgb(29 78 216 / 0.75);
}

.border-l-blue-700\/80 {
  border-left-color: rgb(29 78 216 / 0.8);
}

.border-l-blue-700\/85 {
  border-left-color: rgb(29 78 216 / 0.85);
}

.border-l-blue-700\/90 {
  border-left-color: rgb(29 78 216 / 0.9);
}

.border-l-blue-700\/95 {
  border-left-color: rgb(29 78 216 / 0.95);
}

.border-l-blue-800 {
  --tw-border-opacity: 1;
  border-left-color: rgb(30 64 175 / var(--tw-border-opacity, 1));
}

.border-l-blue-800\/0 {
  border-left-color: rgb(30 64 175 / 0);
}

.border-l-blue-800\/10 {
  border-left-color: rgb(30 64 175 / 0.1);
}

.border-l-blue-800\/100 {
  border-left-color: rgb(30 64 175 / 1);
}

.border-l-blue-800\/15 {
  border-left-color: rgb(30 64 175 / 0.15);
}

.border-l-blue-800\/20 {
  border-left-color: rgb(30 64 175 / 0.2);
}

.border-l-blue-800\/25 {
  border-left-color: rgb(30 64 175 / 0.25);
}

.border-l-blue-800\/30 {
  border-left-color: rgb(30 64 175 / 0.3);
}

.border-l-blue-800\/35 {
  border-left-color: rgb(30 64 175 / 0.35);
}

.border-l-blue-800\/40 {
  border-left-color: rgb(30 64 175 / 0.4);
}

.border-l-blue-800\/45 {
  border-left-color: rgb(30 64 175 / 0.45);
}

.border-l-blue-800\/5 {
  border-left-color: rgb(30 64 175 / 0.05);
}

.border-l-blue-800\/50 {
  border-left-color: rgb(30 64 175 / 0.5);
}

.border-l-blue-800\/55 {
  border-left-color: rgb(30 64 175 / 0.55);
}

.border-l-blue-800\/60 {
  border-left-color: rgb(30 64 175 / 0.6);
}

.border-l-blue-800\/65 {
  border-left-color: rgb(30 64 175 / 0.65);
}

.border-l-blue-800\/70 {
  border-left-color: rgb(30 64 175 / 0.7);
}

.border-l-blue-800\/75 {
  border-left-color: rgb(30 64 175 / 0.75);
}

.border-l-blue-800\/80 {
  border-left-color: rgb(30 64 175 / 0.8);
}

.border-l-blue-800\/85 {
  border-left-color: rgb(30 64 175 / 0.85);
}

.border-l-blue-800\/90 {
  border-left-color: rgb(30 64 175 / 0.9);
}

.border-l-blue-800\/95 {
  border-left-color: rgb(30 64 175 / 0.95);
}

.border-l-blue-900 {
  --tw-border-opacity: 1;
  border-left-color: rgb(30 58 138 / var(--tw-border-opacity, 1));
}

.border-l-blue-900\/0 {
  border-left-color: rgb(30 58 138 / 0);
}

.border-l-blue-900\/10 {
  border-left-color: rgb(30 58 138 / 0.1);
}

.border-l-blue-900\/100 {
  border-left-color: rgb(30 58 138 / 1);
}

.border-l-blue-900\/15 {
  border-left-color: rgb(30 58 138 / 0.15);
}

.border-l-blue-900\/20 {
  border-left-color: rgb(30 58 138 / 0.2);
}

.border-l-blue-900\/25 {
  border-left-color: rgb(30 58 138 / 0.25);
}

.border-l-blue-900\/30 {
  border-left-color: rgb(30 58 138 / 0.3);
}

.border-l-blue-900\/35 {
  border-left-color: rgb(30 58 138 / 0.35);
}

.border-l-blue-900\/40 {
  border-left-color: rgb(30 58 138 / 0.4);
}

.border-l-blue-900\/45 {
  border-left-color: rgb(30 58 138 / 0.45);
}

.border-l-blue-900\/5 {
  border-left-color: rgb(30 58 138 / 0.05);
}

.border-l-blue-900\/50 {
  border-left-color: rgb(30 58 138 / 0.5);
}

.border-l-blue-900\/55 {
  border-left-color: rgb(30 58 138 / 0.55);
}

.border-l-blue-900\/60 {
  border-left-color: rgb(30 58 138 / 0.6);
}

.border-l-blue-900\/65 {
  border-left-color: rgb(30 58 138 / 0.65);
}

.border-l-blue-900\/70 {
  border-left-color: rgb(30 58 138 / 0.7);
}

.border-l-blue-900\/75 {
  border-left-color: rgb(30 58 138 / 0.75);
}

.border-l-blue-900\/80 {
  border-left-color: rgb(30 58 138 / 0.8);
}

.border-l-blue-900\/85 {
  border-left-color: rgb(30 58 138 / 0.85);
}

.border-l-blue-900\/90 {
  border-left-color: rgb(30 58 138 / 0.9);
}

.border-l-blue-900\/95 {
  border-left-color: rgb(30 58 138 / 0.95);
}

.border-l-blue-950 {
  --tw-border-opacity: 1;
  border-left-color: rgb(23 37 84 / var(--tw-border-opacity, 1));
}

.border-l-blue-950\/0 {
  border-left-color: rgb(23 37 84 / 0);
}

.border-l-blue-950\/10 {
  border-left-color: rgb(23 37 84 / 0.1);
}

.border-l-blue-950\/100 {
  border-left-color: rgb(23 37 84 / 1);
}

.border-l-blue-950\/15 {
  border-left-color: rgb(23 37 84 / 0.15);
}

.border-l-blue-950\/20 {
  border-left-color: rgb(23 37 84 / 0.2);
}

.border-l-blue-950\/25 {
  border-left-color: rgb(23 37 84 / 0.25);
}

.border-l-blue-950\/30 {
  border-left-color: rgb(23 37 84 / 0.3);
}

.border-l-blue-950\/35 {
  border-left-color: rgb(23 37 84 / 0.35);
}

.border-l-blue-950\/40 {
  border-left-color: rgb(23 37 84 / 0.4);
}

.border-l-blue-950\/45 {
  border-left-color: rgb(23 37 84 / 0.45);
}

.border-l-blue-950\/5 {
  border-left-color: rgb(23 37 84 / 0.05);
}

.border-l-blue-950\/50 {
  border-left-color: rgb(23 37 84 / 0.5);
}

.border-l-blue-950\/55 {
  border-left-color: rgb(23 37 84 / 0.55);
}

.border-l-blue-950\/60 {
  border-left-color: rgb(23 37 84 / 0.6);
}

.border-l-blue-950\/65 {
  border-left-color: rgb(23 37 84 / 0.65);
}

.border-l-blue-950\/70 {
  border-left-color: rgb(23 37 84 / 0.7);
}

.border-l-blue-950\/75 {
  border-left-color: rgb(23 37 84 / 0.75);
}

.border-l-blue-950\/80 {
  border-left-color: rgb(23 37 84 / 0.8);
}

.border-l-blue-950\/85 {
  border-left-color: rgb(23 37 84 / 0.85);
}

.border-l-blue-950\/90 {
  border-left-color: rgb(23 37 84 / 0.9);
}

.border-l-blue-950\/95 {
  border-left-color: rgb(23 37 84 / 0.95);
}

.border-l-current {
  border-left-color: currentColor;
}

.border-l-eva-blue {
  --tw-border-opacity: 1;
  border-left-color: rgb(26 33 62 / var(--tw-border-opacity, 1));
}

.border-l-eva-blue-appt {
  --tw-border-opacity: 1;
  border-left-color: rgba(52, 137, 207, var(--tw-border-opacity, 1));
}

.border-l-eva-blue-appt\/0 {
  border-left-color: rgba(52, 137, 207, 0);
}

.border-l-eva-blue-appt\/10 {
  border-left-color: rgba(52, 137, 207, 0.1);
}

.border-l-eva-blue-appt\/100 {
  border-left-color: rgba(52, 137, 207, 1);
}

.border-l-eva-blue-appt\/15 {
  border-left-color: rgba(52, 137, 207, 0.15);
}

.border-l-eva-blue-appt\/20 {
  border-left-color: rgba(52, 137, 207, 0.2);
}

.border-l-eva-blue-appt\/25 {
  border-left-color: rgba(52, 137, 207, 0.25);
}

.border-l-eva-blue-appt\/30 {
  border-left-color: rgba(52, 137, 207, 0.3);
}

.border-l-eva-blue-appt\/35 {
  border-left-color: rgba(52, 137, 207, 0.35);
}

.border-l-eva-blue-appt\/40 {
  border-left-color: rgba(52, 137, 207, 0.4);
}

.border-l-eva-blue-appt\/45 {
  border-left-color: rgba(52, 137, 207, 0.45);
}

.border-l-eva-blue-appt\/5 {
  border-left-color: rgba(52, 137, 207, 0.05);
}

.border-l-eva-blue-appt\/50 {
  border-left-color: rgba(52, 137, 207, 0.5);
}

.border-l-eva-blue-appt\/55 {
  border-left-color: rgba(52, 137, 207, 0.55);
}

.border-l-eva-blue-appt\/60 {
  border-left-color: rgba(52, 137, 207, 0.6);
}

.border-l-eva-blue-appt\/65 {
  border-left-color: rgba(52, 137, 207, 0.65);
}

.border-l-eva-blue-appt\/70 {
  border-left-color: rgba(52, 137, 207, 0.7);
}

.border-l-eva-blue-appt\/75 {
  border-left-color: rgba(52, 137, 207, 0.75);
}

.border-l-eva-blue-appt\/80 {
  border-left-color: rgba(52, 137, 207, 0.8);
}

.border-l-eva-blue-appt\/85 {
  border-left-color: rgba(52, 137, 207, 0.85);
}

.border-l-eva-blue-appt\/90 {
  border-left-color: rgba(52, 137, 207, 0.9);
}

.border-l-eva-blue-appt\/95 {
  border-left-color: rgba(52, 137, 207, 0.95);
}

.border-l-eva-blue-gray {
  --tw-border-opacity: 1;
  border-left-color: rgb(117 121 139 / var(--tw-border-opacity, 1));
}

.border-l-eva-blue-gray\/0 {
  border-left-color: rgb(117 121 139 / 0);
}

.border-l-eva-blue-gray\/10 {
  border-left-color: rgb(117 121 139 / 0.1);
}

.border-l-eva-blue-gray\/100 {
  border-left-color: rgb(117 121 139 / 1);
}

.border-l-eva-blue-gray\/15 {
  border-left-color: rgb(117 121 139 / 0.15);
}

.border-l-eva-blue-gray\/20 {
  border-left-color: rgb(117 121 139 / 0.2);
}

.border-l-eva-blue-gray\/25 {
  border-left-color: rgb(117 121 139 / 0.25);
}

.border-l-eva-blue-gray\/30 {
  border-left-color: rgb(117 121 139 / 0.3);
}

.border-l-eva-blue-gray\/35 {
  border-left-color: rgb(117 121 139 / 0.35);
}

.border-l-eva-blue-gray\/40 {
  border-left-color: rgb(117 121 139 / 0.4);
}

.border-l-eva-blue-gray\/45 {
  border-left-color: rgb(117 121 139 / 0.45);
}

.border-l-eva-blue-gray\/5 {
  border-left-color: rgb(117 121 139 / 0.05);
}

.border-l-eva-blue-gray\/50 {
  border-left-color: rgb(117 121 139 / 0.5);
}

.border-l-eva-blue-gray\/55 {
  border-left-color: rgb(117 121 139 / 0.55);
}

.border-l-eva-blue-gray\/60 {
  border-left-color: rgb(117 121 139 / 0.6);
}

.border-l-eva-blue-gray\/65 {
  border-left-color: rgb(117 121 139 / 0.65);
}

.border-l-eva-blue-gray\/70 {
  border-left-color: rgb(117 121 139 / 0.7);
}

.border-l-eva-blue-gray\/75 {
  border-left-color: rgb(117 121 139 / 0.75);
}

.border-l-eva-blue-gray\/80 {
  border-left-color: rgb(117 121 139 / 0.8);
}

.border-l-eva-blue-gray\/85 {
  border-left-color: rgb(117 121 139 / 0.85);
}

.border-l-eva-blue-gray\/90 {
  border-left-color: rgb(117 121 139 / 0.9);
}

.border-l-eva-blue-gray\/95 {
  border-left-color: rgb(117 121 139 / 0.95);
}

.border-l-eva-blue-hv {
  --tw-border-opacity: 1;
  border-left-color: rgb(15 18 31 / var(--tw-border-opacity, 1));
}

.border-l-eva-blue-hv\/0 {
  border-left-color: rgb(15 18 31 / 0);
}

.border-l-eva-blue-hv\/10 {
  border-left-color: rgb(15 18 31 / 0.1);
}

.border-l-eva-blue-hv\/100 {
  border-left-color: rgb(15 18 31 / 1);
}

.border-l-eva-blue-hv\/15 {
  border-left-color: rgb(15 18 31 / 0.15);
}

.border-l-eva-blue-hv\/20 {
  border-left-color: rgb(15 18 31 / 0.2);
}

.border-l-eva-blue-hv\/25 {
  border-left-color: rgb(15 18 31 / 0.25);
}

.border-l-eva-blue-hv\/30 {
  border-left-color: rgb(15 18 31 / 0.3);
}

.border-l-eva-blue-hv\/35 {
  border-left-color: rgb(15 18 31 / 0.35);
}

.border-l-eva-blue-hv\/40 {
  border-left-color: rgb(15 18 31 / 0.4);
}

.border-l-eva-blue-hv\/45 {
  border-left-color: rgb(15 18 31 / 0.45);
}

.border-l-eva-blue-hv\/5 {
  border-left-color: rgb(15 18 31 / 0.05);
}

.border-l-eva-blue-hv\/50 {
  border-left-color: rgb(15 18 31 / 0.5);
}

.border-l-eva-blue-hv\/55 {
  border-left-color: rgb(15 18 31 / 0.55);
}

.border-l-eva-blue-hv\/60 {
  border-left-color: rgb(15 18 31 / 0.6);
}

.border-l-eva-blue-hv\/65 {
  border-left-color: rgb(15 18 31 / 0.65);
}

.border-l-eva-blue-hv\/70 {
  border-left-color: rgb(15 18 31 / 0.7);
}

.border-l-eva-blue-hv\/75 {
  border-left-color: rgb(15 18 31 / 0.75);
}

.border-l-eva-blue-hv\/80 {
  border-left-color: rgb(15 18 31 / 0.8);
}

.border-l-eva-blue-hv\/85 {
  border-left-color: rgb(15 18 31 / 0.85);
}

.border-l-eva-blue-hv\/90 {
  border-left-color: rgb(15 18 31 / 0.9);
}

.border-l-eva-blue-hv\/95 {
  border-left-color: rgb(15 18 31 / 0.95);
}

.border-l-eva-blue-light {
  --tw-border-opacity: 1;
  border-left-color: rgb(48 56 81 / var(--tw-border-opacity, 1));
}

.border-l-eva-blue-light-hv {
  border-left-color: rgba(17,20,30,.3);
}

.border-l-eva-blue-light-hv\/0 {
  border-left-color: rgba(17, 20, 30, 0);
}

.border-l-eva-blue-light-hv\/10 {
  border-left-color: rgba(17, 20, 30, 0.1);
}

.border-l-eva-blue-light-hv\/100 {
  border-left-color: rgba(17, 20, 30, 1);
}

.border-l-eva-blue-light-hv\/15 {
  border-left-color: rgba(17, 20, 30, 0.15);
}

.border-l-eva-blue-light-hv\/20 {
  border-left-color: rgba(17, 20, 30, 0.2);
}

.border-l-eva-blue-light-hv\/25 {
  border-left-color: rgba(17, 20, 30, 0.25);
}

.border-l-eva-blue-light-hv\/30 {
  border-left-color: rgba(17, 20, 30, 0.3);
}

.border-l-eva-blue-light-hv\/35 {
  border-left-color: rgba(17, 20, 30, 0.35);
}

.border-l-eva-blue-light-hv\/40 {
  border-left-color: rgba(17, 20, 30, 0.4);
}

.border-l-eva-blue-light-hv\/45 {
  border-left-color: rgba(17, 20, 30, 0.45);
}

.border-l-eva-blue-light-hv\/5 {
  border-left-color: rgba(17, 20, 30, 0.05);
}

.border-l-eva-blue-light-hv\/50 {
  border-left-color: rgba(17, 20, 30, 0.5);
}

.border-l-eva-blue-light-hv\/55 {
  border-left-color: rgba(17, 20, 30, 0.55);
}

.border-l-eva-blue-light-hv\/60 {
  border-left-color: rgba(17, 20, 30, 0.6);
}

.border-l-eva-blue-light-hv\/65 {
  border-left-color: rgba(17, 20, 30, 0.65);
}

.border-l-eva-blue-light-hv\/70 {
  border-left-color: rgba(17, 20, 30, 0.7);
}

.border-l-eva-blue-light-hv\/75 {
  border-left-color: rgba(17, 20, 30, 0.75);
}

.border-l-eva-blue-light-hv\/80 {
  border-left-color: rgba(17, 20, 30, 0.8);
}

.border-l-eva-blue-light-hv\/85 {
  border-left-color: rgba(17, 20, 30, 0.85);
}

.border-l-eva-blue-light-hv\/90 {
  border-left-color: rgba(17, 20, 30, 0.9);
}

.border-l-eva-blue-light-hv\/95 {
  border-left-color: rgba(17, 20, 30, 0.95);
}

.border-l-eva-blue-light\/0 {
  border-left-color: rgb(48 56 81 / 0);
}

.border-l-eva-blue-light\/10 {
  border-left-color: rgb(48 56 81 / 0.1);
}

.border-l-eva-blue-light\/100 {
  border-left-color: rgb(48 56 81 / 1);
}

.border-l-eva-blue-light\/15 {
  border-left-color: rgb(48 56 81 / 0.15);
}

.border-l-eva-blue-light\/20 {
  border-left-color: rgb(48 56 81 / 0.2);
}

.border-l-eva-blue-light\/25 {
  border-left-color: rgb(48 56 81 / 0.25);
}

.border-l-eva-blue-light\/30 {
  border-left-color: rgb(48 56 81 / 0.3);
}

.border-l-eva-blue-light\/35 {
  border-left-color: rgb(48 56 81 / 0.35);
}

.border-l-eva-blue-light\/40 {
  border-left-color: rgb(48 56 81 / 0.4);
}

.border-l-eva-blue-light\/45 {
  border-left-color: rgb(48 56 81 / 0.45);
}

.border-l-eva-blue-light\/5 {
  border-left-color: rgb(48 56 81 / 0.05);
}

.border-l-eva-blue-light\/50 {
  border-left-color: rgb(48 56 81 / 0.5);
}

.border-l-eva-blue-light\/55 {
  border-left-color: rgb(48 56 81 / 0.55);
}

.border-l-eva-blue-light\/60 {
  border-left-color: rgb(48 56 81 / 0.6);
}

.border-l-eva-blue-light\/65 {
  border-left-color: rgb(48 56 81 / 0.65);
}

.border-l-eva-blue-light\/70 {
  border-left-color: rgb(48 56 81 / 0.7);
}

.border-l-eva-blue-light\/75 {
  border-left-color: rgb(48 56 81 / 0.75);
}

.border-l-eva-blue-light\/80 {
  border-left-color: rgb(48 56 81 / 0.8);
}

.border-l-eva-blue-light\/85 {
  border-left-color: rgb(48 56 81 / 0.85);
}

.border-l-eva-blue-light\/90 {
  border-left-color: rgb(48 56 81 / 0.9);
}

.border-l-eva-blue-light\/95 {
  border-left-color: rgb(48 56 81 / 0.95);
}

.border-l-eva-blue\/0 {
  border-left-color: rgb(26 33 62 / 0);
}

.border-l-eva-blue\/10 {
  border-left-color: rgb(26 33 62 / 0.1);
}

.border-l-eva-blue\/100 {
  border-left-color: rgb(26 33 62 / 1);
}

.border-l-eva-blue\/15 {
  border-left-color: rgb(26 33 62 / 0.15);
}

.border-l-eva-blue\/20 {
  border-left-color: rgb(26 33 62 / 0.2);
}

.border-l-eva-blue\/25 {
  border-left-color: rgb(26 33 62 / 0.25);
}

.border-l-eva-blue\/30 {
  border-left-color: rgb(26 33 62 / 0.3);
}

.border-l-eva-blue\/35 {
  border-left-color: rgb(26 33 62 / 0.35);
}

.border-l-eva-blue\/40 {
  border-left-color: rgb(26 33 62 / 0.4);
}

.border-l-eva-blue\/45 {
  border-left-color: rgb(26 33 62 / 0.45);
}

.border-l-eva-blue\/5 {
  border-left-color: rgb(26 33 62 / 0.05);
}

.border-l-eva-blue\/50 {
  border-left-color: rgb(26 33 62 / 0.5);
}

.border-l-eva-blue\/55 {
  border-left-color: rgb(26 33 62 / 0.55);
}

.border-l-eva-blue\/60 {
  border-left-color: rgb(26 33 62 / 0.6);
}

.border-l-eva-blue\/65 {
  border-left-color: rgb(26 33 62 / 0.65);
}

.border-l-eva-blue\/70 {
  border-left-color: rgb(26 33 62 / 0.7);
}

.border-l-eva-blue\/75 {
  border-left-color: rgb(26 33 62 / 0.75);
}

.border-l-eva-blue\/80 {
  border-left-color: rgb(26 33 62 / 0.8);
}

.border-l-eva-blue\/85 {
  border-left-color: rgb(26 33 62 / 0.85);
}

.border-l-eva-blue\/90 {
  border-left-color: rgb(26 33 62 / 0.9);
}

.border-l-eva-blue\/95 {
  border-left-color: rgb(26 33 62 / 0.95);
}

.border-l-eva-brown-appt {
  border-left-color: rgba(99, 93, 94, 1);
}

.border-l-eva-brown-appt\/0 {
  border-left-color: rgba(99, 93, 94, 0);
}

.border-l-eva-brown-appt\/10 {
  border-left-color: rgba(99, 93, 94, 0.1);
}

.border-l-eva-brown-appt\/100 {
  border-left-color: rgba(99, 93, 94, 1);
}

.border-l-eva-brown-appt\/15 {
  border-left-color: rgba(99, 93, 94, 0.15);
}

.border-l-eva-brown-appt\/20 {
  border-left-color: rgba(99, 93, 94, 0.2);
}

.border-l-eva-brown-appt\/25 {
  border-left-color: rgba(99, 93, 94, 0.25);
}

.border-l-eva-brown-appt\/30 {
  border-left-color: rgba(99, 93, 94, 0.3);
}

.border-l-eva-brown-appt\/35 {
  border-left-color: rgba(99, 93, 94, 0.35);
}

.border-l-eva-brown-appt\/40 {
  border-left-color: rgba(99, 93, 94, 0.4);
}

.border-l-eva-brown-appt\/45 {
  border-left-color: rgba(99, 93, 94, 0.45);
}

.border-l-eva-brown-appt\/5 {
  border-left-color: rgba(99, 93, 94, 0.05);
}

.border-l-eva-brown-appt\/50 {
  border-left-color: rgba(99, 93, 94, 0.5);
}

.border-l-eva-brown-appt\/55 {
  border-left-color: rgba(99, 93, 94, 0.55);
}

.border-l-eva-brown-appt\/60 {
  border-left-color: rgba(99, 93, 94, 0.6);
}

.border-l-eva-brown-appt\/65 {
  border-left-color: rgba(99, 93, 94, 0.65);
}

.border-l-eva-brown-appt\/70 {
  border-left-color: rgba(99, 93, 94, 0.7);
}

.border-l-eva-brown-appt\/75 {
  border-left-color: rgba(99, 93, 94, 0.75);
}

.border-l-eva-brown-appt\/80 {
  border-left-color: rgba(99, 93, 94, 0.8);
}

.border-l-eva-brown-appt\/85 {
  border-left-color: rgba(99, 93, 94, 0.85);
}

.border-l-eva-brown-appt\/90 {
  border-left-color: rgba(99, 93, 94, 0.9);
}

.border-l-eva-brown-appt\/95 {
  border-left-color: rgba(99, 93, 94, 0.95);
}

.border-l-eva-dark-green-appt {
  border-left-color: rgba(102, 188, 130, 1);
}

.border-l-eva-dark-green-appt\/0 {
  border-left-color: rgba(102, 188, 130, 0);
}

.border-l-eva-dark-green-appt\/10 {
  border-left-color: rgba(102, 188, 130, 0.1);
}

.border-l-eva-dark-green-appt\/100 {
  border-left-color: rgba(102, 188, 130, 1);
}

.border-l-eva-dark-green-appt\/15 {
  border-left-color: rgba(102, 188, 130, 0.15);
}

.border-l-eva-dark-green-appt\/20 {
  border-left-color: rgba(102, 188, 130, 0.2);
}

.border-l-eva-dark-green-appt\/25 {
  border-left-color: rgba(102, 188, 130, 0.25);
}

.border-l-eva-dark-green-appt\/30 {
  border-left-color: rgba(102, 188, 130, 0.3);
}

.border-l-eva-dark-green-appt\/35 {
  border-left-color: rgba(102, 188, 130, 0.35);
}

.border-l-eva-dark-green-appt\/40 {
  border-left-color: rgba(102, 188, 130, 0.4);
}

.border-l-eva-dark-green-appt\/45 {
  border-left-color: rgba(102, 188, 130, 0.45);
}

.border-l-eva-dark-green-appt\/5 {
  border-left-color: rgba(102, 188, 130, 0.05);
}

.border-l-eva-dark-green-appt\/50 {
  border-left-color: rgba(102, 188, 130, 0.5);
}

.border-l-eva-dark-green-appt\/55 {
  border-left-color: rgba(102, 188, 130, 0.55);
}

.border-l-eva-dark-green-appt\/60 {
  border-left-color: rgba(102, 188, 130, 0.6);
}

.border-l-eva-dark-green-appt\/65 {
  border-left-color: rgba(102, 188, 130, 0.65);
}

.border-l-eva-dark-green-appt\/70 {
  border-left-color: rgba(102, 188, 130, 0.7);
}

.border-l-eva-dark-green-appt\/75 {
  border-left-color: rgba(102, 188, 130, 0.75);
}

.border-l-eva-dark-green-appt\/80 {
  border-left-color: rgba(102, 188, 130, 0.8);
}

.border-l-eva-dark-green-appt\/85 {
  border-left-color: rgba(102, 188, 130, 0.85);
}

.border-l-eva-dark-green-appt\/90 {
  border-left-color: rgba(102, 188, 130, 0.9);
}

.border-l-eva-dark-green-appt\/95 {
  border-left-color: rgba(102, 188, 130, 0.95);
}

.border-l-eva-dark-red-appt {
  border-left-color: rgba(198, 102, 94, 1);
}

.border-l-eva-dark-red-appt\/0 {
  border-left-color: rgba(198, 102, 94, 0);
}

.border-l-eva-dark-red-appt\/10 {
  border-left-color: rgba(198, 102, 94, 0.1);
}

.border-l-eva-dark-red-appt\/100 {
  border-left-color: rgba(198, 102, 94, 1);
}

.border-l-eva-dark-red-appt\/15 {
  border-left-color: rgba(198, 102, 94, 0.15);
}

.border-l-eva-dark-red-appt\/20 {
  border-left-color: rgba(198, 102, 94, 0.2);
}

.border-l-eva-dark-red-appt\/25 {
  border-left-color: rgba(198, 102, 94, 0.25);
}

.border-l-eva-dark-red-appt\/30 {
  border-left-color: rgba(198, 102, 94, 0.3);
}

.border-l-eva-dark-red-appt\/35 {
  border-left-color: rgba(198, 102, 94, 0.35);
}

.border-l-eva-dark-red-appt\/40 {
  border-left-color: rgba(198, 102, 94, 0.4);
}

.border-l-eva-dark-red-appt\/45 {
  border-left-color: rgba(198, 102, 94, 0.45);
}

.border-l-eva-dark-red-appt\/5 {
  border-left-color: rgba(198, 102, 94, 0.05);
}

.border-l-eva-dark-red-appt\/50 {
  border-left-color: rgba(198, 102, 94, 0.5);
}

.border-l-eva-dark-red-appt\/55 {
  border-left-color: rgba(198, 102, 94, 0.55);
}

.border-l-eva-dark-red-appt\/60 {
  border-left-color: rgba(198, 102, 94, 0.6);
}

.border-l-eva-dark-red-appt\/65 {
  border-left-color: rgba(198, 102, 94, 0.65);
}

.border-l-eva-dark-red-appt\/70 {
  border-left-color: rgba(198, 102, 94, 0.7);
}

.border-l-eva-dark-red-appt\/75 {
  border-left-color: rgba(198, 102, 94, 0.75);
}

.border-l-eva-dark-red-appt\/80 {
  border-left-color: rgba(198, 102, 94, 0.8);
}

.border-l-eva-dark-red-appt\/85 {
  border-left-color: rgba(198, 102, 94, 0.85);
}

.border-l-eva-dark-red-appt\/90 {
  border-left-color: rgba(198, 102, 94, 0.9);
}

.border-l-eva-dark-red-appt\/95 {
  border-left-color: rgba(198, 102, 94, 0.95);
}

.border-l-eva-green {
  --tw-border-opacity: 1;
  border-left-color: rgb(73 181 168 / var(--tw-border-opacity, 1));
}

.border-l-eva-green-appt {
  --tw-border-opacity: 1;
  border-left-color: rgba(128, 215, 109, var(--tw-border-opacity, 1));
}

.border-l-eva-green-appt\/0 {
  border-left-color: rgba(128, 215, 109, 0);
}

.border-l-eva-green-appt\/10 {
  border-left-color: rgba(128, 215, 109, 0.1);
}

.border-l-eva-green-appt\/100 {
  border-left-color: rgba(128, 215, 109, 1);
}

.border-l-eva-green-appt\/15 {
  border-left-color: rgba(128, 215, 109, 0.15);
}

.border-l-eva-green-appt\/20 {
  border-left-color: rgba(128, 215, 109, 0.2);
}

.border-l-eva-green-appt\/25 {
  border-left-color: rgba(128, 215, 109, 0.25);
}

.border-l-eva-green-appt\/30 {
  border-left-color: rgba(128, 215, 109, 0.3);
}

.border-l-eva-green-appt\/35 {
  border-left-color: rgba(128, 215, 109, 0.35);
}

.border-l-eva-green-appt\/40 {
  border-left-color: rgba(128, 215, 109, 0.4);
}

.border-l-eva-green-appt\/45 {
  border-left-color: rgba(128, 215, 109, 0.45);
}

.border-l-eva-green-appt\/5 {
  border-left-color: rgba(128, 215, 109, 0.05);
}

.border-l-eva-green-appt\/50 {
  border-left-color: rgba(128, 215, 109, 0.5);
}

.border-l-eva-green-appt\/55 {
  border-left-color: rgba(128, 215, 109, 0.55);
}

.border-l-eva-green-appt\/60 {
  border-left-color: rgba(128, 215, 109, 0.6);
}

.border-l-eva-green-appt\/65 {
  border-left-color: rgba(128, 215, 109, 0.65);
}

.border-l-eva-green-appt\/70 {
  border-left-color: rgba(128, 215, 109, 0.7);
}

.border-l-eva-green-appt\/75 {
  border-left-color: rgba(128, 215, 109, 0.75);
}

.border-l-eva-green-appt\/80 {
  border-left-color: rgba(128, 215, 109, 0.8);
}

.border-l-eva-green-appt\/85 {
  border-left-color: rgba(128, 215, 109, 0.85);
}

.border-l-eva-green-appt\/90 {
  border-left-color: rgba(128, 215, 109, 0.9);
}

.border-l-eva-green-appt\/95 {
  border-left-color: rgba(128, 215, 109, 0.95);
}

.border-l-eva-green-brown-appt {
  border-left-color: rgba(197, 191, 140, 1);
}

.border-l-eva-green-brown-appt\/0 {
  border-left-color: rgba(197, 191, 140, 0);
}

.border-l-eva-green-brown-appt\/10 {
  border-left-color: rgba(197, 191, 140, 0.1);
}

.border-l-eva-green-brown-appt\/100 {
  border-left-color: rgba(197, 191, 140, 1);
}

.border-l-eva-green-brown-appt\/15 {
  border-left-color: rgba(197, 191, 140, 0.15);
}

.border-l-eva-green-brown-appt\/20 {
  border-left-color: rgba(197, 191, 140, 0.2);
}

.border-l-eva-green-brown-appt\/25 {
  border-left-color: rgba(197, 191, 140, 0.25);
}

.border-l-eva-green-brown-appt\/30 {
  border-left-color: rgba(197, 191, 140, 0.3);
}

.border-l-eva-green-brown-appt\/35 {
  border-left-color: rgba(197, 191, 140, 0.35);
}

.border-l-eva-green-brown-appt\/40 {
  border-left-color: rgba(197, 191, 140, 0.4);
}

.border-l-eva-green-brown-appt\/45 {
  border-left-color: rgba(197, 191, 140, 0.45);
}

.border-l-eva-green-brown-appt\/5 {
  border-left-color: rgba(197, 191, 140, 0.05);
}

.border-l-eva-green-brown-appt\/50 {
  border-left-color: rgba(197, 191, 140, 0.5);
}

.border-l-eva-green-brown-appt\/55 {
  border-left-color: rgba(197, 191, 140, 0.55);
}

.border-l-eva-green-brown-appt\/60 {
  border-left-color: rgba(197, 191, 140, 0.6);
}

.border-l-eva-green-brown-appt\/65 {
  border-left-color: rgba(197, 191, 140, 0.65);
}

.border-l-eva-green-brown-appt\/70 {
  border-left-color: rgba(197, 191, 140, 0.7);
}

.border-l-eva-green-brown-appt\/75 {
  border-left-color: rgba(197, 191, 140, 0.75);
}

.border-l-eva-green-brown-appt\/80 {
  border-left-color: rgba(197, 191, 140, 0.8);
}

.border-l-eva-green-brown-appt\/85 {
  border-left-color: rgba(197, 191, 140, 0.85);
}

.border-l-eva-green-brown-appt\/90 {
  border-left-color: rgba(197, 191, 140, 0.9);
}

.border-l-eva-green-brown-appt\/95 {
  border-left-color: rgba(197, 191, 140, 0.95);
}

.border-l-eva-green-hv {
  --tw-border-opacity: 1;
  border-left-color: rgb(63 156 144 / var(--tw-border-opacity, 1));
}

.border-l-eva-green-hv\/0 {
  border-left-color: rgb(63 156 144 / 0);
}

.border-l-eva-green-hv\/10 {
  border-left-color: rgb(63 156 144 / 0.1);
}

.border-l-eva-green-hv\/100 {
  border-left-color: rgb(63 156 144 / 1);
}

.border-l-eva-green-hv\/15 {
  border-left-color: rgb(63 156 144 / 0.15);
}

.border-l-eva-green-hv\/20 {
  border-left-color: rgb(63 156 144 / 0.2);
}

.border-l-eva-green-hv\/25 {
  border-left-color: rgb(63 156 144 / 0.25);
}

.border-l-eva-green-hv\/30 {
  border-left-color: rgb(63 156 144 / 0.3);
}

.border-l-eva-green-hv\/35 {
  border-left-color: rgb(63 156 144 / 0.35);
}

.border-l-eva-green-hv\/40 {
  border-left-color: rgb(63 156 144 / 0.4);
}

.border-l-eva-green-hv\/45 {
  border-left-color: rgb(63 156 144 / 0.45);
}

.border-l-eva-green-hv\/5 {
  border-left-color: rgb(63 156 144 / 0.05);
}

.border-l-eva-green-hv\/50 {
  border-left-color: rgb(63 156 144 / 0.5);
}

.border-l-eva-green-hv\/55 {
  border-left-color: rgb(63 156 144 / 0.55);
}

.border-l-eva-green-hv\/60 {
  border-left-color: rgb(63 156 144 / 0.6);
}

.border-l-eva-green-hv\/65 {
  border-left-color: rgb(63 156 144 / 0.65);
}

.border-l-eva-green-hv\/70 {
  border-left-color: rgb(63 156 144 / 0.7);
}

.border-l-eva-green-hv\/75 {
  border-left-color: rgb(63 156 144 / 0.75);
}

.border-l-eva-green-hv\/80 {
  border-left-color: rgb(63 156 144 / 0.8);
}

.border-l-eva-green-hv\/85 {
  border-left-color: rgb(63 156 144 / 0.85);
}

.border-l-eva-green-hv\/90 {
  border-left-color: rgb(63 156 144 / 0.9);
}

.border-l-eva-green-hv\/95 {
  border-left-color: rgb(63 156 144 / 0.95);
}

.border-l-eva-green\/0 {
  border-left-color: rgb(73 181 168 / 0);
}

.border-l-eva-green\/10 {
  border-left-color: rgb(73 181 168 / 0.1);
}

.border-l-eva-green\/100 {
  border-left-color: rgb(73 181 168 / 1);
}

.border-l-eva-green\/15 {
  border-left-color: rgb(73 181 168 / 0.15);
}

.border-l-eva-green\/20 {
  border-left-color: rgb(73 181 168 / 0.2);
}

.border-l-eva-green\/25 {
  border-left-color: rgb(73 181 168 / 0.25);
}

.border-l-eva-green\/30 {
  border-left-color: rgb(73 181 168 / 0.3);
}

.border-l-eva-green\/35 {
  border-left-color: rgb(73 181 168 / 0.35);
}

.border-l-eva-green\/40 {
  border-left-color: rgb(73 181 168 / 0.4);
}

.border-l-eva-green\/45 {
  border-left-color: rgb(73 181 168 / 0.45);
}

.border-l-eva-green\/5 {
  border-left-color: rgb(73 181 168 / 0.05);
}

.border-l-eva-green\/50 {
  border-left-color: rgb(73 181 168 / 0.5);
}

.border-l-eva-green\/55 {
  border-left-color: rgb(73 181 168 / 0.55);
}

.border-l-eva-green\/60 {
  border-left-color: rgb(73 181 168 / 0.6);
}

.border-l-eva-green\/65 {
  border-left-color: rgb(73 181 168 / 0.65);
}

.border-l-eva-green\/70 {
  border-left-color: rgb(73 181 168 / 0.7);
}

.border-l-eva-green\/75 {
  border-left-color: rgb(73 181 168 / 0.75);
}

.border-l-eva-green\/80 {
  border-left-color: rgb(73 181 168 / 0.8);
}

.border-l-eva-green\/85 {
  border-left-color: rgb(73 181 168 / 0.85);
}

.border-l-eva-green\/90 {
  border-left-color: rgb(73 181 168 / 0.9);
}

.border-l-eva-green\/95 {
  border-left-color: rgb(73 181 168 / 0.95);
}

.border-l-eva-lavender-appt {
  border-left-color: rgba(169, 124, 165, 1);
}

.border-l-eva-lavender-appt\/0 {
  border-left-color: rgba(169, 124, 165, 0);
}

.border-l-eva-lavender-appt\/10 {
  border-left-color: rgba(169, 124, 165, 0.1);
}

.border-l-eva-lavender-appt\/100 {
  border-left-color: rgba(169, 124, 165, 1);
}

.border-l-eva-lavender-appt\/15 {
  border-left-color: rgba(169, 124, 165, 0.15);
}

.border-l-eva-lavender-appt\/20 {
  border-left-color: rgba(169, 124, 165, 0.2);
}

.border-l-eva-lavender-appt\/25 {
  border-left-color: rgba(169, 124, 165, 0.25);
}

.border-l-eva-lavender-appt\/30 {
  border-left-color: rgba(169, 124, 165, 0.3);
}

.border-l-eva-lavender-appt\/35 {
  border-left-color: rgba(169, 124, 165, 0.35);
}

.border-l-eva-lavender-appt\/40 {
  border-left-color: rgba(169, 124, 165, 0.4);
}

.border-l-eva-lavender-appt\/45 {
  border-left-color: rgba(169, 124, 165, 0.45);
}

.border-l-eva-lavender-appt\/5 {
  border-left-color: rgba(169, 124, 165, 0.05);
}

.border-l-eva-lavender-appt\/50 {
  border-left-color: rgba(169, 124, 165, 0.5);
}

.border-l-eva-lavender-appt\/55 {
  border-left-color: rgba(169, 124, 165, 0.55);
}

.border-l-eva-lavender-appt\/60 {
  border-left-color: rgba(169, 124, 165, 0.6);
}

.border-l-eva-lavender-appt\/65 {
  border-left-color: rgba(169, 124, 165, 0.65);
}

.border-l-eva-lavender-appt\/70 {
  border-left-color: rgba(169, 124, 165, 0.7);
}

.border-l-eva-lavender-appt\/75 {
  border-left-color: rgba(169, 124, 165, 0.75);
}

.border-l-eva-lavender-appt\/80 {
  border-left-color: rgba(169, 124, 165, 0.8);
}

.border-l-eva-lavender-appt\/85 {
  border-left-color: rgba(169, 124, 165, 0.85);
}

.border-l-eva-lavender-appt\/90 {
  border-left-color: rgba(169, 124, 165, 0.9);
}

.border-l-eva-lavender-appt\/95 {
  border-left-color: rgba(169, 124, 165, 0.95);
}

.border-l-eva-magenta-appt {
  border-left-color: rgba(223, 91, 146, 1);
}

.border-l-eva-magenta-appt\/0 {
  border-left-color: rgba(223, 91, 146, 0);
}

.border-l-eva-magenta-appt\/10 {
  border-left-color: rgba(223, 91, 146, 0.1);
}

.border-l-eva-magenta-appt\/100 {
  border-left-color: rgba(223, 91, 146, 1);
}

.border-l-eva-magenta-appt\/15 {
  border-left-color: rgba(223, 91, 146, 0.15);
}

.border-l-eva-magenta-appt\/20 {
  border-left-color: rgba(223, 91, 146, 0.2);
}

.border-l-eva-magenta-appt\/25 {
  border-left-color: rgba(223, 91, 146, 0.25);
}

.border-l-eva-magenta-appt\/30 {
  border-left-color: rgba(223, 91, 146, 0.3);
}

.border-l-eva-magenta-appt\/35 {
  border-left-color: rgba(223, 91, 146, 0.35);
}

.border-l-eva-magenta-appt\/40 {
  border-left-color: rgba(223, 91, 146, 0.4);
}

.border-l-eva-magenta-appt\/45 {
  border-left-color: rgba(223, 91, 146, 0.45);
}

.border-l-eva-magenta-appt\/5 {
  border-left-color: rgba(223, 91, 146, 0.05);
}

.border-l-eva-magenta-appt\/50 {
  border-left-color: rgba(223, 91, 146, 0.5);
}

.border-l-eva-magenta-appt\/55 {
  border-left-color: rgba(223, 91, 146, 0.55);
}

.border-l-eva-magenta-appt\/60 {
  border-left-color: rgba(223, 91, 146, 0.6);
}

.border-l-eva-magenta-appt\/65 {
  border-left-color: rgba(223, 91, 146, 0.65);
}

.border-l-eva-magenta-appt\/70 {
  border-left-color: rgba(223, 91, 146, 0.7);
}

.border-l-eva-magenta-appt\/75 {
  border-left-color: rgba(223, 91, 146, 0.75);
}

.border-l-eva-magenta-appt\/80 {
  border-left-color: rgba(223, 91, 146, 0.8);
}

.border-l-eva-magenta-appt\/85 {
  border-left-color: rgba(223, 91, 146, 0.85);
}

.border-l-eva-magenta-appt\/90 {
  border-left-color: rgba(223, 91, 146, 0.9);
}

.border-l-eva-magenta-appt\/95 {
  border-left-color: rgba(223, 91, 146, 0.95);
}

.border-l-eva-orange-appt {
  border-left-color: rgba(232, 176, 99, 1);
}

.border-l-eva-orange-appt\/0 {
  border-left-color: rgba(232, 176, 99, 0);
}

.border-l-eva-orange-appt\/10 {
  border-left-color: rgba(232, 176, 99, 0.1);
}

.border-l-eva-orange-appt\/100 {
  border-left-color: rgba(232, 176, 99, 1);
}

.border-l-eva-orange-appt\/15 {
  border-left-color: rgba(232, 176, 99, 0.15);
}

.border-l-eva-orange-appt\/20 {
  border-left-color: rgba(232, 176, 99, 0.2);
}

.border-l-eva-orange-appt\/25 {
  border-left-color: rgba(232, 176, 99, 0.25);
}

.border-l-eva-orange-appt\/30 {
  border-left-color: rgba(232, 176, 99, 0.3);
}

.border-l-eva-orange-appt\/35 {
  border-left-color: rgba(232, 176, 99, 0.35);
}

.border-l-eva-orange-appt\/40 {
  border-left-color: rgba(232, 176, 99, 0.4);
}

.border-l-eva-orange-appt\/45 {
  border-left-color: rgba(232, 176, 99, 0.45);
}

.border-l-eva-orange-appt\/5 {
  border-left-color: rgba(232, 176, 99, 0.05);
}

.border-l-eva-orange-appt\/50 {
  border-left-color: rgba(232, 176, 99, 0.5);
}

.border-l-eva-orange-appt\/55 {
  border-left-color: rgba(232, 176, 99, 0.55);
}

.border-l-eva-orange-appt\/60 {
  border-left-color: rgba(232, 176, 99, 0.6);
}

.border-l-eva-orange-appt\/65 {
  border-left-color: rgba(232, 176, 99, 0.65);
}

.border-l-eva-orange-appt\/70 {
  border-left-color: rgba(232, 176, 99, 0.7);
}

.border-l-eva-orange-appt\/75 {
  border-left-color: rgba(232, 176, 99, 0.75);
}

.border-l-eva-orange-appt\/80 {
  border-left-color: rgba(232, 176, 99, 0.8);
}

.border-l-eva-orange-appt\/85 {
  border-left-color: rgba(232, 176, 99, 0.85);
}

.border-l-eva-orange-appt\/90 {
  border-left-color: rgba(232, 176, 99, 0.9);
}

.border-l-eva-orange-appt\/95 {
  border-left-color: rgba(232, 176, 99, 0.95);
}

.border-l-eva-purple-appt {
  border-left-color: rgba(125, 117, 164, 1);
}

.border-l-eva-purple-appt\/0 {
  border-left-color: rgba(125, 117, 164, 0);
}

.border-l-eva-purple-appt\/10 {
  border-left-color: rgba(125, 117, 164, 0.1);
}

.border-l-eva-purple-appt\/100 {
  border-left-color: rgba(125, 117, 164, 1);
}

.border-l-eva-purple-appt\/15 {
  border-left-color: rgba(125, 117, 164, 0.15);
}

.border-l-eva-purple-appt\/20 {
  border-left-color: rgba(125, 117, 164, 0.2);
}

.border-l-eva-purple-appt\/25 {
  border-left-color: rgba(125, 117, 164, 0.25);
}

.border-l-eva-purple-appt\/30 {
  border-left-color: rgba(125, 117, 164, 0.3);
}

.border-l-eva-purple-appt\/35 {
  border-left-color: rgba(125, 117, 164, 0.35);
}

.border-l-eva-purple-appt\/40 {
  border-left-color: rgba(125, 117, 164, 0.4);
}

.border-l-eva-purple-appt\/45 {
  border-left-color: rgba(125, 117, 164, 0.45);
}

.border-l-eva-purple-appt\/5 {
  border-left-color: rgba(125, 117, 164, 0.05);
}

.border-l-eva-purple-appt\/50 {
  border-left-color: rgba(125, 117, 164, 0.5);
}

.border-l-eva-purple-appt\/55 {
  border-left-color: rgba(125, 117, 164, 0.55);
}

.border-l-eva-purple-appt\/60 {
  border-left-color: rgba(125, 117, 164, 0.6);
}

.border-l-eva-purple-appt\/65 {
  border-left-color: rgba(125, 117, 164, 0.65);
}

.border-l-eva-purple-appt\/70 {
  border-left-color: rgba(125, 117, 164, 0.7);
}

.border-l-eva-purple-appt\/75 {
  border-left-color: rgba(125, 117, 164, 0.75);
}

.border-l-eva-purple-appt\/80 {
  border-left-color: rgba(125, 117, 164, 0.8);
}

.border-l-eva-purple-appt\/85 {
  border-left-color: rgba(125, 117, 164, 0.85);
}

.border-l-eva-purple-appt\/90 {
  border-left-color: rgba(125, 117, 164, 0.9);
}

.border-l-eva-purple-appt\/95 {
  border-left-color: rgba(125, 117, 164, 0.95);
}

.border-l-eva-red {
  --tw-border-opacity: 1;
  border-left-color: rgb(234 101 101 / var(--tw-border-opacity, 1));
}

.border-l-eva-red-appt {
  border-left-color: rgba(243, 63, 77, 1);
}

.border-l-eva-red-appt\/0 {
  border-left-color: rgba(243, 63, 77, 0);
}

.border-l-eva-red-appt\/10 {
  border-left-color: rgba(243, 63, 77, 0.1);
}

.border-l-eva-red-appt\/100 {
  border-left-color: rgba(243, 63, 77, 1);
}

.border-l-eva-red-appt\/15 {
  border-left-color: rgba(243, 63, 77, 0.15);
}

.border-l-eva-red-appt\/20 {
  border-left-color: rgba(243, 63, 77, 0.2);
}

.border-l-eva-red-appt\/25 {
  border-left-color: rgba(243, 63, 77, 0.25);
}

.border-l-eva-red-appt\/30 {
  border-left-color: rgba(243, 63, 77, 0.3);
}

.border-l-eva-red-appt\/35 {
  border-left-color: rgba(243, 63, 77, 0.35);
}

.border-l-eva-red-appt\/40 {
  border-left-color: rgba(243, 63, 77, 0.4);
}

.border-l-eva-red-appt\/45 {
  border-left-color: rgba(243, 63, 77, 0.45);
}

.border-l-eva-red-appt\/5 {
  border-left-color: rgba(243, 63, 77, 0.05);
}

.border-l-eva-red-appt\/50 {
  border-left-color: rgba(243, 63, 77, 0.5);
}

.border-l-eva-red-appt\/55 {
  border-left-color: rgba(243, 63, 77, 0.55);
}

.border-l-eva-red-appt\/60 {
  border-left-color: rgba(243, 63, 77, 0.6);
}

.border-l-eva-red-appt\/65 {
  border-left-color: rgba(243, 63, 77, 0.65);
}

.border-l-eva-red-appt\/70 {
  border-left-color: rgba(243, 63, 77, 0.7);
}

.border-l-eva-red-appt\/75 {
  border-left-color: rgba(243, 63, 77, 0.75);
}

.border-l-eva-red-appt\/80 {
  border-left-color: rgba(243, 63, 77, 0.8);
}

.border-l-eva-red-appt\/85 {
  border-left-color: rgba(243, 63, 77, 0.85);
}

.border-l-eva-red-appt\/90 {
  border-left-color: rgba(243, 63, 77, 0.9);
}

.border-l-eva-red-appt\/95 {
  border-left-color: rgba(243, 63, 77, 0.95);
}

.border-l-eva-red-orange-appt {
  border-left-color: rgba(217, 154, 118, 1);
}

.border-l-eva-red-orange-appt\/0 {
  border-left-color: rgba(217, 154, 118, 0);
}

.border-l-eva-red-orange-appt\/10 {
  border-left-color: rgba(217, 154, 118, 0.1);
}

.border-l-eva-red-orange-appt\/100 {
  border-left-color: rgba(217, 154, 118, 1);
}

.border-l-eva-red-orange-appt\/15 {
  border-left-color: rgba(217, 154, 118, 0.15);
}

.border-l-eva-red-orange-appt\/20 {
  border-left-color: rgba(217, 154, 118, 0.2);
}

.border-l-eva-red-orange-appt\/25 {
  border-left-color: rgba(217, 154, 118, 0.25);
}

.border-l-eva-red-orange-appt\/30 {
  border-left-color: rgba(217, 154, 118, 0.3);
}

.border-l-eva-red-orange-appt\/35 {
  border-left-color: rgba(217, 154, 118, 0.35);
}

.border-l-eva-red-orange-appt\/40 {
  border-left-color: rgba(217, 154, 118, 0.4);
}

.border-l-eva-red-orange-appt\/45 {
  border-left-color: rgba(217, 154, 118, 0.45);
}

.border-l-eva-red-orange-appt\/5 {
  border-left-color: rgba(217, 154, 118, 0.05);
}

.border-l-eva-red-orange-appt\/50 {
  border-left-color: rgba(217, 154, 118, 0.5);
}

.border-l-eva-red-orange-appt\/55 {
  border-left-color: rgba(217, 154, 118, 0.55);
}

.border-l-eva-red-orange-appt\/60 {
  border-left-color: rgba(217, 154, 118, 0.6);
}

.border-l-eva-red-orange-appt\/65 {
  border-left-color: rgba(217, 154, 118, 0.65);
}

.border-l-eva-red-orange-appt\/70 {
  border-left-color: rgba(217, 154, 118, 0.7);
}

.border-l-eva-red-orange-appt\/75 {
  border-left-color: rgba(217, 154, 118, 0.75);
}

.border-l-eva-red-orange-appt\/80 {
  border-left-color: rgba(217, 154, 118, 0.8);
}

.border-l-eva-red-orange-appt\/85 {
  border-left-color: rgba(217, 154, 118, 0.85);
}

.border-l-eva-red-orange-appt\/90 {
  border-left-color: rgba(217, 154, 118, 0.9);
}

.border-l-eva-red-orange-appt\/95 {
  border-left-color: rgba(217, 154, 118, 0.95);
}

.border-l-eva-red\/0 {
  border-left-color: rgb(234 101 101 / 0);
}

.border-l-eva-red\/10 {
  border-left-color: rgb(234 101 101 / 0.1);
}

.border-l-eva-red\/100 {
  border-left-color: rgb(234 101 101 / 1);
}

.border-l-eva-red\/15 {
  border-left-color: rgb(234 101 101 / 0.15);
}

.border-l-eva-red\/20 {
  border-left-color: rgb(234 101 101 / 0.2);
}

.border-l-eva-red\/25 {
  border-left-color: rgb(234 101 101 / 0.25);
}

.border-l-eva-red\/30 {
  border-left-color: rgb(234 101 101 / 0.3);
}

.border-l-eva-red\/35 {
  border-left-color: rgb(234 101 101 / 0.35);
}

.border-l-eva-red\/40 {
  border-left-color: rgb(234 101 101 / 0.4);
}

.border-l-eva-red\/45 {
  border-left-color: rgb(234 101 101 / 0.45);
}

.border-l-eva-red\/5 {
  border-left-color: rgb(234 101 101 / 0.05);
}

.border-l-eva-red\/50 {
  border-left-color: rgb(234 101 101 / 0.5);
}

.border-l-eva-red\/55 {
  border-left-color: rgb(234 101 101 / 0.55);
}

.border-l-eva-red\/60 {
  border-left-color: rgb(234 101 101 / 0.6);
}

.border-l-eva-red\/65 {
  border-left-color: rgb(234 101 101 / 0.65);
}

.border-l-eva-red\/70 {
  border-left-color: rgb(234 101 101 / 0.7);
}

.border-l-eva-red\/75 {
  border-left-color: rgb(234 101 101 / 0.75);
}

.border-l-eva-red\/80 {
  border-left-color: rgb(234 101 101 / 0.8);
}

.border-l-eva-red\/85 {
  border-left-color: rgb(234 101 101 / 0.85);
}

.border-l-eva-red\/90 {
  border-left-color: rgb(234 101 101 / 0.9);
}

.border-l-eva-red\/95 {
  border-left-color: rgb(234 101 101 / 0.95);
}

.border-l-eva-teal-appt {
  --tw-border-opacity: 1;
  border-left-color: rgba(22, 172, 151, var(--tw-border-opacity, 1));
}

.border-l-eva-teal-appt\/0 {
  border-left-color: rgba(22, 172, 151, 0);
}

.border-l-eva-teal-appt\/10 {
  border-left-color: rgba(22, 172, 151, 0.1);
}

.border-l-eva-teal-appt\/100 {
  border-left-color: rgba(22, 172, 151, 1);
}

.border-l-eva-teal-appt\/15 {
  border-left-color: rgba(22, 172, 151, 0.15);
}

.border-l-eva-teal-appt\/20 {
  border-left-color: rgba(22, 172, 151, 0.2);
}

.border-l-eva-teal-appt\/25 {
  border-left-color: rgba(22, 172, 151, 0.25);
}

.border-l-eva-teal-appt\/30 {
  border-left-color: rgba(22, 172, 151, 0.3);
}

.border-l-eva-teal-appt\/35 {
  border-left-color: rgba(22, 172, 151, 0.35);
}

.border-l-eva-teal-appt\/40 {
  border-left-color: rgba(22, 172, 151, 0.4);
}

.border-l-eva-teal-appt\/45 {
  border-left-color: rgba(22, 172, 151, 0.45);
}

.border-l-eva-teal-appt\/5 {
  border-left-color: rgba(22, 172, 151, 0.05);
}

.border-l-eva-teal-appt\/50 {
  border-left-color: rgba(22, 172, 151, 0.5);
}

.border-l-eva-teal-appt\/55 {
  border-left-color: rgba(22, 172, 151, 0.55);
}

.border-l-eva-teal-appt\/60 {
  border-left-color: rgba(22, 172, 151, 0.6);
}

.border-l-eva-teal-appt\/65 {
  border-left-color: rgba(22, 172, 151, 0.65);
}

.border-l-eva-teal-appt\/70 {
  border-left-color: rgba(22, 172, 151, 0.7);
}

.border-l-eva-teal-appt\/75 {
  border-left-color: rgba(22, 172, 151, 0.75);
}

.border-l-eva-teal-appt\/80 {
  border-left-color: rgba(22, 172, 151, 0.8);
}

.border-l-eva-teal-appt\/85 {
  border-left-color: rgba(22, 172, 151, 0.85);
}

.border-l-eva-teal-appt\/90 {
  border-left-color: rgba(22, 172, 151, 0.9);
}

.border-l-eva-teal-appt\/95 {
  border-left-color: rgba(22, 172, 151, 0.95);
}

.border-l-eva-yellow {
  --tw-border-opacity: 1;
  border-left-color: rgb(233 179 98 / var(--tw-border-opacity, 1));
}

.border-l-eva-yellow-appt {
  border-left-color: rgba(240, 226, 0, 1);
}

.border-l-eva-yellow-appt\/0 {
  border-left-color: rgba(240, 226, 0, 0);
}

.border-l-eva-yellow-appt\/10 {
  border-left-color: rgba(240, 226, 0, 0.1);
}

.border-l-eva-yellow-appt\/100 {
  border-left-color: rgba(240, 226, 0, 1);
}

.border-l-eva-yellow-appt\/15 {
  border-left-color: rgba(240, 226, 0, 0.15);
}

.border-l-eva-yellow-appt\/20 {
  border-left-color: rgba(240, 226, 0, 0.2);
}

.border-l-eva-yellow-appt\/25 {
  border-left-color: rgba(240, 226, 0, 0.25);
}

.border-l-eva-yellow-appt\/30 {
  border-left-color: rgba(240, 226, 0, 0.3);
}

.border-l-eva-yellow-appt\/35 {
  border-left-color: rgba(240, 226, 0, 0.35);
}

.border-l-eva-yellow-appt\/40 {
  border-left-color: rgba(240, 226, 0, 0.4);
}

.border-l-eva-yellow-appt\/45 {
  border-left-color: rgba(240, 226, 0, 0.45);
}

.border-l-eva-yellow-appt\/5 {
  border-left-color: rgba(240, 226, 0, 0.05);
}

.border-l-eva-yellow-appt\/50 {
  border-left-color: rgba(240, 226, 0, 0.5);
}

.border-l-eva-yellow-appt\/55 {
  border-left-color: rgba(240, 226, 0, 0.55);
}

.border-l-eva-yellow-appt\/60 {
  border-left-color: rgba(240, 226, 0, 0.6);
}

.border-l-eva-yellow-appt\/65 {
  border-left-color: rgba(240, 226, 0, 0.65);
}

.border-l-eva-yellow-appt\/70 {
  border-left-color: rgba(240, 226, 0, 0.7);
}

.border-l-eva-yellow-appt\/75 {
  border-left-color: rgba(240, 226, 0, 0.75);
}

.border-l-eva-yellow-appt\/80 {
  border-left-color: rgba(240, 226, 0, 0.8);
}

.border-l-eva-yellow-appt\/85 {
  border-left-color: rgba(240, 226, 0, 0.85);
}

.border-l-eva-yellow-appt\/90 {
  border-left-color: rgba(240, 226, 0, 0.9);
}

.border-l-eva-yellow-appt\/95 {
  border-left-color: rgba(240, 226, 0, 0.95);
}

.border-l-eva-yellow\/0 {
  border-left-color: rgb(233 179 98 / 0);
}

.border-l-eva-yellow\/10 {
  border-left-color: rgb(233 179 98 / 0.1);
}

.border-l-eva-yellow\/100 {
  border-left-color: rgb(233 179 98 / 1);
}

.border-l-eva-yellow\/15 {
  border-left-color: rgb(233 179 98 / 0.15);
}

.border-l-eva-yellow\/20 {
  border-left-color: rgb(233 179 98 / 0.2);
}

.border-l-eva-yellow\/25 {
  border-left-color: rgb(233 179 98 / 0.25);
}

.border-l-eva-yellow\/30 {
  border-left-color: rgb(233 179 98 / 0.3);
}

.border-l-eva-yellow\/35 {
  border-left-color: rgb(233 179 98 / 0.35);
}

.border-l-eva-yellow\/40 {
  border-left-color: rgb(233 179 98 / 0.4);
}

.border-l-eva-yellow\/45 {
  border-left-color: rgb(233 179 98 / 0.45);
}

.border-l-eva-yellow\/5 {
  border-left-color: rgb(233 179 98 / 0.05);
}

.border-l-eva-yellow\/50 {
  border-left-color: rgb(233 179 98 / 0.5);
}

.border-l-eva-yellow\/55 {
  border-left-color: rgb(233 179 98 / 0.55);
}

.border-l-eva-yellow\/60 {
  border-left-color: rgb(233 179 98 / 0.6);
}

.border-l-eva-yellow\/65 {
  border-left-color: rgb(233 179 98 / 0.65);
}

.border-l-eva-yellow\/70 {
  border-left-color: rgb(233 179 98 / 0.7);
}

.border-l-eva-yellow\/75 {
  border-left-color: rgb(233 179 98 / 0.75);
}

.border-l-eva-yellow\/80 {
  border-left-color: rgb(233 179 98 / 0.8);
}

.border-l-eva-yellow\/85 {
  border-left-color: rgb(233 179 98 / 0.85);
}

.border-l-eva-yellow\/90 {
  border-left-color: rgb(233 179 98 / 0.9);
}

.border-l-eva-yellow\/95 {
  border-left-color: rgb(233 179 98 / 0.95);
}

.border-l-gray-100 {
  --tw-border-opacity: 1;
  border-left-color: rgb(245 245 245 / var(--tw-border-opacity, 1));
}

.border-l-gray-100\/0 {
  border-left-color: rgb(245 245 245 / 0);
}

.border-l-gray-100\/10 {
  border-left-color: rgb(245 245 245 / 0.1);
}

.border-l-gray-100\/100 {
  border-left-color: rgb(245 245 245 / 1);
}

.border-l-gray-100\/15 {
  border-left-color: rgb(245 245 245 / 0.15);
}

.border-l-gray-100\/20 {
  border-left-color: rgb(245 245 245 / 0.2);
}

.border-l-gray-100\/25 {
  border-left-color: rgb(245 245 245 / 0.25);
}

.border-l-gray-100\/30 {
  border-left-color: rgb(245 245 245 / 0.3);
}

.border-l-gray-100\/35 {
  border-left-color: rgb(245 245 245 / 0.35);
}

.border-l-gray-100\/40 {
  border-left-color: rgb(245 245 245 / 0.4);
}

.border-l-gray-100\/45 {
  border-left-color: rgb(245 245 245 / 0.45);
}

.border-l-gray-100\/5 {
  border-left-color: rgb(245 245 245 / 0.05);
}

.border-l-gray-100\/50 {
  border-left-color: rgb(245 245 245 / 0.5);
}

.border-l-gray-100\/55 {
  border-left-color: rgb(245 245 245 / 0.55);
}

.border-l-gray-100\/60 {
  border-left-color: rgb(245 245 245 / 0.6);
}

.border-l-gray-100\/65 {
  border-left-color: rgb(245 245 245 / 0.65);
}

.border-l-gray-100\/70 {
  border-left-color: rgb(245 245 245 / 0.7);
}

.border-l-gray-100\/75 {
  border-left-color: rgb(245 245 245 / 0.75);
}

.border-l-gray-100\/80 {
  border-left-color: rgb(245 245 245 / 0.8);
}

.border-l-gray-100\/85 {
  border-left-color: rgb(245 245 245 / 0.85);
}

.border-l-gray-100\/90 {
  border-left-color: rgb(245 245 245 / 0.9);
}

.border-l-gray-100\/95 {
  border-left-color: rgb(245 245 245 / 0.95);
}

.border-l-gray-200 {
  --tw-border-opacity: 1;
  border-left-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
}

.border-l-gray-200\/0 {
  border-left-color: rgb(229 229 229 / 0);
}

.border-l-gray-200\/10 {
  border-left-color: rgb(229 229 229 / 0.1);
}

.border-l-gray-200\/100 {
  border-left-color: rgb(229 229 229 / 1);
}

.border-l-gray-200\/15 {
  border-left-color: rgb(229 229 229 / 0.15);
}

.border-l-gray-200\/20 {
  border-left-color: rgb(229 229 229 / 0.2);
}

.border-l-gray-200\/25 {
  border-left-color: rgb(229 229 229 / 0.25);
}

.border-l-gray-200\/30 {
  border-left-color: rgb(229 229 229 / 0.3);
}

.border-l-gray-200\/35 {
  border-left-color: rgb(229 229 229 / 0.35);
}

.border-l-gray-200\/40 {
  border-left-color: rgb(229 229 229 / 0.4);
}

.border-l-gray-200\/45 {
  border-left-color: rgb(229 229 229 / 0.45);
}

.border-l-gray-200\/5 {
  border-left-color: rgb(229 229 229 / 0.05);
}

.border-l-gray-200\/50 {
  border-left-color: rgb(229 229 229 / 0.5);
}

.border-l-gray-200\/55 {
  border-left-color: rgb(229 229 229 / 0.55);
}

.border-l-gray-200\/60 {
  border-left-color: rgb(229 229 229 / 0.6);
}

.border-l-gray-200\/65 {
  border-left-color: rgb(229 229 229 / 0.65);
}

.border-l-gray-200\/70 {
  border-left-color: rgb(229 229 229 / 0.7);
}

.border-l-gray-200\/75 {
  border-left-color: rgb(229 229 229 / 0.75);
}

.border-l-gray-200\/80 {
  border-left-color: rgb(229 229 229 / 0.8);
}

.border-l-gray-200\/85 {
  border-left-color: rgb(229 229 229 / 0.85);
}

.border-l-gray-200\/90 {
  border-left-color: rgb(229 229 229 / 0.9);
}

.border-l-gray-200\/95 {
  border-left-color: rgb(229 229 229 / 0.95);
}

.border-l-gray-300 {
  --tw-border-opacity: 1;
  border-left-color: rgb(212 212 212 / var(--tw-border-opacity, 1));
}

.border-l-gray-300\/0 {
  border-left-color: rgb(212 212 212 / 0);
}

.border-l-gray-300\/10 {
  border-left-color: rgb(212 212 212 / 0.1);
}

.border-l-gray-300\/100 {
  border-left-color: rgb(212 212 212 / 1);
}

.border-l-gray-300\/15 {
  border-left-color: rgb(212 212 212 / 0.15);
}

.border-l-gray-300\/20 {
  border-left-color: rgb(212 212 212 / 0.2);
}

.border-l-gray-300\/25 {
  border-left-color: rgb(212 212 212 / 0.25);
}

.border-l-gray-300\/30 {
  border-left-color: rgb(212 212 212 / 0.3);
}

.border-l-gray-300\/35 {
  border-left-color: rgb(212 212 212 / 0.35);
}

.border-l-gray-300\/40 {
  border-left-color: rgb(212 212 212 / 0.4);
}

.border-l-gray-300\/45 {
  border-left-color: rgb(212 212 212 / 0.45);
}

.border-l-gray-300\/5 {
  border-left-color: rgb(212 212 212 / 0.05);
}

.border-l-gray-300\/50 {
  border-left-color: rgb(212 212 212 / 0.5);
}

.border-l-gray-300\/55 {
  border-left-color: rgb(212 212 212 / 0.55);
}

.border-l-gray-300\/60 {
  border-left-color: rgb(212 212 212 / 0.6);
}

.border-l-gray-300\/65 {
  border-left-color: rgb(212 212 212 / 0.65);
}

.border-l-gray-300\/70 {
  border-left-color: rgb(212 212 212 / 0.7);
}

.border-l-gray-300\/75 {
  border-left-color: rgb(212 212 212 / 0.75);
}

.border-l-gray-300\/80 {
  border-left-color: rgb(212 212 212 / 0.8);
}

.border-l-gray-300\/85 {
  border-left-color: rgb(212 212 212 / 0.85);
}

.border-l-gray-300\/90 {
  border-left-color: rgb(212 212 212 / 0.9);
}

.border-l-gray-300\/95 {
  border-left-color: rgb(212 212 212 / 0.95);
}

.border-l-gray-400 {
  --tw-border-opacity: 1;
  border-left-color: rgb(163 163 163 / var(--tw-border-opacity, 1));
}

.border-l-gray-400\/0 {
  border-left-color: rgb(163 163 163 / 0);
}

.border-l-gray-400\/10 {
  border-left-color: rgb(163 163 163 / 0.1);
}

.border-l-gray-400\/100 {
  border-left-color: rgb(163 163 163 / 1);
}

.border-l-gray-400\/15 {
  border-left-color: rgb(163 163 163 / 0.15);
}

.border-l-gray-400\/20 {
  border-left-color: rgb(163 163 163 / 0.2);
}

.border-l-gray-400\/25 {
  border-left-color: rgb(163 163 163 / 0.25);
}

.border-l-gray-400\/30 {
  border-left-color: rgb(163 163 163 / 0.3);
}

.border-l-gray-400\/35 {
  border-left-color: rgb(163 163 163 / 0.35);
}

.border-l-gray-400\/40 {
  border-left-color: rgb(163 163 163 / 0.4);
}

.border-l-gray-400\/45 {
  border-left-color: rgb(163 163 163 / 0.45);
}

.border-l-gray-400\/5 {
  border-left-color: rgb(163 163 163 / 0.05);
}

.border-l-gray-400\/50 {
  border-left-color: rgb(163 163 163 / 0.5);
}

.border-l-gray-400\/55 {
  border-left-color: rgb(163 163 163 / 0.55);
}

.border-l-gray-400\/60 {
  border-left-color: rgb(163 163 163 / 0.6);
}

.border-l-gray-400\/65 {
  border-left-color: rgb(163 163 163 / 0.65);
}

.border-l-gray-400\/70 {
  border-left-color: rgb(163 163 163 / 0.7);
}

.border-l-gray-400\/75 {
  border-left-color: rgb(163 163 163 / 0.75);
}

.border-l-gray-400\/80 {
  border-left-color: rgb(163 163 163 / 0.8);
}

.border-l-gray-400\/85 {
  border-left-color: rgb(163 163 163 / 0.85);
}

.border-l-gray-400\/90 {
  border-left-color: rgb(163 163 163 / 0.9);
}

.border-l-gray-400\/95 {
  border-left-color: rgb(163 163 163 / 0.95);
}

.border-l-gray-50 {
  --tw-border-opacity: 1;
  border-left-color: rgb(250 250 250 / var(--tw-border-opacity, 1));
}

.border-l-gray-50\/0 {
  border-left-color: rgb(250 250 250 / 0);
}

.border-l-gray-50\/10 {
  border-left-color: rgb(250 250 250 / 0.1);
}

.border-l-gray-50\/100 {
  border-left-color: rgb(250 250 250 / 1);
}

.border-l-gray-50\/15 {
  border-left-color: rgb(250 250 250 / 0.15);
}

.border-l-gray-50\/20 {
  border-left-color: rgb(250 250 250 / 0.2);
}

.border-l-gray-50\/25 {
  border-left-color: rgb(250 250 250 / 0.25);
}

.border-l-gray-50\/30 {
  border-left-color: rgb(250 250 250 / 0.3);
}

.border-l-gray-50\/35 {
  border-left-color: rgb(250 250 250 / 0.35);
}

.border-l-gray-50\/40 {
  border-left-color: rgb(250 250 250 / 0.4);
}

.border-l-gray-50\/45 {
  border-left-color: rgb(250 250 250 / 0.45);
}

.border-l-gray-50\/5 {
  border-left-color: rgb(250 250 250 / 0.05);
}

.border-l-gray-50\/50 {
  border-left-color: rgb(250 250 250 / 0.5);
}

.border-l-gray-50\/55 {
  border-left-color: rgb(250 250 250 / 0.55);
}

.border-l-gray-50\/60 {
  border-left-color: rgb(250 250 250 / 0.6);
}

.border-l-gray-50\/65 {
  border-left-color: rgb(250 250 250 / 0.65);
}

.border-l-gray-50\/70 {
  border-left-color: rgb(250 250 250 / 0.7);
}

.border-l-gray-50\/75 {
  border-left-color: rgb(250 250 250 / 0.75);
}

.border-l-gray-50\/80 {
  border-left-color: rgb(250 250 250 / 0.8);
}

.border-l-gray-50\/85 {
  border-left-color: rgb(250 250 250 / 0.85);
}

.border-l-gray-50\/90 {
  border-left-color: rgb(250 250 250 / 0.9);
}

.border-l-gray-50\/95 {
  border-left-color: rgb(250 250 250 / 0.95);
}

.border-l-gray-500 {
  --tw-border-opacity: 1;
  border-left-color: rgb(115 115 115 / var(--tw-border-opacity, 1));
}

.border-l-gray-500\/0 {
  border-left-color: rgb(115 115 115 / 0);
}

.border-l-gray-500\/10 {
  border-left-color: rgb(115 115 115 / 0.1);
}

.border-l-gray-500\/100 {
  border-left-color: rgb(115 115 115 / 1);
}

.border-l-gray-500\/15 {
  border-left-color: rgb(115 115 115 / 0.15);
}

.border-l-gray-500\/20 {
  border-left-color: rgb(115 115 115 / 0.2);
}

.border-l-gray-500\/25 {
  border-left-color: rgb(115 115 115 / 0.25);
}

.border-l-gray-500\/30 {
  border-left-color: rgb(115 115 115 / 0.3);
}

.border-l-gray-500\/35 {
  border-left-color: rgb(115 115 115 / 0.35);
}

.border-l-gray-500\/40 {
  border-left-color: rgb(115 115 115 / 0.4);
}

.border-l-gray-500\/45 {
  border-left-color: rgb(115 115 115 / 0.45);
}

.border-l-gray-500\/5 {
  border-left-color: rgb(115 115 115 / 0.05);
}

.border-l-gray-500\/50 {
  border-left-color: rgb(115 115 115 / 0.5);
}

.border-l-gray-500\/55 {
  border-left-color: rgb(115 115 115 / 0.55);
}

.border-l-gray-500\/60 {
  border-left-color: rgb(115 115 115 / 0.6);
}

.border-l-gray-500\/65 {
  border-left-color: rgb(115 115 115 / 0.65);
}

.border-l-gray-500\/70 {
  border-left-color: rgb(115 115 115 / 0.7);
}

.border-l-gray-500\/75 {
  border-left-color: rgb(115 115 115 / 0.75);
}

.border-l-gray-500\/80 {
  border-left-color: rgb(115 115 115 / 0.8);
}

.border-l-gray-500\/85 {
  border-left-color: rgb(115 115 115 / 0.85);
}

.border-l-gray-500\/90 {
  border-left-color: rgb(115 115 115 / 0.9);
}

.border-l-gray-500\/95 {
  border-left-color: rgb(115 115 115 / 0.95);
}

.border-l-gray-600 {
  --tw-border-opacity: 1;
  border-left-color: rgb(82 82 82 / var(--tw-border-opacity, 1));
}

.border-l-gray-600\/0 {
  border-left-color: rgb(82 82 82 / 0);
}

.border-l-gray-600\/10 {
  border-left-color: rgb(82 82 82 / 0.1);
}

.border-l-gray-600\/100 {
  border-left-color: rgb(82 82 82 / 1);
}

.border-l-gray-600\/15 {
  border-left-color: rgb(82 82 82 / 0.15);
}

.border-l-gray-600\/20 {
  border-left-color: rgb(82 82 82 / 0.2);
}

.border-l-gray-600\/25 {
  border-left-color: rgb(82 82 82 / 0.25);
}

.border-l-gray-600\/30 {
  border-left-color: rgb(82 82 82 / 0.3);
}

.border-l-gray-600\/35 {
  border-left-color: rgb(82 82 82 / 0.35);
}

.border-l-gray-600\/40 {
  border-left-color: rgb(82 82 82 / 0.4);
}

.border-l-gray-600\/45 {
  border-left-color: rgb(82 82 82 / 0.45);
}

.border-l-gray-600\/5 {
  border-left-color: rgb(82 82 82 / 0.05);
}

.border-l-gray-600\/50 {
  border-left-color: rgb(82 82 82 / 0.5);
}

.border-l-gray-600\/55 {
  border-left-color: rgb(82 82 82 / 0.55);
}

.border-l-gray-600\/60 {
  border-left-color: rgb(82 82 82 / 0.6);
}

.border-l-gray-600\/65 {
  border-left-color: rgb(82 82 82 / 0.65);
}

.border-l-gray-600\/70 {
  border-left-color: rgb(82 82 82 / 0.7);
}

.border-l-gray-600\/75 {
  border-left-color: rgb(82 82 82 / 0.75);
}

.border-l-gray-600\/80 {
  border-left-color: rgb(82 82 82 / 0.8);
}

.border-l-gray-600\/85 {
  border-left-color: rgb(82 82 82 / 0.85);
}

.border-l-gray-600\/90 {
  border-left-color: rgb(82 82 82 / 0.9);
}

.border-l-gray-600\/95 {
  border-left-color: rgb(82 82 82 / 0.95);
}

.border-l-gray-700 {
  --tw-border-opacity: 1;
  border-left-color: rgb(64 64 64 / var(--tw-border-opacity, 1));
}

.border-l-gray-700\/0 {
  border-left-color: rgb(64 64 64 / 0);
}

.border-l-gray-700\/10 {
  border-left-color: rgb(64 64 64 / 0.1);
}

.border-l-gray-700\/100 {
  border-left-color: rgb(64 64 64 / 1);
}

.border-l-gray-700\/15 {
  border-left-color: rgb(64 64 64 / 0.15);
}

.border-l-gray-700\/20 {
  border-left-color: rgb(64 64 64 / 0.2);
}

.border-l-gray-700\/25 {
  border-left-color: rgb(64 64 64 / 0.25);
}

.border-l-gray-700\/30 {
  border-left-color: rgb(64 64 64 / 0.3);
}

.border-l-gray-700\/35 {
  border-left-color: rgb(64 64 64 / 0.35);
}

.border-l-gray-700\/40 {
  border-left-color: rgb(64 64 64 / 0.4);
}

.border-l-gray-700\/45 {
  border-left-color: rgb(64 64 64 / 0.45);
}

.border-l-gray-700\/5 {
  border-left-color: rgb(64 64 64 / 0.05);
}

.border-l-gray-700\/50 {
  border-left-color: rgb(64 64 64 / 0.5);
}

.border-l-gray-700\/55 {
  border-left-color: rgb(64 64 64 / 0.55);
}

.border-l-gray-700\/60 {
  border-left-color: rgb(64 64 64 / 0.6);
}

.border-l-gray-700\/65 {
  border-left-color: rgb(64 64 64 / 0.65);
}

.border-l-gray-700\/70 {
  border-left-color: rgb(64 64 64 / 0.7);
}

.border-l-gray-700\/75 {
  border-left-color: rgb(64 64 64 / 0.75);
}

.border-l-gray-700\/80 {
  border-left-color: rgb(64 64 64 / 0.8);
}

.border-l-gray-700\/85 {
  border-left-color: rgb(64 64 64 / 0.85);
}

.border-l-gray-700\/90 {
  border-left-color: rgb(64 64 64 / 0.9);
}

.border-l-gray-700\/95 {
  border-left-color: rgb(64 64 64 / 0.95);
}

.border-l-gray-800 {
  --tw-border-opacity: 1;
  border-left-color: rgb(38 38 38 / var(--tw-border-opacity, 1));
}

.border-l-gray-800\/0 {
  border-left-color: rgb(38 38 38 / 0);
}

.border-l-gray-800\/10 {
  border-left-color: rgb(38 38 38 / 0.1);
}

.border-l-gray-800\/100 {
  border-left-color: rgb(38 38 38 / 1);
}

.border-l-gray-800\/15 {
  border-left-color: rgb(38 38 38 / 0.15);
}

.border-l-gray-800\/20 {
  border-left-color: rgb(38 38 38 / 0.2);
}

.border-l-gray-800\/25 {
  border-left-color: rgb(38 38 38 / 0.25);
}

.border-l-gray-800\/30 {
  border-left-color: rgb(38 38 38 / 0.3);
}

.border-l-gray-800\/35 {
  border-left-color: rgb(38 38 38 / 0.35);
}

.border-l-gray-800\/40 {
  border-left-color: rgb(38 38 38 / 0.4);
}

.border-l-gray-800\/45 {
  border-left-color: rgb(38 38 38 / 0.45);
}

.border-l-gray-800\/5 {
  border-left-color: rgb(38 38 38 / 0.05);
}

.border-l-gray-800\/50 {
  border-left-color: rgb(38 38 38 / 0.5);
}

.border-l-gray-800\/55 {
  border-left-color: rgb(38 38 38 / 0.55);
}

.border-l-gray-800\/60 {
  border-left-color: rgb(38 38 38 / 0.6);
}

.border-l-gray-800\/65 {
  border-left-color: rgb(38 38 38 / 0.65);
}

.border-l-gray-800\/70 {
  border-left-color: rgb(38 38 38 / 0.7);
}

.border-l-gray-800\/75 {
  border-left-color: rgb(38 38 38 / 0.75);
}

.border-l-gray-800\/80 {
  border-left-color: rgb(38 38 38 / 0.8);
}

.border-l-gray-800\/85 {
  border-left-color: rgb(38 38 38 / 0.85);
}

.border-l-gray-800\/90 {
  border-left-color: rgb(38 38 38 / 0.9);
}

.border-l-gray-800\/95 {
  border-left-color: rgb(38 38 38 / 0.95);
}

.border-l-gray-900 {
  --tw-border-opacity: 1;
  border-left-color: rgb(23 23 23 / var(--tw-border-opacity, 1));
}

.border-l-gray-900\/0 {
  border-left-color: rgb(23 23 23 / 0);
}

.border-l-gray-900\/10 {
  border-left-color: rgb(23 23 23 / 0.1);
}

.border-l-gray-900\/100 {
  border-left-color: rgb(23 23 23 / 1);
}

.border-l-gray-900\/15 {
  border-left-color: rgb(23 23 23 / 0.15);
}

.border-l-gray-900\/20 {
  border-left-color: rgb(23 23 23 / 0.2);
}

.border-l-gray-900\/25 {
  border-left-color: rgb(23 23 23 / 0.25);
}

.border-l-gray-900\/30 {
  border-left-color: rgb(23 23 23 / 0.3);
}

.border-l-gray-900\/35 {
  border-left-color: rgb(23 23 23 / 0.35);
}

.border-l-gray-900\/40 {
  border-left-color: rgb(23 23 23 / 0.4);
}

.border-l-gray-900\/45 {
  border-left-color: rgb(23 23 23 / 0.45);
}

.border-l-gray-900\/5 {
  border-left-color: rgb(23 23 23 / 0.05);
}

.border-l-gray-900\/50 {
  border-left-color: rgb(23 23 23 / 0.5);
}

.border-l-gray-900\/55 {
  border-left-color: rgb(23 23 23 / 0.55);
}

.border-l-gray-900\/60 {
  border-left-color: rgb(23 23 23 / 0.6);
}

.border-l-gray-900\/65 {
  border-left-color: rgb(23 23 23 / 0.65);
}

.border-l-gray-900\/70 {
  border-left-color: rgb(23 23 23 / 0.7);
}

.border-l-gray-900\/75 {
  border-left-color: rgb(23 23 23 / 0.75);
}

.border-l-gray-900\/80 {
  border-left-color: rgb(23 23 23 / 0.8);
}

.border-l-gray-900\/85 {
  border-left-color: rgb(23 23 23 / 0.85);
}

.border-l-gray-900\/90 {
  border-left-color: rgb(23 23 23 / 0.9);
}

.border-l-gray-900\/95 {
  border-left-color: rgb(23 23 23 / 0.95);
}

.border-l-gray-950 {
  --tw-border-opacity: 1;
  border-left-color: rgb(10 10 10 / var(--tw-border-opacity, 1));
}

.border-l-gray-950\/0 {
  border-left-color: rgb(10 10 10 / 0);
}

.border-l-gray-950\/10 {
  border-left-color: rgb(10 10 10 / 0.1);
}

.border-l-gray-950\/100 {
  border-left-color: rgb(10 10 10 / 1);
}

.border-l-gray-950\/15 {
  border-left-color: rgb(10 10 10 / 0.15);
}

.border-l-gray-950\/20 {
  border-left-color: rgb(10 10 10 / 0.2);
}

.border-l-gray-950\/25 {
  border-left-color: rgb(10 10 10 / 0.25);
}

.border-l-gray-950\/30 {
  border-left-color: rgb(10 10 10 / 0.3);
}

.border-l-gray-950\/35 {
  border-left-color: rgb(10 10 10 / 0.35);
}

.border-l-gray-950\/40 {
  border-left-color: rgb(10 10 10 / 0.4);
}

.border-l-gray-950\/45 {
  border-left-color: rgb(10 10 10 / 0.45);
}

.border-l-gray-950\/5 {
  border-left-color: rgb(10 10 10 / 0.05);
}

.border-l-gray-950\/50 {
  border-left-color: rgb(10 10 10 / 0.5);
}

.border-l-gray-950\/55 {
  border-left-color: rgb(10 10 10 / 0.55);
}

.border-l-gray-950\/60 {
  border-left-color: rgb(10 10 10 / 0.6);
}

.border-l-gray-950\/65 {
  border-left-color: rgb(10 10 10 / 0.65);
}

.border-l-gray-950\/70 {
  border-left-color: rgb(10 10 10 / 0.7);
}

.border-l-gray-950\/75 {
  border-left-color: rgb(10 10 10 / 0.75);
}

.border-l-gray-950\/80 {
  border-left-color: rgb(10 10 10 / 0.8);
}

.border-l-gray-950\/85 {
  border-left-color: rgb(10 10 10 / 0.85);
}

.border-l-gray-950\/90 {
  border-left-color: rgb(10 10 10 / 0.9);
}

.border-l-gray-950\/95 {
  border-left-color: rgb(10 10 10 / 0.95);
}

.border-l-green-100 {
  --tw-border-opacity: 1;
  border-left-color: rgb(220 252 231 / var(--tw-border-opacity, 1));
}

.border-l-green-100\/0 {
  border-left-color: rgb(220 252 231 / 0);
}

.border-l-green-100\/10 {
  border-left-color: rgb(220 252 231 / 0.1);
}

.border-l-green-100\/100 {
  border-left-color: rgb(220 252 231 / 1);
}

.border-l-green-100\/15 {
  border-left-color: rgb(220 252 231 / 0.15);
}

.border-l-green-100\/20 {
  border-left-color: rgb(220 252 231 / 0.2);
}

.border-l-green-100\/25 {
  border-left-color: rgb(220 252 231 / 0.25);
}

.border-l-green-100\/30 {
  border-left-color: rgb(220 252 231 / 0.3);
}

.border-l-green-100\/35 {
  border-left-color: rgb(220 252 231 / 0.35);
}

.border-l-green-100\/40 {
  border-left-color: rgb(220 252 231 / 0.4);
}

.border-l-green-100\/45 {
  border-left-color: rgb(220 252 231 / 0.45);
}

.border-l-green-100\/5 {
  border-left-color: rgb(220 252 231 / 0.05);
}

.border-l-green-100\/50 {
  border-left-color: rgb(220 252 231 / 0.5);
}

.border-l-green-100\/55 {
  border-left-color: rgb(220 252 231 / 0.55);
}

.border-l-green-100\/60 {
  border-left-color: rgb(220 252 231 / 0.6);
}

.border-l-green-100\/65 {
  border-left-color: rgb(220 252 231 / 0.65);
}

.border-l-green-100\/70 {
  border-left-color: rgb(220 252 231 / 0.7);
}

.border-l-green-100\/75 {
  border-left-color: rgb(220 252 231 / 0.75);
}

.border-l-green-100\/80 {
  border-left-color: rgb(220 252 231 / 0.8);
}

.border-l-green-100\/85 {
  border-left-color: rgb(220 252 231 / 0.85);
}

.border-l-green-100\/90 {
  border-left-color: rgb(220 252 231 / 0.9);
}

.border-l-green-100\/95 {
  border-left-color: rgb(220 252 231 / 0.95);
}

.border-l-green-200 {
  --tw-border-opacity: 1;
  border-left-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
}

.border-l-green-200\/0 {
  border-left-color: rgb(187 247 208 / 0);
}

.border-l-green-200\/10 {
  border-left-color: rgb(187 247 208 / 0.1);
}

.border-l-green-200\/100 {
  border-left-color: rgb(187 247 208 / 1);
}

.border-l-green-200\/15 {
  border-left-color: rgb(187 247 208 / 0.15);
}

.border-l-green-200\/20 {
  border-left-color: rgb(187 247 208 / 0.2);
}

.border-l-green-200\/25 {
  border-left-color: rgb(187 247 208 / 0.25);
}

.border-l-green-200\/30 {
  border-left-color: rgb(187 247 208 / 0.3);
}

.border-l-green-200\/35 {
  border-left-color: rgb(187 247 208 / 0.35);
}

.border-l-green-200\/40 {
  border-left-color: rgb(187 247 208 / 0.4);
}

.border-l-green-200\/45 {
  border-left-color: rgb(187 247 208 / 0.45);
}

.border-l-green-200\/5 {
  border-left-color: rgb(187 247 208 / 0.05);
}

.border-l-green-200\/50 {
  border-left-color: rgb(187 247 208 / 0.5);
}

.border-l-green-200\/55 {
  border-left-color: rgb(187 247 208 / 0.55);
}

.border-l-green-200\/60 {
  border-left-color: rgb(187 247 208 / 0.6);
}

.border-l-green-200\/65 {
  border-left-color: rgb(187 247 208 / 0.65);
}

.border-l-green-200\/70 {
  border-left-color: rgb(187 247 208 / 0.7);
}

.border-l-green-200\/75 {
  border-left-color: rgb(187 247 208 / 0.75);
}

.border-l-green-200\/80 {
  border-left-color: rgb(187 247 208 / 0.8);
}

.border-l-green-200\/85 {
  border-left-color: rgb(187 247 208 / 0.85);
}

.border-l-green-200\/90 {
  border-left-color: rgb(187 247 208 / 0.9);
}

.border-l-green-200\/95 {
  border-left-color: rgb(187 247 208 / 0.95);
}

.border-l-green-300 {
  --tw-border-opacity: 1;
  border-left-color: rgb(134 239 172 / var(--tw-border-opacity, 1));
}

.border-l-green-300\/0 {
  border-left-color: rgb(134 239 172 / 0);
}

.border-l-green-300\/10 {
  border-left-color: rgb(134 239 172 / 0.1);
}

.border-l-green-300\/100 {
  border-left-color: rgb(134 239 172 / 1);
}

.border-l-green-300\/15 {
  border-left-color: rgb(134 239 172 / 0.15);
}

.border-l-green-300\/20 {
  border-left-color: rgb(134 239 172 / 0.2);
}

.border-l-green-300\/25 {
  border-left-color: rgb(134 239 172 / 0.25);
}

.border-l-green-300\/30 {
  border-left-color: rgb(134 239 172 / 0.3);
}

.border-l-green-300\/35 {
  border-left-color: rgb(134 239 172 / 0.35);
}

.border-l-green-300\/40 {
  border-left-color: rgb(134 239 172 / 0.4);
}

.border-l-green-300\/45 {
  border-left-color: rgb(134 239 172 / 0.45);
}

.border-l-green-300\/5 {
  border-left-color: rgb(134 239 172 / 0.05);
}

.border-l-green-300\/50 {
  border-left-color: rgb(134 239 172 / 0.5);
}

.border-l-green-300\/55 {
  border-left-color: rgb(134 239 172 / 0.55);
}

.border-l-green-300\/60 {
  border-left-color: rgb(134 239 172 / 0.6);
}

.border-l-green-300\/65 {
  border-left-color: rgb(134 239 172 / 0.65);
}

.border-l-green-300\/70 {
  border-left-color: rgb(134 239 172 / 0.7);
}

.border-l-green-300\/75 {
  border-left-color: rgb(134 239 172 / 0.75);
}

.border-l-green-300\/80 {
  border-left-color: rgb(134 239 172 / 0.8);
}

.border-l-green-300\/85 {
  border-left-color: rgb(134 239 172 / 0.85);
}

.border-l-green-300\/90 {
  border-left-color: rgb(134 239 172 / 0.9);
}

.border-l-green-300\/95 {
  border-left-color: rgb(134 239 172 / 0.95);
}

.border-l-green-400 {
  --tw-border-opacity: 1;
  border-left-color: rgb(74 222 128 / var(--tw-border-opacity, 1));
}

.border-l-green-400\/0 {
  border-left-color: rgb(74 222 128 / 0);
}

.border-l-green-400\/10 {
  border-left-color: rgb(74 222 128 / 0.1);
}

.border-l-green-400\/100 {
  border-left-color: rgb(74 222 128 / 1);
}

.border-l-green-400\/15 {
  border-left-color: rgb(74 222 128 / 0.15);
}

.border-l-green-400\/20 {
  border-left-color: rgb(74 222 128 / 0.2);
}

.border-l-green-400\/25 {
  border-left-color: rgb(74 222 128 / 0.25);
}

.border-l-green-400\/30 {
  border-left-color: rgb(74 222 128 / 0.3);
}

.border-l-green-400\/35 {
  border-left-color: rgb(74 222 128 / 0.35);
}

.border-l-green-400\/40 {
  border-left-color: rgb(74 222 128 / 0.4);
}

.border-l-green-400\/45 {
  border-left-color: rgb(74 222 128 / 0.45);
}

.border-l-green-400\/5 {
  border-left-color: rgb(74 222 128 / 0.05);
}

.border-l-green-400\/50 {
  border-left-color: rgb(74 222 128 / 0.5);
}

.border-l-green-400\/55 {
  border-left-color: rgb(74 222 128 / 0.55);
}

.border-l-green-400\/60 {
  border-left-color: rgb(74 222 128 / 0.6);
}

.border-l-green-400\/65 {
  border-left-color: rgb(74 222 128 / 0.65);
}

.border-l-green-400\/70 {
  border-left-color: rgb(74 222 128 / 0.7);
}

.border-l-green-400\/75 {
  border-left-color: rgb(74 222 128 / 0.75);
}

.border-l-green-400\/80 {
  border-left-color: rgb(74 222 128 / 0.8);
}

.border-l-green-400\/85 {
  border-left-color: rgb(74 222 128 / 0.85);
}

.border-l-green-400\/90 {
  border-left-color: rgb(74 222 128 / 0.9);
}

.border-l-green-400\/95 {
  border-left-color: rgb(74 222 128 / 0.95);
}

.border-l-green-50 {
  --tw-border-opacity: 1;
  border-left-color: rgb(240 253 244 / var(--tw-border-opacity, 1));
}

.border-l-green-50\/0 {
  border-left-color: rgb(240 253 244 / 0);
}

.border-l-green-50\/10 {
  border-left-color: rgb(240 253 244 / 0.1);
}

.border-l-green-50\/100 {
  border-left-color: rgb(240 253 244 / 1);
}

.border-l-green-50\/15 {
  border-left-color: rgb(240 253 244 / 0.15);
}

.border-l-green-50\/20 {
  border-left-color: rgb(240 253 244 / 0.2);
}

.border-l-green-50\/25 {
  border-left-color: rgb(240 253 244 / 0.25);
}

.border-l-green-50\/30 {
  border-left-color: rgb(240 253 244 / 0.3);
}

.border-l-green-50\/35 {
  border-left-color: rgb(240 253 244 / 0.35);
}

.border-l-green-50\/40 {
  border-left-color: rgb(240 253 244 / 0.4);
}

.border-l-green-50\/45 {
  border-left-color: rgb(240 253 244 / 0.45);
}

.border-l-green-50\/5 {
  border-left-color: rgb(240 253 244 / 0.05);
}

.border-l-green-50\/50 {
  border-left-color: rgb(240 253 244 / 0.5);
}

.border-l-green-50\/55 {
  border-left-color: rgb(240 253 244 / 0.55);
}

.border-l-green-50\/60 {
  border-left-color: rgb(240 253 244 / 0.6);
}

.border-l-green-50\/65 {
  border-left-color: rgb(240 253 244 / 0.65);
}

.border-l-green-50\/70 {
  border-left-color: rgb(240 253 244 / 0.7);
}

.border-l-green-50\/75 {
  border-left-color: rgb(240 253 244 / 0.75);
}

.border-l-green-50\/80 {
  border-left-color: rgb(240 253 244 / 0.8);
}

.border-l-green-50\/85 {
  border-left-color: rgb(240 253 244 / 0.85);
}

.border-l-green-50\/90 {
  border-left-color: rgb(240 253 244 / 0.9);
}

.border-l-green-50\/95 {
  border-left-color: rgb(240 253 244 / 0.95);
}

.border-l-green-500 {
  --tw-border-opacity: 1;
  border-left-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
}

.border-l-green-500\/0 {
  border-left-color: rgb(34 197 94 / 0);
}

.border-l-green-500\/10 {
  border-left-color: rgb(34 197 94 / 0.1);
}

.border-l-green-500\/100 {
  border-left-color: rgb(34 197 94 / 1);
}

.border-l-green-500\/15 {
  border-left-color: rgb(34 197 94 / 0.15);
}

.border-l-green-500\/20 {
  border-left-color: rgb(34 197 94 / 0.2);
}

.border-l-green-500\/25 {
  border-left-color: rgb(34 197 94 / 0.25);
}

.border-l-green-500\/30 {
  border-left-color: rgb(34 197 94 / 0.3);
}

.border-l-green-500\/35 {
  border-left-color: rgb(34 197 94 / 0.35);
}

.border-l-green-500\/40 {
  border-left-color: rgb(34 197 94 / 0.4);
}

.border-l-green-500\/45 {
  border-left-color: rgb(34 197 94 / 0.45);
}

.border-l-green-500\/5 {
  border-left-color: rgb(34 197 94 / 0.05);
}

.border-l-green-500\/50 {
  border-left-color: rgb(34 197 94 / 0.5);
}

.border-l-green-500\/55 {
  border-left-color: rgb(34 197 94 / 0.55);
}

.border-l-green-500\/60 {
  border-left-color: rgb(34 197 94 / 0.6);
}

.border-l-green-500\/65 {
  border-left-color: rgb(34 197 94 / 0.65);
}

.border-l-green-500\/70 {
  border-left-color: rgb(34 197 94 / 0.7);
}

.border-l-green-500\/75 {
  border-left-color: rgb(34 197 94 / 0.75);
}

.border-l-green-500\/80 {
  border-left-color: rgb(34 197 94 / 0.8);
}

.border-l-green-500\/85 {
  border-left-color: rgb(34 197 94 / 0.85);
}

.border-l-green-500\/90 {
  border-left-color: rgb(34 197 94 / 0.9);
}

.border-l-green-500\/95 {
  border-left-color: rgb(34 197 94 / 0.95);
}

.border-l-green-600 {
  --tw-border-opacity: 1;
  border-left-color: rgb(22 163 74 / var(--tw-border-opacity, 1));
}

.border-l-green-600\/0 {
  border-left-color: rgb(22 163 74 / 0);
}

.border-l-green-600\/10 {
  border-left-color: rgb(22 163 74 / 0.1);
}

.border-l-green-600\/100 {
  border-left-color: rgb(22 163 74 / 1);
}

.border-l-green-600\/15 {
  border-left-color: rgb(22 163 74 / 0.15);
}

.border-l-green-600\/20 {
  border-left-color: rgb(22 163 74 / 0.2);
}

.border-l-green-600\/25 {
  border-left-color: rgb(22 163 74 / 0.25);
}

.border-l-green-600\/30 {
  border-left-color: rgb(22 163 74 / 0.3);
}

.border-l-green-600\/35 {
  border-left-color: rgb(22 163 74 / 0.35);
}

.border-l-green-600\/40 {
  border-left-color: rgb(22 163 74 / 0.4);
}

.border-l-green-600\/45 {
  border-left-color: rgb(22 163 74 / 0.45);
}

.border-l-green-600\/5 {
  border-left-color: rgb(22 163 74 / 0.05);
}

.border-l-green-600\/50 {
  border-left-color: rgb(22 163 74 / 0.5);
}

.border-l-green-600\/55 {
  border-left-color: rgb(22 163 74 / 0.55);
}

.border-l-green-600\/60 {
  border-left-color: rgb(22 163 74 / 0.6);
}

.border-l-green-600\/65 {
  border-left-color: rgb(22 163 74 / 0.65);
}

.border-l-green-600\/70 {
  border-left-color: rgb(22 163 74 / 0.7);
}

.border-l-green-600\/75 {
  border-left-color: rgb(22 163 74 / 0.75);
}

.border-l-green-600\/80 {
  border-left-color: rgb(22 163 74 / 0.8);
}

.border-l-green-600\/85 {
  border-left-color: rgb(22 163 74 / 0.85);
}

.border-l-green-600\/90 {
  border-left-color: rgb(22 163 74 / 0.9);
}

.border-l-green-600\/95 {
  border-left-color: rgb(22 163 74 / 0.95);
}

.border-l-green-700 {
  --tw-border-opacity: 1;
  border-left-color: rgb(21 128 61 / var(--tw-border-opacity, 1));
}

.border-l-green-700\/0 {
  border-left-color: rgb(21 128 61 / 0);
}

.border-l-green-700\/10 {
  border-left-color: rgb(21 128 61 / 0.1);
}

.border-l-green-700\/100 {
  border-left-color: rgb(21 128 61 / 1);
}

.border-l-green-700\/15 {
  border-left-color: rgb(21 128 61 / 0.15);
}

.border-l-green-700\/20 {
  border-left-color: rgb(21 128 61 / 0.2);
}

.border-l-green-700\/25 {
  border-left-color: rgb(21 128 61 / 0.25);
}

.border-l-green-700\/30 {
  border-left-color: rgb(21 128 61 / 0.3);
}

.border-l-green-700\/35 {
  border-left-color: rgb(21 128 61 / 0.35);
}

.border-l-green-700\/40 {
  border-left-color: rgb(21 128 61 / 0.4);
}

.border-l-green-700\/45 {
  border-left-color: rgb(21 128 61 / 0.45);
}

.border-l-green-700\/5 {
  border-left-color: rgb(21 128 61 / 0.05);
}

.border-l-green-700\/50 {
  border-left-color: rgb(21 128 61 / 0.5);
}

.border-l-green-700\/55 {
  border-left-color: rgb(21 128 61 / 0.55);
}

.border-l-green-700\/60 {
  border-left-color: rgb(21 128 61 / 0.6);
}

.border-l-green-700\/65 {
  border-left-color: rgb(21 128 61 / 0.65);
}

.border-l-green-700\/70 {
  border-left-color: rgb(21 128 61 / 0.7);
}

.border-l-green-700\/75 {
  border-left-color: rgb(21 128 61 / 0.75);
}

.border-l-green-700\/80 {
  border-left-color: rgb(21 128 61 / 0.8);
}

.border-l-green-700\/85 {
  border-left-color: rgb(21 128 61 / 0.85);
}

.border-l-green-700\/90 {
  border-left-color: rgb(21 128 61 / 0.9);
}

.border-l-green-700\/95 {
  border-left-color: rgb(21 128 61 / 0.95);
}

.border-l-green-800 {
  --tw-border-opacity: 1;
  border-left-color: rgb(22 101 52 / var(--tw-border-opacity, 1));
}

.border-l-green-800\/0 {
  border-left-color: rgb(22 101 52 / 0);
}

.border-l-green-800\/10 {
  border-left-color: rgb(22 101 52 / 0.1);
}

.border-l-green-800\/100 {
  border-left-color: rgb(22 101 52 / 1);
}

.border-l-green-800\/15 {
  border-left-color: rgb(22 101 52 / 0.15);
}

.border-l-green-800\/20 {
  border-left-color: rgb(22 101 52 / 0.2);
}

.border-l-green-800\/25 {
  border-left-color: rgb(22 101 52 / 0.25);
}

.border-l-green-800\/30 {
  border-left-color: rgb(22 101 52 / 0.3);
}

.border-l-green-800\/35 {
  border-left-color: rgb(22 101 52 / 0.35);
}

.border-l-green-800\/40 {
  border-left-color: rgb(22 101 52 / 0.4);
}

.border-l-green-800\/45 {
  border-left-color: rgb(22 101 52 / 0.45);
}

.border-l-green-800\/5 {
  border-left-color: rgb(22 101 52 / 0.05);
}

.border-l-green-800\/50 {
  border-left-color: rgb(22 101 52 / 0.5);
}

.border-l-green-800\/55 {
  border-left-color: rgb(22 101 52 / 0.55);
}

.border-l-green-800\/60 {
  border-left-color: rgb(22 101 52 / 0.6);
}

.border-l-green-800\/65 {
  border-left-color: rgb(22 101 52 / 0.65);
}

.border-l-green-800\/70 {
  border-left-color: rgb(22 101 52 / 0.7);
}

.border-l-green-800\/75 {
  border-left-color: rgb(22 101 52 / 0.75);
}

.border-l-green-800\/80 {
  border-left-color: rgb(22 101 52 / 0.8);
}

.border-l-green-800\/85 {
  border-left-color: rgb(22 101 52 / 0.85);
}

.border-l-green-800\/90 {
  border-left-color: rgb(22 101 52 / 0.9);
}

.border-l-green-800\/95 {
  border-left-color: rgb(22 101 52 / 0.95);
}

.border-l-green-900 {
  --tw-border-opacity: 1;
  border-left-color: rgb(20 83 45 / var(--tw-border-opacity, 1));
}

.border-l-green-900\/0 {
  border-left-color: rgb(20 83 45 / 0);
}

.border-l-green-900\/10 {
  border-left-color: rgb(20 83 45 / 0.1);
}

.border-l-green-900\/100 {
  border-left-color: rgb(20 83 45 / 1);
}

.border-l-green-900\/15 {
  border-left-color: rgb(20 83 45 / 0.15);
}

.border-l-green-900\/20 {
  border-left-color: rgb(20 83 45 / 0.2);
}

.border-l-green-900\/25 {
  border-left-color: rgb(20 83 45 / 0.25);
}

.border-l-green-900\/30 {
  border-left-color: rgb(20 83 45 / 0.3);
}

.border-l-green-900\/35 {
  border-left-color: rgb(20 83 45 / 0.35);
}

.border-l-green-900\/40 {
  border-left-color: rgb(20 83 45 / 0.4);
}

.border-l-green-900\/45 {
  border-left-color: rgb(20 83 45 / 0.45);
}

.border-l-green-900\/5 {
  border-left-color: rgb(20 83 45 / 0.05);
}

.border-l-green-900\/50 {
  border-left-color: rgb(20 83 45 / 0.5);
}

.border-l-green-900\/55 {
  border-left-color: rgb(20 83 45 / 0.55);
}

.border-l-green-900\/60 {
  border-left-color: rgb(20 83 45 / 0.6);
}

.border-l-green-900\/65 {
  border-left-color: rgb(20 83 45 / 0.65);
}

.border-l-green-900\/70 {
  border-left-color: rgb(20 83 45 / 0.7);
}

.border-l-green-900\/75 {
  border-left-color: rgb(20 83 45 / 0.75);
}

.border-l-green-900\/80 {
  border-left-color: rgb(20 83 45 / 0.8);
}

.border-l-green-900\/85 {
  border-left-color: rgb(20 83 45 / 0.85);
}

.border-l-green-900\/90 {
  border-left-color: rgb(20 83 45 / 0.9);
}

.border-l-green-900\/95 {
  border-left-color: rgb(20 83 45 / 0.95);
}

.border-l-green-950 {
  --tw-border-opacity: 1;
  border-left-color: rgb(5 46 22 / var(--tw-border-opacity, 1));
}

.border-l-green-950\/0 {
  border-left-color: rgb(5 46 22 / 0);
}

.border-l-green-950\/10 {
  border-left-color: rgb(5 46 22 / 0.1);
}

.border-l-green-950\/100 {
  border-left-color: rgb(5 46 22 / 1);
}

.border-l-green-950\/15 {
  border-left-color: rgb(5 46 22 / 0.15);
}

.border-l-green-950\/20 {
  border-left-color: rgb(5 46 22 / 0.2);
}

.border-l-green-950\/25 {
  border-left-color: rgb(5 46 22 / 0.25);
}

.border-l-green-950\/30 {
  border-left-color: rgb(5 46 22 / 0.3);
}

.border-l-green-950\/35 {
  border-left-color: rgb(5 46 22 / 0.35);
}

.border-l-green-950\/40 {
  border-left-color: rgb(5 46 22 / 0.4);
}

.border-l-green-950\/45 {
  border-left-color: rgb(5 46 22 / 0.45);
}

.border-l-green-950\/5 {
  border-left-color: rgb(5 46 22 / 0.05);
}

.border-l-green-950\/50 {
  border-left-color: rgb(5 46 22 / 0.5);
}

.border-l-green-950\/55 {
  border-left-color: rgb(5 46 22 / 0.55);
}

.border-l-green-950\/60 {
  border-left-color: rgb(5 46 22 / 0.6);
}

.border-l-green-950\/65 {
  border-left-color: rgb(5 46 22 / 0.65);
}

.border-l-green-950\/70 {
  border-left-color: rgb(5 46 22 / 0.7);
}

.border-l-green-950\/75 {
  border-left-color: rgb(5 46 22 / 0.75);
}

.border-l-green-950\/80 {
  border-left-color: rgb(5 46 22 / 0.8);
}

.border-l-green-950\/85 {
  border-left-color: rgb(5 46 22 / 0.85);
}

.border-l-green-950\/90 {
  border-left-color: rgb(5 46 22 / 0.9);
}

.border-l-green-950\/95 {
  border-left-color: rgb(5 46 22 / 0.95);
}

.border-l-red-100 {
  --tw-border-opacity: 1;
  border-left-color: rgb(254 226 226 / var(--tw-border-opacity, 1));
}

.border-l-red-100\/0 {
  border-left-color: rgb(254 226 226 / 0);
}

.border-l-red-100\/10 {
  border-left-color: rgb(254 226 226 / 0.1);
}

.border-l-red-100\/100 {
  border-left-color: rgb(254 226 226 / 1);
}

.border-l-red-100\/15 {
  border-left-color: rgb(254 226 226 / 0.15);
}

.border-l-red-100\/20 {
  border-left-color: rgb(254 226 226 / 0.2);
}

.border-l-red-100\/25 {
  border-left-color: rgb(254 226 226 / 0.25);
}

.border-l-red-100\/30 {
  border-left-color: rgb(254 226 226 / 0.3);
}

.border-l-red-100\/35 {
  border-left-color: rgb(254 226 226 / 0.35);
}

.border-l-red-100\/40 {
  border-left-color: rgb(254 226 226 / 0.4);
}

.border-l-red-100\/45 {
  border-left-color: rgb(254 226 226 / 0.45);
}

.border-l-red-100\/5 {
  border-left-color: rgb(254 226 226 / 0.05);
}

.border-l-red-100\/50 {
  border-left-color: rgb(254 226 226 / 0.5);
}

.border-l-red-100\/55 {
  border-left-color: rgb(254 226 226 / 0.55);
}

.border-l-red-100\/60 {
  border-left-color: rgb(254 226 226 / 0.6);
}

.border-l-red-100\/65 {
  border-left-color: rgb(254 226 226 / 0.65);
}

.border-l-red-100\/70 {
  border-left-color: rgb(254 226 226 / 0.7);
}

.border-l-red-100\/75 {
  border-left-color: rgb(254 226 226 / 0.75);
}

.border-l-red-100\/80 {
  border-left-color: rgb(254 226 226 / 0.8);
}

.border-l-red-100\/85 {
  border-left-color: rgb(254 226 226 / 0.85);
}

.border-l-red-100\/90 {
  border-left-color: rgb(254 226 226 / 0.9);
}

.border-l-red-100\/95 {
  border-left-color: rgb(254 226 226 / 0.95);
}

.border-l-red-200 {
  --tw-border-opacity: 1;
  border-left-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}

.border-l-red-200\/0 {
  border-left-color: rgb(254 202 202 / 0);
}

.border-l-red-200\/10 {
  border-left-color: rgb(254 202 202 / 0.1);
}

.border-l-red-200\/100 {
  border-left-color: rgb(254 202 202 / 1);
}

.border-l-red-200\/15 {
  border-left-color: rgb(254 202 202 / 0.15);
}

.border-l-red-200\/20 {
  border-left-color: rgb(254 202 202 / 0.2);
}

.border-l-red-200\/25 {
  border-left-color: rgb(254 202 202 / 0.25);
}

.border-l-red-200\/30 {
  border-left-color: rgb(254 202 202 / 0.3);
}

.border-l-red-200\/35 {
  border-left-color: rgb(254 202 202 / 0.35);
}

.border-l-red-200\/40 {
  border-left-color: rgb(254 202 202 / 0.4);
}

.border-l-red-200\/45 {
  border-left-color: rgb(254 202 202 / 0.45);
}

.border-l-red-200\/5 {
  border-left-color: rgb(254 202 202 / 0.05);
}

.border-l-red-200\/50 {
  border-left-color: rgb(254 202 202 / 0.5);
}

.border-l-red-200\/55 {
  border-left-color: rgb(254 202 202 / 0.55);
}

.border-l-red-200\/60 {
  border-left-color: rgb(254 202 202 / 0.6);
}

.border-l-red-200\/65 {
  border-left-color: rgb(254 202 202 / 0.65);
}

.border-l-red-200\/70 {
  border-left-color: rgb(254 202 202 / 0.7);
}

.border-l-red-200\/75 {
  border-left-color: rgb(254 202 202 / 0.75);
}

.border-l-red-200\/80 {
  border-left-color: rgb(254 202 202 / 0.8);
}

.border-l-red-200\/85 {
  border-left-color: rgb(254 202 202 / 0.85);
}

.border-l-red-200\/90 {
  border-left-color: rgb(254 202 202 / 0.9);
}

.border-l-red-200\/95 {
  border-left-color: rgb(254 202 202 / 0.95);
}

.border-l-red-300 {
  --tw-border-opacity: 1;
  border-left-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
}

.border-l-red-300\/0 {
  border-left-color: rgb(252 165 165 / 0);
}

.border-l-red-300\/10 {
  border-left-color: rgb(252 165 165 / 0.1);
}

.border-l-red-300\/100 {
  border-left-color: rgb(252 165 165 / 1);
}

.border-l-red-300\/15 {
  border-left-color: rgb(252 165 165 / 0.15);
}

.border-l-red-300\/20 {
  border-left-color: rgb(252 165 165 / 0.2);
}

.border-l-red-300\/25 {
  border-left-color: rgb(252 165 165 / 0.25);
}

.border-l-red-300\/30 {
  border-left-color: rgb(252 165 165 / 0.3);
}

.border-l-red-300\/35 {
  border-left-color: rgb(252 165 165 / 0.35);
}

.border-l-red-300\/40 {
  border-left-color: rgb(252 165 165 / 0.4);
}

.border-l-red-300\/45 {
  border-left-color: rgb(252 165 165 / 0.45);
}

.border-l-red-300\/5 {
  border-left-color: rgb(252 165 165 / 0.05);
}

.border-l-red-300\/50 {
  border-left-color: rgb(252 165 165 / 0.5);
}

.border-l-red-300\/55 {
  border-left-color: rgb(252 165 165 / 0.55);
}

.border-l-red-300\/60 {
  border-left-color: rgb(252 165 165 / 0.6);
}

.border-l-red-300\/65 {
  border-left-color: rgb(252 165 165 / 0.65);
}

.border-l-red-300\/70 {
  border-left-color: rgb(252 165 165 / 0.7);
}

.border-l-red-300\/75 {
  border-left-color: rgb(252 165 165 / 0.75);
}

.border-l-red-300\/80 {
  border-left-color: rgb(252 165 165 / 0.8);
}

.border-l-red-300\/85 {
  border-left-color: rgb(252 165 165 / 0.85);
}

.border-l-red-300\/90 {
  border-left-color: rgb(252 165 165 / 0.9);
}

.border-l-red-300\/95 {
  border-left-color: rgb(252 165 165 / 0.95);
}

.border-l-red-400 {
  --tw-border-opacity: 1;
  border-left-color: rgb(248 113 113 / var(--tw-border-opacity, 1));
}

.border-l-red-400\/0 {
  border-left-color: rgb(248 113 113 / 0);
}

.border-l-red-400\/10 {
  border-left-color: rgb(248 113 113 / 0.1);
}

.border-l-red-400\/100 {
  border-left-color: rgb(248 113 113 / 1);
}

.border-l-red-400\/15 {
  border-left-color: rgb(248 113 113 / 0.15);
}

.border-l-red-400\/20 {
  border-left-color: rgb(248 113 113 / 0.2);
}

.border-l-red-400\/25 {
  border-left-color: rgb(248 113 113 / 0.25);
}

.border-l-red-400\/30 {
  border-left-color: rgb(248 113 113 / 0.3);
}

.border-l-red-400\/35 {
  border-left-color: rgb(248 113 113 / 0.35);
}

.border-l-red-400\/40 {
  border-left-color: rgb(248 113 113 / 0.4);
}

.border-l-red-400\/45 {
  border-left-color: rgb(248 113 113 / 0.45);
}

.border-l-red-400\/5 {
  border-left-color: rgb(248 113 113 / 0.05);
}

.border-l-red-400\/50 {
  border-left-color: rgb(248 113 113 / 0.5);
}

.border-l-red-400\/55 {
  border-left-color: rgb(248 113 113 / 0.55);
}

.border-l-red-400\/60 {
  border-left-color: rgb(248 113 113 / 0.6);
}

.border-l-red-400\/65 {
  border-left-color: rgb(248 113 113 / 0.65);
}

.border-l-red-400\/70 {
  border-left-color: rgb(248 113 113 / 0.7);
}

.border-l-red-400\/75 {
  border-left-color: rgb(248 113 113 / 0.75);
}

.border-l-red-400\/80 {
  border-left-color: rgb(248 113 113 / 0.8);
}

.border-l-red-400\/85 {
  border-left-color: rgb(248 113 113 / 0.85);
}

.border-l-red-400\/90 {
  border-left-color: rgb(248 113 113 / 0.9);
}

.border-l-red-400\/95 {
  border-left-color: rgb(248 113 113 / 0.95);
}

.border-l-red-50 {
  --tw-border-opacity: 1;
  border-left-color: rgb(254 242 242 / var(--tw-border-opacity, 1));
}

.border-l-red-50\/0 {
  border-left-color: rgb(254 242 242 / 0);
}

.border-l-red-50\/10 {
  border-left-color: rgb(254 242 242 / 0.1);
}

.border-l-red-50\/100 {
  border-left-color: rgb(254 242 242 / 1);
}

.border-l-red-50\/15 {
  border-left-color: rgb(254 242 242 / 0.15);
}

.border-l-red-50\/20 {
  border-left-color: rgb(254 242 242 / 0.2);
}

.border-l-red-50\/25 {
  border-left-color: rgb(254 242 242 / 0.25);
}

.border-l-red-50\/30 {
  border-left-color: rgb(254 242 242 / 0.3);
}

.border-l-red-50\/35 {
  border-left-color: rgb(254 242 242 / 0.35);
}

.border-l-red-50\/40 {
  border-left-color: rgb(254 242 242 / 0.4);
}

.border-l-red-50\/45 {
  border-left-color: rgb(254 242 242 / 0.45);
}

.border-l-red-50\/5 {
  border-left-color: rgb(254 242 242 / 0.05);
}

.border-l-red-50\/50 {
  border-left-color: rgb(254 242 242 / 0.5);
}

.border-l-red-50\/55 {
  border-left-color: rgb(254 242 242 / 0.55);
}

.border-l-red-50\/60 {
  border-left-color: rgb(254 242 242 / 0.6);
}

.border-l-red-50\/65 {
  border-left-color: rgb(254 242 242 / 0.65);
}

.border-l-red-50\/70 {
  border-left-color: rgb(254 242 242 / 0.7);
}

.border-l-red-50\/75 {
  border-left-color: rgb(254 242 242 / 0.75);
}

.border-l-red-50\/80 {
  border-left-color: rgb(254 242 242 / 0.8);
}

.border-l-red-50\/85 {
  border-left-color: rgb(254 242 242 / 0.85);
}

.border-l-red-50\/90 {
  border-left-color: rgb(254 242 242 / 0.9);
}

.border-l-red-50\/95 {
  border-left-color: rgb(254 242 242 / 0.95);
}

.border-l-red-500 {
  --tw-border-opacity: 1;
  border-left-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}

.border-l-red-500\/0 {
  border-left-color: rgb(239 68 68 / 0);
}

.border-l-red-500\/10 {
  border-left-color: rgb(239 68 68 / 0.1);
}

.border-l-red-500\/100 {
  border-left-color: rgb(239 68 68 / 1);
}

.border-l-red-500\/15 {
  border-left-color: rgb(239 68 68 / 0.15);
}

.border-l-red-500\/20 {
  border-left-color: rgb(239 68 68 / 0.2);
}

.border-l-red-500\/25 {
  border-left-color: rgb(239 68 68 / 0.25);
}

.border-l-red-500\/30 {
  border-left-color: rgb(239 68 68 / 0.3);
}

.border-l-red-500\/35 {
  border-left-color: rgb(239 68 68 / 0.35);
}

.border-l-red-500\/40 {
  border-left-color: rgb(239 68 68 / 0.4);
}

.border-l-red-500\/45 {
  border-left-color: rgb(239 68 68 / 0.45);
}

.border-l-red-500\/5 {
  border-left-color: rgb(239 68 68 / 0.05);
}

.border-l-red-500\/50 {
  border-left-color: rgb(239 68 68 / 0.5);
}

.border-l-red-500\/55 {
  border-left-color: rgb(239 68 68 / 0.55);
}

.border-l-red-500\/60 {
  border-left-color: rgb(239 68 68 / 0.6);
}

.border-l-red-500\/65 {
  border-left-color: rgb(239 68 68 / 0.65);
}

.border-l-red-500\/70 {
  border-left-color: rgb(239 68 68 / 0.7);
}

.border-l-red-500\/75 {
  border-left-color: rgb(239 68 68 / 0.75);
}

.border-l-red-500\/80 {
  border-left-color: rgb(239 68 68 / 0.8);
}

.border-l-red-500\/85 {
  border-left-color: rgb(239 68 68 / 0.85);
}

.border-l-red-500\/90 {
  border-left-color: rgb(239 68 68 / 0.9);
}

.border-l-red-500\/95 {
  border-left-color: rgb(239 68 68 / 0.95);
}

.border-l-red-600 {
  --tw-border-opacity: 1;
  border-left-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
}

.border-l-red-600\/0 {
  border-left-color: rgb(220 38 38 / 0);
}

.border-l-red-600\/10 {
  border-left-color: rgb(220 38 38 / 0.1);
}

.border-l-red-600\/100 {
  border-left-color: rgb(220 38 38 / 1);
}

.border-l-red-600\/15 {
  border-left-color: rgb(220 38 38 / 0.15);
}

.border-l-red-600\/20 {
  border-left-color: rgb(220 38 38 / 0.2);
}

.border-l-red-600\/25 {
  border-left-color: rgb(220 38 38 / 0.25);
}

.border-l-red-600\/30 {
  border-left-color: rgb(220 38 38 / 0.3);
}

.border-l-red-600\/35 {
  border-left-color: rgb(220 38 38 / 0.35);
}

.border-l-red-600\/40 {
  border-left-color: rgb(220 38 38 / 0.4);
}

.border-l-red-600\/45 {
  border-left-color: rgb(220 38 38 / 0.45);
}

.border-l-red-600\/5 {
  border-left-color: rgb(220 38 38 / 0.05);
}

.border-l-red-600\/50 {
  border-left-color: rgb(220 38 38 / 0.5);
}

.border-l-red-600\/55 {
  border-left-color: rgb(220 38 38 / 0.55);
}

.border-l-red-600\/60 {
  border-left-color: rgb(220 38 38 / 0.6);
}

.border-l-red-600\/65 {
  border-left-color: rgb(220 38 38 / 0.65);
}

.border-l-red-600\/70 {
  border-left-color: rgb(220 38 38 / 0.7);
}

.border-l-red-600\/75 {
  border-left-color: rgb(220 38 38 / 0.75);
}

.border-l-red-600\/80 {
  border-left-color: rgb(220 38 38 / 0.8);
}

.border-l-red-600\/85 {
  border-left-color: rgb(220 38 38 / 0.85);
}

.border-l-red-600\/90 {
  border-left-color: rgb(220 38 38 / 0.9);
}

.border-l-red-600\/95 {
  border-left-color: rgb(220 38 38 / 0.95);
}

.border-l-red-700 {
  --tw-border-opacity: 1;
  border-left-color: rgb(185 28 28 / var(--tw-border-opacity, 1));
}

.border-l-red-700\/0 {
  border-left-color: rgb(185 28 28 / 0);
}

.border-l-red-700\/10 {
  border-left-color: rgb(185 28 28 / 0.1);
}

.border-l-red-700\/100 {
  border-left-color: rgb(185 28 28 / 1);
}

.border-l-red-700\/15 {
  border-left-color: rgb(185 28 28 / 0.15);
}

.border-l-red-700\/20 {
  border-left-color: rgb(185 28 28 / 0.2);
}

.border-l-red-700\/25 {
  border-left-color: rgb(185 28 28 / 0.25);
}

.border-l-red-700\/30 {
  border-left-color: rgb(185 28 28 / 0.3);
}

.border-l-red-700\/35 {
  border-left-color: rgb(185 28 28 / 0.35);
}

.border-l-red-700\/40 {
  border-left-color: rgb(185 28 28 / 0.4);
}

.border-l-red-700\/45 {
  border-left-color: rgb(185 28 28 / 0.45);
}

.border-l-red-700\/5 {
  border-left-color: rgb(185 28 28 / 0.05);
}

.border-l-red-700\/50 {
  border-left-color: rgb(185 28 28 / 0.5);
}

.border-l-red-700\/55 {
  border-left-color: rgb(185 28 28 / 0.55);
}

.border-l-red-700\/60 {
  border-left-color: rgb(185 28 28 / 0.6);
}

.border-l-red-700\/65 {
  border-left-color: rgb(185 28 28 / 0.65);
}

.border-l-red-700\/70 {
  border-left-color: rgb(185 28 28 / 0.7);
}

.border-l-red-700\/75 {
  border-left-color: rgb(185 28 28 / 0.75);
}

.border-l-red-700\/80 {
  border-left-color: rgb(185 28 28 / 0.8);
}

.border-l-red-700\/85 {
  border-left-color: rgb(185 28 28 / 0.85);
}

.border-l-red-700\/90 {
  border-left-color: rgb(185 28 28 / 0.9);
}

.border-l-red-700\/95 {
  border-left-color: rgb(185 28 28 / 0.95);
}

.border-l-red-800 {
  --tw-border-opacity: 1;
  border-left-color: rgb(153 27 27 / var(--tw-border-opacity, 1));
}

.border-l-red-800\/0 {
  border-left-color: rgb(153 27 27 / 0);
}

.border-l-red-800\/10 {
  border-left-color: rgb(153 27 27 / 0.1);
}

.border-l-red-800\/100 {
  border-left-color: rgb(153 27 27 / 1);
}

.border-l-red-800\/15 {
  border-left-color: rgb(153 27 27 / 0.15);
}

.border-l-red-800\/20 {
  border-left-color: rgb(153 27 27 / 0.2);
}

.border-l-red-800\/25 {
  border-left-color: rgb(153 27 27 / 0.25);
}

.border-l-red-800\/30 {
  border-left-color: rgb(153 27 27 / 0.3);
}

.border-l-red-800\/35 {
  border-left-color: rgb(153 27 27 / 0.35);
}

.border-l-red-800\/40 {
  border-left-color: rgb(153 27 27 / 0.4);
}

.border-l-red-800\/45 {
  border-left-color: rgb(153 27 27 / 0.45);
}

.border-l-red-800\/5 {
  border-left-color: rgb(153 27 27 / 0.05);
}

.border-l-red-800\/50 {
  border-left-color: rgb(153 27 27 / 0.5);
}

.border-l-red-800\/55 {
  border-left-color: rgb(153 27 27 / 0.55);
}

.border-l-red-800\/60 {
  border-left-color: rgb(153 27 27 / 0.6);
}

.border-l-red-800\/65 {
  border-left-color: rgb(153 27 27 / 0.65);
}

.border-l-red-800\/70 {
  border-left-color: rgb(153 27 27 / 0.7);
}

.border-l-red-800\/75 {
  border-left-color: rgb(153 27 27 / 0.75);
}

.border-l-red-800\/80 {
  border-left-color: rgb(153 27 27 / 0.8);
}

.border-l-red-800\/85 {
  border-left-color: rgb(153 27 27 / 0.85);
}

.border-l-red-800\/90 {
  border-left-color: rgb(153 27 27 / 0.9);
}

.border-l-red-800\/95 {
  border-left-color: rgb(153 27 27 / 0.95);
}

.border-l-red-900 {
  --tw-border-opacity: 1;
  border-left-color: rgb(127 29 29 / var(--tw-border-opacity, 1));
}

.border-l-red-900\/0 {
  border-left-color: rgb(127 29 29 / 0);
}

.border-l-red-900\/10 {
  border-left-color: rgb(127 29 29 / 0.1);
}

.border-l-red-900\/100 {
  border-left-color: rgb(127 29 29 / 1);
}

.border-l-red-900\/15 {
  border-left-color: rgb(127 29 29 / 0.15);
}

.border-l-red-900\/20 {
  border-left-color: rgb(127 29 29 / 0.2);
}

.border-l-red-900\/25 {
  border-left-color: rgb(127 29 29 / 0.25);
}

.border-l-red-900\/30 {
  border-left-color: rgb(127 29 29 / 0.3);
}

.border-l-red-900\/35 {
  border-left-color: rgb(127 29 29 / 0.35);
}

.border-l-red-900\/40 {
  border-left-color: rgb(127 29 29 / 0.4);
}

.border-l-red-900\/45 {
  border-left-color: rgb(127 29 29 / 0.45);
}

.border-l-red-900\/5 {
  border-left-color: rgb(127 29 29 / 0.05);
}

.border-l-red-900\/50 {
  border-left-color: rgb(127 29 29 / 0.5);
}

.border-l-red-900\/55 {
  border-left-color: rgb(127 29 29 / 0.55);
}

.border-l-red-900\/60 {
  border-left-color: rgb(127 29 29 / 0.6);
}

.border-l-red-900\/65 {
  border-left-color: rgb(127 29 29 / 0.65);
}

.border-l-red-900\/70 {
  border-left-color: rgb(127 29 29 / 0.7);
}

.border-l-red-900\/75 {
  border-left-color: rgb(127 29 29 / 0.75);
}

.border-l-red-900\/80 {
  border-left-color: rgb(127 29 29 / 0.8);
}

.border-l-red-900\/85 {
  border-left-color: rgb(127 29 29 / 0.85);
}

.border-l-red-900\/90 {
  border-left-color: rgb(127 29 29 / 0.9);
}

.border-l-red-900\/95 {
  border-left-color: rgb(127 29 29 / 0.95);
}

.border-l-red-950 {
  --tw-border-opacity: 1;
  border-left-color: rgb(69 10 10 / var(--tw-border-opacity, 1));
}

.border-l-red-950\/0 {
  border-left-color: rgb(69 10 10 / 0);
}

.border-l-red-950\/10 {
  border-left-color: rgb(69 10 10 / 0.1);
}

.border-l-red-950\/100 {
  border-left-color: rgb(69 10 10 / 1);
}

.border-l-red-950\/15 {
  border-left-color: rgb(69 10 10 / 0.15);
}

.border-l-red-950\/20 {
  border-left-color: rgb(69 10 10 / 0.2);
}

.border-l-red-950\/25 {
  border-left-color: rgb(69 10 10 / 0.25);
}

.border-l-red-950\/30 {
  border-left-color: rgb(69 10 10 / 0.3);
}

.border-l-red-950\/35 {
  border-left-color: rgb(69 10 10 / 0.35);
}

.border-l-red-950\/40 {
  border-left-color: rgb(69 10 10 / 0.4);
}

.border-l-red-950\/45 {
  border-left-color: rgb(69 10 10 / 0.45);
}

.border-l-red-950\/5 {
  border-left-color: rgb(69 10 10 / 0.05);
}

.border-l-red-950\/50 {
  border-left-color: rgb(69 10 10 / 0.5);
}

.border-l-red-950\/55 {
  border-left-color: rgb(69 10 10 / 0.55);
}

.border-l-red-950\/60 {
  border-left-color: rgb(69 10 10 / 0.6);
}

.border-l-red-950\/65 {
  border-left-color: rgb(69 10 10 / 0.65);
}

.border-l-red-950\/70 {
  border-left-color: rgb(69 10 10 / 0.7);
}

.border-l-red-950\/75 {
  border-left-color: rgb(69 10 10 / 0.75);
}

.border-l-red-950\/80 {
  border-left-color: rgb(69 10 10 / 0.8);
}

.border-l-red-950\/85 {
  border-left-color: rgb(69 10 10 / 0.85);
}

.border-l-red-950\/90 {
  border-left-color: rgb(69 10 10 / 0.9);
}

.border-l-red-950\/95 {
  border-left-color: rgb(69 10 10 / 0.95);
}

.border-l-transparent {
  border-left-color: transparent;
}

.border-l-transparent\/0 {
  border-left-color: rgb(0 0 0 / 0);
}

.border-l-transparent\/10 {
  border-left-color: rgb(0 0 0 / 0.1);
}

.border-l-transparent\/100 {
  border-left-color: rgb(0 0 0 / 1);
}

.border-l-transparent\/15 {
  border-left-color: rgb(0 0 0 / 0.15);
}

.border-l-transparent\/20 {
  border-left-color: rgb(0 0 0 / 0.2);
}

.border-l-transparent\/25 {
  border-left-color: rgb(0 0 0 / 0.25);
}

.border-l-transparent\/30 {
  border-left-color: rgb(0 0 0 / 0.3);
}

.border-l-transparent\/35 {
  border-left-color: rgb(0 0 0 / 0.35);
}

.border-l-transparent\/40 {
  border-left-color: rgb(0 0 0 / 0.4);
}

.border-l-transparent\/45 {
  border-left-color: rgb(0 0 0 / 0.45);
}

.border-l-transparent\/5 {
  border-left-color: rgb(0 0 0 / 0.05);
}

.border-l-transparent\/50 {
  border-left-color: rgb(0 0 0 / 0.5);
}

.border-l-transparent\/55 {
  border-left-color: rgb(0 0 0 / 0.55);
}

.border-l-transparent\/60 {
  border-left-color: rgb(0 0 0 / 0.6);
}

.border-l-transparent\/65 {
  border-left-color: rgb(0 0 0 / 0.65);
}

.border-l-transparent\/70 {
  border-left-color: rgb(0 0 0 / 0.7);
}

.border-l-transparent\/75 {
  border-left-color: rgb(0 0 0 / 0.75);
}

.border-l-transparent\/80 {
  border-left-color: rgb(0 0 0 / 0.8);
}

.border-l-transparent\/85 {
  border-left-color: rgb(0 0 0 / 0.85);
}

.border-l-transparent\/90 {
  border-left-color: rgb(0 0 0 / 0.9);
}

.border-l-transparent\/95 {
  border-left-color: rgb(0 0 0 / 0.95);
}

.border-l-white {
  --tw-border-opacity: 1;
  border-left-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}

.border-l-white\/0 {
  border-left-color: rgb(255 255 255 / 0);
}

.border-l-white\/10 {
  border-left-color: rgb(255 255 255 / 0.1);
}

.border-l-white\/100 {
  border-left-color: rgb(255 255 255 / 1);
}

.border-l-white\/15 {
  border-left-color: rgb(255 255 255 / 0.15);
}

.border-l-white\/20 {
  border-left-color: rgb(255 255 255 / 0.2);
}

.border-l-white\/25 {
  border-left-color: rgb(255 255 255 / 0.25);
}

.border-l-white\/30 {
  border-left-color: rgb(255 255 255 / 0.3);
}

.border-l-white\/35 {
  border-left-color: rgb(255 255 255 / 0.35);
}

.border-l-white\/40 {
  border-left-color: rgb(255 255 255 / 0.4);
}

.border-l-white\/45 {
  border-left-color: rgb(255 255 255 / 0.45);
}

.border-l-white\/5 {
  border-left-color: rgb(255 255 255 / 0.05);
}

.border-l-white\/50 {
  border-left-color: rgb(255 255 255 / 0.5);
}

.border-l-white\/55 {
  border-left-color: rgb(255 255 255 / 0.55);
}

.border-l-white\/60 {
  border-left-color: rgb(255 255 255 / 0.6);
}

.border-l-white\/65 {
  border-left-color: rgb(255 255 255 / 0.65);
}

.border-l-white\/70 {
  border-left-color: rgb(255 255 255 / 0.7);
}

.border-l-white\/75 {
  border-left-color: rgb(255 255 255 / 0.75);
}

.border-l-white\/80 {
  border-left-color: rgb(255 255 255 / 0.8);
}

.border-l-white\/85 {
  border-left-color: rgb(255 255 255 / 0.85);
}

.border-l-white\/90 {
  border-left-color: rgb(255 255 255 / 0.9);
}

.border-l-white\/95 {
  border-left-color: rgb(255 255 255 / 0.95);
}

.border-r-black {
  --tw-border-opacity: 1;
  border-right-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
}

.border-r-black\/0 {
  border-right-color: rgb(0 0 0 / 0);
}

.border-r-black\/10 {
  border-right-color: rgb(0 0 0 / 0.1);
}

.border-r-black\/100 {
  border-right-color: rgb(0 0 0 / 1);
}

.border-r-black\/15 {
  border-right-color: rgb(0 0 0 / 0.15);
}

.border-r-black\/20 {
  border-right-color: rgb(0 0 0 / 0.2);
}

.border-r-black\/25 {
  border-right-color: rgb(0 0 0 / 0.25);
}

.border-r-black\/30 {
  border-right-color: rgb(0 0 0 / 0.3);
}

.border-r-black\/35 {
  border-right-color: rgb(0 0 0 / 0.35);
}

.border-r-black\/40 {
  border-right-color: rgb(0 0 0 / 0.4);
}

.border-r-black\/45 {
  border-right-color: rgb(0 0 0 / 0.45);
}

.border-r-black\/5 {
  border-right-color: rgb(0 0 0 / 0.05);
}

.border-r-black\/50 {
  border-right-color: rgb(0 0 0 / 0.5);
}

.border-r-black\/55 {
  border-right-color: rgb(0 0 0 / 0.55);
}

.border-r-black\/60 {
  border-right-color: rgb(0 0 0 / 0.6);
}

.border-r-black\/65 {
  border-right-color: rgb(0 0 0 / 0.65);
}

.border-r-black\/70 {
  border-right-color: rgb(0 0 0 / 0.7);
}

.border-r-black\/75 {
  border-right-color: rgb(0 0 0 / 0.75);
}

.border-r-black\/80 {
  border-right-color: rgb(0 0 0 / 0.8);
}

.border-r-black\/85 {
  border-right-color: rgb(0 0 0 / 0.85);
}

.border-r-black\/90 {
  border-right-color: rgb(0 0 0 / 0.9);
}

.border-r-black\/95 {
  border-right-color: rgb(0 0 0 / 0.95);
}

.border-r-blue-100 {
  --tw-border-opacity: 1;
  border-right-color: rgb(219 234 254 / var(--tw-border-opacity, 1));
}

.border-r-blue-100\/0 {
  border-right-color: rgb(219 234 254 / 0);
}

.border-r-blue-100\/10 {
  border-right-color: rgb(219 234 254 / 0.1);
}

.border-r-blue-100\/100 {
  border-right-color: rgb(219 234 254 / 1);
}

.border-r-blue-100\/15 {
  border-right-color: rgb(219 234 254 / 0.15);
}

.border-r-blue-100\/20 {
  border-right-color: rgb(219 234 254 / 0.2);
}

.border-r-blue-100\/25 {
  border-right-color: rgb(219 234 254 / 0.25);
}

.border-r-blue-100\/30 {
  border-right-color: rgb(219 234 254 / 0.3);
}

.border-r-blue-100\/35 {
  border-right-color: rgb(219 234 254 / 0.35);
}

.border-r-blue-100\/40 {
  border-right-color: rgb(219 234 254 / 0.4);
}

.border-r-blue-100\/45 {
  border-right-color: rgb(219 234 254 / 0.45);
}

.border-r-blue-100\/5 {
  border-right-color: rgb(219 234 254 / 0.05);
}

.border-r-blue-100\/50 {
  border-right-color: rgb(219 234 254 / 0.5);
}

.border-r-blue-100\/55 {
  border-right-color: rgb(219 234 254 / 0.55);
}

.border-r-blue-100\/60 {
  border-right-color: rgb(219 234 254 / 0.6);
}

.border-r-blue-100\/65 {
  border-right-color: rgb(219 234 254 / 0.65);
}

.border-r-blue-100\/70 {
  border-right-color: rgb(219 234 254 / 0.7);
}

.border-r-blue-100\/75 {
  border-right-color: rgb(219 234 254 / 0.75);
}

.border-r-blue-100\/80 {
  border-right-color: rgb(219 234 254 / 0.8);
}

.border-r-blue-100\/85 {
  border-right-color: rgb(219 234 254 / 0.85);
}

.border-r-blue-100\/90 {
  border-right-color: rgb(219 234 254 / 0.9);
}

.border-r-blue-100\/95 {
  border-right-color: rgb(219 234 254 / 0.95);
}

.border-r-blue-200 {
  --tw-border-opacity: 1;
  border-right-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
}

.border-r-blue-200\/0 {
  border-right-color: rgb(191 219 254 / 0);
}

.border-r-blue-200\/10 {
  border-right-color: rgb(191 219 254 / 0.1);
}

.border-r-blue-200\/100 {
  border-right-color: rgb(191 219 254 / 1);
}

.border-r-blue-200\/15 {
  border-right-color: rgb(191 219 254 / 0.15);
}

.border-r-blue-200\/20 {
  border-right-color: rgb(191 219 254 / 0.2);
}

.border-r-blue-200\/25 {
  border-right-color: rgb(191 219 254 / 0.25);
}

.border-r-blue-200\/30 {
  border-right-color: rgb(191 219 254 / 0.3);
}

.border-r-blue-200\/35 {
  border-right-color: rgb(191 219 254 / 0.35);
}

.border-r-blue-200\/40 {
  border-right-color: rgb(191 219 254 / 0.4);
}

.border-r-blue-200\/45 {
  border-right-color: rgb(191 219 254 / 0.45);
}

.border-r-blue-200\/5 {
  border-right-color: rgb(191 219 254 / 0.05);
}

.border-r-blue-200\/50 {
  border-right-color: rgb(191 219 254 / 0.5);
}

.border-r-blue-200\/55 {
  border-right-color: rgb(191 219 254 / 0.55);
}

.border-r-blue-200\/60 {
  border-right-color: rgb(191 219 254 / 0.6);
}

.border-r-blue-200\/65 {
  border-right-color: rgb(191 219 254 / 0.65);
}

.border-r-blue-200\/70 {
  border-right-color: rgb(191 219 254 / 0.7);
}

.border-r-blue-200\/75 {
  border-right-color: rgb(191 219 254 / 0.75);
}

.border-r-blue-200\/80 {
  border-right-color: rgb(191 219 254 / 0.8);
}

.border-r-blue-200\/85 {
  border-right-color: rgb(191 219 254 / 0.85);
}

.border-r-blue-200\/90 {
  border-right-color: rgb(191 219 254 / 0.9);
}

.border-r-blue-200\/95 {
  border-right-color: rgb(191 219 254 / 0.95);
}

.border-r-blue-300 {
  --tw-border-opacity: 1;
  border-right-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
}

.border-r-blue-300\/0 {
  border-right-color: rgb(147 197 253 / 0);
}

.border-r-blue-300\/10 {
  border-right-color: rgb(147 197 253 / 0.1);
}

.border-r-blue-300\/100 {
  border-right-color: rgb(147 197 253 / 1);
}

.border-r-blue-300\/15 {
  border-right-color: rgb(147 197 253 / 0.15);
}

.border-r-blue-300\/20 {
  border-right-color: rgb(147 197 253 / 0.2);
}

.border-r-blue-300\/25 {
  border-right-color: rgb(147 197 253 / 0.25);
}

.border-r-blue-300\/30 {
  border-right-color: rgb(147 197 253 / 0.3);
}

.border-r-blue-300\/35 {
  border-right-color: rgb(147 197 253 / 0.35);
}

.border-r-blue-300\/40 {
  border-right-color: rgb(147 197 253 / 0.4);
}

.border-r-blue-300\/45 {
  border-right-color: rgb(147 197 253 / 0.45);
}

.border-r-blue-300\/5 {
  border-right-color: rgb(147 197 253 / 0.05);
}

.border-r-blue-300\/50 {
  border-right-color: rgb(147 197 253 / 0.5);
}

.border-r-blue-300\/55 {
  border-right-color: rgb(147 197 253 / 0.55);
}

.border-r-blue-300\/60 {
  border-right-color: rgb(147 197 253 / 0.6);
}

.border-r-blue-300\/65 {
  border-right-color: rgb(147 197 253 / 0.65);
}

.border-r-blue-300\/70 {
  border-right-color: rgb(147 197 253 / 0.7);
}

.border-r-blue-300\/75 {
  border-right-color: rgb(147 197 253 / 0.75);
}

.border-r-blue-300\/80 {
  border-right-color: rgb(147 197 253 / 0.8);
}

.border-r-blue-300\/85 {
  border-right-color: rgb(147 197 253 / 0.85);
}

.border-r-blue-300\/90 {
  border-right-color: rgb(147 197 253 / 0.9);
}

.border-r-blue-300\/95 {
  border-right-color: rgb(147 197 253 / 0.95);
}

.border-r-blue-400 {
  --tw-border-opacity: 1;
  border-right-color: rgb(96 165 250 / var(--tw-border-opacity, 1));
}

.border-r-blue-400\/0 {
  border-right-color: rgb(96 165 250 / 0);
}

.border-r-blue-400\/10 {
  border-right-color: rgb(96 165 250 / 0.1);
}

.border-r-blue-400\/100 {
  border-right-color: rgb(96 165 250 / 1);
}

.border-r-blue-400\/15 {
  border-right-color: rgb(96 165 250 / 0.15);
}

.border-r-blue-400\/20 {
  border-right-color: rgb(96 165 250 / 0.2);
}

.border-r-blue-400\/25 {
  border-right-color: rgb(96 165 250 / 0.25);
}

.border-r-blue-400\/30 {
  border-right-color: rgb(96 165 250 / 0.3);
}

.border-r-blue-400\/35 {
  border-right-color: rgb(96 165 250 / 0.35);
}

.border-r-blue-400\/40 {
  border-right-color: rgb(96 165 250 / 0.4);
}

.border-r-blue-400\/45 {
  border-right-color: rgb(96 165 250 / 0.45);
}

.border-r-blue-400\/5 {
  border-right-color: rgb(96 165 250 / 0.05);
}

.border-r-blue-400\/50 {
  border-right-color: rgb(96 165 250 / 0.5);
}

.border-r-blue-400\/55 {
  border-right-color: rgb(96 165 250 / 0.55);
}

.border-r-blue-400\/60 {
  border-right-color: rgb(96 165 250 / 0.6);
}

.border-r-blue-400\/65 {
  border-right-color: rgb(96 165 250 / 0.65);
}

.border-r-blue-400\/70 {
  border-right-color: rgb(96 165 250 / 0.7);
}

.border-r-blue-400\/75 {
  border-right-color: rgb(96 165 250 / 0.75);
}

.border-r-blue-400\/80 {
  border-right-color: rgb(96 165 250 / 0.8);
}

.border-r-blue-400\/85 {
  border-right-color: rgb(96 165 250 / 0.85);
}

.border-r-blue-400\/90 {
  border-right-color: rgb(96 165 250 / 0.9);
}

.border-r-blue-400\/95 {
  border-right-color: rgb(96 165 250 / 0.95);
}

.border-r-blue-50 {
  --tw-border-opacity: 1;
  border-right-color: rgb(239 246 255 / var(--tw-border-opacity, 1));
}

.border-r-blue-50\/0 {
  border-right-color: rgb(239 246 255 / 0);
}

.border-r-blue-50\/10 {
  border-right-color: rgb(239 246 255 / 0.1);
}

.border-r-blue-50\/100 {
  border-right-color: rgb(239 246 255 / 1);
}

.border-r-blue-50\/15 {
  border-right-color: rgb(239 246 255 / 0.15);
}

.border-r-blue-50\/20 {
  border-right-color: rgb(239 246 255 / 0.2);
}

.border-r-blue-50\/25 {
  border-right-color: rgb(239 246 255 / 0.25);
}

.border-r-blue-50\/30 {
  border-right-color: rgb(239 246 255 / 0.3);
}

.border-r-blue-50\/35 {
  border-right-color: rgb(239 246 255 / 0.35);
}

.border-r-blue-50\/40 {
  border-right-color: rgb(239 246 255 / 0.4);
}

.border-r-blue-50\/45 {
  border-right-color: rgb(239 246 255 / 0.45);
}

.border-r-blue-50\/5 {
  border-right-color: rgb(239 246 255 / 0.05);
}

.border-r-blue-50\/50 {
  border-right-color: rgb(239 246 255 / 0.5);
}

.border-r-blue-50\/55 {
  border-right-color: rgb(239 246 255 / 0.55);
}

.border-r-blue-50\/60 {
  border-right-color: rgb(239 246 255 / 0.6);
}

.border-r-blue-50\/65 {
  border-right-color: rgb(239 246 255 / 0.65);
}

.border-r-blue-50\/70 {
  border-right-color: rgb(239 246 255 / 0.7);
}

.border-r-blue-50\/75 {
  border-right-color: rgb(239 246 255 / 0.75);
}

.border-r-blue-50\/80 {
  border-right-color: rgb(239 246 255 / 0.8);
}

.border-r-blue-50\/85 {
  border-right-color: rgb(239 246 255 / 0.85);
}

.border-r-blue-50\/90 {
  border-right-color: rgb(239 246 255 / 0.9);
}

.border-r-blue-50\/95 {
  border-right-color: rgb(239 246 255 / 0.95);
}

.border-r-blue-500 {
  --tw-border-opacity: 1;
  border-right-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}

.border-r-blue-500\/0 {
  border-right-color: rgb(59 130 246 / 0);
}

.border-r-blue-500\/10 {
  border-right-color: rgb(59 130 246 / 0.1);
}

.border-r-blue-500\/100 {
  border-right-color: rgb(59 130 246 / 1);
}

.border-r-blue-500\/15 {
  border-right-color: rgb(59 130 246 / 0.15);
}

.border-r-blue-500\/20 {
  border-right-color: rgb(59 130 246 / 0.2);
}

.border-r-blue-500\/25 {
  border-right-color: rgb(59 130 246 / 0.25);
}

.border-r-blue-500\/30 {
  border-right-color: rgb(59 130 246 / 0.3);
}

.border-r-blue-500\/35 {
  border-right-color: rgb(59 130 246 / 0.35);
}

.border-r-blue-500\/40 {
  border-right-color: rgb(59 130 246 / 0.4);
}

.border-r-blue-500\/45 {
  border-right-color: rgb(59 130 246 / 0.45);
}

.border-r-blue-500\/5 {
  border-right-color: rgb(59 130 246 / 0.05);
}

.border-r-blue-500\/50 {
  border-right-color: rgb(59 130 246 / 0.5);
}

.border-r-blue-500\/55 {
  border-right-color: rgb(59 130 246 / 0.55);
}

.border-r-blue-500\/60 {
  border-right-color: rgb(59 130 246 / 0.6);
}

.border-r-blue-500\/65 {
  border-right-color: rgb(59 130 246 / 0.65);
}

.border-r-blue-500\/70 {
  border-right-color: rgb(59 130 246 / 0.7);
}

.border-r-blue-500\/75 {
  border-right-color: rgb(59 130 246 / 0.75);
}

.border-r-blue-500\/80 {
  border-right-color: rgb(59 130 246 / 0.8);
}

.border-r-blue-500\/85 {
  border-right-color: rgb(59 130 246 / 0.85);
}

.border-r-blue-500\/90 {
  border-right-color: rgb(59 130 246 / 0.9);
}

.border-r-blue-500\/95 {
  border-right-color: rgb(59 130 246 / 0.95);
}

.border-r-blue-600 {
  --tw-border-opacity: 1;
  border-right-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}

.border-r-blue-600\/0 {
  border-right-color: rgb(37 99 235 / 0);
}

.border-r-blue-600\/10 {
  border-right-color: rgb(37 99 235 / 0.1);
}

.border-r-blue-600\/100 {
  border-right-color: rgb(37 99 235 / 1);
}

.border-r-blue-600\/15 {
  border-right-color: rgb(37 99 235 / 0.15);
}

.border-r-blue-600\/20 {
  border-right-color: rgb(37 99 235 / 0.2);
}

.border-r-blue-600\/25 {
  border-right-color: rgb(37 99 235 / 0.25);
}

.border-r-blue-600\/30 {
  border-right-color: rgb(37 99 235 / 0.3);
}

.border-r-blue-600\/35 {
  border-right-color: rgb(37 99 235 / 0.35);
}

.border-r-blue-600\/40 {
  border-right-color: rgb(37 99 235 / 0.4);
}

.border-r-blue-600\/45 {
  border-right-color: rgb(37 99 235 / 0.45);
}

.border-r-blue-600\/5 {
  border-right-color: rgb(37 99 235 / 0.05);
}

.border-r-blue-600\/50 {
  border-right-color: rgb(37 99 235 / 0.5);
}

.border-r-blue-600\/55 {
  border-right-color: rgb(37 99 235 / 0.55);
}

.border-r-blue-600\/60 {
  border-right-color: rgb(37 99 235 / 0.6);
}

.border-r-blue-600\/65 {
  border-right-color: rgb(37 99 235 / 0.65);
}

.border-r-blue-600\/70 {
  border-right-color: rgb(37 99 235 / 0.7);
}

.border-r-blue-600\/75 {
  border-right-color: rgb(37 99 235 / 0.75);
}

.border-r-blue-600\/80 {
  border-right-color: rgb(37 99 235 / 0.8);
}

.border-r-blue-600\/85 {
  border-right-color: rgb(37 99 235 / 0.85);
}

.border-r-blue-600\/90 {
  border-right-color: rgb(37 99 235 / 0.9);
}

.border-r-blue-600\/95 {
  border-right-color: rgb(37 99 235 / 0.95);
}

.border-r-blue-700 {
  --tw-border-opacity: 1;
  border-right-color: rgb(29 78 216 / var(--tw-border-opacity, 1));
}

.border-r-blue-700\/0 {
  border-right-color: rgb(29 78 216 / 0);
}

.border-r-blue-700\/10 {
  border-right-color: rgb(29 78 216 / 0.1);
}

.border-r-blue-700\/100 {
  border-right-color: rgb(29 78 216 / 1);
}

.border-r-blue-700\/15 {
  border-right-color: rgb(29 78 216 / 0.15);
}

.border-r-blue-700\/20 {
  border-right-color: rgb(29 78 216 / 0.2);
}

.border-r-blue-700\/25 {
  border-right-color: rgb(29 78 216 / 0.25);
}

.border-r-blue-700\/30 {
  border-right-color: rgb(29 78 216 / 0.3);
}

.border-r-blue-700\/35 {
  border-right-color: rgb(29 78 216 / 0.35);
}

.border-r-blue-700\/40 {
  border-right-color: rgb(29 78 216 / 0.4);
}

.border-r-blue-700\/45 {
  border-right-color: rgb(29 78 216 / 0.45);
}

.border-r-blue-700\/5 {
  border-right-color: rgb(29 78 216 / 0.05);
}

.border-r-blue-700\/50 {
  border-right-color: rgb(29 78 216 / 0.5);
}

.border-r-blue-700\/55 {
  border-right-color: rgb(29 78 216 / 0.55);
}

.border-r-blue-700\/60 {
  border-right-color: rgb(29 78 216 / 0.6);
}

.border-r-blue-700\/65 {
  border-right-color: rgb(29 78 216 / 0.65);
}

.border-r-blue-700\/70 {
  border-right-color: rgb(29 78 216 / 0.7);
}

.border-r-blue-700\/75 {
  border-right-color: rgb(29 78 216 / 0.75);
}

.border-r-blue-700\/80 {
  border-right-color: rgb(29 78 216 / 0.8);
}

.border-r-blue-700\/85 {
  border-right-color: rgb(29 78 216 / 0.85);
}

.border-r-blue-700\/90 {
  border-right-color: rgb(29 78 216 / 0.9);
}

.border-r-blue-700\/95 {
  border-right-color: rgb(29 78 216 / 0.95);
}

.border-r-blue-800 {
  --tw-border-opacity: 1;
  border-right-color: rgb(30 64 175 / var(--tw-border-opacity, 1));
}

.border-r-blue-800\/0 {
  border-right-color: rgb(30 64 175 / 0);
}

.border-r-blue-800\/10 {
  border-right-color: rgb(30 64 175 / 0.1);
}

.border-r-blue-800\/100 {
  border-right-color: rgb(30 64 175 / 1);
}

.border-r-blue-800\/15 {
  border-right-color: rgb(30 64 175 / 0.15);
}

.border-r-blue-800\/20 {
  border-right-color: rgb(30 64 175 / 0.2);
}

.border-r-blue-800\/25 {
  border-right-color: rgb(30 64 175 / 0.25);
}

.border-r-blue-800\/30 {
  border-right-color: rgb(30 64 175 / 0.3);
}

.border-r-blue-800\/35 {
  border-right-color: rgb(30 64 175 / 0.35);
}

.border-r-blue-800\/40 {
  border-right-color: rgb(30 64 175 / 0.4);
}

.border-r-blue-800\/45 {
  border-right-color: rgb(30 64 175 / 0.45);
}

.border-r-blue-800\/5 {
  border-right-color: rgb(30 64 175 / 0.05);
}

.border-r-blue-800\/50 {
  border-right-color: rgb(30 64 175 / 0.5);
}

.border-r-blue-800\/55 {
  border-right-color: rgb(30 64 175 / 0.55);
}

.border-r-blue-800\/60 {
  border-right-color: rgb(30 64 175 / 0.6);
}

.border-r-blue-800\/65 {
  border-right-color: rgb(30 64 175 / 0.65);
}

.border-r-blue-800\/70 {
  border-right-color: rgb(30 64 175 / 0.7);
}

.border-r-blue-800\/75 {
  border-right-color: rgb(30 64 175 / 0.75);
}

.border-r-blue-800\/80 {
  border-right-color: rgb(30 64 175 / 0.8);
}

.border-r-blue-800\/85 {
  border-right-color: rgb(30 64 175 / 0.85);
}

.border-r-blue-800\/90 {
  border-right-color: rgb(30 64 175 / 0.9);
}

.border-r-blue-800\/95 {
  border-right-color: rgb(30 64 175 / 0.95);
}

.border-r-blue-900 {
  --tw-border-opacity: 1;
  border-right-color: rgb(30 58 138 / var(--tw-border-opacity, 1));
}

.border-r-blue-900\/0 {
  border-right-color: rgb(30 58 138 / 0);
}

.border-r-blue-900\/10 {
  border-right-color: rgb(30 58 138 / 0.1);
}

.border-r-blue-900\/100 {
  border-right-color: rgb(30 58 138 / 1);
}

.border-r-blue-900\/15 {
  border-right-color: rgb(30 58 138 / 0.15);
}

.border-r-blue-900\/20 {
  border-right-color: rgb(30 58 138 / 0.2);
}

.border-r-blue-900\/25 {
  border-right-color: rgb(30 58 138 / 0.25);
}

.border-r-blue-900\/30 {
  border-right-color: rgb(30 58 138 / 0.3);
}

.border-r-blue-900\/35 {
  border-right-color: rgb(30 58 138 / 0.35);
}

.border-r-blue-900\/40 {
  border-right-color: rgb(30 58 138 / 0.4);
}

.border-r-blue-900\/45 {
  border-right-color: rgb(30 58 138 / 0.45);
}

.border-r-blue-900\/5 {
  border-right-color: rgb(30 58 138 / 0.05);
}

.border-r-blue-900\/50 {
  border-right-color: rgb(30 58 138 / 0.5);
}

.border-r-blue-900\/55 {
  border-right-color: rgb(30 58 138 / 0.55);
}

.border-r-blue-900\/60 {
  border-right-color: rgb(30 58 138 / 0.6);
}

.border-r-blue-900\/65 {
  border-right-color: rgb(30 58 138 / 0.65);
}

.border-r-blue-900\/70 {
  border-right-color: rgb(30 58 138 / 0.7);
}

.border-r-blue-900\/75 {
  border-right-color: rgb(30 58 138 / 0.75);
}

.border-r-blue-900\/80 {
  border-right-color: rgb(30 58 138 / 0.8);
}

.border-r-blue-900\/85 {
  border-right-color: rgb(30 58 138 / 0.85);
}

.border-r-blue-900\/90 {
  border-right-color: rgb(30 58 138 / 0.9);
}

.border-r-blue-900\/95 {
  border-right-color: rgb(30 58 138 / 0.95);
}

.border-r-blue-950 {
  --tw-border-opacity: 1;
  border-right-color: rgb(23 37 84 / var(--tw-border-opacity, 1));
}

.border-r-blue-950\/0 {
  border-right-color: rgb(23 37 84 / 0);
}

.border-r-blue-950\/10 {
  border-right-color: rgb(23 37 84 / 0.1);
}

.border-r-blue-950\/100 {
  border-right-color: rgb(23 37 84 / 1);
}

.border-r-blue-950\/15 {
  border-right-color: rgb(23 37 84 / 0.15);
}

.border-r-blue-950\/20 {
  border-right-color: rgb(23 37 84 / 0.2);
}

.border-r-blue-950\/25 {
  border-right-color: rgb(23 37 84 / 0.25);
}

.border-r-blue-950\/30 {
  border-right-color: rgb(23 37 84 / 0.3);
}

.border-r-blue-950\/35 {
  border-right-color: rgb(23 37 84 / 0.35);
}

.border-r-blue-950\/40 {
  border-right-color: rgb(23 37 84 / 0.4);
}

.border-r-blue-950\/45 {
  border-right-color: rgb(23 37 84 / 0.45);
}

.border-r-blue-950\/5 {
  border-right-color: rgb(23 37 84 / 0.05);
}

.border-r-blue-950\/50 {
  border-right-color: rgb(23 37 84 / 0.5);
}

.border-r-blue-950\/55 {
  border-right-color: rgb(23 37 84 / 0.55);
}

.border-r-blue-950\/60 {
  border-right-color: rgb(23 37 84 / 0.6);
}

.border-r-blue-950\/65 {
  border-right-color: rgb(23 37 84 / 0.65);
}

.border-r-blue-950\/70 {
  border-right-color: rgb(23 37 84 / 0.7);
}

.border-r-blue-950\/75 {
  border-right-color: rgb(23 37 84 / 0.75);
}

.border-r-blue-950\/80 {
  border-right-color: rgb(23 37 84 / 0.8);
}

.border-r-blue-950\/85 {
  border-right-color: rgb(23 37 84 / 0.85);
}

.border-r-blue-950\/90 {
  border-right-color: rgb(23 37 84 / 0.9);
}

.border-r-blue-950\/95 {
  border-right-color: rgb(23 37 84 / 0.95);
}

.border-r-current {
  border-right-color: currentColor;
}

.border-r-eva-blue {
  --tw-border-opacity: 1;
  border-right-color: rgb(26 33 62 / var(--tw-border-opacity, 1));
}

.border-r-eva-blue-appt {
  --tw-border-opacity: 1;
  border-right-color: rgba(52, 137, 207, var(--tw-border-opacity, 1));
}

.border-r-eva-blue-appt\/0 {
  border-right-color: rgba(52, 137, 207, 0);
}

.border-r-eva-blue-appt\/10 {
  border-right-color: rgba(52, 137, 207, 0.1);
}

.border-r-eva-blue-appt\/100 {
  border-right-color: rgba(52, 137, 207, 1);
}

.border-r-eva-blue-appt\/15 {
  border-right-color: rgba(52, 137, 207, 0.15);
}

.border-r-eva-blue-appt\/20 {
  border-right-color: rgba(52, 137, 207, 0.2);
}

.border-r-eva-blue-appt\/25 {
  border-right-color: rgba(52, 137, 207, 0.25);
}

.border-r-eva-blue-appt\/30 {
  border-right-color: rgba(52, 137, 207, 0.3);
}

.border-r-eva-blue-appt\/35 {
  border-right-color: rgba(52, 137, 207, 0.35);
}

.border-r-eva-blue-appt\/40 {
  border-right-color: rgba(52, 137, 207, 0.4);
}

.border-r-eva-blue-appt\/45 {
  border-right-color: rgba(52, 137, 207, 0.45);
}

.border-r-eva-blue-appt\/5 {
  border-right-color: rgba(52, 137, 207, 0.05);
}

.border-r-eva-blue-appt\/50 {
  border-right-color: rgba(52, 137, 207, 0.5);
}

.border-r-eva-blue-appt\/55 {
  border-right-color: rgba(52, 137, 207, 0.55);
}

.border-r-eva-blue-appt\/60 {
  border-right-color: rgba(52, 137, 207, 0.6);
}

.border-r-eva-blue-appt\/65 {
  border-right-color: rgba(52, 137, 207, 0.65);
}

.border-r-eva-blue-appt\/70 {
  border-right-color: rgba(52, 137, 207, 0.7);
}

.border-r-eva-blue-appt\/75 {
  border-right-color: rgba(52, 137, 207, 0.75);
}

.border-r-eva-blue-appt\/80 {
  border-right-color: rgba(52, 137, 207, 0.8);
}

.border-r-eva-blue-appt\/85 {
  border-right-color: rgba(52, 137, 207, 0.85);
}

.border-r-eva-blue-appt\/90 {
  border-right-color: rgba(52, 137, 207, 0.9);
}

.border-r-eva-blue-appt\/95 {
  border-right-color: rgba(52, 137, 207, 0.95);
}

.border-r-eva-blue-gray {
  --tw-border-opacity: 1;
  border-right-color: rgb(117 121 139 / var(--tw-border-opacity, 1));
}

.border-r-eva-blue-gray\/0 {
  border-right-color: rgb(117 121 139 / 0);
}

.border-r-eva-blue-gray\/10 {
  border-right-color: rgb(117 121 139 / 0.1);
}

.border-r-eva-blue-gray\/100 {
  border-right-color: rgb(117 121 139 / 1);
}

.border-r-eva-blue-gray\/15 {
  border-right-color: rgb(117 121 139 / 0.15);
}

.border-r-eva-blue-gray\/20 {
  border-right-color: rgb(117 121 139 / 0.2);
}

.border-r-eva-blue-gray\/25 {
  border-right-color: rgb(117 121 139 / 0.25);
}

.border-r-eva-blue-gray\/30 {
  border-right-color: rgb(117 121 139 / 0.3);
}

.border-r-eva-blue-gray\/35 {
  border-right-color: rgb(117 121 139 / 0.35);
}

.border-r-eva-blue-gray\/40 {
  border-right-color: rgb(117 121 139 / 0.4);
}

.border-r-eva-blue-gray\/45 {
  border-right-color: rgb(117 121 139 / 0.45);
}

.border-r-eva-blue-gray\/5 {
  border-right-color: rgb(117 121 139 / 0.05);
}

.border-r-eva-blue-gray\/50 {
  border-right-color: rgb(117 121 139 / 0.5);
}

.border-r-eva-blue-gray\/55 {
  border-right-color: rgb(117 121 139 / 0.55);
}

.border-r-eva-blue-gray\/60 {
  border-right-color: rgb(117 121 139 / 0.6);
}

.border-r-eva-blue-gray\/65 {
  border-right-color: rgb(117 121 139 / 0.65);
}

.border-r-eva-blue-gray\/70 {
  border-right-color: rgb(117 121 139 / 0.7);
}

.border-r-eva-blue-gray\/75 {
  border-right-color: rgb(117 121 139 / 0.75);
}

.border-r-eva-blue-gray\/80 {
  border-right-color: rgb(117 121 139 / 0.8);
}

.border-r-eva-blue-gray\/85 {
  border-right-color: rgb(117 121 139 / 0.85);
}

.border-r-eva-blue-gray\/90 {
  border-right-color: rgb(117 121 139 / 0.9);
}

.border-r-eva-blue-gray\/95 {
  border-right-color: rgb(117 121 139 / 0.95);
}

.border-r-eva-blue-hv {
  --tw-border-opacity: 1;
  border-right-color: rgb(15 18 31 / var(--tw-border-opacity, 1));
}

.border-r-eva-blue-hv\/0 {
  border-right-color: rgb(15 18 31 / 0);
}

.border-r-eva-blue-hv\/10 {
  border-right-color: rgb(15 18 31 / 0.1);
}

.border-r-eva-blue-hv\/100 {
  border-right-color: rgb(15 18 31 / 1);
}

.border-r-eva-blue-hv\/15 {
  border-right-color: rgb(15 18 31 / 0.15);
}

.border-r-eva-blue-hv\/20 {
  border-right-color: rgb(15 18 31 / 0.2);
}

.border-r-eva-blue-hv\/25 {
  border-right-color: rgb(15 18 31 / 0.25);
}

.border-r-eva-blue-hv\/30 {
  border-right-color: rgb(15 18 31 / 0.3);
}

.border-r-eva-blue-hv\/35 {
  border-right-color: rgb(15 18 31 / 0.35);
}

.border-r-eva-blue-hv\/40 {
  border-right-color: rgb(15 18 31 / 0.4);
}

.border-r-eva-blue-hv\/45 {
  border-right-color: rgb(15 18 31 / 0.45);
}

.border-r-eva-blue-hv\/5 {
  border-right-color: rgb(15 18 31 / 0.05);
}

.border-r-eva-blue-hv\/50 {
  border-right-color: rgb(15 18 31 / 0.5);
}

.border-r-eva-blue-hv\/55 {
  border-right-color: rgb(15 18 31 / 0.55);
}

.border-r-eva-blue-hv\/60 {
  border-right-color: rgb(15 18 31 / 0.6);
}

.border-r-eva-blue-hv\/65 {
  border-right-color: rgb(15 18 31 / 0.65);
}

.border-r-eva-blue-hv\/70 {
  border-right-color: rgb(15 18 31 / 0.7);
}

.border-r-eva-blue-hv\/75 {
  border-right-color: rgb(15 18 31 / 0.75);
}

.border-r-eva-blue-hv\/80 {
  border-right-color: rgb(15 18 31 / 0.8);
}

.border-r-eva-blue-hv\/85 {
  border-right-color: rgb(15 18 31 / 0.85);
}

.border-r-eva-blue-hv\/90 {
  border-right-color: rgb(15 18 31 / 0.9);
}

.border-r-eva-blue-hv\/95 {
  border-right-color: rgb(15 18 31 / 0.95);
}

.border-r-eva-blue-light {
  --tw-border-opacity: 1;
  border-right-color: rgb(48 56 81 / var(--tw-border-opacity, 1));
}

.border-r-eva-blue-light-hv {
  border-right-color: rgba(17,20,30,.3);
}

.border-r-eva-blue-light-hv\/0 {
  border-right-color: rgba(17, 20, 30, 0);
}

.border-r-eva-blue-light-hv\/10 {
  border-right-color: rgba(17, 20, 30, 0.1);
}

.border-r-eva-blue-light-hv\/100 {
  border-right-color: rgba(17, 20, 30, 1);
}

.border-r-eva-blue-light-hv\/15 {
  border-right-color: rgba(17, 20, 30, 0.15);
}

.border-r-eva-blue-light-hv\/20 {
  border-right-color: rgba(17, 20, 30, 0.2);
}

.border-r-eva-blue-light-hv\/25 {
  border-right-color: rgba(17, 20, 30, 0.25);
}

.border-r-eva-blue-light-hv\/30 {
  border-right-color: rgba(17, 20, 30, 0.3);
}

.border-r-eva-blue-light-hv\/35 {
  border-right-color: rgba(17, 20, 30, 0.35);
}

.border-r-eva-blue-light-hv\/40 {
  border-right-color: rgba(17, 20, 30, 0.4);
}

.border-r-eva-blue-light-hv\/45 {
  border-right-color: rgba(17, 20, 30, 0.45);
}

.border-r-eva-blue-light-hv\/5 {
  border-right-color: rgba(17, 20, 30, 0.05);
}

.border-r-eva-blue-light-hv\/50 {
  border-right-color: rgba(17, 20, 30, 0.5);
}

.border-r-eva-blue-light-hv\/55 {
  border-right-color: rgba(17, 20, 30, 0.55);
}

.border-r-eva-blue-light-hv\/60 {
  border-right-color: rgba(17, 20, 30, 0.6);
}

.border-r-eva-blue-light-hv\/65 {
  border-right-color: rgba(17, 20, 30, 0.65);
}

.border-r-eva-blue-light-hv\/70 {
  border-right-color: rgba(17, 20, 30, 0.7);
}

.border-r-eva-blue-light-hv\/75 {
  border-right-color: rgba(17, 20, 30, 0.75);
}

.border-r-eva-blue-light-hv\/80 {
  border-right-color: rgba(17, 20, 30, 0.8);
}

.border-r-eva-blue-light-hv\/85 {
  border-right-color: rgba(17, 20, 30, 0.85);
}

.border-r-eva-blue-light-hv\/90 {
  border-right-color: rgba(17, 20, 30, 0.9);
}

.border-r-eva-blue-light-hv\/95 {
  border-right-color: rgba(17, 20, 30, 0.95);
}

.border-r-eva-blue-light\/0 {
  border-right-color: rgb(48 56 81 / 0);
}

.border-r-eva-blue-light\/10 {
  border-right-color: rgb(48 56 81 / 0.1);
}

.border-r-eva-blue-light\/100 {
  border-right-color: rgb(48 56 81 / 1);
}

.border-r-eva-blue-light\/15 {
  border-right-color: rgb(48 56 81 / 0.15);
}

.border-r-eva-blue-light\/20 {
  border-right-color: rgb(48 56 81 / 0.2);
}

.border-r-eva-blue-light\/25 {
  border-right-color: rgb(48 56 81 / 0.25);
}

.border-r-eva-blue-light\/30 {
  border-right-color: rgb(48 56 81 / 0.3);
}

.border-r-eva-blue-light\/35 {
  border-right-color: rgb(48 56 81 / 0.35);
}

.border-r-eva-blue-light\/40 {
  border-right-color: rgb(48 56 81 / 0.4);
}

.border-r-eva-blue-light\/45 {
  border-right-color: rgb(48 56 81 / 0.45);
}

.border-r-eva-blue-light\/5 {
  border-right-color: rgb(48 56 81 / 0.05);
}

.border-r-eva-blue-light\/50 {
  border-right-color: rgb(48 56 81 / 0.5);
}

.border-r-eva-blue-light\/55 {
  border-right-color: rgb(48 56 81 / 0.55);
}

.border-r-eva-blue-light\/60 {
  border-right-color: rgb(48 56 81 / 0.6);
}

.border-r-eva-blue-light\/65 {
  border-right-color: rgb(48 56 81 / 0.65);
}

.border-r-eva-blue-light\/70 {
  border-right-color: rgb(48 56 81 / 0.7);
}

.border-r-eva-blue-light\/75 {
  border-right-color: rgb(48 56 81 / 0.75);
}

.border-r-eva-blue-light\/80 {
  border-right-color: rgb(48 56 81 / 0.8);
}

.border-r-eva-blue-light\/85 {
  border-right-color: rgb(48 56 81 / 0.85);
}

.border-r-eva-blue-light\/90 {
  border-right-color: rgb(48 56 81 / 0.9);
}

.border-r-eva-blue-light\/95 {
  border-right-color: rgb(48 56 81 / 0.95);
}

.border-r-eva-blue\/0 {
  border-right-color: rgb(26 33 62 / 0);
}

.border-r-eva-blue\/10 {
  border-right-color: rgb(26 33 62 / 0.1);
}

.border-r-eva-blue\/100 {
  border-right-color: rgb(26 33 62 / 1);
}

.border-r-eva-blue\/15 {
  border-right-color: rgb(26 33 62 / 0.15);
}

.border-r-eva-blue\/20 {
  border-right-color: rgb(26 33 62 / 0.2);
}

.border-r-eva-blue\/25 {
  border-right-color: rgb(26 33 62 / 0.25);
}

.border-r-eva-blue\/30 {
  border-right-color: rgb(26 33 62 / 0.3);
}

.border-r-eva-blue\/35 {
  border-right-color: rgb(26 33 62 / 0.35);
}

.border-r-eva-blue\/40 {
  border-right-color: rgb(26 33 62 / 0.4);
}

.border-r-eva-blue\/45 {
  border-right-color: rgb(26 33 62 / 0.45);
}

.border-r-eva-blue\/5 {
  border-right-color: rgb(26 33 62 / 0.05);
}

.border-r-eva-blue\/50 {
  border-right-color: rgb(26 33 62 / 0.5);
}

.border-r-eva-blue\/55 {
  border-right-color: rgb(26 33 62 / 0.55);
}

.border-r-eva-blue\/60 {
  border-right-color: rgb(26 33 62 / 0.6);
}

.border-r-eva-blue\/65 {
  border-right-color: rgb(26 33 62 / 0.65);
}

.border-r-eva-blue\/70 {
  border-right-color: rgb(26 33 62 / 0.7);
}

.border-r-eva-blue\/75 {
  border-right-color: rgb(26 33 62 / 0.75);
}

.border-r-eva-blue\/80 {
  border-right-color: rgb(26 33 62 / 0.8);
}

.border-r-eva-blue\/85 {
  border-right-color: rgb(26 33 62 / 0.85);
}

.border-r-eva-blue\/90 {
  border-right-color: rgb(26 33 62 / 0.9);
}

.border-r-eva-blue\/95 {
  border-right-color: rgb(26 33 62 / 0.95);
}

.border-r-eva-brown-appt {
  border-right-color: rgba(99, 93, 94, 1);
}

.border-r-eva-brown-appt\/0 {
  border-right-color: rgba(99, 93, 94, 0);
}

.border-r-eva-brown-appt\/10 {
  border-right-color: rgba(99, 93, 94, 0.1);
}

.border-r-eva-brown-appt\/100 {
  border-right-color: rgba(99, 93, 94, 1);
}

.border-r-eva-brown-appt\/15 {
  border-right-color: rgba(99, 93, 94, 0.15);
}

.border-r-eva-brown-appt\/20 {
  border-right-color: rgba(99, 93, 94, 0.2);
}

.border-r-eva-brown-appt\/25 {
  border-right-color: rgba(99, 93, 94, 0.25);
}

.border-r-eva-brown-appt\/30 {
  border-right-color: rgba(99, 93, 94, 0.3);
}

.border-r-eva-brown-appt\/35 {
  border-right-color: rgba(99, 93, 94, 0.35);
}

.border-r-eva-brown-appt\/40 {
  border-right-color: rgba(99, 93, 94, 0.4);
}

.border-r-eva-brown-appt\/45 {
  border-right-color: rgba(99, 93, 94, 0.45);
}

.border-r-eva-brown-appt\/5 {
  border-right-color: rgba(99, 93, 94, 0.05);
}

.border-r-eva-brown-appt\/50 {
  border-right-color: rgba(99, 93, 94, 0.5);
}

.border-r-eva-brown-appt\/55 {
  border-right-color: rgba(99, 93, 94, 0.55);
}

.border-r-eva-brown-appt\/60 {
  border-right-color: rgba(99, 93, 94, 0.6);
}

.border-r-eva-brown-appt\/65 {
  border-right-color: rgba(99, 93, 94, 0.65);
}

.border-r-eva-brown-appt\/70 {
  border-right-color: rgba(99, 93, 94, 0.7);
}

.border-r-eva-brown-appt\/75 {
  border-right-color: rgba(99, 93, 94, 0.75);
}

.border-r-eva-brown-appt\/80 {
  border-right-color: rgba(99, 93, 94, 0.8);
}

.border-r-eva-brown-appt\/85 {
  border-right-color: rgba(99, 93, 94, 0.85);
}

.border-r-eva-brown-appt\/90 {
  border-right-color: rgba(99, 93, 94, 0.9);
}

.border-r-eva-brown-appt\/95 {
  border-right-color: rgba(99, 93, 94, 0.95);
}

.border-r-eva-dark-green-appt {
  border-right-color: rgba(102, 188, 130, 1);
}

.border-r-eva-dark-green-appt\/0 {
  border-right-color: rgba(102, 188, 130, 0);
}

.border-r-eva-dark-green-appt\/10 {
  border-right-color: rgba(102, 188, 130, 0.1);
}

.border-r-eva-dark-green-appt\/100 {
  border-right-color: rgba(102, 188, 130, 1);
}

.border-r-eva-dark-green-appt\/15 {
  border-right-color: rgba(102, 188, 130, 0.15);
}

.border-r-eva-dark-green-appt\/20 {
  border-right-color: rgba(102, 188, 130, 0.2);
}

.border-r-eva-dark-green-appt\/25 {
  border-right-color: rgba(102, 188, 130, 0.25);
}

.border-r-eva-dark-green-appt\/30 {
  border-right-color: rgba(102, 188, 130, 0.3);
}

.border-r-eva-dark-green-appt\/35 {
  border-right-color: rgba(102, 188, 130, 0.35);
}

.border-r-eva-dark-green-appt\/40 {
  border-right-color: rgba(102, 188, 130, 0.4);
}

.border-r-eva-dark-green-appt\/45 {
  border-right-color: rgba(102, 188, 130, 0.45);
}

.border-r-eva-dark-green-appt\/5 {
  border-right-color: rgba(102, 188, 130, 0.05);
}

.border-r-eva-dark-green-appt\/50 {
  border-right-color: rgba(102, 188, 130, 0.5);
}

.border-r-eva-dark-green-appt\/55 {
  border-right-color: rgba(102, 188, 130, 0.55);
}

.border-r-eva-dark-green-appt\/60 {
  border-right-color: rgba(102, 188, 130, 0.6);
}

.border-r-eva-dark-green-appt\/65 {
  border-right-color: rgba(102, 188, 130, 0.65);
}

.border-r-eva-dark-green-appt\/70 {
  border-right-color: rgba(102, 188, 130, 0.7);
}

.border-r-eva-dark-green-appt\/75 {
  border-right-color: rgba(102, 188, 130, 0.75);
}

.border-r-eva-dark-green-appt\/80 {
  border-right-color: rgba(102, 188, 130, 0.8);
}

.border-r-eva-dark-green-appt\/85 {
  border-right-color: rgba(102, 188, 130, 0.85);
}

.border-r-eva-dark-green-appt\/90 {
  border-right-color: rgba(102, 188, 130, 0.9);
}

.border-r-eva-dark-green-appt\/95 {
  border-right-color: rgba(102, 188, 130, 0.95);
}

.border-r-eva-dark-red-appt {
  border-right-color: rgba(198, 102, 94, 1);
}

.border-r-eva-dark-red-appt\/0 {
  border-right-color: rgba(198, 102, 94, 0);
}

.border-r-eva-dark-red-appt\/10 {
  border-right-color: rgba(198, 102, 94, 0.1);
}

.border-r-eva-dark-red-appt\/100 {
  border-right-color: rgba(198, 102, 94, 1);
}

.border-r-eva-dark-red-appt\/15 {
  border-right-color: rgba(198, 102, 94, 0.15);
}

.border-r-eva-dark-red-appt\/20 {
  border-right-color: rgba(198, 102, 94, 0.2);
}

.border-r-eva-dark-red-appt\/25 {
  border-right-color: rgba(198, 102, 94, 0.25);
}

.border-r-eva-dark-red-appt\/30 {
  border-right-color: rgba(198, 102, 94, 0.3);
}

.border-r-eva-dark-red-appt\/35 {
  border-right-color: rgba(198, 102, 94, 0.35);
}

.border-r-eva-dark-red-appt\/40 {
  border-right-color: rgba(198, 102, 94, 0.4);
}

.border-r-eva-dark-red-appt\/45 {
  border-right-color: rgba(198, 102, 94, 0.45);
}

.border-r-eva-dark-red-appt\/5 {
  border-right-color: rgba(198, 102, 94, 0.05);
}

.border-r-eva-dark-red-appt\/50 {
  border-right-color: rgba(198, 102, 94, 0.5);
}

.border-r-eva-dark-red-appt\/55 {
  border-right-color: rgba(198, 102, 94, 0.55);
}

.border-r-eva-dark-red-appt\/60 {
  border-right-color: rgba(198, 102, 94, 0.6);
}

.border-r-eva-dark-red-appt\/65 {
  border-right-color: rgba(198, 102, 94, 0.65);
}

.border-r-eva-dark-red-appt\/70 {
  border-right-color: rgba(198, 102, 94, 0.7);
}

.border-r-eva-dark-red-appt\/75 {
  border-right-color: rgba(198, 102, 94, 0.75);
}

.border-r-eva-dark-red-appt\/80 {
  border-right-color: rgba(198, 102, 94, 0.8);
}

.border-r-eva-dark-red-appt\/85 {
  border-right-color: rgba(198, 102, 94, 0.85);
}

.border-r-eva-dark-red-appt\/90 {
  border-right-color: rgba(198, 102, 94, 0.9);
}

.border-r-eva-dark-red-appt\/95 {
  border-right-color: rgba(198, 102, 94, 0.95);
}

.border-r-eva-green {
  --tw-border-opacity: 1;
  border-right-color: rgb(73 181 168 / var(--tw-border-opacity, 1));
}

.border-r-eva-green-appt {
  --tw-border-opacity: 1;
  border-right-color: rgba(128, 215, 109, var(--tw-border-opacity, 1));
}

.border-r-eva-green-appt\/0 {
  border-right-color: rgba(128, 215, 109, 0);
}

.border-r-eva-green-appt\/10 {
  border-right-color: rgba(128, 215, 109, 0.1);
}

.border-r-eva-green-appt\/100 {
  border-right-color: rgba(128, 215, 109, 1);
}

.border-r-eva-green-appt\/15 {
  border-right-color: rgba(128, 215, 109, 0.15);
}

.border-r-eva-green-appt\/20 {
  border-right-color: rgba(128, 215, 109, 0.2);
}

.border-r-eva-green-appt\/25 {
  border-right-color: rgba(128, 215, 109, 0.25);
}

.border-r-eva-green-appt\/30 {
  border-right-color: rgba(128, 215, 109, 0.3);
}

.border-r-eva-green-appt\/35 {
  border-right-color: rgba(128, 215, 109, 0.35);
}

.border-r-eva-green-appt\/40 {
  border-right-color: rgba(128, 215, 109, 0.4);
}

.border-r-eva-green-appt\/45 {
  border-right-color: rgba(128, 215, 109, 0.45);
}

.border-r-eva-green-appt\/5 {
  border-right-color: rgba(128, 215, 109, 0.05);
}

.border-r-eva-green-appt\/50 {
  border-right-color: rgba(128, 215, 109, 0.5);
}

.border-r-eva-green-appt\/55 {
  border-right-color: rgba(128, 215, 109, 0.55);
}

.border-r-eva-green-appt\/60 {
  border-right-color: rgba(128, 215, 109, 0.6);
}

.border-r-eva-green-appt\/65 {
  border-right-color: rgba(128, 215, 109, 0.65);
}

.border-r-eva-green-appt\/70 {
  border-right-color: rgba(128, 215, 109, 0.7);
}

.border-r-eva-green-appt\/75 {
  border-right-color: rgba(128, 215, 109, 0.75);
}

.border-r-eva-green-appt\/80 {
  border-right-color: rgba(128, 215, 109, 0.8);
}

.border-r-eva-green-appt\/85 {
  border-right-color: rgba(128, 215, 109, 0.85);
}

.border-r-eva-green-appt\/90 {
  border-right-color: rgba(128, 215, 109, 0.9);
}

.border-r-eva-green-appt\/95 {
  border-right-color: rgba(128, 215, 109, 0.95);
}

.border-r-eva-green-brown-appt {
  border-right-color: rgba(197, 191, 140, 1);
}

.border-r-eva-green-brown-appt\/0 {
  border-right-color: rgba(197, 191, 140, 0);
}

.border-r-eva-green-brown-appt\/10 {
  border-right-color: rgba(197, 191, 140, 0.1);
}

.border-r-eva-green-brown-appt\/100 {
  border-right-color: rgba(197, 191, 140, 1);
}

.border-r-eva-green-brown-appt\/15 {
  border-right-color: rgba(197, 191, 140, 0.15);
}

.border-r-eva-green-brown-appt\/20 {
  border-right-color: rgba(197, 191, 140, 0.2);
}

.border-r-eva-green-brown-appt\/25 {
  border-right-color: rgba(197, 191, 140, 0.25);
}

.border-r-eva-green-brown-appt\/30 {
  border-right-color: rgba(197, 191, 140, 0.3);
}

.border-r-eva-green-brown-appt\/35 {
  border-right-color: rgba(197, 191, 140, 0.35);
}

.border-r-eva-green-brown-appt\/40 {
  border-right-color: rgba(197, 191, 140, 0.4);
}

.border-r-eva-green-brown-appt\/45 {
  border-right-color: rgba(197, 191, 140, 0.45);
}

.border-r-eva-green-brown-appt\/5 {
  border-right-color: rgba(197, 191, 140, 0.05);
}

.border-r-eva-green-brown-appt\/50 {
  border-right-color: rgba(197, 191, 140, 0.5);
}

.border-r-eva-green-brown-appt\/55 {
  border-right-color: rgba(197, 191, 140, 0.55);
}

.border-r-eva-green-brown-appt\/60 {
  border-right-color: rgba(197, 191, 140, 0.6);
}

.border-r-eva-green-brown-appt\/65 {
  border-right-color: rgba(197, 191, 140, 0.65);
}

.border-r-eva-green-brown-appt\/70 {
  border-right-color: rgba(197, 191, 140, 0.7);
}

.border-r-eva-green-brown-appt\/75 {
  border-right-color: rgba(197, 191, 140, 0.75);
}

.border-r-eva-green-brown-appt\/80 {
  border-right-color: rgba(197, 191, 140, 0.8);
}

.border-r-eva-green-brown-appt\/85 {
  border-right-color: rgba(197, 191, 140, 0.85);
}

.border-r-eva-green-brown-appt\/90 {
  border-right-color: rgba(197, 191, 140, 0.9);
}

.border-r-eva-green-brown-appt\/95 {
  border-right-color: rgba(197, 191, 140, 0.95);
}

.border-r-eva-green-hv {
  --tw-border-opacity: 1;
  border-right-color: rgb(63 156 144 / var(--tw-border-opacity, 1));
}

.border-r-eva-green-hv\/0 {
  border-right-color: rgb(63 156 144 / 0);
}

.border-r-eva-green-hv\/10 {
  border-right-color: rgb(63 156 144 / 0.1);
}

.border-r-eva-green-hv\/100 {
  border-right-color: rgb(63 156 144 / 1);
}

.border-r-eva-green-hv\/15 {
  border-right-color: rgb(63 156 144 / 0.15);
}

.border-r-eva-green-hv\/20 {
  border-right-color: rgb(63 156 144 / 0.2);
}

.border-r-eva-green-hv\/25 {
  border-right-color: rgb(63 156 144 / 0.25);
}

.border-r-eva-green-hv\/30 {
  border-right-color: rgb(63 156 144 / 0.3);
}

.border-r-eva-green-hv\/35 {
  border-right-color: rgb(63 156 144 / 0.35);
}

.border-r-eva-green-hv\/40 {
  border-right-color: rgb(63 156 144 / 0.4);
}

.border-r-eva-green-hv\/45 {
  border-right-color: rgb(63 156 144 / 0.45);
}

.border-r-eva-green-hv\/5 {
  border-right-color: rgb(63 156 144 / 0.05);
}

.border-r-eva-green-hv\/50 {
  border-right-color: rgb(63 156 144 / 0.5);
}

.border-r-eva-green-hv\/55 {
  border-right-color: rgb(63 156 144 / 0.55);
}

.border-r-eva-green-hv\/60 {
  border-right-color: rgb(63 156 144 / 0.6);
}

.border-r-eva-green-hv\/65 {
  border-right-color: rgb(63 156 144 / 0.65);
}

.border-r-eva-green-hv\/70 {
  border-right-color: rgb(63 156 144 / 0.7);
}

.border-r-eva-green-hv\/75 {
  border-right-color: rgb(63 156 144 / 0.75);
}

.border-r-eva-green-hv\/80 {
  border-right-color: rgb(63 156 144 / 0.8);
}

.border-r-eva-green-hv\/85 {
  border-right-color: rgb(63 156 144 / 0.85);
}

.border-r-eva-green-hv\/90 {
  border-right-color: rgb(63 156 144 / 0.9);
}

.border-r-eva-green-hv\/95 {
  border-right-color: rgb(63 156 144 / 0.95);
}

.border-r-eva-green\/0 {
  border-right-color: rgb(73 181 168 / 0);
}

.border-r-eva-green\/10 {
  border-right-color: rgb(73 181 168 / 0.1);
}

.border-r-eva-green\/100 {
  border-right-color: rgb(73 181 168 / 1);
}

.border-r-eva-green\/15 {
  border-right-color: rgb(73 181 168 / 0.15);
}

.border-r-eva-green\/20 {
  border-right-color: rgb(73 181 168 / 0.2);
}

.border-r-eva-green\/25 {
  border-right-color: rgb(73 181 168 / 0.25);
}

.border-r-eva-green\/30 {
  border-right-color: rgb(73 181 168 / 0.3);
}

.border-r-eva-green\/35 {
  border-right-color: rgb(73 181 168 / 0.35);
}

.border-r-eva-green\/40 {
  border-right-color: rgb(73 181 168 / 0.4);
}

.border-r-eva-green\/45 {
  border-right-color: rgb(73 181 168 / 0.45);
}

.border-r-eva-green\/5 {
  border-right-color: rgb(73 181 168 / 0.05);
}

.border-r-eva-green\/50 {
  border-right-color: rgb(73 181 168 / 0.5);
}

.border-r-eva-green\/55 {
  border-right-color: rgb(73 181 168 / 0.55);
}

.border-r-eva-green\/60 {
  border-right-color: rgb(73 181 168 / 0.6);
}

.border-r-eva-green\/65 {
  border-right-color: rgb(73 181 168 / 0.65);
}

.border-r-eva-green\/70 {
  border-right-color: rgb(73 181 168 / 0.7);
}

.border-r-eva-green\/75 {
  border-right-color: rgb(73 181 168 / 0.75);
}

.border-r-eva-green\/80 {
  border-right-color: rgb(73 181 168 / 0.8);
}

.border-r-eva-green\/85 {
  border-right-color: rgb(73 181 168 / 0.85);
}

.border-r-eva-green\/90 {
  border-right-color: rgb(73 181 168 / 0.9);
}

.border-r-eva-green\/95 {
  border-right-color: rgb(73 181 168 / 0.95);
}

.border-r-eva-lavender-appt {
  border-right-color: rgba(169, 124, 165, 1);
}

.border-r-eva-lavender-appt\/0 {
  border-right-color: rgba(169, 124, 165, 0);
}

.border-r-eva-lavender-appt\/10 {
  border-right-color: rgba(169, 124, 165, 0.1);
}

.border-r-eva-lavender-appt\/100 {
  border-right-color: rgba(169, 124, 165, 1);
}

.border-r-eva-lavender-appt\/15 {
  border-right-color: rgba(169, 124, 165, 0.15);
}

.border-r-eva-lavender-appt\/20 {
  border-right-color: rgba(169, 124, 165, 0.2);
}

.border-r-eva-lavender-appt\/25 {
  border-right-color: rgba(169, 124, 165, 0.25);
}

.border-r-eva-lavender-appt\/30 {
  border-right-color: rgba(169, 124, 165, 0.3);
}

.border-r-eva-lavender-appt\/35 {
  border-right-color: rgba(169, 124, 165, 0.35);
}

.border-r-eva-lavender-appt\/40 {
  border-right-color: rgba(169, 124, 165, 0.4);
}

.border-r-eva-lavender-appt\/45 {
  border-right-color: rgba(169, 124, 165, 0.45);
}

.border-r-eva-lavender-appt\/5 {
  border-right-color: rgba(169, 124, 165, 0.05);
}

.border-r-eva-lavender-appt\/50 {
  border-right-color: rgba(169, 124, 165, 0.5);
}

.border-r-eva-lavender-appt\/55 {
  border-right-color: rgba(169, 124, 165, 0.55);
}

.border-r-eva-lavender-appt\/60 {
  border-right-color: rgba(169, 124, 165, 0.6);
}

.border-r-eva-lavender-appt\/65 {
  border-right-color: rgba(169, 124, 165, 0.65);
}

.border-r-eva-lavender-appt\/70 {
  border-right-color: rgba(169, 124, 165, 0.7);
}

.border-r-eva-lavender-appt\/75 {
  border-right-color: rgba(169, 124, 165, 0.75);
}

.border-r-eva-lavender-appt\/80 {
  border-right-color: rgba(169, 124, 165, 0.8);
}

.border-r-eva-lavender-appt\/85 {
  border-right-color: rgba(169, 124, 165, 0.85);
}

.border-r-eva-lavender-appt\/90 {
  border-right-color: rgba(169, 124, 165, 0.9);
}

.border-r-eva-lavender-appt\/95 {
  border-right-color: rgba(169, 124, 165, 0.95);
}

.border-r-eva-magenta-appt {
  border-right-color: rgba(223, 91, 146, 1);
}

.border-r-eva-magenta-appt\/0 {
  border-right-color: rgba(223, 91, 146, 0);
}

.border-r-eva-magenta-appt\/10 {
  border-right-color: rgba(223, 91, 146, 0.1);
}

.border-r-eva-magenta-appt\/100 {
  border-right-color: rgba(223, 91, 146, 1);
}

.border-r-eva-magenta-appt\/15 {
  border-right-color: rgba(223, 91, 146, 0.15);
}

.border-r-eva-magenta-appt\/20 {
  border-right-color: rgba(223, 91, 146, 0.2);
}

.border-r-eva-magenta-appt\/25 {
  border-right-color: rgba(223, 91, 146, 0.25);
}

.border-r-eva-magenta-appt\/30 {
  border-right-color: rgba(223, 91, 146, 0.3);
}

.border-r-eva-magenta-appt\/35 {
  border-right-color: rgba(223, 91, 146, 0.35);
}

.border-r-eva-magenta-appt\/40 {
  border-right-color: rgba(223, 91, 146, 0.4);
}

.border-r-eva-magenta-appt\/45 {
  border-right-color: rgba(223, 91, 146, 0.45);
}

.border-r-eva-magenta-appt\/5 {
  border-right-color: rgba(223, 91, 146, 0.05);
}

.border-r-eva-magenta-appt\/50 {
  border-right-color: rgba(223, 91, 146, 0.5);
}

.border-r-eva-magenta-appt\/55 {
  border-right-color: rgba(223, 91, 146, 0.55);
}

.border-r-eva-magenta-appt\/60 {
  border-right-color: rgba(223, 91, 146, 0.6);
}

.border-r-eva-magenta-appt\/65 {
  border-right-color: rgba(223, 91, 146, 0.65);
}

.border-r-eva-magenta-appt\/70 {
  border-right-color: rgba(223, 91, 146, 0.7);
}

.border-r-eva-magenta-appt\/75 {
  border-right-color: rgba(223, 91, 146, 0.75);
}

.border-r-eva-magenta-appt\/80 {
  border-right-color: rgba(223, 91, 146, 0.8);
}

.border-r-eva-magenta-appt\/85 {
  border-right-color: rgba(223, 91, 146, 0.85);
}

.border-r-eva-magenta-appt\/90 {
  border-right-color: rgba(223, 91, 146, 0.9);
}

.border-r-eva-magenta-appt\/95 {
  border-right-color: rgba(223, 91, 146, 0.95);
}

.border-r-eva-orange-appt {
  border-right-color: rgba(232, 176, 99, 1);
}

.border-r-eva-orange-appt\/0 {
  border-right-color: rgba(232, 176, 99, 0);
}

.border-r-eva-orange-appt\/10 {
  border-right-color: rgba(232, 176, 99, 0.1);
}

.border-r-eva-orange-appt\/100 {
  border-right-color: rgba(232, 176, 99, 1);
}

.border-r-eva-orange-appt\/15 {
  border-right-color: rgba(232, 176, 99, 0.15);
}

.border-r-eva-orange-appt\/20 {
  border-right-color: rgba(232, 176, 99, 0.2);
}

.border-r-eva-orange-appt\/25 {
  border-right-color: rgba(232, 176, 99, 0.25);
}

.border-r-eva-orange-appt\/30 {
  border-right-color: rgba(232, 176, 99, 0.3);
}

.border-r-eva-orange-appt\/35 {
  border-right-color: rgba(232, 176, 99, 0.35);
}

.border-r-eva-orange-appt\/40 {
  border-right-color: rgba(232, 176, 99, 0.4);
}

.border-r-eva-orange-appt\/45 {
  border-right-color: rgba(232, 176, 99, 0.45);
}

.border-r-eva-orange-appt\/5 {
  border-right-color: rgba(232, 176, 99, 0.05);
}

.border-r-eva-orange-appt\/50 {
  border-right-color: rgba(232, 176, 99, 0.5);
}

.border-r-eva-orange-appt\/55 {
  border-right-color: rgba(232, 176, 99, 0.55);
}

.border-r-eva-orange-appt\/60 {
  border-right-color: rgba(232, 176, 99, 0.6);
}

.border-r-eva-orange-appt\/65 {
  border-right-color: rgba(232, 176, 99, 0.65);
}

.border-r-eva-orange-appt\/70 {
  border-right-color: rgba(232, 176, 99, 0.7);
}

.border-r-eva-orange-appt\/75 {
  border-right-color: rgba(232, 176, 99, 0.75);
}

.border-r-eva-orange-appt\/80 {
  border-right-color: rgba(232, 176, 99, 0.8);
}

.border-r-eva-orange-appt\/85 {
  border-right-color: rgba(232, 176, 99, 0.85);
}

.border-r-eva-orange-appt\/90 {
  border-right-color: rgba(232, 176, 99, 0.9);
}

.border-r-eva-orange-appt\/95 {
  border-right-color: rgba(232, 176, 99, 0.95);
}

.border-r-eva-purple-appt {
  border-right-color: rgba(125, 117, 164, 1);
}

.border-r-eva-purple-appt\/0 {
  border-right-color: rgba(125, 117, 164, 0);
}

.border-r-eva-purple-appt\/10 {
  border-right-color: rgba(125, 117, 164, 0.1);
}

.border-r-eva-purple-appt\/100 {
  border-right-color: rgba(125, 117, 164, 1);
}

.border-r-eva-purple-appt\/15 {
  border-right-color: rgba(125, 117, 164, 0.15);
}

.border-r-eva-purple-appt\/20 {
  border-right-color: rgba(125, 117, 164, 0.2);
}

.border-r-eva-purple-appt\/25 {
  border-right-color: rgba(125, 117, 164, 0.25);
}

.border-r-eva-purple-appt\/30 {
  border-right-color: rgba(125, 117, 164, 0.3);
}

.border-r-eva-purple-appt\/35 {
  border-right-color: rgba(125, 117, 164, 0.35);
}

.border-r-eva-purple-appt\/40 {
  border-right-color: rgba(125, 117, 164, 0.4);
}

.border-r-eva-purple-appt\/45 {
  border-right-color: rgba(125, 117, 164, 0.45);
}

.border-r-eva-purple-appt\/5 {
  border-right-color: rgba(125, 117, 164, 0.05);
}

.border-r-eva-purple-appt\/50 {
  border-right-color: rgba(125, 117, 164, 0.5);
}

.border-r-eva-purple-appt\/55 {
  border-right-color: rgba(125, 117, 164, 0.55);
}

.border-r-eva-purple-appt\/60 {
  border-right-color: rgba(125, 117, 164, 0.6);
}

.border-r-eva-purple-appt\/65 {
  border-right-color: rgba(125, 117, 164, 0.65);
}

.border-r-eva-purple-appt\/70 {
  border-right-color: rgba(125, 117, 164, 0.7);
}

.border-r-eva-purple-appt\/75 {
  border-right-color: rgba(125, 117, 164, 0.75);
}

.border-r-eva-purple-appt\/80 {
  border-right-color: rgba(125, 117, 164, 0.8);
}

.border-r-eva-purple-appt\/85 {
  border-right-color: rgba(125, 117, 164, 0.85);
}

.border-r-eva-purple-appt\/90 {
  border-right-color: rgba(125, 117, 164, 0.9);
}

.border-r-eva-purple-appt\/95 {
  border-right-color: rgba(125, 117, 164, 0.95);
}

.border-r-eva-red {
  --tw-border-opacity: 1;
  border-right-color: rgb(234 101 101 / var(--tw-border-opacity, 1));
}

.border-r-eva-red-appt {
  border-right-color: rgba(243, 63, 77, 1);
}

.border-r-eva-red-appt\/0 {
  border-right-color: rgba(243, 63, 77, 0);
}

.border-r-eva-red-appt\/10 {
  border-right-color: rgba(243, 63, 77, 0.1);
}

.border-r-eva-red-appt\/100 {
  border-right-color: rgba(243, 63, 77, 1);
}

.border-r-eva-red-appt\/15 {
  border-right-color: rgba(243, 63, 77, 0.15);
}

.border-r-eva-red-appt\/20 {
  border-right-color: rgba(243, 63, 77, 0.2);
}

.border-r-eva-red-appt\/25 {
  border-right-color: rgba(243, 63, 77, 0.25);
}

.border-r-eva-red-appt\/30 {
  border-right-color: rgba(243, 63, 77, 0.3);
}

.border-r-eva-red-appt\/35 {
  border-right-color: rgba(243, 63, 77, 0.35);
}

.border-r-eva-red-appt\/40 {
  border-right-color: rgba(243, 63, 77, 0.4);
}

.border-r-eva-red-appt\/45 {
  border-right-color: rgba(243, 63, 77, 0.45);
}

.border-r-eva-red-appt\/5 {
  border-right-color: rgba(243, 63, 77, 0.05);
}

.border-r-eva-red-appt\/50 {
  border-right-color: rgba(243, 63, 77, 0.5);
}

.border-r-eva-red-appt\/55 {
  border-right-color: rgba(243, 63, 77, 0.55);
}

.border-r-eva-red-appt\/60 {
  border-right-color: rgba(243, 63, 77, 0.6);
}

.border-r-eva-red-appt\/65 {
  border-right-color: rgba(243, 63, 77, 0.65);
}

.border-r-eva-red-appt\/70 {
  border-right-color: rgba(243, 63, 77, 0.7);
}

.border-r-eva-red-appt\/75 {
  border-right-color: rgba(243, 63, 77, 0.75);
}

.border-r-eva-red-appt\/80 {
  border-right-color: rgba(243, 63, 77, 0.8);
}

.border-r-eva-red-appt\/85 {
  border-right-color: rgba(243, 63, 77, 0.85);
}

.border-r-eva-red-appt\/90 {
  border-right-color: rgba(243, 63, 77, 0.9);
}

.border-r-eva-red-appt\/95 {
  border-right-color: rgba(243, 63, 77, 0.95);
}

.border-r-eva-red-orange-appt {
  border-right-color: rgba(217, 154, 118, 1);
}

.border-r-eva-red-orange-appt\/0 {
  border-right-color: rgba(217, 154, 118, 0);
}

.border-r-eva-red-orange-appt\/10 {
  border-right-color: rgba(217, 154, 118, 0.1);
}

.border-r-eva-red-orange-appt\/100 {
  border-right-color: rgba(217, 154, 118, 1);
}

.border-r-eva-red-orange-appt\/15 {
  border-right-color: rgba(217, 154, 118, 0.15);
}

.border-r-eva-red-orange-appt\/20 {
  border-right-color: rgba(217, 154, 118, 0.2);
}

.border-r-eva-red-orange-appt\/25 {
  border-right-color: rgba(217, 154, 118, 0.25);
}

.border-r-eva-red-orange-appt\/30 {
  border-right-color: rgba(217, 154, 118, 0.3);
}

.border-r-eva-red-orange-appt\/35 {
  border-right-color: rgba(217, 154, 118, 0.35);
}

.border-r-eva-red-orange-appt\/40 {
  border-right-color: rgba(217, 154, 118, 0.4);
}

.border-r-eva-red-orange-appt\/45 {
  border-right-color: rgba(217, 154, 118, 0.45);
}

.border-r-eva-red-orange-appt\/5 {
  border-right-color: rgba(217, 154, 118, 0.05);
}

.border-r-eva-red-orange-appt\/50 {
  border-right-color: rgba(217, 154, 118, 0.5);
}

.border-r-eva-red-orange-appt\/55 {
  border-right-color: rgba(217, 154, 118, 0.55);
}

.border-r-eva-red-orange-appt\/60 {
  border-right-color: rgba(217, 154, 118, 0.6);
}

.border-r-eva-red-orange-appt\/65 {
  border-right-color: rgba(217, 154, 118, 0.65);
}

.border-r-eva-red-orange-appt\/70 {
  border-right-color: rgba(217, 154, 118, 0.7);
}

.border-r-eva-red-orange-appt\/75 {
  border-right-color: rgba(217, 154, 118, 0.75);
}

.border-r-eva-red-orange-appt\/80 {
  border-right-color: rgba(217, 154, 118, 0.8);
}

.border-r-eva-red-orange-appt\/85 {
  border-right-color: rgba(217, 154, 118, 0.85);
}

.border-r-eva-red-orange-appt\/90 {
  border-right-color: rgba(217, 154, 118, 0.9);
}

.border-r-eva-red-orange-appt\/95 {
  border-right-color: rgba(217, 154, 118, 0.95);
}

.border-r-eva-red\/0 {
  border-right-color: rgb(234 101 101 / 0);
}

.border-r-eva-red\/10 {
  border-right-color: rgb(234 101 101 / 0.1);
}

.border-r-eva-red\/100 {
  border-right-color: rgb(234 101 101 / 1);
}

.border-r-eva-red\/15 {
  border-right-color: rgb(234 101 101 / 0.15);
}

.border-r-eva-red\/20 {
  border-right-color: rgb(234 101 101 / 0.2);
}

.border-r-eva-red\/25 {
  border-right-color: rgb(234 101 101 / 0.25);
}

.border-r-eva-red\/30 {
  border-right-color: rgb(234 101 101 / 0.3);
}

.border-r-eva-red\/35 {
  border-right-color: rgb(234 101 101 / 0.35);
}

.border-r-eva-red\/40 {
  border-right-color: rgb(234 101 101 / 0.4);
}

.border-r-eva-red\/45 {
  border-right-color: rgb(234 101 101 / 0.45);
}

.border-r-eva-red\/5 {
  border-right-color: rgb(234 101 101 / 0.05);
}

.border-r-eva-red\/50 {
  border-right-color: rgb(234 101 101 / 0.5);
}

.border-r-eva-red\/55 {
  border-right-color: rgb(234 101 101 / 0.55);
}

.border-r-eva-red\/60 {
  border-right-color: rgb(234 101 101 / 0.6);
}

.border-r-eva-red\/65 {
  border-right-color: rgb(234 101 101 / 0.65);
}

.border-r-eva-red\/70 {
  border-right-color: rgb(234 101 101 / 0.7);
}

.border-r-eva-red\/75 {
  border-right-color: rgb(234 101 101 / 0.75);
}

.border-r-eva-red\/80 {
  border-right-color: rgb(234 101 101 / 0.8);
}

.border-r-eva-red\/85 {
  border-right-color: rgb(234 101 101 / 0.85);
}

.border-r-eva-red\/90 {
  border-right-color: rgb(234 101 101 / 0.9);
}

.border-r-eva-red\/95 {
  border-right-color: rgb(234 101 101 / 0.95);
}

.border-r-eva-teal-appt {
  --tw-border-opacity: 1;
  border-right-color: rgba(22, 172, 151, var(--tw-border-opacity, 1));
}

.border-r-eva-teal-appt\/0 {
  border-right-color: rgba(22, 172, 151, 0);
}

.border-r-eva-teal-appt\/10 {
  border-right-color: rgba(22, 172, 151, 0.1);
}

.border-r-eva-teal-appt\/100 {
  border-right-color: rgba(22, 172, 151, 1);
}

.border-r-eva-teal-appt\/15 {
  border-right-color: rgba(22, 172, 151, 0.15);
}

.border-r-eva-teal-appt\/20 {
  border-right-color: rgba(22, 172, 151, 0.2);
}

.border-r-eva-teal-appt\/25 {
  border-right-color: rgba(22, 172, 151, 0.25);
}

.border-r-eva-teal-appt\/30 {
  border-right-color: rgba(22, 172, 151, 0.3);
}

.border-r-eva-teal-appt\/35 {
  border-right-color: rgba(22, 172, 151, 0.35);
}

.border-r-eva-teal-appt\/40 {
  border-right-color: rgba(22, 172, 151, 0.4);
}

.border-r-eva-teal-appt\/45 {
  border-right-color: rgba(22, 172, 151, 0.45);
}

.border-r-eva-teal-appt\/5 {
  border-right-color: rgba(22, 172, 151, 0.05);
}

.border-r-eva-teal-appt\/50 {
  border-right-color: rgba(22, 172, 151, 0.5);
}

.border-r-eva-teal-appt\/55 {
  border-right-color: rgba(22, 172, 151, 0.55);
}

.border-r-eva-teal-appt\/60 {
  border-right-color: rgba(22, 172, 151, 0.6);
}

.border-r-eva-teal-appt\/65 {
  border-right-color: rgba(22, 172, 151, 0.65);
}

.border-r-eva-teal-appt\/70 {
  border-right-color: rgba(22, 172, 151, 0.7);
}

.border-r-eva-teal-appt\/75 {
  border-right-color: rgba(22, 172, 151, 0.75);
}

.border-r-eva-teal-appt\/80 {
  border-right-color: rgba(22, 172, 151, 0.8);
}

.border-r-eva-teal-appt\/85 {
  border-right-color: rgba(22, 172, 151, 0.85);
}

.border-r-eva-teal-appt\/90 {
  border-right-color: rgba(22, 172, 151, 0.9);
}

.border-r-eva-teal-appt\/95 {
  border-right-color: rgba(22, 172, 151, 0.95);
}

.border-r-eva-yellow {
  --tw-border-opacity: 1;
  border-right-color: rgb(233 179 98 / var(--tw-border-opacity, 1));
}

.border-r-eva-yellow-appt {
  border-right-color: rgba(240, 226, 0, 1);
}

.border-r-eva-yellow-appt\/0 {
  border-right-color: rgba(240, 226, 0, 0);
}

.border-r-eva-yellow-appt\/10 {
  border-right-color: rgba(240, 226, 0, 0.1);
}

.border-r-eva-yellow-appt\/100 {
  border-right-color: rgba(240, 226, 0, 1);
}

.border-r-eva-yellow-appt\/15 {
  border-right-color: rgba(240, 226, 0, 0.15);
}

.border-r-eva-yellow-appt\/20 {
  border-right-color: rgba(240, 226, 0, 0.2);
}

.border-r-eva-yellow-appt\/25 {
  border-right-color: rgba(240, 226, 0, 0.25);
}

.border-r-eva-yellow-appt\/30 {
  border-right-color: rgba(240, 226, 0, 0.3);
}

.border-r-eva-yellow-appt\/35 {
  border-right-color: rgba(240, 226, 0, 0.35);
}

.border-r-eva-yellow-appt\/40 {
  border-right-color: rgba(240, 226, 0, 0.4);
}

.border-r-eva-yellow-appt\/45 {
  border-right-color: rgba(240, 226, 0, 0.45);
}

.border-r-eva-yellow-appt\/5 {
  border-right-color: rgba(240, 226, 0, 0.05);
}

.border-r-eva-yellow-appt\/50 {
  border-right-color: rgba(240, 226, 0, 0.5);
}

.border-r-eva-yellow-appt\/55 {
  border-right-color: rgba(240, 226, 0, 0.55);
}

.border-r-eva-yellow-appt\/60 {
  border-right-color: rgba(240, 226, 0, 0.6);
}

.border-r-eva-yellow-appt\/65 {
  border-right-color: rgba(240, 226, 0, 0.65);
}

.border-r-eva-yellow-appt\/70 {
  border-right-color: rgba(240, 226, 0, 0.7);
}

.border-r-eva-yellow-appt\/75 {
  border-right-color: rgba(240, 226, 0, 0.75);
}

.border-r-eva-yellow-appt\/80 {
  border-right-color: rgba(240, 226, 0, 0.8);
}

.border-r-eva-yellow-appt\/85 {
  border-right-color: rgba(240, 226, 0, 0.85);
}

.border-r-eva-yellow-appt\/90 {
  border-right-color: rgba(240, 226, 0, 0.9);
}

.border-r-eva-yellow-appt\/95 {
  border-right-color: rgba(240, 226, 0, 0.95);
}

.border-r-eva-yellow\/0 {
  border-right-color: rgb(233 179 98 / 0);
}

.border-r-eva-yellow\/10 {
  border-right-color: rgb(233 179 98 / 0.1);
}

.border-r-eva-yellow\/100 {
  border-right-color: rgb(233 179 98 / 1);
}

.border-r-eva-yellow\/15 {
  border-right-color: rgb(233 179 98 / 0.15);
}

.border-r-eva-yellow\/20 {
  border-right-color: rgb(233 179 98 / 0.2);
}

.border-r-eva-yellow\/25 {
  border-right-color: rgb(233 179 98 / 0.25);
}

.border-r-eva-yellow\/30 {
  border-right-color: rgb(233 179 98 / 0.3);
}

.border-r-eva-yellow\/35 {
  border-right-color: rgb(233 179 98 / 0.35);
}

.border-r-eva-yellow\/40 {
  border-right-color: rgb(233 179 98 / 0.4);
}

.border-r-eva-yellow\/45 {
  border-right-color: rgb(233 179 98 / 0.45);
}

.border-r-eva-yellow\/5 {
  border-right-color: rgb(233 179 98 / 0.05);
}

.border-r-eva-yellow\/50 {
  border-right-color: rgb(233 179 98 / 0.5);
}

.border-r-eva-yellow\/55 {
  border-right-color: rgb(233 179 98 / 0.55);
}

.border-r-eva-yellow\/60 {
  border-right-color: rgb(233 179 98 / 0.6);
}

.border-r-eva-yellow\/65 {
  border-right-color: rgb(233 179 98 / 0.65);
}

.border-r-eva-yellow\/70 {
  border-right-color: rgb(233 179 98 / 0.7);
}

.border-r-eva-yellow\/75 {
  border-right-color: rgb(233 179 98 / 0.75);
}

.border-r-eva-yellow\/80 {
  border-right-color: rgb(233 179 98 / 0.8);
}

.border-r-eva-yellow\/85 {
  border-right-color: rgb(233 179 98 / 0.85);
}

.border-r-eva-yellow\/90 {
  border-right-color: rgb(233 179 98 / 0.9);
}

.border-r-eva-yellow\/95 {
  border-right-color: rgb(233 179 98 / 0.95);
}

.border-r-gray-100 {
  --tw-border-opacity: 1;
  border-right-color: rgb(245 245 245 / var(--tw-border-opacity, 1));
}

.border-r-gray-100\/0 {
  border-right-color: rgb(245 245 245 / 0);
}

.border-r-gray-100\/10 {
  border-right-color: rgb(245 245 245 / 0.1);
}

.border-r-gray-100\/100 {
  border-right-color: rgb(245 245 245 / 1);
}

.border-r-gray-100\/15 {
  border-right-color: rgb(245 245 245 / 0.15);
}

.border-r-gray-100\/20 {
  border-right-color: rgb(245 245 245 / 0.2);
}

.border-r-gray-100\/25 {
  border-right-color: rgb(245 245 245 / 0.25);
}

.border-r-gray-100\/30 {
  border-right-color: rgb(245 245 245 / 0.3);
}

.border-r-gray-100\/35 {
  border-right-color: rgb(245 245 245 / 0.35);
}

.border-r-gray-100\/40 {
  border-right-color: rgb(245 245 245 / 0.4);
}

.border-r-gray-100\/45 {
  border-right-color: rgb(245 245 245 / 0.45);
}

.border-r-gray-100\/5 {
  border-right-color: rgb(245 245 245 / 0.05);
}

.border-r-gray-100\/50 {
  border-right-color: rgb(245 245 245 / 0.5);
}

.border-r-gray-100\/55 {
  border-right-color: rgb(245 245 245 / 0.55);
}

.border-r-gray-100\/60 {
  border-right-color: rgb(245 245 245 / 0.6);
}

.border-r-gray-100\/65 {
  border-right-color: rgb(245 245 245 / 0.65);
}

.border-r-gray-100\/70 {
  border-right-color: rgb(245 245 245 / 0.7);
}

.border-r-gray-100\/75 {
  border-right-color: rgb(245 245 245 / 0.75);
}

.border-r-gray-100\/80 {
  border-right-color: rgb(245 245 245 / 0.8);
}

.border-r-gray-100\/85 {
  border-right-color: rgb(245 245 245 / 0.85);
}

.border-r-gray-100\/90 {
  border-right-color: rgb(245 245 245 / 0.9);
}

.border-r-gray-100\/95 {
  border-right-color: rgb(245 245 245 / 0.95);
}

.border-r-gray-200 {
  --tw-border-opacity: 1;
  border-right-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
}

.border-r-gray-200\/0 {
  border-right-color: rgb(229 229 229 / 0);
}

.border-r-gray-200\/10 {
  border-right-color: rgb(229 229 229 / 0.1);
}

.border-r-gray-200\/100 {
  border-right-color: rgb(229 229 229 / 1);
}

.border-r-gray-200\/15 {
  border-right-color: rgb(229 229 229 / 0.15);
}

.border-r-gray-200\/20 {
  border-right-color: rgb(229 229 229 / 0.2);
}

.border-r-gray-200\/25 {
  border-right-color: rgb(229 229 229 / 0.25);
}

.border-r-gray-200\/30 {
  border-right-color: rgb(229 229 229 / 0.3);
}

.border-r-gray-200\/35 {
  border-right-color: rgb(229 229 229 / 0.35);
}

.border-r-gray-200\/40 {
  border-right-color: rgb(229 229 229 / 0.4);
}

.border-r-gray-200\/45 {
  border-right-color: rgb(229 229 229 / 0.45);
}

.border-r-gray-200\/5 {
  border-right-color: rgb(229 229 229 / 0.05);
}

.border-r-gray-200\/50 {
  border-right-color: rgb(229 229 229 / 0.5);
}

.border-r-gray-200\/55 {
  border-right-color: rgb(229 229 229 / 0.55);
}

.border-r-gray-200\/60 {
  border-right-color: rgb(229 229 229 / 0.6);
}

.border-r-gray-200\/65 {
  border-right-color: rgb(229 229 229 / 0.65);
}

.border-r-gray-200\/70 {
  border-right-color: rgb(229 229 229 / 0.7);
}

.border-r-gray-200\/75 {
  border-right-color: rgb(229 229 229 / 0.75);
}

.border-r-gray-200\/80 {
  border-right-color: rgb(229 229 229 / 0.8);
}

.border-r-gray-200\/85 {
  border-right-color: rgb(229 229 229 / 0.85);
}

.border-r-gray-200\/90 {
  border-right-color: rgb(229 229 229 / 0.9);
}

.border-r-gray-200\/95 {
  border-right-color: rgb(229 229 229 / 0.95);
}

.border-r-gray-300 {
  --tw-border-opacity: 1;
  border-right-color: rgb(212 212 212 / var(--tw-border-opacity, 1));
}

.border-r-gray-300\/0 {
  border-right-color: rgb(212 212 212 / 0);
}

.border-r-gray-300\/10 {
  border-right-color: rgb(212 212 212 / 0.1);
}

.border-r-gray-300\/100 {
  border-right-color: rgb(212 212 212 / 1);
}

.border-r-gray-300\/15 {
  border-right-color: rgb(212 212 212 / 0.15);
}

.border-r-gray-300\/20 {
  border-right-color: rgb(212 212 212 / 0.2);
}

.border-r-gray-300\/25 {
  border-right-color: rgb(212 212 212 / 0.25);
}

.border-r-gray-300\/30 {
  border-right-color: rgb(212 212 212 / 0.3);
}

.border-r-gray-300\/35 {
  border-right-color: rgb(212 212 212 / 0.35);
}

.border-r-gray-300\/40 {
  border-right-color: rgb(212 212 212 / 0.4);
}

.border-r-gray-300\/45 {
  border-right-color: rgb(212 212 212 / 0.45);
}

.border-r-gray-300\/5 {
  border-right-color: rgb(212 212 212 / 0.05);
}

.border-r-gray-300\/50 {
  border-right-color: rgb(212 212 212 / 0.5);
}

.border-r-gray-300\/55 {
  border-right-color: rgb(212 212 212 / 0.55);
}

.border-r-gray-300\/60 {
  border-right-color: rgb(212 212 212 / 0.6);
}

.border-r-gray-300\/65 {
  border-right-color: rgb(212 212 212 / 0.65);
}

.border-r-gray-300\/70 {
  border-right-color: rgb(212 212 212 / 0.7);
}

.border-r-gray-300\/75 {
  border-right-color: rgb(212 212 212 / 0.75);
}

.border-r-gray-300\/80 {
  border-right-color: rgb(212 212 212 / 0.8);
}

.border-r-gray-300\/85 {
  border-right-color: rgb(212 212 212 / 0.85);
}

.border-r-gray-300\/90 {
  border-right-color: rgb(212 212 212 / 0.9);
}

.border-r-gray-300\/95 {
  border-right-color: rgb(212 212 212 / 0.95);
}

.border-r-gray-400 {
  --tw-border-opacity: 1;
  border-right-color: rgb(163 163 163 / var(--tw-border-opacity, 1));
}

.border-r-gray-400\/0 {
  border-right-color: rgb(163 163 163 / 0);
}

.border-r-gray-400\/10 {
  border-right-color: rgb(163 163 163 / 0.1);
}

.border-r-gray-400\/100 {
  border-right-color: rgb(163 163 163 / 1);
}

.border-r-gray-400\/15 {
  border-right-color: rgb(163 163 163 / 0.15);
}

.border-r-gray-400\/20 {
  border-right-color: rgb(163 163 163 / 0.2);
}

.border-r-gray-400\/25 {
  border-right-color: rgb(163 163 163 / 0.25);
}

.border-r-gray-400\/30 {
  border-right-color: rgb(163 163 163 / 0.3);
}

.border-r-gray-400\/35 {
  border-right-color: rgb(163 163 163 / 0.35);
}

.border-r-gray-400\/40 {
  border-right-color: rgb(163 163 163 / 0.4);
}

.border-r-gray-400\/45 {
  border-right-color: rgb(163 163 163 / 0.45);
}

.border-r-gray-400\/5 {
  border-right-color: rgb(163 163 163 / 0.05);
}

.border-r-gray-400\/50 {
  border-right-color: rgb(163 163 163 / 0.5);
}

.border-r-gray-400\/55 {
  border-right-color: rgb(163 163 163 / 0.55);
}

.border-r-gray-400\/60 {
  border-right-color: rgb(163 163 163 / 0.6);
}

.border-r-gray-400\/65 {
  border-right-color: rgb(163 163 163 / 0.65);
}

.border-r-gray-400\/70 {
  border-right-color: rgb(163 163 163 / 0.7);
}

.border-r-gray-400\/75 {
  border-right-color: rgb(163 163 163 / 0.75);
}

.border-r-gray-400\/80 {
  border-right-color: rgb(163 163 163 / 0.8);
}

.border-r-gray-400\/85 {
  border-right-color: rgb(163 163 163 / 0.85);
}

.border-r-gray-400\/90 {
  border-right-color: rgb(163 163 163 / 0.9);
}

.border-r-gray-400\/95 {
  border-right-color: rgb(163 163 163 / 0.95);
}

.border-r-gray-50 {
  --tw-border-opacity: 1;
  border-right-color: rgb(250 250 250 / var(--tw-border-opacity, 1));
}

.border-r-gray-50\/0 {
  border-right-color: rgb(250 250 250 / 0);
}

.border-r-gray-50\/10 {
  border-right-color: rgb(250 250 250 / 0.1);
}

.border-r-gray-50\/100 {
  border-right-color: rgb(250 250 250 / 1);
}

.border-r-gray-50\/15 {
  border-right-color: rgb(250 250 250 / 0.15);
}

.border-r-gray-50\/20 {
  border-right-color: rgb(250 250 250 / 0.2);
}

.border-r-gray-50\/25 {
  border-right-color: rgb(250 250 250 / 0.25);
}

.border-r-gray-50\/30 {
  border-right-color: rgb(250 250 250 / 0.3);
}

.border-r-gray-50\/35 {
  border-right-color: rgb(250 250 250 / 0.35);
}

.border-r-gray-50\/40 {
  border-right-color: rgb(250 250 250 / 0.4);
}

.border-r-gray-50\/45 {
  border-right-color: rgb(250 250 250 / 0.45);
}

.border-r-gray-50\/5 {
  border-right-color: rgb(250 250 250 / 0.05);
}

.border-r-gray-50\/50 {
  border-right-color: rgb(250 250 250 / 0.5);
}

.border-r-gray-50\/55 {
  border-right-color: rgb(250 250 250 / 0.55);
}

.border-r-gray-50\/60 {
  border-right-color: rgb(250 250 250 / 0.6);
}

.border-r-gray-50\/65 {
  border-right-color: rgb(250 250 250 / 0.65);
}

.border-r-gray-50\/70 {
  border-right-color: rgb(250 250 250 / 0.7);
}

.border-r-gray-50\/75 {
  border-right-color: rgb(250 250 250 / 0.75);
}

.border-r-gray-50\/80 {
  border-right-color: rgb(250 250 250 / 0.8);
}

.border-r-gray-50\/85 {
  border-right-color: rgb(250 250 250 / 0.85);
}

.border-r-gray-50\/90 {
  border-right-color: rgb(250 250 250 / 0.9);
}

.border-r-gray-50\/95 {
  border-right-color: rgb(250 250 250 / 0.95);
}

.border-r-gray-500 {
  --tw-border-opacity: 1;
  border-right-color: rgb(115 115 115 / var(--tw-border-opacity, 1));
}

.border-r-gray-500\/0 {
  border-right-color: rgb(115 115 115 / 0);
}

.border-r-gray-500\/10 {
  border-right-color: rgb(115 115 115 / 0.1);
}

.border-r-gray-500\/100 {
  border-right-color: rgb(115 115 115 / 1);
}

.border-r-gray-500\/15 {
  border-right-color: rgb(115 115 115 / 0.15);
}

.border-r-gray-500\/20 {
  border-right-color: rgb(115 115 115 / 0.2);
}

.border-r-gray-500\/25 {
  border-right-color: rgb(115 115 115 / 0.25);
}

.border-r-gray-500\/30 {
  border-right-color: rgb(115 115 115 / 0.3);
}

.border-r-gray-500\/35 {
  border-right-color: rgb(115 115 115 / 0.35);
}

.border-r-gray-500\/40 {
  border-right-color: rgb(115 115 115 / 0.4);
}

.border-r-gray-500\/45 {
  border-right-color: rgb(115 115 115 / 0.45);
}

.border-r-gray-500\/5 {
  border-right-color: rgb(115 115 115 / 0.05);
}

.border-r-gray-500\/50 {
  border-right-color: rgb(115 115 115 / 0.5);
}

.border-r-gray-500\/55 {
  border-right-color: rgb(115 115 115 / 0.55);
}

.border-r-gray-500\/60 {
  border-right-color: rgb(115 115 115 / 0.6);
}

.border-r-gray-500\/65 {
  border-right-color: rgb(115 115 115 / 0.65);
}

.border-r-gray-500\/70 {
  border-right-color: rgb(115 115 115 / 0.7);
}

.border-r-gray-500\/75 {
  border-right-color: rgb(115 115 115 / 0.75);
}

.border-r-gray-500\/80 {
  border-right-color: rgb(115 115 115 / 0.8);
}

.border-r-gray-500\/85 {
  border-right-color: rgb(115 115 115 / 0.85);
}

.border-r-gray-500\/90 {
  border-right-color: rgb(115 115 115 / 0.9);
}

.border-r-gray-500\/95 {
  border-right-color: rgb(115 115 115 / 0.95);
}

.border-r-gray-600 {
  --tw-border-opacity: 1;
  border-right-color: rgb(82 82 82 / var(--tw-border-opacity, 1));
}

.border-r-gray-600\/0 {
  border-right-color: rgb(82 82 82 / 0);
}

.border-r-gray-600\/10 {
  border-right-color: rgb(82 82 82 / 0.1);
}

.border-r-gray-600\/100 {
  border-right-color: rgb(82 82 82 / 1);
}

.border-r-gray-600\/15 {
  border-right-color: rgb(82 82 82 / 0.15);
}

.border-r-gray-600\/20 {
  border-right-color: rgb(82 82 82 / 0.2);
}

.border-r-gray-600\/25 {
  border-right-color: rgb(82 82 82 / 0.25);
}

.border-r-gray-600\/30 {
  border-right-color: rgb(82 82 82 / 0.3);
}

.border-r-gray-600\/35 {
  border-right-color: rgb(82 82 82 / 0.35);
}

.border-r-gray-600\/40 {
  border-right-color: rgb(82 82 82 / 0.4);
}

.border-r-gray-600\/45 {
  border-right-color: rgb(82 82 82 / 0.45);
}

.border-r-gray-600\/5 {
  border-right-color: rgb(82 82 82 / 0.05);
}

.border-r-gray-600\/50 {
  border-right-color: rgb(82 82 82 / 0.5);
}

.border-r-gray-600\/55 {
  border-right-color: rgb(82 82 82 / 0.55);
}

.border-r-gray-600\/60 {
  border-right-color: rgb(82 82 82 / 0.6);
}

.border-r-gray-600\/65 {
  border-right-color: rgb(82 82 82 / 0.65);
}

.border-r-gray-600\/70 {
  border-right-color: rgb(82 82 82 / 0.7);
}

.border-r-gray-600\/75 {
  border-right-color: rgb(82 82 82 / 0.75);
}

.border-r-gray-600\/80 {
  border-right-color: rgb(82 82 82 / 0.8);
}

.border-r-gray-600\/85 {
  border-right-color: rgb(82 82 82 / 0.85);
}

.border-r-gray-600\/90 {
  border-right-color: rgb(82 82 82 / 0.9);
}

.border-r-gray-600\/95 {
  border-right-color: rgb(82 82 82 / 0.95);
}

.border-r-gray-700 {
  --tw-border-opacity: 1;
  border-right-color: rgb(64 64 64 / var(--tw-border-opacity, 1));
}

.border-r-gray-700\/0 {
  border-right-color: rgb(64 64 64 / 0);
}

.border-r-gray-700\/10 {
  border-right-color: rgb(64 64 64 / 0.1);
}

.border-r-gray-700\/100 {
  border-right-color: rgb(64 64 64 / 1);
}

.border-r-gray-700\/15 {
  border-right-color: rgb(64 64 64 / 0.15);
}

.border-r-gray-700\/20 {
  border-right-color: rgb(64 64 64 / 0.2);
}

.border-r-gray-700\/25 {
  border-right-color: rgb(64 64 64 / 0.25);
}

.border-r-gray-700\/30 {
  border-right-color: rgb(64 64 64 / 0.3);
}

.border-r-gray-700\/35 {
  border-right-color: rgb(64 64 64 / 0.35);
}

.border-r-gray-700\/40 {
  border-right-color: rgb(64 64 64 / 0.4);
}

.border-r-gray-700\/45 {
  border-right-color: rgb(64 64 64 / 0.45);
}

.border-r-gray-700\/5 {
  border-right-color: rgb(64 64 64 / 0.05);
}

.border-r-gray-700\/50 {
  border-right-color: rgb(64 64 64 / 0.5);
}

.border-r-gray-700\/55 {
  border-right-color: rgb(64 64 64 / 0.55);
}

.border-r-gray-700\/60 {
  border-right-color: rgb(64 64 64 / 0.6);
}

.border-r-gray-700\/65 {
  border-right-color: rgb(64 64 64 / 0.65);
}

.border-r-gray-700\/70 {
  border-right-color: rgb(64 64 64 / 0.7);
}

.border-r-gray-700\/75 {
  border-right-color: rgb(64 64 64 / 0.75);
}

.border-r-gray-700\/80 {
  border-right-color: rgb(64 64 64 / 0.8);
}

.border-r-gray-700\/85 {
  border-right-color: rgb(64 64 64 / 0.85);
}

.border-r-gray-700\/90 {
  border-right-color: rgb(64 64 64 / 0.9);
}

.border-r-gray-700\/95 {
  border-right-color: rgb(64 64 64 / 0.95);
}

.border-r-gray-800 {
  --tw-border-opacity: 1;
  border-right-color: rgb(38 38 38 / var(--tw-border-opacity, 1));
}

.border-r-gray-800\/0 {
  border-right-color: rgb(38 38 38 / 0);
}

.border-r-gray-800\/10 {
  border-right-color: rgb(38 38 38 / 0.1);
}

.border-r-gray-800\/100 {
  border-right-color: rgb(38 38 38 / 1);
}

.border-r-gray-800\/15 {
  border-right-color: rgb(38 38 38 / 0.15);
}

.border-r-gray-800\/20 {
  border-right-color: rgb(38 38 38 / 0.2);
}

.border-r-gray-800\/25 {
  border-right-color: rgb(38 38 38 / 0.25);
}

.border-r-gray-800\/30 {
  border-right-color: rgb(38 38 38 / 0.3);
}

.border-r-gray-800\/35 {
  border-right-color: rgb(38 38 38 / 0.35);
}

.border-r-gray-800\/40 {
  border-right-color: rgb(38 38 38 / 0.4);
}

.border-r-gray-800\/45 {
  border-right-color: rgb(38 38 38 / 0.45);
}

.border-r-gray-800\/5 {
  border-right-color: rgb(38 38 38 / 0.05);
}

.border-r-gray-800\/50 {
  border-right-color: rgb(38 38 38 / 0.5);
}

.border-r-gray-800\/55 {
  border-right-color: rgb(38 38 38 / 0.55);
}

.border-r-gray-800\/60 {
  border-right-color: rgb(38 38 38 / 0.6);
}

.border-r-gray-800\/65 {
  border-right-color: rgb(38 38 38 / 0.65);
}

.border-r-gray-800\/70 {
  border-right-color: rgb(38 38 38 / 0.7);
}

.border-r-gray-800\/75 {
  border-right-color: rgb(38 38 38 / 0.75);
}

.border-r-gray-800\/80 {
  border-right-color: rgb(38 38 38 / 0.8);
}

.border-r-gray-800\/85 {
  border-right-color: rgb(38 38 38 / 0.85);
}

.border-r-gray-800\/90 {
  border-right-color: rgb(38 38 38 / 0.9);
}

.border-r-gray-800\/95 {
  border-right-color: rgb(38 38 38 / 0.95);
}

.border-r-gray-900 {
  --tw-border-opacity: 1;
  border-right-color: rgb(23 23 23 / var(--tw-border-opacity, 1));
}

.border-r-gray-900\/0 {
  border-right-color: rgb(23 23 23 / 0);
}

.border-r-gray-900\/10 {
  border-right-color: rgb(23 23 23 / 0.1);
}

.border-r-gray-900\/100 {
  border-right-color: rgb(23 23 23 / 1);
}

.border-r-gray-900\/15 {
  border-right-color: rgb(23 23 23 / 0.15);
}

.border-r-gray-900\/20 {
  border-right-color: rgb(23 23 23 / 0.2);
}

.border-r-gray-900\/25 {
  border-right-color: rgb(23 23 23 / 0.25);
}

.border-r-gray-900\/30 {
  border-right-color: rgb(23 23 23 / 0.3);
}

.border-r-gray-900\/35 {
  border-right-color: rgb(23 23 23 / 0.35);
}

.border-r-gray-900\/40 {
  border-right-color: rgb(23 23 23 / 0.4);
}

.border-r-gray-900\/45 {
  border-right-color: rgb(23 23 23 / 0.45);
}

.border-r-gray-900\/5 {
  border-right-color: rgb(23 23 23 / 0.05);
}

.border-r-gray-900\/50 {
  border-right-color: rgb(23 23 23 / 0.5);
}

.border-r-gray-900\/55 {
  border-right-color: rgb(23 23 23 / 0.55);
}

.border-r-gray-900\/60 {
  border-right-color: rgb(23 23 23 / 0.6);
}

.border-r-gray-900\/65 {
  border-right-color: rgb(23 23 23 / 0.65);
}

.border-r-gray-900\/70 {
  border-right-color: rgb(23 23 23 / 0.7);
}

.border-r-gray-900\/75 {
  border-right-color: rgb(23 23 23 / 0.75);
}

.border-r-gray-900\/80 {
  border-right-color: rgb(23 23 23 / 0.8);
}

.border-r-gray-900\/85 {
  border-right-color: rgb(23 23 23 / 0.85);
}

.border-r-gray-900\/90 {
  border-right-color: rgb(23 23 23 / 0.9);
}

.border-r-gray-900\/95 {
  border-right-color: rgb(23 23 23 / 0.95);
}

.border-r-gray-950 {
  --tw-border-opacity: 1;
  border-right-color: rgb(10 10 10 / var(--tw-border-opacity, 1));
}

.border-r-gray-950\/0 {
  border-right-color: rgb(10 10 10 / 0);
}

.border-r-gray-950\/10 {
  border-right-color: rgb(10 10 10 / 0.1);
}

.border-r-gray-950\/100 {
  border-right-color: rgb(10 10 10 / 1);
}

.border-r-gray-950\/15 {
  border-right-color: rgb(10 10 10 / 0.15);
}

.border-r-gray-950\/20 {
  border-right-color: rgb(10 10 10 / 0.2);
}

.border-r-gray-950\/25 {
  border-right-color: rgb(10 10 10 / 0.25);
}

.border-r-gray-950\/30 {
  border-right-color: rgb(10 10 10 / 0.3);
}

.border-r-gray-950\/35 {
  border-right-color: rgb(10 10 10 / 0.35);
}

.border-r-gray-950\/40 {
  border-right-color: rgb(10 10 10 / 0.4);
}

.border-r-gray-950\/45 {
  border-right-color: rgb(10 10 10 / 0.45);
}

.border-r-gray-950\/5 {
  border-right-color: rgb(10 10 10 / 0.05);
}

.border-r-gray-950\/50 {
  border-right-color: rgb(10 10 10 / 0.5);
}

.border-r-gray-950\/55 {
  border-right-color: rgb(10 10 10 / 0.55);
}

.border-r-gray-950\/60 {
  border-right-color: rgb(10 10 10 / 0.6);
}

.border-r-gray-950\/65 {
  border-right-color: rgb(10 10 10 / 0.65);
}

.border-r-gray-950\/70 {
  border-right-color: rgb(10 10 10 / 0.7);
}

.border-r-gray-950\/75 {
  border-right-color: rgb(10 10 10 / 0.75);
}

.border-r-gray-950\/80 {
  border-right-color: rgb(10 10 10 / 0.8);
}

.border-r-gray-950\/85 {
  border-right-color: rgb(10 10 10 / 0.85);
}

.border-r-gray-950\/90 {
  border-right-color: rgb(10 10 10 / 0.9);
}

.border-r-gray-950\/95 {
  border-right-color: rgb(10 10 10 / 0.95);
}

.border-r-green-100 {
  --tw-border-opacity: 1;
  border-right-color: rgb(220 252 231 / var(--tw-border-opacity, 1));
}

.border-r-green-100\/0 {
  border-right-color: rgb(220 252 231 / 0);
}

.border-r-green-100\/10 {
  border-right-color: rgb(220 252 231 / 0.1);
}

.border-r-green-100\/100 {
  border-right-color: rgb(220 252 231 / 1);
}

.border-r-green-100\/15 {
  border-right-color: rgb(220 252 231 / 0.15);
}

.border-r-green-100\/20 {
  border-right-color: rgb(220 252 231 / 0.2);
}

.border-r-green-100\/25 {
  border-right-color: rgb(220 252 231 / 0.25);
}

.border-r-green-100\/30 {
  border-right-color: rgb(220 252 231 / 0.3);
}

.border-r-green-100\/35 {
  border-right-color: rgb(220 252 231 / 0.35);
}

.border-r-green-100\/40 {
  border-right-color: rgb(220 252 231 / 0.4);
}

.border-r-green-100\/45 {
  border-right-color: rgb(220 252 231 / 0.45);
}

.border-r-green-100\/5 {
  border-right-color: rgb(220 252 231 / 0.05);
}

.border-r-green-100\/50 {
  border-right-color: rgb(220 252 231 / 0.5);
}

.border-r-green-100\/55 {
  border-right-color: rgb(220 252 231 / 0.55);
}

.border-r-green-100\/60 {
  border-right-color: rgb(220 252 231 / 0.6);
}

.border-r-green-100\/65 {
  border-right-color: rgb(220 252 231 / 0.65);
}

.border-r-green-100\/70 {
  border-right-color: rgb(220 252 231 / 0.7);
}

.border-r-green-100\/75 {
  border-right-color: rgb(220 252 231 / 0.75);
}

.border-r-green-100\/80 {
  border-right-color: rgb(220 252 231 / 0.8);
}

.border-r-green-100\/85 {
  border-right-color: rgb(220 252 231 / 0.85);
}

.border-r-green-100\/90 {
  border-right-color: rgb(220 252 231 / 0.9);
}

.border-r-green-100\/95 {
  border-right-color: rgb(220 252 231 / 0.95);
}

.border-r-green-200 {
  --tw-border-opacity: 1;
  border-right-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
}

.border-r-green-200\/0 {
  border-right-color: rgb(187 247 208 / 0);
}

.border-r-green-200\/10 {
  border-right-color: rgb(187 247 208 / 0.1);
}

.border-r-green-200\/100 {
  border-right-color: rgb(187 247 208 / 1);
}

.border-r-green-200\/15 {
  border-right-color: rgb(187 247 208 / 0.15);
}

.border-r-green-200\/20 {
  border-right-color: rgb(187 247 208 / 0.2);
}

.border-r-green-200\/25 {
  border-right-color: rgb(187 247 208 / 0.25);
}

.border-r-green-200\/30 {
  border-right-color: rgb(187 247 208 / 0.3);
}

.border-r-green-200\/35 {
  border-right-color: rgb(187 247 208 / 0.35);
}

.border-r-green-200\/40 {
  border-right-color: rgb(187 247 208 / 0.4);
}

.border-r-green-200\/45 {
  border-right-color: rgb(187 247 208 / 0.45);
}

.border-r-green-200\/5 {
  border-right-color: rgb(187 247 208 / 0.05);
}

.border-r-green-200\/50 {
  border-right-color: rgb(187 247 208 / 0.5);
}

.border-r-green-200\/55 {
  border-right-color: rgb(187 247 208 / 0.55);
}

.border-r-green-200\/60 {
  border-right-color: rgb(187 247 208 / 0.6);
}

.border-r-green-200\/65 {
  border-right-color: rgb(187 247 208 / 0.65);
}

.border-r-green-200\/70 {
  border-right-color: rgb(187 247 208 / 0.7);
}

.border-r-green-200\/75 {
  border-right-color: rgb(187 247 208 / 0.75);
}

.border-r-green-200\/80 {
  border-right-color: rgb(187 247 208 / 0.8);
}

.border-r-green-200\/85 {
  border-right-color: rgb(187 247 208 / 0.85);
}

.border-r-green-200\/90 {
  border-right-color: rgb(187 247 208 / 0.9);
}

.border-r-green-200\/95 {
  border-right-color: rgb(187 247 208 / 0.95);
}

.border-r-green-300 {
  --tw-border-opacity: 1;
  border-right-color: rgb(134 239 172 / var(--tw-border-opacity, 1));
}

.border-r-green-300\/0 {
  border-right-color: rgb(134 239 172 / 0);
}

.border-r-green-300\/10 {
  border-right-color: rgb(134 239 172 / 0.1);
}

.border-r-green-300\/100 {
  border-right-color: rgb(134 239 172 / 1);
}

.border-r-green-300\/15 {
  border-right-color: rgb(134 239 172 / 0.15);
}

.border-r-green-300\/20 {
  border-right-color: rgb(134 239 172 / 0.2);
}

.border-r-green-300\/25 {
  border-right-color: rgb(134 239 172 / 0.25);
}

.border-r-green-300\/30 {
  border-right-color: rgb(134 239 172 / 0.3);
}

.border-r-green-300\/35 {
  border-right-color: rgb(134 239 172 / 0.35);
}

.border-r-green-300\/40 {
  border-right-color: rgb(134 239 172 / 0.4);
}

.border-r-green-300\/45 {
  border-right-color: rgb(134 239 172 / 0.45);
}

.border-r-green-300\/5 {
  border-right-color: rgb(134 239 172 / 0.05);
}

.border-r-green-300\/50 {
  border-right-color: rgb(134 239 172 / 0.5);
}

.border-r-green-300\/55 {
  border-right-color: rgb(134 239 172 / 0.55);
}

.border-r-green-300\/60 {
  border-right-color: rgb(134 239 172 / 0.6);
}

.border-r-green-300\/65 {
  border-right-color: rgb(134 239 172 / 0.65);
}

.border-r-green-300\/70 {
  border-right-color: rgb(134 239 172 / 0.7);
}

.border-r-green-300\/75 {
  border-right-color: rgb(134 239 172 / 0.75);
}

.border-r-green-300\/80 {
  border-right-color: rgb(134 239 172 / 0.8);
}

.border-r-green-300\/85 {
  border-right-color: rgb(134 239 172 / 0.85);
}

.border-r-green-300\/90 {
  border-right-color: rgb(134 239 172 / 0.9);
}

.border-r-green-300\/95 {
  border-right-color: rgb(134 239 172 / 0.95);
}

.border-r-green-400 {
  --tw-border-opacity: 1;
  border-right-color: rgb(74 222 128 / var(--tw-border-opacity, 1));
}

.border-r-green-400\/0 {
  border-right-color: rgb(74 222 128 / 0);
}

.border-r-green-400\/10 {
  border-right-color: rgb(74 222 128 / 0.1);
}

.border-r-green-400\/100 {
  border-right-color: rgb(74 222 128 / 1);
}

.border-r-green-400\/15 {
  border-right-color: rgb(74 222 128 / 0.15);
}

.border-r-green-400\/20 {
  border-right-color: rgb(74 222 128 / 0.2);
}

.border-r-green-400\/25 {
  border-right-color: rgb(74 222 128 / 0.25);
}

.border-r-green-400\/30 {
  border-right-color: rgb(74 222 128 / 0.3);
}

.border-r-green-400\/35 {
  border-right-color: rgb(74 222 128 / 0.35);
}

.border-r-green-400\/40 {
  border-right-color: rgb(74 222 128 / 0.4);
}

.border-r-green-400\/45 {
  border-right-color: rgb(74 222 128 / 0.45);
}

.border-r-green-400\/5 {
  border-right-color: rgb(74 222 128 / 0.05);
}

.border-r-green-400\/50 {
  border-right-color: rgb(74 222 128 / 0.5);
}

.border-r-green-400\/55 {
  border-right-color: rgb(74 222 128 / 0.55);
}

.border-r-green-400\/60 {
  border-right-color: rgb(74 222 128 / 0.6);
}

.border-r-green-400\/65 {
  border-right-color: rgb(74 222 128 / 0.65);
}

.border-r-green-400\/70 {
  border-right-color: rgb(74 222 128 / 0.7);
}

.border-r-green-400\/75 {
  border-right-color: rgb(74 222 128 / 0.75);
}

.border-r-green-400\/80 {
  border-right-color: rgb(74 222 128 / 0.8);
}

.border-r-green-400\/85 {
  border-right-color: rgb(74 222 128 / 0.85);
}

.border-r-green-400\/90 {
  border-right-color: rgb(74 222 128 / 0.9);
}

.border-r-green-400\/95 {
  border-right-color: rgb(74 222 128 / 0.95);
}

.border-r-green-50 {
  --tw-border-opacity: 1;
  border-right-color: rgb(240 253 244 / var(--tw-border-opacity, 1));
}

.border-r-green-50\/0 {
  border-right-color: rgb(240 253 244 / 0);
}

.border-r-green-50\/10 {
  border-right-color: rgb(240 253 244 / 0.1);
}

.border-r-green-50\/100 {
  border-right-color: rgb(240 253 244 / 1);
}

.border-r-green-50\/15 {
  border-right-color: rgb(240 253 244 / 0.15);
}

.border-r-green-50\/20 {
  border-right-color: rgb(240 253 244 / 0.2);
}

.border-r-green-50\/25 {
  border-right-color: rgb(240 253 244 / 0.25);
}

.border-r-green-50\/30 {
  border-right-color: rgb(240 253 244 / 0.3);
}

.border-r-green-50\/35 {
  border-right-color: rgb(240 253 244 / 0.35);
}

.border-r-green-50\/40 {
  border-right-color: rgb(240 253 244 / 0.4);
}

.border-r-green-50\/45 {
  border-right-color: rgb(240 253 244 / 0.45);
}

.border-r-green-50\/5 {
  border-right-color: rgb(240 253 244 / 0.05);
}

.border-r-green-50\/50 {
  border-right-color: rgb(240 253 244 / 0.5);
}

.border-r-green-50\/55 {
  border-right-color: rgb(240 253 244 / 0.55);
}

.border-r-green-50\/60 {
  border-right-color: rgb(240 253 244 / 0.6);
}

.border-r-green-50\/65 {
  border-right-color: rgb(240 253 244 / 0.65);
}

.border-r-green-50\/70 {
  border-right-color: rgb(240 253 244 / 0.7);
}

.border-r-green-50\/75 {
  border-right-color: rgb(240 253 244 / 0.75);
}

.border-r-green-50\/80 {
  border-right-color: rgb(240 253 244 / 0.8);
}

.border-r-green-50\/85 {
  border-right-color: rgb(240 253 244 / 0.85);
}

.border-r-green-50\/90 {
  border-right-color: rgb(240 253 244 / 0.9);
}

.border-r-green-50\/95 {
  border-right-color: rgb(240 253 244 / 0.95);
}

.border-r-green-500 {
  --tw-border-opacity: 1;
  border-right-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
}

.border-r-green-500\/0 {
  border-right-color: rgb(34 197 94 / 0);
}

.border-r-green-500\/10 {
  border-right-color: rgb(34 197 94 / 0.1);
}

.border-r-green-500\/100 {
  border-right-color: rgb(34 197 94 / 1);
}

.border-r-green-500\/15 {
  border-right-color: rgb(34 197 94 / 0.15);
}

.border-r-green-500\/20 {
  border-right-color: rgb(34 197 94 / 0.2);
}

.border-r-green-500\/25 {
  border-right-color: rgb(34 197 94 / 0.25);
}

.border-r-green-500\/30 {
  border-right-color: rgb(34 197 94 / 0.3);
}

.border-r-green-500\/35 {
  border-right-color: rgb(34 197 94 / 0.35);
}

.border-r-green-500\/40 {
  border-right-color: rgb(34 197 94 / 0.4);
}

.border-r-green-500\/45 {
  border-right-color: rgb(34 197 94 / 0.45);
}

.border-r-green-500\/5 {
  border-right-color: rgb(34 197 94 / 0.05);
}

.border-r-green-500\/50 {
  border-right-color: rgb(34 197 94 / 0.5);
}

.border-r-green-500\/55 {
  border-right-color: rgb(34 197 94 / 0.55);
}

.border-r-green-500\/60 {
  border-right-color: rgb(34 197 94 / 0.6);
}

.border-r-green-500\/65 {
  border-right-color: rgb(34 197 94 / 0.65);
}

.border-r-green-500\/70 {
  border-right-color: rgb(34 197 94 / 0.7);
}

.border-r-green-500\/75 {
  border-right-color: rgb(34 197 94 / 0.75);
}

.border-r-green-500\/80 {
  border-right-color: rgb(34 197 94 / 0.8);
}

.border-r-green-500\/85 {
  border-right-color: rgb(34 197 94 / 0.85);
}

.border-r-green-500\/90 {
  border-right-color: rgb(34 197 94 / 0.9);
}

.border-r-green-500\/95 {
  border-right-color: rgb(34 197 94 / 0.95);
}

.border-r-green-600 {
  --tw-border-opacity: 1;
  border-right-color: rgb(22 163 74 / var(--tw-border-opacity, 1));
}

.border-r-green-600\/0 {
  border-right-color: rgb(22 163 74 / 0);
}

.border-r-green-600\/10 {
  border-right-color: rgb(22 163 74 / 0.1);
}

.border-r-green-600\/100 {
  border-right-color: rgb(22 163 74 / 1);
}

.border-r-green-600\/15 {
  border-right-color: rgb(22 163 74 / 0.15);
}

.border-r-green-600\/20 {
  border-right-color: rgb(22 163 74 / 0.2);
}

.border-r-green-600\/25 {
  border-right-color: rgb(22 163 74 / 0.25);
}

.border-r-green-600\/30 {
  border-right-color: rgb(22 163 74 / 0.3);
}

.border-r-green-600\/35 {
  border-right-color: rgb(22 163 74 / 0.35);
}

.border-r-green-600\/40 {
  border-right-color: rgb(22 163 74 / 0.4);
}

.border-r-green-600\/45 {
  border-right-color: rgb(22 163 74 / 0.45);
}

.border-r-green-600\/5 {
  border-right-color: rgb(22 163 74 / 0.05);
}

.border-r-green-600\/50 {
  border-right-color: rgb(22 163 74 / 0.5);
}

.border-r-green-600\/55 {
  border-right-color: rgb(22 163 74 / 0.55);
}

.border-r-green-600\/60 {
  border-right-color: rgb(22 163 74 / 0.6);
}

.border-r-green-600\/65 {
  border-right-color: rgb(22 163 74 / 0.65);
}

.border-r-green-600\/70 {
  border-right-color: rgb(22 163 74 / 0.7);
}

.border-r-green-600\/75 {
  border-right-color: rgb(22 163 74 / 0.75);
}

.border-r-green-600\/80 {
  border-right-color: rgb(22 163 74 / 0.8);
}

.border-r-green-600\/85 {
  border-right-color: rgb(22 163 74 / 0.85);
}

.border-r-green-600\/90 {
  border-right-color: rgb(22 163 74 / 0.9);
}

.border-r-green-600\/95 {
  border-right-color: rgb(22 163 74 / 0.95);
}

.border-r-green-700 {
  --tw-border-opacity: 1;
  border-right-color: rgb(21 128 61 / var(--tw-border-opacity, 1));
}

.border-r-green-700\/0 {
  border-right-color: rgb(21 128 61 / 0);
}

.border-r-green-700\/10 {
  border-right-color: rgb(21 128 61 / 0.1);
}

.border-r-green-700\/100 {
  border-right-color: rgb(21 128 61 / 1);
}

.border-r-green-700\/15 {
  border-right-color: rgb(21 128 61 / 0.15);
}

.border-r-green-700\/20 {
  border-right-color: rgb(21 128 61 / 0.2);
}

.border-r-green-700\/25 {
  border-right-color: rgb(21 128 61 / 0.25);
}

.border-r-green-700\/30 {
  border-right-color: rgb(21 128 61 / 0.3);
}

.border-r-green-700\/35 {
  border-right-color: rgb(21 128 61 / 0.35);
}

.border-r-green-700\/40 {
  border-right-color: rgb(21 128 61 / 0.4);
}

.border-r-green-700\/45 {
  border-right-color: rgb(21 128 61 / 0.45);
}

.border-r-green-700\/5 {
  border-right-color: rgb(21 128 61 / 0.05);
}

.border-r-green-700\/50 {
  border-right-color: rgb(21 128 61 / 0.5);
}

.border-r-green-700\/55 {
  border-right-color: rgb(21 128 61 / 0.55);
}

.border-r-green-700\/60 {
  border-right-color: rgb(21 128 61 / 0.6);
}

.border-r-green-700\/65 {
  border-right-color: rgb(21 128 61 / 0.65);
}

.border-r-green-700\/70 {
  border-right-color: rgb(21 128 61 / 0.7);
}

.border-r-green-700\/75 {
  border-right-color: rgb(21 128 61 / 0.75);
}

.border-r-green-700\/80 {
  border-right-color: rgb(21 128 61 / 0.8);
}

.border-r-green-700\/85 {
  border-right-color: rgb(21 128 61 / 0.85);
}

.border-r-green-700\/90 {
  border-right-color: rgb(21 128 61 / 0.9);
}

.border-r-green-700\/95 {
  border-right-color: rgb(21 128 61 / 0.95);
}

.border-r-green-800 {
  --tw-border-opacity: 1;
  border-right-color: rgb(22 101 52 / var(--tw-border-opacity, 1));
}

.border-r-green-800\/0 {
  border-right-color: rgb(22 101 52 / 0);
}

.border-r-green-800\/10 {
  border-right-color: rgb(22 101 52 / 0.1);
}

.border-r-green-800\/100 {
  border-right-color: rgb(22 101 52 / 1);
}

.border-r-green-800\/15 {
  border-right-color: rgb(22 101 52 / 0.15);
}

.border-r-green-800\/20 {
  border-right-color: rgb(22 101 52 / 0.2);
}

.border-r-green-800\/25 {
  border-right-color: rgb(22 101 52 / 0.25);
}

.border-r-green-800\/30 {
  border-right-color: rgb(22 101 52 / 0.3);
}

.border-r-green-800\/35 {
  border-right-color: rgb(22 101 52 / 0.35);
}

.border-r-green-800\/40 {
  border-right-color: rgb(22 101 52 / 0.4);
}

.border-r-green-800\/45 {
  border-right-color: rgb(22 101 52 / 0.45);
}

.border-r-green-800\/5 {
  border-right-color: rgb(22 101 52 / 0.05);
}

.border-r-green-800\/50 {
  border-right-color: rgb(22 101 52 / 0.5);
}

.border-r-green-800\/55 {
  border-right-color: rgb(22 101 52 / 0.55);
}

.border-r-green-800\/60 {
  border-right-color: rgb(22 101 52 / 0.6);
}

.border-r-green-800\/65 {
  border-right-color: rgb(22 101 52 / 0.65);
}

.border-r-green-800\/70 {
  border-right-color: rgb(22 101 52 / 0.7);
}

.border-r-green-800\/75 {
  border-right-color: rgb(22 101 52 / 0.75);
}

.border-r-green-800\/80 {
  border-right-color: rgb(22 101 52 / 0.8);
}

.border-r-green-800\/85 {
  border-right-color: rgb(22 101 52 / 0.85);
}

.border-r-green-800\/90 {
  border-right-color: rgb(22 101 52 / 0.9);
}

.border-r-green-800\/95 {
  border-right-color: rgb(22 101 52 / 0.95);
}

.border-r-green-900 {
  --tw-border-opacity: 1;
  border-right-color: rgb(20 83 45 / var(--tw-border-opacity, 1));
}

.border-r-green-900\/0 {
  border-right-color: rgb(20 83 45 / 0);
}

.border-r-green-900\/10 {
  border-right-color: rgb(20 83 45 / 0.1);
}

.border-r-green-900\/100 {
  border-right-color: rgb(20 83 45 / 1);
}

.border-r-green-900\/15 {
  border-right-color: rgb(20 83 45 / 0.15);
}

.border-r-green-900\/20 {
  border-right-color: rgb(20 83 45 / 0.2);
}

.border-r-green-900\/25 {
  border-right-color: rgb(20 83 45 / 0.25);
}

.border-r-green-900\/30 {
  border-right-color: rgb(20 83 45 / 0.3);
}

.border-r-green-900\/35 {
  border-right-color: rgb(20 83 45 / 0.35);
}

.border-r-green-900\/40 {
  border-right-color: rgb(20 83 45 / 0.4);
}

.border-r-green-900\/45 {
  border-right-color: rgb(20 83 45 / 0.45);
}

.border-r-green-900\/5 {
  border-right-color: rgb(20 83 45 / 0.05);
}

.border-r-green-900\/50 {
  border-right-color: rgb(20 83 45 / 0.5);
}

.border-r-green-900\/55 {
  border-right-color: rgb(20 83 45 / 0.55);
}

.border-r-green-900\/60 {
  border-right-color: rgb(20 83 45 / 0.6);
}

.border-r-green-900\/65 {
  border-right-color: rgb(20 83 45 / 0.65);
}

.border-r-green-900\/70 {
  border-right-color: rgb(20 83 45 / 0.7);
}

.border-r-green-900\/75 {
  border-right-color: rgb(20 83 45 / 0.75);
}

.border-r-green-900\/80 {
  border-right-color: rgb(20 83 45 / 0.8);
}

.border-r-green-900\/85 {
  border-right-color: rgb(20 83 45 / 0.85);
}

.border-r-green-900\/90 {
  border-right-color: rgb(20 83 45 / 0.9);
}

.border-r-green-900\/95 {
  border-right-color: rgb(20 83 45 / 0.95);
}

.border-r-green-950 {
  --tw-border-opacity: 1;
  border-right-color: rgb(5 46 22 / var(--tw-border-opacity, 1));
}

.border-r-green-950\/0 {
  border-right-color: rgb(5 46 22 / 0);
}

.border-r-green-950\/10 {
  border-right-color: rgb(5 46 22 / 0.1);
}

.border-r-green-950\/100 {
  border-right-color: rgb(5 46 22 / 1);
}

.border-r-green-950\/15 {
  border-right-color: rgb(5 46 22 / 0.15);
}

.border-r-green-950\/20 {
  border-right-color: rgb(5 46 22 / 0.2);
}

.border-r-green-950\/25 {
  border-right-color: rgb(5 46 22 / 0.25);
}

.border-r-green-950\/30 {
  border-right-color: rgb(5 46 22 / 0.3);
}

.border-r-green-950\/35 {
  border-right-color: rgb(5 46 22 / 0.35);
}

.border-r-green-950\/40 {
  border-right-color: rgb(5 46 22 / 0.4);
}

.border-r-green-950\/45 {
  border-right-color: rgb(5 46 22 / 0.45);
}

.border-r-green-950\/5 {
  border-right-color: rgb(5 46 22 / 0.05);
}

.border-r-green-950\/50 {
  border-right-color: rgb(5 46 22 / 0.5);
}

.border-r-green-950\/55 {
  border-right-color: rgb(5 46 22 / 0.55);
}

.border-r-green-950\/60 {
  border-right-color: rgb(5 46 22 / 0.6);
}

.border-r-green-950\/65 {
  border-right-color: rgb(5 46 22 / 0.65);
}

.border-r-green-950\/70 {
  border-right-color: rgb(5 46 22 / 0.7);
}

.border-r-green-950\/75 {
  border-right-color: rgb(5 46 22 / 0.75);
}

.border-r-green-950\/80 {
  border-right-color: rgb(5 46 22 / 0.8);
}

.border-r-green-950\/85 {
  border-right-color: rgb(5 46 22 / 0.85);
}

.border-r-green-950\/90 {
  border-right-color: rgb(5 46 22 / 0.9);
}

.border-r-green-950\/95 {
  border-right-color: rgb(5 46 22 / 0.95);
}

.border-r-red-100 {
  --tw-border-opacity: 1;
  border-right-color: rgb(254 226 226 / var(--tw-border-opacity, 1));
}

.border-r-red-100\/0 {
  border-right-color: rgb(254 226 226 / 0);
}

.border-r-red-100\/10 {
  border-right-color: rgb(254 226 226 / 0.1);
}

.border-r-red-100\/100 {
  border-right-color: rgb(254 226 226 / 1);
}

.border-r-red-100\/15 {
  border-right-color: rgb(254 226 226 / 0.15);
}

.border-r-red-100\/20 {
  border-right-color: rgb(254 226 226 / 0.2);
}

.border-r-red-100\/25 {
  border-right-color: rgb(254 226 226 / 0.25);
}

.border-r-red-100\/30 {
  border-right-color: rgb(254 226 226 / 0.3);
}

.border-r-red-100\/35 {
  border-right-color: rgb(254 226 226 / 0.35);
}

.border-r-red-100\/40 {
  border-right-color: rgb(254 226 226 / 0.4);
}

.border-r-red-100\/45 {
  border-right-color: rgb(254 226 226 / 0.45);
}

.border-r-red-100\/5 {
  border-right-color: rgb(254 226 226 / 0.05);
}

.border-r-red-100\/50 {
  border-right-color: rgb(254 226 226 / 0.5);
}

.border-r-red-100\/55 {
  border-right-color: rgb(254 226 226 / 0.55);
}

.border-r-red-100\/60 {
  border-right-color: rgb(254 226 226 / 0.6);
}

.border-r-red-100\/65 {
  border-right-color: rgb(254 226 226 / 0.65);
}

.border-r-red-100\/70 {
  border-right-color: rgb(254 226 226 / 0.7);
}

.border-r-red-100\/75 {
  border-right-color: rgb(254 226 226 / 0.75);
}

.border-r-red-100\/80 {
  border-right-color: rgb(254 226 226 / 0.8);
}

.border-r-red-100\/85 {
  border-right-color: rgb(254 226 226 / 0.85);
}

.border-r-red-100\/90 {
  border-right-color: rgb(254 226 226 / 0.9);
}

.border-r-red-100\/95 {
  border-right-color: rgb(254 226 226 / 0.95);
}

.border-r-red-200 {
  --tw-border-opacity: 1;
  border-right-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}

.border-r-red-200\/0 {
  border-right-color: rgb(254 202 202 / 0);
}

.border-r-red-200\/10 {
  border-right-color: rgb(254 202 202 / 0.1);
}

.border-r-red-200\/100 {
  border-right-color: rgb(254 202 202 / 1);
}

.border-r-red-200\/15 {
  border-right-color: rgb(254 202 202 / 0.15);
}

.border-r-red-200\/20 {
  border-right-color: rgb(254 202 202 / 0.2);
}

.border-r-red-200\/25 {
  border-right-color: rgb(254 202 202 / 0.25);
}

.border-r-red-200\/30 {
  border-right-color: rgb(254 202 202 / 0.3);
}

.border-r-red-200\/35 {
  border-right-color: rgb(254 202 202 / 0.35);
}

.border-r-red-200\/40 {
  border-right-color: rgb(254 202 202 / 0.4);
}

.border-r-red-200\/45 {
  border-right-color: rgb(254 202 202 / 0.45);
}

.border-r-red-200\/5 {
  border-right-color: rgb(254 202 202 / 0.05);
}

.border-r-red-200\/50 {
  border-right-color: rgb(254 202 202 / 0.5);
}

.border-r-red-200\/55 {
  border-right-color: rgb(254 202 202 / 0.55);
}

.border-r-red-200\/60 {
  border-right-color: rgb(254 202 202 / 0.6);
}

.border-r-red-200\/65 {
  border-right-color: rgb(254 202 202 / 0.65);
}

.border-r-red-200\/70 {
  border-right-color: rgb(254 202 202 / 0.7);
}

.border-r-red-200\/75 {
  border-right-color: rgb(254 202 202 / 0.75);
}

.border-r-red-200\/80 {
  border-right-color: rgb(254 202 202 / 0.8);
}

.border-r-red-200\/85 {
  border-right-color: rgb(254 202 202 / 0.85);
}

.border-r-red-200\/90 {
  border-right-color: rgb(254 202 202 / 0.9);
}

.border-r-red-200\/95 {
  border-right-color: rgb(254 202 202 / 0.95);
}

.border-r-red-300 {
  --tw-border-opacity: 1;
  border-right-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
}

.border-r-red-300\/0 {
  border-right-color: rgb(252 165 165 / 0);
}

.border-r-red-300\/10 {
  border-right-color: rgb(252 165 165 / 0.1);
}

.border-r-red-300\/100 {
  border-right-color: rgb(252 165 165 / 1);
}

.border-r-red-300\/15 {
  border-right-color: rgb(252 165 165 / 0.15);
}

.border-r-red-300\/20 {
  border-right-color: rgb(252 165 165 / 0.2);
}

.border-r-red-300\/25 {
  border-right-color: rgb(252 165 165 / 0.25);
}

.border-r-red-300\/30 {
  border-right-color: rgb(252 165 165 / 0.3);
}

.border-r-red-300\/35 {
  border-right-color: rgb(252 165 165 / 0.35);
}

.border-r-red-300\/40 {
  border-right-color: rgb(252 165 165 / 0.4);
}

.border-r-red-300\/45 {
  border-right-color: rgb(252 165 165 / 0.45);
}

.border-r-red-300\/5 {
  border-right-color: rgb(252 165 165 / 0.05);
}

.border-r-red-300\/50 {
  border-right-color: rgb(252 165 165 / 0.5);
}

.border-r-red-300\/55 {
  border-right-color: rgb(252 165 165 / 0.55);
}

.border-r-red-300\/60 {
  border-right-color: rgb(252 165 165 / 0.6);
}

.border-r-red-300\/65 {
  border-right-color: rgb(252 165 165 / 0.65);
}

.border-r-red-300\/70 {
  border-right-color: rgb(252 165 165 / 0.7);
}

.border-r-red-300\/75 {
  border-right-color: rgb(252 165 165 / 0.75);
}

.border-r-red-300\/80 {
  border-right-color: rgb(252 165 165 / 0.8);
}

.border-r-red-300\/85 {
  border-right-color: rgb(252 165 165 / 0.85);
}

.border-r-red-300\/90 {
  border-right-color: rgb(252 165 165 / 0.9);
}

.border-r-red-300\/95 {
  border-right-color: rgb(252 165 165 / 0.95);
}

.border-r-red-400 {
  --tw-border-opacity: 1;
  border-right-color: rgb(248 113 113 / var(--tw-border-opacity, 1));
}

.border-r-red-400\/0 {
  border-right-color: rgb(248 113 113 / 0);
}

.border-r-red-400\/10 {
  border-right-color: rgb(248 113 113 / 0.1);
}

.border-r-red-400\/100 {
  border-right-color: rgb(248 113 113 / 1);
}

.border-r-red-400\/15 {
  border-right-color: rgb(248 113 113 / 0.15);
}

.border-r-red-400\/20 {
  border-right-color: rgb(248 113 113 / 0.2);
}

.border-r-red-400\/25 {
  border-right-color: rgb(248 113 113 / 0.25);
}

.border-r-red-400\/30 {
  border-right-color: rgb(248 113 113 / 0.3);
}

.border-r-red-400\/35 {
  border-right-color: rgb(248 113 113 / 0.35);
}

.border-r-red-400\/40 {
  border-right-color: rgb(248 113 113 / 0.4);
}

.border-r-red-400\/45 {
  border-right-color: rgb(248 113 113 / 0.45);
}

.border-r-red-400\/5 {
  border-right-color: rgb(248 113 113 / 0.05);
}

.border-r-red-400\/50 {
  border-right-color: rgb(248 113 113 / 0.5);
}

.border-r-red-400\/55 {
  border-right-color: rgb(248 113 113 / 0.55);
}

.border-r-red-400\/60 {
  border-right-color: rgb(248 113 113 / 0.6);
}

.border-r-red-400\/65 {
  border-right-color: rgb(248 113 113 / 0.65);
}

.border-r-red-400\/70 {
  border-right-color: rgb(248 113 113 / 0.7);
}

.border-r-red-400\/75 {
  border-right-color: rgb(248 113 113 / 0.75);
}

.border-r-red-400\/80 {
  border-right-color: rgb(248 113 113 / 0.8);
}

.border-r-red-400\/85 {
  border-right-color: rgb(248 113 113 / 0.85);
}

.border-r-red-400\/90 {
  border-right-color: rgb(248 113 113 / 0.9);
}

.border-r-red-400\/95 {
  border-right-color: rgb(248 113 113 / 0.95);
}

.border-r-red-50 {
  --tw-border-opacity: 1;
  border-right-color: rgb(254 242 242 / var(--tw-border-opacity, 1));
}

.border-r-red-50\/0 {
  border-right-color: rgb(254 242 242 / 0);
}

.border-r-red-50\/10 {
  border-right-color: rgb(254 242 242 / 0.1);
}

.border-r-red-50\/100 {
  border-right-color: rgb(254 242 242 / 1);
}

.border-r-red-50\/15 {
  border-right-color: rgb(254 242 242 / 0.15);
}

.border-r-red-50\/20 {
  border-right-color: rgb(254 242 242 / 0.2);
}

.border-r-red-50\/25 {
  border-right-color: rgb(254 242 242 / 0.25);
}

.border-r-red-50\/30 {
  border-right-color: rgb(254 242 242 / 0.3);
}

.border-r-red-50\/35 {
  border-right-color: rgb(254 242 242 / 0.35);
}

.border-r-red-50\/40 {
  border-right-color: rgb(254 242 242 / 0.4);
}

.border-r-red-50\/45 {
  border-right-color: rgb(254 242 242 / 0.45);
}

.border-r-red-50\/5 {
  border-right-color: rgb(254 242 242 / 0.05);
}

.border-r-red-50\/50 {
  border-right-color: rgb(254 242 242 / 0.5);
}

.border-r-red-50\/55 {
  border-right-color: rgb(254 242 242 / 0.55);
}

.border-r-red-50\/60 {
  border-right-color: rgb(254 242 242 / 0.6);
}

.border-r-red-50\/65 {
  border-right-color: rgb(254 242 242 / 0.65);
}

.border-r-red-50\/70 {
  border-right-color: rgb(254 242 242 / 0.7);
}

.border-r-red-50\/75 {
  border-right-color: rgb(254 242 242 / 0.75);
}

.border-r-red-50\/80 {
  border-right-color: rgb(254 242 242 / 0.8);
}

.border-r-red-50\/85 {
  border-right-color: rgb(254 242 242 / 0.85);
}

.border-r-red-50\/90 {
  border-right-color: rgb(254 242 242 / 0.9);
}

.border-r-red-50\/95 {
  border-right-color: rgb(254 242 242 / 0.95);
}

.border-r-red-500 {
  --tw-border-opacity: 1;
  border-right-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}

.border-r-red-500\/0 {
  border-right-color: rgb(239 68 68 / 0);
}

.border-r-red-500\/10 {
  border-right-color: rgb(239 68 68 / 0.1);
}

.border-r-red-500\/100 {
  border-right-color: rgb(239 68 68 / 1);
}

.border-r-red-500\/15 {
  border-right-color: rgb(239 68 68 / 0.15);
}

.border-r-red-500\/20 {
  border-right-color: rgb(239 68 68 / 0.2);
}

.border-r-red-500\/25 {
  border-right-color: rgb(239 68 68 / 0.25);
}

.border-r-red-500\/30 {
  border-right-color: rgb(239 68 68 / 0.3);
}

.border-r-red-500\/35 {
  border-right-color: rgb(239 68 68 / 0.35);
}

.border-r-red-500\/40 {
  border-right-color: rgb(239 68 68 / 0.4);
}

.border-r-red-500\/45 {
  border-right-color: rgb(239 68 68 / 0.45);
}

.border-r-red-500\/5 {
  border-right-color: rgb(239 68 68 / 0.05);
}

.border-r-red-500\/50 {
  border-right-color: rgb(239 68 68 / 0.5);
}

.border-r-red-500\/55 {
  border-right-color: rgb(239 68 68 / 0.55);
}

.border-r-red-500\/60 {
  border-right-color: rgb(239 68 68 / 0.6);
}

.border-r-red-500\/65 {
  border-right-color: rgb(239 68 68 / 0.65);
}

.border-r-red-500\/70 {
  border-right-color: rgb(239 68 68 / 0.7);
}

.border-r-red-500\/75 {
  border-right-color: rgb(239 68 68 / 0.75);
}

.border-r-red-500\/80 {
  border-right-color: rgb(239 68 68 / 0.8);
}

.border-r-red-500\/85 {
  border-right-color: rgb(239 68 68 / 0.85);
}

.border-r-red-500\/90 {
  border-right-color: rgb(239 68 68 / 0.9);
}

.border-r-red-500\/95 {
  border-right-color: rgb(239 68 68 / 0.95);
}

.border-r-red-600 {
  --tw-border-opacity: 1;
  border-right-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
}

.border-r-red-600\/0 {
  border-right-color: rgb(220 38 38 / 0);
}

.border-r-red-600\/10 {
  border-right-color: rgb(220 38 38 / 0.1);
}

.border-r-red-600\/100 {
  border-right-color: rgb(220 38 38 / 1);
}

.border-r-red-600\/15 {
  border-right-color: rgb(220 38 38 / 0.15);
}

.border-r-red-600\/20 {
  border-right-color: rgb(220 38 38 / 0.2);
}

.border-r-red-600\/25 {
  border-right-color: rgb(220 38 38 / 0.25);
}

.border-r-red-600\/30 {
  border-right-color: rgb(220 38 38 / 0.3);
}

.border-r-red-600\/35 {
  border-right-color: rgb(220 38 38 / 0.35);
}

.border-r-red-600\/40 {
  border-right-color: rgb(220 38 38 / 0.4);
}

.border-r-red-600\/45 {
  border-right-color: rgb(220 38 38 / 0.45);
}

.border-r-red-600\/5 {
  border-right-color: rgb(220 38 38 / 0.05);
}

.border-r-red-600\/50 {
  border-right-color: rgb(220 38 38 / 0.5);
}

.border-r-red-600\/55 {
  border-right-color: rgb(220 38 38 / 0.55);
}

.border-r-red-600\/60 {
  border-right-color: rgb(220 38 38 / 0.6);
}

.border-r-red-600\/65 {
  border-right-color: rgb(220 38 38 / 0.65);
}

.border-r-red-600\/70 {
  border-right-color: rgb(220 38 38 / 0.7);
}

.border-r-red-600\/75 {
  border-right-color: rgb(220 38 38 / 0.75);
}

.border-r-red-600\/80 {
  border-right-color: rgb(220 38 38 / 0.8);
}

.border-r-red-600\/85 {
  border-right-color: rgb(220 38 38 / 0.85);
}

.border-r-red-600\/90 {
  border-right-color: rgb(220 38 38 / 0.9);
}

.border-r-red-600\/95 {
  border-right-color: rgb(220 38 38 / 0.95);
}

.border-r-red-700 {
  --tw-border-opacity: 1;
  border-right-color: rgb(185 28 28 / var(--tw-border-opacity, 1));
}

.border-r-red-700\/0 {
  border-right-color: rgb(185 28 28 / 0);
}

.border-r-red-700\/10 {
  border-right-color: rgb(185 28 28 / 0.1);
}

.border-r-red-700\/100 {
  border-right-color: rgb(185 28 28 / 1);
}

.border-r-red-700\/15 {
  border-right-color: rgb(185 28 28 / 0.15);
}

.border-r-red-700\/20 {
  border-right-color: rgb(185 28 28 / 0.2);
}

.border-r-red-700\/25 {
  border-right-color: rgb(185 28 28 / 0.25);
}

.border-r-red-700\/30 {
  border-right-color: rgb(185 28 28 / 0.3);
}

.border-r-red-700\/35 {
  border-right-color: rgb(185 28 28 / 0.35);
}

.border-r-red-700\/40 {
  border-right-color: rgb(185 28 28 / 0.4);
}

.border-r-red-700\/45 {
  border-right-color: rgb(185 28 28 / 0.45);
}

.border-r-red-700\/5 {
  border-right-color: rgb(185 28 28 / 0.05);
}

.border-r-red-700\/50 {
  border-right-color: rgb(185 28 28 / 0.5);
}

.border-r-red-700\/55 {
  border-right-color: rgb(185 28 28 / 0.55);
}

.border-r-red-700\/60 {
  border-right-color: rgb(185 28 28 / 0.6);
}

.border-r-red-700\/65 {
  border-right-color: rgb(185 28 28 / 0.65);
}

.border-r-red-700\/70 {
  border-right-color: rgb(185 28 28 / 0.7);
}

.border-r-red-700\/75 {
  border-right-color: rgb(185 28 28 / 0.75);
}

.border-r-red-700\/80 {
  border-right-color: rgb(185 28 28 / 0.8);
}

.border-r-red-700\/85 {
  border-right-color: rgb(185 28 28 / 0.85);
}

.border-r-red-700\/90 {
  border-right-color: rgb(185 28 28 / 0.9);
}

.border-r-red-700\/95 {
  border-right-color: rgb(185 28 28 / 0.95);
}

.border-r-red-800 {
  --tw-border-opacity: 1;
  border-right-color: rgb(153 27 27 / var(--tw-border-opacity, 1));
}

.border-r-red-800\/0 {
  border-right-color: rgb(153 27 27 / 0);
}

.border-r-red-800\/10 {
  border-right-color: rgb(153 27 27 / 0.1);
}

.border-r-red-800\/100 {
  border-right-color: rgb(153 27 27 / 1);
}

.border-r-red-800\/15 {
  border-right-color: rgb(153 27 27 / 0.15);
}

.border-r-red-800\/20 {
  border-right-color: rgb(153 27 27 / 0.2);
}

.border-r-red-800\/25 {
  border-right-color: rgb(153 27 27 / 0.25);
}

.border-r-red-800\/30 {
  border-right-color: rgb(153 27 27 / 0.3);
}

.border-r-red-800\/35 {
  border-right-color: rgb(153 27 27 / 0.35);
}

.border-r-red-800\/40 {
  border-right-color: rgb(153 27 27 / 0.4);
}

.border-r-red-800\/45 {
  border-right-color: rgb(153 27 27 / 0.45);
}

.border-r-red-800\/5 {
  border-right-color: rgb(153 27 27 / 0.05);
}

.border-r-red-800\/50 {
  border-right-color: rgb(153 27 27 / 0.5);
}

.border-r-red-800\/55 {
  border-right-color: rgb(153 27 27 / 0.55);
}

.border-r-red-800\/60 {
  border-right-color: rgb(153 27 27 / 0.6);
}

.border-r-red-800\/65 {
  border-right-color: rgb(153 27 27 / 0.65);
}

.border-r-red-800\/70 {
  border-right-color: rgb(153 27 27 / 0.7);
}

.border-r-red-800\/75 {
  border-right-color: rgb(153 27 27 / 0.75);
}

.border-r-red-800\/80 {
  border-right-color: rgb(153 27 27 / 0.8);
}

.border-r-red-800\/85 {
  border-right-color: rgb(153 27 27 / 0.85);
}

.border-r-red-800\/90 {
  border-right-color: rgb(153 27 27 / 0.9);
}

.border-r-red-800\/95 {
  border-right-color: rgb(153 27 27 / 0.95);
}

.border-r-red-900 {
  --tw-border-opacity: 1;
  border-right-color: rgb(127 29 29 / var(--tw-border-opacity, 1));
}

.border-r-red-900\/0 {
  border-right-color: rgb(127 29 29 / 0);
}

.border-r-red-900\/10 {
  border-right-color: rgb(127 29 29 / 0.1);
}

.border-r-red-900\/100 {
  border-right-color: rgb(127 29 29 / 1);
}

.border-r-red-900\/15 {
  border-right-color: rgb(127 29 29 / 0.15);
}

.border-r-red-900\/20 {
  border-right-color: rgb(127 29 29 / 0.2);
}

.border-r-red-900\/25 {
  border-right-color: rgb(127 29 29 / 0.25);
}

.border-r-red-900\/30 {
  border-right-color: rgb(127 29 29 / 0.3);
}

.border-r-red-900\/35 {
  border-right-color: rgb(127 29 29 / 0.35);
}

.border-r-red-900\/40 {
  border-right-color: rgb(127 29 29 / 0.4);
}

.border-r-red-900\/45 {
  border-right-color: rgb(127 29 29 / 0.45);
}

.border-r-red-900\/5 {
  border-right-color: rgb(127 29 29 / 0.05);
}

.border-r-red-900\/50 {
  border-right-color: rgb(127 29 29 / 0.5);
}

.border-r-red-900\/55 {
  border-right-color: rgb(127 29 29 / 0.55);
}

.border-r-red-900\/60 {
  border-right-color: rgb(127 29 29 / 0.6);
}

.border-r-red-900\/65 {
  border-right-color: rgb(127 29 29 / 0.65);
}

.border-r-red-900\/70 {
  border-right-color: rgb(127 29 29 / 0.7);
}

.border-r-red-900\/75 {
  border-right-color: rgb(127 29 29 / 0.75);
}

.border-r-red-900\/80 {
  border-right-color: rgb(127 29 29 / 0.8);
}

.border-r-red-900\/85 {
  border-right-color: rgb(127 29 29 / 0.85);
}

.border-r-red-900\/90 {
  border-right-color: rgb(127 29 29 / 0.9);
}

.border-r-red-900\/95 {
  border-right-color: rgb(127 29 29 / 0.95);
}

.border-r-red-950 {
  --tw-border-opacity: 1;
  border-right-color: rgb(69 10 10 / var(--tw-border-opacity, 1));
}

.border-r-red-950\/0 {
  border-right-color: rgb(69 10 10 / 0);
}

.border-r-red-950\/10 {
  border-right-color: rgb(69 10 10 / 0.1);
}

.border-r-red-950\/100 {
  border-right-color: rgb(69 10 10 / 1);
}

.border-r-red-950\/15 {
  border-right-color: rgb(69 10 10 / 0.15);
}

.border-r-red-950\/20 {
  border-right-color: rgb(69 10 10 / 0.2);
}

.border-r-red-950\/25 {
  border-right-color: rgb(69 10 10 / 0.25);
}

.border-r-red-950\/30 {
  border-right-color: rgb(69 10 10 / 0.3);
}

.border-r-red-950\/35 {
  border-right-color: rgb(69 10 10 / 0.35);
}

.border-r-red-950\/40 {
  border-right-color: rgb(69 10 10 / 0.4);
}

.border-r-red-950\/45 {
  border-right-color: rgb(69 10 10 / 0.45);
}

.border-r-red-950\/5 {
  border-right-color: rgb(69 10 10 / 0.05);
}

.border-r-red-950\/50 {
  border-right-color: rgb(69 10 10 / 0.5);
}

.border-r-red-950\/55 {
  border-right-color: rgb(69 10 10 / 0.55);
}

.border-r-red-950\/60 {
  border-right-color: rgb(69 10 10 / 0.6);
}

.border-r-red-950\/65 {
  border-right-color: rgb(69 10 10 / 0.65);
}

.border-r-red-950\/70 {
  border-right-color: rgb(69 10 10 / 0.7);
}

.border-r-red-950\/75 {
  border-right-color: rgb(69 10 10 / 0.75);
}

.border-r-red-950\/80 {
  border-right-color: rgb(69 10 10 / 0.8);
}

.border-r-red-950\/85 {
  border-right-color: rgb(69 10 10 / 0.85);
}

.border-r-red-950\/90 {
  border-right-color: rgb(69 10 10 / 0.9);
}

.border-r-red-950\/95 {
  border-right-color: rgb(69 10 10 / 0.95);
}

.border-r-transparent {
  border-right-color: transparent;
}

.border-r-transparent\/0 {
  border-right-color: rgb(0 0 0 / 0);
}

.border-r-transparent\/10 {
  border-right-color: rgb(0 0 0 / 0.1);
}

.border-r-transparent\/100 {
  border-right-color: rgb(0 0 0 / 1);
}

.border-r-transparent\/15 {
  border-right-color: rgb(0 0 0 / 0.15);
}

.border-r-transparent\/20 {
  border-right-color: rgb(0 0 0 / 0.2);
}

.border-r-transparent\/25 {
  border-right-color: rgb(0 0 0 / 0.25);
}

.border-r-transparent\/30 {
  border-right-color: rgb(0 0 0 / 0.3);
}

.border-r-transparent\/35 {
  border-right-color: rgb(0 0 0 / 0.35);
}

.border-r-transparent\/40 {
  border-right-color: rgb(0 0 0 / 0.4);
}

.border-r-transparent\/45 {
  border-right-color: rgb(0 0 0 / 0.45);
}

.border-r-transparent\/5 {
  border-right-color: rgb(0 0 0 / 0.05);
}

.border-r-transparent\/50 {
  border-right-color: rgb(0 0 0 / 0.5);
}

.border-r-transparent\/55 {
  border-right-color: rgb(0 0 0 / 0.55);
}

.border-r-transparent\/60 {
  border-right-color: rgb(0 0 0 / 0.6);
}

.border-r-transparent\/65 {
  border-right-color: rgb(0 0 0 / 0.65);
}

.border-r-transparent\/70 {
  border-right-color: rgb(0 0 0 / 0.7);
}

.border-r-transparent\/75 {
  border-right-color: rgb(0 0 0 / 0.75);
}

.border-r-transparent\/80 {
  border-right-color: rgb(0 0 0 / 0.8);
}

.border-r-transparent\/85 {
  border-right-color: rgb(0 0 0 / 0.85);
}

.border-r-transparent\/90 {
  border-right-color: rgb(0 0 0 / 0.9);
}

.border-r-transparent\/95 {
  border-right-color: rgb(0 0 0 / 0.95);
}

.border-r-white {
  --tw-border-opacity: 1;
  border-right-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}

.border-r-white\/0 {
  border-right-color: rgb(255 255 255 / 0);
}

.border-r-white\/10 {
  border-right-color: rgb(255 255 255 / 0.1);
}

.border-r-white\/100 {
  border-right-color: rgb(255 255 255 / 1);
}

.border-r-white\/15 {
  border-right-color: rgb(255 255 255 / 0.15);
}

.border-r-white\/20 {
  border-right-color: rgb(255 255 255 / 0.2);
}

.border-r-white\/25 {
  border-right-color: rgb(255 255 255 / 0.25);
}

.border-r-white\/30 {
  border-right-color: rgb(255 255 255 / 0.3);
}

.border-r-white\/35 {
  border-right-color: rgb(255 255 255 / 0.35);
}

.border-r-white\/40 {
  border-right-color: rgb(255 255 255 / 0.4);
}

.border-r-white\/45 {
  border-right-color: rgb(255 255 255 / 0.45);
}

.border-r-white\/5 {
  border-right-color: rgb(255 255 255 / 0.05);
}

.border-r-white\/50 {
  border-right-color: rgb(255 255 255 / 0.5);
}

.border-r-white\/55 {
  border-right-color: rgb(255 255 255 / 0.55);
}

.border-r-white\/60 {
  border-right-color: rgb(255 255 255 / 0.6);
}

.border-r-white\/65 {
  border-right-color: rgb(255 255 255 / 0.65);
}

.border-r-white\/70 {
  border-right-color: rgb(255 255 255 / 0.7);
}

.border-r-white\/75 {
  border-right-color: rgb(255 255 255 / 0.75);
}

.border-r-white\/80 {
  border-right-color: rgb(255 255 255 / 0.8);
}

.border-r-white\/85 {
  border-right-color: rgb(255 255 255 / 0.85);
}

.border-r-white\/90 {
  border-right-color: rgb(255 255 255 / 0.9);
}

.border-r-white\/95 {
  border-right-color: rgb(255 255 255 / 0.95);
}

.border-s-black {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
}

.border-s-black\/0 {
  border-inline-start-color: rgb(0 0 0 / 0);
}

.border-s-black\/10 {
  border-inline-start-color: rgb(0 0 0 / 0.1);
}

.border-s-black\/100 {
  border-inline-start-color: rgb(0 0 0 / 1);
}

.border-s-black\/15 {
  border-inline-start-color: rgb(0 0 0 / 0.15);
}

.border-s-black\/20 {
  border-inline-start-color: rgb(0 0 0 / 0.2);
}

.border-s-black\/25 {
  border-inline-start-color: rgb(0 0 0 / 0.25);
}

.border-s-black\/30 {
  border-inline-start-color: rgb(0 0 0 / 0.3);
}

.border-s-black\/35 {
  border-inline-start-color: rgb(0 0 0 / 0.35);
}

.border-s-black\/40 {
  border-inline-start-color: rgb(0 0 0 / 0.4);
}

.border-s-black\/45 {
  border-inline-start-color: rgb(0 0 0 / 0.45);
}

.border-s-black\/5 {
  border-inline-start-color: rgb(0 0 0 / 0.05);
}

.border-s-black\/50 {
  border-inline-start-color: rgb(0 0 0 / 0.5);
}

.border-s-black\/55 {
  border-inline-start-color: rgb(0 0 0 / 0.55);
}

.border-s-black\/60 {
  border-inline-start-color: rgb(0 0 0 / 0.6);
}

.border-s-black\/65 {
  border-inline-start-color: rgb(0 0 0 / 0.65);
}

.border-s-black\/70 {
  border-inline-start-color: rgb(0 0 0 / 0.7);
}

.border-s-black\/75 {
  border-inline-start-color: rgb(0 0 0 / 0.75);
}

.border-s-black\/80 {
  border-inline-start-color: rgb(0 0 0 / 0.8);
}

.border-s-black\/85 {
  border-inline-start-color: rgb(0 0 0 / 0.85);
}

.border-s-black\/90 {
  border-inline-start-color: rgb(0 0 0 / 0.9);
}

.border-s-black\/95 {
  border-inline-start-color: rgb(0 0 0 / 0.95);
}

.border-s-blue-100 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(219 234 254 / var(--tw-border-opacity, 1));
}

.border-s-blue-100\/0 {
  border-inline-start-color: rgb(219 234 254 / 0);
}

.border-s-blue-100\/10 {
  border-inline-start-color: rgb(219 234 254 / 0.1);
}

.border-s-blue-100\/100 {
  border-inline-start-color: rgb(219 234 254 / 1);
}

.border-s-blue-100\/15 {
  border-inline-start-color: rgb(219 234 254 / 0.15);
}

.border-s-blue-100\/20 {
  border-inline-start-color: rgb(219 234 254 / 0.2);
}

.border-s-blue-100\/25 {
  border-inline-start-color: rgb(219 234 254 / 0.25);
}

.border-s-blue-100\/30 {
  border-inline-start-color: rgb(219 234 254 / 0.3);
}

.border-s-blue-100\/35 {
  border-inline-start-color: rgb(219 234 254 / 0.35);
}

.border-s-blue-100\/40 {
  border-inline-start-color: rgb(219 234 254 / 0.4);
}

.border-s-blue-100\/45 {
  border-inline-start-color: rgb(219 234 254 / 0.45);
}

.border-s-blue-100\/5 {
  border-inline-start-color: rgb(219 234 254 / 0.05);
}

.border-s-blue-100\/50 {
  border-inline-start-color: rgb(219 234 254 / 0.5);
}

.border-s-blue-100\/55 {
  border-inline-start-color: rgb(219 234 254 / 0.55);
}

.border-s-blue-100\/60 {
  border-inline-start-color: rgb(219 234 254 / 0.6);
}

.border-s-blue-100\/65 {
  border-inline-start-color: rgb(219 234 254 / 0.65);
}

.border-s-blue-100\/70 {
  border-inline-start-color: rgb(219 234 254 / 0.7);
}

.border-s-blue-100\/75 {
  border-inline-start-color: rgb(219 234 254 / 0.75);
}

.border-s-blue-100\/80 {
  border-inline-start-color: rgb(219 234 254 / 0.8);
}

.border-s-blue-100\/85 {
  border-inline-start-color: rgb(219 234 254 / 0.85);
}

.border-s-blue-100\/90 {
  border-inline-start-color: rgb(219 234 254 / 0.9);
}

.border-s-blue-100\/95 {
  border-inline-start-color: rgb(219 234 254 / 0.95);
}

.border-s-blue-200 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
}

.border-s-blue-200\/0 {
  border-inline-start-color: rgb(191 219 254 / 0);
}

.border-s-blue-200\/10 {
  border-inline-start-color: rgb(191 219 254 / 0.1);
}

.border-s-blue-200\/100 {
  border-inline-start-color: rgb(191 219 254 / 1);
}

.border-s-blue-200\/15 {
  border-inline-start-color: rgb(191 219 254 / 0.15);
}

.border-s-blue-200\/20 {
  border-inline-start-color: rgb(191 219 254 / 0.2);
}

.border-s-blue-200\/25 {
  border-inline-start-color: rgb(191 219 254 / 0.25);
}

.border-s-blue-200\/30 {
  border-inline-start-color: rgb(191 219 254 / 0.3);
}

.border-s-blue-200\/35 {
  border-inline-start-color: rgb(191 219 254 / 0.35);
}

.border-s-blue-200\/40 {
  border-inline-start-color: rgb(191 219 254 / 0.4);
}

.border-s-blue-200\/45 {
  border-inline-start-color: rgb(191 219 254 / 0.45);
}

.border-s-blue-200\/5 {
  border-inline-start-color: rgb(191 219 254 / 0.05);
}

.border-s-blue-200\/50 {
  border-inline-start-color: rgb(191 219 254 / 0.5);
}

.border-s-blue-200\/55 {
  border-inline-start-color: rgb(191 219 254 / 0.55);
}

.border-s-blue-200\/60 {
  border-inline-start-color: rgb(191 219 254 / 0.6);
}

.border-s-blue-200\/65 {
  border-inline-start-color: rgb(191 219 254 / 0.65);
}

.border-s-blue-200\/70 {
  border-inline-start-color: rgb(191 219 254 / 0.7);
}

.border-s-blue-200\/75 {
  border-inline-start-color: rgb(191 219 254 / 0.75);
}

.border-s-blue-200\/80 {
  border-inline-start-color: rgb(191 219 254 / 0.8);
}

.border-s-blue-200\/85 {
  border-inline-start-color: rgb(191 219 254 / 0.85);
}

.border-s-blue-200\/90 {
  border-inline-start-color: rgb(191 219 254 / 0.9);
}

.border-s-blue-200\/95 {
  border-inline-start-color: rgb(191 219 254 / 0.95);
}

.border-s-blue-300 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
}

.border-s-blue-300\/0 {
  border-inline-start-color: rgb(147 197 253 / 0);
}

.border-s-blue-300\/10 {
  border-inline-start-color: rgb(147 197 253 / 0.1);
}

.border-s-blue-300\/100 {
  border-inline-start-color: rgb(147 197 253 / 1);
}

.border-s-blue-300\/15 {
  border-inline-start-color: rgb(147 197 253 / 0.15);
}

.border-s-blue-300\/20 {
  border-inline-start-color: rgb(147 197 253 / 0.2);
}

.border-s-blue-300\/25 {
  border-inline-start-color: rgb(147 197 253 / 0.25);
}

.border-s-blue-300\/30 {
  border-inline-start-color: rgb(147 197 253 / 0.3);
}

.border-s-blue-300\/35 {
  border-inline-start-color: rgb(147 197 253 / 0.35);
}

.border-s-blue-300\/40 {
  border-inline-start-color: rgb(147 197 253 / 0.4);
}

.border-s-blue-300\/45 {
  border-inline-start-color: rgb(147 197 253 / 0.45);
}

.border-s-blue-300\/5 {
  border-inline-start-color: rgb(147 197 253 / 0.05);
}

.border-s-blue-300\/50 {
  border-inline-start-color: rgb(147 197 253 / 0.5);
}

.border-s-blue-300\/55 {
  border-inline-start-color: rgb(147 197 253 / 0.55);
}

.border-s-blue-300\/60 {
  border-inline-start-color: rgb(147 197 253 / 0.6);
}

.border-s-blue-300\/65 {
  border-inline-start-color: rgb(147 197 253 / 0.65);
}

.border-s-blue-300\/70 {
  border-inline-start-color: rgb(147 197 253 / 0.7);
}

.border-s-blue-300\/75 {
  border-inline-start-color: rgb(147 197 253 / 0.75);
}

.border-s-blue-300\/80 {
  border-inline-start-color: rgb(147 197 253 / 0.8);
}

.border-s-blue-300\/85 {
  border-inline-start-color: rgb(147 197 253 / 0.85);
}

.border-s-blue-300\/90 {
  border-inline-start-color: rgb(147 197 253 / 0.9);
}

.border-s-blue-300\/95 {
  border-inline-start-color: rgb(147 197 253 / 0.95);
}

.border-s-blue-400 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(96 165 250 / var(--tw-border-opacity, 1));
}

.border-s-blue-400\/0 {
  border-inline-start-color: rgb(96 165 250 / 0);
}

.border-s-blue-400\/10 {
  border-inline-start-color: rgb(96 165 250 / 0.1);
}

.border-s-blue-400\/100 {
  border-inline-start-color: rgb(96 165 250 / 1);
}

.border-s-blue-400\/15 {
  border-inline-start-color: rgb(96 165 250 / 0.15);
}

.border-s-blue-400\/20 {
  border-inline-start-color: rgb(96 165 250 / 0.2);
}

.border-s-blue-400\/25 {
  border-inline-start-color: rgb(96 165 250 / 0.25);
}

.border-s-blue-400\/30 {
  border-inline-start-color: rgb(96 165 250 / 0.3);
}

.border-s-blue-400\/35 {
  border-inline-start-color: rgb(96 165 250 / 0.35);
}

.border-s-blue-400\/40 {
  border-inline-start-color: rgb(96 165 250 / 0.4);
}

.border-s-blue-400\/45 {
  border-inline-start-color: rgb(96 165 250 / 0.45);
}

.border-s-blue-400\/5 {
  border-inline-start-color: rgb(96 165 250 / 0.05);
}

.border-s-blue-400\/50 {
  border-inline-start-color: rgb(96 165 250 / 0.5);
}

.border-s-blue-400\/55 {
  border-inline-start-color: rgb(96 165 250 / 0.55);
}

.border-s-blue-400\/60 {
  border-inline-start-color: rgb(96 165 250 / 0.6);
}

.border-s-blue-400\/65 {
  border-inline-start-color: rgb(96 165 250 / 0.65);
}

.border-s-blue-400\/70 {
  border-inline-start-color: rgb(96 165 250 / 0.7);
}

.border-s-blue-400\/75 {
  border-inline-start-color: rgb(96 165 250 / 0.75);
}

.border-s-blue-400\/80 {
  border-inline-start-color: rgb(96 165 250 / 0.8);
}

.border-s-blue-400\/85 {
  border-inline-start-color: rgb(96 165 250 / 0.85);
}

.border-s-blue-400\/90 {
  border-inline-start-color: rgb(96 165 250 / 0.9);
}

.border-s-blue-400\/95 {
  border-inline-start-color: rgb(96 165 250 / 0.95);
}

.border-s-blue-50 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(239 246 255 / var(--tw-border-opacity, 1));
}

.border-s-blue-50\/0 {
  border-inline-start-color: rgb(239 246 255 / 0);
}

.border-s-blue-50\/10 {
  border-inline-start-color: rgb(239 246 255 / 0.1);
}

.border-s-blue-50\/100 {
  border-inline-start-color: rgb(239 246 255 / 1);
}

.border-s-blue-50\/15 {
  border-inline-start-color: rgb(239 246 255 / 0.15);
}

.border-s-blue-50\/20 {
  border-inline-start-color: rgb(239 246 255 / 0.2);
}

.border-s-blue-50\/25 {
  border-inline-start-color: rgb(239 246 255 / 0.25);
}

.border-s-blue-50\/30 {
  border-inline-start-color: rgb(239 246 255 / 0.3);
}

.border-s-blue-50\/35 {
  border-inline-start-color: rgb(239 246 255 / 0.35);
}

.border-s-blue-50\/40 {
  border-inline-start-color: rgb(239 246 255 / 0.4);
}

.border-s-blue-50\/45 {
  border-inline-start-color: rgb(239 246 255 / 0.45);
}

.border-s-blue-50\/5 {
  border-inline-start-color: rgb(239 246 255 / 0.05);
}

.border-s-blue-50\/50 {
  border-inline-start-color: rgb(239 246 255 / 0.5);
}

.border-s-blue-50\/55 {
  border-inline-start-color: rgb(239 246 255 / 0.55);
}

.border-s-blue-50\/60 {
  border-inline-start-color: rgb(239 246 255 / 0.6);
}

.border-s-blue-50\/65 {
  border-inline-start-color: rgb(239 246 255 / 0.65);
}

.border-s-blue-50\/70 {
  border-inline-start-color: rgb(239 246 255 / 0.7);
}

.border-s-blue-50\/75 {
  border-inline-start-color: rgb(239 246 255 / 0.75);
}

.border-s-blue-50\/80 {
  border-inline-start-color: rgb(239 246 255 / 0.8);
}

.border-s-blue-50\/85 {
  border-inline-start-color: rgb(239 246 255 / 0.85);
}

.border-s-blue-50\/90 {
  border-inline-start-color: rgb(239 246 255 / 0.9);
}

.border-s-blue-50\/95 {
  border-inline-start-color: rgb(239 246 255 / 0.95);
}

.border-s-blue-500 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}

.border-s-blue-500\/0 {
  border-inline-start-color: rgb(59 130 246 / 0);
}

.border-s-blue-500\/10 {
  border-inline-start-color: rgb(59 130 246 / 0.1);
}

.border-s-blue-500\/100 {
  border-inline-start-color: rgb(59 130 246 / 1);
}

.border-s-blue-500\/15 {
  border-inline-start-color: rgb(59 130 246 / 0.15);
}

.border-s-blue-500\/20 {
  border-inline-start-color: rgb(59 130 246 / 0.2);
}

.border-s-blue-500\/25 {
  border-inline-start-color: rgb(59 130 246 / 0.25);
}

.border-s-blue-500\/30 {
  border-inline-start-color: rgb(59 130 246 / 0.3);
}

.border-s-blue-500\/35 {
  border-inline-start-color: rgb(59 130 246 / 0.35);
}

.border-s-blue-500\/40 {
  border-inline-start-color: rgb(59 130 246 / 0.4);
}

.border-s-blue-500\/45 {
  border-inline-start-color: rgb(59 130 246 / 0.45);
}

.border-s-blue-500\/5 {
  border-inline-start-color: rgb(59 130 246 / 0.05);
}

.border-s-blue-500\/50 {
  border-inline-start-color: rgb(59 130 246 / 0.5);
}

.border-s-blue-500\/55 {
  border-inline-start-color: rgb(59 130 246 / 0.55);
}

.border-s-blue-500\/60 {
  border-inline-start-color: rgb(59 130 246 / 0.6);
}

.border-s-blue-500\/65 {
  border-inline-start-color: rgb(59 130 246 / 0.65);
}

.border-s-blue-500\/70 {
  border-inline-start-color: rgb(59 130 246 / 0.7);
}

.border-s-blue-500\/75 {
  border-inline-start-color: rgb(59 130 246 / 0.75);
}

.border-s-blue-500\/80 {
  border-inline-start-color: rgb(59 130 246 / 0.8);
}

.border-s-blue-500\/85 {
  border-inline-start-color: rgb(59 130 246 / 0.85);
}

.border-s-blue-500\/90 {
  border-inline-start-color: rgb(59 130 246 / 0.9);
}

.border-s-blue-500\/95 {
  border-inline-start-color: rgb(59 130 246 / 0.95);
}

.border-s-blue-600 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}

.border-s-blue-600\/0 {
  border-inline-start-color: rgb(37 99 235 / 0);
}

.border-s-blue-600\/10 {
  border-inline-start-color: rgb(37 99 235 / 0.1);
}

.border-s-blue-600\/100 {
  border-inline-start-color: rgb(37 99 235 / 1);
}

.border-s-blue-600\/15 {
  border-inline-start-color: rgb(37 99 235 / 0.15);
}

.border-s-blue-600\/20 {
  border-inline-start-color: rgb(37 99 235 / 0.2);
}

.border-s-blue-600\/25 {
  border-inline-start-color: rgb(37 99 235 / 0.25);
}

.border-s-blue-600\/30 {
  border-inline-start-color: rgb(37 99 235 / 0.3);
}

.border-s-blue-600\/35 {
  border-inline-start-color: rgb(37 99 235 / 0.35);
}

.border-s-blue-600\/40 {
  border-inline-start-color: rgb(37 99 235 / 0.4);
}

.border-s-blue-600\/45 {
  border-inline-start-color: rgb(37 99 235 / 0.45);
}

.border-s-blue-600\/5 {
  border-inline-start-color: rgb(37 99 235 / 0.05);
}

.border-s-blue-600\/50 {
  border-inline-start-color: rgb(37 99 235 / 0.5);
}

.border-s-blue-600\/55 {
  border-inline-start-color: rgb(37 99 235 / 0.55);
}

.border-s-blue-600\/60 {
  border-inline-start-color: rgb(37 99 235 / 0.6);
}

.border-s-blue-600\/65 {
  border-inline-start-color: rgb(37 99 235 / 0.65);
}

.border-s-blue-600\/70 {
  border-inline-start-color: rgb(37 99 235 / 0.7);
}

.border-s-blue-600\/75 {
  border-inline-start-color: rgb(37 99 235 / 0.75);
}

.border-s-blue-600\/80 {
  border-inline-start-color: rgb(37 99 235 / 0.8);
}

.border-s-blue-600\/85 {
  border-inline-start-color: rgb(37 99 235 / 0.85);
}

.border-s-blue-600\/90 {
  border-inline-start-color: rgb(37 99 235 / 0.9);
}

.border-s-blue-600\/95 {
  border-inline-start-color: rgb(37 99 235 / 0.95);
}

.border-s-blue-700 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(29 78 216 / var(--tw-border-opacity, 1));
}

.border-s-blue-700\/0 {
  border-inline-start-color: rgb(29 78 216 / 0);
}

.border-s-blue-700\/10 {
  border-inline-start-color: rgb(29 78 216 / 0.1);
}

.border-s-blue-700\/100 {
  border-inline-start-color: rgb(29 78 216 / 1);
}

.border-s-blue-700\/15 {
  border-inline-start-color: rgb(29 78 216 / 0.15);
}

.border-s-blue-700\/20 {
  border-inline-start-color: rgb(29 78 216 / 0.2);
}

.border-s-blue-700\/25 {
  border-inline-start-color: rgb(29 78 216 / 0.25);
}

.border-s-blue-700\/30 {
  border-inline-start-color: rgb(29 78 216 / 0.3);
}

.border-s-blue-700\/35 {
  border-inline-start-color: rgb(29 78 216 / 0.35);
}

.border-s-blue-700\/40 {
  border-inline-start-color: rgb(29 78 216 / 0.4);
}

.border-s-blue-700\/45 {
  border-inline-start-color: rgb(29 78 216 / 0.45);
}

.border-s-blue-700\/5 {
  border-inline-start-color: rgb(29 78 216 / 0.05);
}

.border-s-blue-700\/50 {
  border-inline-start-color: rgb(29 78 216 / 0.5);
}

.border-s-blue-700\/55 {
  border-inline-start-color: rgb(29 78 216 / 0.55);
}

.border-s-blue-700\/60 {
  border-inline-start-color: rgb(29 78 216 / 0.6);
}

.border-s-blue-700\/65 {
  border-inline-start-color: rgb(29 78 216 / 0.65);
}

.border-s-blue-700\/70 {
  border-inline-start-color: rgb(29 78 216 / 0.7);
}

.border-s-blue-700\/75 {
  border-inline-start-color: rgb(29 78 216 / 0.75);
}

.border-s-blue-700\/80 {
  border-inline-start-color: rgb(29 78 216 / 0.8);
}

.border-s-blue-700\/85 {
  border-inline-start-color: rgb(29 78 216 / 0.85);
}

.border-s-blue-700\/90 {
  border-inline-start-color: rgb(29 78 216 / 0.9);
}

.border-s-blue-700\/95 {
  border-inline-start-color: rgb(29 78 216 / 0.95);
}

.border-s-blue-800 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(30 64 175 / var(--tw-border-opacity, 1));
}

.border-s-blue-800\/0 {
  border-inline-start-color: rgb(30 64 175 / 0);
}

.border-s-blue-800\/10 {
  border-inline-start-color: rgb(30 64 175 / 0.1);
}

.border-s-blue-800\/100 {
  border-inline-start-color: rgb(30 64 175 / 1);
}

.border-s-blue-800\/15 {
  border-inline-start-color: rgb(30 64 175 / 0.15);
}

.border-s-blue-800\/20 {
  border-inline-start-color: rgb(30 64 175 / 0.2);
}

.border-s-blue-800\/25 {
  border-inline-start-color: rgb(30 64 175 / 0.25);
}

.border-s-blue-800\/30 {
  border-inline-start-color: rgb(30 64 175 / 0.3);
}

.border-s-blue-800\/35 {
  border-inline-start-color: rgb(30 64 175 / 0.35);
}

.border-s-blue-800\/40 {
  border-inline-start-color: rgb(30 64 175 / 0.4);
}

.border-s-blue-800\/45 {
  border-inline-start-color: rgb(30 64 175 / 0.45);
}

.border-s-blue-800\/5 {
  border-inline-start-color: rgb(30 64 175 / 0.05);
}

.border-s-blue-800\/50 {
  border-inline-start-color: rgb(30 64 175 / 0.5);
}

.border-s-blue-800\/55 {
  border-inline-start-color: rgb(30 64 175 / 0.55);
}

.border-s-blue-800\/60 {
  border-inline-start-color: rgb(30 64 175 / 0.6);
}

.border-s-blue-800\/65 {
  border-inline-start-color: rgb(30 64 175 / 0.65);
}

.border-s-blue-800\/70 {
  border-inline-start-color: rgb(30 64 175 / 0.7);
}

.border-s-blue-800\/75 {
  border-inline-start-color: rgb(30 64 175 / 0.75);
}

.border-s-blue-800\/80 {
  border-inline-start-color: rgb(30 64 175 / 0.8);
}

.border-s-blue-800\/85 {
  border-inline-start-color: rgb(30 64 175 / 0.85);
}

.border-s-blue-800\/90 {
  border-inline-start-color: rgb(30 64 175 / 0.9);
}

.border-s-blue-800\/95 {
  border-inline-start-color: rgb(30 64 175 / 0.95);
}

.border-s-blue-900 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(30 58 138 / var(--tw-border-opacity, 1));
}

.border-s-blue-900\/0 {
  border-inline-start-color: rgb(30 58 138 / 0);
}

.border-s-blue-900\/10 {
  border-inline-start-color: rgb(30 58 138 / 0.1);
}

.border-s-blue-900\/100 {
  border-inline-start-color: rgb(30 58 138 / 1);
}

.border-s-blue-900\/15 {
  border-inline-start-color: rgb(30 58 138 / 0.15);
}

.border-s-blue-900\/20 {
  border-inline-start-color: rgb(30 58 138 / 0.2);
}

.border-s-blue-900\/25 {
  border-inline-start-color: rgb(30 58 138 / 0.25);
}

.border-s-blue-900\/30 {
  border-inline-start-color: rgb(30 58 138 / 0.3);
}

.border-s-blue-900\/35 {
  border-inline-start-color: rgb(30 58 138 / 0.35);
}

.border-s-blue-900\/40 {
  border-inline-start-color: rgb(30 58 138 / 0.4);
}

.border-s-blue-900\/45 {
  border-inline-start-color: rgb(30 58 138 / 0.45);
}

.border-s-blue-900\/5 {
  border-inline-start-color: rgb(30 58 138 / 0.05);
}

.border-s-blue-900\/50 {
  border-inline-start-color: rgb(30 58 138 / 0.5);
}

.border-s-blue-900\/55 {
  border-inline-start-color: rgb(30 58 138 / 0.55);
}

.border-s-blue-900\/60 {
  border-inline-start-color: rgb(30 58 138 / 0.6);
}

.border-s-blue-900\/65 {
  border-inline-start-color: rgb(30 58 138 / 0.65);
}

.border-s-blue-900\/70 {
  border-inline-start-color: rgb(30 58 138 / 0.7);
}

.border-s-blue-900\/75 {
  border-inline-start-color: rgb(30 58 138 / 0.75);
}

.border-s-blue-900\/80 {
  border-inline-start-color: rgb(30 58 138 / 0.8);
}

.border-s-blue-900\/85 {
  border-inline-start-color: rgb(30 58 138 / 0.85);
}

.border-s-blue-900\/90 {
  border-inline-start-color: rgb(30 58 138 / 0.9);
}

.border-s-blue-900\/95 {
  border-inline-start-color: rgb(30 58 138 / 0.95);
}

.border-s-blue-950 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(23 37 84 / var(--tw-border-opacity, 1));
}

.border-s-blue-950\/0 {
  border-inline-start-color: rgb(23 37 84 / 0);
}

.border-s-blue-950\/10 {
  border-inline-start-color: rgb(23 37 84 / 0.1);
}

.border-s-blue-950\/100 {
  border-inline-start-color: rgb(23 37 84 / 1);
}

.border-s-blue-950\/15 {
  border-inline-start-color: rgb(23 37 84 / 0.15);
}

.border-s-blue-950\/20 {
  border-inline-start-color: rgb(23 37 84 / 0.2);
}

.border-s-blue-950\/25 {
  border-inline-start-color: rgb(23 37 84 / 0.25);
}

.border-s-blue-950\/30 {
  border-inline-start-color: rgb(23 37 84 / 0.3);
}

.border-s-blue-950\/35 {
  border-inline-start-color: rgb(23 37 84 / 0.35);
}

.border-s-blue-950\/40 {
  border-inline-start-color: rgb(23 37 84 / 0.4);
}

.border-s-blue-950\/45 {
  border-inline-start-color: rgb(23 37 84 / 0.45);
}

.border-s-blue-950\/5 {
  border-inline-start-color: rgb(23 37 84 / 0.05);
}

.border-s-blue-950\/50 {
  border-inline-start-color: rgb(23 37 84 / 0.5);
}

.border-s-blue-950\/55 {
  border-inline-start-color: rgb(23 37 84 / 0.55);
}

.border-s-blue-950\/60 {
  border-inline-start-color: rgb(23 37 84 / 0.6);
}

.border-s-blue-950\/65 {
  border-inline-start-color: rgb(23 37 84 / 0.65);
}

.border-s-blue-950\/70 {
  border-inline-start-color: rgb(23 37 84 / 0.7);
}

.border-s-blue-950\/75 {
  border-inline-start-color: rgb(23 37 84 / 0.75);
}

.border-s-blue-950\/80 {
  border-inline-start-color: rgb(23 37 84 / 0.8);
}

.border-s-blue-950\/85 {
  border-inline-start-color: rgb(23 37 84 / 0.85);
}

.border-s-blue-950\/90 {
  border-inline-start-color: rgb(23 37 84 / 0.9);
}

.border-s-blue-950\/95 {
  border-inline-start-color: rgb(23 37 84 / 0.95);
}

.border-s-current {
  border-inline-start-color: currentColor;
}

.border-s-eva-blue {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(26 33 62 / var(--tw-border-opacity, 1));
}

.border-s-eva-blue-appt {
  --tw-border-opacity: 1;
  border-inline-start-color: rgba(52, 137, 207, var(--tw-border-opacity, 1));
}

.border-s-eva-blue-appt\/0 {
  border-inline-start-color: rgba(52, 137, 207, 0);
}

.border-s-eva-blue-appt\/10 {
  border-inline-start-color: rgba(52, 137, 207, 0.1);
}

.border-s-eva-blue-appt\/100 {
  border-inline-start-color: rgba(52, 137, 207, 1);
}

.border-s-eva-blue-appt\/15 {
  border-inline-start-color: rgba(52, 137, 207, 0.15);
}

.border-s-eva-blue-appt\/20 {
  border-inline-start-color: rgba(52, 137, 207, 0.2);
}

.border-s-eva-blue-appt\/25 {
  border-inline-start-color: rgba(52, 137, 207, 0.25);
}

.border-s-eva-blue-appt\/30 {
  border-inline-start-color: rgba(52, 137, 207, 0.3);
}

.border-s-eva-blue-appt\/35 {
  border-inline-start-color: rgba(52, 137, 207, 0.35);
}

.border-s-eva-blue-appt\/40 {
  border-inline-start-color: rgba(52, 137, 207, 0.4);
}

.border-s-eva-blue-appt\/45 {
  border-inline-start-color: rgba(52, 137, 207, 0.45);
}

.border-s-eva-blue-appt\/5 {
  border-inline-start-color: rgba(52, 137, 207, 0.05);
}

.border-s-eva-blue-appt\/50 {
  border-inline-start-color: rgba(52, 137, 207, 0.5);
}

.border-s-eva-blue-appt\/55 {
  border-inline-start-color: rgba(52, 137, 207, 0.55);
}

.border-s-eva-blue-appt\/60 {
  border-inline-start-color: rgba(52, 137, 207, 0.6);
}

.border-s-eva-blue-appt\/65 {
  border-inline-start-color: rgba(52, 137, 207, 0.65);
}

.border-s-eva-blue-appt\/70 {
  border-inline-start-color: rgba(52, 137, 207, 0.7);
}

.border-s-eva-blue-appt\/75 {
  border-inline-start-color: rgba(52, 137, 207, 0.75);
}

.border-s-eva-blue-appt\/80 {
  border-inline-start-color: rgba(52, 137, 207, 0.8);
}

.border-s-eva-blue-appt\/85 {
  border-inline-start-color: rgba(52, 137, 207, 0.85);
}

.border-s-eva-blue-appt\/90 {
  border-inline-start-color: rgba(52, 137, 207, 0.9);
}

.border-s-eva-blue-appt\/95 {
  border-inline-start-color: rgba(52, 137, 207, 0.95);
}

.border-s-eva-blue-gray {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(117 121 139 / var(--tw-border-opacity, 1));
}

.border-s-eva-blue-gray\/0 {
  border-inline-start-color: rgb(117 121 139 / 0);
}

.border-s-eva-blue-gray\/10 {
  border-inline-start-color: rgb(117 121 139 / 0.1);
}

.border-s-eva-blue-gray\/100 {
  border-inline-start-color: rgb(117 121 139 / 1);
}

.border-s-eva-blue-gray\/15 {
  border-inline-start-color: rgb(117 121 139 / 0.15);
}

.border-s-eva-blue-gray\/20 {
  border-inline-start-color: rgb(117 121 139 / 0.2);
}

.border-s-eva-blue-gray\/25 {
  border-inline-start-color: rgb(117 121 139 / 0.25);
}

.border-s-eva-blue-gray\/30 {
  border-inline-start-color: rgb(117 121 139 / 0.3);
}

.border-s-eva-blue-gray\/35 {
  border-inline-start-color: rgb(117 121 139 / 0.35);
}

.border-s-eva-blue-gray\/40 {
  border-inline-start-color: rgb(117 121 139 / 0.4);
}

.border-s-eva-blue-gray\/45 {
  border-inline-start-color: rgb(117 121 139 / 0.45);
}

.border-s-eva-blue-gray\/5 {
  border-inline-start-color: rgb(117 121 139 / 0.05);
}

.border-s-eva-blue-gray\/50 {
  border-inline-start-color: rgb(117 121 139 / 0.5);
}

.border-s-eva-blue-gray\/55 {
  border-inline-start-color: rgb(117 121 139 / 0.55);
}

.border-s-eva-blue-gray\/60 {
  border-inline-start-color: rgb(117 121 139 / 0.6);
}

.border-s-eva-blue-gray\/65 {
  border-inline-start-color: rgb(117 121 139 / 0.65);
}

.border-s-eva-blue-gray\/70 {
  border-inline-start-color: rgb(117 121 139 / 0.7);
}

.border-s-eva-blue-gray\/75 {
  border-inline-start-color: rgb(117 121 139 / 0.75);
}

.border-s-eva-blue-gray\/80 {
  border-inline-start-color: rgb(117 121 139 / 0.8);
}

.border-s-eva-blue-gray\/85 {
  border-inline-start-color: rgb(117 121 139 / 0.85);
}

.border-s-eva-blue-gray\/90 {
  border-inline-start-color: rgb(117 121 139 / 0.9);
}

.border-s-eva-blue-gray\/95 {
  border-inline-start-color: rgb(117 121 139 / 0.95);
}

.border-s-eva-blue-hv {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(15 18 31 / var(--tw-border-opacity, 1));
}

.border-s-eva-blue-hv\/0 {
  border-inline-start-color: rgb(15 18 31 / 0);
}

.border-s-eva-blue-hv\/10 {
  border-inline-start-color: rgb(15 18 31 / 0.1);
}

.border-s-eva-blue-hv\/100 {
  border-inline-start-color: rgb(15 18 31 / 1);
}

.border-s-eva-blue-hv\/15 {
  border-inline-start-color: rgb(15 18 31 / 0.15);
}

.border-s-eva-blue-hv\/20 {
  border-inline-start-color: rgb(15 18 31 / 0.2);
}

.border-s-eva-blue-hv\/25 {
  border-inline-start-color: rgb(15 18 31 / 0.25);
}

.border-s-eva-blue-hv\/30 {
  border-inline-start-color: rgb(15 18 31 / 0.3);
}

.border-s-eva-blue-hv\/35 {
  border-inline-start-color: rgb(15 18 31 / 0.35);
}

.border-s-eva-blue-hv\/40 {
  border-inline-start-color: rgb(15 18 31 / 0.4);
}

.border-s-eva-blue-hv\/45 {
  border-inline-start-color: rgb(15 18 31 / 0.45);
}

.border-s-eva-blue-hv\/5 {
  border-inline-start-color: rgb(15 18 31 / 0.05);
}

.border-s-eva-blue-hv\/50 {
  border-inline-start-color: rgb(15 18 31 / 0.5);
}

.border-s-eva-blue-hv\/55 {
  border-inline-start-color: rgb(15 18 31 / 0.55);
}

.border-s-eva-blue-hv\/60 {
  border-inline-start-color: rgb(15 18 31 / 0.6);
}

.border-s-eva-blue-hv\/65 {
  border-inline-start-color: rgb(15 18 31 / 0.65);
}

.border-s-eva-blue-hv\/70 {
  border-inline-start-color: rgb(15 18 31 / 0.7);
}

.border-s-eva-blue-hv\/75 {
  border-inline-start-color: rgb(15 18 31 / 0.75);
}

.border-s-eva-blue-hv\/80 {
  border-inline-start-color: rgb(15 18 31 / 0.8);
}

.border-s-eva-blue-hv\/85 {
  border-inline-start-color: rgb(15 18 31 / 0.85);
}

.border-s-eva-blue-hv\/90 {
  border-inline-start-color: rgb(15 18 31 / 0.9);
}

.border-s-eva-blue-hv\/95 {
  border-inline-start-color: rgb(15 18 31 / 0.95);
}

.border-s-eva-blue-light {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(48 56 81 / var(--tw-border-opacity, 1));
}

.border-s-eva-blue-light-hv {
  border-inline-start-color: rgba(17,20,30,.3);
}

.border-s-eva-blue-light-hv\/0 {
  border-inline-start-color: rgba(17, 20, 30, 0);
}

.border-s-eva-blue-light-hv\/10 {
  border-inline-start-color: rgba(17, 20, 30, 0.1);
}

.border-s-eva-blue-light-hv\/100 {
  border-inline-start-color: rgba(17, 20, 30, 1);
}

.border-s-eva-blue-light-hv\/15 {
  border-inline-start-color: rgba(17, 20, 30, 0.15);
}

.border-s-eva-blue-light-hv\/20 {
  border-inline-start-color: rgba(17, 20, 30, 0.2);
}

.border-s-eva-blue-light-hv\/25 {
  border-inline-start-color: rgba(17, 20, 30, 0.25);
}

.border-s-eva-blue-light-hv\/30 {
  border-inline-start-color: rgba(17, 20, 30, 0.3);
}

.border-s-eva-blue-light-hv\/35 {
  border-inline-start-color: rgba(17, 20, 30, 0.35);
}

.border-s-eva-blue-light-hv\/40 {
  border-inline-start-color: rgba(17, 20, 30, 0.4);
}

.border-s-eva-blue-light-hv\/45 {
  border-inline-start-color: rgba(17, 20, 30, 0.45);
}

.border-s-eva-blue-light-hv\/5 {
  border-inline-start-color: rgba(17, 20, 30, 0.05);
}

.border-s-eva-blue-light-hv\/50 {
  border-inline-start-color: rgba(17, 20, 30, 0.5);
}

.border-s-eva-blue-light-hv\/55 {
  border-inline-start-color: rgba(17, 20, 30, 0.55);
}

.border-s-eva-blue-light-hv\/60 {
  border-inline-start-color: rgba(17, 20, 30, 0.6);
}

.border-s-eva-blue-light-hv\/65 {
  border-inline-start-color: rgba(17, 20, 30, 0.65);
}

.border-s-eva-blue-light-hv\/70 {
  border-inline-start-color: rgba(17, 20, 30, 0.7);
}

.border-s-eva-blue-light-hv\/75 {
  border-inline-start-color: rgba(17, 20, 30, 0.75);
}

.border-s-eva-blue-light-hv\/80 {
  border-inline-start-color: rgba(17, 20, 30, 0.8);
}

.border-s-eva-blue-light-hv\/85 {
  border-inline-start-color: rgba(17, 20, 30, 0.85);
}

.border-s-eva-blue-light-hv\/90 {
  border-inline-start-color: rgba(17, 20, 30, 0.9);
}

.border-s-eva-blue-light-hv\/95 {
  border-inline-start-color: rgba(17, 20, 30, 0.95);
}

.border-s-eva-blue-light\/0 {
  border-inline-start-color: rgb(48 56 81 / 0);
}

.border-s-eva-blue-light\/10 {
  border-inline-start-color: rgb(48 56 81 / 0.1);
}

.border-s-eva-blue-light\/100 {
  border-inline-start-color: rgb(48 56 81 / 1);
}

.border-s-eva-blue-light\/15 {
  border-inline-start-color: rgb(48 56 81 / 0.15);
}

.border-s-eva-blue-light\/20 {
  border-inline-start-color: rgb(48 56 81 / 0.2);
}

.border-s-eva-blue-light\/25 {
  border-inline-start-color: rgb(48 56 81 / 0.25);
}

.border-s-eva-blue-light\/30 {
  border-inline-start-color: rgb(48 56 81 / 0.3);
}

.border-s-eva-blue-light\/35 {
  border-inline-start-color: rgb(48 56 81 / 0.35);
}

.border-s-eva-blue-light\/40 {
  border-inline-start-color: rgb(48 56 81 / 0.4);
}

.border-s-eva-blue-light\/45 {
  border-inline-start-color: rgb(48 56 81 / 0.45);
}

.border-s-eva-blue-light\/5 {
  border-inline-start-color: rgb(48 56 81 / 0.05);
}

.border-s-eva-blue-light\/50 {
  border-inline-start-color: rgb(48 56 81 / 0.5);
}

.border-s-eva-blue-light\/55 {
  border-inline-start-color: rgb(48 56 81 / 0.55);
}

.border-s-eva-blue-light\/60 {
  border-inline-start-color: rgb(48 56 81 / 0.6);
}

.border-s-eva-blue-light\/65 {
  border-inline-start-color: rgb(48 56 81 / 0.65);
}

.border-s-eva-blue-light\/70 {
  border-inline-start-color: rgb(48 56 81 / 0.7);
}

.border-s-eva-blue-light\/75 {
  border-inline-start-color: rgb(48 56 81 / 0.75);
}

.border-s-eva-blue-light\/80 {
  border-inline-start-color: rgb(48 56 81 / 0.8);
}

.border-s-eva-blue-light\/85 {
  border-inline-start-color: rgb(48 56 81 / 0.85);
}

.border-s-eva-blue-light\/90 {
  border-inline-start-color: rgb(48 56 81 / 0.9);
}

.border-s-eva-blue-light\/95 {
  border-inline-start-color: rgb(48 56 81 / 0.95);
}

.border-s-eva-blue\/0 {
  border-inline-start-color: rgb(26 33 62 / 0);
}

.border-s-eva-blue\/10 {
  border-inline-start-color: rgb(26 33 62 / 0.1);
}

.border-s-eva-blue\/100 {
  border-inline-start-color: rgb(26 33 62 / 1);
}

.border-s-eva-blue\/15 {
  border-inline-start-color: rgb(26 33 62 / 0.15);
}

.border-s-eva-blue\/20 {
  border-inline-start-color: rgb(26 33 62 / 0.2);
}

.border-s-eva-blue\/25 {
  border-inline-start-color: rgb(26 33 62 / 0.25);
}

.border-s-eva-blue\/30 {
  border-inline-start-color: rgb(26 33 62 / 0.3);
}

.border-s-eva-blue\/35 {
  border-inline-start-color: rgb(26 33 62 / 0.35);
}

.border-s-eva-blue\/40 {
  border-inline-start-color: rgb(26 33 62 / 0.4);
}

.border-s-eva-blue\/45 {
  border-inline-start-color: rgb(26 33 62 / 0.45);
}

.border-s-eva-blue\/5 {
  border-inline-start-color: rgb(26 33 62 / 0.05);
}

.border-s-eva-blue\/50 {
  border-inline-start-color: rgb(26 33 62 / 0.5);
}

.border-s-eva-blue\/55 {
  border-inline-start-color: rgb(26 33 62 / 0.55);
}

.border-s-eva-blue\/60 {
  border-inline-start-color: rgb(26 33 62 / 0.6);
}

.border-s-eva-blue\/65 {
  border-inline-start-color: rgb(26 33 62 / 0.65);
}

.border-s-eva-blue\/70 {
  border-inline-start-color: rgb(26 33 62 / 0.7);
}

.border-s-eva-blue\/75 {
  border-inline-start-color: rgb(26 33 62 / 0.75);
}

.border-s-eva-blue\/80 {
  border-inline-start-color: rgb(26 33 62 / 0.8);
}

.border-s-eva-blue\/85 {
  border-inline-start-color: rgb(26 33 62 / 0.85);
}

.border-s-eva-blue\/90 {
  border-inline-start-color: rgb(26 33 62 / 0.9);
}

.border-s-eva-blue\/95 {
  border-inline-start-color: rgb(26 33 62 / 0.95);
}

.border-s-eva-brown-appt {
  border-inline-start-color: rgba(99, 93, 94, 1);
}

.border-s-eva-brown-appt\/0 {
  border-inline-start-color: rgba(99, 93, 94, 0);
}

.border-s-eva-brown-appt\/10 {
  border-inline-start-color: rgba(99, 93, 94, 0.1);
}

.border-s-eva-brown-appt\/100 {
  border-inline-start-color: rgba(99, 93, 94, 1);
}

.border-s-eva-brown-appt\/15 {
  border-inline-start-color: rgba(99, 93, 94, 0.15);
}

.border-s-eva-brown-appt\/20 {
  border-inline-start-color: rgba(99, 93, 94, 0.2);
}

.border-s-eva-brown-appt\/25 {
  border-inline-start-color: rgba(99, 93, 94, 0.25);
}

.border-s-eva-brown-appt\/30 {
  border-inline-start-color: rgba(99, 93, 94, 0.3);
}

.border-s-eva-brown-appt\/35 {
  border-inline-start-color: rgba(99, 93, 94, 0.35);
}

.border-s-eva-brown-appt\/40 {
  border-inline-start-color: rgba(99, 93, 94, 0.4);
}

.border-s-eva-brown-appt\/45 {
  border-inline-start-color: rgba(99, 93, 94, 0.45);
}

.border-s-eva-brown-appt\/5 {
  border-inline-start-color: rgba(99, 93, 94, 0.05);
}

.border-s-eva-brown-appt\/50 {
  border-inline-start-color: rgba(99, 93, 94, 0.5);
}

.border-s-eva-brown-appt\/55 {
  border-inline-start-color: rgba(99, 93, 94, 0.55);
}

.border-s-eva-brown-appt\/60 {
  border-inline-start-color: rgba(99, 93, 94, 0.6);
}

.border-s-eva-brown-appt\/65 {
  border-inline-start-color: rgba(99, 93, 94, 0.65);
}

.border-s-eva-brown-appt\/70 {
  border-inline-start-color: rgba(99, 93, 94, 0.7);
}

.border-s-eva-brown-appt\/75 {
  border-inline-start-color: rgba(99, 93, 94, 0.75);
}

.border-s-eva-brown-appt\/80 {
  border-inline-start-color: rgba(99, 93, 94, 0.8);
}

.border-s-eva-brown-appt\/85 {
  border-inline-start-color: rgba(99, 93, 94, 0.85);
}

.border-s-eva-brown-appt\/90 {
  border-inline-start-color: rgba(99, 93, 94, 0.9);
}

.border-s-eva-brown-appt\/95 {
  border-inline-start-color: rgba(99, 93, 94, 0.95);
}

.border-s-eva-dark-green-appt {
  border-inline-start-color: rgba(102, 188, 130, 1);
}

.border-s-eva-dark-green-appt\/0 {
  border-inline-start-color: rgba(102, 188, 130, 0);
}

.border-s-eva-dark-green-appt\/10 {
  border-inline-start-color: rgba(102, 188, 130, 0.1);
}

.border-s-eva-dark-green-appt\/100 {
  border-inline-start-color: rgba(102, 188, 130, 1);
}

.border-s-eva-dark-green-appt\/15 {
  border-inline-start-color: rgba(102, 188, 130, 0.15);
}

.border-s-eva-dark-green-appt\/20 {
  border-inline-start-color: rgba(102, 188, 130, 0.2);
}

.border-s-eva-dark-green-appt\/25 {
  border-inline-start-color: rgba(102, 188, 130, 0.25);
}

.border-s-eva-dark-green-appt\/30 {
  border-inline-start-color: rgba(102, 188, 130, 0.3);
}

.border-s-eva-dark-green-appt\/35 {
  border-inline-start-color: rgba(102, 188, 130, 0.35);
}

.border-s-eva-dark-green-appt\/40 {
  border-inline-start-color: rgba(102, 188, 130, 0.4);
}

.border-s-eva-dark-green-appt\/45 {
  border-inline-start-color: rgba(102, 188, 130, 0.45);
}

.border-s-eva-dark-green-appt\/5 {
  border-inline-start-color: rgba(102, 188, 130, 0.05);
}

.border-s-eva-dark-green-appt\/50 {
  border-inline-start-color: rgba(102, 188, 130, 0.5);
}

.border-s-eva-dark-green-appt\/55 {
  border-inline-start-color: rgba(102, 188, 130, 0.55);
}

.border-s-eva-dark-green-appt\/60 {
  border-inline-start-color: rgba(102, 188, 130, 0.6);
}

.border-s-eva-dark-green-appt\/65 {
  border-inline-start-color: rgba(102, 188, 130, 0.65);
}

.border-s-eva-dark-green-appt\/70 {
  border-inline-start-color: rgba(102, 188, 130, 0.7);
}

.border-s-eva-dark-green-appt\/75 {
  border-inline-start-color: rgba(102, 188, 130, 0.75);
}

.border-s-eva-dark-green-appt\/80 {
  border-inline-start-color: rgba(102, 188, 130, 0.8);
}

.border-s-eva-dark-green-appt\/85 {
  border-inline-start-color: rgba(102, 188, 130, 0.85);
}

.border-s-eva-dark-green-appt\/90 {
  border-inline-start-color: rgba(102, 188, 130, 0.9);
}

.border-s-eva-dark-green-appt\/95 {
  border-inline-start-color: rgba(102, 188, 130, 0.95);
}

.border-s-eva-dark-red-appt {
  border-inline-start-color: rgba(198, 102, 94, 1);
}

.border-s-eva-dark-red-appt\/0 {
  border-inline-start-color: rgba(198, 102, 94, 0);
}

.border-s-eva-dark-red-appt\/10 {
  border-inline-start-color: rgba(198, 102, 94, 0.1);
}

.border-s-eva-dark-red-appt\/100 {
  border-inline-start-color: rgba(198, 102, 94, 1);
}

.border-s-eva-dark-red-appt\/15 {
  border-inline-start-color: rgba(198, 102, 94, 0.15);
}

.border-s-eva-dark-red-appt\/20 {
  border-inline-start-color: rgba(198, 102, 94, 0.2);
}

.border-s-eva-dark-red-appt\/25 {
  border-inline-start-color: rgba(198, 102, 94, 0.25);
}

.border-s-eva-dark-red-appt\/30 {
  border-inline-start-color: rgba(198, 102, 94, 0.3);
}

.border-s-eva-dark-red-appt\/35 {
  border-inline-start-color: rgba(198, 102, 94, 0.35);
}

.border-s-eva-dark-red-appt\/40 {
  border-inline-start-color: rgba(198, 102, 94, 0.4);
}

.border-s-eva-dark-red-appt\/45 {
  border-inline-start-color: rgba(198, 102, 94, 0.45);
}

.border-s-eva-dark-red-appt\/5 {
  border-inline-start-color: rgba(198, 102, 94, 0.05);
}

.border-s-eva-dark-red-appt\/50 {
  border-inline-start-color: rgba(198, 102, 94, 0.5);
}

.border-s-eva-dark-red-appt\/55 {
  border-inline-start-color: rgba(198, 102, 94, 0.55);
}

.border-s-eva-dark-red-appt\/60 {
  border-inline-start-color: rgba(198, 102, 94, 0.6);
}

.border-s-eva-dark-red-appt\/65 {
  border-inline-start-color: rgba(198, 102, 94, 0.65);
}

.border-s-eva-dark-red-appt\/70 {
  border-inline-start-color: rgba(198, 102, 94, 0.7);
}

.border-s-eva-dark-red-appt\/75 {
  border-inline-start-color: rgba(198, 102, 94, 0.75);
}

.border-s-eva-dark-red-appt\/80 {
  border-inline-start-color: rgba(198, 102, 94, 0.8);
}

.border-s-eva-dark-red-appt\/85 {
  border-inline-start-color: rgba(198, 102, 94, 0.85);
}

.border-s-eva-dark-red-appt\/90 {
  border-inline-start-color: rgba(198, 102, 94, 0.9);
}

.border-s-eva-dark-red-appt\/95 {
  border-inline-start-color: rgba(198, 102, 94, 0.95);
}

.border-s-eva-green {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(73 181 168 / var(--tw-border-opacity, 1));
}

.border-s-eva-green-appt {
  --tw-border-opacity: 1;
  border-inline-start-color: rgba(128, 215, 109, var(--tw-border-opacity, 1));
}

.border-s-eva-green-appt\/0 {
  border-inline-start-color: rgba(128, 215, 109, 0);
}

.border-s-eva-green-appt\/10 {
  border-inline-start-color: rgba(128, 215, 109, 0.1);
}

.border-s-eva-green-appt\/100 {
  border-inline-start-color: rgba(128, 215, 109, 1);
}

.border-s-eva-green-appt\/15 {
  border-inline-start-color: rgba(128, 215, 109, 0.15);
}

.border-s-eva-green-appt\/20 {
  border-inline-start-color: rgba(128, 215, 109, 0.2);
}

.border-s-eva-green-appt\/25 {
  border-inline-start-color: rgba(128, 215, 109, 0.25);
}

.border-s-eva-green-appt\/30 {
  border-inline-start-color: rgba(128, 215, 109, 0.3);
}

.border-s-eva-green-appt\/35 {
  border-inline-start-color: rgba(128, 215, 109, 0.35);
}

.border-s-eva-green-appt\/40 {
  border-inline-start-color: rgba(128, 215, 109, 0.4);
}

.border-s-eva-green-appt\/45 {
  border-inline-start-color: rgba(128, 215, 109, 0.45);
}

.border-s-eva-green-appt\/5 {
  border-inline-start-color: rgba(128, 215, 109, 0.05);
}

.border-s-eva-green-appt\/50 {
  border-inline-start-color: rgba(128, 215, 109, 0.5);
}

.border-s-eva-green-appt\/55 {
  border-inline-start-color: rgba(128, 215, 109, 0.55);
}

.border-s-eva-green-appt\/60 {
  border-inline-start-color: rgba(128, 215, 109, 0.6);
}

.border-s-eva-green-appt\/65 {
  border-inline-start-color: rgba(128, 215, 109, 0.65);
}

.border-s-eva-green-appt\/70 {
  border-inline-start-color: rgba(128, 215, 109, 0.7);
}

.border-s-eva-green-appt\/75 {
  border-inline-start-color: rgba(128, 215, 109, 0.75);
}

.border-s-eva-green-appt\/80 {
  border-inline-start-color: rgba(128, 215, 109, 0.8);
}

.border-s-eva-green-appt\/85 {
  border-inline-start-color: rgba(128, 215, 109, 0.85);
}

.border-s-eva-green-appt\/90 {
  border-inline-start-color: rgba(128, 215, 109, 0.9);
}

.border-s-eva-green-appt\/95 {
  border-inline-start-color: rgba(128, 215, 109, 0.95);
}

.border-s-eva-green-brown-appt {
  border-inline-start-color: rgba(197, 191, 140, 1);
}

.border-s-eva-green-brown-appt\/0 {
  border-inline-start-color: rgba(197, 191, 140, 0);
}

.border-s-eva-green-brown-appt\/10 {
  border-inline-start-color: rgba(197, 191, 140, 0.1);
}

.border-s-eva-green-brown-appt\/100 {
  border-inline-start-color: rgba(197, 191, 140, 1);
}

.border-s-eva-green-brown-appt\/15 {
  border-inline-start-color: rgba(197, 191, 140, 0.15);
}

.border-s-eva-green-brown-appt\/20 {
  border-inline-start-color: rgba(197, 191, 140, 0.2);
}

.border-s-eva-green-brown-appt\/25 {
  border-inline-start-color: rgba(197, 191, 140, 0.25);
}

.border-s-eva-green-brown-appt\/30 {
  border-inline-start-color: rgba(197, 191, 140, 0.3);
}

.border-s-eva-green-brown-appt\/35 {
  border-inline-start-color: rgba(197, 191, 140, 0.35);
}

.border-s-eva-green-brown-appt\/40 {
  border-inline-start-color: rgba(197, 191, 140, 0.4);
}

.border-s-eva-green-brown-appt\/45 {
  border-inline-start-color: rgba(197, 191, 140, 0.45);
}

.border-s-eva-green-brown-appt\/5 {
  border-inline-start-color: rgba(197, 191, 140, 0.05);
}

.border-s-eva-green-brown-appt\/50 {
  border-inline-start-color: rgba(197, 191, 140, 0.5);
}

.border-s-eva-green-brown-appt\/55 {
  border-inline-start-color: rgba(197, 191, 140, 0.55);
}

.border-s-eva-green-brown-appt\/60 {
  border-inline-start-color: rgba(197, 191, 140, 0.6);
}

.border-s-eva-green-brown-appt\/65 {
  border-inline-start-color: rgba(197, 191, 140, 0.65);
}

.border-s-eva-green-brown-appt\/70 {
  border-inline-start-color: rgba(197, 191, 140, 0.7);
}

.border-s-eva-green-brown-appt\/75 {
  border-inline-start-color: rgba(197, 191, 140, 0.75);
}

.border-s-eva-green-brown-appt\/80 {
  border-inline-start-color: rgba(197, 191, 140, 0.8);
}

.border-s-eva-green-brown-appt\/85 {
  border-inline-start-color: rgba(197, 191, 140, 0.85);
}

.border-s-eva-green-brown-appt\/90 {
  border-inline-start-color: rgba(197, 191, 140, 0.9);
}

.border-s-eva-green-brown-appt\/95 {
  border-inline-start-color: rgba(197, 191, 140, 0.95);
}

.border-s-eva-green-hv {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(63 156 144 / var(--tw-border-opacity, 1));
}

.border-s-eva-green-hv\/0 {
  border-inline-start-color: rgb(63 156 144 / 0);
}

.border-s-eva-green-hv\/10 {
  border-inline-start-color: rgb(63 156 144 / 0.1);
}

.border-s-eva-green-hv\/100 {
  border-inline-start-color: rgb(63 156 144 / 1);
}

.border-s-eva-green-hv\/15 {
  border-inline-start-color: rgb(63 156 144 / 0.15);
}

.border-s-eva-green-hv\/20 {
  border-inline-start-color: rgb(63 156 144 / 0.2);
}

.border-s-eva-green-hv\/25 {
  border-inline-start-color: rgb(63 156 144 / 0.25);
}

.border-s-eva-green-hv\/30 {
  border-inline-start-color: rgb(63 156 144 / 0.3);
}

.border-s-eva-green-hv\/35 {
  border-inline-start-color: rgb(63 156 144 / 0.35);
}

.border-s-eva-green-hv\/40 {
  border-inline-start-color: rgb(63 156 144 / 0.4);
}

.border-s-eva-green-hv\/45 {
  border-inline-start-color: rgb(63 156 144 / 0.45);
}

.border-s-eva-green-hv\/5 {
  border-inline-start-color: rgb(63 156 144 / 0.05);
}

.border-s-eva-green-hv\/50 {
  border-inline-start-color: rgb(63 156 144 / 0.5);
}

.border-s-eva-green-hv\/55 {
  border-inline-start-color: rgb(63 156 144 / 0.55);
}

.border-s-eva-green-hv\/60 {
  border-inline-start-color: rgb(63 156 144 / 0.6);
}

.border-s-eva-green-hv\/65 {
  border-inline-start-color: rgb(63 156 144 / 0.65);
}

.border-s-eva-green-hv\/70 {
  border-inline-start-color: rgb(63 156 144 / 0.7);
}

.border-s-eva-green-hv\/75 {
  border-inline-start-color: rgb(63 156 144 / 0.75);
}

.border-s-eva-green-hv\/80 {
  border-inline-start-color: rgb(63 156 144 / 0.8);
}

.border-s-eva-green-hv\/85 {
  border-inline-start-color: rgb(63 156 144 / 0.85);
}

.border-s-eva-green-hv\/90 {
  border-inline-start-color: rgb(63 156 144 / 0.9);
}

.border-s-eva-green-hv\/95 {
  border-inline-start-color: rgb(63 156 144 / 0.95);
}

.border-s-eva-green\/0 {
  border-inline-start-color: rgb(73 181 168 / 0);
}

.border-s-eva-green\/10 {
  border-inline-start-color: rgb(73 181 168 / 0.1);
}

.border-s-eva-green\/100 {
  border-inline-start-color: rgb(73 181 168 / 1);
}

.border-s-eva-green\/15 {
  border-inline-start-color: rgb(73 181 168 / 0.15);
}

.border-s-eva-green\/20 {
  border-inline-start-color: rgb(73 181 168 / 0.2);
}

.border-s-eva-green\/25 {
  border-inline-start-color: rgb(73 181 168 / 0.25);
}

.border-s-eva-green\/30 {
  border-inline-start-color: rgb(73 181 168 / 0.3);
}

.border-s-eva-green\/35 {
  border-inline-start-color: rgb(73 181 168 / 0.35);
}

.border-s-eva-green\/40 {
  border-inline-start-color: rgb(73 181 168 / 0.4);
}

.border-s-eva-green\/45 {
  border-inline-start-color: rgb(73 181 168 / 0.45);
}

.border-s-eva-green\/5 {
  border-inline-start-color: rgb(73 181 168 / 0.05);
}

.border-s-eva-green\/50 {
  border-inline-start-color: rgb(73 181 168 / 0.5);
}

.border-s-eva-green\/55 {
  border-inline-start-color: rgb(73 181 168 / 0.55);
}

.border-s-eva-green\/60 {
  border-inline-start-color: rgb(73 181 168 / 0.6);
}

.border-s-eva-green\/65 {
  border-inline-start-color: rgb(73 181 168 / 0.65);
}

.border-s-eva-green\/70 {
  border-inline-start-color: rgb(73 181 168 / 0.7);
}

.border-s-eva-green\/75 {
  border-inline-start-color: rgb(73 181 168 / 0.75);
}

.border-s-eva-green\/80 {
  border-inline-start-color: rgb(73 181 168 / 0.8);
}

.border-s-eva-green\/85 {
  border-inline-start-color: rgb(73 181 168 / 0.85);
}

.border-s-eva-green\/90 {
  border-inline-start-color: rgb(73 181 168 / 0.9);
}

.border-s-eva-green\/95 {
  border-inline-start-color: rgb(73 181 168 / 0.95);
}

.border-s-eva-lavender-appt {
  border-inline-start-color: rgba(169, 124, 165, 1);
}

.border-s-eva-lavender-appt\/0 {
  border-inline-start-color: rgba(169, 124, 165, 0);
}

.border-s-eva-lavender-appt\/10 {
  border-inline-start-color: rgba(169, 124, 165, 0.1);
}

.border-s-eva-lavender-appt\/100 {
  border-inline-start-color: rgba(169, 124, 165, 1);
}

.border-s-eva-lavender-appt\/15 {
  border-inline-start-color: rgba(169, 124, 165, 0.15);
}

.border-s-eva-lavender-appt\/20 {
  border-inline-start-color: rgba(169, 124, 165, 0.2);
}

.border-s-eva-lavender-appt\/25 {
  border-inline-start-color: rgba(169, 124, 165, 0.25);
}

.border-s-eva-lavender-appt\/30 {
  border-inline-start-color: rgba(169, 124, 165, 0.3);
}

.border-s-eva-lavender-appt\/35 {
  border-inline-start-color: rgba(169, 124, 165, 0.35);
}

.border-s-eva-lavender-appt\/40 {
  border-inline-start-color: rgba(169, 124, 165, 0.4);
}

.border-s-eva-lavender-appt\/45 {
  border-inline-start-color: rgba(169, 124, 165, 0.45);
}

.border-s-eva-lavender-appt\/5 {
  border-inline-start-color: rgba(169, 124, 165, 0.05);
}

.border-s-eva-lavender-appt\/50 {
  border-inline-start-color: rgba(169, 124, 165, 0.5);
}

.border-s-eva-lavender-appt\/55 {
  border-inline-start-color: rgba(169, 124, 165, 0.55);
}

.border-s-eva-lavender-appt\/60 {
  border-inline-start-color: rgba(169, 124, 165, 0.6);
}

.border-s-eva-lavender-appt\/65 {
  border-inline-start-color: rgba(169, 124, 165, 0.65);
}

.border-s-eva-lavender-appt\/70 {
  border-inline-start-color: rgba(169, 124, 165, 0.7);
}

.border-s-eva-lavender-appt\/75 {
  border-inline-start-color: rgba(169, 124, 165, 0.75);
}

.border-s-eva-lavender-appt\/80 {
  border-inline-start-color: rgba(169, 124, 165, 0.8);
}

.border-s-eva-lavender-appt\/85 {
  border-inline-start-color: rgba(169, 124, 165, 0.85);
}

.border-s-eva-lavender-appt\/90 {
  border-inline-start-color: rgba(169, 124, 165, 0.9);
}

.border-s-eva-lavender-appt\/95 {
  border-inline-start-color: rgba(169, 124, 165, 0.95);
}

.border-s-eva-magenta-appt {
  border-inline-start-color: rgba(223, 91, 146, 1);
}

.border-s-eva-magenta-appt\/0 {
  border-inline-start-color: rgba(223, 91, 146, 0);
}

.border-s-eva-magenta-appt\/10 {
  border-inline-start-color: rgba(223, 91, 146, 0.1);
}

.border-s-eva-magenta-appt\/100 {
  border-inline-start-color: rgba(223, 91, 146, 1);
}

.border-s-eva-magenta-appt\/15 {
  border-inline-start-color: rgba(223, 91, 146, 0.15);
}

.border-s-eva-magenta-appt\/20 {
  border-inline-start-color: rgba(223, 91, 146, 0.2);
}

.border-s-eva-magenta-appt\/25 {
  border-inline-start-color: rgba(223, 91, 146, 0.25);
}

.border-s-eva-magenta-appt\/30 {
  border-inline-start-color: rgba(223, 91, 146, 0.3);
}

.border-s-eva-magenta-appt\/35 {
  border-inline-start-color: rgba(223, 91, 146, 0.35);
}

.border-s-eva-magenta-appt\/40 {
  border-inline-start-color: rgba(223, 91, 146, 0.4);
}

.border-s-eva-magenta-appt\/45 {
  border-inline-start-color: rgba(223, 91, 146, 0.45);
}

.border-s-eva-magenta-appt\/5 {
  border-inline-start-color: rgba(223, 91, 146, 0.05);
}

.border-s-eva-magenta-appt\/50 {
  border-inline-start-color: rgba(223, 91, 146, 0.5);
}

.border-s-eva-magenta-appt\/55 {
  border-inline-start-color: rgba(223, 91, 146, 0.55);
}

.border-s-eva-magenta-appt\/60 {
  border-inline-start-color: rgba(223, 91, 146, 0.6);
}

.border-s-eva-magenta-appt\/65 {
  border-inline-start-color: rgba(223, 91, 146, 0.65);
}

.border-s-eva-magenta-appt\/70 {
  border-inline-start-color: rgba(223, 91, 146, 0.7);
}

.border-s-eva-magenta-appt\/75 {
  border-inline-start-color: rgba(223, 91, 146, 0.75);
}

.border-s-eva-magenta-appt\/80 {
  border-inline-start-color: rgba(223, 91, 146, 0.8);
}

.border-s-eva-magenta-appt\/85 {
  border-inline-start-color: rgba(223, 91, 146, 0.85);
}

.border-s-eva-magenta-appt\/90 {
  border-inline-start-color: rgba(223, 91, 146, 0.9);
}

.border-s-eva-magenta-appt\/95 {
  border-inline-start-color: rgba(223, 91, 146, 0.95);
}

.border-s-eva-orange-appt {
  border-inline-start-color: rgba(232, 176, 99, 1);
}

.border-s-eva-orange-appt\/0 {
  border-inline-start-color: rgba(232, 176, 99, 0);
}

.border-s-eva-orange-appt\/10 {
  border-inline-start-color: rgba(232, 176, 99, 0.1);
}

.border-s-eva-orange-appt\/100 {
  border-inline-start-color: rgba(232, 176, 99, 1);
}

.border-s-eva-orange-appt\/15 {
  border-inline-start-color: rgba(232, 176, 99, 0.15);
}

.border-s-eva-orange-appt\/20 {
  border-inline-start-color: rgba(232, 176, 99, 0.2);
}

.border-s-eva-orange-appt\/25 {
  border-inline-start-color: rgba(232, 176, 99, 0.25);
}

.border-s-eva-orange-appt\/30 {
  border-inline-start-color: rgba(232, 176, 99, 0.3);
}

.border-s-eva-orange-appt\/35 {
  border-inline-start-color: rgba(232, 176, 99, 0.35);
}

.border-s-eva-orange-appt\/40 {
  border-inline-start-color: rgba(232, 176, 99, 0.4);
}

.border-s-eva-orange-appt\/45 {
  border-inline-start-color: rgba(232, 176, 99, 0.45);
}

.border-s-eva-orange-appt\/5 {
  border-inline-start-color: rgba(232, 176, 99, 0.05);
}

.border-s-eva-orange-appt\/50 {
  border-inline-start-color: rgba(232, 176, 99, 0.5);
}

.border-s-eva-orange-appt\/55 {
  border-inline-start-color: rgba(232, 176, 99, 0.55);
}

.border-s-eva-orange-appt\/60 {
  border-inline-start-color: rgba(232, 176, 99, 0.6);
}

.border-s-eva-orange-appt\/65 {
  border-inline-start-color: rgba(232, 176, 99, 0.65);
}

.border-s-eva-orange-appt\/70 {
  border-inline-start-color: rgba(232, 176, 99, 0.7);
}

.border-s-eva-orange-appt\/75 {
  border-inline-start-color: rgba(232, 176, 99, 0.75);
}

.border-s-eva-orange-appt\/80 {
  border-inline-start-color: rgba(232, 176, 99, 0.8);
}

.border-s-eva-orange-appt\/85 {
  border-inline-start-color: rgba(232, 176, 99, 0.85);
}

.border-s-eva-orange-appt\/90 {
  border-inline-start-color: rgba(232, 176, 99, 0.9);
}

.border-s-eva-orange-appt\/95 {
  border-inline-start-color: rgba(232, 176, 99, 0.95);
}

.border-s-eva-purple-appt {
  border-inline-start-color: rgba(125, 117, 164, 1);
}

.border-s-eva-purple-appt\/0 {
  border-inline-start-color: rgba(125, 117, 164, 0);
}

.border-s-eva-purple-appt\/10 {
  border-inline-start-color: rgba(125, 117, 164, 0.1);
}

.border-s-eva-purple-appt\/100 {
  border-inline-start-color: rgba(125, 117, 164, 1);
}

.border-s-eva-purple-appt\/15 {
  border-inline-start-color: rgba(125, 117, 164, 0.15);
}

.border-s-eva-purple-appt\/20 {
  border-inline-start-color: rgba(125, 117, 164, 0.2);
}

.border-s-eva-purple-appt\/25 {
  border-inline-start-color: rgba(125, 117, 164, 0.25);
}

.border-s-eva-purple-appt\/30 {
  border-inline-start-color: rgba(125, 117, 164, 0.3);
}

.border-s-eva-purple-appt\/35 {
  border-inline-start-color: rgba(125, 117, 164, 0.35);
}

.border-s-eva-purple-appt\/40 {
  border-inline-start-color: rgba(125, 117, 164, 0.4);
}

.border-s-eva-purple-appt\/45 {
  border-inline-start-color: rgba(125, 117, 164, 0.45);
}

.border-s-eva-purple-appt\/5 {
  border-inline-start-color: rgba(125, 117, 164, 0.05);
}

.border-s-eva-purple-appt\/50 {
  border-inline-start-color: rgba(125, 117, 164, 0.5);
}

.border-s-eva-purple-appt\/55 {
  border-inline-start-color: rgba(125, 117, 164, 0.55);
}

.border-s-eva-purple-appt\/60 {
  border-inline-start-color: rgba(125, 117, 164, 0.6);
}

.border-s-eva-purple-appt\/65 {
  border-inline-start-color: rgba(125, 117, 164, 0.65);
}

.border-s-eva-purple-appt\/70 {
  border-inline-start-color: rgba(125, 117, 164, 0.7);
}

.border-s-eva-purple-appt\/75 {
  border-inline-start-color: rgba(125, 117, 164, 0.75);
}

.border-s-eva-purple-appt\/80 {
  border-inline-start-color: rgba(125, 117, 164, 0.8);
}

.border-s-eva-purple-appt\/85 {
  border-inline-start-color: rgba(125, 117, 164, 0.85);
}

.border-s-eva-purple-appt\/90 {
  border-inline-start-color: rgba(125, 117, 164, 0.9);
}

.border-s-eva-purple-appt\/95 {
  border-inline-start-color: rgba(125, 117, 164, 0.95);
}

.border-s-eva-red {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(234 101 101 / var(--tw-border-opacity, 1));
}

.border-s-eva-red-appt {
  border-inline-start-color: rgba(243, 63, 77, 1);
}

.border-s-eva-red-appt\/0 {
  border-inline-start-color: rgba(243, 63, 77, 0);
}

.border-s-eva-red-appt\/10 {
  border-inline-start-color: rgba(243, 63, 77, 0.1);
}

.border-s-eva-red-appt\/100 {
  border-inline-start-color: rgba(243, 63, 77, 1);
}

.border-s-eva-red-appt\/15 {
  border-inline-start-color: rgba(243, 63, 77, 0.15);
}

.border-s-eva-red-appt\/20 {
  border-inline-start-color: rgba(243, 63, 77, 0.2);
}

.border-s-eva-red-appt\/25 {
  border-inline-start-color: rgba(243, 63, 77, 0.25);
}

.border-s-eva-red-appt\/30 {
  border-inline-start-color: rgba(243, 63, 77, 0.3);
}

.border-s-eva-red-appt\/35 {
  border-inline-start-color: rgba(243, 63, 77, 0.35);
}

.border-s-eva-red-appt\/40 {
  border-inline-start-color: rgba(243, 63, 77, 0.4);
}

.border-s-eva-red-appt\/45 {
  border-inline-start-color: rgba(243, 63, 77, 0.45);
}

.border-s-eva-red-appt\/5 {
  border-inline-start-color: rgba(243, 63, 77, 0.05);
}

.border-s-eva-red-appt\/50 {
  border-inline-start-color: rgba(243, 63, 77, 0.5);
}

.border-s-eva-red-appt\/55 {
  border-inline-start-color: rgba(243, 63, 77, 0.55);
}

.border-s-eva-red-appt\/60 {
  border-inline-start-color: rgba(243, 63, 77, 0.6);
}

.border-s-eva-red-appt\/65 {
  border-inline-start-color: rgba(243, 63, 77, 0.65);
}

.border-s-eva-red-appt\/70 {
  border-inline-start-color: rgba(243, 63, 77, 0.7);
}

.border-s-eva-red-appt\/75 {
  border-inline-start-color: rgba(243, 63, 77, 0.75);
}

.border-s-eva-red-appt\/80 {
  border-inline-start-color: rgba(243, 63, 77, 0.8);
}

.border-s-eva-red-appt\/85 {
  border-inline-start-color: rgba(243, 63, 77, 0.85);
}

.border-s-eva-red-appt\/90 {
  border-inline-start-color: rgba(243, 63, 77, 0.9);
}

.border-s-eva-red-appt\/95 {
  border-inline-start-color: rgba(243, 63, 77, 0.95);
}

.border-s-eva-red-orange-appt {
  border-inline-start-color: rgba(217, 154, 118, 1);
}

.border-s-eva-red-orange-appt\/0 {
  border-inline-start-color: rgba(217, 154, 118, 0);
}

.border-s-eva-red-orange-appt\/10 {
  border-inline-start-color: rgba(217, 154, 118, 0.1);
}

.border-s-eva-red-orange-appt\/100 {
  border-inline-start-color: rgba(217, 154, 118, 1);
}

.border-s-eva-red-orange-appt\/15 {
  border-inline-start-color: rgba(217, 154, 118, 0.15);
}

.border-s-eva-red-orange-appt\/20 {
  border-inline-start-color: rgba(217, 154, 118, 0.2);
}

.border-s-eva-red-orange-appt\/25 {
  border-inline-start-color: rgba(217, 154, 118, 0.25);
}

.border-s-eva-red-orange-appt\/30 {
  border-inline-start-color: rgba(217, 154, 118, 0.3);
}

.border-s-eva-red-orange-appt\/35 {
  border-inline-start-color: rgba(217, 154, 118, 0.35);
}

.border-s-eva-red-orange-appt\/40 {
  border-inline-start-color: rgba(217, 154, 118, 0.4);
}

.border-s-eva-red-orange-appt\/45 {
  border-inline-start-color: rgba(217, 154, 118, 0.45);
}

.border-s-eva-red-orange-appt\/5 {
  border-inline-start-color: rgba(217, 154, 118, 0.05);
}

.border-s-eva-red-orange-appt\/50 {
  border-inline-start-color: rgba(217, 154, 118, 0.5);
}

.border-s-eva-red-orange-appt\/55 {
  border-inline-start-color: rgba(217, 154, 118, 0.55);
}

.border-s-eva-red-orange-appt\/60 {
  border-inline-start-color: rgba(217, 154, 118, 0.6);
}

.border-s-eva-red-orange-appt\/65 {
  border-inline-start-color: rgba(217, 154, 118, 0.65);
}

.border-s-eva-red-orange-appt\/70 {
  border-inline-start-color: rgba(217, 154, 118, 0.7);
}

.border-s-eva-red-orange-appt\/75 {
  border-inline-start-color: rgba(217, 154, 118, 0.75);
}

.border-s-eva-red-orange-appt\/80 {
  border-inline-start-color: rgba(217, 154, 118, 0.8);
}

.border-s-eva-red-orange-appt\/85 {
  border-inline-start-color: rgba(217, 154, 118, 0.85);
}

.border-s-eva-red-orange-appt\/90 {
  border-inline-start-color: rgba(217, 154, 118, 0.9);
}

.border-s-eva-red-orange-appt\/95 {
  border-inline-start-color: rgba(217, 154, 118, 0.95);
}

.border-s-eva-red\/0 {
  border-inline-start-color: rgb(234 101 101 / 0);
}

.border-s-eva-red\/10 {
  border-inline-start-color: rgb(234 101 101 / 0.1);
}

.border-s-eva-red\/100 {
  border-inline-start-color: rgb(234 101 101 / 1);
}

.border-s-eva-red\/15 {
  border-inline-start-color: rgb(234 101 101 / 0.15);
}

.border-s-eva-red\/20 {
  border-inline-start-color: rgb(234 101 101 / 0.2);
}

.border-s-eva-red\/25 {
  border-inline-start-color: rgb(234 101 101 / 0.25);
}

.border-s-eva-red\/30 {
  border-inline-start-color: rgb(234 101 101 / 0.3);
}

.border-s-eva-red\/35 {
  border-inline-start-color: rgb(234 101 101 / 0.35);
}

.border-s-eva-red\/40 {
  border-inline-start-color: rgb(234 101 101 / 0.4);
}

.border-s-eva-red\/45 {
  border-inline-start-color: rgb(234 101 101 / 0.45);
}

.border-s-eva-red\/5 {
  border-inline-start-color: rgb(234 101 101 / 0.05);
}

.border-s-eva-red\/50 {
  border-inline-start-color: rgb(234 101 101 / 0.5);
}

.border-s-eva-red\/55 {
  border-inline-start-color: rgb(234 101 101 / 0.55);
}

.border-s-eva-red\/60 {
  border-inline-start-color: rgb(234 101 101 / 0.6);
}

.border-s-eva-red\/65 {
  border-inline-start-color: rgb(234 101 101 / 0.65);
}

.border-s-eva-red\/70 {
  border-inline-start-color: rgb(234 101 101 / 0.7);
}

.border-s-eva-red\/75 {
  border-inline-start-color: rgb(234 101 101 / 0.75);
}

.border-s-eva-red\/80 {
  border-inline-start-color: rgb(234 101 101 / 0.8);
}

.border-s-eva-red\/85 {
  border-inline-start-color: rgb(234 101 101 / 0.85);
}

.border-s-eva-red\/90 {
  border-inline-start-color: rgb(234 101 101 / 0.9);
}

.border-s-eva-red\/95 {
  border-inline-start-color: rgb(234 101 101 / 0.95);
}

.border-s-eva-teal-appt {
  --tw-border-opacity: 1;
  border-inline-start-color: rgba(22, 172, 151, var(--tw-border-opacity, 1));
}

.border-s-eva-teal-appt\/0 {
  border-inline-start-color: rgba(22, 172, 151, 0);
}

.border-s-eva-teal-appt\/10 {
  border-inline-start-color: rgba(22, 172, 151, 0.1);
}

.border-s-eva-teal-appt\/100 {
  border-inline-start-color: rgba(22, 172, 151, 1);
}

.border-s-eva-teal-appt\/15 {
  border-inline-start-color: rgba(22, 172, 151, 0.15);
}

.border-s-eva-teal-appt\/20 {
  border-inline-start-color: rgba(22, 172, 151, 0.2);
}

.border-s-eva-teal-appt\/25 {
  border-inline-start-color: rgba(22, 172, 151, 0.25);
}

.border-s-eva-teal-appt\/30 {
  border-inline-start-color: rgba(22, 172, 151, 0.3);
}

.border-s-eva-teal-appt\/35 {
  border-inline-start-color: rgba(22, 172, 151, 0.35);
}

.border-s-eva-teal-appt\/40 {
  border-inline-start-color: rgba(22, 172, 151, 0.4);
}

.border-s-eva-teal-appt\/45 {
  border-inline-start-color: rgba(22, 172, 151, 0.45);
}

.border-s-eva-teal-appt\/5 {
  border-inline-start-color: rgba(22, 172, 151, 0.05);
}

.border-s-eva-teal-appt\/50 {
  border-inline-start-color: rgba(22, 172, 151, 0.5);
}

.border-s-eva-teal-appt\/55 {
  border-inline-start-color: rgba(22, 172, 151, 0.55);
}

.border-s-eva-teal-appt\/60 {
  border-inline-start-color: rgba(22, 172, 151, 0.6);
}

.border-s-eva-teal-appt\/65 {
  border-inline-start-color: rgba(22, 172, 151, 0.65);
}

.border-s-eva-teal-appt\/70 {
  border-inline-start-color: rgba(22, 172, 151, 0.7);
}

.border-s-eva-teal-appt\/75 {
  border-inline-start-color: rgba(22, 172, 151, 0.75);
}

.border-s-eva-teal-appt\/80 {
  border-inline-start-color: rgba(22, 172, 151, 0.8);
}

.border-s-eva-teal-appt\/85 {
  border-inline-start-color: rgba(22, 172, 151, 0.85);
}

.border-s-eva-teal-appt\/90 {
  border-inline-start-color: rgba(22, 172, 151, 0.9);
}

.border-s-eva-teal-appt\/95 {
  border-inline-start-color: rgba(22, 172, 151, 0.95);
}

.border-s-eva-yellow {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(233 179 98 / var(--tw-border-opacity, 1));
}

.border-s-eva-yellow-appt {
  border-inline-start-color: rgba(240, 226, 0, 1);
}

.border-s-eva-yellow-appt\/0 {
  border-inline-start-color: rgba(240, 226, 0, 0);
}

.border-s-eva-yellow-appt\/10 {
  border-inline-start-color: rgba(240, 226, 0, 0.1);
}

.border-s-eva-yellow-appt\/100 {
  border-inline-start-color: rgba(240, 226, 0, 1);
}

.border-s-eva-yellow-appt\/15 {
  border-inline-start-color: rgba(240, 226, 0, 0.15);
}

.border-s-eva-yellow-appt\/20 {
  border-inline-start-color: rgba(240, 226, 0, 0.2);
}

.border-s-eva-yellow-appt\/25 {
  border-inline-start-color: rgba(240, 226, 0, 0.25);
}

.border-s-eva-yellow-appt\/30 {
  border-inline-start-color: rgba(240, 226, 0, 0.3);
}

.border-s-eva-yellow-appt\/35 {
  border-inline-start-color: rgba(240, 226, 0, 0.35);
}

.border-s-eva-yellow-appt\/40 {
  border-inline-start-color: rgba(240, 226, 0, 0.4);
}

.border-s-eva-yellow-appt\/45 {
  border-inline-start-color: rgba(240, 226, 0, 0.45);
}

.border-s-eva-yellow-appt\/5 {
  border-inline-start-color: rgba(240, 226, 0, 0.05);
}

.border-s-eva-yellow-appt\/50 {
  border-inline-start-color: rgba(240, 226, 0, 0.5);
}

.border-s-eva-yellow-appt\/55 {
  border-inline-start-color: rgba(240, 226, 0, 0.55);
}

.border-s-eva-yellow-appt\/60 {
  border-inline-start-color: rgba(240, 226, 0, 0.6);
}

.border-s-eva-yellow-appt\/65 {
  border-inline-start-color: rgba(240, 226, 0, 0.65);
}

.border-s-eva-yellow-appt\/70 {
  border-inline-start-color: rgba(240, 226, 0, 0.7);
}

.border-s-eva-yellow-appt\/75 {
  border-inline-start-color: rgba(240, 226, 0, 0.75);
}

.border-s-eva-yellow-appt\/80 {
  border-inline-start-color: rgba(240, 226, 0, 0.8);
}

.border-s-eva-yellow-appt\/85 {
  border-inline-start-color: rgba(240, 226, 0, 0.85);
}

.border-s-eva-yellow-appt\/90 {
  border-inline-start-color: rgba(240, 226, 0, 0.9);
}

.border-s-eva-yellow-appt\/95 {
  border-inline-start-color: rgba(240, 226, 0, 0.95);
}

.border-s-eva-yellow\/0 {
  border-inline-start-color: rgb(233 179 98 / 0);
}

.border-s-eva-yellow\/10 {
  border-inline-start-color: rgb(233 179 98 / 0.1);
}

.border-s-eva-yellow\/100 {
  border-inline-start-color: rgb(233 179 98 / 1);
}

.border-s-eva-yellow\/15 {
  border-inline-start-color: rgb(233 179 98 / 0.15);
}

.border-s-eva-yellow\/20 {
  border-inline-start-color: rgb(233 179 98 / 0.2);
}

.border-s-eva-yellow\/25 {
  border-inline-start-color: rgb(233 179 98 / 0.25);
}

.border-s-eva-yellow\/30 {
  border-inline-start-color: rgb(233 179 98 / 0.3);
}

.border-s-eva-yellow\/35 {
  border-inline-start-color: rgb(233 179 98 / 0.35);
}

.border-s-eva-yellow\/40 {
  border-inline-start-color: rgb(233 179 98 / 0.4);
}

.border-s-eva-yellow\/45 {
  border-inline-start-color: rgb(233 179 98 / 0.45);
}

.border-s-eva-yellow\/5 {
  border-inline-start-color: rgb(233 179 98 / 0.05);
}

.border-s-eva-yellow\/50 {
  border-inline-start-color: rgb(233 179 98 / 0.5);
}

.border-s-eva-yellow\/55 {
  border-inline-start-color: rgb(233 179 98 / 0.55);
}

.border-s-eva-yellow\/60 {
  border-inline-start-color: rgb(233 179 98 / 0.6);
}

.border-s-eva-yellow\/65 {
  border-inline-start-color: rgb(233 179 98 / 0.65);
}

.border-s-eva-yellow\/70 {
  border-inline-start-color: rgb(233 179 98 / 0.7);
}

.border-s-eva-yellow\/75 {
  border-inline-start-color: rgb(233 179 98 / 0.75);
}

.border-s-eva-yellow\/80 {
  border-inline-start-color: rgb(233 179 98 / 0.8);
}

.border-s-eva-yellow\/85 {
  border-inline-start-color: rgb(233 179 98 / 0.85);
}

.border-s-eva-yellow\/90 {
  border-inline-start-color: rgb(233 179 98 / 0.9);
}

.border-s-eva-yellow\/95 {
  border-inline-start-color: rgb(233 179 98 / 0.95);
}

.border-s-gray-100 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(245 245 245 / var(--tw-border-opacity, 1));
}

.border-s-gray-100\/0 {
  border-inline-start-color: rgb(245 245 245 / 0);
}

.border-s-gray-100\/10 {
  border-inline-start-color: rgb(245 245 245 / 0.1);
}

.border-s-gray-100\/100 {
  border-inline-start-color: rgb(245 245 245 / 1);
}

.border-s-gray-100\/15 {
  border-inline-start-color: rgb(245 245 245 / 0.15);
}

.border-s-gray-100\/20 {
  border-inline-start-color: rgb(245 245 245 / 0.2);
}

.border-s-gray-100\/25 {
  border-inline-start-color: rgb(245 245 245 / 0.25);
}

.border-s-gray-100\/30 {
  border-inline-start-color: rgb(245 245 245 / 0.3);
}

.border-s-gray-100\/35 {
  border-inline-start-color: rgb(245 245 245 / 0.35);
}

.border-s-gray-100\/40 {
  border-inline-start-color: rgb(245 245 245 / 0.4);
}

.border-s-gray-100\/45 {
  border-inline-start-color: rgb(245 245 245 / 0.45);
}

.border-s-gray-100\/5 {
  border-inline-start-color: rgb(245 245 245 / 0.05);
}

.border-s-gray-100\/50 {
  border-inline-start-color: rgb(245 245 245 / 0.5);
}

.border-s-gray-100\/55 {
  border-inline-start-color: rgb(245 245 245 / 0.55);
}

.border-s-gray-100\/60 {
  border-inline-start-color: rgb(245 245 245 / 0.6);
}

.border-s-gray-100\/65 {
  border-inline-start-color: rgb(245 245 245 / 0.65);
}

.border-s-gray-100\/70 {
  border-inline-start-color: rgb(245 245 245 / 0.7);
}

.border-s-gray-100\/75 {
  border-inline-start-color: rgb(245 245 245 / 0.75);
}

.border-s-gray-100\/80 {
  border-inline-start-color: rgb(245 245 245 / 0.8);
}

.border-s-gray-100\/85 {
  border-inline-start-color: rgb(245 245 245 / 0.85);
}

.border-s-gray-100\/90 {
  border-inline-start-color: rgb(245 245 245 / 0.9);
}

.border-s-gray-100\/95 {
  border-inline-start-color: rgb(245 245 245 / 0.95);
}

.border-s-gray-200 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
}

.border-s-gray-200\/0 {
  border-inline-start-color: rgb(229 229 229 / 0);
}

.border-s-gray-200\/10 {
  border-inline-start-color: rgb(229 229 229 / 0.1);
}

.border-s-gray-200\/100 {
  border-inline-start-color: rgb(229 229 229 / 1);
}

.border-s-gray-200\/15 {
  border-inline-start-color: rgb(229 229 229 / 0.15);
}

.border-s-gray-200\/20 {
  border-inline-start-color: rgb(229 229 229 / 0.2);
}

.border-s-gray-200\/25 {
  border-inline-start-color: rgb(229 229 229 / 0.25);
}

.border-s-gray-200\/30 {
  border-inline-start-color: rgb(229 229 229 / 0.3);
}

.border-s-gray-200\/35 {
  border-inline-start-color: rgb(229 229 229 / 0.35);
}

.border-s-gray-200\/40 {
  border-inline-start-color: rgb(229 229 229 / 0.4);
}

.border-s-gray-200\/45 {
  border-inline-start-color: rgb(229 229 229 / 0.45);
}

.border-s-gray-200\/5 {
  border-inline-start-color: rgb(229 229 229 / 0.05);
}

.border-s-gray-200\/50 {
  border-inline-start-color: rgb(229 229 229 / 0.5);
}

.border-s-gray-200\/55 {
  border-inline-start-color: rgb(229 229 229 / 0.55);
}

.border-s-gray-200\/60 {
  border-inline-start-color: rgb(229 229 229 / 0.6);
}

.border-s-gray-200\/65 {
  border-inline-start-color: rgb(229 229 229 / 0.65);
}

.border-s-gray-200\/70 {
  border-inline-start-color: rgb(229 229 229 / 0.7);
}

.border-s-gray-200\/75 {
  border-inline-start-color: rgb(229 229 229 / 0.75);
}

.border-s-gray-200\/80 {
  border-inline-start-color: rgb(229 229 229 / 0.8);
}

.border-s-gray-200\/85 {
  border-inline-start-color: rgb(229 229 229 / 0.85);
}

.border-s-gray-200\/90 {
  border-inline-start-color: rgb(229 229 229 / 0.9);
}

.border-s-gray-200\/95 {
  border-inline-start-color: rgb(229 229 229 / 0.95);
}

.border-s-gray-300 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(212 212 212 / var(--tw-border-opacity, 1));
}

.border-s-gray-300\/0 {
  border-inline-start-color: rgb(212 212 212 / 0);
}

.border-s-gray-300\/10 {
  border-inline-start-color: rgb(212 212 212 / 0.1);
}

.border-s-gray-300\/100 {
  border-inline-start-color: rgb(212 212 212 / 1);
}

.border-s-gray-300\/15 {
  border-inline-start-color: rgb(212 212 212 / 0.15);
}

.border-s-gray-300\/20 {
  border-inline-start-color: rgb(212 212 212 / 0.2);
}

.border-s-gray-300\/25 {
  border-inline-start-color: rgb(212 212 212 / 0.25);
}

.border-s-gray-300\/30 {
  border-inline-start-color: rgb(212 212 212 / 0.3);
}

.border-s-gray-300\/35 {
  border-inline-start-color: rgb(212 212 212 / 0.35);
}

.border-s-gray-300\/40 {
  border-inline-start-color: rgb(212 212 212 / 0.4);
}

.border-s-gray-300\/45 {
  border-inline-start-color: rgb(212 212 212 / 0.45);
}

.border-s-gray-300\/5 {
  border-inline-start-color: rgb(212 212 212 / 0.05);
}

.border-s-gray-300\/50 {
  border-inline-start-color: rgb(212 212 212 / 0.5);
}

.border-s-gray-300\/55 {
  border-inline-start-color: rgb(212 212 212 / 0.55);
}

.border-s-gray-300\/60 {
  border-inline-start-color: rgb(212 212 212 / 0.6);
}

.border-s-gray-300\/65 {
  border-inline-start-color: rgb(212 212 212 / 0.65);
}

.border-s-gray-300\/70 {
  border-inline-start-color: rgb(212 212 212 / 0.7);
}

.border-s-gray-300\/75 {
  border-inline-start-color: rgb(212 212 212 / 0.75);
}

.border-s-gray-300\/80 {
  border-inline-start-color: rgb(212 212 212 / 0.8);
}

.border-s-gray-300\/85 {
  border-inline-start-color: rgb(212 212 212 / 0.85);
}

.border-s-gray-300\/90 {
  border-inline-start-color: rgb(212 212 212 / 0.9);
}

.border-s-gray-300\/95 {
  border-inline-start-color: rgb(212 212 212 / 0.95);
}

.border-s-gray-400 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(163 163 163 / var(--tw-border-opacity, 1));
}

.border-s-gray-400\/0 {
  border-inline-start-color: rgb(163 163 163 / 0);
}

.border-s-gray-400\/10 {
  border-inline-start-color: rgb(163 163 163 / 0.1);
}

.border-s-gray-400\/100 {
  border-inline-start-color: rgb(163 163 163 / 1);
}

.border-s-gray-400\/15 {
  border-inline-start-color: rgb(163 163 163 / 0.15);
}

.border-s-gray-400\/20 {
  border-inline-start-color: rgb(163 163 163 / 0.2);
}

.border-s-gray-400\/25 {
  border-inline-start-color: rgb(163 163 163 / 0.25);
}

.border-s-gray-400\/30 {
  border-inline-start-color: rgb(163 163 163 / 0.3);
}

.border-s-gray-400\/35 {
  border-inline-start-color: rgb(163 163 163 / 0.35);
}

.border-s-gray-400\/40 {
  border-inline-start-color: rgb(163 163 163 / 0.4);
}

.border-s-gray-400\/45 {
  border-inline-start-color: rgb(163 163 163 / 0.45);
}

.border-s-gray-400\/5 {
  border-inline-start-color: rgb(163 163 163 / 0.05);
}

.border-s-gray-400\/50 {
  border-inline-start-color: rgb(163 163 163 / 0.5);
}

.border-s-gray-400\/55 {
  border-inline-start-color: rgb(163 163 163 / 0.55);
}

.border-s-gray-400\/60 {
  border-inline-start-color: rgb(163 163 163 / 0.6);
}

.border-s-gray-400\/65 {
  border-inline-start-color: rgb(163 163 163 / 0.65);
}

.border-s-gray-400\/70 {
  border-inline-start-color: rgb(163 163 163 / 0.7);
}

.border-s-gray-400\/75 {
  border-inline-start-color: rgb(163 163 163 / 0.75);
}

.border-s-gray-400\/80 {
  border-inline-start-color: rgb(163 163 163 / 0.8);
}

.border-s-gray-400\/85 {
  border-inline-start-color: rgb(163 163 163 / 0.85);
}

.border-s-gray-400\/90 {
  border-inline-start-color: rgb(163 163 163 / 0.9);
}

.border-s-gray-400\/95 {
  border-inline-start-color: rgb(163 163 163 / 0.95);
}

.border-s-gray-50 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(250 250 250 / var(--tw-border-opacity, 1));
}

.border-s-gray-50\/0 {
  border-inline-start-color: rgb(250 250 250 / 0);
}

.border-s-gray-50\/10 {
  border-inline-start-color: rgb(250 250 250 / 0.1);
}

.border-s-gray-50\/100 {
  border-inline-start-color: rgb(250 250 250 / 1);
}

.border-s-gray-50\/15 {
  border-inline-start-color: rgb(250 250 250 / 0.15);
}

.border-s-gray-50\/20 {
  border-inline-start-color: rgb(250 250 250 / 0.2);
}

.border-s-gray-50\/25 {
  border-inline-start-color: rgb(250 250 250 / 0.25);
}

.border-s-gray-50\/30 {
  border-inline-start-color: rgb(250 250 250 / 0.3);
}

.border-s-gray-50\/35 {
  border-inline-start-color: rgb(250 250 250 / 0.35);
}

.border-s-gray-50\/40 {
  border-inline-start-color: rgb(250 250 250 / 0.4);
}

.border-s-gray-50\/45 {
  border-inline-start-color: rgb(250 250 250 / 0.45);
}

.border-s-gray-50\/5 {
  border-inline-start-color: rgb(250 250 250 / 0.05);
}

.border-s-gray-50\/50 {
  border-inline-start-color: rgb(250 250 250 / 0.5);
}

.border-s-gray-50\/55 {
  border-inline-start-color: rgb(250 250 250 / 0.55);
}

.border-s-gray-50\/60 {
  border-inline-start-color: rgb(250 250 250 / 0.6);
}

.border-s-gray-50\/65 {
  border-inline-start-color: rgb(250 250 250 / 0.65);
}

.border-s-gray-50\/70 {
  border-inline-start-color: rgb(250 250 250 / 0.7);
}

.border-s-gray-50\/75 {
  border-inline-start-color: rgb(250 250 250 / 0.75);
}

.border-s-gray-50\/80 {
  border-inline-start-color: rgb(250 250 250 / 0.8);
}

.border-s-gray-50\/85 {
  border-inline-start-color: rgb(250 250 250 / 0.85);
}

.border-s-gray-50\/90 {
  border-inline-start-color: rgb(250 250 250 / 0.9);
}

.border-s-gray-50\/95 {
  border-inline-start-color: rgb(250 250 250 / 0.95);
}

.border-s-gray-500 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(115 115 115 / var(--tw-border-opacity, 1));
}

.border-s-gray-500\/0 {
  border-inline-start-color: rgb(115 115 115 / 0);
}

.border-s-gray-500\/10 {
  border-inline-start-color: rgb(115 115 115 / 0.1);
}

.border-s-gray-500\/100 {
  border-inline-start-color: rgb(115 115 115 / 1);
}

.border-s-gray-500\/15 {
  border-inline-start-color: rgb(115 115 115 / 0.15);
}

.border-s-gray-500\/20 {
  border-inline-start-color: rgb(115 115 115 / 0.2);
}

.border-s-gray-500\/25 {
  border-inline-start-color: rgb(115 115 115 / 0.25);
}

.border-s-gray-500\/30 {
  border-inline-start-color: rgb(115 115 115 / 0.3);
}

.border-s-gray-500\/35 {
  border-inline-start-color: rgb(115 115 115 / 0.35);
}

.border-s-gray-500\/40 {
  border-inline-start-color: rgb(115 115 115 / 0.4);
}

.border-s-gray-500\/45 {
  border-inline-start-color: rgb(115 115 115 / 0.45);
}

.border-s-gray-500\/5 {
  border-inline-start-color: rgb(115 115 115 / 0.05);
}

.border-s-gray-500\/50 {
  border-inline-start-color: rgb(115 115 115 / 0.5);
}

.border-s-gray-500\/55 {
  border-inline-start-color: rgb(115 115 115 / 0.55);
}

.border-s-gray-500\/60 {
  border-inline-start-color: rgb(115 115 115 / 0.6);
}

.border-s-gray-500\/65 {
  border-inline-start-color: rgb(115 115 115 / 0.65);
}

.border-s-gray-500\/70 {
  border-inline-start-color: rgb(115 115 115 / 0.7);
}

.border-s-gray-500\/75 {
  border-inline-start-color: rgb(115 115 115 / 0.75);
}

.border-s-gray-500\/80 {
  border-inline-start-color: rgb(115 115 115 / 0.8);
}

.border-s-gray-500\/85 {
  border-inline-start-color: rgb(115 115 115 / 0.85);
}

.border-s-gray-500\/90 {
  border-inline-start-color: rgb(115 115 115 / 0.9);
}

.border-s-gray-500\/95 {
  border-inline-start-color: rgb(115 115 115 / 0.95);
}

.border-s-gray-600 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(82 82 82 / var(--tw-border-opacity, 1));
}

.border-s-gray-600\/0 {
  border-inline-start-color: rgb(82 82 82 / 0);
}

.border-s-gray-600\/10 {
  border-inline-start-color: rgb(82 82 82 / 0.1);
}

.border-s-gray-600\/100 {
  border-inline-start-color: rgb(82 82 82 / 1);
}

.border-s-gray-600\/15 {
  border-inline-start-color: rgb(82 82 82 / 0.15);
}

.border-s-gray-600\/20 {
  border-inline-start-color: rgb(82 82 82 / 0.2);
}

.border-s-gray-600\/25 {
  border-inline-start-color: rgb(82 82 82 / 0.25);
}

.border-s-gray-600\/30 {
  border-inline-start-color: rgb(82 82 82 / 0.3);
}

.border-s-gray-600\/35 {
  border-inline-start-color: rgb(82 82 82 / 0.35);
}

.border-s-gray-600\/40 {
  border-inline-start-color: rgb(82 82 82 / 0.4);
}

.border-s-gray-600\/45 {
  border-inline-start-color: rgb(82 82 82 / 0.45);
}

.border-s-gray-600\/5 {
  border-inline-start-color: rgb(82 82 82 / 0.05);
}

.border-s-gray-600\/50 {
  border-inline-start-color: rgb(82 82 82 / 0.5);
}

.border-s-gray-600\/55 {
  border-inline-start-color: rgb(82 82 82 / 0.55);
}

.border-s-gray-600\/60 {
  border-inline-start-color: rgb(82 82 82 / 0.6);
}

.border-s-gray-600\/65 {
  border-inline-start-color: rgb(82 82 82 / 0.65);
}

.border-s-gray-600\/70 {
  border-inline-start-color: rgb(82 82 82 / 0.7);
}

.border-s-gray-600\/75 {
  border-inline-start-color: rgb(82 82 82 / 0.75);
}

.border-s-gray-600\/80 {
  border-inline-start-color: rgb(82 82 82 / 0.8);
}

.border-s-gray-600\/85 {
  border-inline-start-color: rgb(82 82 82 / 0.85);
}

.border-s-gray-600\/90 {
  border-inline-start-color: rgb(82 82 82 / 0.9);
}

.border-s-gray-600\/95 {
  border-inline-start-color: rgb(82 82 82 / 0.95);
}

.border-s-gray-700 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(64 64 64 / var(--tw-border-opacity, 1));
}

.border-s-gray-700\/0 {
  border-inline-start-color: rgb(64 64 64 / 0);
}

.border-s-gray-700\/10 {
  border-inline-start-color: rgb(64 64 64 / 0.1);
}

.border-s-gray-700\/100 {
  border-inline-start-color: rgb(64 64 64 / 1);
}

.border-s-gray-700\/15 {
  border-inline-start-color: rgb(64 64 64 / 0.15);
}

.border-s-gray-700\/20 {
  border-inline-start-color: rgb(64 64 64 / 0.2);
}

.border-s-gray-700\/25 {
  border-inline-start-color: rgb(64 64 64 / 0.25);
}

.border-s-gray-700\/30 {
  border-inline-start-color: rgb(64 64 64 / 0.3);
}

.border-s-gray-700\/35 {
  border-inline-start-color: rgb(64 64 64 / 0.35);
}

.border-s-gray-700\/40 {
  border-inline-start-color: rgb(64 64 64 / 0.4);
}

.border-s-gray-700\/45 {
  border-inline-start-color: rgb(64 64 64 / 0.45);
}

.border-s-gray-700\/5 {
  border-inline-start-color: rgb(64 64 64 / 0.05);
}

.border-s-gray-700\/50 {
  border-inline-start-color: rgb(64 64 64 / 0.5);
}

.border-s-gray-700\/55 {
  border-inline-start-color: rgb(64 64 64 / 0.55);
}

.border-s-gray-700\/60 {
  border-inline-start-color: rgb(64 64 64 / 0.6);
}

.border-s-gray-700\/65 {
  border-inline-start-color: rgb(64 64 64 / 0.65);
}

.border-s-gray-700\/70 {
  border-inline-start-color: rgb(64 64 64 / 0.7);
}

.border-s-gray-700\/75 {
  border-inline-start-color: rgb(64 64 64 / 0.75);
}

.border-s-gray-700\/80 {
  border-inline-start-color: rgb(64 64 64 / 0.8);
}

.border-s-gray-700\/85 {
  border-inline-start-color: rgb(64 64 64 / 0.85);
}

.border-s-gray-700\/90 {
  border-inline-start-color: rgb(64 64 64 / 0.9);
}

.border-s-gray-700\/95 {
  border-inline-start-color: rgb(64 64 64 / 0.95);
}

.border-s-gray-800 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(38 38 38 / var(--tw-border-opacity, 1));
}

.border-s-gray-800\/0 {
  border-inline-start-color: rgb(38 38 38 / 0);
}

.border-s-gray-800\/10 {
  border-inline-start-color: rgb(38 38 38 / 0.1);
}

.border-s-gray-800\/100 {
  border-inline-start-color: rgb(38 38 38 / 1);
}

.border-s-gray-800\/15 {
  border-inline-start-color: rgb(38 38 38 / 0.15);
}

.border-s-gray-800\/20 {
  border-inline-start-color: rgb(38 38 38 / 0.2);
}

.border-s-gray-800\/25 {
  border-inline-start-color: rgb(38 38 38 / 0.25);
}

.border-s-gray-800\/30 {
  border-inline-start-color: rgb(38 38 38 / 0.3);
}

.border-s-gray-800\/35 {
  border-inline-start-color: rgb(38 38 38 / 0.35);
}

.border-s-gray-800\/40 {
  border-inline-start-color: rgb(38 38 38 / 0.4);
}

.border-s-gray-800\/45 {
  border-inline-start-color: rgb(38 38 38 / 0.45);
}

.border-s-gray-800\/5 {
  border-inline-start-color: rgb(38 38 38 / 0.05);
}

.border-s-gray-800\/50 {
  border-inline-start-color: rgb(38 38 38 / 0.5);
}

.border-s-gray-800\/55 {
  border-inline-start-color: rgb(38 38 38 / 0.55);
}

.border-s-gray-800\/60 {
  border-inline-start-color: rgb(38 38 38 / 0.6);
}

.border-s-gray-800\/65 {
  border-inline-start-color: rgb(38 38 38 / 0.65);
}

.border-s-gray-800\/70 {
  border-inline-start-color: rgb(38 38 38 / 0.7);
}

.border-s-gray-800\/75 {
  border-inline-start-color: rgb(38 38 38 / 0.75);
}

.border-s-gray-800\/80 {
  border-inline-start-color: rgb(38 38 38 / 0.8);
}

.border-s-gray-800\/85 {
  border-inline-start-color: rgb(38 38 38 / 0.85);
}

.border-s-gray-800\/90 {
  border-inline-start-color: rgb(38 38 38 / 0.9);
}

.border-s-gray-800\/95 {
  border-inline-start-color: rgb(38 38 38 / 0.95);
}

.border-s-gray-900 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(23 23 23 / var(--tw-border-opacity, 1));
}

.border-s-gray-900\/0 {
  border-inline-start-color: rgb(23 23 23 / 0);
}

.border-s-gray-900\/10 {
  border-inline-start-color: rgb(23 23 23 / 0.1);
}

.border-s-gray-900\/100 {
  border-inline-start-color: rgb(23 23 23 / 1);
}

.border-s-gray-900\/15 {
  border-inline-start-color: rgb(23 23 23 / 0.15);
}

.border-s-gray-900\/20 {
  border-inline-start-color: rgb(23 23 23 / 0.2);
}

.border-s-gray-900\/25 {
  border-inline-start-color: rgb(23 23 23 / 0.25);
}

.border-s-gray-900\/30 {
  border-inline-start-color: rgb(23 23 23 / 0.3);
}

.border-s-gray-900\/35 {
  border-inline-start-color: rgb(23 23 23 / 0.35);
}

.border-s-gray-900\/40 {
  border-inline-start-color: rgb(23 23 23 / 0.4);
}

.border-s-gray-900\/45 {
  border-inline-start-color: rgb(23 23 23 / 0.45);
}

.border-s-gray-900\/5 {
  border-inline-start-color: rgb(23 23 23 / 0.05);
}

.border-s-gray-900\/50 {
  border-inline-start-color: rgb(23 23 23 / 0.5);
}

.border-s-gray-900\/55 {
  border-inline-start-color: rgb(23 23 23 / 0.55);
}

.border-s-gray-900\/60 {
  border-inline-start-color: rgb(23 23 23 / 0.6);
}

.border-s-gray-900\/65 {
  border-inline-start-color: rgb(23 23 23 / 0.65);
}

.border-s-gray-900\/70 {
  border-inline-start-color: rgb(23 23 23 / 0.7);
}

.border-s-gray-900\/75 {
  border-inline-start-color: rgb(23 23 23 / 0.75);
}

.border-s-gray-900\/80 {
  border-inline-start-color: rgb(23 23 23 / 0.8);
}

.border-s-gray-900\/85 {
  border-inline-start-color: rgb(23 23 23 / 0.85);
}

.border-s-gray-900\/90 {
  border-inline-start-color: rgb(23 23 23 / 0.9);
}

.border-s-gray-900\/95 {
  border-inline-start-color: rgb(23 23 23 / 0.95);
}

.border-s-gray-950 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(10 10 10 / var(--tw-border-opacity, 1));
}

.border-s-gray-950\/0 {
  border-inline-start-color: rgb(10 10 10 / 0);
}

.border-s-gray-950\/10 {
  border-inline-start-color: rgb(10 10 10 / 0.1);
}

.border-s-gray-950\/100 {
  border-inline-start-color: rgb(10 10 10 / 1);
}

.border-s-gray-950\/15 {
  border-inline-start-color: rgb(10 10 10 / 0.15);
}

.border-s-gray-950\/20 {
  border-inline-start-color: rgb(10 10 10 / 0.2);
}

.border-s-gray-950\/25 {
  border-inline-start-color: rgb(10 10 10 / 0.25);
}

.border-s-gray-950\/30 {
  border-inline-start-color: rgb(10 10 10 / 0.3);
}

.border-s-gray-950\/35 {
  border-inline-start-color: rgb(10 10 10 / 0.35);
}

.border-s-gray-950\/40 {
  border-inline-start-color: rgb(10 10 10 / 0.4);
}

.border-s-gray-950\/45 {
  border-inline-start-color: rgb(10 10 10 / 0.45);
}

.border-s-gray-950\/5 {
  border-inline-start-color: rgb(10 10 10 / 0.05);
}

.border-s-gray-950\/50 {
  border-inline-start-color: rgb(10 10 10 / 0.5);
}

.border-s-gray-950\/55 {
  border-inline-start-color: rgb(10 10 10 / 0.55);
}

.border-s-gray-950\/60 {
  border-inline-start-color: rgb(10 10 10 / 0.6);
}

.border-s-gray-950\/65 {
  border-inline-start-color: rgb(10 10 10 / 0.65);
}

.border-s-gray-950\/70 {
  border-inline-start-color: rgb(10 10 10 / 0.7);
}

.border-s-gray-950\/75 {
  border-inline-start-color: rgb(10 10 10 / 0.75);
}

.border-s-gray-950\/80 {
  border-inline-start-color: rgb(10 10 10 / 0.8);
}

.border-s-gray-950\/85 {
  border-inline-start-color: rgb(10 10 10 / 0.85);
}

.border-s-gray-950\/90 {
  border-inline-start-color: rgb(10 10 10 / 0.9);
}

.border-s-gray-950\/95 {
  border-inline-start-color: rgb(10 10 10 / 0.95);
}

.border-s-green-100 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(220 252 231 / var(--tw-border-opacity, 1));
}

.border-s-green-100\/0 {
  border-inline-start-color: rgb(220 252 231 / 0);
}

.border-s-green-100\/10 {
  border-inline-start-color: rgb(220 252 231 / 0.1);
}

.border-s-green-100\/100 {
  border-inline-start-color: rgb(220 252 231 / 1);
}

.border-s-green-100\/15 {
  border-inline-start-color: rgb(220 252 231 / 0.15);
}

.border-s-green-100\/20 {
  border-inline-start-color: rgb(220 252 231 / 0.2);
}

.border-s-green-100\/25 {
  border-inline-start-color: rgb(220 252 231 / 0.25);
}

.border-s-green-100\/30 {
  border-inline-start-color: rgb(220 252 231 / 0.3);
}

.border-s-green-100\/35 {
  border-inline-start-color: rgb(220 252 231 / 0.35);
}

.border-s-green-100\/40 {
  border-inline-start-color: rgb(220 252 231 / 0.4);
}

.border-s-green-100\/45 {
  border-inline-start-color: rgb(220 252 231 / 0.45);
}

.border-s-green-100\/5 {
  border-inline-start-color: rgb(220 252 231 / 0.05);
}

.border-s-green-100\/50 {
  border-inline-start-color: rgb(220 252 231 / 0.5);
}

.border-s-green-100\/55 {
  border-inline-start-color: rgb(220 252 231 / 0.55);
}

.border-s-green-100\/60 {
  border-inline-start-color: rgb(220 252 231 / 0.6);
}

.border-s-green-100\/65 {
  border-inline-start-color: rgb(220 252 231 / 0.65);
}

.border-s-green-100\/70 {
  border-inline-start-color: rgb(220 252 231 / 0.7);
}

.border-s-green-100\/75 {
  border-inline-start-color: rgb(220 252 231 / 0.75);
}

.border-s-green-100\/80 {
  border-inline-start-color: rgb(220 252 231 / 0.8);
}

.border-s-green-100\/85 {
  border-inline-start-color: rgb(220 252 231 / 0.85);
}

.border-s-green-100\/90 {
  border-inline-start-color: rgb(220 252 231 / 0.9);
}

.border-s-green-100\/95 {
  border-inline-start-color: rgb(220 252 231 / 0.95);
}

.border-s-green-200 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
}

.border-s-green-200\/0 {
  border-inline-start-color: rgb(187 247 208 / 0);
}

.border-s-green-200\/10 {
  border-inline-start-color: rgb(187 247 208 / 0.1);
}

.border-s-green-200\/100 {
  border-inline-start-color: rgb(187 247 208 / 1);
}

.border-s-green-200\/15 {
  border-inline-start-color: rgb(187 247 208 / 0.15);
}

.border-s-green-200\/20 {
  border-inline-start-color: rgb(187 247 208 / 0.2);
}

.border-s-green-200\/25 {
  border-inline-start-color: rgb(187 247 208 / 0.25);
}

.border-s-green-200\/30 {
  border-inline-start-color: rgb(187 247 208 / 0.3);
}

.border-s-green-200\/35 {
  border-inline-start-color: rgb(187 247 208 / 0.35);
}

.border-s-green-200\/40 {
  border-inline-start-color: rgb(187 247 208 / 0.4);
}

.border-s-green-200\/45 {
  border-inline-start-color: rgb(187 247 208 / 0.45);
}

.border-s-green-200\/5 {
  border-inline-start-color: rgb(187 247 208 / 0.05);
}

.border-s-green-200\/50 {
  border-inline-start-color: rgb(187 247 208 / 0.5);
}

.border-s-green-200\/55 {
  border-inline-start-color: rgb(187 247 208 / 0.55);
}

.border-s-green-200\/60 {
  border-inline-start-color: rgb(187 247 208 / 0.6);
}

.border-s-green-200\/65 {
  border-inline-start-color: rgb(187 247 208 / 0.65);
}

.border-s-green-200\/70 {
  border-inline-start-color: rgb(187 247 208 / 0.7);
}

.border-s-green-200\/75 {
  border-inline-start-color: rgb(187 247 208 / 0.75);
}

.border-s-green-200\/80 {
  border-inline-start-color: rgb(187 247 208 / 0.8);
}

.border-s-green-200\/85 {
  border-inline-start-color: rgb(187 247 208 / 0.85);
}

.border-s-green-200\/90 {
  border-inline-start-color: rgb(187 247 208 / 0.9);
}

.border-s-green-200\/95 {
  border-inline-start-color: rgb(187 247 208 / 0.95);
}

.border-s-green-300 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(134 239 172 / var(--tw-border-opacity, 1));
}

.border-s-green-300\/0 {
  border-inline-start-color: rgb(134 239 172 / 0);
}

.border-s-green-300\/10 {
  border-inline-start-color: rgb(134 239 172 / 0.1);
}

.border-s-green-300\/100 {
  border-inline-start-color: rgb(134 239 172 / 1);
}

.border-s-green-300\/15 {
  border-inline-start-color: rgb(134 239 172 / 0.15);
}

.border-s-green-300\/20 {
  border-inline-start-color: rgb(134 239 172 / 0.2);
}

.border-s-green-300\/25 {
  border-inline-start-color: rgb(134 239 172 / 0.25);
}

.border-s-green-300\/30 {
  border-inline-start-color: rgb(134 239 172 / 0.3);
}

.border-s-green-300\/35 {
  border-inline-start-color: rgb(134 239 172 / 0.35);
}

.border-s-green-300\/40 {
  border-inline-start-color: rgb(134 239 172 / 0.4);
}

.border-s-green-300\/45 {
  border-inline-start-color: rgb(134 239 172 / 0.45);
}

.border-s-green-300\/5 {
  border-inline-start-color: rgb(134 239 172 / 0.05);
}

.border-s-green-300\/50 {
  border-inline-start-color: rgb(134 239 172 / 0.5);
}

.border-s-green-300\/55 {
  border-inline-start-color: rgb(134 239 172 / 0.55);
}

.border-s-green-300\/60 {
  border-inline-start-color: rgb(134 239 172 / 0.6);
}

.border-s-green-300\/65 {
  border-inline-start-color: rgb(134 239 172 / 0.65);
}

.border-s-green-300\/70 {
  border-inline-start-color: rgb(134 239 172 / 0.7);
}

.border-s-green-300\/75 {
  border-inline-start-color: rgb(134 239 172 / 0.75);
}

.border-s-green-300\/80 {
  border-inline-start-color: rgb(134 239 172 / 0.8);
}

.border-s-green-300\/85 {
  border-inline-start-color: rgb(134 239 172 / 0.85);
}

.border-s-green-300\/90 {
  border-inline-start-color: rgb(134 239 172 / 0.9);
}

.border-s-green-300\/95 {
  border-inline-start-color: rgb(134 239 172 / 0.95);
}

.border-s-green-400 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(74 222 128 / var(--tw-border-opacity, 1));
}

.border-s-green-400\/0 {
  border-inline-start-color: rgb(74 222 128 / 0);
}

.border-s-green-400\/10 {
  border-inline-start-color: rgb(74 222 128 / 0.1);
}

.border-s-green-400\/100 {
  border-inline-start-color: rgb(74 222 128 / 1);
}

.border-s-green-400\/15 {
  border-inline-start-color: rgb(74 222 128 / 0.15);
}

.border-s-green-400\/20 {
  border-inline-start-color: rgb(74 222 128 / 0.2);
}

.border-s-green-400\/25 {
  border-inline-start-color: rgb(74 222 128 / 0.25);
}

.border-s-green-400\/30 {
  border-inline-start-color: rgb(74 222 128 / 0.3);
}

.border-s-green-400\/35 {
  border-inline-start-color: rgb(74 222 128 / 0.35);
}

.border-s-green-400\/40 {
  border-inline-start-color: rgb(74 222 128 / 0.4);
}

.border-s-green-400\/45 {
  border-inline-start-color: rgb(74 222 128 / 0.45);
}

.border-s-green-400\/5 {
  border-inline-start-color: rgb(74 222 128 / 0.05);
}

.border-s-green-400\/50 {
  border-inline-start-color: rgb(74 222 128 / 0.5);
}

.border-s-green-400\/55 {
  border-inline-start-color: rgb(74 222 128 / 0.55);
}

.border-s-green-400\/60 {
  border-inline-start-color: rgb(74 222 128 / 0.6);
}

.border-s-green-400\/65 {
  border-inline-start-color: rgb(74 222 128 / 0.65);
}

.border-s-green-400\/70 {
  border-inline-start-color: rgb(74 222 128 / 0.7);
}

.border-s-green-400\/75 {
  border-inline-start-color: rgb(74 222 128 / 0.75);
}

.border-s-green-400\/80 {
  border-inline-start-color: rgb(74 222 128 / 0.8);
}

.border-s-green-400\/85 {
  border-inline-start-color: rgb(74 222 128 / 0.85);
}

.border-s-green-400\/90 {
  border-inline-start-color: rgb(74 222 128 / 0.9);
}

.border-s-green-400\/95 {
  border-inline-start-color: rgb(74 222 128 / 0.95);
}

.border-s-green-50 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(240 253 244 / var(--tw-border-opacity, 1));
}

.border-s-green-50\/0 {
  border-inline-start-color: rgb(240 253 244 / 0);
}

.border-s-green-50\/10 {
  border-inline-start-color: rgb(240 253 244 / 0.1);
}

.border-s-green-50\/100 {
  border-inline-start-color: rgb(240 253 244 / 1);
}

.border-s-green-50\/15 {
  border-inline-start-color: rgb(240 253 244 / 0.15);
}

.border-s-green-50\/20 {
  border-inline-start-color: rgb(240 253 244 / 0.2);
}

.border-s-green-50\/25 {
  border-inline-start-color: rgb(240 253 244 / 0.25);
}

.border-s-green-50\/30 {
  border-inline-start-color: rgb(240 253 244 / 0.3);
}

.border-s-green-50\/35 {
  border-inline-start-color: rgb(240 253 244 / 0.35);
}

.border-s-green-50\/40 {
  border-inline-start-color: rgb(240 253 244 / 0.4);
}

.border-s-green-50\/45 {
  border-inline-start-color: rgb(240 253 244 / 0.45);
}

.border-s-green-50\/5 {
  border-inline-start-color: rgb(240 253 244 / 0.05);
}

.border-s-green-50\/50 {
  border-inline-start-color: rgb(240 253 244 / 0.5);
}

.border-s-green-50\/55 {
  border-inline-start-color: rgb(240 253 244 / 0.55);
}

.border-s-green-50\/60 {
  border-inline-start-color: rgb(240 253 244 / 0.6);
}

.border-s-green-50\/65 {
  border-inline-start-color: rgb(240 253 244 / 0.65);
}

.border-s-green-50\/70 {
  border-inline-start-color: rgb(240 253 244 / 0.7);
}

.border-s-green-50\/75 {
  border-inline-start-color: rgb(240 253 244 / 0.75);
}

.border-s-green-50\/80 {
  border-inline-start-color: rgb(240 253 244 / 0.8);
}

.border-s-green-50\/85 {
  border-inline-start-color: rgb(240 253 244 / 0.85);
}

.border-s-green-50\/90 {
  border-inline-start-color: rgb(240 253 244 / 0.9);
}

.border-s-green-50\/95 {
  border-inline-start-color: rgb(240 253 244 / 0.95);
}

.border-s-green-500 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
}

.border-s-green-500\/0 {
  border-inline-start-color: rgb(34 197 94 / 0);
}

.border-s-green-500\/10 {
  border-inline-start-color: rgb(34 197 94 / 0.1);
}

.border-s-green-500\/100 {
  border-inline-start-color: rgb(34 197 94 / 1);
}

.border-s-green-500\/15 {
  border-inline-start-color: rgb(34 197 94 / 0.15);
}

.border-s-green-500\/20 {
  border-inline-start-color: rgb(34 197 94 / 0.2);
}

.border-s-green-500\/25 {
  border-inline-start-color: rgb(34 197 94 / 0.25);
}

.border-s-green-500\/30 {
  border-inline-start-color: rgb(34 197 94 / 0.3);
}

.border-s-green-500\/35 {
  border-inline-start-color: rgb(34 197 94 / 0.35);
}

.border-s-green-500\/40 {
  border-inline-start-color: rgb(34 197 94 / 0.4);
}

.border-s-green-500\/45 {
  border-inline-start-color: rgb(34 197 94 / 0.45);
}

.border-s-green-500\/5 {
  border-inline-start-color: rgb(34 197 94 / 0.05);
}

.border-s-green-500\/50 {
  border-inline-start-color: rgb(34 197 94 / 0.5);
}

.border-s-green-500\/55 {
  border-inline-start-color: rgb(34 197 94 / 0.55);
}

.border-s-green-500\/60 {
  border-inline-start-color: rgb(34 197 94 / 0.6);
}

.border-s-green-500\/65 {
  border-inline-start-color: rgb(34 197 94 / 0.65);
}

.border-s-green-500\/70 {
  border-inline-start-color: rgb(34 197 94 / 0.7);
}

.border-s-green-500\/75 {
  border-inline-start-color: rgb(34 197 94 / 0.75);
}

.border-s-green-500\/80 {
  border-inline-start-color: rgb(34 197 94 / 0.8);
}

.border-s-green-500\/85 {
  border-inline-start-color: rgb(34 197 94 / 0.85);
}

.border-s-green-500\/90 {
  border-inline-start-color: rgb(34 197 94 / 0.9);
}

.border-s-green-500\/95 {
  border-inline-start-color: rgb(34 197 94 / 0.95);
}

.border-s-green-600 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(22 163 74 / var(--tw-border-opacity, 1));
}

.border-s-green-600\/0 {
  border-inline-start-color: rgb(22 163 74 / 0);
}

.border-s-green-600\/10 {
  border-inline-start-color: rgb(22 163 74 / 0.1);
}

.border-s-green-600\/100 {
  border-inline-start-color: rgb(22 163 74 / 1);
}

.border-s-green-600\/15 {
  border-inline-start-color: rgb(22 163 74 / 0.15);
}

.border-s-green-600\/20 {
  border-inline-start-color: rgb(22 163 74 / 0.2);
}

.border-s-green-600\/25 {
  border-inline-start-color: rgb(22 163 74 / 0.25);
}

.border-s-green-600\/30 {
  border-inline-start-color: rgb(22 163 74 / 0.3);
}

.border-s-green-600\/35 {
  border-inline-start-color: rgb(22 163 74 / 0.35);
}

.border-s-green-600\/40 {
  border-inline-start-color: rgb(22 163 74 / 0.4);
}

.border-s-green-600\/45 {
  border-inline-start-color: rgb(22 163 74 / 0.45);
}

.border-s-green-600\/5 {
  border-inline-start-color: rgb(22 163 74 / 0.05);
}

.border-s-green-600\/50 {
  border-inline-start-color: rgb(22 163 74 / 0.5);
}

.border-s-green-600\/55 {
  border-inline-start-color: rgb(22 163 74 / 0.55);
}

.border-s-green-600\/60 {
  border-inline-start-color: rgb(22 163 74 / 0.6);
}

.border-s-green-600\/65 {
  border-inline-start-color: rgb(22 163 74 / 0.65);
}

.border-s-green-600\/70 {
  border-inline-start-color: rgb(22 163 74 / 0.7);
}

.border-s-green-600\/75 {
  border-inline-start-color: rgb(22 163 74 / 0.75);
}

.border-s-green-600\/80 {
  border-inline-start-color: rgb(22 163 74 / 0.8);
}

.border-s-green-600\/85 {
  border-inline-start-color: rgb(22 163 74 / 0.85);
}

.border-s-green-600\/90 {
  border-inline-start-color: rgb(22 163 74 / 0.9);
}

.border-s-green-600\/95 {
  border-inline-start-color: rgb(22 163 74 / 0.95);
}

.border-s-green-700 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(21 128 61 / var(--tw-border-opacity, 1));
}

.border-s-green-700\/0 {
  border-inline-start-color: rgb(21 128 61 / 0);
}

.border-s-green-700\/10 {
  border-inline-start-color: rgb(21 128 61 / 0.1);
}

.border-s-green-700\/100 {
  border-inline-start-color: rgb(21 128 61 / 1);
}

.border-s-green-700\/15 {
  border-inline-start-color: rgb(21 128 61 / 0.15);
}

.border-s-green-700\/20 {
  border-inline-start-color: rgb(21 128 61 / 0.2);
}

.border-s-green-700\/25 {
  border-inline-start-color: rgb(21 128 61 / 0.25);
}

.border-s-green-700\/30 {
  border-inline-start-color: rgb(21 128 61 / 0.3);
}

.border-s-green-700\/35 {
  border-inline-start-color: rgb(21 128 61 / 0.35);
}

.border-s-green-700\/40 {
  border-inline-start-color: rgb(21 128 61 / 0.4);
}

.border-s-green-700\/45 {
  border-inline-start-color: rgb(21 128 61 / 0.45);
}

.border-s-green-700\/5 {
  border-inline-start-color: rgb(21 128 61 / 0.05);
}

.border-s-green-700\/50 {
  border-inline-start-color: rgb(21 128 61 / 0.5);
}

.border-s-green-700\/55 {
  border-inline-start-color: rgb(21 128 61 / 0.55);
}

.border-s-green-700\/60 {
  border-inline-start-color: rgb(21 128 61 / 0.6);
}

.border-s-green-700\/65 {
  border-inline-start-color: rgb(21 128 61 / 0.65);
}

.border-s-green-700\/70 {
  border-inline-start-color: rgb(21 128 61 / 0.7);
}

.border-s-green-700\/75 {
  border-inline-start-color: rgb(21 128 61 / 0.75);
}

.border-s-green-700\/80 {
  border-inline-start-color: rgb(21 128 61 / 0.8);
}

.border-s-green-700\/85 {
  border-inline-start-color: rgb(21 128 61 / 0.85);
}

.border-s-green-700\/90 {
  border-inline-start-color: rgb(21 128 61 / 0.9);
}

.border-s-green-700\/95 {
  border-inline-start-color: rgb(21 128 61 / 0.95);
}

.border-s-green-800 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(22 101 52 / var(--tw-border-opacity, 1));
}

.border-s-green-800\/0 {
  border-inline-start-color: rgb(22 101 52 / 0);
}

.border-s-green-800\/10 {
  border-inline-start-color: rgb(22 101 52 / 0.1);
}

.border-s-green-800\/100 {
  border-inline-start-color: rgb(22 101 52 / 1);
}

.border-s-green-800\/15 {
  border-inline-start-color: rgb(22 101 52 / 0.15);
}

.border-s-green-800\/20 {
  border-inline-start-color: rgb(22 101 52 / 0.2);
}

.border-s-green-800\/25 {
  border-inline-start-color: rgb(22 101 52 / 0.25);
}

.border-s-green-800\/30 {
  border-inline-start-color: rgb(22 101 52 / 0.3);
}

.border-s-green-800\/35 {
  border-inline-start-color: rgb(22 101 52 / 0.35);
}

.border-s-green-800\/40 {
  border-inline-start-color: rgb(22 101 52 / 0.4);
}

.border-s-green-800\/45 {
  border-inline-start-color: rgb(22 101 52 / 0.45);
}

.border-s-green-800\/5 {
  border-inline-start-color: rgb(22 101 52 / 0.05);
}

.border-s-green-800\/50 {
  border-inline-start-color: rgb(22 101 52 / 0.5);
}

.border-s-green-800\/55 {
  border-inline-start-color: rgb(22 101 52 / 0.55);
}

.border-s-green-800\/60 {
  border-inline-start-color: rgb(22 101 52 / 0.6);
}

.border-s-green-800\/65 {
  border-inline-start-color: rgb(22 101 52 / 0.65);
}

.border-s-green-800\/70 {
  border-inline-start-color: rgb(22 101 52 / 0.7);
}

.border-s-green-800\/75 {
  border-inline-start-color: rgb(22 101 52 / 0.75);
}

.border-s-green-800\/80 {
  border-inline-start-color: rgb(22 101 52 / 0.8);
}

.border-s-green-800\/85 {
  border-inline-start-color: rgb(22 101 52 / 0.85);
}

.border-s-green-800\/90 {
  border-inline-start-color: rgb(22 101 52 / 0.9);
}

.border-s-green-800\/95 {
  border-inline-start-color: rgb(22 101 52 / 0.95);
}

.border-s-green-900 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(20 83 45 / var(--tw-border-opacity, 1));
}

.border-s-green-900\/0 {
  border-inline-start-color: rgb(20 83 45 / 0);
}

.border-s-green-900\/10 {
  border-inline-start-color: rgb(20 83 45 / 0.1);
}

.border-s-green-900\/100 {
  border-inline-start-color: rgb(20 83 45 / 1);
}

.border-s-green-900\/15 {
  border-inline-start-color: rgb(20 83 45 / 0.15);
}

.border-s-green-900\/20 {
  border-inline-start-color: rgb(20 83 45 / 0.2);
}

.border-s-green-900\/25 {
  border-inline-start-color: rgb(20 83 45 / 0.25);
}

.border-s-green-900\/30 {
  border-inline-start-color: rgb(20 83 45 / 0.3);
}

.border-s-green-900\/35 {
  border-inline-start-color: rgb(20 83 45 / 0.35);
}

.border-s-green-900\/40 {
  border-inline-start-color: rgb(20 83 45 / 0.4);
}

.border-s-green-900\/45 {
  border-inline-start-color: rgb(20 83 45 / 0.45);
}

.border-s-green-900\/5 {
  border-inline-start-color: rgb(20 83 45 / 0.05);
}

.border-s-green-900\/50 {
  border-inline-start-color: rgb(20 83 45 / 0.5);
}

.border-s-green-900\/55 {
  border-inline-start-color: rgb(20 83 45 / 0.55);
}

.border-s-green-900\/60 {
  border-inline-start-color: rgb(20 83 45 / 0.6);
}

.border-s-green-900\/65 {
  border-inline-start-color: rgb(20 83 45 / 0.65);
}

.border-s-green-900\/70 {
  border-inline-start-color: rgb(20 83 45 / 0.7);
}

.border-s-green-900\/75 {
  border-inline-start-color: rgb(20 83 45 / 0.75);
}

.border-s-green-900\/80 {
  border-inline-start-color: rgb(20 83 45 / 0.8);
}

.border-s-green-900\/85 {
  border-inline-start-color: rgb(20 83 45 / 0.85);
}

.border-s-green-900\/90 {
  border-inline-start-color: rgb(20 83 45 / 0.9);
}

.border-s-green-900\/95 {
  border-inline-start-color: rgb(20 83 45 / 0.95);
}

.border-s-green-950 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(5 46 22 / var(--tw-border-opacity, 1));
}

.border-s-green-950\/0 {
  border-inline-start-color: rgb(5 46 22 / 0);
}

.border-s-green-950\/10 {
  border-inline-start-color: rgb(5 46 22 / 0.1);
}

.border-s-green-950\/100 {
  border-inline-start-color: rgb(5 46 22 / 1);
}

.border-s-green-950\/15 {
  border-inline-start-color: rgb(5 46 22 / 0.15);
}

.border-s-green-950\/20 {
  border-inline-start-color: rgb(5 46 22 / 0.2);
}

.border-s-green-950\/25 {
  border-inline-start-color: rgb(5 46 22 / 0.25);
}

.border-s-green-950\/30 {
  border-inline-start-color: rgb(5 46 22 / 0.3);
}

.border-s-green-950\/35 {
  border-inline-start-color: rgb(5 46 22 / 0.35);
}

.border-s-green-950\/40 {
  border-inline-start-color: rgb(5 46 22 / 0.4);
}

.border-s-green-950\/45 {
  border-inline-start-color: rgb(5 46 22 / 0.45);
}

.border-s-green-950\/5 {
  border-inline-start-color: rgb(5 46 22 / 0.05);
}

.border-s-green-950\/50 {
  border-inline-start-color: rgb(5 46 22 / 0.5);
}

.border-s-green-950\/55 {
  border-inline-start-color: rgb(5 46 22 / 0.55);
}

.border-s-green-950\/60 {
  border-inline-start-color: rgb(5 46 22 / 0.6);
}

.border-s-green-950\/65 {
  border-inline-start-color: rgb(5 46 22 / 0.65);
}

.border-s-green-950\/70 {
  border-inline-start-color: rgb(5 46 22 / 0.7);
}

.border-s-green-950\/75 {
  border-inline-start-color: rgb(5 46 22 / 0.75);
}

.border-s-green-950\/80 {
  border-inline-start-color: rgb(5 46 22 / 0.8);
}

.border-s-green-950\/85 {
  border-inline-start-color: rgb(5 46 22 / 0.85);
}

.border-s-green-950\/90 {
  border-inline-start-color: rgb(5 46 22 / 0.9);
}

.border-s-green-950\/95 {
  border-inline-start-color: rgb(5 46 22 / 0.95);
}

.border-s-red-100 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(254 226 226 / var(--tw-border-opacity, 1));
}

.border-s-red-100\/0 {
  border-inline-start-color: rgb(254 226 226 / 0);
}

.border-s-red-100\/10 {
  border-inline-start-color: rgb(254 226 226 / 0.1);
}

.border-s-red-100\/100 {
  border-inline-start-color: rgb(254 226 226 / 1);
}

.border-s-red-100\/15 {
  border-inline-start-color: rgb(254 226 226 / 0.15);
}

.border-s-red-100\/20 {
  border-inline-start-color: rgb(254 226 226 / 0.2);
}

.border-s-red-100\/25 {
  border-inline-start-color: rgb(254 226 226 / 0.25);
}

.border-s-red-100\/30 {
  border-inline-start-color: rgb(254 226 226 / 0.3);
}

.border-s-red-100\/35 {
  border-inline-start-color: rgb(254 226 226 / 0.35);
}

.border-s-red-100\/40 {
  border-inline-start-color: rgb(254 226 226 / 0.4);
}

.border-s-red-100\/45 {
  border-inline-start-color: rgb(254 226 226 / 0.45);
}

.border-s-red-100\/5 {
  border-inline-start-color: rgb(254 226 226 / 0.05);
}

.border-s-red-100\/50 {
  border-inline-start-color: rgb(254 226 226 / 0.5);
}

.border-s-red-100\/55 {
  border-inline-start-color: rgb(254 226 226 / 0.55);
}

.border-s-red-100\/60 {
  border-inline-start-color: rgb(254 226 226 / 0.6);
}

.border-s-red-100\/65 {
  border-inline-start-color: rgb(254 226 226 / 0.65);
}

.border-s-red-100\/70 {
  border-inline-start-color: rgb(254 226 226 / 0.7);
}

.border-s-red-100\/75 {
  border-inline-start-color: rgb(254 226 226 / 0.75);
}

.border-s-red-100\/80 {
  border-inline-start-color: rgb(254 226 226 / 0.8);
}

.border-s-red-100\/85 {
  border-inline-start-color: rgb(254 226 226 / 0.85);
}

.border-s-red-100\/90 {
  border-inline-start-color: rgb(254 226 226 / 0.9);
}

.border-s-red-100\/95 {
  border-inline-start-color: rgb(254 226 226 / 0.95);
}

.border-s-red-200 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}

.border-s-red-200\/0 {
  border-inline-start-color: rgb(254 202 202 / 0);
}

.border-s-red-200\/10 {
  border-inline-start-color: rgb(254 202 202 / 0.1);
}

.border-s-red-200\/100 {
  border-inline-start-color: rgb(254 202 202 / 1);
}

.border-s-red-200\/15 {
  border-inline-start-color: rgb(254 202 202 / 0.15);
}

.border-s-red-200\/20 {
  border-inline-start-color: rgb(254 202 202 / 0.2);
}

.border-s-red-200\/25 {
  border-inline-start-color: rgb(254 202 202 / 0.25);
}

.border-s-red-200\/30 {
  border-inline-start-color: rgb(254 202 202 / 0.3);
}

.border-s-red-200\/35 {
  border-inline-start-color: rgb(254 202 202 / 0.35);
}

.border-s-red-200\/40 {
  border-inline-start-color: rgb(254 202 202 / 0.4);
}

.border-s-red-200\/45 {
  border-inline-start-color: rgb(254 202 202 / 0.45);
}

.border-s-red-200\/5 {
  border-inline-start-color: rgb(254 202 202 / 0.05);
}

.border-s-red-200\/50 {
  border-inline-start-color: rgb(254 202 202 / 0.5);
}

.border-s-red-200\/55 {
  border-inline-start-color: rgb(254 202 202 / 0.55);
}

.border-s-red-200\/60 {
  border-inline-start-color: rgb(254 202 202 / 0.6);
}

.border-s-red-200\/65 {
  border-inline-start-color: rgb(254 202 202 / 0.65);
}

.border-s-red-200\/70 {
  border-inline-start-color: rgb(254 202 202 / 0.7);
}

.border-s-red-200\/75 {
  border-inline-start-color: rgb(254 202 202 / 0.75);
}

.border-s-red-200\/80 {
  border-inline-start-color: rgb(254 202 202 / 0.8);
}

.border-s-red-200\/85 {
  border-inline-start-color: rgb(254 202 202 / 0.85);
}

.border-s-red-200\/90 {
  border-inline-start-color: rgb(254 202 202 / 0.9);
}

.border-s-red-200\/95 {
  border-inline-start-color: rgb(254 202 202 / 0.95);
}

.border-s-red-300 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
}

.border-s-red-300\/0 {
  border-inline-start-color: rgb(252 165 165 / 0);
}

.border-s-red-300\/10 {
  border-inline-start-color: rgb(252 165 165 / 0.1);
}

.border-s-red-300\/100 {
  border-inline-start-color: rgb(252 165 165 / 1);
}

.border-s-red-300\/15 {
  border-inline-start-color: rgb(252 165 165 / 0.15);
}

.border-s-red-300\/20 {
  border-inline-start-color: rgb(252 165 165 / 0.2);
}

.border-s-red-300\/25 {
  border-inline-start-color: rgb(252 165 165 / 0.25);
}

.border-s-red-300\/30 {
  border-inline-start-color: rgb(252 165 165 / 0.3);
}

.border-s-red-300\/35 {
  border-inline-start-color: rgb(252 165 165 / 0.35);
}

.border-s-red-300\/40 {
  border-inline-start-color: rgb(252 165 165 / 0.4);
}

.border-s-red-300\/45 {
  border-inline-start-color: rgb(252 165 165 / 0.45);
}

.border-s-red-300\/5 {
  border-inline-start-color: rgb(252 165 165 / 0.05);
}

.border-s-red-300\/50 {
  border-inline-start-color: rgb(252 165 165 / 0.5);
}

.border-s-red-300\/55 {
  border-inline-start-color: rgb(252 165 165 / 0.55);
}

.border-s-red-300\/60 {
  border-inline-start-color: rgb(252 165 165 / 0.6);
}

.border-s-red-300\/65 {
  border-inline-start-color: rgb(252 165 165 / 0.65);
}

.border-s-red-300\/70 {
  border-inline-start-color: rgb(252 165 165 / 0.7);
}

.border-s-red-300\/75 {
  border-inline-start-color: rgb(252 165 165 / 0.75);
}

.border-s-red-300\/80 {
  border-inline-start-color: rgb(252 165 165 / 0.8);
}

.border-s-red-300\/85 {
  border-inline-start-color: rgb(252 165 165 / 0.85);
}

.border-s-red-300\/90 {
  border-inline-start-color: rgb(252 165 165 / 0.9);
}

.border-s-red-300\/95 {
  border-inline-start-color: rgb(252 165 165 / 0.95);
}

.border-s-red-400 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(248 113 113 / var(--tw-border-opacity, 1));
}

.border-s-red-400\/0 {
  border-inline-start-color: rgb(248 113 113 / 0);
}

.border-s-red-400\/10 {
  border-inline-start-color: rgb(248 113 113 / 0.1);
}

.border-s-red-400\/100 {
  border-inline-start-color: rgb(248 113 113 / 1);
}

.border-s-red-400\/15 {
  border-inline-start-color: rgb(248 113 113 / 0.15);
}

.border-s-red-400\/20 {
  border-inline-start-color: rgb(248 113 113 / 0.2);
}

.border-s-red-400\/25 {
  border-inline-start-color: rgb(248 113 113 / 0.25);
}

.border-s-red-400\/30 {
  border-inline-start-color: rgb(248 113 113 / 0.3);
}

.border-s-red-400\/35 {
  border-inline-start-color: rgb(248 113 113 / 0.35);
}

.border-s-red-400\/40 {
  border-inline-start-color: rgb(248 113 113 / 0.4);
}

.border-s-red-400\/45 {
  border-inline-start-color: rgb(248 113 113 / 0.45);
}

.border-s-red-400\/5 {
  border-inline-start-color: rgb(248 113 113 / 0.05);
}

.border-s-red-400\/50 {
  border-inline-start-color: rgb(248 113 113 / 0.5);
}

.border-s-red-400\/55 {
  border-inline-start-color: rgb(248 113 113 / 0.55);
}

.border-s-red-400\/60 {
  border-inline-start-color: rgb(248 113 113 / 0.6);
}

.border-s-red-400\/65 {
  border-inline-start-color: rgb(248 113 113 / 0.65);
}

.border-s-red-400\/70 {
  border-inline-start-color: rgb(248 113 113 / 0.7);
}

.border-s-red-400\/75 {
  border-inline-start-color: rgb(248 113 113 / 0.75);
}

.border-s-red-400\/80 {
  border-inline-start-color: rgb(248 113 113 / 0.8);
}

.border-s-red-400\/85 {
  border-inline-start-color: rgb(248 113 113 / 0.85);
}

.border-s-red-400\/90 {
  border-inline-start-color: rgb(248 113 113 / 0.9);
}

.border-s-red-400\/95 {
  border-inline-start-color: rgb(248 113 113 / 0.95);
}

.border-s-red-50 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(254 242 242 / var(--tw-border-opacity, 1));
}

.border-s-red-50\/0 {
  border-inline-start-color: rgb(254 242 242 / 0);
}

.border-s-red-50\/10 {
  border-inline-start-color: rgb(254 242 242 / 0.1);
}

.border-s-red-50\/100 {
  border-inline-start-color: rgb(254 242 242 / 1);
}

.border-s-red-50\/15 {
  border-inline-start-color: rgb(254 242 242 / 0.15);
}

.border-s-red-50\/20 {
  border-inline-start-color: rgb(254 242 242 / 0.2);
}

.border-s-red-50\/25 {
  border-inline-start-color: rgb(254 242 242 / 0.25);
}

.border-s-red-50\/30 {
  border-inline-start-color: rgb(254 242 242 / 0.3);
}

.border-s-red-50\/35 {
  border-inline-start-color: rgb(254 242 242 / 0.35);
}

.border-s-red-50\/40 {
  border-inline-start-color: rgb(254 242 242 / 0.4);
}

.border-s-red-50\/45 {
  border-inline-start-color: rgb(254 242 242 / 0.45);
}

.border-s-red-50\/5 {
  border-inline-start-color: rgb(254 242 242 / 0.05);
}

.border-s-red-50\/50 {
  border-inline-start-color: rgb(254 242 242 / 0.5);
}

.border-s-red-50\/55 {
  border-inline-start-color: rgb(254 242 242 / 0.55);
}

.border-s-red-50\/60 {
  border-inline-start-color: rgb(254 242 242 / 0.6);
}

.border-s-red-50\/65 {
  border-inline-start-color: rgb(254 242 242 / 0.65);
}

.border-s-red-50\/70 {
  border-inline-start-color: rgb(254 242 242 / 0.7);
}

.border-s-red-50\/75 {
  border-inline-start-color: rgb(254 242 242 / 0.75);
}

.border-s-red-50\/80 {
  border-inline-start-color: rgb(254 242 242 / 0.8);
}

.border-s-red-50\/85 {
  border-inline-start-color: rgb(254 242 242 / 0.85);
}

.border-s-red-50\/90 {
  border-inline-start-color: rgb(254 242 242 / 0.9);
}

.border-s-red-50\/95 {
  border-inline-start-color: rgb(254 242 242 / 0.95);
}

.border-s-red-500 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}

.border-s-red-500\/0 {
  border-inline-start-color: rgb(239 68 68 / 0);
}

.border-s-red-500\/10 {
  border-inline-start-color: rgb(239 68 68 / 0.1);
}

.border-s-red-500\/100 {
  border-inline-start-color: rgb(239 68 68 / 1);
}

.border-s-red-500\/15 {
  border-inline-start-color: rgb(239 68 68 / 0.15);
}

.border-s-red-500\/20 {
  border-inline-start-color: rgb(239 68 68 / 0.2);
}

.border-s-red-500\/25 {
  border-inline-start-color: rgb(239 68 68 / 0.25);
}

.border-s-red-500\/30 {
  border-inline-start-color: rgb(239 68 68 / 0.3);
}

.border-s-red-500\/35 {
  border-inline-start-color: rgb(239 68 68 / 0.35);
}

.border-s-red-500\/40 {
  border-inline-start-color: rgb(239 68 68 / 0.4);
}

.border-s-red-500\/45 {
  border-inline-start-color: rgb(239 68 68 / 0.45);
}

.border-s-red-500\/5 {
  border-inline-start-color: rgb(239 68 68 / 0.05);
}

.border-s-red-500\/50 {
  border-inline-start-color: rgb(239 68 68 / 0.5);
}

.border-s-red-500\/55 {
  border-inline-start-color: rgb(239 68 68 / 0.55);
}

.border-s-red-500\/60 {
  border-inline-start-color: rgb(239 68 68 / 0.6);
}

.border-s-red-500\/65 {
  border-inline-start-color: rgb(239 68 68 / 0.65);
}

.border-s-red-500\/70 {
  border-inline-start-color: rgb(239 68 68 / 0.7);
}

.border-s-red-500\/75 {
  border-inline-start-color: rgb(239 68 68 / 0.75);
}

.border-s-red-500\/80 {
  border-inline-start-color: rgb(239 68 68 / 0.8);
}

.border-s-red-500\/85 {
  border-inline-start-color: rgb(239 68 68 / 0.85);
}

.border-s-red-500\/90 {
  border-inline-start-color: rgb(239 68 68 / 0.9);
}

.border-s-red-500\/95 {
  border-inline-start-color: rgb(239 68 68 / 0.95);
}

.border-s-red-600 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
}

.border-s-red-600\/0 {
  border-inline-start-color: rgb(220 38 38 / 0);
}

.border-s-red-600\/10 {
  border-inline-start-color: rgb(220 38 38 / 0.1);
}

.border-s-red-600\/100 {
  border-inline-start-color: rgb(220 38 38 / 1);
}

.border-s-red-600\/15 {
  border-inline-start-color: rgb(220 38 38 / 0.15);
}

.border-s-red-600\/20 {
  border-inline-start-color: rgb(220 38 38 / 0.2);
}

.border-s-red-600\/25 {
  border-inline-start-color: rgb(220 38 38 / 0.25);
}

.border-s-red-600\/30 {
  border-inline-start-color: rgb(220 38 38 / 0.3);
}

.border-s-red-600\/35 {
  border-inline-start-color: rgb(220 38 38 / 0.35);
}

.border-s-red-600\/40 {
  border-inline-start-color: rgb(220 38 38 / 0.4);
}

.border-s-red-600\/45 {
  border-inline-start-color: rgb(220 38 38 / 0.45);
}

.border-s-red-600\/5 {
  border-inline-start-color: rgb(220 38 38 / 0.05);
}

.border-s-red-600\/50 {
  border-inline-start-color: rgb(220 38 38 / 0.5);
}

.border-s-red-600\/55 {
  border-inline-start-color: rgb(220 38 38 / 0.55);
}

.border-s-red-600\/60 {
  border-inline-start-color: rgb(220 38 38 / 0.6);
}

.border-s-red-600\/65 {
  border-inline-start-color: rgb(220 38 38 / 0.65);
}

.border-s-red-600\/70 {
  border-inline-start-color: rgb(220 38 38 / 0.7);
}

.border-s-red-600\/75 {
  border-inline-start-color: rgb(220 38 38 / 0.75);
}

.border-s-red-600\/80 {
  border-inline-start-color: rgb(220 38 38 / 0.8);
}

.border-s-red-600\/85 {
  border-inline-start-color: rgb(220 38 38 / 0.85);
}

.border-s-red-600\/90 {
  border-inline-start-color: rgb(220 38 38 / 0.9);
}

.border-s-red-600\/95 {
  border-inline-start-color: rgb(220 38 38 / 0.95);
}

.border-s-red-700 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(185 28 28 / var(--tw-border-opacity, 1));
}

.border-s-red-700\/0 {
  border-inline-start-color: rgb(185 28 28 / 0);
}

.border-s-red-700\/10 {
  border-inline-start-color: rgb(185 28 28 / 0.1);
}

.border-s-red-700\/100 {
  border-inline-start-color: rgb(185 28 28 / 1);
}

.border-s-red-700\/15 {
  border-inline-start-color: rgb(185 28 28 / 0.15);
}

.border-s-red-700\/20 {
  border-inline-start-color: rgb(185 28 28 / 0.2);
}

.border-s-red-700\/25 {
  border-inline-start-color: rgb(185 28 28 / 0.25);
}

.border-s-red-700\/30 {
  border-inline-start-color: rgb(185 28 28 / 0.3);
}

.border-s-red-700\/35 {
  border-inline-start-color: rgb(185 28 28 / 0.35);
}

.border-s-red-700\/40 {
  border-inline-start-color: rgb(185 28 28 / 0.4);
}

.border-s-red-700\/45 {
  border-inline-start-color: rgb(185 28 28 / 0.45);
}

.border-s-red-700\/5 {
  border-inline-start-color: rgb(185 28 28 / 0.05);
}

.border-s-red-700\/50 {
  border-inline-start-color: rgb(185 28 28 / 0.5);
}

.border-s-red-700\/55 {
  border-inline-start-color: rgb(185 28 28 / 0.55);
}

.border-s-red-700\/60 {
  border-inline-start-color: rgb(185 28 28 / 0.6);
}

.border-s-red-700\/65 {
  border-inline-start-color: rgb(185 28 28 / 0.65);
}

.border-s-red-700\/70 {
  border-inline-start-color: rgb(185 28 28 / 0.7);
}

.border-s-red-700\/75 {
  border-inline-start-color: rgb(185 28 28 / 0.75);
}

.border-s-red-700\/80 {
  border-inline-start-color: rgb(185 28 28 / 0.8);
}

.border-s-red-700\/85 {
  border-inline-start-color: rgb(185 28 28 / 0.85);
}

.border-s-red-700\/90 {
  border-inline-start-color: rgb(185 28 28 / 0.9);
}

.border-s-red-700\/95 {
  border-inline-start-color: rgb(185 28 28 / 0.95);
}

.border-s-red-800 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(153 27 27 / var(--tw-border-opacity, 1));
}

.border-s-red-800\/0 {
  border-inline-start-color: rgb(153 27 27 / 0);
}

.border-s-red-800\/10 {
  border-inline-start-color: rgb(153 27 27 / 0.1);
}

.border-s-red-800\/100 {
  border-inline-start-color: rgb(153 27 27 / 1);
}

.border-s-red-800\/15 {
  border-inline-start-color: rgb(153 27 27 / 0.15);
}

.border-s-red-800\/20 {
  border-inline-start-color: rgb(153 27 27 / 0.2);
}

.border-s-red-800\/25 {
  border-inline-start-color: rgb(153 27 27 / 0.25);
}

.border-s-red-800\/30 {
  border-inline-start-color: rgb(153 27 27 / 0.3);
}

.border-s-red-800\/35 {
  border-inline-start-color: rgb(153 27 27 / 0.35);
}

.border-s-red-800\/40 {
  border-inline-start-color: rgb(153 27 27 / 0.4);
}

.border-s-red-800\/45 {
  border-inline-start-color: rgb(153 27 27 / 0.45);
}

.border-s-red-800\/5 {
  border-inline-start-color: rgb(153 27 27 / 0.05);
}

.border-s-red-800\/50 {
  border-inline-start-color: rgb(153 27 27 / 0.5);
}

.border-s-red-800\/55 {
  border-inline-start-color: rgb(153 27 27 / 0.55);
}

.border-s-red-800\/60 {
  border-inline-start-color: rgb(153 27 27 / 0.6);
}

.border-s-red-800\/65 {
  border-inline-start-color: rgb(153 27 27 / 0.65);
}

.border-s-red-800\/70 {
  border-inline-start-color: rgb(153 27 27 / 0.7);
}

.border-s-red-800\/75 {
  border-inline-start-color: rgb(153 27 27 / 0.75);
}

.border-s-red-800\/80 {
  border-inline-start-color: rgb(153 27 27 / 0.8);
}

.border-s-red-800\/85 {
  border-inline-start-color: rgb(153 27 27 / 0.85);
}

.border-s-red-800\/90 {
  border-inline-start-color: rgb(153 27 27 / 0.9);
}

.border-s-red-800\/95 {
  border-inline-start-color: rgb(153 27 27 / 0.95);
}

.border-s-red-900 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(127 29 29 / var(--tw-border-opacity, 1));
}

.border-s-red-900\/0 {
  border-inline-start-color: rgb(127 29 29 / 0);
}

.border-s-red-900\/10 {
  border-inline-start-color: rgb(127 29 29 / 0.1);
}

.border-s-red-900\/100 {
  border-inline-start-color: rgb(127 29 29 / 1);
}

.border-s-red-900\/15 {
  border-inline-start-color: rgb(127 29 29 / 0.15);
}

.border-s-red-900\/20 {
  border-inline-start-color: rgb(127 29 29 / 0.2);
}

.border-s-red-900\/25 {
  border-inline-start-color: rgb(127 29 29 / 0.25);
}

.border-s-red-900\/30 {
  border-inline-start-color: rgb(127 29 29 / 0.3);
}

.border-s-red-900\/35 {
  border-inline-start-color: rgb(127 29 29 / 0.35);
}

.border-s-red-900\/40 {
  border-inline-start-color: rgb(127 29 29 / 0.4);
}

.border-s-red-900\/45 {
  border-inline-start-color: rgb(127 29 29 / 0.45);
}

.border-s-red-900\/5 {
  border-inline-start-color: rgb(127 29 29 / 0.05);
}

.border-s-red-900\/50 {
  border-inline-start-color: rgb(127 29 29 / 0.5);
}

.border-s-red-900\/55 {
  border-inline-start-color: rgb(127 29 29 / 0.55);
}

.border-s-red-900\/60 {
  border-inline-start-color: rgb(127 29 29 / 0.6);
}

.border-s-red-900\/65 {
  border-inline-start-color: rgb(127 29 29 / 0.65);
}

.border-s-red-900\/70 {
  border-inline-start-color: rgb(127 29 29 / 0.7);
}

.border-s-red-900\/75 {
  border-inline-start-color: rgb(127 29 29 / 0.75);
}

.border-s-red-900\/80 {
  border-inline-start-color: rgb(127 29 29 / 0.8);
}

.border-s-red-900\/85 {
  border-inline-start-color: rgb(127 29 29 / 0.85);
}

.border-s-red-900\/90 {
  border-inline-start-color: rgb(127 29 29 / 0.9);
}

.border-s-red-900\/95 {
  border-inline-start-color: rgb(127 29 29 / 0.95);
}

.border-s-red-950 {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(69 10 10 / var(--tw-border-opacity, 1));
}

.border-s-red-950\/0 {
  border-inline-start-color: rgb(69 10 10 / 0);
}

.border-s-red-950\/10 {
  border-inline-start-color: rgb(69 10 10 / 0.1);
}

.border-s-red-950\/100 {
  border-inline-start-color: rgb(69 10 10 / 1);
}

.border-s-red-950\/15 {
  border-inline-start-color: rgb(69 10 10 / 0.15);
}

.border-s-red-950\/20 {
  border-inline-start-color: rgb(69 10 10 / 0.2);
}

.border-s-red-950\/25 {
  border-inline-start-color: rgb(69 10 10 / 0.25);
}

.border-s-red-950\/30 {
  border-inline-start-color: rgb(69 10 10 / 0.3);
}

.border-s-red-950\/35 {
  border-inline-start-color: rgb(69 10 10 / 0.35);
}

.border-s-red-950\/40 {
  border-inline-start-color: rgb(69 10 10 / 0.4);
}

.border-s-red-950\/45 {
  border-inline-start-color: rgb(69 10 10 / 0.45);
}

.border-s-red-950\/5 {
  border-inline-start-color: rgb(69 10 10 / 0.05);
}

.border-s-red-950\/50 {
  border-inline-start-color: rgb(69 10 10 / 0.5);
}

.border-s-red-950\/55 {
  border-inline-start-color: rgb(69 10 10 / 0.55);
}

.border-s-red-950\/60 {
  border-inline-start-color: rgb(69 10 10 / 0.6);
}

.border-s-red-950\/65 {
  border-inline-start-color: rgb(69 10 10 / 0.65);
}

.border-s-red-950\/70 {
  border-inline-start-color: rgb(69 10 10 / 0.7);
}

.border-s-red-950\/75 {
  border-inline-start-color: rgb(69 10 10 / 0.75);
}

.border-s-red-950\/80 {
  border-inline-start-color: rgb(69 10 10 / 0.8);
}

.border-s-red-950\/85 {
  border-inline-start-color: rgb(69 10 10 / 0.85);
}

.border-s-red-950\/90 {
  border-inline-start-color: rgb(69 10 10 / 0.9);
}

.border-s-red-950\/95 {
  border-inline-start-color: rgb(69 10 10 / 0.95);
}

.border-s-transparent {
  border-inline-start-color: transparent;
}

.border-s-transparent\/0 {
  border-inline-start-color: rgb(0 0 0 / 0);
}

.border-s-transparent\/10 {
  border-inline-start-color: rgb(0 0 0 / 0.1);
}

.border-s-transparent\/100 {
  border-inline-start-color: rgb(0 0 0 / 1);
}

.border-s-transparent\/15 {
  border-inline-start-color: rgb(0 0 0 / 0.15);
}

.border-s-transparent\/20 {
  border-inline-start-color: rgb(0 0 0 / 0.2);
}

.border-s-transparent\/25 {
  border-inline-start-color: rgb(0 0 0 / 0.25);
}

.border-s-transparent\/30 {
  border-inline-start-color: rgb(0 0 0 / 0.3);
}

.border-s-transparent\/35 {
  border-inline-start-color: rgb(0 0 0 / 0.35);
}

.border-s-transparent\/40 {
  border-inline-start-color: rgb(0 0 0 / 0.4);
}

.border-s-transparent\/45 {
  border-inline-start-color: rgb(0 0 0 / 0.45);
}

.border-s-transparent\/5 {
  border-inline-start-color: rgb(0 0 0 / 0.05);
}

.border-s-transparent\/50 {
  border-inline-start-color: rgb(0 0 0 / 0.5);
}

.border-s-transparent\/55 {
  border-inline-start-color: rgb(0 0 0 / 0.55);
}

.border-s-transparent\/60 {
  border-inline-start-color: rgb(0 0 0 / 0.6);
}

.border-s-transparent\/65 {
  border-inline-start-color: rgb(0 0 0 / 0.65);
}

.border-s-transparent\/70 {
  border-inline-start-color: rgb(0 0 0 / 0.7);
}

.border-s-transparent\/75 {
  border-inline-start-color: rgb(0 0 0 / 0.75);
}

.border-s-transparent\/80 {
  border-inline-start-color: rgb(0 0 0 / 0.8);
}

.border-s-transparent\/85 {
  border-inline-start-color: rgb(0 0 0 / 0.85);
}

.border-s-transparent\/90 {
  border-inline-start-color: rgb(0 0 0 / 0.9);
}

.border-s-transparent\/95 {
  border-inline-start-color: rgb(0 0 0 / 0.95);
}

.border-s-white {
  --tw-border-opacity: 1;
  border-inline-start-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}

.border-s-white\/0 {
  border-inline-start-color: rgb(255 255 255 / 0);
}

.border-s-white\/10 {
  border-inline-start-color: rgb(255 255 255 / 0.1);
}

.border-s-white\/100 {
  border-inline-start-color: rgb(255 255 255 / 1);
}

.border-s-white\/15 {
  border-inline-start-color: rgb(255 255 255 / 0.15);
}

.border-s-white\/20 {
  border-inline-start-color: rgb(255 255 255 / 0.2);
}

.border-s-white\/25 {
  border-inline-start-color: rgb(255 255 255 / 0.25);
}

.border-s-white\/30 {
  border-inline-start-color: rgb(255 255 255 / 0.3);
}

.border-s-white\/35 {
  border-inline-start-color: rgb(255 255 255 / 0.35);
}

.border-s-white\/40 {
  border-inline-start-color: rgb(255 255 255 / 0.4);
}

.border-s-white\/45 {
  border-inline-start-color: rgb(255 255 255 / 0.45);
}

.border-s-white\/5 {
  border-inline-start-color: rgb(255 255 255 / 0.05);
}

.border-s-white\/50 {
  border-inline-start-color: rgb(255 255 255 / 0.5);
}

.border-s-white\/55 {
  border-inline-start-color: rgb(255 255 255 / 0.55);
}

.border-s-white\/60 {
  border-inline-start-color: rgb(255 255 255 / 0.6);
}

.border-s-white\/65 {
  border-inline-start-color: rgb(255 255 255 / 0.65);
}

.border-s-white\/70 {
  border-inline-start-color: rgb(255 255 255 / 0.7);
}

.border-s-white\/75 {
  border-inline-start-color: rgb(255 255 255 / 0.75);
}

.border-s-white\/80 {
  border-inline-start-color: rgb(255 255 255 / 0.8);
}

.border-s-white\/85 {
  border-inline-start-color: rgb(255 255 255 / 0.85);
}

.border-s-white\/90 {
  border-inline-start-color: rgb(255 255 255 / 0.9);
}

.border-s-white\/95 {
  border-inline-start-color: rgb(255 255 255 / 0.95);
}

.border-t-black {
  --tw-border-opacity: 1;
  border-top-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
}

.border-t-black\/0 {
  border-top-color: rgb(0 0 0 / 0);
}

.border-t-black\/10 {
  border-top-color: rgb(0 0 0 / 0.1);
}

.border-t-black\/100 {
  border-top-color: rgb(0 0 0 / 1);
}

.border-t-black\/15 {
  border-top-color: rgb(0 0 0 / 0.15);
}

.border-t-black\/20 {
  border-top-color: rgb(0 0 0 / 0.2);
}

.border-t-black\/25 {
  border-top-color: rgb(0 0 0 / 0.25);
}

.border-t-black\/30 {
  border-top-color: rgb(0 0 0 / 0.3);
}

.border-t-black\/35 {
  border-top-color: rgb(0 0 0 / 0.35);
}

.border-t-black\/40 {
  border-top-color: rgb(0 0 0 / 0.4);
}

.border-t-black\/45 {
  border-top-color: rgb(0 0 0 / 0.45);
}

.border-t-black\/5 {
  border-top-color: rgb(0 0 0 / 0.05);
}

.border-t-black\/50 {
  border-top-color: rgb(0 0 0 / 0.5);
}

.border-t-black\/55 {
  border-top-color: rgb(0 0 0 / 0.55);
}

.border-t-black\/60 {
  border-top-color: rgb(0 0 0 / 0.6);
}

.border-t-black\/65 {
  border-top-color: rgb(0 0 0 / 0.65);
}

.border-t-black\/70 {
  border-top-color: rgb(0 0 0 / 0.7);
}

.border-t-black\/75 {
  border-top-color: rgb(0 0 0 / 0.75);
}

.border-t-black\/80 {
  border-top-color: rgb(0 0 0 / 0.8);
}

.border-t-black\/85 {
  border-top-color: rgb(0 0 0 / 0.85);
}

.border-t-black\/90 {
  border-top-color: rgb(0 0 0 / 0.9);
}

.border-t-black\/95 {
  border-top-color: rgb(0 0 0 / 0.95);
}

.border-t-blue-100 {
  --tw-border-opacity: 1;
  border-top-color: rgb(219 234 254 / var(--tw-border-opacity, 1));
}

.border-t-blue-100\/0 {
  border-top-color: rgb(219 234 254 / 0);
}

.border-t-blue-100\/10 {
  border-top-color: rgb(219 234 254 / 0.1);
}

.border-t-blue-100\/100 {
  border-top-color: rgb(219 234 254 / 1);
}

.border-t-blue-100\/15 {
  border-top-color: rgb(219 234 254 / 0.15);
}

.border-t-blue-100\/20 {
  border-top-color: rgb(219 234 254 / 0.2);
}

.border-t-blue-100\/25 {
  border-top-color: rgb(219 234 254 / 0.25);
}

.border-t-blue-100\/30 {
  border-top-color: rgb(219 234 254 / 0.3);
}

.border-t-blue-100\/35 {
  border-top-color: rgb(219 234 254 / 0.35);
}

.border-t-blue-100\/40 {
  border-top-color: rgb(219 234 254 / 0.4);
}

.border-t-blue-100\/45 {
  border-top-color: rgb(219 234 254 / 0.45);
}

.border-t-blue-100\/5 {
  border-top-color: rgb(219 234 254 / 0.05);
}

.border-t-blue-100\/50 {
  border-top-color: rgb(219 234 254 / 0.5);
}

.border-t-blue-100\/55 {
  border-top-color: rgb(219 234 254 / 0.55);
}

.border-t-blue-100\/60 {
  border-top-color: rgb(219 234 254 / 0.6);
}

.border-t-blue-100\/65 {
  border-top-color: rgb(219 234 254 / 0.65);
}

.border-t-blue-100\/70 {
  border-top-color: rgb(219 234 254 / 0.7);
}

.border-t-blue-100\/75 {
  border-top-color: rgb(219 234 254 / 0.75);
}

.border-t-blue-100\/80 {
  border-top-color: rgb(219 234 254 / 0.8);
}

.border-t-blue-100\/85 {
  border-top-color: rgb(219 234 254 / 0.85);
}

.border-t-blue-100\/90 {
  border-top-color: rgb(219 234 254 / 0.9);
}

.border-t-blue-100\/95 {
  border-top-color: rgb(219 234 254 / 0.95);
}

.border-t-blue-200 {
  --tw-border-opacity: 1;
  border-top-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
}

.border-t-blue-200\/0 {
  border-top-color: rgb(191 219 254 / 0);
}

.border-t-blue-200\/10 {
  border-top-color: rgb(191 219 254 / 0.1);
}

.border-t-blue-200\/100 {
  border-top-color: rgb(191 219 254 / 1);
}

.border-t-blue-200\/15 {
  border-top-color: rgb(191 219 254 / 0.15);
}

.border-t-blue-200\/20 {
  border-top-color: rgb(191 219 254 / 0.2);
}

.border-t-blue-200\/25 {
  border-top-color: rgb(191 219 254 / 0.25);
}

.border-t-blue-200\/30 {
  border-top-color: rgb(191 219 254 / 0.3);
}

.border-t-blue-200\/35 {
  border-top-color: rgb(191 219 254 / 0.35);
}

.border-t-blue-200\/40 {
  border-top-color: rgb(191 219 254 / 0.4);
}

.border-t-blue-200\/45 {
  border-top-color: rgb(191 219 254 / 0.45);
}

.border-t-blue-200\/5 {
  border-top-color: rgb(191 219 254 / 0.05);
}

.border-t-blue-200\/50 {
  border-top-color: rgb(191 219 254 / 0.5);
}

.border-t-blue-200\/55 {
  border-top-color: rgb(191 219 254 / 0.55);
}

.border-t-blue-200\/60 {
  border-top-color: rgb(191 219 254 / 0.6);
}

.border-t-blue-200\/65 {
  border-top-color: rgb(191 219 254 / 0.65);
}

.border-t-blue-200\/70 {
  border-top-color: rgb(191 219 254 / 0.7);
}

.border-t-blue-200\/75 {
  border-top-color: rgb(191 219 254 / 0.75);
}

.border-t-blue-200\/80 {
  border-top-color: rgb(191 219 254 / 0.8);
}

.border-t-blue-200\/85 {
  border-top-color: rgb(191 219 254 / 0.85);
}

.border-t-blue-200\/90 {
  border-top-color: rgb(191 219 254 / 0.9);
}

.border-t-blue-200\/95 {
  border-top-color: rgb(191 219 254 / 0.95);
}

.border-t-blue-300 {
  --tw-border-opacity: 1;
  border-top-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
}

.border-t-blue-300\/0 {
  border-top-color: rgb(147 197 253 / 0);
}

.border-t-blue-300\/10 {
  border-top-color: rgb(147 197 253 / 0.1);
}

.border-t-blue-300\/100 {
  border-top-color: rgb(147 197 253 / 1);
}

.border-t-blue-300\/15 {
  border-top-color: rgb(147 197 253 / 0.15);
}

.border-t-blue-300\/20 {
  border-top-color: rgb(147 197 253 / 0.2);
}

.border-t-blue-300\/25 {
  border-top-color: rgb(147 197 253 / 0.25);
}

.border-t-blue-300\/30 {
  border-top-color: rgb(147 197 253 / 0.3);
}

.border-t-blue-300\/35 {
  border-top-color: rgb(147 197 253 / 0.35);
}

.border-t-blue-300\/40 {
  border-top-color: rgb(147 197 253 / 0.4);
}

.border-t-blue-300\/45 {
  border-top-color: rgb(147 197 253 / 0.45);
}

.border-t-blue-300\/5 {
  border-top-color: rgb(147 197 253 / 0.05);
}

.border-t-blue-300\/50 {
  border-top-color: rgb(147 197 253 / 0.5);
}

.border-t-blue-300\/55 {
  border-top-color: rgb(147 197 253 / 0.55);
}

.border-t-blue-300\/60 {
  border-top-color: rgb(147 197 253 / 0.6);
}

.border-t-blue-300\/65 {
  border-top-color: rgb(147 197 253 / 0.65);
}

.border-t-blue-300\/70 {
  border-top-color: rgb(147 197 253 / 0.7);
}

.border-t-blue-300\/75 {
  border-top-color: rgb(147 197 253 / 0.75);
}

.border-t-blue-300\/80 {
  border-top-color: rgb(147 197 253 / 0.8);
}

.border-t-blue-300\/85 {
  border-top-color: rgb(147 197 253 / 0.85);
}

.border-t-blue-300\/90 {
  border-top-color: rgb(147 197 253 / 0.9);
}

.border-t-blue-300\/95 {
  border-top-color: rgb(147 197 253 / 0.95);
}

.border-t-blue-400 {
  --tw-border-opacity: 1;
  border-top-color: rgb(96 165 250 / var(--tw-border-opacity, 1));
}

.border-t-blue-400\/0 {
  border-top-color: rgb(96 165 250 / 0);
}

.border-t-blue-400\/10 {
  border-top-color: rgb(96 165 250 / 0.1);
}

.border-t-blue-400\/100 {
  border-top-color: rgb(96 165 250 / 1);
}

.border-t-blue-400\/15 {
  border-top-color: rgb(96 165 250 / 0.15);
}

.border-t-blue-400\/20 {
  border-top-color: rgb(96 165 250 / 0.2);
}

.border-t-blue-400\/25 {
  border-top-color: rgb(96 165 250 / 0.25);
}

.border-t-blue-400\/30 {
  border-top-color: rgb(96 165 250 / 0.3);
}

.border-t-blue-400\/35 {
  border-top-color: rgb(96 165 250 / 0.35);
}

.border-t-blue-400\/40 {
  border-top-color: rgb(96 165 250 / 0.4);
}

.border-t-blue-400\/45 {
  border-top-color: rgb(96 165 250 / 0.45);
}

.border-t-blue-400\/5 {
  border-top-color: rgb(96 165 250 / 0.05);
}

.border-t-blue-400\/50 {
  border-top-color: rgb(96 165 250 / 0.5);
}

.border-t-blue-400\/55 {
  border-top-color: rgb(96 165 250 / 0.55);
}

.border-t-blue-400\/60 {
  border-top-color: rgb(96 165 250 / 0.6);
}

.border-t-blue-400\/65 {
  border-top-color: rgb(96 165 250 / 0.65);
}

.border-t-blue-400\/70 {
  border-top-color: rgb(96 165 250 / 0.7);
}

.border-t-blue-400\/75 {
  border-top-color: rgb(96 165 250 / 0.75);
}

.border-t-blue-400\/80 {
  border-top-color: rgb(96 165 250 / 0.8);
}

.border-t-blue-400\/85 {
  border-top-color: rgb(96 165 250 / 0.85);
}

.border-t-blue-400\/90 {
  border-top-color: rgb(96 165 250 / 0.9);
}

.border-t-blue-400\/95 {
  border-top-color: rgb(96 165 250 / 0.95);
}

.border-t-blue-50 {
  --tw-border-opacity: 1;
  border-top-color: rgb(239 246 255 / var(--tw-border-opacity, 1));
}

.border-t-blue-50\/0 {
  border-top-color: rgb(239 246 255 / 0);
}

.border-t-blue-50\/10 {
  border-top-color: rgb(239 246 255 / 0.1);
}

.border-t-blue-50\/100 {
  border-top-color: rgb(239 246 255 / 1);
}

.border-t-blue-50\/15 {
  border-top-color: rgb(239 246 255 / 0.15);
}

.border-t-blue-50\/20 {
  border-top-color: rgb(239 246 255 / 0.2);
}

.border-t-blue-50\/25 {
  border-top-color: rgb(239 246 255 / 0.25);
}

.border-t-blue-50\/30 {
  border-top-color: rgb(239 246 255 / 0.3);
}

.border-t-blue-50\/35 {
  border-top-color: rgb(239 246 255 / 0.35);
}

.border-t-blue-50\/40 {
  border-top-color: rgb(239 246 255 / 0.4);
}

.border-t-blue-50\/45 {
  border-top-color: rgb(239 246 255 / 0.45);
}

.border-t-blue-50\/5 {
  border-top-color: rgb(239 246 255 / 0.05);
}

.border-t-blue-50\/50 {
  border-top-color: rgb(239 246 255 / 0.5);
}

.border-t-blue-50\/55 {
  border-top-color: rgb(239 246 255 / 0.55);
}

.border-t-blue-50\/60 {
  border-top-color: rgb(239 246 255 / 0.6);
}

.border-t-blue-50\/65 {
  border-top-color: rgb(239 246 255 / 0.65);
}

.border-t-blue-50\/70 {
  border-top-color: rgb(239 246 255 / 0.7);
}

.border-t-blue-50\/75 {
  border-top-color: rgb(239 246 255 / 0.75);
}

.border-t-blue-50\/80 {
  border-top-color: rgb(239 246 255 / 0.8);
}

.border-t-blue-50\/85 {
  border-top-color: rgb(239 246 255 / 0.85);
}

.border-t-blue-50\/90 {
  border-top-color: rgb(239 246 255 / 0.9);
}

.border-t-blue-50\/95 {
  border-top-color: rgb(239 246 255 / 0.95);
}

.border-t-blue-500 {
  --tw-border-opacity: 1;
  border-top-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}

.border-t-blue-500\/0 {
  border-top-color: rgb(59 130 246 / 0);
}

.border-t-blue-500\/10 {
  border-top-color: rgb(59 130 246 / 0.1);
}

.border-t-blue-500\/100 {
  border-top-color: rgb(59 130 246 / 1);
}

.border-t-blue-500\/15 {
  border-top-color: rgb(59 130 246 / 0.15);
}

.border-t-blue-500\/20 {
  border-top-color: rgb(59 130 246 / 0.2);
}

.border-t-blue-500\/25 {
  border-top-color: rgb(59 130 246 / 0.25);
}

.border-t-blue-500\/30 {
  border-top-color: rgb(59 130 246 / 0.3);
}

.border-t-blue-500\/35 {
  border-top-color: rgb(59 130 246 / 0.35);
}

.border-t-blue-500\/40 {
  border-top-color: rgb(59 130 246 / 0.4);
}

.border-t-blue-500\/45 {
  border-top-color: rgb(59 130 246 / 0.45);
}

.border-t-blue-500\/5 {
  border-top-color: rgb(59 130 246 / 0.05);
}

.border-t-blue-500\/50 {
  border-top-color: rgb(59 130 246 / 0.5);
}

.border-t-blue-500\/55 {
  border-top-color: rgb(59 130 246 / 0.55);
}

.border-t-blue-500\/60 {
  border-top-color: rgb(59 130 246 / 0.6);
}

.border-t-blue-500\/65 {
  border-top-color: rgb(59 130 246 / 0.65);
}

.border-t-blue-500\/70 {
  border-top-color: rgb(59 130 246 / 0.7);
}

.border-t-blue-500\/75 {
  border-top-color: rgb(59 130 246 / 0.75);
}

.border-t-blue-500\/80 {
  border-top-color: rgb(59 130 246 / 0.8);
}

.border-t-blue-500\/85 {
  border-top-color: rgb(59 130 246 / 0.85);
}

.border-t-blue-500\/90 {
  border-top-color: rgb(59 130 246 / 0.9);
}

.border-t-blue-500\/95 {
  border-top-color: rgb(59 130 246 / 0.95);
}

.border-t-blue-600 {
  --tw-border-opacity: 1;
  border-top-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}

.border-t-blue-600\/0 {
  border-top-color: rgb(37 99 235 / 0);
}

.border-t-blue-600\/10 {
  border-top-color: rgb(37 99 235 / 0.1);
}

.border-t-blue-600\/100 {
  border-top-color: rgb(37 99 235 / 1);
}

.border-t-blue-600\/15 {
  border-top-color: rgb(37 99 235 / 0.15);
}

.border-t-blue-600\/20 {
  border-top-color: rgb(37 99 235 / 0.2);
}

.border-t-blue-600\/25 {
  border-top-color: rgb(37 99 235 / 0.25);
}

.border-t-blue-600\/30 {
  border-top-color: rgb(37 99 235 / 0.3);
}

.border-t-blue-600\/35 {
  border-top-color: rgb(37 99 235 / 0.35);
}

.border-t-blue-600\/40 {
  border-top-color: rgb(37 99 235 / 0.4);
}

.border-t-blue-600\/45 {
  border-top-color: rgb(37 99 235 / 0.45);
}

.border-t-blue-600\/5 {
  border-top-color: rgb(37 99 235 / 0.05);
}

.border-t-blue-600\/50 {
  border-top-color: rgb(37 99 235 / 0.5);
}

.border-t-blue-600\/55 {
  border-top-color: rgb(37 99 235 / 0.55);
}

.border-t-blue-600\/60 {
  border-top-color: rgb(37 99 235 / 0.6);
}

.border-t-blue-600\/65 {
  border-top-color: rgb(37 99 235 / 0.65);
}

.border-t-blue-600\/70 {
  border-top-color: rgb(37 99 235 / 0.7);
}

.border-t-blue-600\/75 {
  border-top-color: rgb(37 99 235 / 0.75);
}

.border-t-blue-600\/80 {
  border-top-color: rgb(37 99 235 / 0.8);
}

.border-t-blue-600\/85 {
  border-top-color: rgb(37 99 235 / 0.85);
}

.border-t-blue-600\/90 {
  border-top-color: rgb(37 99 235 / 0.9);
}

.border-t-blue-600\/95 {
  border-top-color: rgb(37 99 235 / 0.95);
}

.border-t-blue-700 {
  --tw-border-opacity: 1;
  border-top-color: rgb(29 78 216 / var(--tw-border-opacity, 1));
}

.border-t-blue-700\/0 {
  border-top-color: rgb(29 78 216 / 0);
}

.border-t-blue-700\/10 {
  border-top-color: rgb(29 78 216 / 0.1);
}

.border-t-blue-700\/100 {
  border-top-color: rgb(29 78 216 / 1);
}

.border-t-blue-700\/15 {
  border-top-color: rgb(29 78 216 / 0.15);
}

.border-t-blue-700\/20 {
  border-top-color: rgb(29 78 216 / 0.2);
}

.border-t-blue-700\/25 {
  border-top-color: rgb(29 78 216 / 0.25);
}

.border-t-blue-700\/30 {
  border-top-color: rgb(29 78 216 / 0.3);
}

.border-t-blue-700\/35 {
  border-top-color: rgb(29 78 216 / 0.35);
}

.border-t-blue-700\/40 {
  border-top-color: rgb(29 78 216 / 0.4);
}

.border-t-blue-700\/45 {
  border-top-color: rgb(29 78 216 / 0.45);
}

.border-t-blue-700\/5 {
  border-top-color: rgb(29 78 216 / 0.05);
}

.border-t-blue-700\/50 {
  border-top-color: rgb(29 78 216 / 0.5);
}

.border-t-blue-700\/55 {
  border-top-color: rgb(29 78 216 / 0.55);
}

.border-t-blue-700\/60 {
  border-top-color: rgb(29 78 216 / 0.6);
}

.border-t-blue-700\/65 {
  border-top-color: rgb(29 78 216 / 0.65);
}

.border-t-blue-700\/70 {
  border-top-color: rgb(29 78 216 / 0.7);
}

.border-t-blue-700\/75 {
  border-top-color: rgb(29 78 216 / 0.75);
}

.border-t-blue-700\/80 {
  border-top-color: rgb(29 78 216 / 0.8);
}

.border-t-blue-700\/85 {
  border-top-color: rgb(29 78 216 / 0.85);
}

.border-t-blue-700\/90 {
  border-top-color: rgb(29 78 216 / 0.9);
}

.border-t-blue-700\/95 {
  border-top-color: rgb(29 78 216 / 0.95);
}

.border-t-blue-800 {
  --tw-border-opacity: 1;
  border-top-color: rgb(30 64 175 / var(--tw-border-opacity, 1));
}

.border-t-blue-800\/0 {
  border-top-color: rgb(30 64 175 / 0);
}

.border-t-blue-800\/10 {
  border-top-color: rgb(30 64 175 / 0.1);
}

.border-t-blue-800\/100 {
  border-top-color: rgb(30 64 175 / 1);
}

.border-t-blue-800\/15 {
  border-top-color: rgb(30 64 175 / 0.15);
}

.border-t-blue-800\/20 {
  border-top-color: rgb(30 64 175 / 0.2);
}

.border-t-blue-800\/25 {
  border-top-color: rgb(30 64 175 / 0.25);
}

.border-t-blue-800\/30 {
  border-top-color: rgb(30 64 175 / 0.3);
}

.border-t-blue-800\/35 {
  border-top-color: rgb(30 64 175 / 0.35);
}

.border-t-blue-800\/40 {
  border-top-color: rgb(30 64 175 / 0.4);
}

.border-t-blue-800\/45 {
  border-top-color: rgb(30 64 175 / 0.45);
}

.border-t-blue-800\/5 {
  border-top-color: rgb(30 64 175 / 0.05);
}

.border-t-blue-800\/50 {
  border-top-color: rgb(30 64 175 / 0.5);
}

.border-t-blue-800\/55 {
  border-top-color: rgb(30 64 175 / 0.55);
}

.border-t-blue-800\/60 {
  border-top-color: rgb(30 64 175 / 0.6);
}

.border-t-blue-800\/65 {
  border-top-color: rgb(30 64 175 / 0.65);
}

.border-t-blue-800\/70 {
  border-top-color: rgb(30 64 175 / 0.7);
}

.border-t-blue-800\/75 {
  border-top-color: rgb(30 64 175 / 0.75);
}

.border-t-blue-800\/80 {
  border-top-color: rgb(30 64 175 / 0.8);
}

.border-t-blue-800\/85 {
  border-top-color: rgb(30 64 175 / 0.85);
}

.border-t-blue-800\/90 {
  border-top-color: rgb(30 64 175 / 0.9);
}

.border-t-blue-800\/95 {
  border-top-color: rgb(30 64 175 / 0.95);
}

.border-t-blue-900 {
  --tw-border-opacity: 1;
  border-top-color: rgb(30 58 138 / var(--tw-border-opacity, 1));
}

.border-t-blue-900\/0 {
  border-top-color: rgb(30 58 138 / 0);
}

.border-t-blue-900\/10 {
  border-top-color: rgb(30 58 138 / 0.1);
}

.border-t-blue-900\/100 {
  border-top-color: rgb(30 58 138 / 1);
}

.border-t-blue-900\/15 {
  border-top-color: rgb(30 58 138 / 0.15);
}

.border-t-blue-900\/20 {
  border-top-color: rgb(30 58 138 / 0.2);
}

.border-t-blue-900\/25 {
  border-top-color: rgb(30 58 138 / 0.25);
}

.border-t-blue-900\/30 {
  border-top-color: rgb(30 58 138 / 0.3);
}

.border-t-blue-900\/35 {
  border-top-color: rgb(30 58 138 / 0.35);
}

.border-t-blue-900\/40 {
  border-top-color: rgb(30 58 138 / 0.4);
}

.border-t-blue-900\/45 {
  border-top-color: rgb(30 58 138 / 0.45);
}

.border-t-blue-900\/5 {
  border-top-color: rgb(30 58 138 / 0.05);
}

.border-t-blue-900\/50 {
  border-top-color: rgb(30 58 138 / 0.5);
}

.border-t-blue-900\/55 {
  border-top-color: rgb(30 58 138 / 0.55);
}

.border-t-blue-900\/60 {
  border-top-color: rgb(30 58 138 / 0.6);
}

.border-t-blue-900\/65 {
  border-top-color: rgb(30 58 138 / 0.65);
}

.border-t-blue-900\/70 {
  border-top-color: rgb(30 58 138 / 0.7);
}

.border-t-blue-900\/75 {
  border-top-color: rgb(30 58 138 / 0.75);
}

.border-t-blue-900\/80 {
  border-top-color: rgb(30 58 138 / 0.8);
}

.border-t-blue-900\/85 {
  border-top-color: rgb(30 58 138 / 0.85);
}

.border-t-blue-900\/90 {
  border-top-color: rgb(30 58 138 / 0.9);
}

.border-t-blue-900\/95 {
  border-top-color: rgb(30 58 138 / 0.95);
}

.border-t-blue-950 {
  --tw-border-opacity: 1;
  border-top-color: rgb(23 37 84 / var(--tw-border-opacity, 1));
}

.border-t-blue-950\/0 {
  border-top-color: rgb(23 37 84 / 0);
}

.border-t-blue-950\/10 {
  border-top-color: rgb(23 37 84 / 0.1);
}

.border-t-blue-950\/100 {
  border-top-color: rgb(23 37 84 / 1);
}

.border-t-blue-950\/15 {
  border-top-color: rgb(23 37 84 / 0.15);
}

.border-t-blue-950\/20 {
  border-top-color: rgb(23 37 84 / 0.2);
}

.border-t-blue-950\/25 {
  border-top-color: rgb(23 37 84 / 0.25);
}

.border-t-blue-950\/30 {
  border-top-color: rgb(23 37 84 / 0.3);
}

.border-t-blue-950\/35 {
  border-top-color: rgb(23 37 84 / 0.35);
}

.border-t-blue-950\/40 {
  border-top-color: rgb(23 37 84 / 0.4);
}

.border-t-blue-950\/45 {
  border-top-color: rgb(23 37 84 / 0.45);
}

.border-t-blue-950\/5 {
  border-top-color: rgb(23 37 84 / 0.05);
}

.border-t-blue-950\/50 {
  border-top-color: rgb(23 37 84 / 0.5);
}

.border-t-blue-950\/55 {
  border-top-color: rgb(23 37 84 / 0.55);
}

.border-t-blue-950\/60 {
  border-top-color: rgb(23 37 84 / 0.6);
}

.border-t-blue-950\/65 {
  border-top-color: rgb(23 37 84 / 0.65);
}

.border-t-blue-950\/70 {
  border-top-color: rgb(23 37 84 / 0.7);
}

.border-t-blue-950\/75 {
  border-top-color: rgb(23 37 84 / 0.75);
}

.border-t-blue-950\/80 {
  border-top-color: rgb(23 37 84 / 0.8);
}

.border-t-blue-950\/85 {
  border-top-color: rgb(23 37 84 / 0.85);
}

.border-t-blue-950\/90 {
  border-top-color: rgb(23 37 84 / 0.9);
}

.border-t-blue-950\/95 {
  border-top-color: rgb(23 37 84 / 0.95);
}

.border-t-current {
  border-top-color: currentColor;
}

.border-t-eva-blue {
  --tw-border-opacity: 1;
  border-top-color: rgb(26 33 62 / var(--tw-border-opacity, 1));
}

.border-t-eva-blue-appt {
  --tw-border-opacity: 1;
  border-top-color: rgba(52, 137, 207, var(--tw-border-opacity, 1));
}

.border-t-eva-blue-appt\/0 {
  border-top-color: rgba(52, 137, 207, 0);
}

.border-t-eva-blue-appt\/10 {
  border-top-color: rgba(52, 137, 207, 0.1);
}

.border-t-eva-blue-appt\/100 {
  border-top-color: rgba(52, 137, 207, 1);
}

.border-t-eva-blue-appt\/15 {
  border-top-color: rgba(52, 137, 207, 0.15);
}

.border-t-eva-blue-appt\/20 {
  border-top-color: rgba(52, 137, 207, 0.2);
}

.border-t-eva-blue-appt\/25 {
  border-top-color: rgba(52, 137, 207, 0.25);
}

.border-t-eva-blue-appt\/30 {
  border-top-color: rgba(52, 137, 207, 0.3);
}

.border-t-eva-blue-appt\/35 {
  border-top-color: rgba(52, 137, 207, 0.35);
}

.border-t-eva-blue-appt\/40 {
  border-top-color: rgba(52, 137, 207, 0.4);
}

.border-t-eva-blue-appt\/45 {
  border-top-color: rgba(52, 137, 207, 0.45);
}

.border-t-eva-blue-appt\/5 {
  border-top-color: rgba(52, 137, 207, 0.05);
}

.border-t-eva-blue-appt\/50 {
  border-top-color: rgba(52, 137, 207, 0.5);
}

.border-t-eva-blue-appt\/55 {
  border-top-color: rgba(52, 137, 207, 0.55);
}

.border-t-eva-blue-appt\/60 {
  border-top-color: rgba(52, 137, 207, 0.6);
}

.border-t-eva-blue-appt\/65 {
  border-top-color: rgba(52, 137, 207, 0.65);
}

.border-t-eva-blue-appt\/70 {
  border-top-color: rgba(52, 137, 207, 0.7);
}

.border-t-eva-blue-appt\/75 {
  border-top-color: rgba(52, 137, 207, 0.75);
}

.border-t-eva-blue-appt\/80 {
  border-top-color: rgba(52, 137, 207, 0.8);
}

.border-t-eva-blue-appt\/85 {
  border-top-color: rgba(52, 137, 207, 0.85);
}

.border-t-eva-blue-appt\/90 {
  border-top-color: rgba(52, 137, 207, 0.9);
}

.border-t-eva-blue-appt\/95 {
  border-top-color: rgba(52, 137, 207, 0.95);
}

.border-t-eva-blue-gray {
  --tw-border-opacity: 1;
  border-top-color: rgb(117 121 139 / var(--tw-border-opacity, 1));
}

.border-t-eva-blue-gray\/0 {
  border-top-color: rgb(117 121 139 / 0);
}

.border-t-eva-blue-gray\/10 {
  border-top-color: rgb(117 121 139 / 0.1);
}

.border-t-eva-blue-gray\/100 {
  border-top-color: rgb(117 121 139 / 1);
}

.border-t-eva-blue-gray\/15 {
  border-top-color: rgb(117 121 139 / 0.15);
}

.border-t-eva-blue-gray\/20 {
  border-top-color: rgb(117 121 139 / 0.2);
}

.border-t-eva-blue-gray\/25 {
  border-top-color: rgb(117 121 139 / 0.25);
}

.border-t-eva-blue-gray\/30 {
  border-top-color: rgb(117 121 139 / 0.3);
}

.border-t-eva-blue-gray\/35 {
  border-top-color: rgb(117 121 139 / 0.35);
}

.border-t-eva-blue-gray\/40 {
  border-top-color: rgb(117 121 139 / 0.4);
}

.border-t-eva-blue-gray\/45 {
  border-top-color: rgb(117 121 139 / 0.45);
}

.border-t-eva-blue-gray\/5 {
  border-top-color: rgb(117 121 139 / 0.05);
}

.border-t-eva-blue-gray\/50 {
  border-top-color: rgb(117 121 139 / 0.5);
}

.border-t-eva-blue-gray\/55 {
  border-top-color: rgb(117 121 139 / 0.55);
}

.border-t-eva-blue-gray\/60 {
  border-top-color: rgb(117 121 139 / 0.6);
}

.border-t-eva-blue-gray\/65 {
  border-top-color: rgb(117 121 139 / 0.65);
}

.border-t-eva-blue-gray\/70 {
  border-top-color: rgb(117 121 139 / 0.7);
}

.border-t-eva-blue-gray\/75 {
  border-top-color: rgb(117 121 139 / 0.75);
}

.border-t-eva-blue-gray\/80 {
  border-top-color: rgb(117 121 139 / 0.8);
}

.border-t-eva-blue-gray\/85 {
  border-top-color: rgb(117 121 139 / 0.85);
}

.border-t-eva-blue-gray\/90 {
  border-top-color: rgb(117 121 139 / 0.9);
}

.border-t-eva-blue-gray\/95 {
  border-top-color: rgb(117 121 139 / 0.95);
}

.border-t-eva-blue-hv {
  --tw-border-opacity: 1;
  border-top-color: rgb(15 18 31 / var(--tw-border-opacity, 1));
}

.border-t-eva-blue-hv\/0 {
  border-top-color: rgb(15 18 31 / 0);
}

.border-t-eva-blue-hv\/10 {
  border-top-color: rgb(15 18 31 / 0.1);
}

.border-t-eva-blue-hv\/100 {
  border-top-color: rgb(15 18 31 / 1);
}

.border-t-eva-blue-hv\/15 {
  border-top-color: rgb(15 18 31 / 0.15);
}

.border-t-eva-blue-hv\/20 {
  border-top-color: rgb(15 18 31 / 0.2);
}

.border-t-eva-blue-hv\/25 {
  border-top-color: rgb(15 18 31 / 0.25);
}

.border-t-eva-blue-hv\/30 {
  border-top-color: rgb(15 18 31 / 0.3);
}

.border-t-eva-blue-hv\/35 {
  border-top-color: rgb(15 18 31 / 0.35);
}

.border-t-eva-blue-hv\/40 {
  border-top-color: rgb(15 18 31 / 0.4);
}

.border-t-eva-blue-hv\/45 {
  border-top-color: rgb(15 18 31 / 0.45);
}

.border-t-eva-blue-hv\/5 {
  border-top-color: rgb(15 18 31 / 0.05);
}

.border-t-eva-blue-hv\/50 {
  border-top-color: rgb(15 18 31 / 0.5);
}

.border-t-eva-blue-hv\/55 {
  border-top-color: rgb(15 18 31 / 0.55);
}

.border-t-eva-blue-hv\/60 {
  border-top-color: rgb(15 18 31 / 0.6);
}

.border-t-eva-blue-hv\/65 {
  border-top-color: rgb(15 18 31 / 0.65);
}

.border-t-eva-blue-hv\/70 {
  border-top-color: rgb(15 18 31 / 0.7);
}

.border-t-eva-blue-hv\/75 {
  border-top-color: rgb(15 18 31 / 0.75);
}

.border-t-eva-blue-hv\/80 {
  border-top-color: rgb(15 18 31 / 0.8);
}

.border-t-eva-blue-hv\/85 {
  border-top-color: rgb(15 18 31 / 0.85);
}

.border-t-eva-blue-hv\/90 {
  border-top-color: rgb(15 18 31 / 0.9);
}

.border-t-eva-blue-hv\/95 {
  border-top-color: rgb(15 18 31 / 0.95);
}

.border-t-eva-blue-light {
  --tw-border-opacity: 1;
  border-top-color: rgb(48 56 81 / var(--tw-border-opacity, 1));
}

.border-t-eva-blue-light-hv {
  border-top-color: rgba(17,20,30,.3);
}

.border-t-eva-blue-light-hv\/0 {
  border-top-color: rgba(17, 20, 30, 0);
}

.border-t-eva-blue-light-hv\/10 {
  border-top-color: rgba(17, 20, 30, 0.1);
}

.border-t-eva-blue-light-hv\/100 {
  border-top-color: rgba(17, 20, 30, 1);
}

.border-t-eva-blue-light-hv\/15 {
  border-top-color: rgba(17, 20, 30, 0.15);
}

.border-t-eva-blue-light-hv\/20 {
  border-top-color: rgba(17, 20, 30, 0.2);
}

.border-t-eva-blue-light-hv\/25 {
  border-top-color: rgba(17, 20, 30, 0.25);
}

.border-t-eva-blue-light-hv\/30 {
  border-top-color: rgba(17, 20, 30, 0.3);
}

.border-t-eva-blue-light-hv\/35 {
  border-top-color: rgba(17, 20, 30, 0.35);
}

.border-t-eva-blue-light-hv\/40 {
  border-top-color: rgba(17, 20, 30, 0.4);
}

.border-t-eva-blue-light-hv\/45 {
  border-top-color: rgba(17, 20, 30, 0.45);
}

.border-t-eva-blue-light-hv\/5 {
  border-top-color: rgba(17, 20, 30, 0.05);
}

.border-t-eva-blue-light-hv\/50 {
  border-top-color: rgba(17, 20, 30, 0.5);
}

.border-t-eva-blue-light-hv\/55 {
  border-top-color: rgba(17, 20, 30, 0.55);
}

.border-t-eva-blue-light-hv\/60 {
  border-top-color: rgba(17, 20, 30, 0.6);
}

.border-t-eva-blue-light-hv\/65 {
  border-top-color: rgba(17, 20, 30, 0.65);
}

.border-t-eva-blue-light-hv\/70 {
  border-top-color: rgba(17, 20, 30, 0.7);
}

.border-t-eva-blue-light-hv\/75 {
  border-top-color: rgba(17, 20, 30, 0.75);
}

.border-t-eva-blue-light-hv\/80 {
  border-top-color: rgba(17, 20, 30, 0.8);
}

.border-t-eva-blue-light-hv\/85 {
  border-top-color: rgba(17, 20, 30, 0.85);
}

.border-t-eva-blue-light-hv\/90 {
  border-top-color: rgba(17, 20, 30, 0.9);
}

.border-t-eva-blue-light-hv\/95 {
  border-top-color: rgba(17, 20, 30, 0.95);
}

.border-t-eva-blue-light\/0 {
  border-top-color: rgb(48 56 81 / 0);
}

.border-t-eva-blue-light\/10 {
  border-top-color: rgb(48 56 81 / 0.1);
}

.border-t-eva-blue-light\/100 {
  border-top-color: rgb(48 56 81 / 1);
}

.border-t-eva-blue-light\/15 {
  border-top-color: rgb(48 56 81 / 0.15);
}

.border-t-eva-blue-light\/20 {
  border-top-color: rgb(48 56 81 / 0.2);
}

.border-t-eva-blue-light\/25 {
  border-top-color: rgb(48 56 81 / 0.25);
}

.border-t-eva-blue-light\/30 {
  border-top-color: rgb(48 56 81 / 0.3);
}

.border-t-eva-blue-light\/35 {
  border-top-color: rgb(48 56 81 / 0.35);
}

.border-t-eva-blue-light\/40 {
  border-top-color: rgb(48 56 81 / 0.4);
}

.border-t-eva-blue-light\/45 {
  border-top-color: rgb(48 56 81 / 0.45);
}

.border-t-eva-blue-light\/5 {
  border-top-color: rgb(48 56 81 / 0.05);
}

.border-t-eva-blue-light\/50 {
  border-top-color: rgb(48 56 81 / 0.5);
}

.border-t-eva-blue-light\/55 {
  border-top-color: rgb(48 56 81 / 0.55);
}

.border-t-eva-blue-light\/60 {
  border-top-color: rgb(48 56 81 / 0.6);
}

.border-t-eva-blue-light\/65 {
  border-top-color: rgb(48 56 81 / 0.65);
}

.border-t-eva-blue-light\/70 {
  border-top-color: rgb(48 56 81 / 0.7);
}

.border-t-eva-blue-light\/75 {
  border-top-color: rgb(48 56 81 / 0.75);
}

.border-t-eva-blue-light\/80 {
  border-top-color: rgb(48 56 81 / 0.8);
}

.border-t-eva-blue-light\/85 {
  border-top-color: rgb(48 56 81 / 0.85);
}

.border-t-eva-blue-light\/90 {
  border-top-color: rgb(48 56 81 / 0.9);
}

.border-t-eva-blue-light\/95 {
  border-top-color: rgb(48 56 81 / 0.95);
}

.border-t-eva-blue\/0 {
  border-top-color: rgb(26 33 62 / 0);
}

.border-t-eva-blue\/10 {
  border-top-color: rgb(26 33 62 / 0.1);
}

.border-t-eva-blue\/100 {
  border-top-color: rgb(26 33 62 / 1);
}

.border-t-eva-blue\/15 {
  border-top-color: rgb(26 33 62 / 0.15);
}

.border-t-eva-blue\/20 {
  border-top-color: rgb(26 33 62 / 0.2);
}

.border-t-eva-blue\/25 {
  border-top-color: rgb(26 33 62 / 0.25);
}

.border-t-eva-blue\/30 {
  border-top-color: rgb(26 33 62 / 0.3);
}

.border-t-eva-blue\/35 {
  border-top-color: rgb(26 33 62 / 0.35);
}

.border-t-eva-blue\/40 {
  border-top-color: rgb(26 33 62 / 0.4);
}

.border-t-eva-blue\/45 {
  border-top-color: rgb(26 33 62 / 0.45);
}

.border-t-eva-blue\/5 {
  border-top-color: rgb(26 33 62 / 0.05);
}

.border-t-eva-blue\/50 {
  border-top-color: rgb(26 33 62 / 0.5);
}

.border-t-eva-blue\/55 {
  border-top-color: rgb(26 33 62 / 0.55);
}

.border-t-eva-blue\/60 {
  border-top-color: rgb(26 33 62 / 0.6);
}

.border-t-eva-blue\/65 {
  border-top-color: rgb(26 33 62 / 0.65);
}

.border-t-eva-blue\/70 {
  border-top-color: rgb(26 33 62 / 0.7);
}

.border-t-eva-blue\/75 {
  border-top-color: rgb(26 33 62 / 0.75);
}

.border-t-eva-blue\/80 {
  border-top-color: rgb(26 33 62 / 0.8);
}

.border-t-eva-blue\/85 {
  border-top-color: rgb(26 33 62 / 0.85);
}

.border-t-eva-blue\/90 {
  border-top-color: rgb(26 33 62 / 0.9);
}

.border-t-eva-blue\/95 {
  border-top-color: rgb(26 33 62 / 0.95);
}

.border-t-eva-brown-appt {
  border-top-color: rgba(99, 93, 94, 1);
}

.border-t-eva-brown-appt\/0 {
  border-top-color: rgba(99, 93, 94, 0);
}

.border-t-eva-brown-appt\/10 {
  border-top-color: rgba(99, 93, 94, 0.1);
}

.border-t-eva-brown-appt\/100 {
  border-top-color: rgba(99, 93, 94, 1);
}

.border-t-eva-brown-appt\/15 {
  border-top-color: rgba(99, 93, 94, 0.15);
}

.border-t-eva-brown-appt\/20 {
  border-top-color: rgba(99, 93, 94, 0.2);
}

.border-t-eva-brown-appt\/25 {
  border-top-color: rgba(99, 93, 94, 0.25);
}

.border-t-eva-brown-appt\/30 {
  border-top-color: rgba(99, 93, 94, 0.3);
}

.border-t-eva-brown-appt\/35 {
  border-top-color: rgba(99, 93, 94, 0.35);
}

.border-t-eva-brown-appt\/40 {
  border-top-color: rgba(99, 93, 94, 0.4);
}

.border-t-eva-brown-appt\/45 {
  border-top-color: rgba(99, 93, 94, 0.45);
}

.border-t-eva-brown-appt\/5 {
  border-top-color: rgba(99, 93, 94, 0.05);
}

.border-t-eva-brown-appt\/50 {
  border-top-color: rgba(99, 93, 94, 0.5);
}

.border-t-eva-brown-appt\/55 {
  border-top-color: rgba(99, 93, 94, 0.55);
}

.border-t-eva-brown-appt\/60 {
  border-top-color: rgba(99, 93, 94, 0.6);
}

.border-t-eva-brown-appt\/65 {
  border-top-color: rgba(99, 93, 94, 0.65);
}

.border-t-eva-brown-appt\/70 {
  border-top-color: rgba(99, 93, 94, 0.7);
}

.border-t-eva-brown-appt\/75 {
  border-top-color: rgba(99, 93, 94, 0.75);
}

.border-t-eva-brown-appt\/80 {
  border-top-color: rgba(99, 93, 94, 0.8);
}

.border-t-eva-brown-appt\/85 {
  border-top-color: rgba(99, 93, 94, 0.85);
}

.border-t-eva-brown-appt\/90 {
  border-top-color: rgba(99, 93, 94, 0.9);
}

.border-t-eva-brown-appt\/95 {
  border-top-color: rgba(99, 93, 94, 0.95);
}

.border-t-eva-dark-green-appt {
  border-top-color: rgba(102, 188, 130, 1);
}

.border-t-eva-dark-green-appt\/0 {
  border-top-color: rgba(102, 188, 130, 0);
}

.border-t-eva-dark-green-appt\/10 {
  border-top-color: rgba(102, 188, 130, 0.1);
}

.border-t-eva-dark-green-appt\/100 {
  border-top-color: rgba(102, 188, 130, 1);
}

.border-t-eva-dark-green-appt\/15 {
  border-top-color: rgba(102, 188, 130, 0.15);
}

.border-t-eva-dark-green-appt\/20 {
  border-top-color: rgba(102, 188, 130, 0.2);
}

.border-t-eva-dark-green-appt\/25 {
  border-top-color: rgba(102, 188, 130, 0.25);
}

.border-t-eva-dark-green-appt\/30 {
  border-top-color: rgba(102, 188, 130, 0.3);
}

.border-t-eva-dark-green-appt\/35 {
  border-top-color: rgba(102, 188, 130, 0.35);
}

.border-t-eva-dark-green-appt\/40 {
  border-top-color: rgba(102, 188, 130, 0.4);
}

.border-t-eva-dark-green-appt\/45 {
  border-top-color: rgba(102, 188, 130, 0.45);
}

.border-t-eva-dark-green-appt\/5 {
  border-top-color: rgba(102, 188, 130, 0.05);
}

.border-t-eva-dark-green-appt\/50 {
  border-top-color: rgba(102, 188, 130, 0.5);
}

.border-t-eva-dark-green-appt\/55 {
  border-top-color: rgba(102, 188, 130, 0.55);
}

.border-t-eva-dark-green-appt\/60 {
  border-top-color: rgba(102, 188, 130, 0.6);
}

.border-t-eva-dark-green-appt\/65 {
  border-top-color: rgba(102, 188, 130, 0.65);
}

.border-t-eva-dark-green-appt\/70 {
  border-top-color: rgba(102, 188, 130, 0.7);
}

.border-t-eva-dark-green-appt\/75 {
  border-top-color: rgba(102, 188, 130, 0.75);
}

.border-t-eva-dark-green-appt\/80 {
  border-top-color: rgba(102, 188, 130, 0.8);
}

.border-t-eva-dark-green-appt\/85 {
  border-top-color: rgba(102, 188, 130, 0.85);
}

.border-t-eva-dark-green-appt\/90 {
  border-top-color: rgba(102, 188, 130, 0.9);
}

.border-t-eva-dark-green-appt\/95 {
  border-top-color: rgba(102, 188, 130, 0.95);
}

.border-t-eva-dark-red-appt {
  border-top-color: rgba(198, 102, 94, 1);
}

.border-t-eva-dark-red-appt\/0 {
  border-top-color: rgba(198, 102, 94, 0);
}

.border-t-eva-dark-red-appt\/10 {
  border-top-color: rgba(198, 102, 94, 0.1);
}

.border-t-eva-dark-red-appt\/100 {
  border-top-color: rgba(198, 102, 94, 1);
}

.border-t-eva-dark-red-appt\/15 {
  border-top-color: rgba(198, 102, 94, 0.15);
}

.border-t-eva-dark-red-appt\/20 {
  border-top-color: rgba(198, 102, 94, 0.2);
}

.border-t-eva-dark-red-appt\/25 {
  border-top-color: rgba(198, 102, 94, 0.25);
}

.border-t-eva-dark-red-appt\/30 {
  border-top-color: rgba(198, 102, 94, 0.3);
}

.border-t-eva-dark-red-appt\/35 {
  border-top-color: rgba(198, 102, 94, 0.35);
}

.border-t-eva-dark-red-appt\/40 {
  border-top-color: rgba(198, 102, 94, 0.4);
}

.border-t-eva-dark-red-appt\/45 {
  border-top-color: rgba(198, 102, 94, 0.45);
}

.border-t-eva-dark-red-appt\/5 {
  border-top-color: rgba(198, 102, 94, 0.05);
}

.border-t-eva-dark-red-appt\/50 {
  border-top-color: rgba(198, 102, 94, 0.5);
}

.border-t-eva-dark-red-appt\/55 {
  border-top-color: rgba(198, 102, 94, 0.55);
}

.border-t-eva-dark-red-appt\/60 {
  border-top-color: rgba(198, 102, 94, 0.6);
}

.border-t-eva-dark-red-appt\/65 {
  border-top-color: rgba(198, 102, 94, 0.65);
}

.border-t-eva-dark-red-appt\/70 {
  border-top-color: rgba(198, 102, 94, 0.7);
}

.border-t-eva-dark-red-appt\/75 {
  border-top-color: rgba(198, 102, 94, 0.75);
}

.border-t-eva-dark-red-appt\/80 {
  border-top-color: rgba(198, 102, 94, 0.8);
}

.border-t-eva-dark-red-appt\/85 {
  border-top-color: rgba(198, 102, 94, 0.85);
}

.border-t-eva-dark-red-appt\/90 {
  border-top-color: rgba(198, 102, 94, 0.9);
}

.border-t-eva-dark-red-appt\/95 {
  border-top-color: rgba(198, 102, 94, 0.95);
}

.border-t-eva-green {
  --tw-border-opacity: 1;
  border-top-color: rgb(73 181 168 / var(--tw-border-opacity, 1));
}

.border-t-eva-green-appt {
  --tw-border-opacity: 1;
  border-top-color: rgba(128, 215, 109, var(--tw-border-opacity, 1));
}

.border-t-eva-green-appt\/0 {
  border-top-color: rgba(128, 215, 109, 0);
}

.border-t-eva-green-appt\/10 {
  border-top-color: rgba(128, 215, 109, 0.1);
}

.border-t-eva-green-appt\/100 {
  border-top-color: rgba(128, 215, 109, 1);
}

.border-t-eva-green-appt\/15 {
  border-top-color: rgba(128, 215, 109, 0.15);
}

.border-t-eva-green-appt\/20 {
  border-top-color: rgba(128, 215, 109, 0.2);
}

.border-t-eva-green-appt\/25 {
  border-top-color: rgba(128, 215, 109, 0.25);
}

.border-t-eva-green-appt\/30 {
  border-top-color: rgba(128, 215, 109, 0.3);
}

.border-t-eva-green-appt\/35 {
  border-top-color: rgba(128, 215, 109, 0.35);
}

.border-t-eva-green-appt\/40 {
  border-top-color: rgba(128, 215, 109, 0.4);
}

.border-t-eva-green-appt\/45 {
  border-top-color: rgba(128, 215, 109, 0.45);
}

.border-t-eva-green-appt\/5 {
  border-top-color: rgba(128, 215, 109, 0.05);
}

.border-t-eva-green-appt\/50 {
  border-top-color: rgba(128, 215, 109, 0.5);
}

.border-t-eva-green-appt\/55 {
  border-top-color: rgba(128, 215, 109, 0.55);
}

.border-t-eva-green-appt\/60 {
  border-top-color: rgba(128, 215, 109, 0.6);
}

.border-t-eva-green-appt\/65 {
  border-top-color: rgba(128, 215, 109, 0.65);
}

.border-t-eva-green-appt\/70 {
  border-top-color: rgba(128, 215, 109, 0.7);
}

.border-t-eva-green-appt\/75 {
  border-top-color: rgba(128, 215, 109, 0.75);
}

.border-t-eva-green-appt\/80 {
  border-top-color: rgba(128, 215, 109, 0.8);
}

.border-t-eva-green-appt\/85 {
  border-top-color: rgba(128, 215, 109, 0.85);
}

.border-t-eva-green-appt\/90 {
  border-top-color: rgba(128, 215, 109, 0.9);
}

.border-t-eva-green-appt\/95 {
  border-top-color: rgba(128, 215, 109, 0.95);
}

.border-t-eva-green-brown-appt {
  border-top-color: rgba(197, 191, 140, 1);
}

.border-t-eva-green-brown-appt\/0 {
  border-top-color: rgba(197, 191, 140, 0);
}

.border-t-eva-green-brown-appt\/10 {
  border-top-color: rgba(197, 191, 140, 0.1);
}

.border-t-eva-green-brown-appt\/100 {
  border-top-color: rgba(197, 191, 140, 1);
}

.border-t-eva-green-brown-appt\/15 {
  border-top-color: rgba(197, 191, 140, 0.15);
}

.border-t-eva-green-brown-appt\/20 {
  border-top-color: rgba(197, 191, 140, 0.2);
}

.border-t-eva-green-brown-appt\/25 {
  border-top-color: rgba(197, 191, 140, 0.25);
}

.border-t-eva-green-brown-appt\/30 {
  border-top-color: rgba(197, 191, 140, 0.3);
}

.border-t-eva-green-brown-appt\/35 {
  border-top-color: rgba(197, 191, 140, 0.35);
}

.border-t-eva-green-brown-appt\/40 {
  border-top-color: rgba(197, 191, 140, 0.4);
}

.border-t-eva-green-brown-appt\/45 {
  border-top-color: rgba(197, 191, 140, 0.45);
}

.border-t-eva-green-brown-appt\/5 {
  border-top-color: rgba(197, 191, 140, 0.05);
}

.border-t-eva-green-brown-appt\/50 {
  border-top-color: rgba(197, 191, 140, 0.5);
}

.border-t-eva-green-brown-appt\/55 {
  border-top-color: rgba(197, 191, 140, 0.55);
}

.border-t-eva-green-brown-appt\/60 {
  border-top-color: rgba(197, 191, 140, 0.6);
}

.border-t-eva-green-brown-appt\/65 {
  border-top-color: rgba(197, 191, 140, 0.65);
}

.border-t-eva-green-brown-appt\/70 {
  border-top-color: rgba(197, 191, 140, 0.7);
}

.border-t-eva-green-brown-appt\/75 {
  border-top-color: rgba(197, 191, 140, 0.75);
}

.border-t-eva-green-brown-appt\/80 {
  border-top-color: rgba(197, 191, 140, 0.8);
}

.border-t-eva-green-brown-appt\/85 {
  border-top-color: rgba(197, 191, 140, 0.85);
}

.border-t-eva-green-brown-appt\/90 {
  border-top-color: rgba(197, 191, 140, 0.9);
}

.border-t-eva-green-brown-appt\/95 {
  border-top-color: rgba(197, 191, 140, 0.95);
}

.border-t-eva-green-hv {
  --tw-border-opacity: 1;
  border-top-color: rgb(63 156 144 / var(--tw-border-opacity, 1));
}

.border-t-eva-green-hv\/0 {
  border-top-color: rgb(63 156 144 / 0);
}

.border-t-eva-green-hv\/10 {
  border-top-color: rgb(63 156 144 / 0.1);
}

.border-t-eva-green-hv\/100 {
  border-top-color: rgb(63 156 144 / 1);
}

.border-t-eva-green-hv\/15 {
  border-top-color: rgb(63 156 144 / 0.15);
}

.border-t-eva-green-hv\/20 {
  border-top-color: rgb(63 156 144 / 0.2);
}

.border-t-eva-green-hv\/25 {
  border-top-color: rgb(63 156 144 / 0.25);
}

.border-t-eva-green-hv\/30 {
  border-top-color: rgb(63 156 144 / 0.3);
}

.border-t-eva-green-hv\/35 {
  border-top-color: rgb(63 156 144 / 0.35);
}

.border-t-eva-green-hv\/40 {
  border-top-color: rgb(63 156 144 / 0.4);
}

.border-t-eva-green-hv\/45 {
  border-top-color: rgb(63 156 144 / 0.45);
}

.border-t-eva-green-hv\/5 {
  border-top-color: rgb(63 156 144 / 0.05);
}

.border-t-eva-green-hv\/50 {
  border-top-color: rgb(63 156 144 / 0.5);
}

.border-t-eva-green-hv\/55 {
  border-top-color: rgb(63 156 144 / 0.55);
}

.border-t-eva-green-hv\/60 {
  border-top-color: rgb(63 156 144 / 0.6);
}

.border-t-eva-green-hv\/65 {
  border-top-color: rgb(63 156 144 / 0.65);
}

.border-t-eva-green-hv\/70 {
  border-top-color: rgb(63 156 144 / 0.7);
}

.border-t-eva-green-hv\/75 {
  border-top-color: rgb(63 156 144 / 0.75);
}

.border-t-eva-green-hv\/80 {
  border-top-color: rgb(63 156 144 / 0.8);
}

.border-t-eva-green-hv\/85 {
  border-top-color: rgb(63 156 144 / 0.85);
}

.border-t-eva-green-hv\/90 {
  border-top-color: rgb(63 156 144 / 0.9);
}

.border-t-eva-green-hv\/95 {
  border-top-color: rgb(63 156 144 / 0.95);
}

.border-t-eva-green\/0 {
  border-top-color: rgb(73 181 168 / 0);
}

.border-t-eva-green\/10 {
  border-top-color: rgb(73 181 168 / 0.1);
}

.border-t-eva-green\/100 {
  border-top-color: rgb(73 181 168 / 1);
}

.border-t-eva-green\/15 {
  border-top-color: rgb(73 181 168 / 0.15);
}

.border-t-eva-green\/20 {
  border-top-color: rgb(73 181 168 / 0.2);
}

.border-t-eva-green\/25 {
  border-top-color: rgb(73 181 168 / 0.25);
}

.border-t-eva-green\/30 {
  border-top-color: rgb(73 181 168 / 0.3);
}

.border-t-eva-green\/35 {
  border-top-color: rgb(73 181 168 / 0.35);
}

.border-t-eva-green\/40 {
  border-top-color: rgb(73 181 168 / 0.4);
}

.border-t-eva-green\/45 {
  border-top-color: rgb(73 181 168 / 0.45);
}

.border-t-eva-green\/5 {
  border-top-color: rgb(73 181 168 / 0.05);
}

.border-t-eva-green\/50 {
  border-top-color: rgb(73 181 168 / 0.5);
}

.border-t-eva-green\/55 {
  border-top-color: rgb(73 181 168 / 0.55);
}

.border-t-eva-green\/60 {
  border-top-color: rgb(73 181 168 / 0.6);
}

.border-t-eva-green\/65 {
  border-top-color: rgb(73 181 168 / 0.65);
}

.border-t-eva-green\/70 {
  border-top-color: rgb(73 181 168 / 0.7);
}

.border-t-eva-green\/75 {
  border-top-color: rgb(73 181 168 / 0.75);
}

.border-t-eva-green\/80 {
  border-top-color: rgb(73 181 168 / 0.8);
}

.border-t-eva-green\/85 {
  border-top-color: rgb(73 181 168 / 0.85);
}

.border-t-eva-green\/90 {
  border-top-color: rgb(73 181 168 / 0.9);
}

.border-t-eva-green\/95 {
  border-top-color: rgb(73 181 168 / 0.95);
}

.border-t-eva-lavender-appt {
  border-top-color: rgba(169, 124, 165, 1);
}

.border-t-eva-lavender-appt\/0 {
  border-top-color: rgba(169, 124, 165, 0);
}

.border-t-eva-lavender-appt\/10 {
  border-top-color: rgba(169, 124, 165, 0.1);
}

.border-t-eva-lavender-appt\/100 {
  border-top-color: rgba(169, 124, 165, 1);
}

.border-t-eva-lavender-appt\/15 {
  border-top-color: rgba(169, 124, 165, 0.15);
}

.border-t-eva-lavender-appt\/20 {
  border-top-color: rgba(169, 124, 165, 0.2);
}

.border-t-eva-lavender-appt\/25 {
  border-top-color: rgba(169, 124, 165, 0.25);
}

.border-t-eva-lavender-appt\/30 {
  border-top-color: rgba(169, 124, 165, 0.3);
}

.border-t-eva-lavender-appt\/35 {
  border-top-color: rgba(169, 124, 165, 0.35);
}

.border-t-eva-lavender-appt\/40 {
  border-top-color: rgba(169, 124, 165, 0.4);
}

.border-t-eva-lavender-appt\/45 {
  border-top-color: rgba(169, 124, 165, 0.45);
}

.border-t-eva-lavender-appt\/5 {
  border-top-color: rgba(169, 124, 165, 0.05);
}

.border-t-eva-lavender-appt\/50 {
  border-top-color: rgba(169, 124, 165, 0.5);
}

.border-t-eva-lavender-appt\/55 {
  border-top-color: rgba(169, 124, 165, 0.55);
}

.border-t-eva-lavender-appt\/60 {
  border-top-color: rgba(169, 124, 165, 0.6);
}

.border-t-eva-lavender-appt\/65 {
  border-top-color: rgba(169, 124, 165, 0.65);
}

.border-t-eva-lavender-appt\/70 {
  border-top-color: rgba(169, 124, 165, 0.7);
}

.border-t-eva-lavender-appt\/75 {
  border-top-color: rgba(169, 124, 165, 0.75);
}

.border-t-eva-lavender-appt\/80 {
  border-top-color: rgba(169, 124, 165, 0.8);
}

.border-t-eva-lavender-appt\/85 {
  border-top-color: rgba(169, 124, 165, 0.85);
}

.border-t-eva-lavender-appt\/90 {
  border-top-color: rgba(169, 124, 165, 0.9);
}

.border-t-eva-lavender-appt\/95 {
  border-top-color: rgba(169, 124, 165, 0.95);
}

.border-t-eva-magenta-appt {
  border-top-color: rgba(223, 91, 146, 1);
}

.border-t-eva-magenta-appt\/0 {
  border-top-color: rgba(223, 91, 146, 0);
}

.border-t-eva-magenta-appt\/10 {
  border-top-color: rgba(223, 91, 146, 0.1);
}

.border-t-eva-magenta-appt\/100 {
  border-top-color: rgba(223, 91, 146, 1);
}

.border-t-eva-magenta-appt\/15 {
  border-top-color: rgba(223, 91, 146, 0.15);
}

.border-t-eva-magenta-appt\/20 {
  border-top-color: rgba(223, 91, 146, 0.2);
}

.border-t-eva-magenta-appt\/25 {
  border-top-color: rgba(223, 91, 146, 0.25);
}

.border-t-eva-magenta-appt\/30 {
  border-top-color: rgba(223, 91, 146, 0.3);
}

.border-t-eva-magenta-appt\/35 {
  border-top-color: rgba(223, 91, 146, 0.35);
}

.border-t-eva-magenta-appt\/40 {
  border-top-color: rgba(223, 91, 146, 0.4);
}

.border-t-eva-magenta-appt\/45 {
  border-top-color: rgba(223, 91, 146, 0.45);
}

.border-t-eva-magenta-appt\/5 {
  border-top-color: rgba(223, 91, 146, 0.05);
}

.border-t-eva-magenta-appt\/50 {
  border-top-color: rgba(223, 91, 146, 0.5);
}

.border-t-eva-magenta-appt\/55 {
  border-top-color: rgba(223, 91, 146, 0.55);
}

.border-t-eva-magenta-appt\/60 {
  border-top-color: rgba(223, 91, 146, 0.6);
}

.border-t-eva-magenta-appt\/65 {
  border-top-color: rgba(223, 91, 146, 0.65);
}

.border-t-eva-magenta-appt\/70 {
  border-top-color: rgba(223, 91, 146, 0.7);
}

.border-t-eva-magenta-appt\/75 {
  border-top-color: rgba(223, 91, 146, 0.75);
}

.border-t-eva-magenta-appt\/80 {
  border-top-color: rgba(223, 91, 146, 0.8);
}

.border-t-eva-magenta-appt\/85 {
  border-top-color: rgba(223, 91, 146, 0.85);
}

.border-t-eva-magenta-appt\/90 {
  border-top-color: rgba(223, 91, 146, 0.9);
}

.border-t-eva-magenta-appt\/95 {
  border-top-color: rgba(223, 91, 146, 0.95);
}

.border-t-eva-orange-appt {
  border-top-color: rgba(232, 176, 99, 1);
}

.border-t-eva-orange-appt\/0 {
  border-top-color: rgba(232, 176, 99, 0);
}

.border-t-eva-orange-appt\/10 {
  border-top-color: rgba(232, 176, 99, 0.1);
}

.border-t-eva-orange-appt\/100 {
  border-top-color: rgba(232, 176, 99, 1);
}

.border-t-eva-orange-appt\/15 {
  border-top-color: rgba(232, 176, 99, 0.15);
}

.border-t-eva-orange-appt\/20 {
  border-top-color: rgba(232, 176, 99, 0.2);
}

.border-t-eva-orange-appt\/25 {
  border-top-color: rgba(232, 176, 99, 0.25);
}

.border-t-eva-orange-appt\/30 {
  border-top-color: rgba(232, 176, 99, 0.3);
}

.border-t-eva-orange-appt\/35 {
  border-top-color: rgba(232, 176, 99, 0.35);
}

.border-t-eva-orange-appt\/40 {
  border-top-color: rgba(232, 176, 99, 0.4);
}

.border-t-eva-orange-appt\/45 {
  border-top-color: rgba(232, 176, 99, 0.45);
}

.border-t-eva-orange-appt\/5 {
  border-top-color: rgba(232, 176, 99, 0.05);
}

.border-t-eva-orange-appt\/50 {
  border-top-color: rgba(232, 176, 99, 0.5);
}

.border-t-eva-orange-appt\/55 {
  border-top-color: rgba(232, 176, 99, 0.55);
}

.border-t-eva-orange-appt\/60 {
  border-top-color: rgba(232, 176, 99, 0.6);
}

.border-t-eva-orange-appt\/65 {
  border-top-color: rgba(232, 176, 99, 0.65);
}

.border-t-eva-orange-appt\/70 {
  border-top-color: rgba(232, 176, 99, 0.7);
}

.border-t-eva-orange-appt\/75 {
  border-top-color: rgba(232, 176, 99, 0.75);
}

.border-t-eva-orange-appt\/80 {
  border-top-color: rgba(232, 176, 99, 0.8);
}

.border-t-eva-orange-appt\/85 {
  border-top-color: rgba(232, 176, 99, 0.85);
}

.border-t-eva-orange-appt\/90 {
  border-top-color: rgba(232, 176, 99, 0.9);
}

.border-t-eva-orange-appt\/95 {
  border-top-color: rgba(232, 176, 99, 0.95);
}

.border-t-eva-purple-appt {
  border-top-color: rgba(125, 117, 164, 1);
}

.border-t-eva-purple-appt\/0 {
  border-top-color: rgba(125, 117, 164, 0);
}

.border-t-eva-purple-appt\/10 {
  border-top-color: rgba(125, 117, 164, 0.1);
}

.border-t-eva-purple-appt\/100 {
  border-top-color: rgba(125, 117, 164, 1);
}

.border-t-eva-purple-appt\/15 {
  border-top-color: rgba(125, 117, 164, 0.15);
}

.border-t-eva-purple-appt\/20 {
  border-top-color: rgba(125, 117, 164, 0.2);
}

.border-t-eva-purple-appt\/25 {
  border-top-color: rgba(125, 117, 164, 0.25);
}

.border-t-eva-purple-appt\/30 {
  border-top-color: rgba(125, 117, 164, 0.3);
}

.border-t-eva-purple-appt\/35 {
  border-top-color: rgba(125, 117, 164, 0.35);
}

.border-t-eva-purple-appt\/40 {
  border-top-color: rgba(125, 117, 164, 0.4);
}

.border-t-eva-purple-appt\/45 {
  border-top-color: rgba(125, 117, 164, 0.45);
}

.border-t-eva-purple-appt\/5 {
  border-top-color: rgba(125, 117, 164, 0.05);
}

.border-t-eva-purple-appt\/50 {
  border-top-color: rgba(125, 117, 164, 0.5);
}

.border-t-eva-purple-appt\/55 {
  border-top-color: rgba(125, 117, 164, 0.55);
}

.border-t-eva-purple-appt\/60 {
  border-top-color: rgba(125, 117, 164, 0.6);
}

.border-t-eva-purple-appt\/65 {
  border-top-color: rgba(125, 117, 164, 0.65);
}

.border-t-eva-purple-appt\/70 {
  border-top-color: rgba(125, 117, 164, 0.7);
}

.border-t-eva-purple-appt\/75 {
  border-top-color: rgba(125, 117, 164, 0.75);
}

.border-t-eva-purple-appt\/80 {
  border-top-color: rgba(125, 117, 164, 0.8);
}

.border-t-eva-purple-appt\/85 {
  border-top-color: rgba(125, 117, 164, 0.85);
}

.border-t-eva-purple-appt\/90 {
  border-top-color: rgba(125, 117, 164, 0.9);
}

.border-t-eva-purple-appt\/95 {
  border-top-color: rgba(125, 117, 164, 0.95);
}

.border-t-eva-red {
  --tw-border-opacity: 1;
  border-top-color: rgb(234 101 101 / var(--tw-border-opacity, 1));
}

.border-t-eva-red-appt {
  border-top-color: rgba(243, 63, 77, 1);
}

.border-t-eva-red-appt\/0 {
  border-top-color: rgba(243, 63, 77, 0);
}

.border-t-eva-red-appt\/10 {
  border-top-color: rgba(243, 63, 77, 0.1);
}

.border-t-eva-red-appt\/100 {
  border-top-color: rgba(243, 63, 77, 1);
}

.border-t-eva-red-appt\/15 {
  border-top-color: rgba(243, 63, 77, 0.15);
}

.border-t-eva-red-appt\/20 {
  border-top-color: rgba(243, 63, 77, 0.2);
}

.border-t-eva-red-appt\/25 {
  border-top-color: rgba(243, 63, 77, 0.25);
}

.border-t-eva-red-appt\/30 {
  border-top-color: rgba(243, 63, 77, 0.3);
}

.border-t-eva-red-appt\/35 {
  border-top-color: rgba(243, 63, 77, 0.35);
}

.border-t-eva-red-appt\/40 {
  border-top-color: rgba(243, 63, 77, 0.4);
}

.border-t-eva-red-appt\/45 {
  border-top-color: rgba(243, 63, 77, 0.45);
}

.border-t-eva-red-appt\/5 {
  border-top-color: rgba(243, 63, 77, 0.05);
}

.border-t-eva-red-appt\/50 {
  border-top-color: rgba(243, 63, 77, 0.5);
}

.border-t-eva-red-appt\/55 {
  border-top-color: rgba(243, 63, 77, 0.55);
}

.border-t-eva-red-appt\/60 {
  border-top-color: rgba(243, 63, 77, 0.6);
}

.border-t-eva-red-appt\/65 {
  border-top-color: rgba(243, 63, 77, 0.65);
}

.border-t-eva-red-appt\/70 {
  border-top-color: rgba(243, 63, 77, 0.7);
}

.border-t-eva-red-appt\/75 {
  border-top-color: rgba(243, 63, 77, 0.75);
}

.border-t-eva-red-appt\/80 {
  border-top-color: rgba(243, 63, 77, 0.8);
}

.border-t-eva-red-appt\/85 {
  border-top-color: rgba(243, 63, 77, 0.85);
}

.border-t-eva-red-appt\/90 {
  border-top-color: rgba(243, 63, 77, 0.9);
}

.border-t-eva-red-appt\/95 {
  border-top-color: rgba(243, 63, 77, 0.95);
}

.border-t-eva-red-orange-appt {
  border-top-color: rgba(217, 154, 118, 1);
}

.border-t-eva-red-orange-appt\/0 {
  border-top-color: rgba(217, 154, 118, 0);
}

.border-t-eva-red-orange-appt\/10 {
  border-top-color: rgba(217, 154, 118, 0.1);
}

.border-t-eva-red-orange-appt\/100 {
  border-top-color: rgba(217, 154, 118, 1);
}

.border-t-eva-red-orange-appt\/15 {
  border-top-color: rgba(217, 154, 118, 0.15);
}

.border-t-eva-red-orange-appt\/20 {
  border-top-color: rgba(217, 154, 118, 0.2);
}

.border-t-eva-red-orange-appt\/25 {
  border-top-color: rgba(217, 154, 118, 0.25);
}

.border-t-eva-red-orange-appt\/30 {
  border-top-color: rgba(217, 154, 118, 0.3);
}

.border-t-eva-red-orange-appt\/35 {
  border-top-color: rgba(217, 154, 118, 0.35);
}

.border-t-eva-red-orange-appt\/40 {
  border-top-color: rgba(217, 154, 118, 0.4);
}

.border-t-eva-red-orange-appt\/45 {
  border-top-color: rgba(217, 154, 118, 0.45);
}

.border-t-eva-red-orange-appt\/5 {
  border-top-color: rgba(217, 154, 118, 0.05);
}

.border-t-eva-red-orange-appt\/50 {
  border-top-color: rgba(217, 154, 118, 0.5);
}

.border-t-eva-red-orange-appt\/55 {
  border-top-color: rgba(217, 154, 118, 0.55);
}

.border-t-eva-red-orange-appt\/60 {
  border-top-color: rgba(217, 154, 118, 0.6);
}

.border-t-eva-red-orange-appt\/65 {
  border-top-color: rgba(217, 154, 118, 0.65);
}

.border-t-eva-red-orange-appt\/70 {
  border-top-color: rgba(217, 154, 118, 0.7);
}

.border-t-eva-red-orange-appt\/75 {
  border-top-color: rgba(217, 154, 118, 0.75);
}

.border-t-eva-red-orange-appt\/80 {
  border-top-color: rgba(217, 154, 118, 0.8);
}

.border-t-eva-red-orange-appt\/85 {
  border-top-color: rgba(217, 154, 118, 0.85);
}

.border-t-eva-red-orange-appt\/90 {
  border-top-color: rgba(217, 154, 118, 0.9);
}

.border-t-eva-red-orange-appt\/95 {
  border-top-color: rgba(217, 154, 118, 0.95);
}

.border-t-eva-red\/0 {
  border-top-color: rgb(234 101 101 / 0);
}

.border-t-eva-red\/10 {
  border-top-color: rgb(234 101 101 / 0.1);
}

.border-t-eva-red\/100 {
  border-top-color: rgb(234 101 101 / 1);
}

.border-t-eva-red\/15 {
  border-top-color: rgb(234 101 101 / 0.15);
}

.border-t-eva-red\/20 {
  border-top-color: rgb(234 101 101 / 0.2);
}

.border-t-eva-red\/25 {
  border-top-color: rgb(234 101 101 / 0.25);
}

.border-t-eva-red\/30 {
  border-top-color: rgb(234 101 101 / 0.3);
}

.border-t-eva-red\/35 {
  border-top-color: rgb(234 101 101 / 0.35);
}

.border-t-eva-red\/40 {
  border-top-color: rgb(234 101 101 / 0.4);
}

.border-t-eva-red\/45 {
  border-top-color: rgb(234 101 101 / 0.45);
}

.border-t-eva-red\/5 {
  border-top-color: rgb(234 101 101 / 0.05);
}

.border-t-eva-red\/50 {
  border-top-color: rgb(234 101 101 / 0.5);
}

.border-t-eva-red\/55 {
  border-top-color: rgb(234 101 101 / 0.55);
}

.border-t-eva-red\/60 {
  border-top-color: rgb(234 101 101 / 0.6);
}

.border-t-eva-red\/65 {
  border-top-color: rgb(234 101 101 / 0.65);
}

.border-t-eva-red\/70 {
  border-top-color: rgb(234 101 101 / 0.7);
}

.border-t-eva-red\/75 {
  border-top-color: rgb(234 101 101 / 0.75);
}

.border-t-eva-red\/80 {
  border-top-color: rgb(234 101 101 / 0.8);
}

.border-t-eva-red\/85 {
  border-top-color: rgb(234 101 101 / 0.85);
}

.border-t-eva-red\/90 {
  border-top-color: rgb(234 101 101 / 0.9);
}

.border-t-eva-red\/95 {
  border-top-color: rgb(234 101 101 / 0.95);
}

.border-t-eva-teal-appt {
  --tw-border-opacity: 1;
  border-top-color: rgba(22, 172, 151, var(--tw-border-opacity, 1));
}

.border-t-eva-teal-appt\/0 {
  border-top-color: rgba(22, 172, 151, 0);
}

.border-t-eva-teal-appt\/10 {
  border-top-color: rgba(22, 172, 151, 0.1);
}

.border-t-eva-teal-appt\/100 {
  border-top-color: rgba(22, 172, 151, 1);
}

.border-t-eva-teal-appt\/15 {
  border-top-color: rgba(22, 172, 151, 0.15);
}

.border-t-eva-teal-appt\/20 {
  border-top-color: rgba(22, 172, 151, 0.2);
}

.border-t-eva-teal-appt\/25 {
  border-top-color: rgba(22, 172, 151, 0.25);
}

.border-t-eva-teal-appt\/30 {
  border-top-color: rgba(22, 172, 151, 0.3);
}

.border-t-eva-teal-appt\/35 {
  border-top-color: rgba(22, 172, 151, 0.35);
}

.border-t-eva-teal-appt\/40 {
  border-top-color: rgba(22, 172, 151, 0.4);
}

.border-t-eva-teal-appt\/45 {
  border-top-color: rgba(22, 172, 151, 0.45);
}

.border-t-eva-teal-appt\/5 {
  border-top-color: rgba(22, 172, 151, 0.05);
}

.border-t-eva-teal-appt\/50 {
  border-top-color: rgba(22, 172, 151, 0.5);
}

.border-t-eva-teal-appt\/55 {
  border-top-color: rgba(22, 172, 151, 0.55);
}

.border-t-eva-teal-appt\/60 {
  border-top-color: rgba(22, 172, 151, 0.6);
}

.border-t-eva-teal-appt\/65 {
  border-top-color: rgba(22, 172, 151, 0.65);
}

.border-t-eva-teal-appt\/70 {
  border-top-color: rgba(22, 172, 151, 0.7);
}

.border-t-eva-teal-appt\/75 {
  border-top-color: rgba(22, 172, 151, 0.75);
}

.border-t-eva-teal-appt\/80 {
  border-top-color: rgba(22, 172, 151, 0.8);
}

.border-t-eva-teal-appt\/85 {
  border-top-color: rgba(22, 172, 151, 0.85);
}

.border-t-eva-teal-appt\/90 {
  border-top-color: rgba(22, 172, 151, 0.9);
}

.border-t-eva-teal-appt\/95 {
  border-top-color: rgba(22, 172, 151, 0.95);
}

.border-t-eva-yellow {
  --tw-border-opacity: 1;
  border-top-color: rgb(233 179 98 / var(--tw-border-opacity, 1));
}

.border-t-eva-yellow-appt {
  border-top-color: rgba(240, 226, 0, 1);
}

.border-t-eva-yellow-appt\/0 {
  border-top-color: rgba(240, 226, 0, 0);
}

.border-t-eva-yellow-appt\/10 {
  border-top-color: rgba(240, 226, 0, 0.1);
}

.border-t-eva-yellow-appt\/100 {
  border-top-color: rgba(240, 226, 0, 1);
}

.border-t-eva-yellow-appt\/15 {
  border-top-color: rgba(240, 226, 0, 0.15);
}

.border-t-eva-yellow-appt\/20 {
  border-top-color: rgba(240, 226, 0, 0.2);
}

.border-t-eva-yellow-appt\/25 {
  border-top-color: rgba(240, 226, 0, 0.25);
}

.border-t-eva-yellow-appt\/30 {
  border-top-color: rgba(240, 226, 0, 0.3);
}

.border-t-eva-yellow-appt\/35 {
  border-top-color: rgba(240, 226, 0, 0.35);
}

.border-t-eva-yellow-appt\/40 {
  border-top-color: rgba(240, 226, 0, 0.4);
}

.border-t-eva-yellow-appt\/45 {
  border-top-color: rgba(240, 226, 0, 0.45);
}

.border-t-eva-yellow-appt\/5 {
  border-top-color: rgba(240, 226, 0, 0.05);
}

.border-t-eva-yellow-appt\/50 {
  border-top-color: rgba(240, 226, 0, 0.5);
}

.border-t-eva-yellow-appt\/55 {
  border-top-color: rgba(240, 226, 0, 0.55);
}

.border-t-eva-yellow-appt\/60 {
  border-top-color: rgba(240, 226, 0, 0.6);
}

.border-t-eva-yellow-appt\/65 {
  border-top-color: rgba(240, 226, 0, 0.65);
}

.border-t-eva-yellow-appt\/70 {
  border-top-color: rgba(240, 226, 0, 0.7);
}

.border-t-eva-yellow-appt\/75 {
  border-top-color: rgba(240, 226, 0, 0.75);
}

.border-t-eva-yellow-appt\/80 {
  border-top-color: rgba(240, 226, 0, 0.8);
}

.border-t-eva-yellow-appt\/85 {
  border-top-color: rgba(240, 226, 0, 0.85);
}

.border-t-eva-yellow-appt\/90 {
  border-top-color: rgba(240, 226, 0, 0.9);
}

.border-t-eva-yellow-appt\/95 {
  border-top-color: rgba(240, 226, 0, 0.95);
}

.border-t-eva-yellow\/0 {
  border-top-color: rgb(233 179 98 / 0);
}

.border-t-eva-yellow\/10 {
  border-top-color: rgb(233 179 98 / 0.1);
}

.border-t-eva-yellow\/100 {
  border-top-color: rgb(233 179 98 / 1);
}

.border-t-eva-yellow\/15 {
  border-top-color: rgb(233 179 98 / 0.15);
}

.border-t-eva-yellow\/20 {
  border-top-color: rgb(233 179 98 / 0.2);
}

.border-t-eva-yellow\/25 {
  border-top-color: rgb(233 179 98 / 0.25);
}

.border-t-eva-yellow\/30 {
  border-top-color: rgb(233 179 98 / 0.3);
}

.border-t-eva-yellow\/35 {
  border-top-color: rgb(233 179 98 / 0.35);
}

.border-t-eva-yellow\/40 {
  border-top-color: rgb(233 179 98 / 0.4);
}

.border-t-eva-yellow\/45 {
  border-top-color: rgb(233 179 98 / 0.45);
}

.border-t-eva-yellow\/5 {
  border-top-color: rgb(233 179 98 / 0.05);
}

.border-t-eva-yellow\/50 {
  border-top-color: rgb(233 179 98 / 0.5);
}

.border-t-eva-yellow\/55 {
  border-top-color: rgb(233 179 98 / 0.55);
}

.border-t-eva-yellow\/60 {
  border-top-color: rgb(233 179 98 / 0.6);
}

.border-t-eva-yellow\/65 {
  border-top-color: rgb(233 179 98 / 0.65);
}

.border-t-eva-yellow\/70 {
  border-top-color: rgb(233 179 98 / 0.7);
}

.border-t-eva-yellow\/75 {
  border-top-color: rgb(233 179 98 / 0.75);
}

.border-t-eva-yellow\/80 {
  border-top-color: rgb(233 179 98 / 0.8);
}

.border-t-eva-yellow\/85 {
  border-top-color: rgb(233 179 98 / 0.85);
}

.border-t-eva-yellow\/90 {
  border-top-color: rgb(233 179 98 / 0.9);
}

.border-t-eva-yellow\/95 {
  border-top-color: rgb(233 179 98 / 0.95);
}

.border-t-gray-100 {
  --tw-border-opacity: 1;
  border-top-color: rgb(245 245 245 / var(--tw-border-opacity, 1));
}

.border-t-gray-100\/0 {
  border-top-color: rgb(245 245 245 / 0);
}

.border-t-gray-100\/10 {
  border-top-color: rgb(245 245 245 / 0.1);
}

.border-t-gray-100\/100 {
  border-top-color: rgb(245 245 245 / 1);
}

.border-t-gray-100\/15 {
  border-top-color: rgb(245 245 245 / 0.15);
}

.border-t-gray-100\/20 {
  border-top-color: rgb(245 245 245 / 0.2);
}

.border-t-gray-100\/25 {
  border-top-color: rgb(245 245 245 / 0.25);
}

.border-t-gray-100\/30 {
  border-top-color: rgb(245 245 245 / 0.3);
}

.border-t-gray-100\/35 {
  border-top-color: rgb(245 245 245 / 0.35);
}

.border-t-gray-100\/40 {
  border-top-color: rgb(245 245 245 / 0.4);
}

.border-t-gray-100\/45 {
  border-top-color: rgb(245 245 245 / 0.45);
}

.border-t-gray-100\/5 {
  border-top-color: rgb(245 245 245 / 0.05);
}

.border-t-gray-100\/50 {
  border-top-color: rgb(245 245 245 / 0.5);
}

.border-t-gray-100\/55 {
  border-top-color: rgb(245 245 245 / 0.55);
}

.border-t-gray-100\/60 {
  border-top-color: rgb(245 245 245 / 0.6);
}

.border-t-gray-100\/65 {
  border-top-color: rgb(245 245 245 / 0.65);
}

.border-t-gray-100\/70 {
  border-top-color: rgb(245 245 245 / 0.7);
}

.border-t-gray-100\/75 {
  border-top-color: rgb(245 245 245 / 0.75);
}

.border-t-gray-100\/80 {
  border-top-color: rgb(245 245 245 / 0.8);
}

.border-t-gray-100\/85 {
  border-top-color: rgb(245 245 245 / 0.85);
}

.border-t-gray-100\/90 {
  border-top-color: rgb(245 245 245 / 0.9);
}

.border-t-gray-100\/95 {
  border-top-color: rgb(245 245 245 / 0.95);
}

.border-t-gray-200 {
  --tw-border-opacity: 1;
  border-top-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
}

.border-t-gray-200\/0 {
  border-top-color: rgb(229 229 229 / 0);
}

.border-t-gray-200\/10 {
  border-top-color: rgb(229 229 229 / 0.1);
}

.border-t-gray-200\/100 {
  border-top-color: rgb(229 229 229 / 1);
}

.border-t-gray-200\/15 {
  border-top-color: rgb(229 229 229 / 0.15);
}

.border-t-gray-200\/20 {
  border-top-color: rgb(229 229 229 / 0.2);
}

.border-t-gray-200\/25 {
  border-top-color: rgb(229 229 229 / 0.25);
}

.border-t-gray-200\/30 {
  border-top-color: rgb(229 229 229 / 0.3);
}

.border-t-gray-200\/35 {
  border-top-color: rgb(229 229 229 / 0.35);
}

.border-t-gray-200\/40 {
  border-top-color: rgb(229 229 229 / 0.4);
}

.border-t-gray-200\/45 {
  border-top-color: rgb(229 229 229 / 0.45);
}

.border-t-gray-200\/5 {
  border-top-color: rgb(229 229 229 / 0.05);
}

.border-t-gray-200\/50 {
  border-top-color: rgb(229 229 229 / 0.5);
}

.border-t-gray-200\/55 {
  border-top-color: rgb(229 229 229 / 0.55);
}

.border-t-gray-200\/60 {
  border-top-color: rgb(229 229 229 / 0.6);
}

.border-t-gray-200\/65 {
  border-top-color: rgb(229 229 229 / 0.65);
}

.border-t-gray-200\/70 {
  border-top-color: rgb(229 229 229 / 0.7);
}

.border-t-gray-200\/75 {
  border-top-color: rgb(229 229 229 / 0.75);
}

.border-t-gray-200\/80 {
  border-top-color: rgb(229 229 229 / 0.8);
}

.border-t-gray-200\/85 {
  border-top-color: rgb(229 229 229 / 0.85);
}

.border-t-gray-200\/90 {
  border-top-color: rgb(229 229 229 / 0.9);
}

.border-t-gray-200\/95 {
  border-top-color: rgb(229 229 229 / 0.95);
}

.border-t-gray-300 {
  --tw-border-opacity: 1;
  border-top-color: rgb(212 212 212 / var(--tw-border-opacity, 1));
}

.border-t-gray-300\/0 {
  border-top-color: rgb(212 212 212 / 0);
}

.border-t-gray-300\/10 {
  border-top-color: rgb(212 212 212 / 0.1);
}

.border-t-gray-300\/100 {
  border-top-color: rgb(212 212 212 / 1);
}

.border-t-gray-300\/15 {
  border-top-color: rgb(212 212 212 / 0.15);
}

.border-t-gray-300\/20 {
  border-top-color: rgb(212 212 212 / 0.2);
}

.border-t-gray-300\/25 {
  border-top-color: rgb(212 212 212 / 0.25);
}

.border-t-gray-300\/30 {
  border-top-color: rgb(212 212 212 / 0.3);
}

.border-t-gray-300\/35 {
  border-top-color: rgb(212 212 212 / 0.35);
}

.border-t-gray-300\/40 {
  border-top-color: rgb(212 212 212 / 0.4);
}

.border-t-gray-300\/45 {
  border-top-color: rgb(212 212 212 / 0.45);
}

.border-t-gray-300\/5 {
  border-top-color: rgb(212 212 212 / 0.05);
}

.border-t-gray-300\/50 {
  border-top-color: rgb(212 212 212 / 0.5);
}

.border-t-gray-300\/55 {
  border-top-color: rgb(212 212 212 / 0.55);
}

.border-t-gray-300\/60 {
  border-top-color: rgb(212 212 212 / 0.6);
}

.border-t-gray-300\/65 {
  border-top-color: rgb(212 212 212 / 0.65);
}

.border-t-gray-300\/70 {
  border-top-color: rgb(212 212 212 / 0.7);
}

.border-t-gray-300\/75 {
  border-top-color: rgb(212 212 212 / 0.75);
}

.border-t-gray-300\/80 {
  border-top-color: rgb(212 212 212 / 0.8);
}

.border-t-gray-300\/85 {
  border-top-color: rgb(212 212 212 / 0.85);
}

.border-t-gray-300\/90 {
  border-top-color: rgb(212 212 212 / 0.9);
}

.border-t-gray-300\/95 {
  border-top-color: rgb(212 212 212 / 0.95);
}

.border-t-gray-400 {
  --tw-border-opacity: 1;
  border-top-color: rgb(163 163 163 / var(--tw-border-opacity, 1));
}

.border-t-gray-400\/0 {
  border-top-color: rgb(163 163 163 / 0);
}

.border-t-gray-400\/10 {
  border-top-color: rgb(163 163 163 / 0.1);
}

.border-t-gray-400\/100 {
  border-top-color: rgb(163 163 163 / 1);
}

.border-t-gray-400\/15 {
  border-top-color: rgb(163 163 163 / 0.15);
}

.border-t-gray-400\/20 {
  border-top-color: rgb(163 163 163 / 0.2);
}

.border-t-gray-400\/25 {
  border-top-color: rgb(163 163 163 / 0.25);
}

.border-t-gray-400\/30 {
  border-top-color: rgb(163 163 163 / 0.3);
}

.border-t-gray-400\/35 {
  border-top-color: rgb(163 163 163 / 0.35);
}

.border-t-gray-400\/40 {
  border-top-color: rgb(163 163 163 / 0.4);
}

.border-t-gray-400\/45 {
  border-top-color: rgb(163 163 163 / 0.45);
}

.border-t-gray-400\/5 {
  border-top-color: rgb(163 163 163 / 0.05);
}

.border-t-gray-400\/50 {
  border-top-color: rgb(163 163 163 / 0.5);
}

.border-t-gray-400\/55 {
  border-top-color: rgb(163 163 163 / 0.55);
}

.border-t-gray-400\/60 {
  border-top-color: rgb(163 163 163 / 0.6);
}

.border-t-gray-400\/65 {
  border-top-color: rgb(163 163 163 / 0.65);
}

.border-t-gray-400\/70 {
  border-top-color: rgb(163 163 163 / 0.7);
}

.border-t-gray-400\/75 {
  border-top-color: rgb(163 163 163 / 0.75);
}

.border-t-gray-400\/80 {
  border-top-color: rgb(163 163 163 / 0.8);
}

.border-t-gray-400\/85 {
  border-top-color: rgb(163 163 163 / 0.85);
}

.border-t-gray-400\/90 {
  border-top-color: rgb(163 163 163 / 0.9);
}

.border-t-gray-400\/95 {
  border-top-color: rgb(163 163 163 / 0.95);
}

.border-t-gray-50 {
  --tw-border-opacity: 1;
  border-top-color: rgb(250 250 250 / var(--tw-border-opacity, 1));
}

.border-t-gray-50\/0 {
  border-top-color: rgb(250 250 250 / 0);
}

.border-t-gray-50\/10 {
  border-top-color: rgb(250 250 250 / 0.1);
}

.border-t-gray-50\/100 {
  border-top-color: rgb(250 250 250 / 1);
}

.border-t-gray-50\/15 {
  border-top-color: rgb(250 250 250 / 0.15);
}

.border-t-gray-50\/20 {
  border-top-color: rgb(250 250 250 / 0.2);
}

.border-t-gray-50\/25 {
  border-top-color: rgb(250 250 250 / 0.25);
}

.border-t-gray-50\/30 {
  border-top-color: rgb(250 250 250 / 0.3);
}

.border-t-gray-50\/35 {
  border-top-color: rgb(250 250 250 / 0.35);
}

.border-t-gray-50\/40 {
  border-top-color: rgb(250 250 250 / 0.4);
}

.border-t-gray-50\/45 {
  border-top-color: rgb(250 250 250 / 0.45);
}

.border-t-gray-50\/5 {
  border-top-color: rgb(250 250 250 / 0.05);
}

.border-t-gray-50\/50 {
  border-top-color: rgb(250 250 250 / 0.5);
}

.border-t-gray-50\/55 {
  border-top-color: rgb(250 250 250 / 0.55);
}

.border-t-gray-50\/60 {
  border-top-color: rgb(250 250 250 / 0.6);
}

.border-t-gray-50\/65 {
  border-top-color: rgb(250 250 250 / 0.65);
}

.border-t-gray-50\/70 {
  border-top-color: rgb(250 250 250 / 0.7);
}

.border-t-gray-50\/75 {
  border-top-color: rgb(250 250 250 / 0.75);
}

.border-t-gray-50\/80 {
  border-top-color: rgb(250 250 250 / 0.8);
}

.border-t-gray-50\/85 {
  border-top-color: rgb(250 250 250 / 0.85);
}

.border-t-gray-50\/90 {
  border-top-color: rgb(250 250 250 / 0.9);
}

.border-t-gray-50\/95 {
  border-top-color: rgb(250 250 250 / 0.95);
}

.border-t-gray-500 {
  --tw-border-opacity: 1;
  border-top-color: rgb(115 115 115 / var(--tw-border-opacity, 1));
}

.border-t-gray-500\/0 {
  border-top-color: rgb(115 115 115 / 0);
}

.border-t-gray-500\/10 {
  border-top-color: rgb(115 115 115 / 0.1);
}

.border-t-gray-500\/100 {
  border-top-color: rgb(115 115 115 / 1);
}

.border-t-gray-500\/15 {
  border-top-color: rgb(115 115 115 / 0.15);
}

.border-t-gray-500\/20 {
  border-top-color: rgb(115 115 115 / 0.2);
}

.border-t-gray-500\/25 {
  border-top-color: rgb(115 115 115 / 0.25);
}

.border-t-gray-500\/30 {
  border-top-color: rgb(115 115 115 / 0.3);
}

.border-t-gray-500\/35 {
  border-top-color: rgb(115 115 115 / 0.35);
}

.border-t-gray-500\/40 {
  border-top-color: rgb(115 115 115 / 0.4);
}

.border-t-gray-500\/45 {
  border-top-color: rgb(115 115 115 / 0.45);
}

.border-t-gray-500\/5 {
  border-top-color: rgb(115 115 115 / 0.05);
}

.border-t-gray-500\/50 {
  border-top-color: rgb(115 115 115 / 0.5);
}

.border-t-gray-500\/55 {
  border-top-color: rgb(115 115 115 / 0.55);
}

.border-t-gray-500\/60 {
  border-top-color: rgb(115 115 115 / 0.6);
}

.border-t-gray-500\/65 {
  border-top-color: rgb(115 115 115 / 0.65);
}

.border-t-gray-500\/70 {
  border-top-color: rgb(115 115 115 / 0.7);
}

.border-t-gray-500\/75 {
  border-top-color: rgb(115 115 115 / 0.75);
}

.border-t-gray-500\/80 {
  border-top-color: rgb(115 115 115 / 0.8);
}

.border-t-gray-500\/85 {
  border-top-color: rgb(115 115 115 / 0.85);
}

.border-t-gray-500\/90 {
  border-top-color: rgb(115 115 115 / 0.9);
}

.border-t-gray-500\/95 {
  border-top-color: rgb(115 115 115 / 0.95);
}

.border-t-gray-600 {
  --tw-border-opacity: 1;
  border-top-color: rgb(82 82 82 / var(--tw-border-opacity, 1));
}

.border-t-gray-600\/0 {
  border-top-color: rgb(82 82 82 / 0);
}

.border-t-gray-600\/10 {
  border-top-color: rgb(82 82 82 / 0.1);
}

.border-t-gray-600\/100 {
  border-top-color: rgb(82 82 82 / 1);
}

.border-t-gray-600\/15 {
  border-top-color: rgb(82 82 82 / 0.15);
}

.border-t-gray-600\/20 {
  border-top-color: rgb(82 82 82 / 0.2);
}

.border-t-gray-600\/25 {
  border-top-color: rgb(82 82 82 / 0.25);
}

.border-t-gray-600\/30 {
  border-top-color: rgb(82 82 82 / 0.3);
}

.border-t-gray-600\/35 {
  border-top-color: rgb(82 82 82 / 0.35);
}

.border-t-gray-600\/40 {
  border-top-color: rgb(82 82 82 / 0.4);
}

.border-t-gray-600\/45 {
  border-top-color: rgb(82 82 82 / 0.45);
}

.border-t-gray-600\/5 {
  border-top-color: rgb(82 82 82 / 0.05);
}

.border-t-gray-600\/50 {
  border-top-color: rgb(82 82 82 / 0.5);
}

.border-t-gray-600\/55 {
  border-top-color: rgb(82 82 82 / 0.55);
}

.border-t-gray-600\/60 {
  border-top-color: rgb(82 82 82 / 0.6);
}

.border-t-gray-600\/65 {
  border-top-color: rgb(82 82 82 / 0.65);
}

.border-t-gray-600\/70 {
  border-top-color: rgb(82 82 82 / 0.7);
}

.border-t-gray-600\/75 {
  border-top-color: rgb(82 82 82 / 0.75);
}

.border-t-gray-600\/80 {
  border-top-color: rgb(82 82 82 / 0.8);
}

.border-t-gray-600\/85 {
  border-top-color: rgb(82 82 82 / 0.85);
}

.border-t-gray-600\/90 {
  border-top-color: rgb(82 82 82 / 0.9);
}

.border-t-gray-600\/95 {
  border-top-color: rgb(82 82 82 / 0.95);
}

.border-t-gray-700 {
  --tw-border-opacity: 1;
  border-top-color: rgb(64 64 64 / var(--tw-border-opacity, 1));
}

.border-t-gray-700\/0 {
  border-top-color: rgb(64 64 64 / 0);
}

.border-t-gray-700\/10 {
  border-top-color: rgb(64 64 64 / 0.1);
}

.border-t-gray-700\/100 {
  border-top-color: rgb(64 64 64 / 1);
}

.border-t-gray-700\/15 {
  border-top-color: rgb(64 64 64 / 0.15);
}

.border-t-gray-700\/20 {
  border-top-color: rgb(64 64 64 / 0.2);
}

.border-t-gray-700\/25 {
  border-top-color: rgb(64 64 64 / 0.25);
}

.border-t-gray-700\/30 {
  border-top-color: rgb(64 64 64 / 0.3);
}

.border-t-gray-700\/35 {
  border-top-color: rgb(64 64 64 / 0.35);
}

.border-t-gray-700\/40 {
  border-top-color: rgb(64 64 64 / 0.4);
}

.border-t-gray-700\/45 {
  border-top-color: rgb(64 64 64 / 0.45);
}

.border-t-gray-700\/5 {
  border-top-color: rgb(64 64 64 / 0.05);
}

.border-t-gray-700\/50 {
  border-top-color: rgb(64 64 64 / 0.5);
}

.border-t-gray-700\/55 {
  border-top-color: rgb(64 64 64 / 0.55);
}

.border-t-gray-700\/60 {
  border-top-color: rgb(64 64 64 / 0.6);
}

.border-t-gray-700\/65 {
  border-top-color: rgb(64 64 64 / 0.65);
}

.border-t-gray-700\/70 {
  border-top-color: rgb(64 64 64 / 0.7);
}

.border-t-gray-700\/75 {
  border-top-color: rgb(64 64 64 / 0.75);
}

.border-t-gray-700\/80 {
  border-top-color: rgb(64 64 64 / 0.8);
}

.border-t-gray-700\/85 {
  border-top-color: rgb(64 64 64 / 0.85);
}

.border-t-gray-700\/90 {
  border-top-color: rgb(64 64 64 / 0.9);
}

.border-t-gray-700\/95 {
  border-top-color: rgb(64 64 64 / 0.95);
}

.border-t-gray-800 {
  --tw-border-opacity: 1;
  border-top-color: rgb(38 38 38 / var(--tw-border-opacity, 1));
}

.border-t-gray-800\/0 {
  border-top-color: rgb(38 38 38 / 0);
}

.border-t-gray-800\/10 {
  border-top-color: rgb(38 38 38 / 0.1);
}

.border-t-gray-800\/100 {
  border-top-color: rgb(38 38 38 / 1);
}

.border-t-gray-800\/15 {
  border-top-color: rgb(38 38 38 / 0.15);
}

.border-t-gray-800\/20 {
  border-top-color: rgb(38 38 38 / 0.2);
}

.border-t-gray-800\/25 {
  border-top-color: rgb(38 38 38 / 0.25);
}

.border-t-gray-800\/30 {
  border-top-color: rgb(38 38 38 / 0.3);
}

.border-t-gray-800\/35 {
  border-top-color: rgb(38 38 38 / 0.35);
}

.border-t-gray-800\/40 {
  border-top-color: rgb(38 38 38 / 0.4);
}

.border-t-gray-800\/45 {
  border-top-color: rgb(38 38 38 / 0.45);
}

.border-t-gray-800\/5 {
  border-top-color: rgb(38 38 38 / 0.05);
}

.border-t-gray-800\/50 {
  border-top-color: rgb(38 38 38 / 0.5);
}

.border-t-gray-800\/55 {
  border-top-color: rgb(38 38 38 / 0.55);
}

.border-t-gray-800\/60 {
  border-top-color: rgb(38 38 38 / 0.6);
}

.border-t-gray-800\/65 {
  border-top-color: rgb(38 38 38 / 0.65);
}

.border-t-gray-800\/70 {
  border-top-color: rgb(38 38 38 / 0.7);
}

.border-t-gray-800\/75 {
  border-top-color: rgb(38 38 38 / 0.75);
}

.border-t-gray-800\/80 {
  border-top-color: rgb(38 38 38 / 0.8);
}

.border-t-gray-800\/85 {
  border-top-color: rgb(38 38 38 / 0.85);
}

.border-t-gray-800\/90 {
  border-top-color: rgb(38 38 38 / 0.9);
}

.border-t-gray-800\/95 {
  border-top-color: rgb(38 38 38 / 0.95);
}

.border-t-gray-900 {
  --tw-border-opacity: 1;
  border-top-color: rgb(23 23 23 / var(--tw-border-opacity, 1));
}

.border-t-gray-900\/0 {
  border-top-color: rgb(23 23 23 / 0);
}

.border-t-gray-900\/10 {
  border-top-color: rgb(23 23 23 / 0.1);
}

.border-t-gray-900\/100 {
  border-top-color: rgb(23 23 23 / 1);
}

.border-t-gray-900\/15 {
  border-top-color: rgb(23 23 23 / 0.15);
}

.border-t-gray-900\/20 {
  border-top-color: rgb(23 23 23 / 0.2);
}

.border-t-gray-900\/25 {
  border-top-color: rgb(23 23 23 / 0.25);
}

.border-t-gray-900\/30 {
  border-top-color: rgb(23 23 23 / 0.3);
}

.border-t-gray-900\/35 {
  border-top-color: rgb(23 23 23 / 0.35);
}

.border-t-gray-900\/40 {
  border-top-color: rgb(23 23 23 / 0.4);
}

.border-t-gray-900\/45 {
  border-top-color: rgb(23 23 23 / 0.45);
}

.border-t-gray-900\/5 {
  border-top-color: rgb(23 23 23 / 0.05);
}

.border-t-gray-900\/50 {
  border-top-color: rgb(23 23 23 / 0.5);
}

.border-t-gray-900\/55 {
  border-top-color: rgb(23 23 23 / 0.55);
}

.border-t-gray-900\/60 {
  border-top-color: rgb(23 23 23 / 0.6);
}

.border-t-gray-900\/65 {
  border-top-color: rgb(23 23 23 / 0.65);
}

.border-t-gray-900\/70 {
  border-top-color: rgb(23 23 23 / 0.7);
}

.border-t-gray-900\/75 {
  border-top-color: rgb(23 23 23 / 0.75);
}

.border-t-gray-900\/80 {
  border-top-color: rgb(23 23 23 / 0.8);
}

.border-t-gray-900\/85 {
  border-top-color: rgb(23 23 23 / 0.85);
}

.border-t-gray-900\/90 {
  border-top-color: rgb(23 23 23 / 0.9);
}

.border-t-gray-900\/95 {
  border-top-color: rgb(23 23 23 / 0.95);
}

.border-t-gray-950 {
  --tw-border-opacity: 1;
  border-top-color: rgb(10 10 10 / var(--tw-border-opacity, 1));
}

.border-t-gray-950\/0 {
  border-top-color: rgb(10 10 10 / 0);
}

.border-t-gray-950\/10 {
  border-top-color: rgb(10 10 10 / 0.1);
}

.border-t-gray-950\/100 {
  border-top-color: rgb(10 10 10 / 1);
}

.border-t-gray-950\/15 {
  border-top-color: rgb(10 10 10 / 0.15);
}

.border-t-gray-950\/20 {
  border-top-color: rgb(10 10 10 / 0.2);
}

.border-t-gray-950\/25 {
  border-top-color: rgb(10 10 10 / 0.25);
}

.border-t-gray-950\/30 {
  border-top-color: rgb(10 10 10 / 0.3);
}

.border-t-gray-950\/35 {
  border-top-color: rgb(10 10 10 / 0.35);
}

.border-t-gray-950\/40 {
  border-top-color: rgb(10 10 10 / 0.4);
}

.border-t-gray-950\/45 {
  border-top-color: rgb(10 10 10 / 0.45);
}

.border-t-gray-950\/5 {
  border-top-color: rgb(10 10 10 / 0.05);
}

.border-t-gray-950\/50 {
  border-top-color: rgb(10 10 10 / 0.5);
}

.border-t-gray-950\/55 {
  border-top-color: rgb(10 10 10 / 0.55);
}

.border-t-gray-950\/60 {
  border-top-color: rgb(10 10 10 / 0.6);
}

.border-t-gray-950\/65 {
  border-top-color: rgb(10 10 10 / 0.65);
}

.border-t-gray-950\/70 {
  border-top-color: rgb(10 10 10 / 0.7);
}

.border-t-gray-950\/75 {
  border-top-color: rgb(10 10 10 / 0.75);
}

.border-t-gray-950\/80 {
  border-top-color: rgb(10 10 10 / 0.8);
}

.border-t-gray-950\/85 {
  border-top-color: rgb(10 10 10 / 0.85);
}

.border-t-gray-950\/90 {
  border-top-color: rgb(10 10 10 / 0.9);
}

.border-t-gray-950\/95 {
  border-top-color: rgb(10 10 10 / 0.95);
}

.border-t-green-100 {
  --tw-border-opacity: 1;
  border-top-color: rgb(220 252 231 / var(--tw-border-opacity, 1));
}

.border-t-green-100\/0 {
  border-top-color: rgb(220 252 231 / 0);
}

.border-t-green-100\/10 {
  border-top-color: rgb(220 252 231 / 0.1);
}

.border-t-green-100\/100 {
  border-top-color: rgb(220 252 231 / 1);
}

.border-t-green-100\/15 {
  border-top-color: rgb(220 252 231 / 0.15);
}

.border-t-green-100\/20 {
  border-top-color: rgb(220 252 231 / 0.2);
}

.border-t-green-100\/25 {
  border-top-color: rgb(220 252 231 / 0.25);
}

.border-t-green-100\/30 {
  border-top-color: rgb(220 252 231 / 0.3);
}

.border-t-green-100\/35 {
  border-top-color: rgb(220 252 231 / 0.35);
}

.border-t-green-100\/40 {
  border-top-color: rgb(220 252 231 / 0.4);
}

.border-t-green-100\/45 {
  border-top-color: rgb(220 252 231 / 0.45);
}

.border-t-green-100\/5 {
  border-top-color: rgb(220 252 231 / 0.05);
}

.border-t-green-100\/50 {
  border-top-color: rgb(220 252 231 / 0.5);
}

.border-t-green-100\/55 {
  border-top-color: rgb(220 252 231 / 0.55);
}

.border-t-green-100\/60 {
  border-top-color: rgb(220 252 231 / 0.6);
}

.border-t-green-100\/65 {
  border-top-color: rgb(220 252 231 / 0.65);
}

.border-t-green-100\/70 {
  border-top-color: rgb(220 252 231 / 0.7);
}

.border-t-green-100\/75 {
  border-top-color: rgb(220 252 231 / 0.75);
}

.border-t-green-100\/80 {
  border-top-color: rgb(220 252 231 / 0.8);
}

.border-t-green-100\/85 {
  border-top-color: rgb(220 252 231 / 0.85);
}

.border-t-green-100\/90 {
  border-top-color: rgb(220 252 231 / 0.9);
}

.border-t-green-100\/95 {
  border-top-color: rgb(220 252 231 / 0.95);
}

.border-t-green-200 {
  --tw-border-opacity: 1;
  border-top-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
}

.border-t-green-200\/0 {
  border-top-color: rgb(187 247 208 / 0);
}

.border-t-green-200\/10 {
  border-top-color: rgb(187 247 208 / 0.1);
}

.border-t-green-200\/100 {
  border-top-color: rgb(187 247 208 / 1);
}

.border-t-green-200\/15 {
  border-top-color: rgb(187 247 208 / 0.15);
}

.border-t-green-200\/20 {
  border-top-color: rgb(187 247 208 / 0.2);
}

.border-t-green-200\/25 {
  border-top-color: rgb(187 247 208 / 0.25);
}

.border-t-green-200\/30 {
  border-top-color: rgb(187 247 208 / 0.3);
}

.border-t-green-200\/35 {
  border-top-color: rgb(187 247 208 / 0.35);
}

.border-t-green-200\/40 {
  border-top-color: rgb(187 247 208 / 0.4);
}

.border-t-green-200\/45 {
  border-top-color: rgb(187 247 208 / 0.45);
}

.border-t-green-200\/5 {
  border-top-color: rgb(187 247 208 / 0.05);
}

.border-t-green-200\/50 {
  border-top-color: rgb(187 247 208 / 0.5);
}

.border-t-green-200\/55 {
  border-top-color: rgb(187 247 208 / 0.55);
}

.border-t-green-200\/60 {
  border-top-color: rgb(187 247 208 / 0.6);
}

.border-t-green-200\/65 {
  border-top-color: rgb(187 247 208 / 0.65);
}

.border-t-green-200\/70 {
  border-top-color: rgb(187 247 208 / 0.7);
}

.border-t-green-200\/75 {
  border-top-color: rgb(187 247 208 / 0.75);
}

.border-t-green-200\/80 {
  border-top-color: rgb(187 247 208 / 0.8);
}

.border-t-green-200\/85 {
  border-top-color: rgb(187 247 208 / 0.85);
}

.border-t-green-200\/90 {
  border-top-color: rgb(187 247 208 / 0.9);
}

.border-t-green-200\/95 {
  border-top-color: rgb(187 247 208 / 0.95);
}

.border-t-green-300 {
  --tw-border-opacity: 1;
  border-top-color: rgb(134 239 172 / var(--tw-border-opacity, 1));
}

.border-t-green-300\/0 {
  border-top-color: rgb(134 239 172 / 0);
}

.border-t-green-300\/10 {
  border-top-color: rgb(134 239 172 / 0.1);
}

.border-t-green-300\/100 {
  border-top-color: rgb(134 239 172 / 1);
}

.border-t-green-300\/15 {
  border-top-color: rgb(134 239 172 / 0.15);
}

.border-t-green-300\/20 {
  border-top-color: rgb(134 239 172 / 0.2);
}

.border-t-green-300\/25 {
  border-top-color: rgb(134 239 172 / 0.25);
}

.border-t-green-300\/30 {
  border-top-color: rgb(134 239 172 / 0.3);
}

.border-t-green-300\/35 {
  border-top-color: rgb(134 239 172 / 0.35);
}

.border-t-green-300\/40 {
  border-top-color: rgb(134 239 172 / 0.4);
}

.border-t-green-300\/45 {
  border-top-color: rgb(134 239 172 / 0.45);
}

.border-t-green-300\/5 {
  border-top-color: rgb(134 239 172 / 0.05);
}

.border-t-green-300\/50 {
  border-top-color: rgb(134 239 172 / 0.5);
}

.border-t-green-300\/55 {
  border-top-color: rgb(134 239 172 / 0.55);
}

.border-t-green-300\/60 {
  border-top-color: rgb(134 239 172 / 0.6);
}

.border-t-green-300\/65 {
  border-top-color: rgb(134 239 172 / 0.65);
}

.border-t-green-300\/70 {
  border-top-color: rgb(134 239 172 / 0.7);
}

.border-t-green-300\/75 {
  border-top-color: rgb(134 239 172 / 0.75);
}

.border-t-green-300\/80 {
  border-top-color: rgb(134 239 172 / 0.8);
}

.border-t-green-300\/85 {
  border-top-color: rgb(134 239 172 / 0.85);
}

.border-t-green-300\/90 {
  border-top-color: rgb(134 239 172 / 0.9);
}

.border-t-green-300\/95 {
  border-top-color: rgb(134 239 172 / 0.95);
}

.border-t-green-400 {
  --tw-border-opacity: 1;
  border-top-color: rgb(74 222 128 / var(--tw-border-opacity, 1));
}

.border-t-green-400\/0 {
  border-top-color: rgb(74 222 128 / 0);
}

.border-t-green-400\/10 {
  border-top-color: rgb(74 222 128 / 0.1);
}

.border-t-green-400\/100 {
  border-top-color: rgb(74 222 128 / 1);
}

.border-t-green-400\/15 {
  border-top-color: rgb(74 222 128 / 0.15);
}

.border-t-green-400\/20 {
  border-top-color: rgb(74 222 128 / 0.2);
}

.border-t-green-400\/25 {
  border-top-color: rgb(74 222 128 / 0.25);
}

.border-t-green-400\/30 {
  border-top-color: rgb(74 222 128 / 0.3);
}

.border-t-green-400\/35 {
  border-top-color: rgb(74 222 128 / 0.35);
}

.border-t-green-400\/40 {
  border-top-color: rgb(74 222 128 / 0.4);
}

.border-t-green-400\/45 {
  border-top-color: rgb(74 222 128 / 0.45);
}

.border-t-green-400\/5 {
  border-top-color: rgb(74 222 128 / 0.05);
}

.border-t-green-400\/50 {
  border-top-color: rgb(74 222 128 / 0.5);
}

.border-t-green-400\/55 {
  border-top-color: rgb(74 222 128 / 0.55);
}

.border-t-green-400\/60 {
  border-top-color: rgb(74 222 128 / 0.6);
}

.border-t-green-400\/65 {
  border-top-color: rgb(74 222 128 / 0.65);
}

.border-t-green-400\/70 {
  border-top-color: rgb(74 222 128 / 0.7);
}

.border-t-green-400\/75 {
  border-top-color: rgb(74 222 128 / 0.75);
}

.border-t-green-400\/80 {
  border-top-color: rgb(74 222 128 / 0.8);
}

.border-t-green-400\/85 {
  border-top-color: rgb(74 222 128 / 0.85);
}

.border-t-green-400\/90 {
  border-top-color: rgb(74 222 128 / 0.9);
}

.border-t-green-400\/95 {
  border-top-color: rgb(74 222 128 / 0.95);
}

.border-t-green-50 {
  --tw-border-opacity: 1;
  border-top-color: rgb(240 253 244 / var(--tw-border-opacity, 1));
}

.border-t-green-50\/0 {
  border-top-color: rgb(240 253 244 / 0);
}

.border-t-green-50\/10 {
  border-top-color: rgb(240 253 244 / 0.1);
}

.border-t-green-50\/100 {
  border-top-color: rgb(240 253 244 / 1);
}

.border-t-green-50\/15 {
  border-top-color: rgb(240 253 244 / 0.15);
}

.border-t-green-50\/20 {
  border-top-color: rgb(240 253 244 / 0.2);
}

.border-t-green-50\/25 {
  border-top-color: rgb(240 253 244 / 0.25);
}

.border-t-green-50\/30 {
  border-top-color: rgb(240 253 244 / 0.3);
}

.border-t-green-50\/35 {
  border-top-color: rgb(240 253 244 / 0.35);
}

.border-t-green-50\/40 {
  border-top-color: rgb(240 253 244 / 0.4);
}

.border-t-green-50\/45 {
  border-top-color: rgb(240 253 244 / 0.45);
}

.border-t-green-50\/5 {
  border-top-color: rgb(240 253 244 / 0.05);
}

.border-t-green-50\/50 {
  border-top-color: rgb(240 253 244 / 0.5);
}

.border-t-green-50\/55 {
  border-top-color: rgb(240 253 244 / 0.55);
}

.border-t-green-50\/60 {
  border-top-color: rgb(240 253 244 / 0.6);
}

.border-t-green-50\/65 {
  border-top-color: rgb(240 253 244 / 0.65);
}

.border-t-green-50\/70 {
  border-top-color: rgb(240 253 244 / 0.7);
}

.border-t-green-50\/75 {
  border-top-color: rgb(240 253 244 / 0.75);
}

.border-t-green-50\/80 {
  border-top-color: rgb(240 253 244 / 0.8);
}

.border-t-green-50\/85 {
  border-top-color: rgb(240 253 244 / 0.85);
}

.border-t-green-50\/90 {
  border-top-color: rgb(240 253 244 / 0.9);
}

.border-t-green-50\/95 {
  border-top-color: rgb(240 253 244 / 0.95);
}

.border-t-green-500 {
  --tw-border-opacity: 1;
  border-top-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
}

.border-t-green-500\/0 {
  border-top-color: rgb(34 197 94 / 0);
}

.border-t-green-500\/10 {
  border-top-color: rgb(34 197 94 / 0.1);
}

.border-t-green-500\/100 {
  border-top-color: rgb(34 197 94 / 1);
}

.border-t-green-500\/15 {
  border-top-color: rgb(34 197 94 / 0.15);
}

.border-t-green-500\/20 {
  border-top-color: rgb(34 197 94 / 0.2);
}

.border-t-green-500\/25 {
  border-top-color: rgb(34 197 94 / 0.25);
}

.border-t-green-500\/30 {
  border-top-color: rgb(34 197 94 / 0.3);
}

.border-t-green-500\/35 {
  border-top-color: rgb(34 197 94 / 0.35);
}

.border-t-green-500\/40 {
  border-top-color: rgb(34 197 94 / 0.4);
}

.border-t-green-500\/45 {
  border-top-color: rgb(34 197 94 / 0.45);
}

.border-t-green-500\/5 {
  border-top-color: rgb(34 197 94 / 0.05);
}

.border-t-green-500\/50 {
  border-top-color: rgb(34 197 94 / 0.5);
}

.border-t-green-500\/55 {
  border-top-color: rgb(34 197 94 / 0.55);
}

.border-t-green-500\/60 {
  border-top-color: rgb(34 197 94 / 0.6);
}

.border-t-green-500\/65 {
  border-top-color: rgb(34 197 94 / 0.65);
}

.border-t-green-500\/70 {
  border-top-color: rgb(34 197 94 / 0.7);
}

.border-t-green-500\/75 {
  border-top-color: rgb(34 197 94 / 0.75);
}

.border-t-green-500\/80 {
  border-top-color: rgb(34 197 94 / 0.8);
}

.border-t-green-500\/85 {
  border-top-color: rgb(34 197 94 / 0.85);
}

.border-t-green-500\/90 {
  border-top-color: rgb(34 197 94 / 0.9);
}

.border-t-green-500\/95 {
  border-top-color: rgb(34 197 94 / 0.95);
}

.border-t-green-600 {
  --tw-border-opacity: 1;
  border-top-color: rgb(22 163 74 / var(--tw-border-opacity, 1));
}

.border-t-green-600\/0 {
  border-top-color: rgb(22 163 74 / 0);
}

.border-t-green-600\/10 {
  border-top-color: rgb(22 163 74 / 0.1);
}

.border-t-green-600\/100 {
  border-top-color: rgb(22 163 74 / 1);
}

.border-t-green-600\/15 {
  border-top-color: rgb(22 163 74 / 0.15);
}

.border-t-green-600\/20 {
  border-top-color: rgb(22 163 74 / 0.2);
}

.border-t-green-600\/25 {
  border-top-color: rgb(22 163 74 / 0.25);
}

.border-t-green-600\/30 {
  border-top-color: rgb(22 163 74 / 0.3);
}

.border-t-green-600\/35 {
  border-top-color: rgb(22 163 74 / 0.35);
}

.border-t-green-600\/40 {
  border-top-color: rgb(22 163 74 / 0.4);
}

.border-t-green-600\/45 {
  border-top-color: rgb(22 163 74 / 0.45);
}

.border-t-green-600\/5 {
  border-top-color: rgb(22 163 74 / 0.05);
}

.border-t-green-600\/50 {
  border-top-color: rgb(22 163 74 / 0.5);
}

.border-t-green-600\/55 {
  border-top-color: rgb(22 163 74 / 0.55);
}

.border-t-green-600\/60 {
  border-top-color: rgb(22 163 74 / 0.6);
}

.border-t-green-600\/65 {
  border-top-color: rgb(22 163 74 / 0.65);
}

.border-t-green-600\/70 {
  border-top-color: rgb(22 163 74 / 0.7);
}

.border-t-green-600\/75 {
  border-top-color: rgb(22 163 74 / 0.75);
}

.border-t-green-600\/80 {
  border-top-color: rgb(22 163 74 / 0.8);
}

.border-t-green-600\/85 {
  border-top-color: rgb(22 163 74 / 0.85);
}

.border-t-green-600\/90 {
  border-top-color: rgb(22 163 74 / 0.9);
}

.border-t-green-600\/95 {
  border-top-color: rgb(22 163 74 / 0.95);
}

.border-t-green-700 {
  --tw-border-opacity: 1;
  border-top-color: rgb(21 128 61 / var(--tw-border-opacity, 1));
}

.border-t-green-700\/0 {
  border-top-color: rgb(21 128 61 / 0);
}

.border-t-green-700\/10 {
  border-top-color: rgb(21 128 61 / 0.1);
}

.border-t-green-700\/100 {
  border-top-color: rgb(21 128 61 / 1);
}

.border-t-green-700\/15 {
  border-top-color: rgb(21 128 61 / 0.15);
}

.border-t-green-700\/20 {
  border-top-color: rgb(21 128 61 / 0.2);
}

.border-t-green-700\/25 {
  border-top-color: rgb(21 128 61 / 0.25);
}

.border-t-green-700\/30 {
  border-top-color: rgb(21 128 61 / 0.3);
}

.border-t-green-700\/35 {
  border-top-color: rgb(21 128 61 / 0.35);
}

.border-t-green-700\/40 {
  border-top-color: rgb(21 128 61 / 0.4);
}

.border-t-green-700\/45 {
  border-top-color: rgb(21 128 61 / 0.45);
}

.border-t-green-700\/5 {
  border-top-color: rgb(21 128 61 / 0.05);
}

.border-t-green-700\/50 {
  border-top-color: rgb(21 128 61 / 0.5);
}

.border-t-green-700\/55 {
  border-top-color: rgb(21 128 61 / 0.55);
}

.border-t-green-700\/60 {
  border-top-color: rgb(21 128 61 / 0.6);
}

.border-t-green-700\/65 {
  border-top-color: rgb(21 128 61 / 0.65);
}

.border-t-green-700\/70 {
  border-top-color: rgb(21 128 61 / 0.7);
}

.border-t-green-700\/75 {
  border-top-color: rgb(21 128 61 / 0.75);
}

.border-t-green-700\/80 {
  border-top-color: rgb(21 128 61 / 0.8);
}

.border-t-green-700\/85 {
  border-top-color: rgb(21 128 61 / 0.85);
}

.border-t-green-700\/90 {
  border-top-color: rgb(21 128 61 / 0.9);
}

.border-t-green-700\/95 {
  border-top-color: rgb(21 128 61 / 0.95);
}

.border-t-green-800 {
  --tw-border-opacity: 1;
  border-top-color: rgb(22 101 52 / var(--tw-border-opacity, 1));
}

.border-t-green-800\/0 {
  border-top-color: rgb(22 101 52 / 0);
}

.border-t-green-800\/10 {
  border-top-color: rgb(22 101 52 / 0.1);
}

.border-t-green-800\/100 {
  border-top-color: rgb(22 101 52 / 1);
}

.border-t-green-800\/15 {
  border-top-color: rgb(22 101 52 / 0.15);
}

.border-t-green-800\/20 {
  border-top-color: rgb(22 101 52 / 0.2);
}

.border-t-green-800\/25 {
  border-top-color: rgb(22 101 52 / 0.25);
}

.border-t-green-800\/30 {
  border-top-color: rgb(22 101 52 / 0.3);
}

.border-t-green-800\/35 {
  border-top-color: rgb(22 101 52 / 0.35);
}

.border-t-green-800\/40 {
  border-top-color: rgb(22 101 52 / 0.4);
}

.border-t-green-800\/45 {
  border-top-color: rgb(22 101 52 / 0.45);
}

.border-t-green-800\/5 {
  border-top-color: rgb(22 101 52 / 0.05);
}

.border-t-green-800\/50 {
  border-top-color: rgb(22 101 52 / 0.5);
}

.border-t-green-800\/55 {
  border-top-color: rgb(22 101 52 / 0.55);
}

.border-t-green-800\/60 {
  border-top-color: rgb(22 101 52 / 0.6);
}

.border-t-green-800\/65 {
  border-top-color: rgb(22 101 52 / 0.65);
}

.border-t-green-800\/70 {
  border-top-color: rgb(22 101 52 / 0.7);
}

.border-t-green-800\/75 {
  border-top-color: rgb(22 101 52 / 0.75);
}

.border-t-green-800\/80 {
  border-top-color: rgb(22 101 52 / 0.8);
}

.border-t-green-800\/85 {
  border-top-color: rgb(22 101 52 / 0.85);
}

.border-t-green-800\/90 {
  border-top-color: rgb(22 101 52 / 0.9);
}

.border-t-green-800\/95 {
  border-top-color: rgb(22 101 52 / 0.95);
}

.border-t-green-900 {
  --tw-border-opacity: 1;
  border-top-color: rgb(20 83 45 / var(--tw-border-opacity, 1));
}

.border-t-green-900\/0 {
  border-top-color: rgb(20 83 45 / 0);
}

.border-t-green-900\/10 {
  border-top-color: rgb(20 83 45 / 0.1);
}

.border-t-green-900\/100 {
  border-top-color: rgb(20 83 45 / 1);
}

.border-t-green-900\/15 {
  border-top-color: rgb(20 83 45 / 0.15);
}

.border-t-green-900\/20 {
  border-top-color: rgb(20 83 45 / 0.2);
}

.border-t-green-900\/25 {
  border-top-color: rgb(20 83 45 / 0.25);
}

.border-t-green-900\/30 {
  border-top-color: rgb(20 83 45 / 0.3);
}

.border-t-green-900\/35 {
  border-top-color: rgb(20 83 45 / 0.35);
}

.border-t-green-900\/40 {
  border-top-color: rgb(20 83 45 / 0.4);
}

.border-t-green-900\/45 {
  border-top-color: rgb(20 83 45 / 0.45);
}

.border-t-green-900\/5 {
  border-top-color: rgb(20 83 45 / 0.05);
}

.border-t-green-900\/50 {
  border-top-color: rgb(20 83 45 / 0.5);
}

.border-t-green-900\/55 {
  border-top-color: rgb(20 83 45 / 0.55);
}

.border-t-green-900\/60 {
  border-top-color: rgb(20 83 45 / 0.6);
}

.border-t-green-900\/65 {
  border-top-color: rgb(20 83 45 / 0.65);
}

.border-t-green-900\/70 {
  border-top-color: rgb(20 83 45 / 0.7);
}

.border-t-green-900\/75 {
  border-top-color: rgb(20 83 45 / 0.75);
}

.border-t-green-900\/80 {
  border-top-color: rgb(20 83 45 / 0.8);
}

.border-t-green-900\/85 {
  border-top-color: rgb(20 83 45 / 0.85);
}

.border-t-green-900\/90 {
  border-top-color: rgb(20 83 45 / 0.9);
}

.border-t-green-900\/95 {
  border-top-color: rgb(20 83 45 / 0.95);
}

.border-t-green-950 {
  --tw-border-opacity: 1;
  border-top-color: rgb(5 46 22 / var(--tw-border-opacity, 1));
}

.border-t-green-950\/0 {
  border-top-color: rgb(5 46 22 / 0);
}

.border-t-green-950\/10 {
  border-top-color: rgb(5 46 22 / 0.1);
}

.border-t-green-950\/100 {
  border-top-color: rgb(5 46 22 / 1);
}

.border-t-green-950\/15 {
  border-top-color: rgb(5 46 22 / 0.15);
}

.border-t-green-950\/20 {
  border-top-color: rgb(5 46 22 / 0.2);
}

.border-t-green-950\/25 {
  border-top-color: rgb(5 46 22 / 0.25);
}

.border-t-green-950\/30 {
  border-top-color: rgb(5 46 22 / 0.3);
}

.border-t-green-950\/35 {
  border-top-color: rgb(5 46 22 / 0.35);
}

.border-t-green-950\/40 {
  border-top-color: rgb(5 46 22 / 0.4);
}

.border-t-green-950\/45 {
  border-top-color: rgb(5 46 22 / 0.45);
}

.border-t-green-950\/5 {
  border-top-color: rgb(5 46 22 / 0.05);
}

.border-t-green-950\/50 {
  border-top-color: rgb(5 46 22 / 0.5);
}

.border-t-green-950\/55 {
  border-top-color: rgb(5 46 22 / 0.55);
}

.border-t-green-950\/60 {
  border-top-color: rgb(5 46 22 / 0.6);
}

.border-t-green-950\/65 {
  border-top-color: rgb(5 46 22 / 0.65);
}

.border-t-green-950\/70 {
  border-top-color: rgb(5 46 22 / 0.7);
}

.border-t-green-950\/75 {
  border-top-color: rgb(5 46 22 / 0.75);
}

.border-t-green-950\/80 {
  border-top-color: rgb(5 46 22 / 0.8);
}

.border-t-green-950\/85 {
  border-top-color: rgb(5 46 22 / 0.85);
}

.border-t-green-950\/90 {
  border-top-color: rgb(5 46 22 / 0.9);
}

.border-t-green-950\/95 {
  border-top-color: rgb(5 46 22 / 0.95);
}

.border-t-red-100 {
  --tw-border-opacity: 1;
  border-top-color: rgb(254 226 226 / var(--tw-border-opacity, 1));
}

.border-t-red-100\/0 {
  border-top-color: rgb(254 226 226 / 0);
}

.border-t-red-100\/10 {
  border-top-color: rgb(254 226 226 / 0.1);
}

.border-t-red-100\/100 {
  border-top-color: rgb(254 226 226 / 1);
}

.border-t-red-100\/15 {
  border-top-color: rgb(254 226 226 / 0.15);
}

.border-t-red-100\/20 {
  border-top-color: rgb(254 226 226 / 0.2);
}

.border-t-red-100\/25 {
  border-top-color: rgb(254 226 226 / 0.25);
}

.border-t-red-100\/30 {
  border-top-color: rgb(254 226 226 / 0.3);
}

.border-t-red-100\/35 {
  border-top-color: rgb(254 226 226 / 0.35);
}

.border-t-red-100\/40 {
  border-top-color: rgb(254 226 226 / 0.4);
}

.border-t-red-100\/45 {
  border-top-color: rgb(254 226 226 / 0.45);
}

.border-t-red-100\/5 {
  border-top-color: rgb(254 226 226 / 0.05);
}

.border-t-red-100\/50 {
  border-top-color: rgb(254 226 226 / 0.5);
}

.border-t-red-100\/55 {
  border-top-color: rgb(254 226 226 / 0.55);
}

.border-t-red-100\/60 {
  border-top-color: rgb(254 226 226 / 0.6);
}

.border-t-red-100\/65 {
  border-top-color: rgb(254 226 226 / 0.65);
}

.border-t-red-100\/70 {
  border-top-color: rgb(254 226 226 / 0.7);
}

.border-t-red-100\/75 {
  border-top-color: rgb(254 226 226 / 0.75);
}

.border-t-red-100\/80 {
  border-top-color: rgb(254 226 226 / 0.8);
}

.border-t-red-100\/85 {
  border-top-color: rgb(254 226 226 / 0.85);
}

.border-t-red-100\/90 {
  border-top-color: rgb(254 226 226 / 0.9);
}

.border-t-red-100\/95 {
  border-top-color: rgb(254 226 226 / 0.95);
}

.border-t-red-200 {
  --tw-border-opacity: 1;
  border-top-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}

.border-t-red-200\/0 {
  border-top-color: rgb(254 202 202 / 0);
}

.border-t-red-200\/10 {
  border-top-color: rgb(254 202 202 / 0.1);
}

.border-t-red-200\/100 {
  border-top-color: rgb(254 202 202 / 1);
}

.border-t-red-200\/15 {
  border-top-color: rgb(254 202 202 / 0.15);
}

.border-t-red-200\/20 {
  border-top-color: rgb(254 202 202 / 0.2);
}

.border-t-red-200\/25 {
  border-top-color: rgb(254 202 202 / 0.25);
}

.border-t-red-200\/30 {
  border-top-color: rgb(254 202 202 / 0.3);
}

.border-t-red-200\/35 {
  border-top-color: rgb(254 202 202 / 0.35);
}

.border-t-red-200\/40 {
  border-top-color: rgb(254 202 202 / 0.4);
}

.border-t-red-200\/45 {
  border-top-color: rgb(254 202 202 / 0.45);
}

.border-t-red-200\/5 {
  border-top-color: rgb(254 202 202 / 0.05);
}

.border-t-red-200\/50 {
  border-top-color: rgb(254 202 202 / 0.5);
}

.border-t-red-200\/55 {
  border-top-color: rgb(254 202 202 / 0.55);
}

.border-t-red-200\/60 {
  border-top-color: rgb(254 202 202 / 0.6);
}

.border-t-red-200\/65 {
  border-top-color: rgb(254 202 202 / 0.65);
}

.border-t-red-200\/70 {
  border-top-color: rgb(254 202 202 / 0.7);
}

.border-t-red-200\/75 {
  border-top-color: rgb(254 202 202 / 0.75);
}

.border-t-red-200\/80 {
  border-top-color: rgb(254 202 202 / 0.8);
}

.border-t-red-200\/85 {
  border-top-color: rgb(254 202 202 / 0.85);
}

.border-t-red-200\/90 {
  border-top-color: rgb(254 202 202 / 0.9);
}

.border-t-red-200\/95 {
  border-top-color: rgb(254 202 202 / 0.95);
}

.border-t-red-300 {
  --tw-border-opacity: 1;
  border-top-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
}

.border-t-red-300\/0 {
  border-top-color: rgb(252 165 165 / 0);
}

.border-t-red-300\/10 {
  border-top-color: rgb(252 165 165 / 0.1);
}

.border-t-red-300\/100 {
  border-top-color: rgb(252 165 165 / 1);
}

.border-t-red-300\/15 {
  border-top-color: rgb(252 165 165 / 0.15);
}

.border-t-red-300\/20 {
  border-top-color: rgb(252 165 165 / 0.2);
}

.border-t-red-300\/25 {
  border-top-color: rgb(252 165 165 / 0.25);
}

.border-t-red-300\/30 {
  border-top-color: rgb(252 165 165 / 0.3);
}

.border-t-red-300\/35 {
  border-top-color: rgb(252 165 165 / 0.35);
}

.border-t-red-300\/40 {
  border-top-color: rgb(252 165 165 / 0.4);
}

.border-t-red-300\/45 {
  border-top-color: rgb(252 165 165 / 0.45);
}

.border-t-red-300\/5 {
  border-top-color: rgb(252 165 165 / 0.05);
}

.border-t-red-300\/50 {
  border-top-color: rgb(252 165 165 / 0.5);
}

.border-t-red-300\/55 {
  border-top-color: rgb(252 165 165 / 0.55);
}

.border-t-red-300\/60 {
  border-top-color: rgb(252 165 165 / 0.6);
}

.border-t-red-300\/65 {
  border-top-color: rgb(252 165 165 / 0.65);
}

.border-t-red-300\/70 {
  border-top-color: rgb(252 165 165 / 0.7);
}

.border-t-red-300\/75 {
  border-top-color: rgb(252 165 165 / 0.75);
}

.border-t-red-300\/80 {
  border-top-color: rgb(252 165 165 / 0.8);
}

.border-t-red-300\/85 {
  border-top-color: rgb(252 165 165 / 0.85);
}

.border-t-red-300\/90 {
  border-top-color: rgb(252 165 165 / 0.9);
}

.border-t-red-300\/95 {
  border-top-color: rgb(252 165 165 / 0.95);
}

.border-t-red-400 {
  --tw-border-opacity: 1;
  border-top-color: rgb(248 113 113 / var(--tw-border-opacity, 1));
}

.border-t-red-400\/0 {
  border-top-color: rgb(248 113 113 / 0);
}

.border-t-red-400\/10 {
  border-top-color: rgb(248 113 113 / 0.1);
}

.border-t-red-400\/100 {
  border-top-color: rgb(248 113 113 / 1);
}

.border-t-red-400\/15 {
  border-top-color: rgb(248 113 113 / 0.15);
}

.border-t-red-400\/20 {
  border-top-color: rgb(248 113 113 / 0.2);
}

.border-t-red-400\/25 {
  border-top-color: rgb(248 113 113 / 0.25);
}

.border-t-red-400\/30 {
  border-top-color: rgb(248 113 113 / 0.3);
}

.border-t-red-400\/35 {
  border-top-color: rgb(248 113 113 / 0.35);
}

.border-t-red-400\/40 {
  border-top-color: rgb(248 113 113 / 0.4);
}

.border-t-red-400\/45 {
  border-top-color: rgb(248 113 113 / 0.45);
}

.border-t-red-400\/5 {
  border-top-color: rgb(248 113 113 / 0.05);
}

.border-t-red-400\/50 {
  border-top-color: rgb(248 113 113 / 0.5);
}

.border-t-red-400\/55 {
  border-top-color: rgb(248 113 113 / 0.55);
}

.border-t-red-400\/60 {
  border-top-color: rgb(248 113 113 / 0.6);
}

.border-t-red-400\/65 {
  border-top-color: rgb(248 113 113 / 0.65);
}

.border-t-red-400\/70 {
  border-top-color: rgb(248 113 113 / 0.7);
}

.border-t-red-400\/75 {
  border-top-color: rgb(248 113 113 / 0.75);
}

.border-t-red-400\/80 {
  border-top-color: rgb(248 113 113 / 0.8);
}

.border-t-red-400\/85 {
  border-top-color: rgb(248 113 113 / 0.85);
}

.border-t-red-400\/90 {
  border-top-color: rgb(248 113 113 / 0.9);
}

.border-t-red-400\/95 {
  border-top-color: rgb(248 113 113 / 0.95);
}

.border-t-red-50 {
  --tw-border-opacity: 1;
  border-top-color: rgb(254 242 242 / var(--tw-border-opacity, 1));
}

.border-t-red-50\/0 {
  border-top-color: rgb(254 242 242 / 0);
}

.border-t-red-50\/10 {
  border-top-color: rgb(254 242 242 / 0.1);
}

.border-t-red-50\/100 {
  border-top-color: rgb(254 242 242 / 1);
}

.border-t-red-50\/15 {
  border-top-color: rgb(254 242 242 / 0.15);
}

.border-t-red-50\/20 {
  border-top-color: rgb(254 242 242 / 0.2);
}

.border-t-red-50\/25 {
  border-top-color: rgb(254 242 242 / 0.25);
}

.border-t-red-50\/30 {
  border-top-color: rgb(254 242 242 / 0.3);
}

.border-t-red-50\/35 {
  border-top-color: rgb(254 242 242 / 0.35);
}

.border-t-red-50\/40 {
  border-top-color: rgb(254 242 242 / 0.4);
}

.border-t-red-50\/45 {
  border-top-color: rgb(254 242 242 / 0.45);
}

.border-t-red-50\/5 {
  border-top-color: rgb(254 242 242 / 0.05);
}

.border-t-red-50\/50 {
  border-top-color: rgb(254 242 242 / 0.5);
}

.border-t-red-50\/55 {
  border-top-color: rgb(254 242 242 / 0.55);
}

.border-t-red-50\/60 {
  border-top-color: rgb(254 242 242 / 0.6);
}

.border-t-red-50\/65 {
  border-top-color: rgb(254 242 242 / 0.65);
}

.border-t-red-50\/70 {
  border-top-color: rgb(254 242 242 / 0.7);
}

.border-t-red-50\/75 {
  border-top-color: rgb(254 242 242 / 0.75);
}

.border-t-red-50\/80 {
  border-top-color: rgb(254 242 242 / 0.8);
}

.border-t-red-50\/85 {
  border-top-color: rgb(254 242 242 / 0.85);
}

.border-t-red-50\/90 {
  border-top-color: rgb(254 242 242 / 0.9);
}

.border-t-red-50\/95 {
  border-top-color: rgb(254 242 242 / 0.95);
}

.border-t-red-500 {
  --tw-border-opacity: 1;
  border-top-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}

.border-t-red-500\/0 {
  border-top-color: rgb(239 68 68 / 0);
}

.border-t-red-500\/10 {
  border-top-color: rgb(239 68 68 / 0.1);
}

.border-t-red-500\/100 {
  border-top-color: rgb(239 68 68 / 1);
}

.border-t-red-500\/15 {
  border-top-color: rgb(239 68 68 / 0.15);
}

.border-t-red-500\/20 {
  border-top-color: rgb(239 68 68 / 0.2);
}

.border-t-red-500\/25 {
  border-top-color: rgb(239 68 68 / 0.25);
}

.border-t-red-500\/30 {
  border-top-color: rgb(239 68 68 / 0.3);
}

.border-t-red-500\/35 {
  border-top-color: rgb(239 68 68 / 0.35);
}

.border-t-red-500\/40 {
  border-top-color: rgb(239 68 68 / 0.4);
}

.border-t-red-500\/45 {
  border-top-color: rgb(239 68 68 / 0.45);
}

.border-t-red-500\/5 {
  border-top-color: rgb(239 68 68 / 0.05);
}

.border-t-red-500\/50 {
  border-top-color: rgb(239 68 68 / 0.5);
}

.border-t-red-500\/55 {
  border-top-color: rgb(239 68 68 / 0.55);
}

.border-t-red-500\/60 {
  border-top-color: rgb(239 68 68 / 0.6);
}

.border-t-red-500\/65 {
  border-top-color: rgb(239 68 68 / 0.65);
}

.border-t-red-500\/70 {
  border-top-color: rgb(239 68 68 / 0.7);
}

.border-t-red-500\/75 {
  border-top-color: rgb(239 68 68 / 0.75);
}

.border-t-red-500\/80 {
  border-top-color: rgb(239 68 68 / 0.8);
}

.border-t-red-500\/85 {
  border-top-color: rgb(239 68 68 / 0.85);
}

.border-t-red-500\/90 {
  border-top-color: rgb(239 68 68 / 0.9);
}

.border-t-red-500\/95 {
  border-top-color: rgb(239 68 68 / 0.95);
}

.border-t-red-600 {
  --tw-border-opacity: 1;
  border-top-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
}

.border-t-red-600\/0 {
  border-top-color: rgb(220 38 38 / 0);
}

.border-t-red-600\/10 {
  border-top-color: rgb(220 38 38 / 0.1);
}

.border-t-red-600\/100 {
  border-top-color: rgb(220 38 38 / 1);
}

.border-t-red-600\/15 {
  border-top-color: rgb(220 38 38 / 0.15);
}

.border-t-red-600\/20 {
  border-top-color: rgb(220 38 38 / 0.2);
}

.border-t-red-600\/25 {
  border-top-color: rgb(220 38 38 / 0.25);
}

.border-t-red-600\/30 {
  border-top-color: rgb(220 38 38 / 0.3);
}

.border-t-red-600\/35 {
  border-top-color: rgb(220 38 38 / 0.35);
}

.border-t-red-600\/40 {
  border-top-color: rgb(220 38 38 / 0.4);
}

.border-t-red-600\/45 {
  border-top-color: rgb(220 38 38 / 0.45);
}

.border-t-red-600\/5 {
  border-top-color: rgb(220 38 38 / 0.05);
}

.border-t-red-600\/50 {
  border-top-color: rgb(220 38 38 / 0.5);
}

.border-t-red-600\/55 {
  border-top-color: rgb(220 38 38 / 0.55);
}

.border-t-red-600\/60 {
  border-top-color: rgb(220 38 38 / 0.6);
}

.border-t-red-600\/65 {
  border-top-color: rgb(220 38 38 / 0.65);
}

.border-t-red-600\/70 {
  border-top-color: rgb(220 38 38 / 0.7);
}

.border-t-red-600\/75 {
  border-top-color: rgb(220 38 38 / 0.75);
}

.border-t-red-600\/80 {
  border-top-color: rgb(220 38 38 / 0.8);
}

.border-t-red-600\/85 {
  border-top-color: rgb(220 38 38 / 0.85);
}

.border-t-red-600\/90 {
  border-top-color: rgb(220 38 38 / 0.9);
}

.border-t-red-600\/95 {
  border-top-color: rgb(220 38 38 / 0.95);
}

.border-t-red-700 {
  --tw-border-opacity: 1;
  border-top-color: rgb(185 28 28 / var(--tw-border-opacity, 1));
}

.border-t-red-700\/0 {
  border-top-color: rgb(185 28 28 / 0);
}

.border-t-red-700\/10 {
  border-top-color: rgb(185 28 28 / 0.1);
}

.border-t-red-700\/100 {
  border-top-color: rgb(185 28 28 / 1);
}

.border-t-red-700\/15 {
  border-top-color: rgb(185 28 28 / 0.15);
}

.border-t-red-700\/20 {
  border-top-color: rgb(185 28 28 / 0.2);
}

.border-t-red-700\/25 {
  border-top-color: rgb(185 28 28 / 0.25);
}

.border-t-red-700\/30 {
  border-top-color: rgb(185 28 28 / 0.3);
}

.border-t-red-700\/35 {
  border-top-color: rgb(185 28 28 / 0.35);
}

.border-t-red-700\/40 {
  border-top-color: rgb(185 28 28 / 0.4);
}

.border-t-red-700\/45 {
  border-top-color: rgb(185 28 28 / 0.45);
}

.border-t-red-700\/5 {
  border-top-color: rgb(185 28 28 / 0.05);
}

.border-t-red-700\/50 {
  border-top-color: rgb(185 28 28 / 0.5);
}

.border-t-red-700\/55 {
  border-top-color: rgb(185 28 28 / 0.55);
}

.border-t-red-700\/60 {
  border-top-color: rgb(185 28 28 / 0.6);
}

.border-t-red-700\/65 {
  border-top-color: rgb(185 28 28 / 0.65);
}

.border-t-red-700\/70 {
  border-top-color: rgb(185 28 28 / 0.7);
}

.border-t-red-700\/75 {
  border-top-color: rgb(185 28 28 / 0.75);
}

.border-t-red-700\/80 {
  border-top-color: rgb(185 28 28 / 0.8);
}

.border-t-red-700\/85 {
  border-top-color: rgb(185 28 28 / 0.85);
}

.border-t-red-700\/90 {
  border-top-color: rgb(185 28 28 / 0.9);
}

.border-t-red-700\/95 {
  border-top-color: rgb(185 28 28 / 0.95);
}

.border-t-red-800 {
  --tw-border-opacity: 1;
  border-top-color: rgb(153 27 27 / var(--tw-border-opacity, 1));
}

.border-t-red-800\/0 {
  border-top-color: rgb(153 27 27 / 0);
}

.border-t-red-800\/10 {
  border-top-color: rgb(153 27 27 / 0.1);
}

.border-t-red-800\/100 {
  border-top-color: rgb(153 27 27 / 1);
}

.border-t-red-800\/15 {
  border-top-color: rgb(153 27 27 / 0.15);
}

.border-t-red-800\/20 {
  border-top-color: rgb(153 27 27 / 0.2);
}

.border-t-red-800\/25 {
  border-top-color: rgb(153 27 27 / 0.25);
}

.border-t-red-800\/30 {
  border-top-color: rgb(153 27 27 / 0.3);
}

.border-t-red-800\/35 {
  border-top-color: rgb(153 27 27 / 0.35);
}

.border-t-red-800\/40 {
  border-top-color: rgb(153 27 27 / 0.4);
}

.border-t-red-800\/45 {
  border-top-color: rgb(153 27 27 / 0.45);
}

.border-t-red-800\/5 {
  border-top-color: rgb(153 27 27 / 0.05);
}

.border-t-red-800\/50 {
  border-top-color: rgb(153 27 27 / 0.5);
}

.border-t-red-800\/55 {
  border-top-color: rgb(153 27 27 / 0.55);
}

.border-t-red-800\/60 {
  border-top-color: rgb(153 27 27 / 0.6);
}

.border-t-red-800\/65 {
  border-top-color: rgb(153 27 27 / 0.65);
}

.border-t-red-800\/70 {
  border-top-color: rgb(153 27 27 / 0.7);
}

.border-t-red-800\/75 {
  border-top-color: rgb(153 27 27 / 0.75);
}

.border-t-red-800\/80 {
  border-top-color: rgb(153 27 27 / 0.8);
}

.border-t-red-800\/85 {
  border-top-color: rgb(153 27 27 / 0.85);
}

.border-t-red-800\/90 {
  border-top-color: rgb(153 27 27 / 0.9);
}

.border-t-red-800\/95 {
  border-top-color: rgb(153 27 27 / 0.95);
}

.border-t-red-900 {
  --tw-border-opacity: 1;
  border-top-color: rgb(127 29 29 / var(--tw-border-opacity, 1));
}

.border-t-red-900\/0 {
  border-top-color: rgb(127 29 29 / 0);
}

.border-t-red-900\/10 {
  border-top-color: rgb(127 29 29 / 0.1);
}

.border-t-red-900\/100 {
  border-top-color: rgb(127 29 29 / 1);
}

.border-t-red-900\/15 {
  border-top-color: rgb(127 29 29 / 0.15);
}

.border-t-red-900\/20 {
  border-top-color: rgb(127 29 29 / 0.2);
}

.border-t-red-900\/25 {
  border-top-color: rgb(127 29 29 / 0.25);
}

.border-t-red-900\/30 {
  border-top-color: rgb(127 29 29 / 0.3);
}

.border-t-red-900\/35 {
  border-top-color: rgb(127 29 29 / 0.35);
}

.border-t-red-900\/40 {
  border-top-color: rgb(127 29 29 / 0.4);
}

.border-t-red-900\/45 {
  border-top-color: rgb(127 29 29 / 0.45);
}

.border-t-red-900\/5 {
  border-top-color: rgb(127 29 29 / 0.05);
}

.border-t-red-900\/50 {
  border-top-color: rgb(127 29 29 / 0.5);
}

.border-t-red-900\/55 {
  border-top-color: rgb(127 29 29 / 0.55);
}

.border-t-red-900\/60 {
  border-top-color: rgb(127 29 29 / 0.6);
}

.border-t-red-900\/65 {
  border-top-color: rgb(127 29 29 / 0.65);
}

.border-t-red-900\/70 {
  border-top-color: rgb(127 29 29 / 0.7);
}

.border-t-red-900\/75 {
  border-top-color: rgb(127 29 29 / 0.75);
}

.border-t-red-900\/80 {
  border-top-color: rgb(127 29 29 / 0.8);
}

.border-t-red-900\/85 {
  border-top-color: rgb(127 29 29 / 0.85);
}

.border-t-red-900\/90 {
  border-top-color: rgb(127 29 29 / 0.9);
}

.border-t-red-900\/95 {
  border-top-color: rgb(127 29 29 / 0.95);
}

.border-t-red-950 {
  --tw-border-opacity: 1;
  border-top-color: rgb(69 10 10 / var(--tw-border-opacity, 1));
}

.border-t-red-950\/0 {
  border-top-color: rgb(69 10 10 / 0);
}

.border-t-red-950\/10 {
  border-top-color: rgb(69 10 10 / 0.1);
}

.border-t-red-950\/100 {
  border-top-color: rgb(69 10 10 / 1);
}

.border-t-red-950\/15 {
  border-top-color: rgb(69 10 10 / 0.15);
}

.border-t-red-950\/20 {
  border-top-color: rgb(69 10 10 / 0.2);
}

.border-t-red-950\/25 {
  border-top-color: rgb(69 10 10 / 0.25);
}

.border-t-red-950\/30 {
  border-top-color: rgb(69 10 10 / 0.3);
}

.border-t-red-950\/35 {
  border-top-color: rgb(69 10 10 / 0.35);
}

.border-t-red-950\/40 {
  border-top-color: rgb(69 10 10 / 0.4);
}

.border-t-red-950\/45 {
  border-top-color: rgb(69 10 10 / 0.45);
}

.border-t-red-950\/5 {
  border-top-color: rgb(69 10 10 / 0.05);
}

.border-t-red-950\/50 {
  border-top-color: rgb(69 10 10 / 0.5);
}

.border-t-red-950\/55 {
  border-top-color: rgb(69 10 10 / 0.55);
}

.border-t-red-950\/60 {
  border-top-color: rgb(69 10 10 / 0.6);
}

.border-t-red-950\/65 {
  border-top-color: rgb(69 10 10 / 0.65);
}

.border-t-red-950\/70 {
  border-top-color: rgb(69 10 10 / 0.7);
}

.border-t-red-950\/75 {
  border-top-color: rgb(69 10 10 / 0.75);
}

.border-t-red-950\/80 {
  border-top-color: rgb(69 10 10 / 0.8);
}

.border-t-red-950\/85 {
  border-top-color: rgb(69 10 10 / 0.85);
}

.border-t-red-950\/90 {
  border-top-color: rgb(69 10 10 / 0.9);
}

.border-t-red-950\/95 {
  border-top-color: rgb(69 10 10 / 0.95);
}

.border-t-transparent {
  border-top-color: transparent;
}

.border-t-transparent\/0 {
  border-top-color: rgb(0 0 0 / 0);
}

.border-t-transparent\/10 {
  border-top-color: rgb(0 0 0 / 0.1);
}

.border-t-transparent\/100 {
  border-top-color: rgb(0 0 0 / 1);
}

.border-t-transparent\/15 {
  border-top-color: rgb(0 0 0 / 0.15);
}

.border-t-transparent\/20 {
  border-top-color: rgb(0 0 0 / 0.2);
}

.border-t-transparent\/25 {
  border-top-color: rgb(0 0 0 / 0.25);
}

.border-t-transparent\/30 {
  border-top-color: rgb(0 0 0 / 0.3);
}

.border-t-transparent\/35 {
  border-top-color: rgb(0 0 0 / 0.35);
}

.border-t-transparent\/40 {
  border-top-color: rgb(0 0 0 / 0.4);
}

.border-t-transparent\/45 {
  border-top-color: rgb(0 0 0 / 0.45);
}

.border-t-transparent\/5 {
  border-top-color: rgb(0 0 0 / 0.05);
}

.border-t-transparent\/50 {
  border-top-color: rgb(0 0 0 / 0.5);
}

.border-t-transparent\/55 {
  border-top-color: rgb(0 0 0 / 0.55);
}

.border-t-transparent\/60 {
  border-top-color: rgb(0 0 0 / 0.6);
}

.border-t-transparent\/65 {
  border-top-color: rgb(0 0 0 / 0.65);
}

.border-t-transparent\/70 {
  border-top-color: rgb(0 0 0 / 0.7);
}

.border-t-transparent\/75 {
  border-top-color: rgb(0 0 0 / 0.75);
}

.border-t-transparent\/80 {
  border-top-color: rgb(0 0 0 / 0.8);
}

.border-t-transparent\/85 {
  border-top-color: rgb(0 0 0 / 0.85);
}

.border-t-transparent\/90 {
  border-top-color: rgb(0 0 0 / 0.9);
}

.border-t-transparent\/95 {
  border-top-color: rgb(0 0 0 / 0.95);
}

.border-t-white {
  --tw-border-opacity: 1;
  border-top-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}

.border-t-white\/0 {
  border-top-color: rgb(255 255 255 / 0);
}

.border-t-white\/10 {
  border-top-color: rgb(255 255 255 / 0.1);
}

.border-t-white\/100 {
  border-top-color: rgb(255 255 255 / 1);
}

.border-t-white\/15 {
  border-top-color: rgb(255 255 255 / 0.15);
}

.border-t-white\/20 {
  border-top-color: rgb(255 255 255 / 0.2);
}

.border-t-white\/25 {
  border-top-color: rgb(255 255 255 / 0.25);
}

.border-t-white\/30 {
  border-top-color: rgb(255 255 255 / 0.3);
}

.border-t-white\/35 {
  border-top-color: rgb(255 255 255 / 0.35);
}

.border-t-white\/40 {
  border-top-color: rgb(255 255 255 / 0.4);
}

.border-t-white\/45 {
  border-top-color: rgb(255 255 255 / 0.45);
}

.border-t-white\/5 {
  border-top-color: rgb(255 255 255 / 0.05);
}

.border-t-white\/50 {
  border-top-color: rgb(255 255 255 / 0.5);
}

.border-t-white\/55 {
  border-top-color: rgb(255 255 255 / 0.55);
}

.border-t-white\/60 {
  border-top-color: rgb(255 255 255 / 0.6);
}

.border-t-white\/65 {
  border-top-color: rgb(255 255 255 / 0.65);
}

.border-t-white\/70 {
  border-top-color: rgb(255 255 255 / 0.7);
}

.border-t-white\/75 {
  border-top-color: rgb(255 255 255 / 0.75);
}

.border-t-white\/80 {
  border-top-color: rgb(255 255 255 / 0.8);
}

.border-t-white\/85 {
  border-top-color: rgb(255 255 255 / 0.85);
}

.border-t-white\/90 {
  border-top-color: rgb(255 255 255 / 0.9);
}

.border-t-white\/95 {
  border-top-color: rgb(255 255 255 / 0.95);
}

.border-opacity-0 {
  --tw-border-opacity: 0;
}

.border-opacity-10 {
  --tw-border-opacity: 0.1;
}

.border-opacity-100 {
  --tw-border-opacity: 1;
}

.border-opacity-15 {
  --tw-border-opacity: 0.15;
}

.border-opacity-20 {
  --tw-border-opacity: 0.2;
}

.border-opacity-25 {
  --tw-border-opacity: 0.25;
}

.border-opacity-30 {
  --tw-border-opacity: 0.3;
}

.border-opacity-35 {
  --tw-border-opacity: 0.35;
}

.border-opacity-40 {
  --tw-border-opacity: 0.4;
}

.border-opacity-45 {
  --tw-border-opacity: 0.45;
}

.border-opacity-5 {
  --tw-border-opacity: 0.05;
}

.border-opacity-50 {
  --tw-border-opacity: 0.5;
}

.border-opacity-55 {
  --tw-border-opacity: 0.55;
}

.border-opacity-60 {
  --tw-border-opacity: 0.6;
}

.border-opacity-65 {
  --tw-border-opacity: 0.65;
}

.border-opacity-70 {
  --tw-border-opacity: 0.7;
}

.border-opacity-75 {
  --tw-border-opacity: 0.75;
}

.border-opacity-80 {
  --tw-border-opacity: 0.8;
}

.border-opacity-85 {
  --tw-border-opacity: 0.85;
}

.border-opacity-90 {
  --tw-border-opacity: 0.9;
}

.border-opacity-95 {
  --tw-border-opacity: 0.95;
}

.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}

.bg-black\/0 {
  background-color: rgb(0 0 0 / 0);
}

.bg-black\/10 {
  background-color: rgb(0 0 0 / 0.1);
}

.bg-black\/100 {
  background-color: rgb(0 0 0 / 1);
}

.bg-black\/15 {
  background-color: rgb(0 0 0 / 0.15);
}

.bg-black\/20 {
  background-color: rgb(0 0 0 / 0.2);
}

.bg-black\/25 {
  background-color: rgb(0 0 0 / 0.25);
}

.bg-black\/30 {
  background-color: rgb(0 0 0 / 0.3);
}

.bg-black\/35 {
  background-color: rgb(0 0 0 / 0.35);
}

.bg-black\/40 {
  background-color: rgb(0 0 0 / 0.4);
}

.bg-black\/45 {
  background-color: rgb(0 0 0 / 0.45);
}

.bg-black\/5 {
  background-color: rgb(0 0 0 / 0.05);
}

.bg-black\/50 {
  background-color: rgb(0 0 0 / 0.5);
}

.bg-black\/55 {
  background-color: rgb(0 0 0 / 0.55);
}

.bg-black\/60 {
  background-color: rgb(0 0 0 / 0.6);
}

.bg-black\/65 {
  background-color: rgb(0 0 0 / 0.65);
}

.bg-black\/70 {
  background-color: rgb(0 0 0 / 0.7);
}

.bg-black\/75 {
  background-color: rgb(0 0 0 / 0.75);
}

.bg-black\/80 {
  background-color: rgb(0 0 0 / 0.8);
}

.bg-black\/85 {
  background-color: rgb(0 0 0 / 0.85);
}

.bg-black\/90 {
  background-color: rgb(0 0 0 / 0.9);
}

.bg-black\/95 {
  background-color: rgb(0 0 0 / 0.95);
}

.bg-blue-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}

.bg-blue-100\/0 {
  background-color: rgb(219 234 254 / 0);
}

.bg-blue-100\/10 {
  background-color: rgb(219 234 254 / 0.1);
}

.bg-blue-100\/100 {
  background-color: rgb(219 234 254 / 1);
}

.bg-blue-100\/15 {
  background-color: rgb(219 234 254 / 0.15);
}

.bg-blue-100\/20 {
  background-color: rgb(219 234 254 / 0.2);
}

.bg-blue-100\/25 {
  background-color: rgb(219 234 254 / 0.25);
}

.bg-blue-100\/30 {
  background-color: rgb(219 234 254 / 0.3);
}

.bg-blue-100\/35 {
  background-color: rgb(219 234 254 / 0.35);
}

.bg-blue-100\/40 {
  background-color: rgb(219 234 254 / 0.4);
}

.bg-blue-100\/45 {
  background-color: rgb(219 234 254 / 0.45);
}

.bg-blue-100\/5 {
  background-color: rgb(219 234 254 / 0.05);
}

.bg-blue-100\/50 {
  background-color: rgb(219 234 254 / 0.5);
}

.bg-blue-100\/55 {
  background-color: rgb(219 234 254 / 0.55);
}

.bg-blue-100\/60 {
  background-color: rgb(219 234 254 / 0.6);
}

.bg-blue-100\/65 {
  background-color: rgb(219 234 254 / 0.65);
}

.bg-blue-100\/70 {
  background-color: rgb(219 234 254 / 0.7);
}

.bg-blue-100\/75 {
  background-color: rgb(219 234 254 / 0.75);
}

.bg-blue-100\/80 {
  background-color: rgb(219 234 254 / 0.8);
}

.bg-blue-100\/85 {
  background-color: rgb(219 234 254 / 0.85);
}

.bg-blue-100\/90 {
  background-color: rgb(219 234 254 / 0.9);
}

.bg-blue-100\/95 {
  background-color: rgb(219 234 254 / 0.95);
}

.bg-blue-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(191 219 254 / var(--tw-bg-opacity, 1));
}

.bg-blue-200\/0 {
  background-color: rgb(191 219 254 / 0);
}

.bg-blue-200\/10 {
  background-color: rgb(191 219 254 / 0.1);
}

.bg-blue-200\/100 {
  background-color: rgb(191 219 254 / 1);
}

.bg-blue-200\/15 {
  background-color: rgb(191 219 254 / 0.15);
}

.bg-blue-200\/20 {
  background-color: rgb(191 219 254 / 0.2);
}

.bg-blue-200\/25 {
  background-color: rgb(191 219 254 / 0.25);
}

.bg-blue-200\/30 {
  background-color: rgb(191 219 254 / 0.3);
}

.bg-blue-200\/35 {
  background-color: rgb(191 219 254 / 0.35);
}

.bg-blue-200\/40 {
  background-color: rgb(191 219 254 / 0.4);
}

.bg-blue-200\/45 {
  background-color: rgb(191 219 254 / 0.45);
}

.bg-blue-200\/5 {
  background-color: rgb(191 219 254 / 0.05);
}

.bg-blue-200\/50 {
  background-color: rgb(191 219 254 / 0.5);
}

.bg-blue-200\/55 {
  background-color: rgb(191 219 254 / 0.55);
}

.bg-blue-200\/60 {
  background-color: rgb(191 219 254 / 0.6);
}

.bg-blue-200\/65 {
  background-color: rgb(191 219 254 / 0.65);
}

.bg-blue-200\/70 {
  background-color: rgb(191 219 254 / 0.7);
}

.bg-blue-200\/75 {
  background-color: rgb(191 219 254 / 0.75);
}

.bg-blue-200\/80 {
  background-color: rgb(191 219 254 / 0.8);
}

.bg-blue-200\/85 {
  background-color: rgb(191 219 254 / 0.85);
}

.bg-blue-200\/90 {
  background-color: rgb(191 219 254 / 0.9);
}

.bg-blue-200\/95 {
  background-color: rgb(191 219 254 / 0.95);
}

.bg-blue-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(147 197 253 / var(--tw-bg-opacity, 1));
}

.bg-blue-300\/0 {
  background-color: rgb(147 197 253 / 0);
}

.bg-blue-300\/10 {
  background-color: rgb(147 197 253 / 0.1);
}

.bg-blue-300\/100 {
  background-color: rgb(147 197 253 / 1);
}

.bg-blue-300\/15 {
  background-color: rgb(147 197 253 / 0.15);
}

.bg-blue-300\/20 {
  background-color: rgb(147 197 253 / 0.2);
}

.bg-blue-300\/25 {
  background-color: rgb(147 197 253 / 0.25);
}

.bg-blue-300\/30 {
  background-color: rgb(147 197 253 / 0.3);
}

.bg-blue-300\/35 {
  background-color: rgb(147 197 253 / 0.35);
}

.bg-blue-300\/40 {
  background-color: rgb(147 197 253 / 0.4);
}

.bg-blue-300\/45 {
  background-color: rgb(147 197 253 / 0.45);
}

.bg-blue-300\/5 {
  background-color: rgb(147 197 253 / 0.05);
}

.bg-blue-300\/50 {
  background-color: rgb(147 197 253 / 0.5);
}

.bg-blue-300\/55 {
  background-color: rgb(147 197 253 / 0.55);
}

.bg-blue-300\/60 {
  background-color: rgb(147 197 253 / 0.6);
}

.bg-blue-300\/65 {
  background-color: rgb(147 197 253 / 0.65);
}

.bg-blue-300\/70 {
  background-color: rgb(147 197 253 / 0.7);
}

.bg-blue-300\/75 {
  background-color: rgb(147 197 253 / 0.75);
}

.bg-blue-300\/80 {
  background-color: rgb(147 197 253 / 0.8);
}

.bg-blue-300\/85 {
  background-color: rgb(147 197 253 / 0.85);
}

.bg-blue-300\/90 {
  background-color: rgb(147 197 253 / 0.9);
}

.bg-blue-300\/95 {
  background-color: rgb(147 197 253 / 0.95);
}

.bg-blue-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(96 165 250 / var(--tw-bg-opacity, 1));
}

.bg-blue-400\/0 {
  background-color: rgb(96 165 250 / 0);
}

.bg-blue-400\/10 {
  background-color: rgb(96 165 250 / 0.1);
}

.bg-blue-400\/100 {
  background-color: rgb(96 165 250 / 1);
}

.bg-blue-400\/15 {
  background-color: rgb(96 165 250 / 0.15);
}

.bg-blue-400\/20 {
  background-color: rgb(96 165 250 / 0.2);
}

.bg-blue-400\/25 {
  background-color: rgb(96 165 250 / 0.25);
}

.bg-blue-400\/30 {
  background-color: rgb(96 165 250 / 0.3);
}

.bg-blue-400\/35 {
  background-color: rgb(96 165 250 / 0.35);
}

.bg-blue-400\/40 {
  background-color: rgb(96 165 250 / 0.4);
}

.bg-blue-400\/45 {
  background-color: rgb(96 165 250 / 0.45);
}

.bg-blue-400\/5 {
  background-color: rgb(96 165 250 / 0.05);
}

.bg-blue-400\/50 {
  background-color: rgb(96 165 250 / 0.5);
}

.bg-blue-400\/55 {
  background-color: rgb(96 165 250 / 0.55);
}

.bg-blue-400\/60 {
  background-color: rgb(96 165 250 / 0.6);
}

.bg-blue-400\/65 {
  background-color: rgb(96 165 250 / 0.65);
}

.bg-blue-400\/70 {
  background-color: rgb(96 165 250 / 0.7);
}

.bg-blue-400\/75 {
  background-color: rgb(96 165 250 / 0.75);
}

.bg-blue-400\/80 {
  background-color: rgb(96 165 250 / 0.8);
}

.bg-blue-400\/85 {
  background-color: rgb(96 165 250 / 0.85);
}

.bg-blue-400\/90 {
  background-color: rgb(96 165 250 / 0.9);
}

.bg-blue-400\/95 {
  background-color: rgb(96 165 250 / 0.95);
}

.bg-blue-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}

.bg-blue-50\/0 {
  background-color: rgb(239 246 255 / 0);
}

.bg-blue-50\/10 {
  background-color: rgb(239 246 255 / 0.1);
}

.bg-blue-50\/100 {
  background-color: rgb(239 246 255 / 1);
}

.bg-blue-50\/15 {
  background-color: rgb(239 246 255 / 0.15);
}

.bg-blue-50\/20 {
  background-color: rgb(239 246 255 / 0.2);
}

.bg-blue-50\/25 {
  background-color: rgb(239 246 255 / 0.25);
}

.bg-blue-50\/30 {
  background-color: rgb(239 246 255 / 0.3);
}

.bg-blue-50\/35 {
  background-color: rgb(239 246 255 / 0.35);
}

.bg-blue-50\/40 {
  background-color: rgb(239 246 255 / 0.4);
}

.bg-blue-50\/45 {
  background-color: rgb(239 246 255 / 0.45);
}

.bg-blue-50\/5 {
  background-color: rgb(239 246 255 / 0.05);
}

.bg-blue-50\/50 {
  background-color: rgb(239 246 255 / 0.5);
}

.bg-blue-50\/55 {
  background-color: rgb(239 246 255 / 0.55);
}

.bg-blue-50\/60 {
  background-color: rgb(239 246 255 / 0.6);
}

.bg-blue-50\/65 {
  background-color: rgb(239 246 255 / 0.65);
}

.bg-blue-50\/70 {
  background-color: rgb(239 246 255 / 0.7);
}

.bg-blue-50\/75 {
  background-color: rgb(239 246 255 / 0.75);
}

.bg-blue-50\/80 {
  background-color: rgb(239 246 255 / 0.8);
}

.bg-blue-50\/85 {
  background-color: rgb(239 246 255 / 0.85);
}

.bg-blue-50\/90 {
  background-color: rgb(239 246 255 / 0.9);
}

.bg-blue-50\/95 {
  background-color: rgb(239 246 255 / 0.95);
}

.bg-blue-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
}

.bg-blue-500\/0 {
  background-color: rgb(59 130 246 / 0);
}

.bg-blue-500\/10 {
  background-color: rgb(59 130 246 / 0.1);
}

.bg-blue-500\/100 {
  background-color: rgb(59 130 246 / 1);
}

.bg-blue-500\/15 {
  background-color: rgb(59 130 246 / 0.15);
}

.bg-blue-500\/20 {
  background-color: rgb(59 130 246 / 0.2);
}

.bg-blue-500\/25 {
  background-color: rgb(59 130 246 / 0.25);
}

.bg-blue-500\/30 {
  background-color: rgb(59 130 246 / 0.3);
}

.bg-blue-500\/35 {
  background-color: rgb(59 130 246 / 0.35);
}

.bg-blue-500\/40 {
  background-color: rgb(59 130 246 / 0.4);
}

.bg-blue-500\/45 {
  background-color: rgb(59 130 246 / 0.45);
}

.bg-blue-500\/5 {
  background-color: rgb(59 130 246 / 0.05);
}

.bg-blue-500\/50 {
  background-color: rgb(59 130 246 / 0.5);
}

.bg-blue-500\/55 {
  background-color: rgb(59 130 246 / 0.55);
}

.bg-blue-500\/60 {
  background-color: rgb(59 130 246 / 0.6);
}

.bg-blue-500\/65 {
  background-color: rgb(59 130 246 / 0.65);
}

.bg-blue-500\/70 {
  background-color: rgb(59 130 246 / 0.7);
}

.bg-blue-500\/75 {
  background-color: rgb(59 130 246 / 0.75);
}

.bg-blue-500\/80 {
  background-color: rgb(59 130 246 / 0.8);
}

.bg-blue-500\/85 {
  background-color: rgb(59 130 246 / 0.85);
}

.bg-blue-500\/90 {
  background-color: rgb(59 130 246 / 0.9);
}

.bg-blue-500\/95 {
  background-color: rgb(59 130 246 / 0.95);
}

.bg-blue-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}

.bg-blue-600\/0 {
  background-color: rgb(37 99 235 / 0);
}

.bg-blue-600\/10 {
  background-color: rgb(37 99 235 / 0.1);
}

.bg-blue-600\/100 {
  background-color: rgb(37 99 235 / 1);
}

.bg-blue-600\/15 {
  background-color: rgb(37 99 235 / 0.15);
}

.bg-blue-600\/20 {
  background-color: rgb(37 99 235 / 0.2);
}

.bg-blue-600\/25 {
  background-color: rgb(37 99 235 / 0.25);
}

.bg-blue-600\/30 {
  background-color: rgb(37 99 235 / 0.3);
}

.bg-blue-600\/35 {
  background-color: rgb(37 99 235 / 0.35);
}

.bg-blue-600\/40 {
  background-color: rgb(37 99 235 / 0.4);
}

.bg-blue-600\/45 {
  background-color: rgb(37 99 235 / 0.45);
}

.bg-blue-600\/5 {
  background-color: rgb(37 99 235 / 0.05);
}

.bg-blue-600\/50 {
  background-color: rgb(37 99 235 / 0.5);
}

.bg-blue-600\/55 {
  background-color: rgb(37 99 235 / 0.55);
}

.bg-blue-600\/60 {
  background-color: rgb(37 99 235 / 0.6);
}

.bg-blue-600\/65 {
  background-color: rgb(37 99 235 / 0.65);
}

.bg-blue-600\/70 {
  background-color: rgb(37 99 235 / 0.7);
}

.bg-blue-600\/75 {
  background-color: rgb(37 99 235 / 0.75);
}

.bg-blue-600\/80 {
  background-color: rgb(37 99 235 / 0.8);
}

.bg-blue-600\/85 {
  background-color: rgb(37 99 235 / 0.85);
}

.bg-blue-600\/90 {
  background-color: rgb(37 99 235 / 0.9);
}

.bg-blue-600\/95 {
  background-color: rgb(37 99 235 / 0.95);
}

.bg-blue-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}

.bg-blue-700\/0 {
  background-color: rgb(29 78 216 / 0);
}

.bg-blue-700\/10 {
  background-color: rgb(29 78 216 / 0.1);
}

.bg-blue-700\/100 {
  background-color: rgb(29 78 216 / 1);
}

.bg-blue-700\/15 {
  background-color: rgb(29 78 216 / 0.15);
}

.bg-blue-700\/20 {
  background-color: rgb(29 78 216 / 0.2);
}

.bg-blue-700\/25 {
  background-color: rgb(29 78 216 / 0.25);
}

.bg-blue-700\/30 {
  background-color: rgb(29 78 216 / 0.3);
}

.bg-blue-700\/35 {
  background-color: rgb(29 78 216 / 0.35);
}

.bg-blue-700\/40 {
  background-color: rgb(29 78 216 / 0.4);
}

.bg-blue-700\/45 {
  background-color: rgb(29 78 216 / 0.45);
}

.bg-blue-700\/5 {
  background-color: rgb(29 78 216 / 0.05);
}

.bg-blue-700\/50 {
  background-color: rgb(29 78 216 / 0.5);
}

.bg-blue-700\/55 {
  background-color: rgb(29 78 216 / 0.55);
}

.bg-blue-700\/60 {
  background-color: rgb(29 78 216 / 0.6);
}

.bg-blue-700\/65 {
  background-color: rgb(29 78 216 / 0.65);
}

.bg-blue-700\/70 {
  background-color: rgb(29 78 216 / 0.7);
}

.bg-blue-700\/75 {
  background-color: rgb(29 78 216 / 0.75);
}

.bg-blue-700\/80 {
  background-color: rgb(29 78 216 / 0.8);
}

.bg-blue-700\/85 {
  background-color: rgb(29 78 216 / 0.85);
}

.bg-blue-700\/90 {
  background-color: rgb(29 78 216 / 0.9);
}

.bg-blue-700\/95 {
  background-color: rgb(29 78 216 / 0.95);
}

.bg-blue-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(30 64 175 / var(--tw-bg-opacity, 1));
}

.bg-blue-800\/0 {
  background-color: rgb(30 64 175 / 0);
}

.bg-blue-800\/10 {
  background-color: rgb(30 64 175 / 0.1);
}

.bg-blue-800\/100 {
  background-color: rgb(30 64 175 / 1);
}

.bg-blue-800\/15 {
  background-color: rgb(30 64 175 / 0.15);
}

.bg-blue-800\/20 {
  background-color: rgb(30 64 175 / 0.2);
}

.bg-blue-800\/25 {
  background-color: rgb(30 64 175 / 0.25);
}

.bg-blue-800\/30 {
  background-color: rgb(30 64 175 / 0.3);
}

.bg-blue-800\/35 {
  background-color: rgb(30 64 175 / 0.35);
}

.bg-blue-800\/40 {
  background-color: rgb(30 64 175 / 0.4);
}

.bg-blue-800\/45 {
  background-color: rgb(30 64 175 / 0.45);
}

.bg-blue-800\/5 {
  background-color: rgb(30 64 175 / 0.05);
}

.bg-blue-800\/50 {
  background-color: rgb(30 64 175 / 0.5);
}

.bg-blue-800\/55 {
  background-color: rgb(30 64 175 / 0.55);
}

.bg-blue-800\/60 {
  background-color: rgb(30 64 175 / 0.6);
}

.bg-blue-800\/65 {
  background-color: rgb(30 64 175 / 0.65);
}

.bg-blue-800\/70 {
  background-color: rgb(30 64 175 / 0.7);
}

.bg-blue-800\/75 {
  background-color: rgb(30 64 175 / 0.75);
}

.bg-blue-800\/80 {
  background-color: rgb(30 64 175 / 0.8);
}

.bg-blue-800\/85 {
  background-color: rgb(30 64 175 / 0.85);
}

.bg-blue-800\/90 {
  background-color: rgb(30 64 175 / 0.9);
}

.bg-blue-800\/95 {
  background-color: rgb(30 64 175 / 0.95);
}

.bg-blue-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(30 58 138 / var(--tw-bg-opacity, 1));
}

.bg-blue-900\/0 {
  background-color: rgb(30 58 138 / 0);
}

.bg-blue-900\/10 {
  background-color: rgb(30 58 138 / 0.1);
}

.bg-blue-900\/100 {
  background-color: rgb(30 58 138 / 1);
}

.bg-blue-900\/15 {
  background-color: rgb(30 58 138 / 0.15);
}

.bg-blue-900\/20 {
  background-color: rgb(30 58 138 / 0.2);
}

.bg-blue-900\/25 {
  background-color: rgb(30 58 138 / 0.25);
}

.bg-blue-900\/30 {
  background-color: rgb(30 58 138 / 0.3);
}

.bg-blue-900\/35 {
  background-color: rgb(30 58 138 / 0.35);
}

.bg-blue-900\/40 {
  background-color: rgb(30 58 138 / 0.4);
}

.bg-blue-900\/45 {
  background-color: rgb(30 58 138 / 0.45);
}

.bg-blue-900\/5 {
  background-color: rgb(30 58 138 / 0.05);
}

.bg-blue-900\/50 {
  background-color: rgb(30 58 138 / 0.5);
}

.bg-blue-900\/55 {
  background-color: rgb(30 58 138 / 0.55);
}

.bg-blue-900\/60 {
  background-color: rgb(30 58 138 / 0.6);
}

.bg-blue-900\/65 {
  background-color: rgb(30 58 138 / 0.65);
}

.bg-blue-900\/70 {
  background-color: rgb(30 58 138 / 0.7);
}

.bg-blue-900\/75 {
  background-color: rgb(30 58 138 / 0.75);
}

.bg-blue-900\/80 {
  background-color: rgb(30 58 138 / 0.8);
}

.bg-blue-900\/85 {
  background-color: rgb(30 58 138 / 0.85);
}

.bg-blue-900\/90 {
  background-color: rgb(30 58 138 / 0.9);
}

.bg-blue-900\/95 {
  background-color: rgb(30 58 138 / 0.95);
}

.bg-blue-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(23 37 84 / var(--tw-bg-opacity, 1));
}

.bg-blue-950\/0 {
  background-color: rgb(23 37 84 / 0);
}

.bg-blue-950\/10 {
  background-color: rgb(23 37 84 / 0.1);
}

.bg-blue-950\/100 {
  background-color: rgb(23 37 84 / 1);
}

.bg-blue-950\/15 {
  background-color: rgb(23 37 84 / 0.15);
}

.bg-blue-950\/20 {
  background-color: rgb(23 37 84 / 0.2);
}

.bg-blue-950\/25 {
  background-color: rgb(23 37 84 / 0.25);
}

.bg-blue-950\/30 {
  background-color: rgb(23 37 84 / 0.3);
}

.bg-blue-950\/35 {
  background-color: rgb(23 37 84 / 0.35);
}

.bg-blue-950\/40 {
  background-color: rgb(23 37 84 / 0.4);
}

.bg-blue-950\/45 {
  background-color: rgb(23 37 84 / 0.45);
}

.bg-blue-950\/5 {
  background-color: rgb(23 37 84 / 0.05);
}

.bg-blue-950\/50 {
  background-color: rgb(23 37 84 / 0.5);
}

.bg-blue-950\/55 {
  background-color: rgb(23 37 84 / 0.55);
}

.bg-blue-950\/60 {
  background-color: rgb(23 37 84 / 0.6);
}

.bg-blue-950\/65 {
  background-color: rgb(23 37 84 / 0.65);
}

.bg-blue-950\/70 {
  background-color: rgb(23 37 84 / 0.7);
}

.bg-blue-950\/75 {
  background-color: rgb(23 37 84 / 0.75);
}

.bg-blue-950\/80 {
  background-color: rgb(23 37 84 / 0.8);
}

.bg-blue-950\/85 {
  background-color: rgb(23 37 84 / 0.85);
}

.bg-blue-950\/90 {
  background-color: rgb(23 37 84 / 0.9);
}

.bg-blue-950\/95 {
  background-color: rgb(23 37 84 / 0.95);
}

.bg-current {
  background-color: currentColor;
}

.bg-eva-blue {
  --tw-bg-opacity: 1;
  background-color: rgb(26 33 62 / var(--tw-bg-opacity, 1));
}

.bg-eva-blue-appt {
  --tw-bg-opacity: 1;
  background-color: rgba(52, 137, 207, var(--tw-bg-opacity, 1));
}

.bg-eva-blue-appt\/0 {
  background-color: rgba(52, 137, 207, 0);
}

.bg-eva-blue-appt\/10 {
  background-color: rgba(52, 137, 207, 0.1);
}

.bg-eva-blue-appt\/100 {
  background-color: rgba(52, 137, 207, 1);
}

.bg-eva-blue-appt\/15 {
  background-color: rgba(52, 137, 207, 0.15);
}

.bg-eva-blue-appt\/20 {
  background-color: rgba(52, 137, 207, 0.2);
}

.bg-eva-blue-appt\/25 {
  background-color: rgba(52, 137, 207, 0.25);
}

.bg-eva-blue-appt\/30 {
  background-color: rgba(52, 137, 207, 0.3);
}

.bg-eva-blue-appt\/35 {
  background-color: rgba(52, 137, 207, 0.35);
}

.bg-eva-blue-appt\/40 {
  background-color: rgba(52, 137, 207, 0.4);
}

.bg-eva-blue-appt\/45 {
  background-color: rgba(52, 137, 207, 0.45);
}

.bg-eva-blue-appt\/5 {
  background-color: rgba(52, 137, 207, 0.05);
}

.bg-eva-blue-appt\/50 {
  background-color: rgba(52, 137, 207, 0.5);
}

.bg-eva-blue-appt\/55 {
  background-color: rgba(52, 137, 207, 0.55);
}

.bg-eva-blue-appt\/60 {
  background-color: rgba(52, 137, 207, 0.6);
}

.bg-eva-blue-appt\/65 {
  background-color: rgba(52, 137, 207, 0.65);
}

.bg-eva-blue-appt\/70 {
  background-color: rgba(52, 137, 207, 0.7);
}

.bg-eva-blue-appt\/75 {
  background-color: rgba(52, 137, 207, 0.75);
}

.bg-eva-blue-appt\/80 {
  background-color: rgba(52, 137, 207, 0.8);
}

.bg-eva-blue-appt\/85 {
  background-color: rgba(52, 137, 207, 0.85);
}

.bg-eva-blue-appt\/90 {
  background-color: rgba(52, 137, 207, 0.9);
}

.bg-eva-blue-appt\/95 {
  background-color: rgba(52, 137, 207, 0.95);
}

.bg-eva-blue-gray {
  --tw-bg-opacity: 1;
  background-color: rgb(117 121 139 / var(--tw-bg-opacity, 1));
}

.bg-eva-blue-gray\/0 {
  background-color: rgb(117 121 139 / 0);
}

.bg-eva-blue-gray\/10 {
  background-color: rgb(117 121 139 / 0.1);
}

.bg-eva-blue-gray\/100 {
  background-color: rgb(117 121 139 / 1);
}

.bg-eva-blue-gray\/15 {
  background-color: rgb(117 121 139 / 0.15);
}

.bg-eva-blue-gray\/20 {
  background-color: rgb(117 121 139 / 0.2);
}

.bg-eva-blue-gray\/25 {
  background-color: rgb(117 121 139 / 0.25);
}

.bg-eva-blue-gray\/30 {
  background-color: rgb(117 121 139 / 0.3);
}

.bg-eva-blue-gray\/35 {
  background-color: rgb(117 121 139 / 0.35);
}

.bg-eva-blue-gray\/40 {
  background-color: rgb(117 121 139 / 0.4);
}

.bg-eva-blue-gray\/45 {
  background-color: rgb(117 121 139 / 0.45);
}

.bg-eva-blue-gray\/5 {
  background-color: rgb(117 121 139 / 0.05);
}

.bg-eva-blue-gray\/50 {
  background-color: rgb(117 121 139 / 0.5);
}

.bg-eva-blue-gray\/55 {
  background-color: rgb(117 121 139 / 0.55);
}

.bg-eva-blue-gray\/60 {
  background-color: rgb(117 121 139 / 0.6);
}

.bg-eva-blue-gray\/65 {
  background-color: rgb(117 121 139 / 0.65);
}

.bg-eva-blue-gray\/70 {
  background-color: rgb(117 121 139 / 0.7);
}

.bg-eva-blue-gray\/75 {
  background-color: rgb(117 121 139 / 0.75);
}

.bg-eva-blue-gray\/80 {
  background-color: rgb(117 121 139 / 0.8);
}

.bg-eva-blue-gray\/85 {
  background-color: rgb(117 121 139 / 0.85);
}

.bg-eva-blue-gray\/90 {
  background-color: rgb(117 121 139 / 0.9);
}

.bg-eva-blue-gray\/95 {
  background-color: rgb(117 121 139 / 0.95);
}

.bg-eva-blue-hv {
  --tw-bg-opacity: 1;
  background-color: rgb(15 18 31 / var(--tw-bg-opacity, 1));
}

.bg-eva-blue-hv\/0 {
  background-color: rgb(15 18 31 / 0);
}

.bg-eva-blue-hv\/10 {
  background-color: rgb(15 18 31 / 0.1);
}

.bg-eva-blue-hv\/100 {
  background-color: rgb(15 18 31 / 1);
}

.bg-eva-blue-hv\/15 {
  background-color: rgb(15 18 31 / 0.15);
}

.bg-eva-blue-hv\/20 {
  background-color: rgb(15 18 31 / 0.2);
}

.bg-eva-blue-hv\/25 {
  background-color: rgb(15 18 31 / 0.25);
}

.bg-eva-blue-hv\/30 {
  background-color: rgb(15 18 31 / 0.3);
}

.bg-eva-blue-hv\/35 {
  background-color: rgb(15 18 31 / 0.35);
}

.bg-eva-blue-hv\/40 {
  background-color: rgb(15 18 31 / 0.4);
}

.bg-eva-blue-hv\/45 {
  background-color: rgb(15 18 31 / 0.45);
}

.bg-eva-blue-hv\/5 {
  background-color: rgb(15 18 31 / 0.05);
}

.bg-eva-blue-hv\/50 {
  background-color: rgb(15 18 31 / 0.5);
}

.bg-eva-blue-hv\/55 {
  background-color: rgb(15 18 31 / 0.55);
}

.bg-eva-blue-hv\/60 {
  background-color: rgb(15 18 31 / 0.6);
}

.bg-eva-blue-hv\/65 {
  background-color: rgb(15 18 31 / 0.65);
}

.bg-eva-blue-hv\/70 {
  background-color: rgb(15 18 31 / 0.7);
}

.bg-eva-blue-hv\/75 {
  background-color: rgb(15 18 31 / 0.75);
}

.bg-eva-blue-hv\/80 {
  background-color: rgb(15 18 31 / 0.8);
}

.bg-eva-blue-hv\/85 {
  background-color: rgb(15 18 31 / 0.85);
}

.bg-eva-blue-hv\/90 {
  background-color: rgb(15 18 31 / 0.9);
}

.bg-eva-blue-hv\/95 {
  background-color: rgb(15 18 31 / 0.95);
}

.bg-eva-blue-light {
  --tw-bg-opacity: 1;
  background-color: rgb(48 56 81 / var(--tw-bg-opacity, 1));
}

.bg-eva-blue-light-hv {
  background-color: rgba(17,20,30,.3);
}

.bg-eva-blue-light-hv\/0 {
  background-color: rgba(17, 20, 30, 0);
}

.bg-eva-blue-light-hv\/10 {
  background-color: rgba(17, 20, 30, 0.1);
}

.bg-eva-blue-light-hv\/100 {
  background-color: rgba(17, 20, 30, 1);
}

.bg-eva-blue-light-hv\/15 {
  background-color: rgba(17, 20, 30, 0.15);
}

.bg-eva-blue-light-hv\/20 {
  background-color: rgba(17, 20, 30, 0.2);
}

.bg-eva-blue-light-hv\/25 {
  background-color: rgba(17, 20, 30, 0.25);
}

.bg-eva-blue-light-hv\/30 {
  background-color: rgba(17, 20, 30, 0.3);
}

.bg-eva-blue-light-hv\/35 {
  background-color: rgba(17, 20, 30, 0.35);
}

.bg-eva-blue-light-hv\/40 {
  background-color: rgba(17, 20, 30, 0.4);
}

.bg-eva-blue-light-hv\/45 {
  background-color: rgba(17, 20, 30, 0.45);
}

.bg-eva-blue-light-hv\/5 {
  background-color: rgba(17, 20, 30, 0.05);
}

.bg-eva-blue-light-hv\/50 {
  background-color: rgba(17, 20, 30, 0.5);
}

.bg-eva-blue-light-hv\/55 {
  background-color: rgba(17, 20, 30, 0.55);
}

.bg-eva-blue-light-hv\/60 {
  background-color: rgba(17, 20, 30, 0.6);
}

.bg-eva-blue-light-hv\/65 {
  background-color: rgba(17, 20, 30, 0.65);
}

.bg-eva-blue-light-hv\/70 {
  background-color: rgba(17, 20, 30, 0.7);
}

.bg-eva-blue-light-hv\/75 {
  background-color: rgba(17, 20, 30, 0.75);
}

.bg-eva-blue-light-hv\/80 {
  background-color: rgba(17, 20, 30, 0.8);
}

.bg-eva-blue-light-hv\/85 {
  background-color: rgba(17, 20, 30, 0.85);
}

.bg-eva-blue-light-hv\/90 {
  background-color: rgba(17, 20, 30, 0.9);
}

.bg-eva-blue-light-hv\/95 {
  background-color: rgba(17, 20, 30, 0.95);
}

.bg-eva-blue-light\/0 {
  background-color: rgb(48 56 81 / 0);
}

.bg-eva-blue-light\/10 {
  background-color: rgb(48 56 81 / 0.1);
}

.bg-eva-blue-light\/100 {
  background-color: rgb(48 56 81 / 1);
}

.bg-eva-blue-light\/15 {
  background-color: rgb(48 56 81 / 0.15);
}

.bg-eva-blue-light\/20 {
  background-color: rgb(48 56 81 / 0.2);
}

.bg-eva-blue-light\/25 {
  background-color: rgb(48 56 81 / 0.25);
}

.bg-eva-blue-light\/30 {
  background-color: rgb(48 56 81 / 0.3);
}

.bg-eva-blue-light\/35 {
  background-color: rgb(48 56 81 / 0.35);
}

.bg-eva-blue-light\/40 {
  background-color: rgb(48 56 81 / 0.4);
}

.bg-eva-blue-light\/45 {
  background-color: rgb(48 56 81 / 0.45);
}

.bg-eva-blue-light\/5 {
  background-color: rgb(48 56 81 / 0.05);
}

.bg-eva-blue-light\/50 {
  background-color: rgb(48 56 81 / 0.5);
}

.bg-eva-blue-light\/55 {
  background-color: rgb(48 56 81 / 0.55);
}

.bg-eva-blue-light\/60 {
  background-color: rgb(48 56 81 / 0.6);
}

.bg-eva-blue-light\/65 {
  background-color: rgb(48 56 81 / 0.65);
}

.bg-eva-blue-light\/70 {
  background-color: rgb(48 56 81 / 0.7);
}

.bg-eva-blue-light\/75 {
  background-color: rgb(48 56 81 / 0.75);
}

.bg-eva-blue-light\/80 {
  background-color: rgb(48 56 81 / 0.8);
}

.bg-eva-blue-light\/85 {
  background-color: rgb(48 56 81 / 0.85);
}

.bg-eva-blue-light\/90 {
  background-color: rgb(48 56 81 / 0.9);
}

.bg-eva-blue-light\/95 {
  background-color: rgb(48 56 81 / 0.95);
}

.bg-eva-blue\/0 {
  background-color: rgb(26 33 62 / 0);
}

.bg-eva-blue\/10 {
  background-color: rgb(26 33 62 / 0.1);
}

.bg-eva-blue\/100 {
  background-color: rgb(26 33 62 / 1);
}

.bg-eva-blue\/15 {
  background-color: rgb(26 33 62 / 0.15);
}

.bg-eva-blue\/20 {
  background-color: rgb(26 33 62 / 0.2);
}

.bg-eva-blue\/25 {
  background-color: rgb(26 33 62 / 0.25);
}

.bg-eva-blue\/30 {
  background-color: rgb(26 33 62 / 0.3);
}

.bg-eva-blue\/35 {
  background-color: rgb(26 33 62 / 0.35);
}

.bg-eva-blue\/40 {
  background-color: rgb(26 33 62 / 0.4);
}

.bg-eva-blue\/45 {
  background-color: rgb(26 33 62 / 0.45);
}

.bg-eva-blue\/5 {
  background-color: rgb(26 33 62 / 0.05);
}

.bg-eva-blue\/50 {
  background-color: rgb(26 33 62 / 0.5);
}

.bg-eva-blue\/55 {
  background-color: rgb(26 33 62 / 0.55);
}

.bg-eva-blue\/60 {
  background-color: rgb(26 33 62 / 0.6);
}

.bg-eva-blue\/65 {
  background-color: rgb(26 33 62 / 0.65);
}

.bg-eva-blue\/70 {
  background-color: rgb(26 33 62 / 0.7);
}

.bg-eva-blue\/75 {
  background-color: rgb(26 33 62 / 0.75);
}

.bg-eva-blue\/80 {
  background-color: rgb(26 33 62 / 0.8);
}

.bg-eva-blue\/85 {
  background-color: rgb(26 33 62 / 0.85);
}

.bg-eva-blue\/90 {
  background-color: rgb(26 33 62 / 0.9);
}

.bg-eva-blue\/95 {
  background-color: rgb(26 33 62 / 0.95);
}

.bg-eva-brown-appt {
  background-color: rgba(99, 93, 94, 1);
}

.bg-eva-brown-appt\/0 {
  background-color: rgba(99, 93, 94, 0);
}

.bg-eva-brown-appt\/10 {
  background-color: rgba(99, 93, 94, 0.1);
}

.bg-eva-brown-appt\/100 {
  background-color: rgba(99, 93, 94, 1);
}

.bg-eva-brown-appt\/15 {
  background-color: rgba(99, 93, 94, 0.15);
}

.bg-eva-brown-appt\/20 {
  background-color: rgba(99, 93, 94, 0.2);
}

.bg-eva-brown-appt\/25 {
  background-color: rgba(99, 93, 94, 0.25);
}

.bg-eva-brown-appt\/30 {
  background-color: rgba(99, 93, 94, 0.3);
}

.bg-eva-brown-appt\/35 {
  background-color: rgba(99, 93, 94, 0.35);
}

.bg-eva-brown-appt\/40 {
  background-color: rgba(99, 93, 94, 0.4);
}

.bg-eva-brown-appt\/45 {
  background-color: rgba(99, 93, 94, 0.45);
}

.bg-eva-brown-appt\/5 {
  background-color: rgba(99, 93, 94, 0.05);
}

.bg-eva-brown-appt\/50 {
  background-color: rgba(99, 93, 94, 0.5);
}

.bg-eva-brown-appt\/55 {
  background-color: rgba(99, 93, 94, 0.55);
}

.bg-eva-brown-appt\/60 {
  background-color: rgba(99, 93, 94, 0.6);
}

.bg-eva-brown-appt\/65 {
  background-color: rgba(99, 93, 94, 0.65);
}

.bg-eva-brown-appt\/70 {
  background-color: rgba(99, 93, 94, 0.7);
}

.bg-eva-brown-appt\/75 {
  background-color: rgba(99, 93, 94, 0.75);
}

.bg-eva-brown-appt\/80 {
  background-color: rgba(99, 93, 94, 0.8);
}

.bg-eva-brown-appt\/85 {
  background-color: rgba(99, 93, 94, 0.85);
}

.bg-eva-brown-appt\/90 {
  background-color: rgba(99, 93, 94, 0.9);
}

.bg-eva-brown-appt\/95 {
  background-color: rgba(99, 93, 94, 0.95);
}

.bg-eva-dark-green-appt {
  background-color: rgba(102, 188, 130, 1);
}

.bg-eva-dark-green-appt\/0 {
  background-color: rgba(102, 188, 130, 0);
}

.bg-eva-dark-green-appt\/10 {
  background-color: rgba(102, 188, 130, 0.1);
}

.bg-eva-dark-green-appt\/100 {
  background-color: rgba(102, 188, 130, 1);
}

.bg-eva-dark-green-appt\/15 {
  background-color: rgba(102, 188, 130, 0.15);
}

.bg-eva-dark-green-appt\/20 {
  background-color: rgba(102, 188, 130, 0.2);
}

.bg-eva-dark-green-appt\/25 {
  background-color: rgba(102, 188, 130, 0.25);
}

.bg-eva-dark-green-appt\/30 {
  background-color: rgba(102, 188, 130, 0.3);
}

.bg-eva-dark-green-appt\/35 {
  background-color: rgba(102, 188, 130, 0.35);
}

.bg-eva-dark-green-appt\/40 {
  background-color: rgba(102, 188, 130, 0.4);
}

.bg-eva-dark-green-appt\/45 {
  background-color: rgba(102, 188, 130, 0.45);
}

.bg-eva-dark-green-appt\/5 {
  background-color: rgba(102, 188, 130, 0.05);
}

.bg-eva-dark-green-appt\/50 {
  background-color: rgba(102, 188, 130, 0.5);
}

.bg-eva-dark-green-appt\/55 {
  background-color: rgba(102, 188, 130, 0.55);
}

.bg-eva-dark-green-appt\/60 {
  background-color: rgba(102, 188, 130, 0.6);
}

.bg-eva-dark-green-appt\/65 {
  background-color: rgba(102, 188, 130, 0.65);
}

.bg-eva-dark-green-appt\/70 {
  background-color: rgba(102, 188, 130, 0.7);
}

.bg-eva-dark-green-appt\/75 {
  background-color: rgba(102, 188, 130, 0.75);
}

.bg-eva-dark-green-appt\/80 {
  background-color: rgba(102, 188, 130, 0.8);
}

.bg-eva-dark-green-appt\/85 {
  background-color: rgba(102, 188, 130, 0.85);
}

.bg-eva-dark-green-appt\/90 {
  background-color: rgba(102, 188, 130, 0.9);
}

.bg-eva-dark-green-appt\/95 {
  background-color: rgba(102, 188, 130, 0.95);
}

.bg-eva-dark-red-appt {
  background-color: rgba(198, 102, 94, 1);
}

.bg-eva-dark-red-appt\/0 {
  background-color: rgba(198, 102, 94, 0);
}

.bg-eva-dark-red-appt\/10 {
  background-color: rgba(198, 102, 94, 0.1);
}

.bg-eva-dark-red-appt\/100 {
  background-color: rgba(198, 102, 94, 1);
}

.bg-eva-dark-red-appt\/15 {
  background-color: rgba(198, 102, 94, 0.15);
}

.bg-eva-dark-red-appt\/20 {
  background-color: rgba(198, 102, 94, 0.2);
}

.bg-eva-dark-red-appt\/25 {
  background-color: rgba(198, 102, 94, 0.25);
}

.bg-eva-dark-red-appt\/30 {
  background-color: rgba(198, 102, 94, 0.3);
}

.bg-eva-dark-red-appt\/35 {
  background-color: rgba(198, 102, 94, 0.35);
}

.bg-eva-dark-red-appt\/40 {
  background-color: rgba(198, 102, 94, 0.4);
}

.bg-eva-dark-red-appt\/45 {
  background-color: rgba(198, 102, 94, 0.45);
}

.bg-eva-dark-red-appt\/5 {
  background-color: rgba(198, 102, 94, 0.05);
}

.bg-eva-dark-red-appt\/50 {
  background-color: rgba(198, 102, 94, 0.5);
}

.bg-eva-dark-red-appt\/55 {
  background-color: rgba(198, 102, 94, 0.55);
}

.bg-eva-dark-red-appt\/60 {
  background-color: rgba(198, 102, 94, 0.6);
}

.bg-eva-dark-red-appt\/65 {
  background-color: rgba(198, 102, 94, 0.65);
}

.bg-eva-dark-red-appt\/70 {
  background-color: rgba(198, 102, 94, 0.7);
}

.bg-eva-dark-red-appt\/75 {
  background-color: rgba(198, 102, 94, 0.75);
}

.bg-eva-dark-red-appt\/80 {
  background-color: rgba(198, 102, 94, 0.8);
}

.bg-eva-dark-red-appt\/85 {
  background-color: rgba(198, 102, 94, 0.85);
}

.bg-eva-dark-red-appt\/90 {
  background-color: rgba(198, 102, 94, 0.9);
}

.bg-eva-dark-red-appt\/95 {
  background-color: rgba(198, 102, 94, 0.95);
}

.bg-eva-green {
  --tw-bg-opacity: 1;
  background-color: rgb(73 181 168 / var(--tw-bg-opacity, 1));
}

.bg-eva-green-appt {
  --tw-bg-opacity: 1;
  background-color: rgba(128, 215, 109, var(--tw-bg-opacity, 1));
}

.bg-eva-green-appt\/0 {
  background-color: rgba(128, 215, 109, 0);
}

.bg-eva-green-appt\/10 {
  background-color: rgba(128, 215, 109, 0.1);
}

.bg-eva-green-appt\/100 {
  background-color: rgba(128, 215, 109, 1);
}

.bg-eva-green-appt\/15 {
  background-color: rgba(128, 215, 109, 0.15);
}

.bg-eva-green-appt\/20 {
  background-color: rgba(128, 215, 109, 0.2);
}

.bg-eva-green-appt\/25 {
  background-color: rgba(128, 215, 109, 0.25);
}

.bg-eva-green-appt\/30 {
  background-color: rgba(128, 215, 109, 0.3);
}

.bg-eva-green-appt\/35 {
  background-color: rgba(128, 215, 109, 0.35);
}

.bg-eva-green-appt\/40 {
  background-color: rgba(128, 215, 109, 0.4);
}

.bg-eva-green-appt\/45 {
  background-color: rgba(128, 215, 109, 0.45);
}

.bg-eva-green-appt\/5 {
  background-color: rgba(128, 215, 109, 0.05);
}

.bg-eva-green-appt\/50 {
  background-color: rgba(128, 215, 109, 0.5);
}

.bg-eva-green-appt\/55 {
  background-color: rgba(128, 215, 109, 0.55);
}

.bg-eva-green-appt\/60 {
  background-color: rgba(128, 215, 109, 0.6);
}

.bg-eva-green-appt\/65 {
  background-color: rgba(128, 215, 109, 0.65);
}

.bg-eva-green-appt\/70 {
  background-color: rgba(128, 215, 109, 0.7);
}

.bg-eva-green-appt\/75 {
  background-color: rgba(128, 215, 109, 0.75);
}

.bg-eva-green-appt\/80 {
  background-color: rgba(128, 215, 109, 0.8);
}

.bg-eva-green-appt\/85 {
  background-color: rgba(128, 215, 109, 0.85);
}

.bg-eva-green-appt\/90 {
  background-color: rgba(128, 215, 109, 0.9);
}

.bg-eva-green-appt\/95 {
  background-color: rgba(128, 215, 109, 0.95);
}

.bg-eva-green-brown-appt {
  background-color: rgba(197, 191, 140, 1);
}

.bg-eva-green-brown-appt\/0 {
  background-color: rgba(197, 191, 140, 0);
}

.bg-eva-green-brown-appt\/10 {
  background-color: rgba(197, 191, 140, 0.1);
}

.bg-eva-green-brown-appt\/100 {
  background-color: rgba(197, 191, 140, 1);
}

.bg-eva-green-brown-appt\/15 {
  background-color: rgba(197, 191, 140, 0.15);
}

.bg-eva-green-brown-appt\/20 {
  background-color: rgba(197, 191, 140, 0.2);
}

.bg-eva-green-brown-appt\/25 {
  background-color: rgba(197, 191, 140, 0.25);
}

.bg-eva-green-brown-appt\/30 {
  background-color: rgba(197, 191, 140, 0.3);
}

.bg-eva-green-brown-appt\/35 {
  background-color: rgba(197, 191, 140, 0.35);
}

.bg-eva-green-brown-appt\/40 {
  background-color: rgba(197, 191, 140, 0.4);
}

.bg-eva-green-brown-appt\/45 {
  background-color: rgba(197, 191, 140, 0.45);
}

.bg-eva-green-brown-appt\/5 {
  background-color: rgba(197, 191, 140, 0.05);
}

.bg-eva-green-brown-appt\/50 {
  background-color: rgba(197, 191, 140, 0.5);
}

.bg-eva-green-brown-appt\/55 {
  background-color: rgba(197, 191, 140, 0.55);
}

.bg-eva-green-brown-appt\/60 {
  background-color: rgba(197, 191, 140, 0.6);
}

.bg-eva-green-brown-appt\/65 {
  background-color: rgba(197, 191, 140, 0.65);
}

.bg-eva-green-brown-appt\/70 {
  background-color: rgba(197, 191, 140, 0.7);
}

.bg-eva-green-brown-appt\/75 {
  background-color: rgba(197, 191, 140, 0.75);
}

.bg-eva-green-brown-appt\/80 {
  background-color: rgba(197, 191, 140, 0.8);
}

.bg-eva-green-brown-appt\/85 {
  background-color: rgba(197, 191, 140, 0.85);
}

.bg-eva-green-brown-appt\/90 {
  background-color: rgba(197, 191, 140, 0.9);
}

.bg-eva-green-brown-appt\/95 {
  background-color: rgba(197, 191, 140, 0.95);
}

.bg-eva-green-hv {
  --tw-bg-opacity: 1;
  background-color: rgb(63 156 144 / var(--tw-bg-opacity, 1));
}

.bg-eva-green-hv\/0 {
  background-color: rgb(63 156 144 / 0);
}

.bg-eva-green-hv\/10 {
  background-color: rgb(63 156 144 / 0.1);
}

.bg-eva-green-hv\/100 {
  background-color: rgb(63 156 144 / 1);
}

.bg-eva-green-hv\/15 {
  background-color: rgb(63 156 144 / 0.15);
}

.bg-eva-green-hv\/20 {
  background-color: rgb(63 156 144 / 0.2);
}

.bg-eva-green-hv\/25 {
  background-color: rgb(63 156 144 / 0.25);
}

.bg-eva-green-hv\/30 {
  background-color: rgb(63 156 144 / 0.3);
}

.bg-eva-green-hv\/35 {
  background-color: rgb(63 156 144 / 0.35);
}

.bg-eva-green-hv\/40 {
  background-color: rgb(63 156 144 / 0.4);
}

.bg-eva-green-hv\/45 {
  background-color: rgb(63 156 144 / 0.45);
}

.bg-eva-green-hv\/5 {
  background-color: rgb(63 156 144 / 0.05);
}

.bg-eva-green-hv\/50 {
  background-color: rgb(63 156 144 / 0.5);
}

.bg-eva-green-hv\/55 {
  background-color: rgb(63 156 144 / 0.55);
}

.bg-eva-green-hv\/60 {
  background-color: rgb(63 156 144 / 0.6);
}

.bg-eva-green-hv\/65 {
  background-color: rgb(63 156 144 / 0.65);
}

.bg-eva-green-hv\/70 {
  background-color: rgb(63 156 144 / 0.7);
}

.bg-eva-green-hv\/75 {
  background-color: rgb(63 156 144 / 0.75);
}

.bg-eva-green-hv\/80 {
  background-color: rgb(63 156 144 / 0.8);
}

.bg-eva-green-hv\/85 {
  background-color: rgb(63 156 144 / 0.85);
}

.bg-eva-green-hv\/90 {
  background-color: rgb(63 156 144 / 0.9);
}

.bg-eva-green-hv\/95 {
  background-color: rgb(63 156 144 / 0.95);
}

.bg-eva-green\/0 {
  background-color: rgb(73 181 168 / 0);
}

.bg-eva-green\/10 {
  background-color: rgb(73 181 168 / 0.1);
}

.bg-eva-green\/100 {
  background-color: rgb(73 181 168 / 1);
}

.bg-eva-green\/15 {
  background-color: rgb(73 181 168 / 0.15);
}

.bg-eva-green\/20 {
  background-color: rgb(73 181 168 / 0.2);
}

.bg-eva-green\/25 {
  background-color: rgb(73 181 168 / 0.25);
}

.bg-eva-green\/30 {
  background-color: rgb(73 181 168 / 0.3);
}

.bg-eva-green\/35 {
  background-color: rgb(73 181 168 / 0.35);
}

.bg-eva-green\/40 {
  background-color: rgb(73 181 168 / 0.4);
}

.bg-eva-green\/45 {
  background-color: rgb(73 181 168 / 0.45);
}

.bg-eva-green\/5 {
  background-color: rgb(73 181 168 / 0.05);
}

.bg-eva-green\/50 {
  background-color: rgb(73 181 168 / 0.5);
}

.bg-eva-green\/55 {
  background-color: rgb(73 181 168 / 0.55);
}

.bg-eva-green\/60 {
  background-color: rgb(73 181 168 / 0.6);
}

.bg-eva-green\/65 {
  background-color: rgb(73 181 168 / 0.65);
}

.bg-eva-green\/70 {
  background-color: rgb(73 181 168 / 0.7);
}

.bg-eva-green\/75 {
  background-color: rgb(73 181 168 / 0.75);
}

.bg-eva-green\/80 {
  background-color: rgb(73 181 168 / 0.8);
}

.bg-eva-green\/85 {
  background-color: rgb(73 181 168 / 0.85);
}

.bg-eva-green\/90 {
  background-color: rgb(73 181 168 / 0.9);
}

.bg-eva-green\/95 {
  background-color: rgb(73 181 168 / 0.95);
}

.bg-eva-lavender-appt {
  background-color: rgba(169, 124, 165, 1);
}

.bg-eva-lavender-appt\/0 {
  background-color: rgba(169, 124, 165, 0);
}

.bg-eva-lavender-appt\/10 {
  background-color: rgba(169, 124, 165, 0.1);
}

.bg-eva-lavender-appt\/100 {
  background-color: rgba(169, 124, 165, 1);
}

.bg-eva-lavender-appt\/15 {
  background-color: rgba(169, 124, 165, 0.15);
}

.bg-eva-lavender-appt\/20 {
  background-color: rgba(169, 124, 165, 0.2);
}

.bg-eva-lavender-appt\/25 {
  background-color: rgba(169, 124, 165, 0.25);
}

.bg-eva-lavender-appt\/30 {
  background-color: rgba(169, 124, 165, 0.3);
}

.bg-eva-lavender-appt\/35 {
  background-color: rgba(169, 124, 165, 0.35);
}

.bg-eva-lavender-appt\/40 {
  background-color: rgba(169, 124, 165, 0.4);
}

.bg-eva-lavender-appt\/45 {
  background-color: rgba(169, 124, 165, 0.45);
}

.bg-eva-lavender-appt\/5 {
  background-color: rgba(169, 124, 165, 0.05);
}

.bg-eva-lavender-appt\/50 {
  background-color: rgba(169, 124, 165, 0.5);
}

.bg-eva-lavender-appt\/55 {
  background-color: rgba(169, 124, 165, 0.55);
}

.bg-eva-lavender-appt\/60 {
  background-color: rgba(169, 124, 165, 0.6);
}

.bg-eva-lavender-appt\/65 {
  background-color: rgba(169, 124, 165, 0.65);
}

.bg-eva-lavender-appt\/70 {
  background-color: rgba(169, 124, 165, 0.7);
}

.bg-eva-lavender-appt\/75 {
  background-color: rgba(169, 124, 165, 0.75);
}

.bg-eva-lavender-appt\/80 {
  background-color: rgba(169, 124, 165, 0.8);
}

.bg-eva-lavender-appt\/85 {
  background-color: rgba(169, 124, 165, 0.85);
}

.bg-eva-lavender-appt\/90 {
  background-color: rgba(169, 124, 165, 0.9);
}

.bg-eva-lavender-appt\/95 {
  background-color: rgba(169, 124, 165, 0.95);
}

.bg-eva-magenta-appt {
  background-color: rgba(223, 91, 146, 1);
}

.bg-eva-magenta-appt\/0 {
  background-color: rgba(223, 91, 146, 0);
}

.bg-eva-magenta-appt\/10 {
  background-color: rgba(223, 91, 146, 0.1);
}

.bg-eva-magenta-appt\/100 {
  background-color: rgba(223, 91, 146, 1);
}

.bg-eva-magenta-appt\/15 {
  background-color: rgba(223, 91, 146, 0.15);
}

.bg-eva-magenta-appt\/20 {
  background-color: rgba(223, 91, 146, 0.2);
}

.bg-eva-magenta-appt\/25 {
  background-color: rgba(223, 91, 146, 0.25);
}

.bg-eva-magenta-appt\/30 {
  background-color: rgba(223, 91, 146, 0.3);
}

.bg-eva-magenta-appt\/35 {
  background-color: rgba(223, 91, 146, 0.35);
}

.bg-eva-magenta-appt\/40 {
  background-color: rgba(223, 91, 146, 0.4);
}

.bg-eva-magenta-appt\/45 {
  background-color: rgba(223, 91, 146, 0.45);
}

.bg-eva-magenta-appt\/5 {
  background-color: rgba(223, 91, 146, 0.05);
}

.bg-eva-magenta-appt\/50 {
  background-color: rgba(223, 91, 146, 0.5);
}

.bg-eva-magenta-appt\/55 {
  background-color: rgba(223, 91, 146, 0.55);
}

.bg-eva-magenta-appt\/60 {
  background-color: rgba(223, 91, 146, 0.6);
}

.bg-eva-magenta-appt\/65 {
  background-color: rgba(223, 91, 146, 0.65);
}

.bg-eva-magenta-appt\/70 {
  background-color: rgba(223, 91, 146, 0.7);
}

.bg-eva-magenta-appt\/75 {
  background-color: rgba(223, 91, 146, 0.75);
}

.bg-eva-magenta-appt\/80 {
  background-color: rgba(223, 91, 146, 0.8);
}

.bg-eva-magenta-appt\/85 {
  background-color: rgba(223, 91, 146, 0.85);
}

.bg-eva-magenta-appt\/90 {
  background-color: rgba(223, 91, 146, 0.9);
}

.bg-eva-magenta-appt\/95 {
  background-color: rgba(223, 91, 146, 0.95);
}

.bg-eva-orange-appt {
  background-color: rgba(232, 176, 99, 1);
}

.bg-eva-orange-appt\/0 {
  background-color: rgba(232, 176, 99, 0);
}

.bg-eva-orange-appt\/10 {
  background-color: rgba(232, 176, 99, 0.1);
}

.bg-eva-orange-appt\/100 {
  background-color: rgba(232, 176, 99, 1);
}

.bg-eva-orange-appt\/15 {
  background-color: rgba(232, 176, 99, 0.15);
}

.bg-eva-orange-appt\/20 {
  background-color: rgba(232, 176, 99, 0.2);
}

.bg-eva-orange-appt\/25 {
  background-color: rgba(232, 176, 99, 0.25);
}

.bg-eva-orange-appt\/30 {
  background-color: rgba(232, 176, 99, 0.3);
}

.bg-eva-orange-appt\/35 {
  background-color: rgba(232, 176, 99, 0.35);
}

.bg-eva-orange-appt\/40 {
  background-color: rgba(232, 176, 99, 0.4);
}

.bg-eva-orange-appt\/45 {
  background-color: rgba(232, 176, 99, 0.45);
}

.bg-eva-orange-appt\/5 {
  background-color: rgba(232, 176, 99, 0.05);
}

.bg-eva-orange-appt\/50 {
  background-color: rgba(232, 176, 99, 0.5);
}

.bg-eva-orange-appt\/55 {
  background-color: rgba(232, 176, 99, 0.55);
}

.bg-eva-orange-appt\/60 {
  background-color: rgba(232, 176, 99, 0.6);
}

.bg-eva-orange-appt\/65 {
  background-color: rgba(232, 176, 99, 0.65);
}

.bg-eva-orange-appt\/70 {
  background-color: rgba(232, 176, 99, 0.7);
}

.bg-eva-orange-appt\/75 {
  background-color: rgba(232, 176, 99, 0.75);
}

.bg-eva-orange-appt\/80 {
  background-color: rgba(232, 176, 99, 0.8);
}

.bg-eva-orange-appt\/85 {
  background-color: rgba(232, 176, 99, 0.85);
}

.bg-eva-orange-appt\/90 {
  background-color: rgba(232, 176, 99, 0.9);
}

.bg-eva-orange-appt\/95 {
  background-color: rgba(232, 176, 99, 0.95);
}

.bg-eva-purple-appt {
  background-color: rgba(125, 117, 164, 1);
}

.bg-eva-purple-appt\/0 {
  background-color: rgba(125, 117, 164, 0);
}

.bg-eva-purple-appt\/10 {
  background-color: rgba(125, 117, 164, 0.1);
}

.bg-eva-purple-appt\/100 {
  background-color: rgba(125, 117, 164, 1);
}

.bg-eva-purple-appt\/15 {
  background-color: rgba(125, 117, 164, 0.15);
}

.bg-eva-purple-appt\/20 {
  background-color: rgba(125, 117, 164, 0.2);
}

.bg-eva-purple-appt\/25 {
  background-color: rgba(125, 117, 164, 0.25);
}

.bg-eva-purple-appt\/30 {
  background-color: rgba(125, 117, 164, 0.3);
}

.bg-eva-purple-appt\/35 {
  background-color: rgba(125, 117, 164, 0.35);
}

.bg-eva-purple-appt\/40 {
  background-color: rgba(125, 117, 164, 0.4);
}

.bg-eva-purple-appt\/45 {
  background-color: rgba(125, 117, 164, 0.45);
}

.bg-eva-purple-appt\/5 {
  background-color: rgba(125, 117, 164, 0.05);
}

.bg-eva-purple-appt\/50 {
  background-color: rgba(125, 117, 164, 0.5);
}

.bg-eva-purple-appt\/55 {
  background-color: rgba(125, 117, 164, 0.55);
}

.bg-eva-purple-appt\/60 {
  background-color: rgba(125, 117, 164, 0.6);
}

.bg-eva-purple-appt\/65 {
  background-color: rgba(125, 117, 164, 0.65);
}

.bg-eva-purple-appt\/70 {
  background-color: rgba(125, 117, 164, 0.7);
}

.bg-eva-purple-appt\/75 {
  background-color: rgba(125, 117, 164, 0.75);
}

.bg-eva-purple-appt\/80 {
  background-color: rgba(125, 117, 164, 0.8);
}

.bg-eva-purple-appt\/85 {
  background-color: rgba(125, 117, 164, 0.85);
}

.bg-eva-purple-appt\/90 {
  background-color: rgba(125, 117, 164, 0.9);
}

.bg-eva-purple-appt\/95 {
  background-color: rgba(125, 117, 164, 0.95);
}

.bg-eva-red {
  --tw-bg-opacity: 1;
  background-color: rgb(234 101 101 / var(--tw-bg-opacity, 1));
}

.bg-eva-red-appt {
  background-color: rgba(243, 63, 77, 1);
}

.bg-eva-red-appt\/0 {
  background-color: rgba(243, 63, 77, 0);
}

.bg-eva-red-appt\/10 {
  background-color: rgba(243, 63, 77, 0.1);
}

.bg-eva-red-appt\/100 {
  background-color: rgba(243, 63, 77, 1);
}

.bg-eva-red-appt\/15 {
  background-color: rgba(243, 63, 77, 0.15);
}

.bg-eva-red-appt\/20 {
  background-color: rgba(243, 63, 77, 0.2);
}

.bg-eva-red-appt\/25 {
  background-color: rgba(243, 63, 77, 0.25);
}

.bg-eva-red-appt\/30 {
  background-color: rgba(243, 63, 77, 0.3);
}

.bg-eva-red-appt\/35 {
  background-color: rgba(243, 63, 77, 0.35);
}

.bg-eva-red-appt\/40 {
  background-color: rgba(243, 63, 77, 0.4);
}

.bg-eva-red-appt\/45 {
  background-color: rgba(243, 63, 77, 0.45);
}

.bg-eva-red-appt\/5 {
  background-color: rgba(243, 63, 77, 0.05);
}

.bg-eva-red-appt\/50 {
  background-color: rgba(243, 63, 77, 0.5);
}

.bg-eva-red-appt\/55 {
  background-color: rgba(243, 63, 77, 0.55);
}

.bg-eva-red-appt\/60 {
  background-color: rgba(243, 63, 77, 0.6);
}

.bg-eva-red-appt\/65 {
  background-color: rgba(243, 63, 77, 0.65);
}

.bg-eva-red-appt\/70 {
  background-color: rgba(243, 63, 77, 0.7);
}

.bg-eva-red-appt\/75 {
  background-color: rgba(243, 63, 77, 0.75);
}

.bg-eva-red-appt\/80 {
  background-color: rgba(243, 63, 77, 0.8);
}

.bg-eva-red-appt\/85 {
  background-color: rgba(243, 63, 77, 0.85);
}

.bg-eva-red-appt\/90 {
  background-color: rgba(243, 63, 77, 0.9);
}

.bg-eva-red-appt\/95 {
  background-color: rgba(243, 63, 77, 0.95);
}

.bg-eva-red-orange-appt {
  background-color: rgba(217, 154, 118, 1);
}

.bg-eva-red-orange-appt\/0 {
  background-color: rgba(217, 154, 118, 0);
}

.bg-eva-red-orange-appt\/10 {
  background-color: rgba(217, 154, 118, 0.1);
}

.bg-eva-red-orange-appt\/100 {
  background-color: rgba(217, 154, 118, 1);
}

.bg-eva-red-orange-appt\/15 {
  background-color: rgba(217, 154, 118, 0.15);
}

.bg-eva-red-orange-appt\/20 {
  background-color: rgba(217, 154, 118, 0.2);
}

.bg-eva-red-orange-appt\/25 {
  background-color: rgba(217, 154, 118, 0.25);
}

.bg-eva-red-orange-appt\/30 {
  background-color: rgba(217, 154, 118, 0.3);
}

.bg-eva-red-orange-appt\/35 {
  background-color: rgba(217, 154, 118, 0.35);
}

.bg-eva-red-orange-appt\/40 {
  background-color: rgba(217, 154, 118, 0.4);
}

.bg-eva-red-orange-appt\/45 {
  background-color: rgba(217, 154, 118, 0.45);
}

.bg-eva-red-orange-appt\/5 {
  background-color: rgba(217, 154, 118, 0.05);
}

.bg-eva-red-orange-appt\/50 {
  background-color: rgba(217, 154, 118, 0.5);
}

.bg-eva-red-orange-appt\/55 {
  background-color: rgba(217, 154, 118, 0.55);
}

.bg-eva-red-orange-appt\/60 {
  background-color: rgba(217, 154, 118, 0.6);
}

.bg-eva-red-orange-appt\/65 {
  background-color: rgba(217, 154, 118, 0.65);
}

.bg-eva-red-orange-appt\/70 {
  background-color: rgba(217, 154, 118, 0.7);
}

.bg-eva-red-orange-appt\/75 {
  background-color: rgba(217, 154, 118, 0.75);
}

.bg-eva-red-orange-appt\/80 {
  background-color: rgba(217, 154, 118, 0.8);
}

.bg-eva-red-orange-appt\/85 {
  background-color: rgba(217, 154, 118, 0.85);
}

.bg-eva-red-orange-appt\/90 {
  background-color: rgba(217, 154, 118, 0.9);
}

.bg-eva-red-orange-appt\/95 {
  background-color: rgba(217, 154, 118, 0.95);
}

.bg-eva-red\/0 {
  background-color: rgb(234 101 101 / 0);
}

.bg-eva-red\/10 {
  background-color: rgb(234 101 101 / 0.1);
}

.bg-eva-red\/100 {
  background-color: rgb(234 101 101 / 1);
}

.bg-eva-red\/15 {
  background-color: rgb(234 101 101 / 0.15);
}

.bg-eva-red\/20 {
  background-color: rgb(234 101 101 / 0.2);
}

.bg-eva-red\/25 {
  background-color: rgb(234 101 101 / 0.25);
}

.bg-eva-red\/30 {
  background-color: rgb(234 101 101 / 0.3);
}

.bg-eva-red\/35 {
  background-color: rgb(234 101 101 / 0.35);
}

.bg-eva-red\/40 {
  background-color: rgb(234 101 101 / 0.4);
}

.bg-eva-red\/45 {
  background-color: rgb(234 101 101 / 0.45);
}

.bg-eva-red\/5 {
  background-color: rgb(234 101 101 / 0.05);
}

.bg-eva-red\/50 {
  background-color: rgb(234 101 101 / 0.5);
}

.bg-eva-red\/55 {
  background-color: rgb(234 101 101 / 0.55);
}

.bg-eva-red\/60 {
  background-color: rgb(234 101 101 / 0.6);
}

.bg-eva-red\/65 {
  background-color: rgb(234 101 101 / 0.65);
}

.bg-eva-red\/70 {
  background-color: rgb(234 101 101 / 0.7);
}

.bg-eva-red\/75 {
  background-color: rgb(234 101 101 / 0.75);
}

.bg-eva-red\/80 {
  background-color: rgb(234 101 101 / 0.8);
}

.bg-eva-red\/85 {
  background-color: rgb(234 101 101 / 0.85);
}

.bg-eva-red\/90 {
  background-color: rgb(234 101 101 / 0.9);
}

.bg-eva-red\/95 {
  background-color: rgb(234 101 101 / 0.95);
}

.bg-eva-teal-appt {
  --tw-bg-opacity: 1;
  background-color: rgba(22, 172, 151, var(--tw-bg-opacity, 1));
}

.bg-eva-teal-appt\/0 {
  background-color: rgba(22, 172, 151, 0);
}

.bg-eva-teal-appt\/10 {
  background-color: rgba(22, 172, 151, 0.1);
}

.bg-eva-teal-appt\/100 {
  background-color: rgba(22, 172, 151, 1);
}

.bg-eva-teal-appt\/15 {
  background-color: rgba(22, 172, 151, 0.15);
}

.bg-eva-teal-appt\/20 {
  background-color: rgba(22, 172, 151, 0.2);
}

.bg-eva-teal-appt\/25 {
  background-color: rgba(22, 172, 151, 0.25);
}

.bg-eva-teal-appt\/30 {
  background-color: rgba(22, 172, 151, 0.3);
}

.bg-eva-teal-appt\/35 {
  background-color: rgba(22, 172, 151, 0.35);
}

.bg-eva-teal-appt\/40 {
  background-color: rgba(22, 172, 151, 0.4);
}

.bg-eva-teal-appt\/45 {
  background-color: rgba(22, 172, 151, 0.45);
}

.bg-eva-teal-appt\/5 {
  background-color: rgba(22, 172, 151, 0.05);
}

.bg-eva-teal-appt\/50 {
  background-color: rgba(22, 172, 151, 0.5);
}

.bg-eva-teal-appt\/55 {
  background-color: rgba(22, 172, 151, 0.55);
}

.bg-eva-teal-appt\/60 {
  background-color: rgba(22, 172, 151, 0.6);
}

.bg-eva-teal-appt\/65 {
  background-color: rgba(22, 172, 151, 0.65);
}

.bg-eva-teal-appt\/70 {
  background-color: rgba(22, 172, 151, 0.7);
}

.bg-eva-teal-appt\/75 {
  background-color: rgba(22, 172, 151, 0.75);
}

.bg-eva-teal-appt\/80 {
  background-color: rgba(22, 172, 151, 0.8);
}

.bg-eva-teal-appt\/85 {
  background-color: rgba(22, 172, 151, 0.85);
}

.bg-eva-teal-appt\/90 {
  background-color: rgba(22, 172, 151, 0.9);
}

.bg-eva-teal-appt\/95 {
  background-color: rgba(22, 172, 151, 0.95);
}

.bg-eva-yellow {
  --tw-bg-opacity: 1;
  background-color: rgb(233 179 98 / var(--tw-bg-opacity, 1));
}

.bg-eva-yellow-appt {
  background-color: rgba(240, 226, 0, 1);
}

.bg-eva-yellow-appt\/0 {
  background-color: rgba(240, 226, 0, 0);
}

.bg-eva-yellow-appt\/10 {
  background-color: rgba(240, 226, 0, 0.1);
}

.bg-eva-yellow-appt\/100 {
  background-color: rgba(240, 226, 0, 1);
}

.bg-eva-yellow-appt\/15 {
  background-color: rgba(240, 226, 0, 0.15);
}

.bg-eva-yellow-appt\/20 {
  background-color: rgba(240, 226, 0, 0.2);
}

.bg-eva-yellow-appt\/25 {
  background-color: rgba(240, 226, 0, 0.25);
}

.bg-eva-yellow-appt\/30 {
  background-color: rgba(240, 226, 0, 0.3);
}

.bg-eva-yellow-appt\/35 {
  background-color: rgba(240, 226, 0, 0.35);
}

.bg-eva-yellow-appt\/40 {
  background-color: rgba(240, 226, 0, 0.4);
}

.bg-eva-yellow-appt\/45 {
  background-color: rgba(240, 226, 0, 0.45);
}

.bg-eva-yellow-appt\/5 {
  background-color: rgba(240, 226, 0, 0.05);
}

.bg-eva-yellow-appt\/50 {
  background-color: rgba(240, 226, 0, 0.5);
}

.bg-eva-yellow-appt\/55 {
  background-color: rgba(240, 226, 0, 0.55);
}

.bg-eva-yellow-appt\/60 {
  background-color: rgba(240, 226, 0, 0.6);
}

.bg-eva-yellow-appt\/65 {
  background-color: rgba(240, 226, 0, 0.65);
}

.bg-eva-yellow-appt\/70 {
  background-color: rgba(240, 226, 0, 0.7);
}

.bg-eva-yellow-appt\/75 {
  background-color: rgba(240, 226, 0, 0.75);
}

.bg-eva-yellow-appt\/80 {
  background-color: rgba(240, 226, 0, 0.8);
}

.bg-eva-yellow-appt\/85 {
  background-color: rgba(240, 226, 0, 0.85);
}

.bg-eva-yellow-appt\/90 {
  background-color: rgba(240, 226, 0, 0.9);
}

.bg-eva-yellow-appt\/95 {
  background-color: rgba(240, 226, 0, 0.95);
}

.bg-eva-yellow\/0 {
  background-color: rgb(233 179 98 / 0);
}

.bg-eva-yellow\/10 {
  background-color: rgb(233 179 98 / 0.1);
}

.bg-eva-yellow\/100 {
  background-color: rgb(233 179 98 / 1);
}

.bg-eva-yellow\/15 {
  background-color: rgb(233 179 98 / 0.15);
}

.bg-eva-yellow\/20 {
  background-color: rgb(233 179 98 / 0.2);
}

.bg-eva-yellow\/25 {
  background-color: rgb(233 179 98 / 0.25);
}

.bg-eva-yellow\/30 {
  background-color: rgb(233 179 98 / 0.3);
}

.bg-eva-yellow\/35 {
  background-color: rgb(233 179 98 / 0.35);
}

.bg-eva-yellow\/40 {
  background-color: rgb(233 179 98 / 0.4);
}

.bg-eva-yellow\/45 {
  background-color: rgb(233 179 98 / 0.45);
}

.bg-eva-yellow\/5 {
  background-color: rgb(233 179 98 / 0.05);
}

.bg-eva-yellow\/50 {
  background-color: rgb(233 179 98 / 0.5);
}

.bg-eva-yellow\/55 {
  background-color: rgb(233 179 98 / 0.55);
}

.bg-eva-yellow\/60 {
  background-color: rgb(233 179 98 / 0.6);
}

.bg-eva-yellow\/65 {
  background-color: rgb(233 179 98 / 0.65);
}

.bg-eva-yellow\/70 {
  background-color: rgb(233 179 98 / 0.7);
}

.bg-eva-yellow\/75 {
  background-color: rgb(233 179 98 / 0.75);
}

.bg-eva-yellow\/80 {
  background-color: rgb(233 179 98 / 0.8);
}

.bg-eva-yellow\/85 {
  background-color: rgb(233 179 98 / 0.85);
}

.bg-eva-yellow\/90 {
  background-color: rgb(233 179 98 / 0.9);
}

.bg-eva-yellow\/95 {
  background-color: rgb(233 179 98 / 0.95);
}

.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 245 / var(--tw-bg-opacity, 1));
}

.bg-gray-100\/0 {
  background-color: rgb(245 245 245 / 0);
}

.bg-gray-100\/10 {
  background-color: rgb(245 245 245 / 0.1);
}

.bg-gray-100\/100 {
  background-color: rgb(245 245 245 / 1);
}

.bg-gray-100\/15 {
  background-color: rgb(245 245 245 / 0.15);
}

.bg-gray-100\/20 {
  background-color: rgb(245 245 245 / 0.2);
}

.bg-gray-100\/25 {
  background-color: rgb(245 245 245 / 0.25);
}

.bg-gray-100\/30 {
  background-color: rgb(245 245 245 / 0.3);
}

.bg-gray-100\/35 {
  background-color: rgb(245 245 245 / 0.35);
}

.bg-gray-100\/40 {
  background-color: rgb(245 245 245 / 0.4);
}

.bg-gray-100\/45 {
  background-color: rgb(245 245 245 / 0.45);
}

.bg-gray-100\/5 {
  background-color: rgb(245 245 245 / 0.05);
}

.bg-gray-100\/50 {
  background-color: rgb(245 245 245 / 0.5);
}

.bg-gray-100\/55 {
  background-color: rgb(245 245 245 / 0.55);
}

.bg-gray-100\/60 {
  background-color: rgb(245 245 245 / 0.6);
}

.bg-gray-100\/65 {
  background-color: rgb(245 245 245 / 0.65);
}

.bg-gray-100\/70 {
  background-color: rgb(245 245 245 / 0.7);
}

.bg-gray-100\/75 {
  background-color: rgb(245 245 245 / 0.75);
}

.bg-gray-100\/80 {
  background-color: rgb(245 245 245 / 0.8);
}

.bg-gray-100\/85 {
  background-color: rgb(245 245 245 / 0.85);
}

.bg-gray-100\/90 {
  background-color: rgb(245 245 245 / 0.9);
}

.bg-gray-100\/95 {
  background-color: rgb(245 245 245 / 0.95);
}

.bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(229 229 229 / var(--tw-bg-opacity, 1));
}

.bg-gray-200\/0 {
  background-color: rgb(229 229 229 / 0);
}

.bg-gray-200\/10 {
  background-color: rgb(229 229 229 / 0.1);
}

.bg-gray-200\/100 {
  background-color: rgb(229 229 229 / 1);
}

.bg-gray-200\/15 {
  background-color: rgb(229 229 229 / 0.15);
}

.bg-gray-200\/20 {
  background-color: rgb(229 229 229 / 0.2);
}

.bg-gray-200\/25 {
  background-color: rgb(229 229 229 / 0.25);
}

.bg-gray-200\/30 {
  background-color: rgb(229 229 229 / 0.3);
}

.bg-gray-200\/35 {
  background-color: rgb(229 229 229 / 0.35);
}

.bg-gray-200\/40 {
  background-color: rgb(229 229 229 / 0.4);
}

.bg-gray-200\/45 {
  background-color: rgb(229 229 229 / 0.45);
}

.bg-gray-200\/5 {
  background-color: rgb(229 229 229 / 0.05);
}

.bg-gray-200\/50 {
  background-color: rgb(229 229 229 / 0.5);
}

.bg-gray-200\/55 {
  background-color: rgb(229 229 229 / 0.55);
}

.bg-gray-200\/60 {
  background-color: rgb(229 229 229 / 0.6);
}

.bg-gray-200\/65 {
  background-color: rgb(229 229 229 / 0.65);
}

.bg-gray-200\/70 {
  background-color: rgb(229 229 229 / 0.7);
}

.bg-gray-200\/75 {
  background-color: rgb(229 229 229 / 0.75);
}

.bg-gray-200\/80 {
  background-color: rgb(229 229 229 / 0.8);
}

.bg-gray-200\/85 {
  background-color: rgb(229 229 229 / 0.85);
}

.bg-gray-200\/90 {
  background-color: rgb(229 229 229 / 0.9);
}

.bg-gray-200\/95 {
  background-color: rgb(229 229 229 / 0.95);
}

.bg-gray-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(212 212 212 / var(--tw-bg-opacity, 1));
}

.bg-gray-300\/0 {
  background-color: rgb(212 212 212 / 0);
}

.bg-gray-300\/10 {
  background-color: rgb(212 212 212 / 0.1);
}

.bg-gray-300\/100 {
  background-color: rgb(212 212 212 / 1);
}

.bg-gray-300\/15 {
  background-color: rgb(212 212 212 / 0.15);
}

.bg-gray-300\/20 {
  background-color: rgb(212 212 212 / 0.2);
}

.bg-gray-300\/25 {
  background-color: rgb(212 212 212 / 0.25);
}

.bg-gray-300\/30 {
  background-color: rgb(212 212 212 / 0.3);
}

.bg-gray-300\/35 {
  background-color: rgb(212 212 212 / 0.35);
}

.bg-gray-300\/40 {
  background-color: rgb(212 212 212 / 0.4);
}

.bg-gray-300\/45 {
  background-color: rgb(212 212 212 / 0.45);
}

.bg-gray-300\/5 {
  background-color: rgb(212 212 212 / 0.05);
}

.bg-gray-300\/50 {
  background-color: rgb(212 212 212 / 0.5);
}

.bg-gray-300\/55 {
  background-color: rgb(212 212 212 / 0.55);
}

.bg-gray-300\/60 {
  background-color: rgb(212 212 212 / 0.6);
}

.bg-gray-300\/65 {
  background-color: rgb(212 212 212 / 0.65);
}

.bg-gray-300\/70 {
  background-color: rgb(212 212 212 / 0.7);
}

.bg-gray-300\/75 {
  background-color: rgb(212 212 212 / 0.75);
}

.bg-gray-300\/80 {
  background-color: rgb(212 212 212 / 0.8);
}

.bg-gray-300\/85 {
  background-color: rgb(212 212 212 / 0.85);
}

.bg-gray-300\/90 {
  background-color: rgb(212 212 212 / 0.9);
}

.bg-gray-300\/95 {
  background-color: rgb(212 212 212 / 0.95);
}

.bg-gray-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(163 163 163 / var(--tw-bg-opacity, 1));
}

.bg-gray-400\/0 {
  background-color: rgb(163 163 163 / 0);
}

.bg-gray-400\/10 {
  background-color: rgb(163 163 163 / 0.1);
}

.bg-gray-400\/100 {
  background-color: rgb(163 163 163 / 1);
}

.bg-gray-400\/15 {
  background-color: rgb(163 163 163 / 0.15);
}

.bg-gray-400\/20 {
  background-color: rgb(163 163 163 / 0.2);
}

.bg-gray-400\/25 {
  background-color: rgb(163 163 163 / 0.25);
}

.bg-gray-400\/30 {
  background-color: rgb(163 163 163 / 0.3);
}

.bg-gray-400\/35 {
  background-color: rgb(163 163 163 / 0.35);
}

.bg-gray-400\/40 {
  background-color: rgb(163 163 163 / 0.4);
}

.bg-gray-400\/45 {
  background-color: rgb(163 163 163 / 0.45);
}

.bg-gray-400\/5 {
  background-color: rgb(163 163 163 / 0.05);
}

.bg-gray-400\/50 {
  background-color: rgb(163 163 163 / 0.5);
}

.bg-gray-400\/55 {
  background-color: rgb(163 163 163 / 0.55);
}

.bg-gray-400\/60 {
  background-color: rgb(163 163 163 / 0.6);
}

.bg-gray-400\/65 {
  background-color: rgb(163 163 163 / 0.65);
}

.bg-gray-400\/70 {
  background-color: rgb(163 163 163 / 0.7);
}

.bg-gray-400\/75 {
  background-color: rgb(163 163 163 / 0.75);
}

.bg-gray-400\/80 {
  background-color: rgb(163 163 163 / 0.8);
}

.bg-gray-400\/85 {
  background-color: rgb(163 163 163 / 0.85);
}

.bg-gray-400\/90 {
  background-color: rgb(163 163 163 / 0.9);
}

.bg-gray-400\/95 {
  background-color: rgb(163 163 163 / 0.95);
}

.bg-gray-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
}

.bg-gray-50\/0 {
  background-color: rgb(250 250 250 / 0);
}

.bg-gray-50\/10 {
  background-color: rgb(250 250 250 / 0.1);
}

.bg-gray-50\/100 {
  background-color: rgb(250 250 250 / 1);
}

.bg-gray-50\/15 {
  background-color: rgb(250 250 250 / 0.15);
}

.bg-gray-50\/20 {
  background-color: rgb(250 250 250 / 0.2);
}

.bg-gray-50\/25 {
  background-color: rgb(250 250 250 / 0.25);
}

.bg-gray-50\/30 {
  background-color: rgb(250 250 250 / 0.3);
}

.bg-gray-50\/35 {
  background-color: rgb(250 250 250 / 0.35);
}

.bg-gray-50\/40 {
  background-color: rgb(250 250 250 / 0.4);
}

.bg-gray-50\/45 {
  background-color: rgb(250 250 250 / 0.45);
}

.bg-gray-50\/5 {
  background-color: rgb(250 250 250 / 0.05);
}

.bg-gray-50\/50 {
  background-color: rgb(250 250 250 / 0.5);
}

.bg-gray-50\/55 {
  background-color: rgb(250 250 250 / 0.55);
}

.bg-gray-50\/60 {
  background-color: rgb(250 250 250 / 0.6);
}

.bg-gray-50\/65 {
  background-color: rgb(250 250 250 / 0.65);
}

.bg-gray-50\/70 {
  background-color: rgb(250 250 250 / 0.7);
}

.bg-gray-50\/75 {
  background-color: rgb(250 250 250 / 0.75);
}

.bg-gray-50\/80 {
  background-color: rgb(250 250 250 / 0.8);
}

.bg-gray-50\/85 {
  background-color: rgb(250 250 250 / 0.85);
}

.bg-gray-50\/90 {
  background-color: rgb(250 250 250 / 0.9);
}

.bg-gray-50\/95 {
  background-color: rgb(250 250 250 / 0.95);
}

.bg-gray-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(115 115 115 / var(--tw-bg-opacity, 1));
}

.bg-gray-500\/0 {
  background-color: rgb(115 115 115 / 0);
}

.bg-gray-500\/10 {
  background-color: rgb(115 115 115 / 0.1);
}

.bg-gray-500\/100 {
  background-color: rgb(115 115 115 / 1);
}

.bg-gray-500\/15 {
  background-color: rgb(115 115 115 / 0.15);
}

.bg-gray-500\/20 {
  background-color: rgb(115 115 115 / 0.2);
}

.bg-gray-500\/25 {
  background-color: rgb(115 115 115 / 0.25);
}

.bg-gray-500\/30 {
  background-color: rgb(115 115 115 / 0.3);
}

.bg-gray-500\/35 {
  background-color: rgb(115 115 115 / 0.35);
}

.bg-gray-500\/40 {
  background-color: rgb(115 115 115 / 0.4);
}

.bg-gray-500\/45 {
  background-color: rgb(115 115 115 / 0.45);
}

.bg-gray-500\/5 {
  background-color: rgb(115 115 115 / 0.05);
}

.bg-gray-500\/50 {
  background-color: rgb(115 115 115 / 0.5);
}

.bg-gray-500\/55 {
  background-color: rgb(115 115 115 / 0.55);
}

.bg-gray-500\/60 {
  background-color: rgb(115 115 115 / 0.6);
}

.bg-gray-500\/65 {
  background-color: rgb(115 115 115 / 0.65);
}

.bg-gray-500\/70 {
  background-color: rgb(115 115 115 / 0.7);
}

.bg-gray-500\/75 {
  background-color: rgb(115 115 115 / 0.75);
}

.bg-gray-500\/80 {
  background-color: rgb(115 115 115 / 0.8);
}

.bg-gray-500\/85 {
  background-color: rgb(115 115 115 / 0.85);
}

.bg-gray-500\/90 {
  background-color: rgb(115 115 115 / 0.9);
}

.bg-gray-500\/95 {
  background-color: rgb(115 115 115 / 0.95);
}

.bg-gray-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(82 82 82 / var(--tw-bg-opacity, 1));
}

.bg-gray-600\/0 {
  background-color: rgb(82 82 82 / 0);
}

.bg-gray-600\/10 {
  background-color: rgb(82 82 82 / 0.1);
}

.bg-gray-600\/100 {
  background-color: rgb(82 82 82 / 1);
}

.bg-gray-600\/15 {
  background-color: rgb(82 82 82 / 0.15);
}

.bg-gray-600\/20 {
  background-color: rgb(82 82 82 / 0.2);
}

.bg-gray-600\/25 {
  background-color: rgb(82 82 82 / 0.25);
}

.bg-gray-600\/30 {
  background-color: rgb(82 82 82 / 0.3);
}

.bg-gray-600\/35 {
  background-color: rgb(82 82 82 / 0.35);
}

.bg-gray-600\/40 {
  background-color: rgb(82 82 82 / 0.4);
}

.bg-gray-600\/45 {
  background-color: rgb(82 82 82 / 0.45);
}

.bg-gray-600\/5 {
  background-color: rgb(82 82 82 / 0.05);
}

.bg-gray-600\/50 {
  background-color: rgb(82 82 82 / 0.5);
}

.bg-gray-600\/55 {
  background-color: rgb(82 82 82 / 0.55);
}

.bg-gray-600\/60 {
  background-color: rgb(82 82 82 / 0.6);
}

.bg-gray-600\/65 {
  background-color: rgb(82 82 82 / 0.65);
}

.bg-gray-600\/70 {
  background-color: rgb(82 82 82 / 0.7);
}

.bg-gray-600\/75 {
  background-color: rgb(82 82 82 / 0.75);
}

.bg-gray-600\/80 {
  background-color: rgb(82 82 82 / 0.8);
}

.bg-gray-600\/85 {
  background-color: rgb(82 82 82 / 0.85);
}

.bg-gray-600\/90 {
  background-color: rgb(82 82 82 / 0.9);
}

.bg-gray-600\/95 {
  background-color: rgb(82 82 82 / 0.95);
}

.bg-gray-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(64 64 64 / var(--tw-bg-opacity, 1));
}

.bg-gray-700\/0 {
  background-color: rgb(64 64 64 / 0);
}

.bg-gray-700\/10 {
  background-color: rgb(64 64 64 / 0.1);
}

.bg-gray-700\/100 {
  background-color: rgb(64 64 64 / 1);
}

.bg-gray-700\/15 {
  background-color: rgb(64 64 64 / 0.15);
}

.bg-gray-700\/20 {
  background-color: rgb(64 64 64 / 0.2);
}

.bg-gray-700\/25 {
  background-color: rgb(64 64 64 / 0.25);
}

.bg-gray-700\/30 {
  background-color: rgb(64 64 64 / 0.3);
}

.bg-gray-700\/35 {
  background-color: rgb(64 64 64 / 0.35);
}

.bg-gray-700\/40 {
  background-color: rgb(64 64 64 / 0.4);
}

.bg-gray-700\/45 {
  background-color: rgb(64 64 64 / 0.45);
}

.bg-gray-700\/5 {
  background-color: rgb(64 64 64 / 0.05);
}

.bg-gray-700\/50 {
  background-color: rgb(64 64 64 / 0.5);
}

.bg-gray-700\/55 {
  background-color: rgb(64 64 64 / 0.55);
}

.bg-gray-700\/60 {
  background-color: rgb(64 64 64 / 0.6);
}

.bg-gray-700\/65 {
  background-color: rgb(64 64 64 / 0.65);
}

.bg-gray-700\/70 {
  background-color: rgb(64 64 64 / 0.7);
}

.bg-gray-700\/75 {
  background-color: rgb(64 64 64 / 0.75);
}

.bg-gray-700\/80 {
  background-color: rgb(64 64 64 / 0.8);
}

.bg-gray-700\/85 {
  background-color: rgb(64 64 64 / 0.85);
}

.bg-gray-700\/90 {
  background-color: rgb(64 64 64 / 0.9);
}

.bg-gray-700\/95 {
  background-color: rgb(64 64 64 / 0.95);
}

.bg-gray-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(38 38 38 / var(--tw-bg-opacity, 1));
}

.bg-gray-800\/0 {
  background-color: rgb(38 38 38 / 0);
}

.bg-gray-800\/10 {
  background-color: rgb(38 38 38 / 0.1);
}

.bg-gray-800\/100 {
  background-color: rgb(38 38 38 / 1);
}

.bg-gray-800\/15 {
  background-color: rgb(38 38 38 / 0.15);
}

.bg-gray-800\/20 {
  background-color: rgb(38 38 38 / 0.2);
}

.bg-gray-800\/25 {
  background-color: rgb(38 38 38 / 0.25);
}

.bg-gray-800\/30 {
  background-color: rgb(38 38 38 / 0.3);
}

.bg-gray-800\/35 {
  background-color: rgb(38 38 38 / 0.35);
}

.bg-gray-800\/40 {
  background-color: rgb(38 38 38 / 0.4);
}

.bg-gray-800\/45 {
  background-color: rgb(38 38 38 / 0.45);
}

.bg-gray-800\/5 {
  background-color: rgb(38 38 38 / 0.05);
}

.bg-gray-800\/50 {
  background-color: rgb(38 38 38 / 0.5);
}

.bg-gray-800\/55 {
  background-color: rgb(38 38 38 / 0.55);
}

.bg-gray-800\/60 {
  background-color: rgb(38 38 38 / 0.6);
}

.bg-gray-800\/65 {
  background-color: rgb(38 38 38 / 0.65);
}

.bg-gray-800\/70 {
  background-color: rgb(38 38 38 / 0.7);
}

.bg-gray-800\/75 {
  background-color: rgb(38 38 38 / 0.75);
}

.bg-gray-800\/80 {
  background-color: rgb(38 38 38 / 0.8);
}

.bg-gray-800\/85 {
  background-color: rgb(38 38 38 / 0.85);
}

.bg-gray-800\/90 {
  background-color: rgb(38 38 38 / 0.9);
}

.bg-gray-800\/95 {
  background-color: rgb(38 38 38 / 0.95);
}

.bg-gray-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(23 23 23 / var(--tw-bg-opacity, 1));
}

.bg-gray-900\/0 {
  background-color: rgb(23 23 23 / 0);
}

.bg-gray-900\/10 {
  background-color: rgb(23 23 23 / 0.1);
}

.bg-gray-900\/100 {
  background-color: rgb(23 23 23 / 1);
}

.bg-gray-900\/15 {
  background-color: rgb(23 23 23 / 0.15);
}

.bg-gray-900\/20 {
  background-color: rgb(23 23 23 / 0.2);
}

.bg-gray-900\/25 {
  background-color: rgb(23 23 23 / 0.25);
}

.bg-gray-900\/30 {
  background-color: rgb(23 23 23 / 0.3);
}

.bg-gray-900\/35 {
  background-color: rgb(23 23 23 / 0.35);
}

.bg-gray-900\/40 {
  background-color: rgb(23 23 23 / 0.4);
}

.bg-gray-900\/45 {
  background-color: rgb(23 23 23 / 0.45);
}

.bg-gray-900\/5 {
  background-color: rgb(23 23 23 / 0.05);
}

.bg-gray-900\/50 {
  background-color: rgb(23 23 23 / 0.5);
}

.bg-gray-900\/55 {
  background-color: rgb(23 23 23 / 0.55);
}

.bg-gray-900\/60 {
  background-color: rgb(23 23 23 / 0.6);
}

.bg-gray-900\/65 {
  background-color: rgb(23 23 23 / 0.65);
}

.bg-gray-900\/70 {
  background-color: rgb(23 23 23 / 0.7);
}

.bg-gray-900\/75 {
  background-color: rgb(23 23 23 / 0.75);
}

.bg-gray-900\/80 {
  background-color: rgb(23 23 23 / 0.8);
}

.bg-gray-900\/85 {
  background-color: rgb(23 23 23 / 0.85);
}

.bg-gray-900\/90 {
  background-color: rgb(23 23 23 / 0.9);
}

.bg-gray-900\/95 {
  background-color: rgb(23 23 23 / 0.95);
}

.bg-gray-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(10 10 10 / var(--tw-bg-opacity, 1));
}

.bg-gray-950\/0 {
  background-color: rgb(10 10 10 / 0);
}

.bg-gray-950\/10 {
  background-color: rgb(10 10 10 / 0.1);
}

.bg-gray-950\/100 {
  background-color: rgb(10 10 10 / 1);
}

.bg-gray-950\/15 {
  background-color: rgb(10 10 10 / 0.15);
}

.bg-gray-950\/20 {
  background-color: rgb(10 10 10 / 0.2);
}

.bg-gray-950\/25 {
  background-color: rgb(10 10 10 / 0.25);
}

.bg-gray-950\/30 {
  background-color: rgb(10 10 10 / 0.3);
}

.bg-gray-950\/35 {
  background-color: rgb(10 10 10 / 0.35);
}

.bg-gray-950\/40 {
  background-color: rgb(10 10 10 / 0.4);
}

.bg-gray-950\/45 {
  background-color: rgb(10 10 10 / 0.45);
}

.bg-gray-950\/5 {
  background-color: rgb(10 10 10 / 0.05);
}

.bg-gray-950\/50 {
  background-color: rgb(10 10 10 / 0.5);
}

.bg-gray-950\/55 {
  background-color: rgb(10 10 10 / 0.55);
}

.bg-gray-950\/60 {
  background-color: rgb(10 10 10 / 0.6);
}

.bg-gray-950\/65 {
  background-color: rgb(10 10 10 / 0.65);
}

.bg-gray-950\/70 {
  background-color: rgb(10 10 10 / 0.7);
}

.bg-gray-950\/75 {
  background-color: rgb(10 10 10 / 0.75);
}

.bg-gray-950\/80 {
  background-color: rgb(10 10 10 / 0.8);
}

.bg-gray-950\/85 {
  background-color: rgb(10 10 10 / 0.85);
}

.bg-gray-950\/90 {
  background-color: rgb(10 10 10 / 0.9);
}

.bg-gray-950\/95 {
  background-color: rgb(10 10 10 / 0.95);
}

.bg-green-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
}

.bg-green-100\/0 {
  background-color: rgb(220 252 231 / 0);
}

.bg-green-100\/10 {
  background-color: rgb(220 252 231 / 0.1);
}

.bg-green-100\/100 {
  background-color: rgb(220 252 231 / 1);
}

.bg-green-100\/15 {
  background-color: rgb(220 252 231 / 0.15);
}

.bg-green-100\/20 {
  background-color: rgb(220 252 231 / 0.2);
}

.bg-green-100\/25 {
  background-color: rgb(220 252 231 / 0.25);
}

.bg-green-100\/30 {
  background-color: rgb(220 252 231 / 0.3);
}

.bg-green-100\/35 {
  background-color: rgb(220 252 231 / 0.35);
}

.bg-green-100\/40 {
  background-color: rgb(220 252 231 / 0.4);
}

.bg-green-100\/45 {
  background-color: rgb(220 252 231 / 0.45);
}

.bg-green-100\/5 {
  background-color: rgb(220 252 231 / 0.05);
}

.bg-green-100\/50 {
  background-color: rgb(220 252 231 / 0.5);
}

.bg-green-100\/55 {
  background-color: rgb(220 252 231 / 0.55);
}

.bg-green-100\/60 {
  background-color: rgb(220 252 231 / 0.6);
}

.bg-green-100\/65 {
  background-color: rgb(220 252 231 / 0.65);
}

.bg-green-100\/70 {
  background-color: rgb(220 252 231 / 0.7);
}

.bg-green-100\/75 {
  background-color: rgb(220 252 231 / 0.75);
}

.bg-green-100\/80 {
  background-color: rgb(220 252 231 / 0.8);
}

.bg-green-100\/85 {
  background-color: rgb(220 252 231 / 0.85);
}

.bg-green-100\/90 {
  background-color: rgb(220 252 231 / 0.9);
}

.bg-green-100\/95 {
  background-color: rgb(220 252 231 / 0.95);
}

.bg-green-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(187 247 208 / var(--tw-bg-opacity, 1));
}

.bg-green-200\/0 {
  background-color: rgb(187 247 208 / 0);
}

.bg-green-200\/10 {
  background-color: rgb(187 247 208 / 0.1);
}

.bg-green-200\/100 {
  background-color: rgb(187 247 208 / 1);
}

.bg-green-200\/15 {
  background-color: rgb(187 247 208 / 0.15);
}

.bg-green-200\/20 {
  background-color: rgb(187 247 208 / 0.2);
}

.bg-green-200\/25 {
  background-color: rgb(187 247 208 / 0.25);
}

.bg-green-200\/30 {
  background-color: rgb(187 247 208 / 0.3);
}

.bg-green-200\/35 {
  background-color: rgb(187 247 208 / 0.35);
}

.bg-green-200\/40 {
  background-color: rgb(187 247 208 / 0.4);
}

.bg-green-200\/45 {
  background-color: rgb(187 247 208 / 0.45);
}

.bg-green-200\/5 {
  background-color: rgb(187 247 208 / 0.05);
}

.bg-green-200\/50 {
  background-color: rgb(187 247 208 / 0.5);
}

.bg-green-200\/55 {
  background-color: rgb(187 247 208 / 0.55);
}

.bg-green-200\/60 {
  background-color: rgb(187 247 208 / 0.6);
}

.bg-green-200\/65 {
  background-color: rgb(187 247 208 / 0.65);
}

.bg-green-200\/70 {
  background-color: rgb(187 247 208 / 0.7);
}

.bg-green-200\/75 {
  background-color: rgb(187 247 208 / 0.75);
}

.bg-green-200\/80 {
  background-color: rgb(187 247 208 / 0.8);
}

.bg-green-200\/85 {
  background-color: rgb(187 247 208 / 0.85);
}

.bg-green-200\/90 {
  background-color: rgb(187 247 208 / 0.9);
}

.bg-green-200\/95 {
  background-color: rgb(187 247 208 / 0.95);
}

.bg-green-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(134 239 172 / var(--tw-bg-opacity, 1));
}

.bg-green-300\/0 {
  background-color: rgb(134 239 172 / 0);
}

.bg-green-300\/10 {
  background-color: rgb(134 239 172 / 0.1);
}

.bg-green-300\/100 {
  background-color: rgb(134 239 172 / 1);
}

.bg-green-300\/15 {
  background-color: rgb(134 239 172 / 0.15);
}

.bg-green-300\/20 {
  background-color: rgb(134 239 172 / 0.2);
}

.bg-green-300\/25 {
  background-color: rgb(134 239 172 / 0.25);
}

.bg-green-300\/30 {
  background-color: rgb(134 239 172 / 0.3);
}

.bg-green-300\/35 {
  background-color: rgb(134 239 172 / 0.35);
}

.bg-green-300\/40 {
  background-color: rgb(134 239 172 / 0.4);
}

.bg-green-300\/45 {
  background-color: rgb(134 239 172 / 0.45);
}

.bg-green-300\/5 {
  background-color: rgb(134 239 172 / 0.05);
}

.bg-green-300\/50 {
  background-color: rgb(134 239 172 / 0.5);
}

.bg-green-300\/55 {
  background-color: rgb(134 239 172 / 0.55);
}

.bg-green-300\/60 {
  background-color: rgb(134 239 172 / 0.6);
}

.bg-green-300\/65 {
  background-color: rgb(134 239 172 / 0.65);
}

.bg-green-300\/70 {
  background-color: rgb(134 239 172 / 0.7);
}

.bg-green-300\/75 {
  background-color: rgb(134 239 172 / 0.75);
}

.bg-green-300\/80 {
  background-color: rgb(134 239 172 / 0.8);
}

.bg-green-300\/85 {
  background-color: rgb(134 239 172 / 0.85);
}

.bg-green-300\/90 {
  background-color: rgb(134 239 172 / 0.9);
}

.bg-green-300\/95 {
  background-color: rgb(134 239 172 / 0.95);
}

.bg-green-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(74 222 128 / var(--tw-bg-opacity, 1));
}

.bg-green-400\/0 {
  background-color: rgb(74 222 128 / 0);
}

.bg-green-400\/10 {
  background-color: rgb(74 222 128 / 0.1);
}

.bg-green-400\/100 {
  background-color: rgb(74 222 128 / 1);
}

.bg-green-400\/15 {
  background-color: rgb(74 222 128 / 0.15);
}

.bg-green-400\/20 {
  background-color: rgb(74 222 128 / 0.2);
}

.bg-green-400\/25 {
  background-color: rgb(74 222 128 / 0.25);
}

.bg-green-400\/30 {
  background-color: rgb(74 222 128 / 0.3);
}

.bg-green-400\/35 {
  background-color: rgb(74 222 128 / 0.35);
}

.bg-green-400\/40 {
  background-color: rgb(74 222 128 / 0.4);
}

.bg-green-400\/45 {
  background-color: rgb(74 222 128 / 0.45);
}

.bg-green-400\/5 {
  background-color: rgb(74 222 128 / 0.05);
}

.bg-green-400\/50 {
  background-color: rgb(74 222 128 / 0.5);
}

.bg-green-400\/55 {
  background-color: rgb(74 222 128 / 0.55);
}

.bg-green-400\/60 {
  background-color: rgb(74 222 128 / 0.6);
}

.bg-green-400\/65 {
  background-color: rgb(74 222 128 / 0.65);
}

.bg-green-400\/70 {
  background-color: rgb(74 222 128 / 0.7);
}

.bg-green-400\/75 {
  background-color: rgb(74 222 128 / 0.75);
}

.bg-green-400\/80 {
  background-color: rgb(74 222 128 / 0.8);
}

.bg-green-400\/85 {
  background-color: rgb(74 222 128 / 0.85);
}

.bg-green-400\/90 {
  background-color: rgb(74 222 128 / 0.9);
}

.bg-green-400\/95 {
  background-color: rgb(74 222 128 / 0.95);
}

.bg-green-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
}

.bg-green-50\/0 {
  background-color: rgb(240 253 244 / 0);
}

.bg-green-50\/10 {
  background-color: rgb(240 253 244 / 0.1);
}

.bg-green-50\/100 {
  background-color: rgb(240 253 244 / 1);
}

.bg-green-50\/15 {
  background-color: rgb(240 253 244 / 0.15);
}

.bg-green-50\/20 {
  background-color: rgb(240 253 244 / 0.2);
}

.bg-green-50\/25 {
  background-color: rgb(240 253 244 / 0.25);
}

.bg-green-50\/30 {
  background-color: rgb(240 253 244 / 0.3);
}

.bg-green-50\/35 {
  background-color: rgb(240 253 244 / 0.35);
}

.bg-green-50\/40 {
  background-color: rgb(240 253 244 / 0.4);
}

.bg-green-50\/45 {
  background-color: rgb(240 253 244 / 0.45);
}

.bg-green-50\/5 {
  background-color: rgb(240 253 244 / 0.05);
}

.bg-green-50\/50 {
  background-color: rgb(240 253 244 / 0.5);
}

.bg-green-50\/55 {
  background-color: rgb(240 253 244 / 0.55);
}

.bg-green-50\/60 {
  background-color: rgb(240 253 244 / 0.6);
}

.bg-green-50\/65 {
  background-color: rgb(240 253 244 / 0.65);
}

.bg-green-50\/70 {
  background-color: rgb(240 253 244 / 0.7);
}

.bg-green-50\/75 {
  background-color: rgb(240 253 244 / 0.75);
}

.bg-green-50\/80 {
  background-color: rgb(240 253 244 / 0.8);
}

.bg-green-50\/85 {
  background-color: rgb(240 253 244 / 0.85);
}

.bg-green-50\/90 {
  background-color: rgb(240 253 244 / 0.9);
}

.bg-green-50\/95 {
  background-color: rgb(240 253 244 / 0.95);
}

.bg-green-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
}

.bg-green-500\/0 {
  background-color: rgb(34 197 94 / 0);
}

.bg-green-500\/10 {
  background-color: rgb(34 197 94 / 0.1);
}

.bg-green-500\/100 {
  background-color: rgb(34 197 94 / 1);
}

.bg-green-500\/15 {
  background-color: rgb(34 197 94 / 0.15);
}

.bg-green-500\/20 {
  background-color: rgb(34 197 94 / 0.2);
}

.bg-green-500\/25 {
  background-color: rgb(34 197 94 / 0.25);
}

.bg-green-500\/30 {
  background-color: rgb(34 197 94 / 0.3);
}

.bg-green-500\/35 {
  background-color: rgb(34 197 94 / 0.35);
}

.bg-green-500\/40 {
  background-color: rgb(34 197 94 / 0.4);
}

.bg-green-500\/45 {
  background-color: rgb(34 197 94 / 0.45);
}

.bg-green-500\/5 {
  background-color: rgb(34 197 94 / 0.05);
}

.bg-green-500\/50 {
  background-color: rgb(34 197 94 / 0.5);
}

.bg-green-500\/55 {
  background-color: rgb(34 197 94 / 0.55);
}

.bg-green-500\/60 {
  background-color: rgb(34 197 94 / 0.6);
}

.bg-green-500\/65 {
  background-color: rgb(34 197 94 / 0.65);
}

.bg-green-500\/70 {
  background-color: rgb(34 197 94 / 0.7);
}

.bg-green-500\/75 {
  background-color: rgb(34 197 94 / 0.75);
}

.bg-green-500\/80 {
  background-color: rgb(34 197 94 / 0.8);
}

.bg-green-500\/85 {
  background-color: rgb(34 197 94 / 0.85);
}

.bg-green-500\/90 {
  background-color: rgb(34 197 94 / 0.9);
}

.bg-green-500\/95 {
  background-color: rgb(34 197 94 / 0.95);
}

.bg-green-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
}

.bg-green-600\/0 {
  background-color: rgb(22 163 74 / 0);
}

.bg-green-600\/10 {
  background-color: rgb(22 163 74 / 0.1);
}

.bg-green-600\/100 {
  background-color: rgb(22 163 74 / 1);
}

.bg-green-600\/15 {
  background-color: rgb(22 163 74 / 0.15);
}

.bg-green-600\/20 {
  background-color: rgb(22 163 74 / 0.2);
}

.bg-green-600\/25 {
  background-color: rgb(22 163 74 / 0.25);
}

.bg-green-600\/30 {
  background-color: rgb(22 163 74 / 0.3);
}

.bg-green-600\/35 {
  background-color: rgb(22 163 74 / 0.35);
}

.bg-green-600\/40 {
  background-color: rgb(22 163 74 / 0.4);
}

.bg-green-600\/45 {
  background-color: rgb(22 163 74 / 0.45);
}

.bg-green-600\/5 {
  background-color: rgb(22 163 74 / 0.05);
}

.bg-green-600\/50 {
  background-color: rgb(22 163 74 / 0.5);
}

.bg-green-600\/55 {
  background-color: rgb(22 163 74 / 0.55);
}

.bg-green-600\/60 {
  background-color: rgb(22 163 74 / 0.6);
}

.bg-green-600\/65 {
  background-color: rgb(22 163 74 / 0.65);
}

.bg-green-600\/70 {
  background-color: rgb(22 163 74 / 0.7);
}

.bg-green-600\/75 {
  background-color: rgb(22 163 74 / 0.75);
}

.bg-green-600\/80 {
  background-color: rgb(22 163 74 / 0.8);
}

.bg-green-600\/85 {
  background-color: rgb(22 163 74 / 0.85);
}

.bg-green-600\/90 {
  background-color: rgb(22 163 74 / 0.9);
}

.bg-green-600\/95 {
  background-color: rgb(22 163 74 / 0.95);
}

.bg-green-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(21 128 61 / var(--tw-bg-opacity, 1));
}

.bg-green-700\/0 {
  background-color: rgb(21 128 61 / 0);
}

.bg-green-700\/10 {
  background-color: rgb(21 128 61 / 0.1);
}

.bg-green-700\/100 {
  background-color: rgb(21 128 61 / 1);
}

.bg-green-700\/15 {
  background-color: rgb(21 128 61 / 0.15);
}

.bg-green-700\/20 {
  background-color: rgb(21 128 61 / 0.2);
}

.bg-green-700\/25 {
  background-color: rgb(21 128 61 / 0.25);
}

.bg-green-700\/30 {
  background-color: rgb(21 128 61 / 0.3);
}

.bg-green-700\/35 {
  background-color: rgb(21 128 61 / 0.35);
}

.bg-green-700\/40 {
  background-color: rgb(21 128 61 / 0.4);
}

.bg-green-700\/45 {
  background-color: rgb(21 128 61 / 0.45);
}

.bg-green-700\/5 {
  background-color: rgb(21 128 61 / 0.05);
}

.bg-green-700\/50 {
  background-color: rgb(21 128 61 / 0.5);
}

.bg-green-700\/55 {
  background-color: rgb(21 128 61 / 0.55);
}

.bg-green-700\/60 {
  background-color: rgb(21 128 61 / 0.6);
}

.bg-green-700\/65 {
  background-color: rgb(21 128 61 / 0.65);
}

.bg-green-700\/70 {
  background-color: rgb(21 128 61 / 0.7);
}

.bg-green-700\/75 {
  background-color: rgb(21 128 61 / 0.75);
}

.bg-green-700\/80 {
  background-color: rgb(21 128 61 / 0.8);
}

.bg-green-700\/85 {
  background-color: rgb(21 128 61 / 0.85);
}

.bg-green-700\/90 {
  background-color: rgb(21 128 61 / 0.9);
}

.bg-green-700\/95 {
  background-color: rgb(21 128 61 / 0.95);
}

.bg-green-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(22 101 52 / var(--tw-bg-opacity, 1));
}

.bg-green-800\/0 {
  background-color: rgb(22 101 52 / 0);
}

.bg-green-800\/10 {
  background-color: rgb(22 101 52 / 0.1);
}

.bg-green-800\/100 {
  background-color: rgb(22 101 52 / 1);
}

.bg-green-800\/15 {
  background-color: rgb(22 101 52 / 0.15);
}

.bg-green-800\/20 {
  background-color: rgb(22 101 52 / 0.2);
}

.bg-green-800\/25 {
  background-color: rgb(22 101 52 / 0.25);
}

.bg-green-800\/30 {
  background-color: rgb(22 101 52 / 0.3);
}

.bg-green-800\/35 {
  background-color: rgb(22 101 52 / 0.35);
}

.bg-green-800\/40 {
  background-color: rgb(22 101 52 / 0.4);
}

.bg-green-800\/45 {
  background-color: rgb(22 101 52 / 0.45);
}

.bg-green-800\/5 {
  background-color: rgb(22 101 52 / 0.05);
}

.bg-green-800\/50 {
  background-color: rgb(22 101 52 / 0.5);
}

.bg-green-800\/55 {
  background-color: rgb(22 101 52 / 0.55);
}

.bg-green-800\/60 {
  background-color: rgb(22 101 52 / 0.6);
}

.bg-green-800\/65 {
  background-color: rgb(22 101 52 / 0.65);
}

.bg-green-800\/70 {
  background-color: rgb(22 101 52 / 0.7);
}

.bg-green-800\/75 {
  background-color: rgb(22 101 52 / 0.75);
}

.bg-green-800\/80 {
  background-color: rgb(22 101 52 / 0.8);
}

.bg-green-800\/85 {
  background-color: rgb(22 101 52 / 0.85);
}

.bg-green-800\/90 {
  background-color: rgb(22 101 52 / 0.9);
}

.bg-green-800\/95 {
  background-color: rgb(22 101 52 / 0.95);
}

.bg-green-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(20 83 45 / var(--tw-bg-opacity, 1));
}

.bg-green-900\/0 {
  background-color: rgb(20 83 45 / 0);
}

.bg-green-900\/10 {
  background-color: rgb(20 83 45 / 0.1);
}

.bg-green-900\/100 {
  background-color: rgb(20 83 45 / 1);
}

.bg-green-900\/15 {
  background-color: rgb(20 83 45 / 0.15);
}

.bg-green-900\/20 {
  background-color: rgb(20 83 45 / 0.2);
}

.bg-green-900\/25 {
  background-color: rgb(20 83 45 / 0.25);
}

.bg-green-900\/30 {
  background-color: rgb(20 83 45 / 0.3);
}

.bg-green-900\/35 {
  background-color: rgb(20 83 45 / 0.35);
}

.bg-green-900\/40 {
  background-color: rgb(20 83 45 / 0.4);
}

.bg-green-900\/45 {
  background-color: rgb(20 83 45 / 0.45);
}

.bg-green-900\/5 {
  background-color: rgb(20 83 45 / 0.05);
}

.bg-green-900\/50 {
  background-color: rgb(20 83 45 / 0.5);
}

.bg-green-900\/55 {
  background-color: rgb(20 83 45 / 0.55);
}

.bg-green-900\/60 {
  background-color: rgb(20 83 45 / 0.6);
}

.bg-green-900\/65 {
  background-color: rgb(20 83 45 / 0.65);
}

.bg-green-900\/70 {
  background-color: rgb(20 83 45 / 0.7);
}

.bg-green-900\/75 {
  background-color: rgb(20 83 45 / 0.75);
}

.bg-green-900\/80 {
  background-color: rgb(20 83 45 / 0.8);
}

.bg-green-900\/85 {
  background-color: rgb(20 83 45 / 0.85);
}

.bg-green-900\/90 {
  background-color: rgb(20 83 45 / 0.9);
}

.bg-green-900\/95 {
  background-color: rgb(20 83 45 / 0.95);
}

.bg-green-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(5 46 22 / var(--tw-bg-opacity, 1));
}

.bg-green-950\/0 {
  background-color: rgb(5 46 22 / 0);
}

.bg-green-950\/10 {
  background-color: rgb(5 46 22 / 0.1);
}

.bg-green-950\/100 {
  background-color: rgb(5 46 22 / 1);
}

.bg-green-950\/15 {
  background-color: rgb(5 46 22 / 0.15);
}

.bg-green-950\/20 {
  background-color: rgb(5 46 22 / 0.2);
}

.bg-green-950\/25 {
  background-color: rgb(5 46 22 / 0.25);
}

.bg-green-950\/30 {
  background-color: rgb(5 46 22 / 0.3);
}

.bg-green-950\/35 {
  background-color: rgb(5 46 22 / 0.35);
}

.bg-green-950\/40 {
  background-color: rgb(5 46 22 / 0.4);
}

.bg-green-950\/45 {
  background-color: rgb(5 46 22 / 0.45);
}

.bg-green-950\/5 {
  background-color: rgb(5 46 22 / 0.05);
}

.bg-green-950\/50 {
  background-color: rgb(5 46 22 / 0.5);
}

.bg-green-950\/55 {
  background-color: rgb(5 46 22 / 0.55);
}

.bg-green-950\/60 {
  background-color: rgb(5 46 22 / 0.6);
}

.bg-green-950\/65 {
  background-color: rgb(5 46 22 / 0.65);
}

.bg-green-950\/70 {
  background-color: rgb(5 46 22 / 0.7);
}

.bg-green-950\/75 {
  background-color: rgb(5 46 22 / 0.75);
}

.bg-green-950\/80 {
  background-color: rgb(5 46 22 / 0.8);
}

.bg-green-950\/85 {
  background-color: rgb(5 46 22 / 0.85);
}

.bg-green-950\/90 {
  background-color: rgb(5 46 22 / 0.9);
}

.bg-green-950\/95 {
  background-color: rgb(5 46 22 / 0.95);
}

.bg-red-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}

.bg-red-100\/0 {
  background-color: rgb(254 226 226 / 0);
}

.bg-red-100\/10 {
  background-color: rgb(254 226 226 / 0.1);
}

.bg-red-100\/100 {
  background-color: rgb(254 226 226 / 1);
}

.bg-red-100\/15 {
  background-color: rgb(254 226 226 / 0.15);
}

.bg-red-100\/20 {
  background-color: rgb(254 226 226 / 0.2);
}

.bg-red-100\/25 {
  background-color: rgb(254 226 226 / 0.25);
}

.bg-red-100\/30 {
  background-color: rgb(254 226 226 / 0.3);
}

.bg-red-100\/35 {
  background-color: rgb(254 226 226 / 0.35);
}

.bg-red-100\/40 {
  background-color: rgb(254 226 226 / 0.4);
}

.bg-red-100\/45 {
  background-color: rgb(254 226 226 / 0.45);
}

.bg-red-100\/5 {
  background-color: rgb(254 226 226 / 0.05);
}

.bg-red-100\/50 {
  background-color: rgb(254 226 226 / 0.5);
}

.bg-red-100\/55 {
  background-color: rgb(254 226 226 / 0.55);
}

.bg-red-100\/60 {
  background-color: rgb(254 226 226 / 0.6);
}

.bg-red-100\/65 {
  background-color: rgb(254 226 226 / 0.65);
}

.bg-red-100\/70 {
  background-color: rgb(254 226 226 / 0.7);
}

.bg-red-100\/75 {
  background-color: rgb(254 226 226 / 0.75);
}

.bg-red-100\/80 {
  background-color: rgb(254 226 226 / 0.8);
}

.bg-red-100\/85 {
  background-color: rgb(254 226 226 / 0.85);
}

.bg-red-100\/90 {
  background-color: rgb(254 226 226 / 0.9);
}

.bg-red-100\/95 {
  background-color: rgb(254 226 226 / 0.95);
}

.bg-red-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 202 202 / var(--tw-bg-opacity, 1));
}

.bg-red-200\/0 {
  background-color: rgb(254 202 202 / 0);
}

.bg-red-200\/10 {
  background-color: rgb(254 202 202 / 0.1);
}

.bg-red-200\/100 {
  background-color: rgb(254 202 202 / 1);
}

.bg-red-200\/15 {
  background-color: rgb(254 202 202 / 0.15);
}

.bg-red-200\/20 {
  background-color: rgb(254 202 202 / 0.2);
}

.bg-red-200\/25 {
  background-color: rgb(254 202 202 / 0.25);
}

.bg-red-200\/30 {
  background-color: rgb(254 202 202 / 0.3);
}

.bg-red-200\/35 {
  background-color: rgb(254 202 202 / 0.35);
}

.bg-red-200\/40 {
  background-color: rgb(254 202 202 / 0.4);
}

.bg-red-200\/45 {
  background-color: rgb(254 202 202 / 0.45);
}

.bg-red-200\/5 {
  background-color: rgb(254 202 202 / 0.05);
}

.bg-red-200\/50 {
  background-color: rgb(254 202 202 / 0.5);
}

.bg-red-200\/55 {
  background-color: rgb(254 202 202 / 0.55);
}

.bg-red-200\/60 {
  background-color: rgb(254 202 202 / 0.6);
}

.bg-red-200\/65 {
  background-color: rgb(254 202 202 / 0.65);
}

.bg-red-200\/70 {
  background-color: rgb(254 202 202 / 0.7);
}

.bg-red-200\/75 {
  background-color: rgb(254 202 202 / 0.75);
}

.bg-red-200\/80 {
  background-color: rgb(254 202 202 / 0.8);
}

.bg-red-200\/85 {
  background-color: rgb(254 202 202 / 0.85);
}

.bg-red-200\/90 {
  background-color: rgb(254 202 202 / 0.9);
}

.bg-red-200\/95 {
  background-color: rgb(254 202 202 / 0.95);
}

.bg-red-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(252 165 165 / var(--tw-bg-opacity, 1));
}

.bg-red-300\/0 {
  background-color: rgb(252 165 165 / 0);
}

.bg-red-300\/10 {
  background-color: rgb(252 165 165 / 0.1);
}

.bg-red-300\/100 {
  background-color: rgb(252 165 165 / 1);
}

.bg-red-300\/15 {
  background-color: rgb(252 165 165 / 0.15);
}

.bg-red-300\/20 {
  background-color: rgb(252 165 165 / 0.2);
}

.bg-red-300\/25 {
  background-color: rgb(252 165 165 / 0.25);
}

.bg-red-300\/30 {
  background-color: rgb(252 165 165 / 0.3);
}

.bg-red-300\/35 {
  background-color: rgb(252 165 165 / 0.35);
}

.bg-red-300\/40 {
  background-color: rgb(252 165 165 / 0.4);
}

.bg-red-300\/45 {
  background-color: rgb(252 165 165 / 0.45);
}

.bg-red-300\/5 {
  background-color: rgb(252 165 165 / 0.05);
}

.bg-red-300\/50 {
  background-color: rgb(252 165 165 / 0.5);
}

.bg-red-300\/55 {
  background-color: rgb(252 165 165 / 0.55);
}

.bg-red-300\/60 {
  background-color: rgb(252 165 165 / 0.6);
}

.bg-red-300\/65 {
  background-color: rgb(252 165 165 / 0.65);
}

.bg-red-300\/70 {
  background-color: rgb(252 165 165 / 0.7);
}

.bg-red-300\/75 {
  background-color: rgb(252 165 165 / 0.75);
}

.bg-red-300\/80 {
  background-color: rgb(252 165 165 / 0.8);
}

.bg-red-300\/85 {
  background-color: rgb(252 165 165 / 0.85);
}

.bg-red-300\/90 {
  background-color: rgb(252 165 165 / 0.9);
}

.bg-red-300\/95 {
  background-color: rgb(252 165 165 / 0.95);
}

.bg-red-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(248 113 113 / var(--tw-bg-opacity, 1));
}

.bg-red-400\/0 {
  background-color: rgb(248 113 113 / 0);
}

.bg-red-400\/10 {
  background-color: rgb(248 113 113 / 0.1);
}

.bg-red-400\/100 {
  background-color: rgb(248 113 113 / 1);
}

.bg-red-400\/15 {
  background-color: rgb(248 113 113 / 0.15);
}

.bg-red-400\/20 {
  background-color: rgb(248 113 113 / 0.2);
}

.bg-red-400\/25 {
  background-color: rgb(248 113 113 / 0.25);
}

.bg-red-400\/30 {
  background-color: rgb(248 113 113 / 0.3);
}

.bg-red-400\/35 {
  background-color: rgb(248 113 113 / 0.35);
}

.bg-red-400\/40 {
  background-color: rgb(248 113 113 / 0.4);
}

.bg-red-400\/45 {
  background-color: rgb(248 113 113 / 0.45);
}

.bg-red-400\/5 {
  background-color: rgb(248 113 113 / 0.05);
}

.bg-red-400\/50 {
  background-color: rgb(248 113 113 / 0.5);
}

.bg-red-400\/55 {
  background-color: rgb(248 113 113 / 0.55);
}

.bg-red-400\/60 {
  background-color: rgb(248 113 113 / 0.6);
}

.bg-red-400\/65 {
  background-color: rgb(248 113 113 / 0.65);
}

.bg-red-400\/70 {
  background-color: rgb(248 113 113 / 0.7);
}

.bg-red-400\/75 {
  background-color: rgb(248 113 113 / 0.75);
}

.bg-red-400\/80 {
  background-color: rgb(248 113 113 / 0.8);
}

.bg-red-400\/85 {
  background-color: rgb(248 113 113 / 0.85);
}

.bg-red-400\/90 {
  background-color: rgb(248 113 113 / 0.9);
}

.bg-red-400\/95 {
  background-color: rgb(248 113 113 / 0.95);
}

.bg-red-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}

.bg-red-50\/0 {
  background-color: rgb(254 242 242 / 0);
}

.bg-red-50\/10 {
  background-color: rgb(254 242 242 / 0.1);
}

.bg-red-50\/100 {
  background-color: rgb(254 242 242 / 1);
}

.bg-red-50\/15 {
  background-color: rgb(254 242 242 / 0.15);
}

.bg-red-50\/20 {
  background-color: rgb(254 242 242 / 0.2);
}

.bg-red-50\/25 {
  background-color: rgb(254 242 242 / 0.25);
}

.bg-red-50\/30 {
  background-color: rgb(254 242 242 / 0.3);
}

.bg-red-50\/35 {
  background-color: rgb(254 242 242 / 0.35);
}

.bg-red-50\/40 {
  background-color: rgb(254 242 242 / 0.4);
}

.bg-red-50\/45 {
  background-color: rgb(254 242 242 / 0.45);
}

.bg-red-50\/5 {
  background-color: rgb(254 242 242 / 0.05);
}

.bg-red-50\/50 {
  background-color: rgb(254 242 242 / 0.5);
}

.bg-red-50\/55 {
  background-color: rgb(254 242 242 / 0.55);
}

.bg-red-50\/60 {
  background-color: rgb(254 242 242 / 0.6);
}

.bg-red-50\/65 {
  background-color: rgb(254 242 242 / 0.65);
}

.bg-red-50\/70 {
  background-color: rgb(254 242 242 / 0.7);
}

.bg-red-50\/75 {
  background-color: rgb(254 242 242 / 0.75);
}

.bg-red-50\/80 {
  background-color: rgb(254 242 242 / 0.8);
}

.bg-red-50\/85 {
  background-color: rgb(254 242 242 / 0.85);
}

.bg-red-50\/90 {
  background-color: rgb(254 242 242 / 0.9);
}

.bg-red-50\/95 {
  background-color: rgb(254 242 242 / 0.95);
}

.bg-red-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}

.bg-red-500\/0 {
  background-color: rgb(239 68 68 / 0);
}

.bg-red-500\/10 {
  background-color: rgb(239 68 68 / 0.1);
}

.bg-red-500\/100 {
  background-color: rgb(239 68 68 / 1);
}

.bg-red-500\/15 {
  background-color: rgb(239 68 68 / 0.15);
}

.bg-red-500\/20 {
  background-color: rgb(239 68 68 / 0.2);
}

.bg-red-500\/25 {
  background-color: rgb(239 68 68 / 0.25);
}

.bg-red-500\/30 {
  background-color: rgb(239 68 68 / 0.3);
}

.bg-red-500\/35 {
  background-color: rgb(239 68 68 / 0.35);
}

.bg-red-500\/40 {
  background-color: rgb(239 68 68 / 0.4);
}

.bg-red-500\/45 {
  background-color: rgb(239 68 68 / 0.45);
}

.bg-red-500\/5 {
  background-color: rgb(239 68 68 / 0.05);
}

.bg-red-500\/50 {
  background-color: rgb(239 68 68 / 0.5);
}

.bg-red-500\/55 {
  background-color: rgb(239 68 68 / 0.55);
}

.bg-red-500\/60 {
  background-color: rgb(239 68 68 / 0.6);
}

.bg-red-500\/65 {
  background-color: rgb(239 68 68 / 0.65);
}

.bg-red-500\/70 {
  background-color: rgb(239 68 68 / 0.7);
}

.bg-red-500\/75 {
  background-color: rgb(239 68 68 / 0.75);
}

.bg-red-500\/80 {
  background-color: rgb(239 68 68 / 0.8);
}

.bg-red-500\/85 {
  background-color: rgb(239 68 68 / 0.85);
}

.bg-red-500\/90 {
  background-color: rgb(239 68 68 / 0.9);
}

.bg-red-500\/95 {
  background-color: rgb(239 68 68 / 0.95);
}

.bg-red-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}

.bg-red-600\/0 {
  background-color: rgb(220 38 38 / 0);
}

.bg-red-600\/10 {
  background-color: rgb(220 38 38 / 0.1);
}

.bg-red-600\/100 {
  background-color: rgb(220 38 38 / 1);
}

.bg-red-600\/15 {
  background-color: rgb(220 38 38 / 0.15);
}

.bg-red-600\/20 {
  background-color: rgb(220 38 38 / 0.2);
}

.bg-red-600\/25 {
  background-color: rgb(220 38 38 / 0.25);
}

.bg-red-600\/30 {
  background-color: rgb(220 38 38 / 0.3);
}

.bg-red-600\/35 {
  background-color: rgb(220 38 38 / 0.35);
}

.bg-red-600\/40 {
  background-color: rgb(220 38 38 / 0.4);
}

.bg-red-600\/45 {
  background-color: rgb(220 38 38 / 0.45);
}

.bg-red-600\/5 {
  background-color: rgb(220 38 38 / 0.05);
}

.bg-red-600\/50 {
  background-color: rgb(220 38 38 / 0.5);
}

.bg-red-600\/55 {
  background-color: rgb(220 38 38 / 0.55);
}

.bg-red-600\/60 {
  background-color: rgb(220 38 38 / 0.6);
}

.bg-red-600\/65 {
  background-color: rgb(220 38 38 / 0.65);
}

.bg-red-600\/70 {
  background-color: rgb(220 38 38 / 0.7);
}

.bg-red-600\/75 {
  background-color: rgb(220 38 38 / 0.75);
}

.bg-red-600\/80 {
  background-color: rgb(220 38 38 / 0.8);
}

.bg-red-600\/85 {
  background-color: rgb(220 38 38 / 0.85);
}

.bg-red-600\/90 {
  background-color: rgb(220 38 38 / 0.9);
}

.bg-red-600\/95 {
  background-color: rgb(220 38 38 / 0.95);
}

.bg-red-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
}

.bg-red-700\/0 {
  background-color: rgb(185 28 28 / 0);
}

.bg-red-700\/10 {
  background-color: rgb(185 28 28 / 0.1);
}

.bg-red-700\/100 {
  background-color: rgb(185 28 28 / 1);
}

.bg-red-700\/15 {
  background-color: rgb(185 28 28 / 0.15);
}

.bg-red-700\/20 {
  background-color: rgb(185 28 28 / 0.2);
}

.bg-red-700\/25 {
  background-color: rgb(185 28 28 / 0.25);
}

.bg-red-700\/30 {
  background-color: rgb(185 28 28 / 0.3);
}

.bg-red-700\/35 {
  background-color: rgb(185 28 28 / 0.35);
}

.bg-red-700\/40 {
  background-color: rgb(185 28 28 / 0.4);
}

.bg-red-700\/45 {
  background-color: rgb(185 28 28 / 0.45);
}

.bg-red-700\/5 {
  background-color: rgb(185 28 28 / 0.05);
}

.bg-red-700\/50 {
  background-color: rgb(185 28 28 / 0.5);
}

.bg-red-700\/55 {
  background-color: rgb(185 28 28 / 0.55);
}

.bg-red-700\/60 {
  background-color: rgb(185 28 28 / 0.6);
}

.bg-red-700\/65 {
  background-color: rgb(185 28 28 / 0.65);
}

.bg-red-700\/70 {
  background-color: rgb(185 28 28 / 0.7);
}

.bg-red-700\/75 {
  background-color: rgb(185 28 28 / 0.75);
}

.bg-red-700\/80 {
  background-color: rgb(185 28 28 / 0.8);
}

.bg-red-700\/85 {
  background-color: rgb(185 28 28 / 0.85);
}

.bg-red-700\/90 {
  background-color: rgb(185 28 28 / 0.9);
}

.bg-red-700\/95 {
  background-color: rgb(185 28 28 / 0.95);
}

.bg-red-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(153 27 27 / var(--tw-bg-opacity, 1));
}

.bg-red-800\/0 {
  background-color: rgb(153 27 27 / 0);
}

.bg-red-800\/10 {
  background-color: rgb(153 27 27 / 0.1);
}

.bg-red-800\/100 {
  background-color: rgb(153 27 27 / 1);
}

.bg-red-800\/15 {
  background-color: rgb(153 27 27 / 0.15);
}

.bg-red-800\/20 {
  background-color: rgb(153 27 27 / 0.2);
}

.bg-red-800\/25 {
  background-color: rgb(153 27 27 / 0.25);
}

.bg-red-800\/30 {
  background-color: rgb(153 27 27 / 0.3);
}

.bg-red-800\/35 {
  background-color: rgb(153 27 27 / 0.35);
}

.bg-red-800\/40 {
  background-color: rgb(153 27 27 / 0.4);
}

.bg-red-800\/45 {
  background-color: rgb(153 27 27 / 0.45);
}

.bg-red-800\/5 {
  background-color: rgb(153 27 27 / 0.05);
}

.bg-red-800\/50 {
  background-color: rgb(153 27 27 / 0.5);
}

.bg-red-800\/55 {
  background-color: rgb(153 27 27 / 0.55);
}

.bg-red-800\/60 {
  background-color: rgb(153 27 27 / 0.6);
}

.bg-red-800\/65 {
  background-color: rgb(153 27 27 / 0.65);
}

.bg-red-800\/70 {
  background-color: rgb(153 27 27 / 0.7);
}

.bg-red-800\/75 {
  background-color: rgb(153 27 27 / 0.75);
}

.bg-red-800\/80 {
  background-color: rgb(153 27 27 / 0.8);
}

.bg-red-800\/85 {
  background-color: rgb(153 27 27 / 0.85);
}

.bg-red-800\/90 {
  background-color: rgb(153 27 27 / 0.9);
}

.bg-red-800\/95 {
  background-color: rgb(153 27 27 / 0.95);
}

.bg-red-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(127 29 29 / var(--tw-bg-opacity, 1));
}

.bg-red-900\/0 {
  background-color: rgb(127 29 29 / 0);
}

.bg-red-900\/10 {
  background-color: rgb(127 29 29 / 0.1);
}

.bg-red-900\/100 {
  background-color: rgb(127 29 29 / 1);
}

.bg-red-900\/15 {
  background-color: rgb(127 29 29 / 0.15);
}

.bg-red-900\/20 {
  background-color: rgb(127 29 29 / 0.2);
}

.bg-red-900\/25 {
  background-color: rgb(127 29 29 / 0.25);
}

.bg-red-900\/30 {
  background-color: rgb(127 29 29 / 0.3);
}

.bg-red-900\/35 {
  background-color: rgb(127 29 29 / 0.35);
}

.bg-red-900\/40 {
  background-color: rgb(127 29 29 / 0.4);
}

.bg-red-900\/45 {
  background-color: rgb(127 29 29 / 0.45);
}

.bg-red-900\/5 {
  background-color: rgb(127 29 29 / 0.05);
}

.bg-red-900\/50 {
  background-color: rgb(127 29 29 / 0.5);
}

.bg-red-900\/55 {
  background-color: rgb(127 29 29 / 0.55);
}

.bg-red-900\/60 {
  background-color: rgb(127 29 29 / 0.6);
}

.bg-red-900\/65 {
  background-color: rgb(127 29 29 / 0.65);
}

.bg-red-900\/70 {
  background-color: rgb(127 29 29 / 0.7);
}

.bg-red-900\/75 {
  background-color: rgb(127 29 29 / 0.75);
}

.bg-red-900\/80 {
  background-color: rgb(127 29 29 / 0.8);
}

.bg-red-900\/85 {
  background-color: rgb(127 29 29 / 0.85);
}

.bg-red-900\/90 {
  background-color: rgb(127 29 29 / 0.9);
}

.bg-red-900\/95 {
  background-color: rgb(127 29 29 / 0.95);
}

.bg-red-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(69 10 10 / var(--tw-bg-opacity, 1));
}

.bg-red-950\/0 {
  background-color: rgb(69 10 10 / 0);
}

.bg-red-950\/10 {
  background-color: rgb(69 10 10 / 0.1);
}

.bg-red-950\/100 {
  background-color: rgb(69 10 10 / 1);
}

.bg-red-950\/15 {
  background-color: rgb(69 10 10 / 0.15);
}

.bg-red-950\/20 {
  background-color: rgb(69 10 10 / 0.2);
}

.bg-red-950\/25 {
  background-color: rgb(69 10 10 / 0.25);
}

.bg-red-950\/30 {
  background-color: rgb(69 10 10 / 0.3);
}

.bg-red-950\/35 {
  background-color: rgb(69 10 10 / 0.35);
}

.bg-red-950\/40 {
  background-color: rgb(69 10 10 / 0.4);
}

.bg-red-950\/45 {
  background-color: rgb(69 10 10 / 0.45);
}

.bg-red-950\/5 {
  background-color: rgb(69 10 10 / 0.05);
}

.bg-red-950\/50 {
  background-color: rgb(69 10 10 / 0.5);
}

.bg-red-950\/55 {
  background-color: rgb(69 10 10 / 0.55);
}

.bg-red-950\/60 {
  background-color: rgb(69 10 10 / 0.6);
}

.bg-red-950\/65 {
  background-color: rgb(69 10 10 / 0.65);
}

.bg-red-950\/70 {
  background-color: rgb(69 10 10 / 0.7);
}

.bg-red-950\/75 {
  background-color: rgb(69 10 10 / 0.75);
}

.bg-red-950\/80 {
  background-color: rgb(69 10 10 / 0.8);
}

.bg-red-950\/85 {
  background-color: rgb(69 10 10 / 0.85);
}

.bg-red-950\/90 {
  background-color: rgb(69 10 10 / 0.9);
}

.bg-red-950\/95 {
  background-color: rgb(69 10 10 / 0.95);
}

.bg-transparent {
  background-color: transparent;
}

.bg-transparent\/0 {
  background-color: rgb(0 0 0 / 0);
}

.bg-transparent\/10 {
  background-color: rgb(0 0 0 / 0.1);
}

.bg-transparent\/100 {
  background-color: rgb(0 0 0 / 1);
}

.bg-transparent\/15 {
  background-color: rgb(0 0 0 / 0.15);
}

.bg-transparent\/20 {
  background-color: rgb(0 0 0 / 0.2);
}

.bg-transparent\/25 {
  background-color: rgb(0 0 0 / 0.25);
}

.bg-transparent\/30 {
  background-color: rgb(0 0 0 / 0.3);
}

.bg-transparent\/35 {
  background-color: rgb(0 0 0 / 0.35);
}

.bg-transparent\/40 {
  background-color: rgb(0 0 0 / 0.4);
}

.bg-transparent\/45 {
  background-color: rgb(0 0 0 / 0.45);
}

.bg-transparent\/5 {
  background-color: rgb(0 0 0 / 0.05);
}

.bg-transparent\/50 {
  background-color: rgb(0 0 0 / 0.5);
}

.bg-transparent\/55 {
  background-color: rgb(0 0 0 / 0.55);
}

.bg-transparent\/60 {
  background-color: rgb(0 0 0 / 0.6);
}

.bg-transparent\/65 {
  background-color: rgb(0 0 0 / 0.65);
}

.bg-transparent\/70 {
  background-color: rgb(0 0 0 / 0.7);
}

.bg-transparent\/75 {
  background-color: rgb(0 0 0 / 0.75);
}

.bg-transparent\/80 {
  background-color: rgb(0 0 0 / 0.8);
}

.bg-transparent\/85 {
  background-color: rgb(0 0 0 / 0.85);
}

.bg-transparent\/90 {
  background-color: rgb(0 0 0 / 0.9);
}

.bg-transparent\/95 {
  background-color: rgb(0 0 0 / 0.95);
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.bg-white\/0 {
  background-color: rgb(255 255 255 / 0);
}

.bg-white\/10 {
  background-color: rgb(255 255 255 / 0.1);
}

.bg-white\/100 {
  background-color: rgb(255 255 255 / 1);
}

.bg-white\/15 {
  background-color: rgb(255 255 255 / 0.15);
}

.bg-white\/20 {
  background-color: rgb(255 255 255 / 0.2);
}

.bg-white\/25 {
  background-color: rgb(255 255 255 / 0.25);
}

.bg-white\/30 {
  background-color: rgb(255 255 255 / 0.3);
}

.bg-white\/35 {
  background-color: rgb(255 255 255 / 0.35);
}

.bg-white\/40 {
  background-color: rgb(255 255 255 / 0.4);
}

.bg-white\/45 {
  background-color: rgb(255 255 255 / 0.45);
}

.bg-white\/5 {
  background-color: rgb(255 255 255 / 0.05);
}

.bg-white\/50 {
  background-color: rgb(255 255 255 / 0.5);
}

.bg-white\/55 {
  background-color: rgb(255 255 255 / 0.55);
}

.bg-white\/60 {
  background-color: rgb(255 255 255 / 0.6);
}

.bg-white\/65 {
  background-color: rgb(255 255 255 / 0.65);
}

.bg-white\/70 {
  background-color: rgb(255 255 255 / 0.7);
}

.bg-white\/75 {
  background-color: rgb(255 255 255 / 0.75);
}

.bg-white\/80 {
  background-color: rgb(255 255 255 / 0.8);
}

.bg-white\/85 {
  background-color: rgb(255 255 255 / 0.85);
}

.bg-white\/90 {
  background-color: rgb(255 255 255 / 0.9);
}

.bg-white\/95 {
  background-color: rgb(255 255 255 / 0.95);
}

.bg-opacity-0 {
  --tw-bg-opacity: 0;
}

.bg-opacity-10 {
  --tw-bg-opacity: 0.1;
}

.bg-opacity-100 {
  --tw-bg-opacity: 1;
}

.bg-opacity-15 {
  --tw-bg-opacity: 0.15;
}

.bg-opacity-20 {
  --tw-bg-opacity: 0.2;
}

.bg-opacity-25 {
  --tw-bg-opacity: 0.25;
}

.bg-opacity-30 {
  --tw-bg-opacity: 0.3;
}

.bg-opacity-35 {
  --tw-bg-opacity: 0.35;
}

.bg-opacity-40 {
  --tw-bg-opacity: 0.4;
}

.bg-opacity-45 {
  --tw-bg-opacity: 0.45;
}

.bg-opacity-5 {
  --tw-bg-opacity: 0.05;
}

.bg-opacity-50 {
  --tw-bg-opacity: 0.5;
}

.bg-opacity-55 {
  --tw-bg-opacity: 0.55;
}

.bg-opacity-60 {
  --tw-bg-opacity: 0.6;
}

.bg-opacity-65 {
  --tw-bg-opacity: 0.65;
}

.bg-opacity-70 {
  --tw-bg-opacity: 0.7;
}

.bg-opacity-75 {
  --tw-bg-opacity: 0.75;
}

.bg-opacity-80 {
  --tw-bg-opacity: 0.8;
}

.bg-opacity-85 {
  --tw-bg-opacity: 0.85;
}

.bg-opacity-90 {
  --tw-bg-opacity: 0.9;
}

.bg-opacity-95 {
  --tw-bg-opacity: 0.95;
}

.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.bg-gradient-to-bl {
  background-image: linear-gradient(to bottom left, var(--tw-gradient-stops));
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-gradient-to-l {
  background-image: linear-gradient(to left, var(--tw-gradient-stops));
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.bg-gradient-to-tl {
  background-image: linear-gradient(to top left, var(--tw-gradient-stops));
}

.bg-gradient-to-tr {
  background-image: linear-gradient(to top right, var(--tw-gradient-stops));
}

.bg-none {
  background-image: none;
}

.decoration-slice {
  -webkit-box-decoration-break: slice;
          box-decoration-break: slice;
}

.decoration-clone {
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}

.box-decoration-slice {
  -webkit-box-decoration-break: slice;
          box-decoration-break: slice;
}

.box-decoration-clone {
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}

.bg-auto {
  background-size: auto;
}

.bg-contain {
  background-size: contain;
}

.bg-cover {
  background-size: cover;
}

.bg-fixed {
  background-attachment: fixed;
}

.bg-local {
  background-attachment: local;
}

.bg-scroll {
  background-attachment: scroll;
}

.bg-clip-border {
  background-clip: border-box;
}

.bg-clip-padding {
  background-clip: padding-box;
}

.bg-clip-content {
  background-clip: content-box;
}

.bg-clip-text {
  -webkit-background-clip: text;
          background-clip: text;
}

.bg-bottom {
  background-position: bottom;
}

.bg-center {
  background-position: center;
}

.bg-left {
  background-position: left;
}

.bg-left-bottom {
  background-position: left bottom;
}

.bg-left-top {
  background-position: left top;
}

.bg-right {
  background-position: right;
}

.bg-right-bottom {
  background-position: right bottom;
}

.bg-right-top {
  background-position: right top;
}

.bg-top {
  background-position: top;
}

.bg-repeat {
  background-repeat: repeat;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.bg-repeat-x {
  background-repeat: repeat-x;
}

.bg-repeat-y {
  background-repeat: repeat-y;
}

.bg-repeat-round {
  background-repeat: round;
}

.bg-repeat-space {
  background-repeat: space;
}

.bg-origin-border {
  background-origin: border-box;
}

.bg-origin-padding {
  background-origin: padding-box;
}

.bg-origin-content {
  background-origin: content-box;
}

.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.object-fill {
  -o-object-fit: fill;
     object-fit: fill;
}

.object-none {
  -o-object-fit: none;
     object-fit: none;
}

.object-scale-down {
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.p-0 {
  padding: 0px;
}

.p-0\.5 {
  padding: 0.125rem;
}

.p-1 {
  padding: 0.25rem;
}

.p-1\.5 {
  padding: 0.375rem;
}

.p-10 {
  padding: 2.5rem;
}

.p-11 {
  padding: 2.75rem;
}

.p-12 {
  padding: 3rem;
}

.p-14 {
  padding: 3.5rem;
}

.p-16 {
  padding: 4rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-2\.5 {
  padding: 0.625rem;
}

.p-20 {
  padding: 5rem;
}

.p-24 {
  padding: 6rem;
}

.p-28 {
  padding: 7rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-3\.5 {
  padding: 0.875rem;
}

.p-32 {
  padding: 8rem;
}

.p-36 {
  padding: 9rem;
}

.p-4 {
  padding: 1rem;
}

.p-40 {
  padding: 10rem;
}

.p-44 {
  padding: 11rem;
}

.p-48 {
  padding: 12rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-52 {
  padding: 13rem;
}

.p-56 {
  padding: 14rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-60 {
  padding: 15rem;
}

.p-64 {
  padding: 16rem;
}

.p-7 {
  padding: 1.75rem;
}

.p-72 {
  padding: 18rem;
}

.p-8 {
  padding: 2rem;
}

.p-80 {
  padding: 20rem;
}

.p-9 {
  padding: 2.25rem;
}

.p-96 {
  padding: 24rem;
}

.p-px {
  padding: 1px;
}

.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}

.px-0\.5 {
  padding-left: 0.125rem;
  padding-right: 0.125rem;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.px-1\.5 {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.px-11 {
  padding-left: 2.75rem;
  padding-right: 2.75rem;
}

.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.px-14 {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

.px-16 {
  padding-left: 4rem;
  padding-right: 4rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.px-20 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.px-24 {
  padding-left: 6rem;
  padding-right: 6rem;
}

.px-28 {
  padding-left: 7rem;
  padding-right: 7rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-3\.5 {
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}

.px-32 {
  padding-left: 8rem;
  padding-right: 8rem;
}

.px-36 {
  padding-left: 9rem;
  padding-right: 9rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-40 {
  padding-left: 10rem;
  padding-right: 10rem;
}

.px-44 {
  padding-left: 11rem;
  padding-right: 11rem;
}

.px-48 {
  padding-left: 12rem;
  padding-right: 12rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-52 {
  padding-left: 13rem;
  padding-right: 13rem;
}

.px-56 {
  padding-left: 14rem;
  padding-right: 14rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-60 {
  padding-left: 15rem;
  padding-right: 15rem;
}

.px-64 {
  padding-left: 16rem;
  padding-right: 16rem;
}

.px-7 {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.px-72 {
  padding-left: 18rem;
  padding-right: 18rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-80 {
  padding-left: 20rem;
  padding-right: 20rem;
}

.px-9 {
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}

.px-96 {
  padding-left: 24rem;
  padding-right: 24rem;
}

.px-px {
  padding-left: 1px;
  padding-right: 1px;
}

.py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}

.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-11 {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-14 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-28 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-3\.5 {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.py-36 {
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-40 {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.py-44 {
  padding-top: 11rem;
  padding-bottom: 11rem;
}

.py-48 {
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.py-52 {
  padding-top: 13rem;
  padding-bottom: 13rem;
}

.py-56 {
  padding-top: 14rem;
  padding-bottom: 14rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-60 {
  padding-top: 15rem;
  padding-bottom: 15rem;
}

.py-64 {
  padding-top: 16rem;
  padding-bottom: 16rem;
}

.py-7 {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.py-72 {
  padding-top: 18rem;
  padding-bottom: 18rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-80 {
  padding-top: 20rem;
  padding-bottom: 20rem;
}

.py-9 {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.py-96 {
  padding-top: 24rem;
  padding-bottom: 24rem;
}

.py-px {
  padding-top: 1px;
  padding-bottom: 1px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-0\.5 {
  padding-bottom: 0.125rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-1\.5 {
  padding-bottom: 0.375rem;
}

.pb-10 {
  padding-bottom: 2.5rem;
}

.pb-11 {
  padding-bottom: 2.75rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.pb-14 {
  padding-bottom: 3.5rem;
}

.pb-16 {
  padding-bottom: 4rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-2\.5 {
  padding-bottom: 0.625rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

.pb-24 {
  padding-bottom: 6rem;
}

.pb-28 {
  padding-bottom: 7rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pb-3\.5 {
  padding-bottom: 0.875rem;
}

.pb-32 {
  padding-bottom: 8rem;
}

.pb-36 {
  padding-bottom: 9rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-40 {
  padding-bottom: 10rem;
}

.pb-44 {
  padding-bottom: 11rem;
}

.pb-48 {
  padding-bottom: 12rem;
}

.pb-5 {
  padding-bottom: 1.25rem;
}

.pb-52 {
  padding-bottom: 13rem;
}

.pb-56 {
  padding-bottom: 14rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pb-60 {
  padding-bottom: 15rem;
}

.pb-64 {
  padding-bottom: 16rem;
}

.pb-7 {
  padding-bottom: 1.75rem;
}

.pb-72 {
  padding-bottom: 18rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pb-80 {
  padding-bottom: 20rem;
}

.pb-9 {
  padding-bottom: 2.25rem;
}

.pb-96 {
  padding-bottom: 24rem;
}

.pb-px {
  padding-bottom: 1px;
}

.pe-0 {
  padding-inline-end: 0px;
}

.pe-0\.5 {
  padding-inline-end: 0.125rem;
}

.pe-1 {
  padding-inline-end: 0.25rem;
}

.pe-1\.5 {
  padding-inline-end: 0.375rem;
}

.pe-10 {
  padding-inline-end: 2.5rem;
}

.pe-11 {
  padding-inline-end: 2.75rem;
}

.pe-12 {
  padding-inline-end: 3rem;
}

.pe-14 {
  padding-inline-end: 3.5rem;
}

.pe-16 {
  padding-inline-end: 4rem;
}

.pe-2 {
  padding-inline-end: 0.5rem;
}

.pe-2\.5 {
  padding-inline-end: 0.625rem;
}

.pe-20 {
  padding-inline-end: 5rem;
}

.pe-24 {
  padding-inline-end: 6rem;
}

.pe-28 {
  padding-inline-end: 7rem;
}

.pe-3 {
  padding-inline-end: 0.75rem;
}

.pe-3\.5 {
  padding-inline-end: 0.875rem;
}

.pe-32 {
  padding-inline-end: 8rem;
}

.pe-36 {
  padding-inline-end: 9rem;
}

.pe-4 {
  padding-inline-end: 1rem;
}

.pe-40 {
  padding-inline-end: 10rem;
}

.pe-44 {
  padding-inline-end: 11rem;
}

.pe-48 {
  padding-inline-end: 12rem;
}

.pe-5 {
  padding-inline-end: 1.25rem;
}

.pe-52 {
  padding-inline-end: 13rem;
}

.pe-56 {
  padding-inline-end: 14rem;
}

.pe-6 {
  padding-inline-end: 1.5rem;
}

.pe-60 {
  padding-inline-end: 15rem;
}

.pe-64 {
  padding-inline-end: 16rem;
}

.pe-7 {
  padding-inline-end: 1.75rem;
}

.pe-72 {
  padding-inline-end: 18rem;
}

.pe-8 {
  padding-inline-end: 2rem;
}

.pe-80 {
  padding-inline-end: 20rem;
}

.pe-9 {
  padding-inline-end: 2.25rem;
}

.pe-96 {
  padding-inline-end: 24rem;
}

.pe-px {
  padding-inline-end: 1px;
}

.pl-0 {
  padding-left: 0px;
}

.pl-0\.5 {
  padding-left: 0.125rem;
}

.pl-1 {
  padding-left: 0.25rem;
}

.pl-1\.5 {
  padding-left: 0.375rem;
}

.pl-10 {
  padding-left: 2.5rem;
}

.pl-11 {
  padding-left: 2.75rem;
}

.pl-12 {
  padding-left: 3rem;
}

.pl-14 {
  padding-left: 3.5rem;
}

.pl-16 {
  padding-left: 4rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.pl-2\.5 {
  padding-left: 0.625rem;
}

.pl-20 {
  padding-left: 5rem;
}

.pl-24 {
  padding-left: 6rem;
}

.pl-28 {
  padding-left: 7rem;
}

.pl-3 {
  padding-left: 0.75rem;
}

.pl-3\.5 {
  padding-left: 0.875rem;
}

.pl-32 {
  padding-left: 8rem;
}

.pl-36 {
  padding-left: 9rem;
}

.pl-4 {
  padding-left: 1rem;
}

.pl-40 {
  padding-left: 10rem;
}

.pl-44 {
  padding-left: 11rem;
}

.pl-48 {
  padding-left: 12rem;
}

.pl-5 {
  padding-left: 1.25rem;
}

.pl-52 {
  padding-left: 13rem;
}

.pl-56 {
  padding-left: 14rem;
}

.pl-6 {
  padding-left: 1.5rem;
}

.pl-60 {
  padding-left: 15rem;
}

.pl-64 {
  padding-left: 16rem;
}

.pl-7 {
  padding-left: 1.75rem;
}

.pl-72 {
  padding-left: 18rem;
}

.pl-8 {
  padding-left: 2rem;
}

.pl-80 {
  padding-left: 20rem;
}

.pl-9 {
  padding-left: 2.25rem;
}

.pl-96 {
  padding-left: 24rem;
}

.pl-px {
  padding-left: 1px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-0\.5 {
  padding-right: 0.125rem;
}

.pr-1 {
  padding-right: 0.25rem;
}

.pr-1\.5 {
  padding-right: 0.375rem;
}

.pr-10 {
  padding-right: 2.5rem;
}

.pr-11 {
  padding-right: 2.75rem;
}

.pr-12 {
  padding-right: 3rem;
}

.pr-14 {
  padding-right: 3.5rem;
}

.pr-16 {
  padding-right: 4rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.pr-2\.5 {
  padding-right: 0.625rem;
}

.pr-20 {
  padding-right: 5rem;
}

.pr-24 {
  padding-right: 6rem;
}

.pr-28 {
  padding-right: 7rem;
}

.pr-3 {
  padding-right: 0.75rem;
}

.pr-3\.5 {
  padding-right: 0.875rem;
}

.pr-32 {
  padding-right: 8rem;
}

.pr-36 {
  padding-right: 9rem;
}

.pr-4 {
  padding-right: 1rem;
}

.pr-40 {
  padding-right: 10rem;
}

.pr-44 {
  padding-right: 11rem;
}

.pr-48 {
  padding-right: 12rem;
}

.pr-5 {
  padding-right: 1.25rem;
}

.pr-52 {
  padding-right: 13rem;
}

.pr-56 {
  padding-right: 14rem;
}

.pr-6 {
  padding-right: 1.5rem;
}

.pr-60 {
  padding-right: 15rem;
}

.pr-64 {
  padding-right: 16rem;
}

.pr-7 {
  padding-right: 1.75rem;
}

.pr-72 {
  padding-right: 18rem;
}

.pr-8 {
  padding-right: 2rem;
}

.pr-80 {
  padding-right: 20rem;
}

.pr-9 {
  padding-right: 2.25rem;
}

.pr-96 {
  padding-right: 24rem;
}

.pr-px {
  padding-right: 1px;
}

.ps-0 {
  padding-inline-start: 0px;
}

.ps-0\.5 {
  padding-inline-start: 0.125rem;
}

.ps-1 {
  padding-inline-start: 0.25rem;
}

.ps-1\.5 {
  padding-inline-start: 0.375rem;
}

.ps-10 {
  padding-inline-start: 2.5rem;
}

.ps-11 {
  padding-inline-start: 2.75rem;
}

.ps-12 {
  padding-inline-start: 3rem;
}

.ps-14 {
  padding-inline-start: 3.5rem;
}

.ps-16 {
  padding-inline-start: 4rem;
}

.ps-2 {
  padding-inline-start: 0.5rem;
}

.ps-2\.5 {
  padding-inline-start: 0.625rem;
}

.ps-20 {
  padding-inline-start: 5rem;
}

.ps-24 {
  padding-inline-start: 6rem;
}

.ps-28 {
  padding-inline-start: 7rem;
}

.ps-3 {
  padding-inline-start: 0.75rem;
}

.ps-3\.5 {
  padding-inline-start: 0.875rem;
}

.ps-32 {
  padding-inline-start: 8rem;
}

.ps-36 {
  padding-inline-start: 9rem;
}

.ps-4 {
  padding-inline-start: 1rem;
}

.ps-40 {
  padding-inline-start: 10rem;
}

.ps-44 {
  padding-inline-start: 11rem;
}

.ps-48 {
  padding-inline-start: 12rem;
}

.ps-5 {
  padding-inline-start: 1.25rem;
}

.ps-52 {
  padding-inline-start: 13rem;
}

.ps-56 {
  padding-inline-start: 14rem;
}

.ps-6 {
  padding-inline-start: 1.5rem;
}

.ps-60 {
  padding-inline-start: 15rem;
}

.ps-64 {
  padding-inline-start: 16rem;
}

.ps-7 {
  padding-inline-start: 1.75rem;
}

.ps-72 {
  padding-inline-start: 18rem;
}

.ps-8 {
  padding-inline-start: 2rem;
}

.ps-80 {
  padding-inline-start: 20rem;
}

.ps-9 {
  padding-inline-start: 2.25rem;
}

.ps-96 {
  padding-inline-start: 24rem;
}

.ps-px {
  padding-inline-start: 1px;
}

.pt-0 {
  padding-top: 0px;
}

.pt-0\.5 {
  padding-top: 0.125rem;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pt-1\.5 {
  padding-top: 0.375rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.pt-11 {
  padding-top: 2.75rem;
}

.pt-12 {
  padding-top: 3rem;
}

.pt-14 {
  padding-top: 3.5rem;
}

.pt-16 {
  padding-top: 4rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-2\.5 {
  padding-top: 0.625rem;
}

.pt-20 {
  padding-top: 5rem;
}

.pt-24 {
  padding-top: 6rem;
}

.pt-28 {
  padding-top: 7rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.pt-3\.5 {
  padding-top: 0.875rem;
}

.pt-32 {
  padding-top: 8rem;
}

.pt-36 {
  padding-top: 9rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-40 {
  padding-top: 10rem;
}

.pt-44 {
  padding-top: 11rem;
}

.pt-48 {
  padding-top: 12rem;
}

.pt-5 {
  padding-top: 1.25rem;
}

.pt-52 {
  padding-top: 13rem;
}

.pt-56 {
  padding-top: 14rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pt-60 {
  padding-top: 15rem;
}

.pt-64 {
  padding-top: 16rem;
}

.pt-7 {
  padding-top: 1.75rem;
}

.pt-72 {
  padding-top: 18rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pt-80 {
  padding-top: 20rem;
}

.pt-9 {
  padding-top: 2.25rem;
}

.pt-96 {
  padding-top: 24rem;
}

.pt-px {
  padding-top: 1px;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.text-start {
  text-align: start;
}

.text-end {
  text-align: end;
}

.-indent-0 {
  text-indent: -0px;
}

.-indent-0\.5 {
  text-indent: -0.125rem;
}

.-indent-1 {
  text-indent: -0.25rem;
}

.-indent-1\.5 {
  text-indent: -0.375rem;
}

.-indent-10 {
  text-indent: -2.5rem;
}

.-indent-11 {
  text-indent: -2.75rem;
}

.-indent-12 {
  text-indent: -3rem;
}

.-indent-14 {
  text-indent: -3.5rem;
}

.-indent-16 {
  text-indent: -4rem;
}

.-indent-2 {
  text-indent: -0.5rem;
}

.-indent-2\.5 {
  text-indent: -0.625rem;
}

.-indent-20 {
  text-indent: -5rem;
}

.-indent-24 {
  text-indent: -6rem;
}

.-indent-28 {
  text-indent: -7rem;
}

.-indent-3 {
  text-indent: -0.75rem;
}

.-indent-3\.5 {
  text-indent: -0.875rem;
}

.-indent-32 {
  text-indent: -8rem;
}

.-indent-36 {
  text-indent: -9rem;
}

.-indent-4 {
  text-indent: -1rem;
}

.-indent-40 {
  text-indent: -10rem;
}

.-indent-44 {
  text-indent: -11rem;
}

.-indent-48 {
  text-indent: -12rem;
}

.-indent-5 {
  text-indent: -1.25rem;
}

.-indent-52 {
  text-indent: -13rem;
}

.-indent-56 {
  text-indent: -14rem;
}

.-indent-6 {
  text-indent: -1.5rem;
}

.-indent-60 {
  text-indent: -15rem;
}

.-indent-64 {
  text-indent: -16rem;
}

.-indent-7 {
  text-indent: -1.75rem;
}

.-indent-72 {
  text-indent: -18rem;
}

.-indent-8 {
  text-indent: -2rem;
}

.-indent-80 {
  text-indent: -20rem;
}

.-indent-9 {
  text-indent: -2.25rem;
}

.-indent-96 {
  text-indent: -24rem;
}

.-indent-px {
  text-indent: -1px;
}

.indent-0 {
  text-indent: 0px;
}

.indent-0\.5 {
  text-indent: 0.125rem;
}

.indent-1 {
  text-indent: 0.25rem;
}

.indent-1\.5 {
  text-indent: 0.375rem;
}

.indent-10 {
  text-indent: 2.5rem;
}

.indent-11 {
  text-indent: 2.75rem;
}

.indent-12 {
  text-indent: 3rem;
}

.indent-14 {
  text-indent: 3.5rem;
}

.indent-16 {
  text-indent: 4rem;
}

.indent-2 {
  text-indent: 0.5rem;
}

.indent-2\.5 {
  text-indent: 0.625rem;
}

.indent-20 {
  text-indent: 5rem;
}

.indent-24 {
  text-indent: 6rem;
}

.indent-28 {
  text-indent: 7rem;
}

.indent-3 {
  text-indent: 0.75rem;
}

.indent-3\.5 {
  text-indent: 0.875rem;
}

.indent-32 {
  text-indent: 8rem;
}

.indent-36 {
  text-indent: 9rem;
}

.indent-4 {
  text-indent: 1rem;
}

.indent-40 {
  text-indent: 10rem;
}

.indent-44 {
  text-indent: 11rem;
}

.indent-48 {
  text-indent: 12rem;
}

.indent-5 {
  text-indent: 1.25rem;
}

.indent-52 {
  text-indent: 13rem;
}

.indent-56 {
  text-indent: 14rem;
}

.indent-6 {
  text-indent: 1.5rem;
}

.indent-60 {
  text-indent: 15rem;
}

.indent-64 {
  text-indent: 16rem;
}

.indent-7 {
  text-indent: 1.75rem;
}

.indent-72 {
  text-indent: 18rem;
}

.indent-8 {
  text-indent: 2rem;
}

.indent-80 {
  text-indent: 20rem;
}

.indent-9 {
  text-indent: 2.25rem;
}

.indent-96 {
  text-indent: 24rem;
}

.indent-px {
  text-indent: 1px;
}

.align-baseline {
  vertical-align: baseline;
}

.align-top {
  vertical-align: top;
}

.align-middle {
  vertical-align: middle;
}

.align-bottom {
  vertical-align: bottom;
}

.align-text-top {
  vertical-align: text-top;
}

.align-text-bottom {
  vertical-align: text-bottom;
}

.align-sub {
  vertical-align: sub;
}

.align-super {
  vertical-align: super;
}

.font-body {
  font-family: acumin-pro, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, sans-serif;
}

.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.font-sans {
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.font-serif {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}

.font-title {
  font-family: Eina02-SemiBold, Helvetica Neue, Helvetica, Arial, sans-serif;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

.text-7xl {
  font-size: 4.5rem;
  line-height: 1;
}

.text-8xl {
  font-size: 6rem;
  line-height: 1;
}

.text-9xl {
  font-size: 8rem;
  line-height: 1;
}

.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-black {
  font-weight: 900;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.font-extralight {
  font-weight: 200;
}

.font-light {
  font-weight: 300;
}

.font-medium {
  font-weight: 500;
}

.font-normal {
  font-weight: 400;
}

.font-semibold {
  font-weight: 600;
}

.font-thin {
  font-weight: 100;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.normal-case {
  text-transform: none;
}

.italic {
  font-style: italic;
}

.not-italic {
  font-style: normal;
}

.leading-10 {
  line-height: 2.5rem;
}

.leading-3 {
  line-height: .75rem;
}

.leading-4 {
  line-height: 1rem;
}

.leading-5 {
  line-height: 1.25rem;
}

.leading-6 {
  line-height: 1.5rem;
}

.leading-7 {
  line-height: 1.75rem;
}

.leading-8 {
  line-height: 2rem;
}

.leading-9 {
  line-height: 2.25rem;
}

.leading-loose {
  line-height: 2;
}

.leading-none {
  line-height: 1;
}

.leading-normal {
  line-height: 1.5;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-snug {
  line-height: 1.375;
}

.leading-tight {
  line-height: 1.25;
}

.-tracking-normal {
  letter-spacing: -0em;
}

.-tracking-tight {
  letter-spacing: 0.025em;
}

.-tracking-tighter {
  letter-spacing: 0.05em;
}

.-tracking-wide {
  letter-spacing: -0.025em;
}

.-tracking-wider {
  letter-spacing: -0.05em;
}

.-tracking-widest {
  letter-spacing: -0.1em;
}

.tracking-normal {
  letter-spacing: 0em;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.tracking-tighter {
  letter-spacing: -0.05em;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}

.text-black\/0 {
  color: rgb(0 0 0 / 0);
}

.text-black\/10 {
  color: rgb(0 0 0 / 0.1);
}

.text-black\/100 {
  color: rgb(0 0 0 / 1);
}

.text-black\/15 {
  color: rgb(0 0 0 / 0.15);
}

.text-black\/20 {
  color: rgb(0 0 0 / 0.2);
}

.text-black\/25 {
  color: rgb(0 0 0 / 0.25);
}

.text-black\/30 {
  color: rgb(0 0 0 / 0.3);
}

.text-black\/35 {
  color: rgb(0 0 0 / 0.35);
}

.text-black\/40 {
  color: rgb(0 0 0 / 0.4);
}

.text-black\/45 {
  color: rgb(0 0 0 / 0.45);
}

.text-black\/5 {
  color: rgb(0 0 0 / 0.05);
}

.text-black\/50 {
  color: rgb(0 0 0 / 0.5);
}

.text-black\/55 {
  color: rgb(0 0 0 / 0.55);
}

.text-black\/60 {
  color: rgb(0 0 0 / 0.6);
}

.text-black\/65 {
  color: rgb(0 0 0 / 0.65);
}

.text-black\/70 {
  color: rgb(0 0 0 / 0.7);
}

.text-black\/75 {
  color: rgb(0 0 0 / 0.75);
}

.text-black\/80 {
  color: rgb(0 0 0 / 0.8);
}

.text-black\/85 {
  color: rgb(0 0 0 / 0.85);
}

.text-black\/90 {
  color: rgb(0 0 0 / 0.9);
}

.text-black\/95 {
  color: rgb(0 0 0 / 0.95);
}

.text-blue-100 {
  --tw-text-opacity: 1;
  color: rgb(219 234 254 / var(--tw-text-opacity, 1));
}

.text-blue-100\/0 {
  color: rgb(219 234 254 / 0);
}

.text-blue-100\/10 {
  color: rgb(219 234 254 / 0.1);
}

.text-blue-100\/100 {
  color: rgb(219 234 254 / 1);
}

.text-blue-100\/15 {
  color: rgb(219 234 254 / 0.15);
}

.text-blue-100\/20 {
  color: rgb(219 234 254 / 0.2);
}

.text-blue-100\/25 {
  color: rgb(219 234 254 / 0.25);
}

.text-blue-100\/30 {
  color: rgb(219 234 254 / 0.3);
}

.text-blue-100\/35 {
  color: rgb(219 234 254 / 0.35);
}

.text-blue-100\/40 {
  color: rgb(219 234 254 / 0.4);
}

.text-blue-100\/45 {
  color: rgb(219 234 254 / 0.45);
}

.text-blue-100\/5 {
  color: rgb(219 234 254 / 0.05);
}

.text-blue-100\/50 {
  color: rgb(219 234 254 / 0.5);
}

.text-blue-100\/55 {
  color: rgb(219 234 254 / 0.55);
}

.text-blue-100\/60 {
  color: rgb(219 234 254 / 0.6);
}

.text-blue-100\/65 {
  color: rgb(219 234 254 / 0.65);
}

.text-blue-100\/70 {
  color: rgb(219 234 254 / 0.7);
}

.text-blue-100\/75 {
  color: rgb(219 234 254 / 0.75);
}

.text-blue-100\/80 {
  color: rgb(219 234 254 / 0.8);
}

.text-blue-100\/85 {
  color: rgb(219 234 254 / 0.85);
}

.text-blue-100\/90 {
  color: rgb(219 234 254 / 0.9);
}

.text-blue-100\/95 {
  color: rgb(219 234 254 / 0.95);
}

.text-blue-200 {
  --tw-text-opacity: 1;
  color: rgb(191 219 254 / var(--tw-text-opacity, 1));
}

.text-blue-200\/0 {
  color: rgb(191 219 254 / 0);
}

.text-blue-200\/10 {
  color: rgb(191 219 254 / 0.1);
}

.text-blue-200\/100 {
  color: rgb(191 219 254 / 1);
}

.text-blue-200\/15 {
  color: rgb(191 219 254 / 0.15);
}

.text-blue-200\/20 {
  color: rgb(191 219 254 / 0.2);
}

.text-blue-200\/25 {
  color: rgb(191 219 254 / 0.25);
}

.text-blue-200\/30 {
  color: rgb(191 219 254 / 0.3);
}

.text-blue-200\/35 {
  color: rgb(191 219 254 / 0.35);
}

.text-blue-200\/40 {
  color: rgb(191 219 254 / 0.4);
}

.text-blue-200\/45 {
  color: rgb(191 219 254 / 0.45);
}

.text-blue-200\/5 {
  color: rgb(191 219 254 / 0.05);
}

.text-blue-200\/50 {
  color: rgb(191 219 254 / 0.5);
}

.text-blue-200\/55 {
  color: rgb(191 219 254 / 0.55);
}

.text-blue-200\/60 {
  color: rgb(191 219 254 / 0.6);
}

.text-blue-200\/65 {
  color: rgb(191 219 254 / 0.65);
}

.text-blue-200\/70 {
  color: rgb(191 219 254 / 0.7);
}

.text-blue-200\/75 {
  color: rgb(191 219 254 / 0.75);
}

.text-blue-200\/80 {
  color: rgb(191 219 254 / 0.8);
}

.text-blue-200\/85 {
  color: rgb(191 219 254 / 0.85);
}

.text-blue-200\/90 {
  color: rgb(191 219 254 / 0.9);
}

.text-blue-200\/95 {
  color: rgb(191 219 254 / 0.95);
}

.text-blue-300 {
  --tw-text-opacity: 1;
  color: rgb(147 197 253 / var(--tw-text-opacity, 1));
}

.text-blue-300\/0 {
  color: rgb(147 197 253 / 0);
}

.text-blue-300\/10 {
  color: rgb(147 197 253 / 0.1);
}

.text-blue-300\/100 {
  color: rgb(147 197 253 / 1);
}

.text-blue-300\/15 {
  color: rgb(147 197 253 / 0.15);
}

.text-blue-300\/20 {
  color: rgb(147 197 253 / 0.2);
}

.text-blue-300\/25 {
  color: rgb(147 197 253 / 0.25);
}

.text-blue-300\/30 {
  color: rgb(147 197 253 / 0.3);
}

.text-blue-300\/35 {
  color: rgb(147 197 253 / 0.35);
}

.text-blue-300\/40 {
  color: rgb(147 197 253 / 0.4);
}

.text-blue-300\/45 {
  color: rgb(147 197 253 / 0.45);
}

.text-blue-300\/5 {
  color: rgb(147 197 253 / 0.05);
}

.text-blue-300\/50 {
  color: rgb(147 197 253 / 0.5);
}

.text-blue-300\/55 {
  color: rgb(147 197 253 / 0.55);
}

.text-blue-300\/60 {
  color: rgb(147 197 253 / 0.6);
}

.text-blue-300\/65 {
  color: rgb(147 197 253 / 0.65);
}

.text-blue-300\/70 {
  color: rgb(147 197 253 / 0.7);
}

.text-blue-300\/75 {
  color: rgb(147 197 253 / 0.75);
}

.text-blue-300\/80 {
  color: rgb(147 197 253 / 0.8);
}

.text-blue-300\/85 {
  color: rgb(147 197 253 / 0.85);
}

.text-blue-300\/90 {
  color: rgb(147 197 253 / 0.9);
}

.text-blue-300\/95 {
  color: rgb(147 197 253 / 0.95);
}

.text-blue-400 {
  --tw-text-opacity: 1;
  color: rgb(96 165 250 / var(--tw-text-opacity, 1));
}

.text-blue-400\/0 {
  color: rgb(96 165 250 / 0);
}

.text-blue-400\/10 {
  color: rgb(96 165 250 / 0.1);
}

.text-blue-400\/100 {
  color: rgb(96 165 250 / 1);
}

.text-blue-400\/15 {
  color: rgb(96 165 250 / 0.15);
}

.text-blue-400\/20 {
  color: rgb(96 165 250 / 0.2);
}

.text-blue-400\/25 {
  color: rgb(96 165 250 / 0.25);
}

.text-blue-400\/30 {
  color: rgb(96 165 250 / 0.3);
}

.text-blue-400\/35 {
  color: rgb(96 165 250 / 0.35);
}

.text-blue-400\/40 {
  color: rgb(96 165 250 / 0.4);
}

.text-blue-400\/45 {
  color: rgb(96 165 250 / 0.45);
}

.text-blue-400\/5 {
  color: rgb(96 165 250 / 0.05);
}

.text-blue-400\/50 {
  color: rgb(96 165 250 / 0.5);
}

.text-blue-400\/55 {
  color: rgb(96 165 250 / 0.55);
}

.text-blue-400\/60 {
  color: rgb(96 165 250 / 0.6);
}

.text-blue-400\/65 {
  color: rgb(96 165 250 / 0.65);
}

.text-blue-400\/70 {
  color: rgb(96 165 250 / 0.7);
}

.text-blue-400\/75 {
  color: rgb(96 165 250 / 0.75);
}

.text-blue-400\/80 {
  color: rgb(96 165 250 / 0.8);
}

.text-blue-400\/85 {
  color: rgb(96 165 250 / 0.85);
}

.text-blue-400\/90 {
  color: rgb(96 165 250 / 0.9);
}

.text-blue-400\/95 {
  color: rgb(96 165 250 / 0.95);
}

.text-blue-50 {
  --tw-text-opacity: 1;
  color: rgb(239 246 255 / var(--tw-text-opacity, 1));
}

.text-blue-50\/0 {
  color: rgb(239 246 255 / 0);
}

.text-blue-50\/10 {
  color: rgb(239 246 255 / 0.1);
}

.text-blue-50\/100 {
  color: rgb(239 246 255 / 1);
}

.text-blue-50\/15 {
  color: rgb(239 246 255 / 0.15);
}

.text-blue-50\/20 {
  color: rgb(239 246 255 / 0.2);
}

.text-blue-50\/25 {
  color: rgb(239 246 255 / 0.25);
}

.text-blue-50\/30 {
  color: rgb(239 246 255 / 0.3);
}

.text-blue-50\/35 {
  color: rgb(239 246 255 / 0.35);
}

.text-blue-50\/40 {
  color: rgb(239 246 255 / 0.4);
}

.text-blue-50\/45 {
  color: rgb(239 246 255 / 0.45);
}

.text-blue-50\/5 {
  color: rgb(239 246 255 / 0.05);
}

.text-blue-50\/50 {
  color: rgb(239 246 255 / 0.5);
}

.text-blue-50\/55 {
  color: rgb(239 246 255 / 0.55);
}

.text-blue-50\/60 {
  color: rgb(239 246 255 / 0.6);
}

.text-blue-50\/65 {
  color: rgb(239 246 255 / 0.65);
}

.text-blue-50\/70 {
  color: rgb(239 246 255 / 0.7);
}

.text-blue-50\/75 {
  color: rgb(239 246 255 / 0.75);
}

.text-blue-50\/80 {
  color: rgb(239 246 255 / 0.8);
}

.text-blue-50\/85 {
  color: rgb(239 246 255 / 0.85);
}

.text-blue-50\/90 {
  color: rgb(239 246 255 / 0.9);
}

.text-blue-50\/95 {
  color: rgb(239 246 255 / 0.95);
}

.text-blue-500 {
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity, 1));
}

.text-blue-500\/0 {
  color: rgb(59 130 246 / 0);
}

.text-blue-500\/10 {
  color: rgb(59 130 246 / 0.1);
}

.text-blue-500\/100 {
  color: rgb(59 130 246 / 1);
}

.text-blue-500\/15 {
  color: rgb(59 130 246 / 0.15);
}

.text-blue-500\/20 {
  color: rgb(59 130 246 / 0.2);
}

.text-blue-500\/25 {
  color: rgb(59 130 246 / 0.25);
}

.text-blue-500\/30 {
  color: rgb(59 130 246 / 0.3);
}

.text-blue-500\/35 {
  color: rgb(59 130 246 / 0.35);
}

.text-blue-500\/40 {
  color: rgb(59 130 246 / 0.4);
}

.text-blue-500\/45 {
  color: rgb(59 130 246 / 0.45);
}

.text-blue-500\/5 {
  color: rgb(59 130 246 / 0.05);
}

.text-blue-500\/50 {
  color: rgb(59 130 246 / 0.5);
}

.text-blue-500\/55 {
  color: rgb(59 130 246 / 0.55);
}

.text-blue-500\/60 {
  color: rgb(59 130 246 / 0.6);
}

.text-blue-500\/65 {
  color: rgb(59 130 246 / 0.65);
}

.text-blue-500\/70 {
  color: rgb(59 130 246 / 0.7);
}

.text-blue-500\/75 {
  color: rgb(59 130 246 / 0.75);
}

.text-blue-500\/80 {
  color: rgb(59 130 246 / 0.8);
}

.text-blue-500\/85 {
  color: rgb(59 130 246 / 0.85);
}

.text-blue-500\/90 {
  color: rgb(59 130 246 / 0.9);
}

.text-blue-500\/95 {
  color: rgb(59 130 246 / 0.95);
}

.text-blue-600 {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}

.text-blue-600\/0 {
  color: rgb(37 99 235 / 0);
}

.text-blue-600\/10 {
  color: rgb(37 99 235 / 0.1);
}

.text-blue-600\/100 {
  color: rgb(37 99 235 / 1);
}

.text-blue-600\/15 {
  color: rgb(37 99 235 / 0.15);
}

.text-blue-600\/20 {
  color: rgb(37 99 235 / 0.2);
}

.text-blue-600\/25 {
  color: rgb(37 99 235 / 0.25);
}

.text-blue-600\/30 {
  color: rgb(37 99 235 / 0.3);
}

.text-blue-600\/35 {
  color: rgb(37 99 235 / 0.35);
}

.text-blue-600\/40 {
  color: rgb(37 99 235 / 0.4);
}

.text-blue-600\/45 {
  color: rgb(37 99 235 / 0.45);
}

.text-blue-600\/5 {
  color: rgb(37 99 235 / 0.05);
}

.text-blue-600\/50 {
  color: rgb(37 99 235 / 0.5);
}

.text-blue-600\/55 {
  color: rgb(37 99 235 / 0.55);
}

.text-blue-600\/60 {
  color: rgb(37 99 235 / 0.6);
}

.text-blue-600\/65 {
  color: rgb(37 99 235 / 0.65);
}

.text-blue-600\/70 {
  color: rgb(37 99 235 / 0.7);
}

.text-blue-600\/75 {
  color: rgb(37 99 235 / 0.75);
}

.text-blue-600\/80 {
  color: rgb(37 99 235 / 0.8);
}

.text-blue-600\/85 {
  color: rgb(37 99 235 / 0.85);
}

.text-blue-600\/90 {
  color: rgb(37 99 235 / 0.9);
}

.text-blue-600\/95 {
  color: rgb(37 99 235 / 0.95);
}

.text-blue-700 {
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / var(--tw-text-opacity, 1));
}

.text-blue-700\/0 {
  color: rgb(29 78 216 / 0);
}

.text-blue-700\/10 {
  color: rgb(29 78 216 / 0.1);
}

.text-blue-700\/100 {
  color: rgb(29 78 216 / 1);
}

.text-blue-700\/15 {
  color: rgb(29 78 216 / 0.15);
}

.text-blue-700\/20 {
  color: rgb(29 78 216 / 0.2);
}

.text-blue-700\/25 {
  color: rgb(29 78 216 / 0.25);
}

.text-blue-700\/30 {
  color: rgb(29 78 216 / 0.3);
}

.text-blue-700\/35 {
  color: rgb(29 78 216 / 0.35);
}

.text-blue-700\/40 {
  color: rgb(29 78 216 / 0.4);
}

.text-blue-700\/45 {
  color: rgb(29 78 216 / 0.45);
}

.text-blue-700\/5 {
  color: rgb(29 78 216 / 0.05);
}

.text-blue-700\/50 {
  color: rgb(29 78 216 / 0.5);
}

.text-blue-700\/55 {
  color: rgb(29 78 216 / 0.55);
}

.text-blue-700\/60 {
  color: rgb(29 78 216 / 0.6);
}

.text-blue-700\/65 {
  color: rgb(29 78 216 / 0.65);
}

.text-blue-700\/70 {
  color: rgb(29 78 216 / 0.7);
}

.text-blue-700\/75 {
  color: rgb(29 78 216 / 0.75);
}

.text-blue-700\/80 {
  color: rgb(29 78 216 / 0.8);
}

.text-blue-700\/85 {
  color: rgb(29 78 216 / 0.85);
}

.text-blue-700\/90 {
  color: rgb(29 78 216 / 0.9);
}

.text-blue-700\/95 {
  color: rgb(29 78 216 / 0.95);
}

.text-blue-800 {
  --tw-text-opacity: 1;
  color: rgb(30 64 175 / var(--tw-text-opacity, 1));
}

.text-blue-800\/0 {
  color: rgb(30 64 175 / 0);
}

.text-blue-800\/10 {
  color: rgb(30 64 175 / 0.1);
}

.text-blue-800\/100 {
  color: rgb(30 64 175 / 1);
}

.text-blue-800\/15 {
  color: rgb(30 64 175 / 0.15);
}

.text-blue-800\/20 {
  color: rgb(30 64 175 / 0.2);
}

.text-blue-800\/25 {
  color: rgb(30 64 175 / 0.25);
}

.text-blue-800\/30 {
  color: rgb(30 64 175 / 0.3);
}

.text-blue-800\/35 {
  color: rgb(30 64 175 / 0.35);
}

.text-blue-800\/40 {
  color: rgb(30 64 175 / 0.4);
}

.text-blue-800\/45 {
  color: rgb(30 64 175 / 0.45);
}

.text-blue-800\/5 {
  color: rgb(30 64 175 / 0.05);
}

.text-blue-800\/50 {
  color: rgb(30 64 175 / 0.5);
}

.text-blue-800\/55 {
  color: rgb(30 64 175 / 0.55);
}

.text-blue-800\/60 {
  color: rgb(30 64 175 / 0.6);
}

.text-blue-800\/65 {
  color: rgb(30 64 175 / 0.65);
}

.text-blue-800\/70 {
  color: rgb(30 64 175 / 0.7);
}

.text-blue-800\/75 {
  color: rgb(30 64 175 / 0.75);
}

.text-blue-800\/80 {
  color: rgb(30 64 175 / 0.8);
}

.text-blue-800\/85 {
  color: rgb(30 64 175 / 0.85);
}

.text-blue-800\/90 {
  color: rgb(30 64 175 / 0.9);
}

.text-blue-800\/95 {
  color: rgb(30 64 175 / 0.95);
}

.text-blue-900 {
  --tw-text-opacity: 1;
  color: rgb(30 58 138 / var(--tw-text-opacity, 1));
}

.text-blue-900\/0 {
  color: rgb(30 58 138 / 0);
}

.text-blue-900\/10 {
  color: rgb(30 58 138 / 0.1);
}

.text-blue-900\/100 {
  color: rgb(30 58 138 / 1);
}

.text-blue-900\/15 {
  color: rgb(30 58 138 / 0.15);
}

.text-blue-900\/20 {
  color: rgb(30 58 138 / 0.2);
}

.text-blue-900\/25 {
  color: rgb(30 58 138 / 0.25);
}

.text-blue-900\/30 {
  color: rgb(30 58 138 / 0.3);
}

.text-blue-900\/35 {
  color: rgb(30 58 138 / 0.35);
}

.text-blue-900\/40 {
  color: rgb(30 58 138 / 0.4);
}

.text-blue-900\/45 {
  color: rgb(30 58 138 / 0.45);
}

.text-blue-900\/5 {
  color: rgb(30 58 138 / 0.05);
}

.text-blue-900\/50 {
  color: rgb(30 58 138 / 0.5);
}

.text-blue-900\/55 {
  color: rgb(30 58 138 / 0.55);
}

.text-blue-900\/60 {
  color: rgb(30 58 138 / 0.6);
}

.text-blue-900\/65 {
  color: rgb(30 58 138 / 0.65);
}

.text-blue-900\/70 {
  color: rgb(30 58 138 / 0.7);
}

.text-blue-900\/75 {
  color: rgb(30 58 138 / 0.75);
}

.text-blue-900\/80 {
  color: rgb(30 58 138 / 0.8);
}

.text-blue-900\/85 {
  color: rgb(30 58 138 / 0.85);
}

.text-blue-900\/90 {
  color: rgb(30 58 138 / 0.9);
}

.text-blue-900\/95 {
  color: rgb(30 58 138 / 0.95);
}

.text-blue-950 {
  --tw-text-opacity: 1;
  color: rgb(23 37 84 / var(--tw-text-opacity, 1));
}

.text-blue-950\/0 {
  color: rgb(23 37 84 / 0);
}

.text-blue-950\/10 {
  color: rgb(23 37 84 / 0.1);
}

.text-blue-950\/100 {
  color: rgb(23 37 84 / 1);
}

.text-blue-950\/15 {
  color: rgb(23 37 84 / 0.15);
}

.text-blue-950\/20 {
  color: rgb(23 37 84 / 0.2);
}

.text-blue-950\/25 {
  color: rgb(23 37 84 / 0.25);
}

.text-blue-950\/30 {
  color: rgb(23 37 84 / 0.3);
}

.text-blue-950\/35 {
  color: rgb(23 37 84 / 0.35);
}

.text-blue-950\/40 {
  color: rgb(23 37 84 / 0.4);
}

.text-blue-950\/45 {
  color: rgb(23 37 84 / 0.45);
}

.text-blue-950\/5 {
  color: rgb(23 37 84 / 0.05);
}

.text-blue-950\/50 {
  color: rgb(23 37 84 / 0.5);
}

.text-blue-950\/55 {
  color: rgb(23 37 84 / 0.55);
}

.text-blue-950\/60 {
  color: rgb(23 37 84 / 0.6);
}

.text-blue-950\/65 {
  color: rgb(23 37 84 / 0.65);
}

.text-blue-950\/70 {
  color: rgb(23 37 84 / 0.7);
}

.text-blue-950\/75 {
  color: rgb(23 37 84 / 0.75);
}

.text-blue-950\/80 {
  color: rgb(23 37 84 / 0.8);
}

.text-blue-950\/85 {
  color: rgb(23 37 84 / 0.85);
}

.text-blue-950\/90 {
  color: rgb(23 37 84 / 0.9);
}

.text-blue-950\/95 {
  color: rgb(23 37 84 / 0.95);
}

.text-current {
  color: currentColor;
}

.text-eva-blue {
  --tw-text-opacity: 1;
  color: rgb(26 33 62 / var(--tw-text-opacity, 1));
}

.text-eva-blue-appt {
  --tw-text-opacity: 1;
  color: rgba(52, 137, 207, var(--tw-text-opacity, 1));
}

.text-eva-blue-appt\/0 {
  color: rgba(52, 137, 207, 0);
}

.text-eva-blue-appt\/10 {
  color: rgba(52, 137, 207, 0.1);
}

.text-eva-blue-appt\/100 {
  color: rgba(52, 137, 207, 1);
}

.text-eva-blue-appt\/15 {
  color: rgba(52, 137, 207, 0.15);
}

.text-eva-blue-appt\/20 {
  color: rgba(52, 137, 207, 0.2);
}

.text-eva-blue-appt\/25 {
  color: rgba(52, 137, 207, 0.25);
}

.text-eva-blue-appt\/30 {
  color: rgba(52, 137, 207, 0.3);
}

.text-eva-blue-appt\/35 {
  color: rgba(52, 137, 207, 0.35);
}

.text-eva-blue-appt\/40 {
  color: rgba(52, 137, 207, 0.4);
}

.text-eva-blue-appt\/45 {
  color: rgba(52, 137, 207, 0.45);
}

.text-eva-blue-appt\/5 {
  color: rgba(52, 137, 207, 0.05);
}

.text-eva-blue-appt\/50 {
  color: rgba(52, 137, 207, 0.5);
}

.text-eva-blue-appt\/55 {
  color: rgba(52, 137, 207, 0.55);
}

.text-eva-blue-appt\/60 {
  color: rgba(52, 137, 207, 0.6);
}

.text-eva-blue-appt\/65 {
  color: rgba(52, 137, 207, 0.65);
}

.text-eva-blue-appt\/70 {
  color: rgba(52, 137, 207, 0.7);
}

.text-eva-blue-appt\/75 {
  color: rgba(52, 137, 207, 0.75);
}

.text-eva-blue-appt\/80 {
  color: rgba(52, 137, 207, 0.8);
}

.text-eva-blue-appt\/85 {
  color: rgba(52, 137, 207, 0.85);
}

.text-eva-blue-appt\/90 {
  color: rgba(52, 137, 207, 0.9);
}

.text-eva-blue-appt\/95 {
  color: rgba(52, 137, 207, 0.95);
}

.text-eva-blue-gray {
  --tw-text-opacity: 1;
  color: rgb(117 121 139 / var(--tw-text-opacity, 1));
}

.text-eva-blue-gray\/0 {
  color: rgb(117 121 139 / 0);
}

.text-eva-blue-gray\/10 {
  color: rgb(117 121 139 / 0.1);
}

.text-eva-blue-gray\/100 {
  color: rgb(117 121 139 / 1);
}

.text-eva-blue-gray\/15 {
  color: rgb(117 121 139 / 0.15);
}

.text-eva-blue-gray\/20 {
  color: rgb(117 121 139 / 0.2);
}

.text-eva-blue-gray\/25 {
  color: rgb(117 121 139 / 0.25);
}

.text-eva-blue-gray\/30 {
  color: rgb(117 121 139 / 0.3);
}

.text-eva-blue-gray\/35 {
  color: rgb(117 121 139 / 0.35);
}

.text-eva-blue-gray\/40 {
  color: rgb(117 121 139 / 0.4);
}

.text-eva-blue-gray\/45 {
  color: rgb(117 121 139 / 0.45);
}

.text-eva-blue-gray\/5 {
  color: rgb(117 121 139 / 0.05);
}

.text-eva-blue-gray\/50 {
  color: rgb(117 121 139 / 0.5);
}

.text-eva-blue-gray\/55 {
  color: rgb(117 121 139 / 0.55);
}

.text-eva-blue-gray\/60 {
  color: rgb(117 121 139 / 0.6);
}

.text-eva-blue-gray\/65 {
  color: rgb(117 121 139 / 0.65);
}

.text-eva-blue-gray\/70 {
  color: rgb(117 121 139 / 0.7);
}

.text-eva-blue-gray\/75 {
  color: rgb(117 121 139 / 0.75);
}

.text-eva-blue-gray\/80 {
  color: rgb(117 121 139 / 0.8);
}

.text-eva-blue-gray\/85 {
  color: rgb(117 121 139 / 0.85);
}

.text-eva-blue-gray\/90 {
  color: rgb(117 121 139 / 0.9);
}

.text-eva-blue-gray\/95 {
  color: rgb(117 121 139 / 0.95);
}

.text-eva-blue-hv {
  --tw-text-opacity: 1;
  color: rgb(15 18 31 / var(--tw-text-opacity, 1));
}

.text-eva-blue-hv\/0 {
  color: rgb(15 18 31 / 0);
}

.text-eva-blue-hv\/10 {
  color: rgb(15 18 31 / 0.1);
}

.text-eva-blue-hv\/100 {
  color: rgb(15 18 31 / 1);
}

.text-eva-blue-hv\/15 {
  color: rgb(15 18 31 / 0.15);
}

.text-eva-blue-hv\/20 {
  color: rgb(15 18 31 / 0.2);
}

.text-eva-blue-hv\/25 {
  color: rgb(15 18 31 / 0.25);
}

.text-eva-blue-hv\/30 {
  color: rgb(15 18 31 / 0.3);
}

.text-eva-blue-hv\/35 {
  color: rgb(15 18 31 / 0.35);
}

.text-eva-blue-hv\/40 {
  color: rgb(15 18 31 / 0.4);
}

.text-eva-blue-hv\/45 {
  color: rgb(15 18 31 / 0.45);
}

.text-eva-blue-hv\/5 {
  color: rgb(15 18 31 / 0.05);
}

.text-eva-blue-hv\/50 {
  color: rgb(15 18 31 / 0.5);
}

.text-eva-blue-hv\/55 {
  color: rgb(15 18 31 / 0.55);
}

.text-eva-blue-hv\/60 {
  color: rgb(15 18 31 / 0.6);
}

.text-eva-blue-hv\/65 {
  color: rgb(15 18 31 / 0.65);
}

.text-eva-blue-hv\/70 {
  color: rgb(15 18 31 / 0.7);
}

.text-eva-blue-hv\/75 {
  color: rgb(15 18 31 / 0.75);
}

.text-eva-blue-hv\/80 {
  color: rgb(15 18 31 / 0.8);
}

.text-eva-blue-hv\/85 {
  color: rgb(15 18 31 / 0.85);
}

.text-eva-blue-hv\/90 {
  color: rgb(15 18 31 / 0.9);
}

.text-eva-blue-hv\/95 {
  color: rgb(15 18 31 / 0.95);
}

.text-eva-blue-light {
  --tw-text-opacity: 1;
  color: rgb(48 56 81 / var(--tw-text-opacity, 1));
}

.text-eva-blue-light-hv {
  color: rgba(17,20,30,.3);
}

.text-eva-blue-light-hv\/0 {
  color: rgba(17, 20, 30, 0);
}

.text-eva-blue-light-hv\/10 {
  color: rgba(17, 20, 30, 0.1);
}

.text-eva-blue-light-hv\/100 {
  color: rgba(17, 20, 30, 1);
}

.text-eva-blue-light-hv\/15 {
  color: rgba(17, 20, 30, 0.15);
}

.text-eva-blue-light-hv\/20 {
  color: rgba(17, 20, 30, 0.2);
}

.text-eva-blue-light-hv\/25 {
  color: rgba(17, 20, 30, 0.25);
}

.text-eva-blue-light-hv\/30 {
  color: rgba(17, 20, 30, 0.3);
}

.text-eva-blue-light-hv\/35 {
  color: rgba(17, 20, 30, 0.35);
}

.text-eva-blue-light-hv\/40 {
  color: rgba(17, 20, 30, 0.4);
}

.text-eva-blue-light-hv\/45 {
  color: rgba(17, 20, 30, 0.45);
}

.text-eva-blue-light-hv\/5 {
  color: rgba(17, 20, 30, 0.05);
}

.text-eva-blue-light-hv\/50 {
  color: rgba(17, 20, 30, 0.5);
}

.text-eva-blue-light-hv\/55 {
  color: rgba(17, 20, 30, 0.55);
}

.text-eva-blue-light-hv\/60 {
  color: rgba(17, 20, 30, 0.6);
}

.text-eva-blue-light-hv\/65 {
  color: rgba(17, 20, 30, 0.65);
}

.text-eva-blue-light-hv\/70 {
  color: rgba(17, 20, 30, 0.7);
}

.text-eva-blue-light-hv\/75 {
  color: rgba(17, 20, 30, 0.75);
}

.text-eva-blue-light-hv\/80 {
  color: rgba(17, 20, 30, 0.8);
}

.text-eva-blue-light-hv\/85 {
  color: rgba(17, 20, 30, 0.85);
}

.text-eva-blue-light-hv\/90 {
  color: rgba(17, 20, 30, 0.9);
}

.text-eva-blue-light-hv\/95 {
  color: rgba(17, 20, 30, 0.95);
}

.text-eva-blue-light\/0 {
  color: rgb(48 56 81 / 0);
}

.text-eva-blue-light\/10 {
  color: rgb(48 56 81 / 0.1);
}

.text-eva-blue-light\/100 {
  color: rgb(48 56 81 / 1);
}

.text-eva-blue-light\/15 {
  color: rgb(48 56 81 / 0.15);
}

.text-eva-blue-light\/20 {
  color: rgb(48 56 81 / 0.2);
}

.text-eva-blue-light\/25 {
  color: rgb(48 56 81 / 0.25);
}

.text-eva-blue-light\/30 {
  color: rgb(48 56 81 / 0.3);
}

.text-eva-blue-light\/35 {
  color: rgb(48 56 81 / 0.35);
}

.text-eva-blue-light\/40 {
  color: rgb(48 56 81 / 0.4);
}

.text-eva-blue-light\/45 {
  color: rgb(48 56 81 / 0.45);
}

.text-eva-blue-light\/5 {
  color: rgb(48 56 81 / 0.05);
}

.text-eva-blue-light\/50 {
  color: rgb(48 56 81 / 0.5);
}

.text-eva-blue-light\/55 {
  color: rgb(48 56 81 / 0.55);
}

.text-eva-blue-light\/60 {
  color: rgb(48 56 81 / 0.6);
}

.text-eva-blue-light\/65 {
  color: rgb(48 56 81 / 0.65);
}

.text-eva-blue-light\/70 {
  color: rgb(48 56 81 / 0.7);
}

.text-eva-blue-light\/75 {
  color: rgb(48 56 81 / 0.75);
}

.text-eva-blue-light\/80 {
  color: rgb(48 56 81 / 0.8);
}

.text-eva-blue-light\/85 {
  color: rgb(48 56 81 / 0.85);
}

.text-eva-blue-light\/90 {
  color: rgb(48 56 81 / 0.9);
}

.text-eva-blue-light\/95 {
  color: rgb(48 56 81 / 0.95);
}

.text-eva-blue\/0 {
  color: rgb(26 33 62 / 0);
}

.text-eva-blue\/10 {
  color: rgb(26 33 62 / 0.1);
}

.text-eva-blue\/100 {
  color: rgb(26 33 62 / 1);
}

.text-eva-blue\/15 {
  color: rgb(26 33 62 / 0.15);
}

.text-eva-blue\/20 {
  color: rgb(26 33 62 / 0.2);
}

.text-eva-blue\/25 {
  color: rgb(26 33 62 / 0.25);
}

.text-eva-blue\/30 {
  color: rgb(26 33 62 / 0.3);
}

.text-eva-blue\/35 {
  color: rgb(26 33 62 / 0.35);
}

.text-eva-blue\/40 {
  color: rgb(26 33 62 / 0.4);
}

.text-eva-blue\/45 {
  color: rgb(26 33 62 / 0.45);
}

.text-eva-blue\/5 {
  color: rgb(26 33 62 / 0.05);
}

.text-eva-blue\/50 {
  color: rgb(26 33 62 / 0.5);
}

.text-eva-blue\/55 {
  color: rgb(26 33 62 / 0.55);
}

.text-eva-blue\/60 {
  color: rgb(26 33 62 / 0.6);
}

.text-eva-blue\/65 {
  color: rgb(26 33 62 / 0.65);
}

.text-eva-blue\/70 {
  color: rgb(26 33 62 / 0.7);
}

.text-eva-blue\/75 {
  color: rgb(26 33 62 / 0.75);
}

.text-eva-blue\/80 {
  color: rgb(26 33 62 / 0.8);
}

.text-eva-blue\/85 {
  color: rgb(26 33 62 / 0.85);
}

.text-eva-blue\/90 {
  color: rgb(26 33 62 / 0.9);
}

.text-eva-blue\/95 {
  color: rgb(26 33 62 / 0.95);
}

.text-eva-brown-appt {
  color: rgba(99, 93, 94, 1);
}

.text-eva-brown-appt\/0 {
  color: rgba(99, 93, 94, 0);
}

.text-eva-brown-appt\/10 {
  color: rgba(99, 93, 94, 0.1);
}

.text-eva-brown-appt\/100 {
  color: rgba(99, 93, 94, 1);
}

.text-eva-brown-appt\/15 {
  color: rgba(99, 93, 94, 0.15);
}

.text-eva-brown-appt\/20 {
  color: rgba(99, 93, 94, 0.2);
}

.text-eva-brown-appt\/25 {
  color: rgba(99, 93, 94, 0.25);
}

.text-eva-brown-appt\/30 {
  color: rgba(99, 93, 94, 0.3);
}

.text-eva-brown-appt\/35 {
  color: rgba(99, 93, 94, 0.35);
}

.text-eva-brown-appt\/40 {
  color: rgba(99, 93, 94, 0.4);
}

.text-eva-brown-appt\/45 {
  color: rgba(99, 93, 94, 0.45);
}

.text-eva-brown-appt\/5 {
  color: rgba(99, 93, 94, 0.05);
}

.text-eva-brown-appt\/50 {
  color: rgba(99, 93, 94, 0.5);
}

.text-eva-brown-appt\/55 {
  color: rgba(99, 93, 94, 0.55);
}

.text-eva-brown-appt\/60 {
  color: rgba(99, 93, 94, 0.6);
}

.text-eva-brown-appt\/65 {
  color: rgba(99, 93, 94, 0.65);
}

.text-eva-brown-appt\/70 {
  color: rgba(99, 93, 94, 0.7);
}

.text-eva-brown-appt\/75 {
  color: rgba(99, 93, 94, 0.75);
}

.text-eva-brown-appt\/80 {
  color: rgba(99, 93, 94, 0.8);
}

.text-eva-brown-appt\/85 {
  color: rgba(99, 93, 94, 0.85);
}

.text-eva-brown-appt\/90 {
  color: rgba(99, 93, 94, 0.9);
}

.text-eva-brown-appt\/95 {
  color: rgba(99, 93, 94, 0.95);
}

.text-eva-dark-green-appt {
  color: rgba(102, 188, 130, 1);
}

.text-eva-dark-green-appt\/0 {
  color: rgba(102, 188, 130, 0);
}

.text-eva-dark-green-appt\/10 {
  color: rgba(102, 188, 130, 0.1);
}

.text-eva-dark-green-appt\/100 {
  color: rgba(102, 188, 130, 1);
}

.text-eva-dark-green-appt\/15 {
  color: rgba(102, 188, 130, 0.15);
}

.text-eva-dark-green-appt\/20 {
  color: rgba(102, 188, 130, 0.2);
}

.text-eva-dark-green-appt\/25 {
  color: rgba(102, 188, 130, 0.25);
}

.text-eva-dark-green-appt\/30 {
  color: rgba(102, 188, 130, 0.3);
}

.text-eva-dark-green-appt\/35 {
  color: rgba(102, 188, 130, 0.35);
}

.text-eva-dark-green-appt\/40 {
  color: rgba(102, 188, 130, 0.4);
}

.text-eva-dark-green-appt\/45 {
  color: rgba(102, 188, 130, 0.45);
}

.text-eva-dark-green-appt\/5 {
  color: rgba(102, 188, 130, 0.05);
}

.text-eva-dark-green-appt\/50 {
  color: rgba(102, 188, 130, 0.5);
}

.text-eva-dark-green-appt\/55 {
  color: rgba(102, 188, 130, 0.55);
}

.text-eva-dark-green-appt\/60 {
  color: rgba(102, 188, 130, 0.6);
}

.text-eva-dark-green-appt\/65 {
  color: rgba(102, 188, 130, 0.65);
}

.text-eva-dark-green-appt\/70 {
  color: rgba(102, 188, 130, 0.7);
}

.text-eva-dark-green-appt\/75 {
  color: rgba(102, 188, 130, 0.75);
}

.text-eva-dark-green-appt\/80 {
  color: rgba(102, 188, 130, 0.8);
}

.text-eva-dark-green-appt\/85 {
  color: rgba(102, 188, 130, 0.85);
}

.text-eva-dark-green-appt\/90 {
  color: rgba(102, 188, 130, 0.9);
}

.text-eva-dark-green-appt\/95 {
  color: rgba(102, 188, 130, 0.95);
}

.text-eva-dark-red-appt {
  color: rgba(198, 102, 94, 1);
}

.text-eva-dark-red-appt\/0 {
  color: rgba(198, 102, 94, 0);
}

.text-eva-dark-red-appt\/10 {
  color: rgba(198, 102, 94, 0.1);
}

.text-eva-dark-red-appt\/100 {
  color: rgba(198, 102, 94, 1);
}

.text-eva-dark-red-appt\/15 {
  color: rgba(198, 102, 94, 0.15);
}

.text-eva-dark-red-appt\/20 {
  color: rgba(198, 102, 94, 0.2);
}

.text-eva-dark-red-appt\/25 {
  color: rgba(198, 102, 94, 0.25);
}

.text-eva-dark-red-appt\/30 {
  color: rgba(198, 102, 94, 0.3);
}

.text-eva-dark-red-appt\/35 {
  color: rgba(198, 102, 94, 0.35);
}

.text-eva-dark-red-appt\/40 {
  color: rgba(198, 102, 94, 0.4);
}

.text-eva-dark-red-appt\/45 {
  color: rgba(198, 102, 94, 0.45);
}

.text-eva-dark-red-appt\/5 {
  color: rgba(198, 102, 94, 0.05);
}

.text-eva-dark-red-appt\/50 {
  color: rgba(198, 102, 94, 0.5);
}

.text-eva-dark-red-appt\/55 {
  color: rgba(198, 102, 94, 0.55);
}

.text-eva-dark-red-appt\/60 {
  color: rgba(198, 102, 94, 0.6);
}

.text-eva-dark-red-appt\/65 {
  color: rgba(198, 102, 94, 0.65);
}

.text-eva-dark-red-appt\/70 {
  color: rgba(198, 102, 94, 0.7);
}

.text-eva-dark-red-appt\/75 {
  color: rgba(198, 102, 94, 0.75);
}

.text-eva-dark-red-appt\/80 {
  color: rgba(198, 102, 94, 0.8);
}

.text-eva-dark-red-appt\/85 {
  color: rgba(198, 102, 94, 0.85);
}

.text-eva-dark-red-appt\/90 {
  color: rgba(198, 102, 94, 0.9);
}

.text-eva-dark-red-appt\/95 {
  color: rgba(198, 102, 94, 0.95);
}

.text-eva-green {
  --tw-text-opacity: 1;
  color: rgb(73 181 168 / var(--tw-text-opacity, 1));
}

.text-eva-green-appt {
  --tw-text-opacity: 1;
  color: rgba(128, 215, 109, var(--tw-text-opacity, 1));
}

.text-eva-green-appt\/0 {
  color: rgba(128, 215, 109, 0);
}

.text-eva-green-appt\/10 {
  color: rgba(128, 215, 109, 0.1);
}

.text-eva-green-appt\/100 {
  color: rgba(128, 215, 109, 1);
}

.text-eva-green-appt\/15 {
  color: rgba(128, 215, 109, 0.15);
}

.text-eva-green-appt\/20 {
  color: rgba(128, 215, 109, 0.2);
}

.text-eva-green-appt\/25 {
  color: rgba(128, 215, 109, 0.25);
}

.text-eva-green-appt\/30 {
  color: rgba(128, 215, 109, 0.3);
}

.text-eva-green-appt\/35 {
  color: rgba(128, 215, 109, 0.35);
}

.text-eva-green-appt\/40 {
  color: rgba(128, 215, 109, 0.4);
}

.text-eva-green-appt\/45 {
  color: rgba(128, 215, 109, 0.45);
}

.text-eva-green-appt\/5 {
  color: rgba(128, 215, 109, 0.05);
}

.text-eva-green-appt\/50 {
  color: rgba(128, 215, 109, 0.5);
}

.text-eva-green-appt\/55 {
  color: rgba(128, 215, 109, 0.55);
}

.text-eva-green-appt\/60 {
  color: rgba(128, 215, 109, 0.6);
}

.text-eva-green-appt\/65 {
  color: rgba(128, 215, 109, 0.65);
}

.text-eva-green-appt\/70 {
  color: rgba(128, 215, 109, 0.7);
}

.text-eva-green-appt\/75 {
  color: rgba(128, 215, 109, 0.75);
}

.text-eva-green-appt\/80 {
  color: rgba(128, 215, 109, 0.8);
}

.text-eva-green-appt\/85 {
  color: rgba(128, 215, 109, 0.85);
}

.text-eva-green-appt\/90 {
  color: rgba(128, 215, 109, 0.9);
}

.text-eva-green-appt\/95 {
  color: rgba(128, 215, 109, 0.95);
}

.text-eva-green-brown-appt {
  color: rgba(197, 191, 140, 1);
}

.text-eva-green-brown-appt\/0 {
  color: rgba(197, 191, 140, 0);
}

.text-eva-green-brown-appt\/10 {
  color: rgba(197, 191, 140, 0.1);
}

.text-eva-green-brown-appt\/100 {
  color: rgba(197, 191, 140, 1);
}

.text-eva-green-brown-appt\/15 {
  color: rgba(197, 191, 140, 0.15);
}

.text-eva-green-brown-appt\/20 {
  color: rgba(197, 191, 140, 0.2);
}

.text-eva-green-brown-appt\/25 {
  color: rgba(197, 191, 140, 0.25);
}

.text-eva-green-brown-appt\/30 {
  color: rgba(197, 191, 140, 0.3);
}

.text-eva-green-brown-appt\/35 {
  color: rgba(197, 191, 140, 0.35);
}

.text-eva-green-brown-appt\/40 {
  color: rgba(197, 191, 140, 0.4);
}

.text-eva-green-brown-appt\/45 {
  color: rgba(197, 191, 140, 0.45);
}

.text-eva-green-brown-appt\/5 {
  color: rgba(197, 191, 140, 0.05);
}

.text-eva-green-brown-appt\/50 {
  color: rgba(197, 191, 140, 0.5);
}

.text-eva-green-brown-appt\/55 {
  color: rgba(197, 191, 140, 0.55);
}

.text-eva-green-brown-appt\/60 {
  color: rgba(197, 191, 140, 0.6);
}

.text-eva-green-brown-appt\/65 {
  color: rgba(197, 191, 140, 0.65);
}

.text-eva-green-brown-appt\/70 {
  color: rgba(197, 191, 140, 0.7);
}

.text-eva-green-brown-appt\/75 {
  color: rgba(197, 191, 140, 0.75);
}

.text-eva-green-brown-appt\/80 {
  color: rgba(197, 191, 140, 0.8);
}

.text-eva-green-brown-appt\/85 {
  color: rgba(197, 191, 140, 0.85);
}

.text-eva-green-brown-appt\/90 {
  color: rgba(197, 191, 140, 0.9);
}

.text-eva-green-brown-appt\/95 {
  color: rgba(197, 191, 140, 0.95);
}

.text-eva-green-hv {
  --tw-text-opacity: 1;
  color: rgb(63 156 144 / var(--tw-text-opacity, 1));
}

.text-eva-green-hv\/0 {
  color: rgb(63 156 144 / 0);
}

.text-eva-green-hv\/10 {
  color: rgb(63 156 144 / 0.1);
}

.text-eva-green-hv\/100 {
  color: rgb(63 156 144 / 1);
}

.text-eva-green-hv\/15 {
  color: rgb(63 156 144 / 0.15);
}

.text-eva-green-hv\/20 {
  color: rgb(63 156 144 / 0.2);
}

.text-eva-green-hv\/25 {
  color: rgb(63 156 144 / 0.25);
}

.text-eva-green-hv\/30 {
  color: rgb(63 156 144 / 0.3);
}

.text-eva-green-hv\/35 {
  color: rgb(63 156 144 / 0.35);
}

.text-eva-green-hv\/40 {
  color: rgb(63 156 144 / 0.4);
}

.text-eva-green-hv\/45 {
  color: rgb(63 156 144 / 0.45);
}

.text-eva-green-hv\/5 {
  color: rgb(63 156 144 / 0.05);
}

.text-eva-green-hv\/50 {
  color: rgb(63 156 144 / 0.5);
}

.text-eva-green-hv\/55 {
  color: rgb(63 156 144 / 0.55);
}

.text-eva-green-hv\/60 {
  color: rgb(63 156 144 / 0.6);
}

.text-eva-green-hv\/65 {
  color: rgb(63 156 144 / 0.65);
}

.text-eva-green-hv\/70 {
  color: rgb(63 156 144 / 0.7);
}

.text-eva-green-hv\/75 {
  color: rgb(63 156 144 / 0.75);
}

.text-eva-green-hv\/80 {
  color: rgb(63 156 144 / 0.8);
}

.text-eva-green-hv\/85 {
  color: rgb(63 156 144 / 0.85);
}

.text-eva-green-hv\/90 {
  color: rgb(63 156 144 / 0.9);
}

.text-eva-green-hv\/95 {
  color: rgb(63 156 144 / 0.95);
}

.text-eva-green\/0 {
  color: rgb(73 181 168 / 0);
}

.text-eva-green\/10 {
  color: rgb(73 181 168 / 0.1);
}

.text-eva-green\/100 {
  color: rgb(73 181 168 / 1);
}

.text-eva-green\/15 {
  color: rgb(73 181 168 / 0.15);
}

.text-eva-green\/20 {
  color: rgb(73 181 168 / 0.2);
}

.text-eva-green\/25 {
  color: rgb(73 181 168 / 0.25);
}

.text-eva-green\/30 {
  color: rgb(73 181 168 / 0.3);
}

.text-eva-green\/35 {
  color: rgb(73 181 168 / 0.35);
}

.text-eva-green\/40 {
  color: rgb(73 181 168 / 0.4);
}

.text-eva-green\/45 {
  color: rgb(73 181 168 / 0.45);
}

.text-eva-green\/5 {
  color: rgb(73 181 168 / 0.05);
}

.text-eva-green\/50 {
  color: rgb(73 181 168 / 0.5);
}

.text-eva-green\/55 {
  color: rgb(73 181 168 / 0.55);
}

.text-eva-green\/60 {
  color: rgb(73 181 168 / 0.6);
}

.text-eva-green\/65 {
  color: rgb(73 181 168 / 0.65);
}

.text-eva-green\/70 {
  color: rgb(73 181 168 / 0.7);
}

.text-eva-green\/75 {
  color: rgb(73 181 168 / 0.75);
}

.text-eva-green\/80 {
  color: rgb(73 181 168 / 0.8);
}

.text-eva-green\/85 {
  color: rgb(73 181 168 / 0.85);
}

.text-eva-green\/90 {
  color: rgb(73 181 168 / 0.9);
}

.text-eva-green\/95 {
  color: rgb(73 181 168 / 0.95);
}

.text-eva-lavender-appt {
  color: rgba(169, 124, 165, 1);
}

.text-eva-lavender-appt\/0 {
  color: rgba(169, 124, 165, 0);
}

.text-eva-lavender-appt\/10 {
  color: rgba(169, 124, 165, 0.1);
}

.text-eva-lavender-appt\/100 {
  color: rgba(169, 124, 165, 1);
}

.text-eva-lavender-appt\/15 {
  color: rgba(169, 124, 165, 0.15);
}

.text-eva-lavender-appt\/20 {
  color: rgba(169, 124, 165, 0.2);
}

.text-eva-lavender-appt\/25 {
  color: rgba(169, 124, 165, 0.25);
}

.text-eva-lavender-appt\/30 {
  color: rgba(169, 124, 165, 0.3);
}

.text-eva-lavender-appt\/35 {
  color: rgba(169, 124, 165, 0.35);
}

.text-eva-lavender-appt\/40 {
  color: rgba(169, 124, 165, 0.4);
}

.text-eva-lavender-appt\/45 {
  color: rgba(169, 124, 165, 0.45);
}

.text-eva-lavender-appt\/5 {
  color: rgba(169, 124, 165, 0.05);
}

.text-eva-lavender-appt\/50 {
  color: rgba(169, 124, 165, 0.5);
}

.text-eva-lavender-appt\/55 {
  color: rgba(169, 124, 165, 0.55);
}

.text-eva-lavender-appt\/60 {
  color: rgba(169, 124, 165, 0.6);
}

.text-eva-lavender-appt\/65 {
  color: rgba(169, 124, 165, 0.65);
}

.text-eva-lavender-appt\/70 {
  color: rgba(169, 124, 165, 0.7);
}

.text-eva-lavender-appt\/75 {
  color: rgba(169, 124, 165, 0.75);
}

.text-eva-lavender-appt\/80 {
  color: rgba(169, 124, 165, 0.8);
}

.text-eva-lavender-appt\/85 {
  color: rgba(169, 124, 165, 0.85);
}

.text-eva-lavender-appt\/90 {
  color: rgba(169, 124, 165, 0.9);
}

.text-eva-lavender-appt\/95 {
  color: rgba(169, 124, 165, 0.95);
}

.text-eva-magenta-appt {
  color: rgba(223, 91, 146, 1);
}

.text-eva-magenta-appt\/0 {
  color: rgba(223, 91, 146, 0);
}

.text-eva-magenta-appt\/10 {
  color: rgba(223, 91, 146, 0.1);
}

.text-eva-magenta-appt\/100 {
  color: rgba(223, 91, 146, 1);
}

.text-eva-magenta-appt\/15 {
  color: rgba(223, 91, 146, 0.15);
}

.text-eva-magenta-appt\/20 {
  color: rgba(223, 91, 146, 0.2);
}

.text-eva-magenta-appt\/25 {
  color: rgba(223, 91, 146, 0.25);
}

.text-eva-magenta-appt\/30 {
  color: rgba(223, 91, 146, 0.3);
}

.text-eva-magenta-appt\/35 {
  color: rgba(223, 91, 146, 0.35);
}

.text-eva-magenta-appt\/40 {
  color: rgba(223, 91, 146, 0.4);
}

.text-eva-magenta-appt\/45 {
  color: rgba(223, 91, 146, 0.45);
}

.text-eva-magenta-appt\/5 {
  color: rgba(223, 91, 146, 0.05);
}

.text-eva-magenta-appt\/50 {
  color: rgba(223, 91, 146, 0.5);
}

.text-eva-magenta-appt\/55 {
  color: rgba(223, 91, 146, 0.55);
}

.text-eva-magenta-appt\/60 {
  color: rgba(223, 91, 146, 0.6);
}

.text-eva-magenta-appt\/65 {
  color: rgba(223, 91, 146, 0.65);
}

.text-eva-magenta-appt\/70 {
  color: rgba(223, 91, 146, 0.7);
}

.text-eva-magenta-appt\/75 {
  color: rgba(223, 91, 146, 0.75);
}

.text-eva-magenta-appt\/80 {
  color: rgba(223, 91, 146, 0.8);
}

.text-eva-magenta-appt\/85 {
  color: rgba(223, 91, 146, 0.85);
}

.text-eva-magenta-appt\/90 {
  color: rgba(223, 91, 146, 0.9);
}

.text-eva-magenta-appt\/95 {
  color: rgba(223, 91, 146, 0.95);
}

.text-eva-orange-appt {
  color: rgba(232, 176, 99, 1);
}

.text-eva-orange-appt\/0 {
  color: rgba(232, 176, 99, 0);
}

.text-eva-orange-appt\/10 {
  color: rgba(232, 176, 99, 0.1);
}

.text-eva-orange-appt\/100 {
  color: rgba(232, 176, 99, 1);
}

.text-eva-orange-appt\/15 {
  color: rgba(232, 176, 99, 0.15);
}

.text-eva-orange-appt\/20 {
  color: rgba(232, 176, 99, 0.2);
}

.text-eva-orange-appt\/25 {
  color: rgba(232, 176, 99, 0.25);
}

.text-eva-orange-appt\/30 {
  color: rgba(232, 176, 99, 0.3);
}

.text-eva-orange-appt\/35 {
  color: rgba(232, 176, 99, 0.35);
}

.text-eva-orange-appt\/40 {
  color: rgba(232, 176, 99, 0.4);
}

.text-eva-orange-appt\/45 {
  color: rgba(232, 176, 99, 0.45);
}

.text-eva-orange-appt\/5 {
  color: rgba(232, 176, 99, 0.05);
}

.text-eva-orange-appt\/50 {
  color: rgba(232, 176, 99, 0.5);
}

.text-eva-orange-appt\/55 {
  color: rgba(232, 176, 99, 0.55);
}

.text-eva-orange-appt\/60 {
  color: rgba(232, 176, 99, 0.6);
}

.text-eva-orange-appt\/65 {
  color: rgba(232, 176, 99, 0.65);
}

.text-eva-orange-appt\/70 {
  color: rgba(232, 176, 99, 0.7);
}

.text-eva-orange-appt\/75 {
  color: rgba(232, 176, 99, 0.75);
}

.text-eva-orange-appt\/80 {
  color: rgba(232, 176, 99, 0.8);
}

.text-eva-orange-appt\/85 {
  color: rgba(232, 176, 99, 0.85);
}

.text-eva-orange-appt\/90 {
  color: rgba(232, 176, 99, 0.9);
}

.text-eva-orange-appt\/95 {
  color: rgba(232, 176, 99, 0.95);
}

.text-eva-purple-appt {
  color: rgba(125, 117, 164, 1);
}

.text-eva-purple-appt\/0 {
  color: rgba(125, 117, 164, 0);
}

.text-eva-purple-appt\/10 {
  color: rgba(125, 117, 164, 0.1);
}

.text-eva-purple-appt\/100 {
  color: rgba(125, 117, 164, 1);
}

.text-eva-purple-appt\/15 {
  color: rgba(125, 117, 164, 0.15);
}

.text-eva-purple-appt\/20 {
  color: rgba(125, 117, 164, 0.2);
}

.text-eva-purple-appt\/25 {
  color: rgba(125, 117, 164, 0.25);
}

.text-eva-purple-appt\/30 {
  color: rgba(125, 117, 164, 0.3);
}

.text-eva-purple-appt\/35 {
  color: rgba(125, 117, 164, 0.35);
}

.text-eva-purple-appt\/40 {
  color: rgba(125, 117, 164, 0.4);
}

.text-eva-purple-appt\/45 {
  color: rgba(125, 117, 164, 0.45);
}

.text-eva-purple-appt\/5 {
  color: rgba(125, 117, 164, 0.05);
}

.text-eva-purple-appt\/50 {
  color: rgba(125, 117, 164, 0.5);
}

.text-eva-purple-appt\/55 {
  color: rgba(125, 117, 164, 0.55);
}

.text-eva-purple-appt\/60 {
  color: rgba(125, 117, 164, 0.6);
}

.text-eva-purple-appt\/65 {
  color: rgba(125, 117, 164, 0.65);
}

.text-eva-purple-appt\/70 {
  color: rgba(125, 117, 164, 0.7);
}

.text-eva-purple-appt\/75 {
  color: rgba(125, 117, 164, 0.75);
}

.text-eva-purple-appt\/80 {
  color: rgba(125, 117, 164, 0.8);
}

.text-eva-purple-appt\/85 {
  color: rgba(125, 117, 164, 0.85);
}

.text-eva-purple-appt\/90 {
  color: rgba(125, 117, 164, 0.9);
}

.text-eva-purple-appt\/95 {
  color: rgba(125, 117, 164, 0.95);
}

.text-eva-red {
  --tw-text-opacity: 1;
  color: rgb(234 101 101 / var(--tw-text-opacity, 1));
}

.text-eva-red-appt {
  color: rgba(243, 63, 77, 1);
}

.text-eva-red-appt\/0 {
  color: rgba(243, 63, 77, 0);
}

.text-eva-red-appt\/10 {
  color: rgba(243, 63, 77, 0.1);
}

.text-eva-red-appt\/100 {
  color: rgba(243, 63, 77, 1);
}

.text-eva-red-appt\/15 {
  color: rgba(243, 63, 77, 0.15);
}

.text-eva-red-appt\/20 {
  color: rgba(243, 63, 77, 0.2);
}

.text-eva-red-appt\/25 {
  color: rgba(243, 63, 77, 0.25);
}

.text-eva-red-appt\/30 {
  color: rgba(243, 63, 77, 0.3);
}

.text-eva-red-appt\/35 {
  color: rgba(243, 63, 77, 0.35);
}

.text-eva-red-appt\/40 {
  color: rgba(243, 63, 77, 0.4);
}

.text-eva-red-appt\/45 {
  color: rgba(243, 63, 77, 0.45);
}

.text-eva-red-appt\/5 {
  color: rgba(243, 63, 77, 0.05);
}

.text-eva-red-appt\/50 {
  color: rgba(243, 63, 77, 0.5);
}

.text-eva-red-appt\/55 {
  color: rgba(243, 63, 77, 0.55);
}

.text-eva-red-appt\/60 {
  color: rgba(243, 63, 77, 0.6);
}

.text-eva-red-appt\/65 {
  color: rgba(243, 63, 77, 0.65);
}

.text-eva-red-appt\/70 {
  color: rgba(243, 63, 77, 0.7);
}

.text-eva-red-appt\/75 {
  color: rgba(243, 63, 77, 0.75);
}

.text-eva-red-appt\/80 {
  color: rgba(243, 63, 77, 0.8);
}

.text-eva-red-appt\/85 {
  color: rgba(243, 63, 77, 0.85);
}

.text-eva-red-appt\/90 {
  color: rgba(243, 63, 77, 0.9);
}

.text-eva-red-appt\/95 {
  color: rgba(243, 63, 77, 0.95);
}

.text-eva-red-orange-appt {
  color: rgba(217, 154, 118, 1);
}

.text-eva-red-orange-appt\/0 {
  color: rgba(217, 154, 118, 0);
}

.text-eva-red-orange-appt\/10 {
  color: rgba(217, 154, 118, 0.1);
}

.text-eva-red-orange-appt\/100 {
  color: rgba(217, 154, 118, 1);
}

.text-eva-red-orange-appt\/15 {
  color: rgba(217, 154, 118, 0.15);
}

.text-eva-red-orange-appt\/20 {
  color: rgba(217, 154, 118, 0.2);
}

.text-eva-red-orange-appt\/25 {
  color: rgba(217, 154, 118, 0.25);
}

.text-eva-red-orange-appt\/30 {
  color: rgba(217, 154, 118, 0.3);
}

.text-eva-red-orange-appt\/35 {
  color: rgba(217, 154, 118, 0.35);
}

.text-eva-red-orange-appt\/40 {
  color: rgba(217, 154, 118, 0.4);
}

.text-eva-red-orange-appt\/45 {
  color: rgba(217, 154, 118, 0.45);
}

.text-eva-red-orange-appt\/5 {
  color: rgba(217, 154, 118, 0.05);
}

.text-eva-red-orange-appt\/50 {
  color: rgba(217, 154, 118, 0.5);
}

.text-eva-red-orange-appt\/55 {
  color: rgba(217, 154, 118, 0.55);
}

.text-eva-red-orange-appt\/60 {
  color: rgba(217, 154, 118, 0.6);
}

.text-eva-red-orange-appt\/65 {
  color: rgba(217, 154, 118, 0.65);
}

.text-eva-red-orange-appt\/70 {
  color: rgba(217, 154, 118, 0.7);
}

.text-eva-red-orange-appt\/75 {
  color: rgba(217, 154, 118, 0.75);
}

.text-eva-red-orange-appt\/80 {
  color: rgba(217, 154, 118, 0.8);
}

.text-eva-red-orange-appt\/85 {
  color: rgba(217, 154, 118, 0.85);
}

.text-eva-red-orange-appt\/90 {
  color: rgba(217, 154, 118, 0.9);
}

.text-eva-red-orange-appt\/95 {
  color: rgba(217, 154, 118, 0.95);
}

.text-eva-red\/0 {
  color: rgb(234 101 101 / 0);
}

.text-eva-red\/10 {
  color: rgb(234 101 101 / 0.1);
}

.text-eva-red\/100 {
  color: rgb(234 101 101 / 1);
}

.text-eva-red\/15 {
  color: rgb(234 101 101 / 0.15);
}

.text-eva-red\/20 {
  color: rgb(234 101 101 / 0.2);
}

.text-eva-red\/25 {
  color: rgb(234 101 101 / 0.25);
}

.text-eva-red\/30 {
  color: rgb(234 101 101 / 0.3);
}

.text-eva-red\/35 {
  color: rgb(234 101 101 / 0.35);
}

.text-eva-red\/40 {
  color: rgb(234 101 101 / 0.4);
}

.text-eva-red\/45 {
  color: rgb(234 101 101 / 0.45);
}

.text-eva-red\/5 {
  color: rgb(234 101 101 / 0.05);
}

.text-eva-red\/50 {
  color: rgb(234 101 101 / 0.5);
}

.text-eva-red\/55 {
  color: rgb(234 101 101 / 0.55);
}

.text-eva-red\/60 {
  color: rgb(234 101 101 / 0.6);
}

.text-eva-red\/65 {
  color: rgb(234 101 101 / 0.65);
}

.text-eva-red\/70 {
  color: rgb(234 101 101 / 0.7);
}

.text-eva-red\/75 {
  color: rgb(234 101 101 / 0.75);
}

.text-eva-red\/80 {
  color: rgb(234 101 101 / 0.8);
}

.text-eva-red\/85 {
  color: rgb(234 101 101 / 0.85);
}

.text-eva-red\/90 {
  color: rgb(234 101 101 / 0.9);
}

.text-eva-red\/95 {
  color: rgb(234 101 101 / 0.95);
}

.text-eva-teal-appt {
  --tw-text-opacity: 1;
  color: rgba(22, 172, 151, var(--tw-text-opacity, 1));
}

.text-eva-teal-appt\/0 {
  color: rgba(22, 172, 151, 0);
}

.text-eva-teal-appt\/10 {
  color: rgba(22, 172, 151, 0.1);
}

.text-eva-teal-appt\/100 {
  color: rgba(22, 172, 151, 1);
}

.text-eva-teal-appt\/15 {
  color: rgba(22, 172, 151, 0.15);
}

.text-eva-teal-appt\/20 {
  color: rgba(22, 172, 151, 0.2);
}

.text-eva-teal-appt\/25 {
  color: rgba(22, 172, 151, 0.25);
}

.text-eva-teal-appt\/30 {
  color: rgba(22, 172, 151, 0.3);
}

.text-eva-teal-appt\/35 {
  color: rgba(22, 172, 151, 0.35);
}

.text-eva-teal-appt\/40 {
  color: rgba(22, 172, 151, 0.4);
}

.text-eva-teal-appt\/45 {
  color: rgba(22, 172, 151, 0.45);
}

.text-eva-teal-appt\/5 {
  color: rgba(22, 172, 151, 0.05);
}

.text-eva-teal-appt\/50 {
  color: rgba(22, 172, 151, 0.5);
}

.text-eva-teal-appt\/55 {
  color: rgba(22, 172, 151, 0.55);
}

.text-eva-teal-appt\/60 {
  color: rgba(22, 172, 151, 0.6);
}

.text-eva-teal-appt\/65 {
  color: rgba(22, 172, 151, 0.65);
}

.text-eva-teal-appt\/70 {
  color: rgba(22, 172, 151, 0.7);
}

.text-eva-teal-appt\/75 {
  color: rgba(22, 172, 151, 0.75);
}

.text-eva-teal-appt\/80 {
  color: rgba(22, 172, 151, 0.8);
}

.text-eva-teal-appt\/85 {
  color: rgba(22, 172, 151, 0.85);
}

.text-eva-teal-appt\/90 {
  color: rgba(22, 172, 151, 0.9);
}

.text-eva-teal-appt\/95 {
  color: rgba(22, 172, 151, 0.95);
}

.text-eva-yellow {
  --tw-text-opacity: 1;
  color: rgb(233 179 98 / var(--tw-text-opacity, 1));
}

.text-eva-yellow-appt {
  color: rgba(240, 226, 0, 1);
}

.text-eva-yellow-appt\/0 {
  color: rgba(240, 226, 0, 0);
}

.text-eva-yellow-appt\/10 {
  color: rgba(240, 226, 0, 0.1);
}

.text-eva-yellow-appt\/100 {
  color: rgba(240, 226, 0, 1);
}

.text-eva-yellow-appt\/15 {
  color: rgba(240, 226, 0, 0.15);
}

.text-eva-yellow-appt\/20 {
  color: rgba(240, 226, 0, 0.2);
}

.text-eva-yellow-appt\/25 {
  color: rgba(240, 226, 0, 0.25);
}

.text-eva-yellow-appt\/30 {
  color: rgba(240, 226, 0, 0.3);
}

.text-eva-yellow-appt\/35 {
  color: rgba(240, 226, 0, 0.35);
}

.text-eva-yellow-appt\/40 {
  color: rgba(240, 226, 0, 0.4);
}

.text-eva-yellow-appt\/45 {
  color: rgba(240, 226, 0, 0.45);
}

.text-eva-yellow-appt\/5 {
  color: rgba(240, 226, 0, 0.05);
}

.text-eva-yellow-appt\/50 {
  color: rgba(240, 226, 0, 0.5);
}

.text-eva-yellow-appt\/55 {
  color: rgba(240, 226, 0, 0.55);
}

.text-eva-yellow-appt\/60 {
  color: rgba(240, 226, 0, 0.6);
}

.text-eva-yellow-appt\/65 {
  color: rgba(240, 226, 0, 0.65);
}

.text-eva-yellow-appt\/70 {
  color: rgba(240, 226, 0, 0.7);
}

.text-eva-yellow-appt\/75 {
  color: rgba(240, 226, 0, 0.75);
}

.text-eva-yellow-appt\/80 {
  color: rgba(240, 226, 0, 0.8);
}

.text-eva-yellow-appt\/85 {
  color: rgba(240, 226, 0, 0.85);
}

.text-eva-yellow-appt\/90 {
  color: rgba(240, 226, 0, 0.9);
}

.text-eva-yellow-appt\/95 {
  color: rgba(240, 226, 0, 0.95);
}

.text-eva-yellow\/0 {
  color: rgb(233 179 98 / 0);
}

.text-eva-yellow\/10 {
  color: rgb(233 179 98 / 0.1);
}

.text-eva-yellow\/100 {
  color: rgb(233 179 98 / 1);
}

.text-eva-yellow\/15 {
  color: rgb(233 179 98 / 0.15);
}

.text-eva-yellow\/20 {
  color: rgb(233 179 98 / 0.2);
}

.text-eva-yellow\/25 {
  color: rgb(233 179 98 / 0.25);
}

.text-eva-yellow\/30 {
  color: rgb(233 179 98 / 0.3);
}

.text-eva-yellow\/35 {
  color: rgb(233 179 98 / 0.35);
}

.text-eva-yellow\/40 {
  color: rgb(233 179 98 / 0.4);
}

.text-eva-yellow\/45 {
  color: rgb(233 179 98 / 0.45);
}

.text-eva-yellow\/5 {
  color: rgb(233 179 98 / 0.05);
}

.text-eva-yellow\/50 {
  color: rgb(233 179 98 / 0.5);
}

.text-eva-yellow\/55 {
  color: rgb(233 179 98 / 0.55);
}

.text-eva-yellow\/60 {
  color: rgb(233 179 98 / 0.6);
}

.text-eva-yellow\/65 {
  color: rgb(233 179 98 / 0.65);
}

.text-eva-yellow\/70 {
  color: rgb(233 179 98 / 0.7);
}

.text-eva-yellow\/75 {
  color: rgb(233 179 98 / 0.75);
}

.text-eva-yellow\/80 {
  color: rgb(233 179 98 / 0.8);
}

.text-eva-yellow\/85 {
  color: rgb(233 179 98 / 0.85);
}

.text-eva-yellow\/90 {
  color: rgb(233 179 98 / 0.9);
}

.text-eva-yellow\/95 {
  color: rgb(233 179 98 / 0.95);
}

.text-gray-100 {
  --tw-text-opacity: 1;
  color: rgb(245 245 245 / var(--tw-text-opacity, 1));
}

.text-gray-100\/0 {
  color: rgb(245 245 245 / 0);
}

.text-gray-100\/10 {
  color: rgb(245 245 245 / 0.1);
}

.text-gray-100\/100 {
  color: rgb(245 245 245 / 1);
}

.text-gray-100\/15 {
  color: rgb(245 245 245 / 0.15);
}

.text-gray-100\/20 {
  color: rgb(245 245 245 / 0.2);
}

.text-gray-100\/25 {
  color: rgb(245 245 245 / 0.25);
}

.text-gray-100\/30 {
  color: rgb(245 245 245 / 0.3);
}

.text-gray-100\/35 {
  color: rgb(245 245 245 / 0.35);
}

.text-gray-100\/40 {
  color: rgb(245 245 245 / 0.4);
}

.text-gray-100\/45 {
  color: rgb(245 245 245 / 0.45);
}

.text-gray-100\/5 {
  color: rgb(245 245 245 / 0.05);
}

.text-gray-100\/50 {
  color: rgb(245 245 245 / 0.5);
}

.text-gray-100\/55 {
  color: rgb(245 245 245 / 0.55);
}

.text-gray-100\/60 {
  color: rgb(245 245 245 / 0.6);
}

.text-gray-100\/65 {
  color: rgb(245 245 245 / 0.65);
}

.text-gray-100\/70 {
  color: rgb(245 245 245 / 0.7);
}

.text-gray-100\/75 {
  color: rgb(245 245 245 / 0.75);
}

.text-gray-100\/80 {
  color: rgb(245 245 245 / 0.8);
}

.text-gray-100\/85 {
  color: rgb(245 245 245 / 0.85);
}

.text-gray-100\/90 {
  color: rgb(245 245 245 / 0.9);
}

.text-gray-100\/95 {
  color: rgb(245 245 245 / 0.95);
}

.text-gray-200 {
  --tw-text-opacity: 1;
  color: rgb(229 229 229 / var(--tw-text-opacity, 1));
}

.text-gray-200\/0 {
  color: rgb(229 229 229 / 0);
}

.text-gray-200\/10 {
  color: rgb(229 229 229 / 0.1);
}

.text-gray-200\/100 {
  color: rgb(229 229 229 / 1);
}

.text-gray-200\/15 {
  color: rgb(229 229 229 / 0.15);
}

.text-gray-200\/20 {
  color: rgb(229 229 229 / 0.2);
}

.text-gray-200\/25 {
  color: rgb(229 229 229 / 0.25);
}

.text-gray-200\/30 {
  color: rgb(229 229 229 / 0.3);
}

.text-gray-200\/35 {
  color: rgb(229 229 229 / 0.35);
}

.text-gray-200\/40 {
  color: rgb(229 229 229 / 0.4);
}

.text-gray-200\/45 {
  color: rgb(229 229 229 / 0.45);
}

.text-gray-200\/5 {
  color: rgb(229 229 229 / 0.05);
}

.text-gray-200\/50 {
  color: rgb(229 229 229 / 0.5);
}

.text-gray-200\/55 {
  color: rgb(229 229 229 / 0.55);
}

.text-gray-200\/60 {
  color: rgb(229 229 229 / 0.6);
}

.text-gray-200\/65 {
  color: rgb(229 229 229 / 0.65);
}

.text-gray-200\/70 {
  color: rgb(229 229 229 / 0.7);
}

.text-gray-200\/75 {
  color: rgb(229 229 229 / 0.75);
}

.text-gray-200\/80 {
  color: rgb(229 229 229 / 0.8);
}

.text-gray-200\/85 {
  color: rgb(229 229 229 / 0.85);
}

.text-gray-200\/90 {
  color: rgb(229 229 229 / 0.9);
}

.text-gray-200\/95 {
  color: rgb(229 229 229 / 0.95);
}

.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgb(212 212 212 / var(--tw-text-opacity, 1));
}

.text-gray-300\/0 {
  color: rgb(212 212 212 / 0);
}

.text-gray-300\/10 {
  color: rgb(212 212 212 / 0.1);
}

.text-gray-300\/100 {
  color: rgb(212 212 212 / 1);
}

.text-gray-300\/15 {
  color: rgb(212 212 212 / 0.15);
}

.text-gray-300\/20 {
  color: rgb(212 212 212 / 0.2);
}

.text-gray-300\/25 {
  color: rgb(212 212 212 / 0.25);
}

.text-gray-300\/30 {
  color: rgb(212 212 212 / 0.3);
}

.text-gray-300\/35 {
  color: rgb(212 212 212 / 0.35);
}

.text-gray-300\/40 {
  color: rgb(212 212 212 / 0.4);
}

.text-gray-300\/45 {
  color: rgb(212 212 212 / 0.45);
}

.text-gray-300\/5 {
  color: rgb(212 212 212 / 0.05);
}

.text-gray-300\/50 {
  color: rgb(212 212 212 / 0.5);
}

.text-gray-300\/55 {
  color: rgb(212 212 212 / 0.55);
}

.text-gray-300\/60 {
  color: rgb(212 212 212 / 0.6);
}

.text-gray-300\/65 {
  color: rgb(212 212 212 / 0.65);
}

.text-gray-300\/70 {
  color: rgb(212 212 212 / 0.7);
}

.text-gray-300\/75 {
  color: rgb(212 212 212 / 0.75);
}

.text-gray-300\/80 {
  color: rgb(212 212 212 / 0.8);
}

.text-gray-300\/85 {
  color: rgb(212 212 212 / 0.85);
}

.text-gray-300\/90 {
  color: rgb(212 212 212 / 0.9);
}

.text-gray-300\/95 {
  color: rgb(212 212 212 / 0.95);
}

.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(163 163 163 / var(--tw-text-opacity, 1));
}

.text-gray-400\/0 {
  color: rgb(163 163 163 / 0);
}

.text-gray-400\/10 {
  color: rgb(163 163 163 / 0.1);
}

.text-gray-400\/100 {
  color: rgb(163 163 163 / 1);
}

.text-gray-400\/15 {
  color: rgb(163 163 163 / 0.15);
}

.text-gray-400\/20 {
  color: rgb(163 163 163 / 0.2);
}

.text-gray-400\/25 {
  color: rgb(163 163 163 / 0.25);
}

.text-gray-400\/30 {
  color: rgb(163 163 163 / 0.3);
}

.text-gray-400\/35 {
  color: rgb(163 163 163 / 0.35);
}

.text-gray-400\/40 {
  color: rgb(163 163 163 / 0.4);
}

.text-gray-400\/45 {
  color: rgb(163 163 163 / 0.45);
}

.text-gray-400\/5 {
  color: rgb(163 163 163 / 0.05);
}

.text-gray-400\/50 {
  color: rgb(163 163 163 / 0.5);
}

.text-gray-400\/55 {
  color: rgb(163 163 163 / 0.55);
}

.text-gray-400\/60 {
  color: rgb(163 163 163 / 0.6);
}

.text-gray-400\/65 {
  color: rgb(163 163 163 / 0.65);
}

.text-gray-400\/70 {
  color: rgb(163 163 163 / 0.7);
}

.text-gray-400\/75 {
  color: rgb(163 163 163 / 0.75);
}

.text-gray-400\/80 {
  color: rgb(163 163 163 / 0.8);
}

.text-gray-400\/85 {
  color: rgb(163 163 163 / 0.85);
}

.text-gray-400\/90 {
  color: rgb(163 163 163 / 0.9);
}

.text-gray-400\/95 {
  color: rgb(163 163 163 / 0.95);
}

.text-gray-50 {
  --tw-text-opacity: 1;
  color: rgb(250 250 250 / var(--tw-text-opacity, 1));
}

.text-gray-50\/0 {
  color: rgb(250 250 250 / 0);
}

.text-gray-50\/10 {
  color: rgb(250 250 250 / 0.1);
}

.text-gray-50\/100 {
  color: rgb(250 250 250 / 1);
}

.text-gray-50\/15 {
  color: rgb(250 250 250 / 0.15);
}

.text-gray-50\/20 {
  color: rgb(250 250 250 / 0.2);
}

.text-gray-50\/25 {
  color: rgb(250 250 250 / 0.25);
}

.text-gray-50\/30 {
  color: rgb(250 250 250 / 0.3);
}

.text-gray-50\/35 {
  color: rgb(250 250 250 / 0.35);
}

.text-gray-50\/40 {
  color: rgb(250 250 250 / 0.4);
}

.text-gray-50\/45 {
  color: rgb(250 250 250 / 0.45);
}

.text-gray-50\/5 {
  color: rgb(250 250 250 / 0.05);
}

.text-gray-50\/50 {
  color: rgb(250 250 250 / 0.5);
}

.text-gray-50\/55 {
  color: rgb(250 250 250 / 0.55);
}

.text-gray-50\/60 {
  color: rgb(250 250 250 / 0.6);
}

.text-gray-50\/65 {
  color: rgb(250 250 250 / 0.65);
}

.text-gray-50\/70 {
  color: rgb(250 250 250 / 0.7);
}

.text-gray-50\/75 {
  color: rgb(250 250 250 / 0.75);
}

.text-gray-50\/80 {
  color: rgb(250 250 250 / 0.8);
}

.text-gray-50\/85 {
  color: rgb(250 250 250 / 0.85);
}

.text-gray-50\/90 {
  color: rgb(250 250 250 / 0.9);
}

.text-gray-50\/95 {
  color: rgb(250 250 250 / 0.95);
}

.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(115 115 115 / var(--tw-text-opacity, 1));
}

.text-gray-500\/0 {
  color: rgb(115 115 115 / 0);
}

.text-gray-500\/10 {
  color: rgb(115 115 115 / 0.1);
}

.text-gray-500\/100 {
  color: rgb(115 115 115 / 1);
}

.text-gray-500\/15 {
  color: rgb(115 115 115 / 0.15);
}

.text-gray-500\/20 {
  color: rgb(115 115 115 / 0.2);
}

.text-gray-500\/25 {
  color: rgb(115 115 115 / 0.25);
}

.text-gray-500\/30 {
  color: rgb(115 115 115 / 0.3);
}

.text-gray-500\/35 {
  color: rgb(115 115 115 / 0.35);
}

.text-gray-500\/40 {
  color: rgb(115 115 115 / 0.4);
}

.text-gray-500\/45 {
  color: rgb(115 115 115 / 0.45);
}

.text-gray-500\/5 {
  color: rgb(115 115 115 / 0.05);
}

.text-gray-500\/50 {
  color: rgb(115 115 115 / 0.5);
}

.text-gray-500\/55 {
  color: rgb(115 115 115 / 0.55);
}

.text-gray-500\/60 {
  color: rgb(115 115 115 / 0.6);
}

.text-gray-500\/65 {
  color: rgb(115 115 115 / 0.65);
}

.text-gray-500\/70 {
  color: rgb(115 115 115 / 0.7);
}

.text-gray-500\/75 {
  color: rgb(115 115 115 / 0.75);
}

.text-gray-500\/80 {
  color: rgb(115 115 115 / 0.8);
}

.text-gray-500\/85 {
  color: rgb(115 115 115 / 0.85);
}

.text-gray-500\/90 {
  color: rgb(115 115 115 / 0.9);
}

.text-gray-500\/95 {
  color: rgb(115 115 115 / 0.95);
}

.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(82 82 82 / var(--tw-text-opacity, 1));
}

.text-gray-600\/0 {
  color: rgb(82 82 82 / 0);
}

.text-gray-600\/10 {
  color: rgb(82 82 82 / 0.1);
}

.text-gray-600\/100 {
  color: rgb(82 82 82 / 1);
}

.text-gray-600\/15 {
  color: rgb(82 82 82 / 0.15);
}

.text-gray-600\/20 {
  color: rgb(82 82 82 / 0.2);
}

.text-gray-600\/25 {
  color: rgb(82 82 82 / 0.25);
}

.text-gray-600\/30 {
  color: rgb(82 82 82 / 0.3);
}

.text-gray-600\/35 {
  color: rgb(82 82 82 / 0.35);
}

.text-gray-600\/40 {
  color: rgb(82 82 82 / 0.4);
}

.text-gray-600\/45 {
  color: rgb(82 82 82 / 0.45);
}

.text-gray-600\/5 {
  color: rgb(82 82 82 / 0.05);
}

.text-gray-600\/50 {
  color: rgb(82 82 82 / 0.5);
}

.text-gray-600\/55 {
  color: rgb(82 82 82 / 0.55);
}

.text-gray-600\/60 {
  color: rgb(82 82 82 / 0.6);
}

.text-gray-600\/65 {
  color: rgb(82 82 82 / 0.65);
}

.text-gray-600\/70 {
  color: rgb(82 82 82 / 0.7);
}

.text-gray-600\/75 {
  color: rgb(82 82 82 / 0.75);
}

.text-gray-600\/80 {
  color: rgb(82 82 82 / 0.8);
}

.text-gray-600\/85 {
  color: rgb(82 82 82 / 0.85);
}

.text-gray-600\/90 {
  color: rgb(82 82 82 / 0.9);
}

.text-gray-600\/95 {
  color: rgb(82 82 82 / 0.95);
}

.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(64 64 64 / var(--tw-text-opacity, 1));
}

.text-gray-700\/0 {
  color: rgb(64 64 64 / 0);
}

.text-gray-700\/10 {
  color: rgb(64 64 64 / 0.1);
}

.text-gray-700\/100 {
  color: rgb(64 64 64 / 1);
}

.text-gray-700\/15 {
  color: rgb(64 64 64 / 0.15);
}

.text-gray-700\/20 {
  color: rgb(64 64 64 / 0.2);
}

.text-gray-700\/25 {
  color: rgb(64 64 64 / 0.25);
}

.text-gray-700\/30 {
  color: rgb(64 64 64 / 0.3);
}

.text-gray-700\/35 {
  color: rgb(64 64 64 / 0.35);
}

.text-gray-700\/40 {
  color: rgb(64 64 64 / 0.4);
}

.text-gray-700\/45 {
  color: rgb(64 64 64 / 0.45);
}

.text-gray-700\/5 {
  color: rgb(64 64 64 / 0.05);
}

.text-gray-700\/50 {
  color: rgb(64 64 64 / 0.5);
}

.text-gray-700\/55 {
  color: rgb(64 64 64 / 0.55);
}

.text-gray-700\/60 {
  color: rgb(64 64 64 / 0.6);
}

.text-gray-700\/65 {
  color: rgb(64 64 64 / 0.65);
}

.text-gray-700\/70 {
  color: rgb(64 64 64 / 0.7);
}

.text-gray-700\/75 {
  color: rgb(64 64 64 / 0.75);
}

.text-gray-700\/80 {
  color: rgb(64 64 64 / 0.8);
}

.text-gray-700\/85 {
  color: rgb(64 64 64 / 0.85);
}

.text-gray-700\/90 {
  color: rgb(64 64 64 / 0.9);
}

.text-gray-700\/95 {
  color: rgb(64 64 64 / 0.95);
}

.text-gray-800 {
  --tw-text-opacity: 1;
  color: rgb(38 38 38 / var(--tw-text-opacity, 1));
}

.text-gray-800\/0 {
  color: rgb(38 38 38 / 0);
}

.text-gray-800\/10 {
  color: rgb(38 38 38 / 0.1);
}

.text-gray-800\/100 {
  color: rgb(38 38 38 / 1);
}

.text-gray-800\/15 {
  color: rgb(38 38 38 / 0.15);
}

.text-gray-800\/20 {
  color: rgb(38 38 38 / 0.2);
}

.text-gray-800\/25 {
  color: rgb(38 38 38 / 0.25);
}

.text-gray-800\/30 {
  color: rgb(38 38 38 / 0.3);
}

.text-gray-800\/35 {
  color: rgb(38 38 38 / 0.35);
}

.text-gray-800\/40 {
  color: rgb(38 38 38 / 0.4);
}

.text-gray-800\/45 {
  color: rgb(38 38 38 / 0.45);
}

.text-gray-800\/5 {
  color: rgb(38 38 38 / 0.05);
}

.text-gray-800\/50 {
  color: rgb(38 38 38 / 0.5);
}

.text-gray-800\/55 {
  color: rgb(38 38 38 / 0.55);
}

.text-gray-800\/60 {
  color: rgb(38 38 38 / 0.6);
}

.text-gray-800\/65 {
  color: rgb(38 38 38 / 0.65);
}

.text-gray-800\/70 {
  color: rgb(38 38 38 / 0.7);
}

.text-gray-800\/75 {
  color: rgb(38 38 38 / 0.75);
}

.text-gray-800\/80 {
  color: rgb(38 38 38 / 0.8);
}

.text-gray-800\/85 {
  color: rgb(38 38 38 / 0.85);
}

.text-gray-800\/90 {
  color: rgb(38 38 38 / 0.9);
}

.text-gray-800\/95 {
  color: rgb(38 38 38 / 0.95);
}

.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(23 23 23 / var(--tw-text-opacity, 1));
}

.text-gray-900\/0 {
  color: rgb(23 23 23 / 0);
}

.text-gray-900\/10 {
  color: rgb(23 23 23 / 0.1);
}

.text-gray-900\/100 {
  color: rgb(23 23 23 / 1);
}

.text-gray-900\/15 {
  color: rgb(23 23 23 / 0.15);
}

.text-gray-900\/20 {
  color: rgb(23 23 23 / 0.2);
}

.text-gray-900\/25 {
  color: rgb(23 23 23 / 0.25);
}

.text-gray-900\/30 {
  color: rgb(23 23 23 / 0.3);
}

.text-gray-900\/35 {
  color: rgb(23 23 23 / 0.35);
}

.text-gray-900\/40 {
  color: rgb(23 23 23 / 0.4);
}

.text-gray-900\/45 {
  color: rgb(23 23 23 / 0.45);
}

.text-gray-900\/5 {
  color: rgb(23 23 23 / 0.05);
}

.text-gray-900\/50 {
  color: rgb(23 23 23 / 0.5);
}

.text-gray-900\/55 {
  color: rgb(23 23 23 / 0.55);
}

.text-gray-900\/60 {
  color: rgb(23 23 23 / 0.6);
}

.text-gray-900\/65 {
  color: rgb(23 23 23 / 0.65);
}

.text-gray-900\/70 {
  color: rgb(23 23 23 / 0.7);
}

.text-gray-900\/75 {
  color: rgb(23 23 23 / 0.75);
}

.text-gray-900\/80 {
  color: rgb(23 23 23 / 0.8);
}

.text-gray-900\/85 {
  color: rgb(23 23 23 / 0.85);
}

.text-gray-900\/90 {
  color: rgb(23 23 23 / 0.9);
}

.text-gray-900\/95 {
  color: rgb(23 23 23 / 0.95);
}

.text-gray-950 {
  --tw-text-opacity: 1;
  color: rgb(10 10 10 / var(--tw-text-opacity, 1));
}

.text-gray-950\/0 {
  color: rgb(10 10 10 / 0);
}

.text-gray-950\/10 {
  color: rgb(10 10 10 / 0.1);
}

.text-gray-950\/100 {
  color: rgb(10 10 10 / 1);
}

.text-gray-950\/15 {
  color: rgb(10 10 10 / 0.15);
}

.text-gray-950\/20 {
  color: rgb(10 10 10 / 0.2);
}

.text-gray-950\/25 {
  color: rgb(10 10 10 / 0.25);
}

.text-gray-950\/30 {
  color: rgb(10 10 10 / 0.3);
}

.text-gray-950\/35 {
  color: rgb(10 10 10 / 0.35);
}

.text-gray-950\/40 {
  color: rgb(10 10 10 / 0.4);
}

.text-gray-950\/45 {
  color: rgb(10 10 10 / 0.45);
}

.text-gray-950\/5 {
  color: rgb(10 10 10 / 0.05);
}

.text-gray-950\/50 {
  color: rgb(10 10 10 / 0.5);
}

.text-gray-950\/55 {
  color: rgb(10 10 10 / 0.55);
}

.text-gray-950\/60 {
  color: rgb(10 10 10 / 0.6);
}

.text-gray-950\/65 {
  color: rgb(10 10 10 / 0.65);
}

.text-gray-950\/70 {
  color: rgb(10 10 10 / 0.7);
}

.text-gray-950\/75 {
  color: rgb(10 10 10 / 0.75);
}

.text-gray-950\/80 {
  color: rgb(10 10 10 / 0.8);
}

.text-gray-950\/85 {
  color: rgb(10 10 10 / 0.85);
}

.text-gray-950\/90 {
  color: rgb(10 10 10 / 0.9);
}

.text-gray-950\/95 {
  color: rgb(10 10 10 / 0.95);
}

.text-green-100 {
  --tw-text-opacity: 1;
  color: rgb(220 252 231 / var(--tw-text-opacity, 1));
}

.text-green-100\/0 {
  color: rgb(220 252 231 / 0);
}

.text-green-100\/10 {
  color: rgb(220 252 231 / 0.1);
}

.text-green-100\/100 {
  color: rgb(220 252 231 / 1);
}

.text-green-100\/15 {
  color: rgb(220 252 231 / 0.15);
}

.text-green-100\/20 {
  color: rgb(220 252 231 / 0.2);
}

.text-green-100\/25 {
  color: rgb(220 252 231 / 0.25);
}

.text-green-100\/30 {
  color: rgb(220 252 231 / 0.3);
}

.text-green-100\/35 {
  color: rgb(220 252 231 / 0.35);
}

.text-green-100\/40 {
  color: rgb(220 252 231 / 0.4);
}

.text-green-100\/45 {
  color: rgb(220 252 231 / 0.45);
}

.text-green-100\/5 {
  color: rgb(220 252 231 / 0.05);
}

.text-green-100\/50 {
  color: rgb(220 252 231 / 0.5);
}

.text-green-100\/55 {
  color: rgb(220 252 231 / 0.55);
}

.text-green-100\/60 {
  color: rgb(220 252 231 / 0.6);
}

.text-green-100\/65 {
  color: rgb(220 252 231 / 0.65);
}

.text-green-100\/70 {
  color: rgb(220 252 231 / 0.7);
}

.text-green-100\/75 {
  color: rgb(220 252 231 / 0.75);
}

.text-green-100\/80 {
  color: rgb(220 252 231 / 0.8);
}

.text-green-100\/85 {
  color: rgb(220 252 231 / 0.85);
}

.text-green-100\/90 {
  color: rgb(220 252 231 / 0.9);
}

.text-green-100\/95 {
  color: rgb(220 252 231 / 0.95);
}

.text-green-200 {
  --tw-text-opacity: 1;
  color: rgb(187 247 208 / var(--tw-text-opacity, 1));
}

.text-green-200\/0 {
  color: rgb(187 247 208 / 0);
}

.text-green-200\/10 {
  color: rgb(187 247 208 / 0.1);
}

.text-green-200\/100 {
  color: rgb(187 247 208 / 1);
}

.text-green-200\/15 {
  color: rgb(187 247 208 / 0.15);
}

.text-green-200\/20 {
  color: rgb(187 247 208 / 0.2);
}

.text-green-200\/25 {
  color: rgb(187 247 208 / 0.25);
}

.text-green-200\/30 {
  color: rgb(187 247 208 / 0.3);
}

.text-green-200\/35 {
  color: rgb(187 247 208 / 0.35);
}

.text-green-200\/40 {
  color: rgb(187 247 208 / 0.4);
}

.text-green-200\/45 {
  color: rgb(187 247 208 / 0.45);
}

.text-green-200\/5 {
  color: rgb(187 247 208 / 0.05);
}

.text-green-200\/50 {
  color: rgb(187 247 208 / 0.5);
}

.text-green-200\/55 {
  color: rgb(187 247 208 / 0.55);
}

.text-green-200\/60 {
  color: rgb(187 247 208 / 0.6);
}

.text-green-200\/65 {
  color: rgb(187 247 208 / 0.65);
}

.text-green-200\/70 {
  color: rgb(187 247 208 / 0.7);
}

.text-green-200\/75 {
  color: rgb(187 247 208 / 0.75);
}

.text-green-200\/80 {
  color: rgb(187 247 208 / 0.8);
}

.text-green-200\/85 {
  color: rgb(187 247 208 / 0.85);
}

.text-green-200\/90 {
  color: rgb(187 247 208 / 0.9);
}

.text-green-200\/95 {
  color: rgb(187 247 208 / 0.95);
}

.text-green-300 {
  --tw-text-opacity: 1;
  color: rgb(134 239 172 / var(--tw-text-opacity, 1));
}

.text-green-300\/0 {
  color: rgb(134 239 172 / 0);
}

.text-green-300\/10 {
  color: rgb(134 239 172 / 0.1);
}

.text-green-300\/100 {
  color: rgb(134 239 172 / 1);
}

.text-green-300\/15 {
  color: rgb(134 239 172 / 0.15);
}

.text-green-300\/20 {
  color: rgb(134 239 172 / 0.2);
}

.text-green-300\/25 {
  color: rgb(134 239 172 / 0.25);
}

.text-green-300\/30 {
  color: rgb(134 239 172 / 0.3);
}

.text-green-300\/35 {
  color: rgb(134 239 172 / 0.35);
}

.text-green-300\/40 {
  color: rgb(134 239 172 / 0.4);
}

.text-green-300\/45 {
  color: rgb(134 239 172 / 0.45);
}

.text-green-300\/5 {
  color: rgb(134 239 172 / 0.05);
}

.text-green-300\/50 {
  color: rgb(134 239 172 / 0.5);
}

.text-green-300\/55 {
  color: rgb(134 239 172 / 0.55);
}

.text-green-300\/60 {
  color: rgb(134 239 172 / 0.6);
}

.text-green-300\/65 {
  color: rgb(134 239 172 / 0.65);
}

.text-green-300\/70 {
  color: rgb(134 239 172 / 0.7);
}

.text-green-300\/75 {
  color: rgb(134 239 172 / 0.75);
}

.text-green-300\/80 {
  color: rgb(134 239 172 / 0.8);
}

.text-green-300\/85 {
  color: rgb(134 239 172 / 0.85);
}

.text-green-300\/90 {
  color: rgb(134 239 172 / 0.9);
}

.text-green-300\/95 {
  color: rgb(134 239 172 / 0.95);
}

.text-green-400 {
  --tw-text-opacity: 1;
  color: rgb(74 222 128 / var(--tw-text-opacity, 1));
}

.text-green-400\/0 {
  color: rgb(74 222 128 / 0);
}

.text-green-400\/10 {
  color: rgb(74 222 128 / 0.1);
}

.text-green-400\/100 {
  color: rgb(74 222 128 / 1);
}

.text-green-400\/15 {
  color: rgb(74 222 128 / 0.15);
}

.text-green-400\/20 {
  color: rgb(74 222 128 / 0.2);
}

.text-green-400\/25 {
  color: rgb(74 222 128 / 0.25);
}

.text-green-400\/30 {
  color: rgb(74 222 128 / 0.3);
}

.text-green-400\/35 {
  color: rgb(74 222 128 / 0.35);
}

.text-green-400\/40 {
  color: rgb(74 222 128 / 0.4);
}

.text-green-400\/45 {
  color: rgb(74 222 128 / 0.45);
}

.text-green-400\/5 {
  color: rgb(74 222 128 / 0.05);
}

.text-green-400\/50 {
  color: rgb(74 222 128 / 0.5);
}

.text-green-400\/55 {
  color: rgb(74 222 128 / 0.55);
}

.text-green-400\/60 {
  color: rgb(74 222 128 / 0.6);
}

.text-green-400\/65 {
  color: rgb(74 222 128 / 0.65);
}

.text-green-400\/70 {
  color: rgb(74 222 128 / 0.7);
}

.text-green-400\/75 {
  color: rgb(74 222 128 / 0.75);
}

.text-green-400\/80 {
  color: rgb(74 222 128 / 0.8);
}

.text-green-400\/85 {
  color: rgb(74 222 128 / 0.85);
}

.text-green-400\/90 {
  color: rgb(74 222 128 / 0.9);
}

.text-green-400\/95 {
  color: rgb(74 222 128 / 0.95);
}

.text-green-50 {
  --tw-text-opacity: 1;
  color: rgb(240 253 244 / var(--tw-text-opacity, 1));
}

.text-green-50\/0 {
  color: rgb(240 253 244 / 0);
}

.text-green-50\/10 {
  color: rgb(240 253 244 / 0.1);
}

.text-green-50\/100 {
  color: rgb(240 253 244 / 1);
}

.text-green-50\/15 {
  color: rgb(240 253 244 / 0.15);
}

.text-green-50\/20 {
  color: rgb(240 253 244 / 0.2);
}

.text-green-50\/25 {
  color: rgb(240 253 244 / 0.25);
}

.text-green-50\/30 {
  color: rgb(240 253 244 / 0.3);
}

.text-green-50\/35 {
  color: rgb(240 253 244 / 0.35);
}

.text-green-50\/40 {
  color: rgb(240 253 244 / 0.4);
}

.text-green-50\/45 {
  color: rgb(240 253 244 / 0.45);
}

.text-green-50\/5 {
  color: rgb(240 253 244 / 0.05);
}

.text-green-50\/50 {
  color: rgb(240 253 244 / 0.5);
}

.text-green-50\/55 {
  color: rgb(240 253 244 / 0.55);
}

.text-green-50\/60 {
  color: rgb(240 253 244 / 0.6);
}

.text-green-50\/65 {
  color: rgb(240 253 244 / 0.65);
}

.text-green-50\/70 {
  color: rgb(240 253 244 / 0.7);
}

.text-green-50\/75 {
  color: rgb(240 253 244 / 0.75);
}

.text-green-50\/80 {
  color: rgb(240 253 244 / 0.8);
}

.text-green-50\/85 {
  color: rgb(240 253 244 / 0.85);
}

.text-green-50\/90 {
  color: rgb(240 253 244 / 0.9);
}

.text-green-50\/95 {
  color: rgb(240 253 244 / 0.95);
}

.text-green-500 {
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / var(--tw-text-opacity, 1));
}

.text-green-500\/0 {
  color: rgb(34 197 94 / 0);
}

.text-green-500\/10 {
  color: rgb(34 197 94 / 0.1);
}

.text-green-500\/100 {
  color: rgb(34 197 94 / 1);
}

.text-green-500\/15 {
  color: rgb(34 197 94 / 0.15);
}

.text-green-500\/20 {
  color: rgb(34 197 94 / 0.2);
}

.text-green-500\/25 {
  color: rgb(34 197 94 / 0.25);
}

.text-green-500\/30 {
  color: rgb(34 197 94 / 0.3);
}

.text-green-500\/35 {
  color: rgb(34 197 94 / 0.35);
}

.text-green-500\/40 {
  color: rgb(34 197 94 / 0.4);
}

.text-green-500\/45 {
  color: rgb(34 197 94 / 0.45);
}

.text-green-500\/5 {
  color: rgb(34 197 94 / 0.05);
}

.text-green-500\/50 {
  color: rgb(34 197 94 / 0.5);
}

.text-green-500\/55 {
  color: rgb(34 197 94 / 0.55);
}

.text-green-500\/60 {
  color: rgb(34 197 94 / 0.6);
}

.text-green-500\/65 {
  color: rgb(34 197 94 / 0.65);
}

.text-green-500\/70 {
  color: rgb(34 197 94 / 0.7);
}

.text-green-500\/75 {
  color: rgb(34 197 94 / 0.75);
}

.text-green-500\/80 {
  color: rgb(34 197 94 / 0.8);
}

.text-green-500\/85 {
  color: rgb(34 197 94 / 0.85);
}

.text-green-500\/90 {
  color: rgb(34 197 94 / 0.9);
}

.text-green-500\/95 {
  color: rgb(34 197 94 / 0.95);
}

.text-green-600 {
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}

.text-green-600\/0 {
  color: rgb(22 163 74 / 0);
}

.text-green-600\/10 {
  color: rgb(22 163 74 / 0.1);
}

.text-green-600\/100 {
  color: rgb(22 163 74 / 1);
}

.text-green-600\/15 {
  color: rgb(22 163 74 / 0.15);
}

.text-green-600\/20 {
  color: rgb(22 163 74 / 0.2);
}

.text-green-600\/25 {
  color: rgb(22 163 74 / 0.25);
}

.text-green-600\/30 {
  color: rgb(22 163 74 / 0.3);
}

.text-green-600\/35 {
  color: rgb(22 163 74 / 0.35);
}

.text-green-600\/40 {
  color: rgb(22 163 74 / 0.4);
}

.text-green-600\/45 {
  color: rgb(22 163 74 / 0.45);
}

.text-green-600\/5 {
  color: rgb(22 163 74 / 0.05);
}

.text-green-600\/50 {
  color: rgb(22 163 74 / 0.5);
}

.text-green-600\/55 {
  color: rgb(22 163 74 / 0.55);
}

.text-green-600\/60 {
  color: rgb(22 163 74 / 0.6);
}

.text-green-600\/65 {
  color: rgb(22 163 74 / 0.65);
}

.text-green-600\/70 {
  color: rgb(22 163 74 / 0.7);
}

.text-green-600\/75 {
  color: rgb(22 163 74 / 0.75);
}

.text-green-600\/80 {
  color: rgb(22 163 74 / 0.8);
}

.text-green-600\/85 {
  color: rgb(22 163 74 / 0.85);
}

.text-green-600\/90 {
  color: rgb(22 163 74 / 0.9);
}

.text-green-600\/95 {
  color: rgb(22 163 74 / 0.95);
}

.text-green-700 {
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / var(--tw-text-opacity, 1));
}

.text-green-700\/0 {
  color: rgb(21 128 61 / 0);
}

.text-green-700\/10 {
  color: rgb(21 128 61 / 0.1);
}

.text-green-700\/100 {
  color: rgb(21 128 61 / 1);
}

.text-green-700\/15 {
  color: rgb(21 128 61 / 0.15);
}

.text-green-700\/20 {
  color: rgb(21 128 61 / 0.2);
}

.text-green-700\/25 {
  color: rgb(21 128 61 / 0.25);
}

.text-green-700\/30 {
  color: rgb(21 128 61 / 0.3);
}

.text-green-700\/35 {
  color: rgb(21 128 61 / 0.35);
}

.text-green-700\/40 {
  color: rgb(21 128 61 / 0.4);
}

.text-green-700\/45 {
  color: rgb(21 128 61 / 0.45);
}

.text-green-700\/5 {
  color: rgb(21 128 61 / 0.05);
}

.text-green-700\/50 {
  color: rgb(21 128 61 / 0.5);
}

.text-green-700\/55 {
  color: rgb(21 128 61 / 0.55);
}

.text-green-700\/60 {
  color: rgb(21 128 61 / 0.6);
}

.text-green-700\/65 {
  color: rgb(21 128 61 / 0.65);
}

.text-green-700\/70 {
  color: rgb(21 128 61 / 0.7);
}

.text-green-700\/75 {
  color: rgb(21 128 61 / 0.75);
}

.text-green-700\/80 {
  color: rgb(21 128 61 / 0.8);
}

.text-green-700\/85 {
  color: rgb(21 128 61 / 0.85);
}

.text-green-700\/90 {
  color: rgb(21 128 61 / 0.9);
}

.text-green-700\/95 {
  color: rgb(21 128 61 / 0.95);
}

.text-green-800 {
  --tw-text-opacity: 1;
  color: rgb(22 101 52 / var(--tw-text-opacity, 1));
}

.text-green-800\/0 {
  color: rgb(22 101 52 / 0);
}

.text-green-800\/10 {
  color: rgb(22 101 52 / 0.1);
}

.text-green-800\/100 {
  color: rgb(22 101 52 / 1);
}

.text-green-800\/15 {
  color: rgb(22 101 52 / 0.15);
}

.text-green-800\/20 {
  color: rgb(22 101 52 / 0.2);
}

.text-green-800\/25 {
  color: rgb(22 101 52 / 0.25);
}

.text-green-800\/30 {
  color: rgb(22 101 52 / 0.3);
}

.text-green-800\/35 {
  color: rgb(22 101 52 / 0.35);
}

.text-green-800\/40 {
  color: rgb(22 101 52 / 0.4);
}

.text-green-800\/45 {
  color: rgb(22 101 52 / 0.45);
}

.text-green-800\/5 {
  color: rgb(22 101 52 / 0.05);
}

.text-green-800\/50 {
  color: rgb(22 101 52 / 0.5);
}

.text-green-800\/55 {
  color: rgb(22 101 52 / 0.55);
}

.text-green-800\/60 {
  color: rgb(22 101 52 / 0.6);
}

.text-green-800\/65 {
  color: rgb(22 101 52 / 0.65);
}

.text-green-800\/70 {
  color: rgb(22 101 52 / 0.7);
}

.text-green-800\/75 {
  color: rgb(22 101 52 / 0.75);
}

.text-green-800\/80 {
  color: rgb(22 101 52 / 0.8);
}

.text-green-800\/85 {
  color: rgb(22 101 52 / 0.85);
}

.text-green-800\/90 {
  color: rgb(22 101 52 / 0.9);
}

.text-green-800\/95 {
  color: rgb(22 101 52 / 0.95);
}

.text-green-900 {
  --tw-text-opacity: 1;
  color: rgb(20 83 45 / var(--tw-text-opacity, 1));
}

.text-green-900\/0 {
  color: rgb(20 83 45 / 0);
}

.text-green-900\/10 {
  color: rgb(20 83 45 / 0.1);
}

.text-green-900\/100 {
  color: rgb(20 83 45 / 1);
}

.text-green-900\/15 {
  color: rgb(20 83 45 / 0.15);
}

.text-green-900\/20 {
  color: rgb(20 83 45 / 0.2);
}

.text-green-900\/25 {
  color: rgb(20 83 45 / 0.25);
}

.text-green-900\/30 {
  color: rgb(20 83 45 / 0.3);
}

.text-green-900\/35 {
  color: rgb(20 83 45 / 0.35);
}

.text-green-900\/40 {
  color: rgb(20 83 45 / 0.4);
}

.text-green-900\/45 {
  color: rgb(20 83 45 / 0.45);
}

.text-green-900\/5 {
  color: rgb(20 83 45 / 0.05);
}

.text-green-900\/50 {
  color: rgb(20 83 45 / 0.5);
}

.text-green-900\/55 {
  color: rgb(20 83 45 / 0.55);
}

.text-green-900\/60 {
  color: rgb(20 83 45 / 0.6);
}

.text-green-900\/65 {
  color: rgb(20 83 45 / 0.65);
}

.text-green-900\/70 {
  color: rgb(20 83 45 / 0.7);
}

.text-green-900\/75 {
  color: rgb(20 83 45 / 0.75);
}

.text-green-900\/80 {
  color: rgb(20 83 45 / 0.8);
}

.text-green-900\/85 {
  color: rgb(20 83 45 / 0.85);
}

.text-green-900\/90 {
  color: rgb(20 83 45 / 0.9);
}

.text-green-900\/95 {
  color: rgb(20 83 45 / 0.95);
}

.text-green-950 {
  --tw-text-opacity: 1;
  color: rgb(5 46 22 / var(--tw-text-opacity, 1));
}

.text-green-950\/0 {
  color: rgb(5 46 22 / 0);
}

.text-green-950\/10 {
  color: rgb(5 46 22 / 0.1);
}

.text-green-950\/100 {
  color: rgb(5 46 22 / 1);
}

.text-green-950\/15 {
  color: rgb(5 46 22 / 0.15);
}

.text-green-950\/20 {
  color: rgb(5 46 22 / 0.2);
}

.text-green-950\/25 {
  color: rgb(5 46 22 / 0.25);
}

.text-green-950\/30 {
  color: rgb(5 46 22 / 0.3);
}

.text-green-950\/35 {
  color: rgb(5 46 22 / 0.35);
}

.text-green-950\/40 {
  color: rgb(5 46 22 / 0.4);
}

.text-green-950\/45 {
  color: rgb(5 46 22 / 0.45);
}

.text-green-950\/5 {
  color: rgb(5 46 22 / 0.05);
}

.text-green-950\/50 {
  color: rgb(5 46 22 / 0.5);
}

.text-green-950\/55 {
  color: rgb(5 46 22 / 0.55);
}

.text-green-950\/60 {
  color: rgb(5 46 22 / 0.6);
}

.text-green-950\/65 {
  color: rgb(5 46 22 / 0.65);
}

.text-green-950\/70 {
  color: rgb(5 46 22 / 0.7);
}

.text-green-950\/75 {
  color: rgb(5 46 22 / 0.75);
}

.text-green-950\/80 {
  color: rgb(5 46 22 / 0.8);
}

.text-green-950\/85 {
  color: rgb(5 46 22 / 0.85);
}

.text-green-950\/90 {
  color: rgb(5 46 22 / 0.9);
}

.text-green-950\/95 {
  color: rgb(5 46 22 / 0.95);
}

.text-red-100 {
  --tw-text-opacity: 1;
  color: rgb(254 226 226 / var(--tw-text-opacity, 1));
}

.text-red-100\/0 {
  color: rgb(254 226 226 / 0);
}

.text-red-100\/10 {
  color: rgb(254 226 226 / 0.1);
}

.text-red-100\/100 {
  color: rgb(254 226 226 / 1);
}

.text-red-100\/15 {
  color: rgb(254 226 226 / 0.15);
}

.text-red-100\/20 {
  color: rgb(254 226 226 / 0.2);
}

.text-red-100\/25 {
  color: rgb(254 226 226 / 0.25);
}

.text-red-100\/30 {
  color: rgb(254 226 226 / 0.3);
}

.text-red-100\/35 {
  color: rgb(254 226 226 / 0.35);
}

.text-red-100\/40 {
  color: rgb(254 226 226 / 0.4);
}

.text-red-100\/45 {
  color: rgb(254 226 226 / 0.45);
}

.text-red-100\/5 {
  color: rgb(254 226 226 / 0.05);
}

.text-red-100\/50 {
  color: rgb(254 226 226 / 0.5);
}

.text-red-100\/55 {
  color: rgb(254 226 226 / 0.55);
}

.text-red-100\/60 {
  color: rgb(254 226 226 / 0.6);
}

.text-red-100\/65 {
  color: rgb(254 226 226 / 0.65);
}

.text-red-100\/70 {
  color: rgb(254 226 226 / 0.7);
}

.text-red-100\/75 {
  color: rgb(254 226 226 / 0.75);
}

.text-red-100\/80 {
  color: rgb(254 226 226 / 0.8);
}

.text-red-100\/85 {
  color: rgb(254 226 226 / 0.85);
}

.text-red-100\/90 {
  color: rgb(254 226 226 / 0.9);
}

.text-red-100\/95 {
  color: rgb(254 226 226 / 0.95);
}

.text-red-200 {
  --tw-text-opacity: 1;
  color: rgb(254 202 202 / var(--tw-text-opacity, 1));
}

.text-red-200\/0 {
  color: rgb(254 202 202 / 0);
}

.text-red-200\/10 {
  color: rgb(254 202 202 / 0.1);
}

.text-red-200\/100 {
  color: rgb(254 202 202 / 1);
}

.text-red-200\/15 {
  color: rgb(254 202 202 / 0.15);
}

.text-red-200\/20 {
  color: rgb(254 202 202 / 0.2);
}

.text-red-200\/25 {
  color: rgb(254 202 202 / 0.25);
}

.text-red-200\/30 {
  color: rgb(254 202 202 / 0.3);
}

.text-red-200\/35 {
  color: rgb(254 202 202 / 0.35);
}

.text-red-200\/40 {
  color: rgb(254 202 202 / 0.4);
}

.text-red-200\/45 {
  color: rgb(254 202 202 / 0.45);
}

.text-red-200\/5 {
  color: rgb(254 202 202 / 0.05);
}

.text-red-200\/50 {
  color: rgb(254 202 202 / 0.5);
}

.text-red-200\/55 {
  color: rgb(254 202 202 / 0.55);
}

.text-red-200\/60 {
  color: rgb(254 202 202 / 0.6);
}

.text-red-200\/65 {
  color: rgb(254 202 202 / 0.65);
}

.text-red-200\/70 {
  color: rgb(254 202 202 / 0.7);
}

.text-red-200\/75 {
  color: rgb(254 202 202 / 0.75);
}

.text-red-200\/80 {
  color: rgb(254 202 202 / 0.8);
}

.text-red-200\/85 {
  color: rgb(254 202 202 / 0.85);
}

.text-red-200\/90 {
  color: rgb(254 202 202 / 0.9);
}

.text-red-200\/95 {
  color: rgb(254 202 202 / 0.95);
}

.text-red-300 {
  --tw-text-opacity: 1;
  color: rgb(252 165 165 / var(--tw-text-opacity, 1));
}

.text-red-300\/0 {
  color: rgb(252 165 165 / 0);
}

.text-red-300\/10 {
  color: rgb(252 165 165 / 0.1);
}

.text-red-300\/100 {
  color: rgb(252 165 165 / 1);
}

.text-red-300\/15 {
  color: rgb(252 165 165 / 0.15);
}

.text-red-300\/20 {
  color: rgb(252 165 165 / 0.2);
}

.text-red-300\/25 {
  color: rgb(252 165 165 / 0.25);
}

.text-red-300\/30 {
  color: rgb(252 165 165 / 0.3);
}

.text-red-300\/35 {
  color: rgb(252 165 165 / 0.35);
}

.text-red-300\/40 {
  color: rgb(252 165 165 / 0.4);
}

.text-red-300\/45 {
  color: rgb(252 165 165 / 0.45);
}

.text-red-300\/5 {
  color: rgb(252 165 165 / 0.05);
}

.text-red-300\/50 {
  color: rgb(252 165 165 / 0.5);
}

.text-red-300\/55 {
  color: rgb(252 165 165 / 0.55);
}

.text-red-300\/60 {
  color: rgb(252 165 165 / 0.6);
}

.text-red-300\/65 {
  color: rgb(252 165 165 / 0.65);
}

.text-red-300\/70 {
  color: rgb(252 165 165 / 0.7);
}

.text-red-300\/75 {
  color: rgb(252 165 165 / 0.75);
}

.text-red-300\/80 {
  color: rgb(252 165 165 / 0.8);
}

.text-red-300\/85 {
  color: rgb(252 165 165 / 0.85);
}

.text-red-300\/90 {
  color: rgb(252 165 165 / 0.9);
}

.text-red-300\/95 {
  color: rgb(252 165 165 / 0.95);
}

.text-red-400 {
  --tw-text-opacity: 1;
  color: rgb(248 113 113 / var(--tw-text-opacity, 1));
}

.text-red-400\/0 {
  color: rgb(248 113 113 / 0);
}

.text-red-400\/10 {
  color: rgb(248 113 113 / 0.1);
}

.text-red-400\/100 {
  color: rgb(248 113 113 / 1);
}

.text-red-400\/15 {
  color: rgb(248 113 113 / 0.15);
}

.text-red-400\/20 {
  color: rgb(248 113 113 / 0.2);
}

.text-red-400\/25 {
  color: rgb(248 113 113 / 0.25);
}

.text-red-400\/30 {
  color: rgb(248 113 113 / 0.3);
}

.text-red-400\/35 {
  color: rgb(248 113 113 / 0.35);
}

.text-red-400\/40 {
  color: rgb(248 113 113 / 0.4);
}

.text-red-400\/45 {
  color: rgb(248 113 113 / 0.45);
}

.text-red-400\/5 {
  color: rgb(248 113 113 / 0.05);
}

.text-red-400\/50 {
  color: rgb(248 113 113 / 0.5);
}

.text-red-400\/55 {
  color: rgb(248 113 113 / 0.55);
}

.text-red-400\/60 {
  color: rgb(248 113 113 / 0.6);
}

.text-red-400\/65 {
  color: rgb(248 113 113 / 0.65);
}

.text-red-400\/70 {
  color: rgb(248 113 113 / 0.7);
}

.text-red-400\/75 {
  color: rgb(248 113 113 / 0.75);
}

.text-red-400\/80 {
  color: rgb(248 113 113 / 0.8);
}

.text-red-400\/85 {
  color: rgb(248 113 113 / 0.85);
}

.text-red-400\/90 {
  color: rgb(248 113 113 / 0.9);
}

.text-red-400\/95 {
  color: rgb(248 113 113 / 0.95);
}

.text-red-50 {
  --tw-text-opacity: 1;
  color: rgb(254 242 242 / var(--tw-text-opacity, 1));
}

.text-red-50\/0 {
  color: rgb(254 242 242 / 0);
}

.text-red-50\/10 {
  color: rgb(254 242 242 / 0.1);
}

.text-red-50\/100 {
  color: rgb(254 242 242 / 1);
}

.text-red-50\/15 {
  color: rgb(254 242 242 / 0.15);
}

.text-red-50\/20 {
  color: rgb(254 242 242 / 0.2);
}

.text-red-50\/25 {
  color: rgb(254 242 242 / 0.25);
}

.text-red-50\/30 {
  color: rgb(254 242 242 / 0.3);
}

.text-red-50\/35 {
  color: rgb(254 242 242 / 0.35);
}

.text-red-50\/40 {
  color: rgb(254 242 242 / 0.4);
}

.text-red-50\/45 {
  color: rgb(254 242 242 / 0.45);
}

.text-red-50\/5 {
  color: rgb(254 242 242 / 0.05);
}

.text-red-50\/50 {
  color: rgb(254 242 242 / 0.5);
}

.text-red-50\/55 {
  color: rgb(254 242 242 / 0.55);
}

.text-red-50\/60 {
  color: rgb(254 242 242 / 0.6);
}

.text-red-50\/65 {
  color: rgb(254 242 242 / 0.65);
}

.text-red-50\/70 {
  color: rgb(254 242 242 / 0.7);
}

.text-red-50\/75 {
  color: rgb(254 242 242 / 0.75);
}

.text-red-50\/80 {
  color: rgb(254 242 242 / 0.8);
}

.text-red-50\/85 {
  color: rgb(254 242 242 / 0.85);
}

.text-red-50\/90 {
  color: rgb(254 242 242 / 0.9);
}

.text-red-50\/95 {
  color: rgb(254 242 242 / 0.95);
}

.text-red-500 {
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}

.text-red-500\/0 {
  color: rgb(239 68 68 / 0);
}

.text-red-500\/10 {
  color: rgb(239 68 68 / 0.1);
}

.text-red-500\/100 {
  color: rgb(239 68 68 / 1);
}

.text-red-500\/15 {
  color: rgb(239 68 68 / 0.15);
}

.text-red-500\/20 {
  color: rgb(239 68 68 / 0.2);
}

.text-red-500\/25 {
  color: rgb(239 68 68 / 0.25);
}

.text-red-500\/30 {
  color: rgb(239 68 68 / 0.3);
}

.text-red-500\/35 {
  color: rgb(239 68 68 / 0.35);
}

.text-red-500\/40 {
  color: rgb(239 68 68 / 0.4);
}

.text-red-500\/45 {
  color: rgb(239 68 68 / 0.45);
}

.text-red-500\/5 {
  color: rgb(239 68 68 / 0.05);
}

.text-red-500\/50 {
  color: rgb(239 68 68 / 0.5);
}

.text-red-500\/55 {
  color: rgb(239 68 68 / 0.55);
}

.text-red-500\/60 {
  color: rgb(239 68 68 / 0.6);
}

.text-red-500\/65 {
  color: rgb(239 68 68 / 0.65);
}

.text-red-500\/70 {
  color: rgb(239 68 68 / 0.7);
}

.text-red-500\/75 {
  color: rgb(239 68 68 / 0.75);
}

.text-red-500\/80 {
  color: rgb(239 68 68 / 0.8);
}

.text-red-500\/85 {
  color: rgb(239 68 68 / 0.85);
}

.text-red-500\/90 {
  color: rgb(239 68 68 / 0.9);
}

.text-red-500\/95 {
  color: rgb(239 68 68 / 0.95);
}

.text-red-600 {
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}

.text-red-600\/0 {
  color: rgb(220 38 38 / 0);
}

.text-red-600\/10 {
  color: rgb(220 38 38 / 0.1);
}

.text-red-600\/100 {
  color: rgb(220 38 38 / 1);
}

.text-red-600\/15 {
  color: rgb(220 38 38 / 0.15);
}

.text-red-600\/20 {
  color: rgb(220 38 38 / 0.2);
}

.text-red-600\/25 {
  color: rgb(220 38 38 / 0.25);
}

.text-red-600\/30 {
  color: rgb(220 38 38 / 0.3);
}

.text-red-600\/35 {
  color: rgb(220 38 38 / 0.35);
}

.text-red-600\/40 {
  color: rgb(220 38 38 / 0.4);
}

.text-red-600\/45 {
  color: rgb(220 38 38 / 0.45);
}

.text-red-600\/5 {
  color: rgb(220 38 38 / 0.05);
}

.text-red-600\/50 {
  color: rgb(220 38 38 / 0.5);
}

.text-red-600\/55 {
  color: rgb(220 38 38 / 0.55);
}

.text-red-600\/60 {
  color: rgb(220 38 38 / 0.6);
}

.text-red-600\/65 {
  color: rgb(220 38 38 / 0.65);
}

.text-red-600\/70 {
  color: rgb(220 38 38 / 0.7);
}

.text-red-600\/75 {
  color: rgb(220 38 38 / 0.75);
}

.text-red-600\/80 {
  color: rgb(220 38 38 / 0.8);
}

.text-red-600\/85 {
  color: rgb(220 38 38 / 0.85);
}

.text-red-600\/90 {
  color: rgb(220 38 38 / 0.9);
}

.text-red-600\/95 {
  color: rgb(220 38 38 / 0.95);
}

.text-red-700 {
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}

.text-red-700\/0 {
  color: rgb(185 28 28 / 0);
}

.text-red-700\/10 {
  color: rgb(185 28 28 / 0.1);
}

.text-red-700\/100 {
  color: rgb(185 28 28 / 1);
}

.text-red-700\/15 {
  color: rgb(185 28 28 / 0.15);
}

.text-red-700\/20 {
  color: rgb(185 28 28 / 0.2);
}

.text-red-700\/25 {
  color: rgb(185 28 28 / 0.25);
}

.text-red-700\/30 {
  color: rgb(185 28 28 / 0.3);
}

.text-red-700\/35 {
  color: rgb(185 28 28 / 0.35);
}

.text-red-700\/40 {
  color: rgb(185 28 28 / 0.4);
}

.text-red-700\/45 {
  color: rgb(185 28 28 / 0.45);
}

.text-red-700\/5 {
  color: rgb(185 28 28 / 0.05);
}

.text-red-700\/50 {
  color: rgb(185 28 28 / 0.5);
}

.text-red-700\/55 {
  color: rgb(185 28 28 / 0.55);
}

.text-red-700\/60 {
  color: rgb(185 28 28 / 0.6);
}

.text-red-700\/65 {
  color: rgb(185 28 28 / 0.65);
}

.text-red-700\/70 {
  color: rgb(185 28 28 / 0.7);
}

.text-red-700\/75 {
  color: rgb(185 28 28 / 0.75);
}

.text-red-700\/80 {
  color: rgb(185 28 28 / 0.8);
}

.text-red-700\/85 {
  color: rgb(185 28 28 / 0.85);
}

.text-red-700\/90 {
  color: rgb(185 28 28 / 0.9);
}

.text-red-700\/95 {
  color: rgb(185 28 28 / 0.95);
}

.text-red-800 {
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / var(--tw-text-opacity, 1));
}

.text-red-800\/0 {
  color: rgb(153 27 27 / 0);
}

.text-red-800\/10 {
  color: rgb(153 27 27 / 0.1);
}

.text-red-800\/100 {
  color: rgb(153 27 27 / 1);
}

.text-red-800\/15 {
  color: rgb(153 27 27 / 0.15);
}

.text-red-800\/20 {
  color: rgb(153 27 27 / 0.2);
}

.text-red-800\/25 {
  color: rgb(153 27 27 / 0.25);
}

.text-red-800\/30 {
  color: rgb(153 27 27 / 0.3);
}

.text-red-800\/35 {
  color: rgb(153 27 27 / 0.35);
}

.text-red-800\/40 {
  color: rgb(153 27 27 / 0.4);
}

.text-red-800\/45 {
  color: rgb(153 27 27 / 0.45);
}

.text-red-800\/5 {
  color: rgb(153 27 27 / 0.05);
}

.text-red-800\/50 {
  color: rgb(153 27 27 / 0.5);
}

.text-red-800\/55 {
  color: rgb(153 27 27 / 0.55);
}

.text-red-800\/60 {
  color: rgb(153 27 27 / 0.6);
}

.text-red-800\/65 {
  color: rgb(153 27 27 / 0.65);
}

.text-red-800\/70 {
  color: rgb(153 27 27 / 0.7);
}

.text-red-800\/75 {
  color: rgb(153 27 27 / 0.75);
}

.text-red-800\/80 {
  color: rgb(153 27 27 / 0.8);
}

.text-red-800\/85 {
  color: rgb(153 27 27 / 0.85);
}

.text-red-800\/90 {
  color: rgb(153 27 27 / 0.9);
}

.text-red-800\/95 {
  color: rgb(153 27 27 / 0.95);
}

.text-red-900 {
  --tw-text-opacity: 1;
  color: rgb(127 29 29 / var(--tw-text-opacity, 1));
}

.text-red-900\/0 {
  color: rgb(127 29 29 / 0);
}

.text-red-900\/10 {
  color: rgb(127 29 29 / 0.1);
}

.text-red-900\/100 {
  color: rgb(127 29 29 / 1);
}

.text-red-900\/15 {
  color: rgb(127 29 29 / 0.15);
}

.text-red-900\/20 {
  color: rgb(127 29 29 / 0.2);
}

.text-red-900\/25 {
  color: rgb(127 29 29 / 0.25);
}

.text-red-900\/30 {
  color: rgb(127 29 29 / 0.3);
}

.text-red-900\/35 {
  color: rgb(127 29 29 / 0.35);
}

.text-red-900\/40 {
  color: rgb(127 29 29 / 0.4);
}

.text-red-900\/45 {
  color: rgb(127 29 29 / 0.45);
}

.text-red-900\/5 {
  color: rgb(127 29 29 / 0.05);
}

.text-red-900\/50 {
  color: rgb(127 29 29 / 0.5);
}

.text-red-900\/55 {
  color: rgb(127 29 29 / 0.55);
}

.text-red-900\/60 {
  color: rgb(127 29 29 / 0.6);
}

.text-red-900\/65 {
  color: rgb(127 29 29 / 0.65);
}

.text-red-900\/70 {
  color: rgb(127 29 29 / 0.7);
}

.text-red-900\/75 {
  color: rgb(127 29 29 / 0.75);
}

.text-red-900\/80 {
  color: rgb(127 29 29 / 0.8);
}

.text-red-900\/85 {
  color: rgb(127 29 29 / 0.85);
}

.text-red-900\/90 {
  color: rgb(127 29 29 / 0.9);
}

.text-red-900\/95 {
  color: rgb(127 29 29 / 0.95);
}

.text-red-950 {
  --tw-text-opacity: 1;
  color: rgb(69 10 10 / var(--tw-text-opacity, 1));
}

.text-red-950\/0 {
  color: rgb(69 10 10 / 0);
}

.text-red-950\/10 {
  color: rgb(69 10 10 / 0.1);
}

.text-red-950\/100 {
  color: rgb(69 10 10 / 1);
}

.text-red-950\/15 {
  color: rgb(69 10 10 / 0.15);
}

.text-red-950\/20 {
  color: rgb(69 10 10 / 0.2);
}

.text-red-950\/25 {
  color: rgb(69 10 10 / 0.25);
}

.text-red-950\/30 {
  color: rgb(69 10 10 / 0.3);
}

.text-red-950\/35 {
  color: rgb(69 10 10 / 0.35);
}

.text-red-950\/40 {
  color: rgb(69 10 10 / 0.4);
}

.text-red-950\/45 {
  color: rgb(69 10 10 / 0.45);
}

.text-red-950\/5 {
  color: rgb(69 10 10 / 0.05);
}

.text-red-950\/50 {
  color: rgb(69 10 10 / 0.5);
}

.text-red-950\/55 {
  color: rgb(69 10 10 / 0.55);
}

.text-red-950\/60 {
  color: rgb(69 10 10 / 0.6);
}

.text-red-950\/65 {
  color: rgb(69 10 10 / 0.65);
}

.text-red-950\/70 {
  color: rgb(69 10 10 / 0.7);
}

.text-red-950\/75 {
  color: rgb(69 10 10 / 0.75);
}

.text-red-950\/80 {
  color: rgb(69 10 10 / 0.8);
}

.text-red-950\/85 {
  color: rgb(69 10 10 / 0.85);
}

.text-red-950\/90 {
  color: rgb(69 10 10 / 0.9);
}

.text-red-950\/95 {
  color: rgb(69 10 10 / 0.95);
}

.text-transparent {
  color: transparent;
}

.text-transparent\/0 {
  color: rgb(0 0 0 / 0);
}

.text-transparent\/10 {
  color: rgb(0 0 0 / 0.1);
}

.text-transparent\/100 {
  color: rgb(0 0 0 / 1);
}

.text-transparent\/15 {
  color: rgb(0 0 0 / 0.15);
}

.text-transparent\/20 {
  color: rgb(0 0 0 / 0.2);
}

.text-transparent\/25 {
  color: rgb(0 0 0 / 0.25);
}

.text-transparent\/30 {
  color: rgb(0 0 0 / 0.3);
}

.text-transparent\/35 {
  color: rgb(0 0 0 / 0.35);
}

.text-transparent\/40 {
  color: rgb(0 0 0 / 0.4);
}

.text-transparent\/45 {
  color: rgb(0 0 0 / 0.45);
}

.text-transparent\/5 {
  color: rgb(0 0 0 / 0.05);
}

.text-transparent\/50 {
  color: rgb(0 0 0 / 0.5);
}

.text-transparent\/55 {
  color: rgb(0 0 0 / 0.55);
}

.text-transparent\/60 {
  color: rgb(0 0 0 / 0.6);
}

.text-transparent\/65 {
  color: rgb(0 0 0 / 0.65);
}

.text-transparent\/70 {
  color: rgb(0 0 0 / 0.7);
}

.text-transparent\/75 {
  color: rgb(0 0 0 / 0.75);
}

.text-transparent\/80 {
  color: rgb(0 0 0 / 0.8);
}

.text-transparent\/85 {
  color: rgb(0 0 0 / 0.85);
}

.text-transparent\/90 {
  color: rgb(0 0 0 / 0.9);
}

.text-transparent\/95 {
  color: rgb(0 0 0 / 0.95);
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.text-white\/0 {
  color: rgb(255 255 255 / 0);
}

.text-white\/10 {
  color: rgb(255 255 255 / 0.1);
}

.text-white\/100 {
  color: rgb(255 255 255 / 1);
}

.text-white\/15 {
  color: rgb(255 255 255 / 0.15);
}

.text-white\/20 {
  color: rgb(255 255 255 / 0.2);
}

.text-white\/25 {
  color: rgb(255 255 255 / 0.25);
}

.text-white\/30 {
  color: rgb(255 255 255 / 0.3);
}

.text-white\/35 {
  color: rgb(255 255 255 / 0.35);
}

.text-white\/40 {
  color: rgb(255 255 255 / 0.4);
}

.text-white\/45 {
  color: rgb(255 255 255 / 0.45);
}

.text-white\/5 {
  color: rgb(255 255 255 / 0.05);
}

.text-white\/50 {
  color: rgb(255 255 255 / 0.5);
}

.text-white\/55 {
  color: rgb(255 255 255 / 0.55);
}

.text-white\/60 {
  color: rgb(255 255 255 / 0.6);
}

.text-white\/65 {
  color: rgb(255 255 255 / 0.65);
}

.text-white\/70 {
  color: rgb(255 255 255 / 0.7);
}

.text-white\/75 {
  color: rgb(255 255 255 / 0.75);
}

.text-white\/80 {
  color: rgb(255 255 255 / 0.8);
}

.text-white\/85 {
  color: rgb(255 255 255 / 0.85);
}

.text-white\/90 {
  color: rgb(255 255 255 / 0.9);
}

.text-white\/95 {
  color: rgb(255 255 255 / 0.95);
}

.text-opacity-0 {
  --tw-text-opacity: 0;
}

.text-opacity-10 {
  --tw-text-opacity: 0.1;
}

.text-opacity-100 {
  --tw-text-opacity: 1;
}

.text-opacity-15 {
  --tw-text-opacity: 0.15;
}

.text-opacity-20 {
  --tw-text-opacity: 0.2;
}

.text-opacity-25 {
  --tw-text-opacity: 0.25;
}

.text-opacity-30 {
  --tw-text-opacity: 0.3;
}

.text-opacity-35 {
  --tw-text-opacity: 0.35;
}

.text-opacity-40 {
  --tw-text-opacity: 0.4;
}

.text-opacity-45 {
  --tw-text-opacity: 0.45;
}

.text-opacity-5 {
  --tw-text-opacity: 0.05;
}

.text-opacity-50 {
  --tw-text-opacity: 0.5;
}

.text-opacity-55 {
  --tw-text-opacity: 0.55;
}

.text-opacity-60 {
  --tw-text-opacity: 0.6;
}

.text-opacity-65 {
  --tw-text-opacity: 0.65;
}

.text-opacity-70 {
  --tw-text-opacity: 0.7;
}

.text-opacity-75 {
  --tw-text-opacity: 0.75;
}

.text-opacity-80 {
  --tw-text-opacity: 0.8;
}

.text-opacity-85 {
  --tw-text-opacity: 0.85;
}

.text-opacity-90 {
  --tw-text-opacity: 0.9;
}

.text-opacity-95 {
  --tw-text-opacity: 0.95;
}

.underline {
  text-decoration-line: underline;
}

.overline {
  text-decoration-line: overline;
}

.line-through {
  text-decoration-line: line-through;
}

.no-underline {
  text-decoration-line: none;
}

.decoration-black {
  text-decoration-color: #000;
}

.decoration-black\/0 {
  text-decoration-color: rgb(0 0 0 / 0);
}

.decoration-black\/10 {
  text-decoration-color: rgb(0 0 0 / 0.1);
}

.decoration-black\/100 {
  text-decoration-color: rgb(0 0 0 / 1);
}

.decoration-black\/15 {
  text-decoration-color: rgb(0 0 0 / 0.15);
}

.decoration-black\/20 {
  text-decoration-color: rgb(0 0 0 / 0.2);
}

.decoration-black\/25 {
  text-decoration-color: rgb(0 0 0 / 0.25);
}

.decoration-black\/30 {
  text-decoration-color: rgb(0 0 0 / 0.3);
}

.decoration-black\/35 {
  text-decoration-color: rgb(0 0 0 / 0.35);
}

.decoration-black\/40 {
  text-decoration-color: rgb(0 0 0 / 0.4);
}

.decoration-black\/45 {
  text-decoration-color: rgb(0 0 0 / 0.45);
}

.decoration-black\/5 {
  text-decoration-color: rgb(0 0 0 / 0.05);
}

.decoration-black\/50 {
  text-decoration-color: rgb(0 0 0 / 0.5);
}

.decoration-black\/55 {
  text-decoration-color: rgb(0 0 0 / 0.55);
}

.decoration-black\/60 {
  text-decoration-color: rgb(0 0 0 / 0.6);
}

.decoration-black\/65 {
  text-decoration-color: rgb(0 0 0 / 0.65);
}

.decoration-black\/70 {
  text-decoration-color: rgb(0 0 0 / 0.7);
}

.decoration-black\/75 {
  text-decoration-color: rgb(0 0 0 / 0.75);
}

.decoration-black\/80 {
  text-decoration-color: rgb(0 0 0 / 0.8);
}

.decoration-black\/85 {
  text-decoration-color: rgb(0 0 0 / 0.85);
}

.decoration-black\/90 {
  text-decoration-color: rgb(0 0 0 / 0.9);
}

.decoration-black\/95 {
  text-decoration-color: rgb(0 0 0 / 0.95);
}

.decoration-blue-100 {
  text-decoration-color: #dbeafe;
}

.decoration-blue-100\/0 {
  text-decoration-color: rgb(219 234 254 / 0);
}

.decoration-blue-100\/10 {
  text-decoration-color: rgb(219 234 254 / 0.1);
}

.decoration-blue-100\/100 {
  text-decoration-color: rgb(219 234 254 / 1);
}

.decoration-blue-100\/15 {
  text-decoration-color: rgb(219 234 254 / 0.15);
}

.decoration-blue-100\/20 {
  text-decoration-color: rgb(219 234 254 / 0.2);
}

.decoration-blue-100\/25 {
  text-decoration-color: rgb(219 234 254 / 0.25);
}

.decoration-blue-100\/30 {
  text-decoration-color: rgb(219 234 254 / 0.3);
}

.decoration-blue-100\/35 {
  text-decoration-color: rgb(219 234 254 / 0.35);
}

.decoration-blue-100\/40 {
  text-decoration-color: rgb(219 234 254 / 0.4);
}

.decoration-blue-100\/45 {
  text-decoration-color: rgb(219 234 254 / 0.45);
}

.decoration-blue-100\/5 {
  text-decoration-color: rgb(219 234 254 / 0.05);
}

.decoration-blue-100\/50 {
  text-decoration-color: rgb(219 234 254 / 0.5);
}

.decoration-blue-100\/55 {
  text-decoration-color: rgb(219 234 254 / 0.55);
}

.decoration-blue-100\/60 {
  text-decoration-color: rgb(219 234 254 / 0.6);
}

.decoration-blue-100\/65 {
  text-decoration-color: rgb(219 234 254 / 0.65);
}

.decoration-blue-100\/70 {
  text-decoration-color: rgb(219 234 254 / 0.7);
}

.decoration-blue-100\/75 {
  text-decoration-color: rgb(219 234 254 / 0.75);
}

.decoration-blue-100\/80 {
  text-decoration-color: rgb(219 234 254 / 0.8);
}

.decoration-blue-100\/85 {
  text-decoration-color: rgb(219 234 254 / 0.85);
}

.decoration-blue-100\/90 {
  text-decoration-color: rgb(219 234 254 / 0.9);
}

.decoration-blue-100\/95 {
  text-decoration-color: rgb(219 234 254 / 0.95);
}

.decoration-blue-200 {
  text-decoration-color: #bfdbfe;
}

.decoration-blue-200\/0 {
  text-decoration-color: rgb(191 219 254 / 0);
}

.decoration-blue-200\/10 {
  text-decoration-color: rgb(191 219 254 / 0.1);
}

.decoration-blue-200\/100 {
  text-decoration-color: rgb(191 219 254 / 1);
}

.decoration-blue-200\/15 {
  text-decoration-color: rgb(191 219 254 / 0.15);
}

.decoration-blue-200\/20 {
  text-decoration-color: rgb(191 219 254 / 0.2);
}

.decoration-blue-200\/25 {
  text-decoration-color: rgb(191 219 254 / 0.25);
}

.decoration-blue-200\/30 {
  text-decoration-color: rgb(191 219 254 / 0.3);
}

.decoration-blue-200\/35 {
  text-decoration-color: rgb(191 219 254 / 0.35);
}

.decoration-blue-200\/40 {
  text-decoration-color: rgb(191 219 254 / 0.4);
}

.decoration-blue-200\/45 {
  text-decoration-color: rgb(191 219 254 / 0.45);
}

.decoration-blue-200\/5 {
  text-decoration-color: rgb(191 219 254 / 0.05);
}

.decoration-blue-200\/50 {
  text-decoration-color: rgb(191 219 254 / 0.5);
}

.decoration-blue-200\/55 {
  text-decoration-color: rgb(191 219 254 / 0.55);
}

.decoration-blue-200\/60 {
  text-decoration-color: rgb(191 219 254 / 0.6);
}

.decoration-blue-200\/65 {
  text-decoration-color: rgb(191 219 254 / 0.65);
}

.decoration-blue-200\/70 {
  text-decoration-color: rgb(191 219 254 / 0.7);
}

.decoration-blue-200\/75 {
  text-decoration-color: rgb(191 219 254 / 0.75);
}

.decoration-blue-200\/80 {
  text-decoration-color: rgb(191 219 254 / 0.8);
}

.decoration-blue-200\/85 {
  text-decoration-color: rgb(191 219 254 / 0.85);
}

.decoration-blue-200\/90 {
  text-decoration-color: rgb(191 219 254 / 0.9);
}

.decoration-blue-200\/95 {
  text-decoration-color: rgb(191 219 254 / 0.95);
}

.decoration-blue-300 {
  text-decoration-color: #93c5fd;
}

.decoration-blue-300\/0 {
  text-decoration-color: rgb(147 197 253 / 0);
}

.decoration-blue-300\/10 {
  text-decoration-color: rgb(147 197 253 / 0.1);
}

.decoration-blue-300\/100 {
  text-decoration-color: rgb(147 197 253 / 1);
}

.decoration-blue-300\/15 {
  text-decoration-color: rgb(147 197 253 / 0.15);
}

.decoration-blue-300\/20 {
  text-decoration-color: rgb(147 197 253 / 0.2);
}

.decoration-blue-300\/25 {
  text-decoration-color: rgb(147 197 253 / 0.25);
}

.decoration-blue-300\/30 {
  text-decoration-color: rgb(147 197 253 / 0.3);
}

.decoration-blue-300\/35 {
  text-decoration-color: rgb(147 197 253 / 0.35);
}

.decoration-blue-300\/40 {
  text-decoration-color: rgb(147 197 253 / 0.4);
}

.decoration-blue-300\/45 {
  text-decoration-color: rgb(147 197 253 / 0.45);
}

.decoration-blue-300\/5 {
  text-decoration-color: rgb(147 197 253 / 0.05);
}

.decoration-blue-300\/50 {
  text-decoration-color: rgb(147 197 253 / 0.5);
}

.decoration-blue-300\/55 {
  text-decoration-color: rgb(147 197 253 / 0.55);
}

.decoration-blue-300\/60 {
  text-decoration-color: rgb(147 197 253 / 0.6);
}

.decoration-blue-300\/65 {
  text-decoration-color: rgb(147 197 253 / 0.65);
}

.decoration-blue-300\/70 {
  text-decoration-color: rgb(147 197 253 / 0.7);
}

.decoration-blue-300\/75 {
  text-decoration-color: rgb(147 197 253 / 0.75);
}

.decoration-blue-300\/80 {
  text-decoration-color: rgb(147 197 253 / 0.8);
}

.decoration-blue-300\/85 {
  text-decoration-color: rgb(147 197 253 / 0.85);
}

.decoration-blue-300\/90 {
  text-decoration-color: rgb(147 197 253 / 0.9);
}

.decoration-blue-300\/95 {
  text-decoration-color: rgb(147 197 253 / 0.95);
}

.decoration-blue-400 {
  text-decoration-color: #60a5fa;
}

.decoration-blue-400\/0 {
  text-decoration-color: rgb(96 165 250 / 0);
}

.decoration-blue-400\/10 {
  text-decoration-color: rgb(96 165 250 / 0.1);
}

.decoration-blue-400\/100 {
  text-decoration-color: rgb(96 165 250 / 1);
}

.decoration-blue-400\/15 {
  text-decoration-color: rgb(96 165 250 / 0.15);
}

.decoration-blue-400\/20 {
  text-decoration-color: rgb(96 165 250 / 0.2);
}

.decoration-blue-400\/25 {
  text-decoration-color: rgb(96 165 250 / 0.25);
}

.decoration-blue-400\/30 {
  text-decoration-color: rgb(96 165 250 / 0.3);
}

.decoration-blue-400\/35 {
  text-decoration-color: rgb(96 165 250 / 0.35);
}

.decoration-blue-400\/40 {
  text-decoration-color: rgb(96 165 250 / 0.4);
}

.decoration-blue-400\/45 {
  text-decoration-color: rgb(96 165 250 / 0.45);
}

.decoration-blue-400\/5 {
  text-decoration-color: rgb(96 165 250 / 0.05);
}

.decoration-blue-400\/50 {
  text-decoration-color: rgb(96 165 250 / 0.5);
}

.decoration-blue-400\/55 {
  text-decoration-color: rgb(96 165 250 / 0.55);
}

.decoration-blue-400\/60 {
  text-decoration-color: rgb(96 165 250 / 0.6);
}

.decoration-blue-400\/65 {
  text-decoration-color: rgb(96 165 250 / 0.65);
}

.decoration-blue-400\/70 {
  text-decoration-color: rgb(96 165 250 / 0.7);
}

.decoration-blue-400\/75 {
  text-decoration-color: rgb(96 165 250 / 0.75);
}

.decoration-blue-400\/80 {
  text-decoration-color: rgb(96 165 250 / 0.8);
}

.decoration-blue-400\/85 {
  text-decoration-color: rgb(96 165 250 / 0.85);
}

.decoration-blue-400\/90 {
  text-decoration-color: rgb(96 165 250 / 0.9);
}

.decoration-blue-400\/95 {
  text-decoration-color: rgb(96 165 250 / 0.95);
}

.decoration-blue-50 {
  text-decoration-color: #eff6ff;
}

.decoration-blue-50\/0 {
  text-decoration-color: rgb(239 246 255 / 0);
}

.decoration-blue-50\/10 {
  text-decoration-color: rgb(239 246 255 / 0.1);
}

.decoration-blue-50\/100 {
  text-decoration-color: rgb(239 246 255 / 1);
}

.decoration-blue-50\/15 {
  text-decoration-color: rgb(239 246 255 / 0.15);
}

.decoration-blue-50\/20 {
  text-decoration-color: rgb(239 246 255 / 0.2);
}

.decoration-blue-50\/25 {
  text-decoration-color: rgb(239 246 255 / 0.25);
}

.decoration-blue-50\/30 {
  text-decoration-color: rgb(239 246 255 / 0.3);
}

.decoration-blue-50\/35 {
  text-decoration-color: rgb(239 246 255 / 0.35);
}

.decoration-blue-50\/40 {
  text-decoration-color: rgb(239 246 255 / 0.4);
}

.decoration-blue-50\/45 {
  text-decoration-color: rgb(239 246 255 / 0.45);
}

.decoration-blue-50\/5 {
  text-decoration-color: rgb(239 246 255 / 0.05);
}

.decoration-blue-50\/50 {
  text-decoration-color: rgb(239 246 255 / 0.5);
}

.decoration-blue-50\/55 {
  text-decoration-color: rgb(239 246 255 / 0.55);
}

.decoration-blue-50\/60 {
  text-decoration-color: rgb(239 246 255 / 0.6);
}

.decoration-blue-50\/65 {
  text-decoration-color: rgb(239 246 255 / 0.65);
}

.decoration-blue-50\/70 {
  text-decoration-color: rgb(239 246 255 / 0.7);
}

.decoration-blue-50\/75 {
  text-decoration-color: rgb(239 246 255 / 0.75);
}

.decoration-blue-50\/80 {
  text-decoration-color: rgb(239 246 255 / 0.8);
}

.decoration-blue-50\/85 {
  text-decoration-color: rgb(239 246 255 / 0.85);
}

.decoration-blue-50\/90 {
  text-decoration-color: rgb(239 246 255 / 0.9);
}

.decoration-blue-50\/95 {
  text-decoration-color: rgb(239 246 255 / 0.95);
}

.decoration-blue-500 {
  text-decoration-color: #3b82f6;
}

.decoration-blue-500\/0 {
  text-decoration-color: rgb(59 130 246 / 0);
}

.decoration-blue-500\/10 {
  text-decoration-color: rgb(59 130 246 / 0.1);
}

.decoration-blue-500\/100 {
  text-decoration-color: rgb(59 130 246 / 1);
}

.decoration-blue-500\/15 {
  text-decoration-color: rgb(59 130 246 / 0.15);
}

.decoration-blue-500\/20 {
  text-decoration-color: rgb(59 130 246 / 0.2);
}

.decoration-blue-500\/25 {
  text-decoration-color: rgb(59 130 246 / 0.25);
}

.decoration-blue-500\/30 {
  text-decoration-color: rgb(59 130 246 / 0.3);
}

.decoration-blue-500\/35 {
  text-decoration-color: rgb(59 130 246 / 0.35);
}

.decoration-blue-500\/40 {
  text-decoration-color: rgb(59 130 246 / 0.4);
}

.decoration-blue-500\/45 {
  text-decoration-color: rgb(59 130 246 / 0.45);
}

.decoration-blue-500\/5 {
  text-decoration-color: rgb(59 130 246 / 0.05);
}

.decoration-blue-500\/50 {
  text-decoration-color: rgb(59 130 246 / 0.5);
}

.decoration-blue-500\/55 {
  text-decoration-color: rgb(59 130 246 / 0.55);
}

.decoration-blue-500\/60 {
  text-decoration-color: rgb(59 130 246 / 0.6);
}

.decoration-blue-500\/65 {
  text-decoration-color: rgb(59 130 246 / 0.65);
}

.decoration-blue-500\/70 {
  text-decoration-color: rgb(59 130 246 / 0.7);
}

.decoration-blue-500\/75 {
  text-decoration-color: rgb(59 130 246 / 0.75);
}

.decoration-blue-500\/80 {
  text-decoration-color: rgb(59 130 246 / 0.8);
}

.decoration-blue-500\/85 {
  text-decoration-color: rgb(59 130 246 / 0.85);
}

.decoration-blue-500\/90 {
  text-decoration-color: rgb(59 130 246 / 0.9);
}

.decoration-blue-500\/95 {
  text-decoration-color: rgb(59 130 246 / 0.95);
}

.decoration-blue-600 {
  text-decoration-color: #2563eb;
}

.decoration-blue-600\/0 {
  text-decoration-color: rgb(37 99 235 / 0);
}

.decoration-blue-600\/10 {
  text-decoration-color: rgb(37 99 235 / 0.1);
}

.decoration-blue-600\/100 {
  text-decoration-color: rgb(37 99 235 / 1);
}

.decoration-blue-600\/15 {
  text-decoration-color: rgb(37 99 235 / 0.15);
}

.decoration-blue-600\/20 {
  text-decoration-color: rgb(37 99 235 / 0.2);
}

.decoration-blue-600\/25 {
  text-decoration-color: rgb(37 99 235 / 0.25);
}

.decoration-blue-600\/30 {
  text-decoration-color: rgb(37 99 235 / 0.3);
}

.decoration-blue-600\/35 {
  text-decoration-color: rgb(37 99 235 / 0.35);
}

.decoration-blue-600\/40 {
  text-decoration-color: rgb(37 99 235 / 0.4);
}

.decoration-blue-600\/45 {
  text-decoration-color: rgb(37 99 235 / 0.45);
}

.decoration-blue-600\/5 {
  text-decoration-color: rgb(37 99 235 / 0.05);
}

.decoration-blue-600\/50 {
  text-decoration-color: rgb(37 99 235 / 0.5);
}

.decoration-blue-600\/55 {
  text-decoration-color: rgb(37 99 235 / 0.55);
}

.decoration-blue-600\/60 {
  text-decoration-color: rgb(37 99 235 / 0.6);
}

.decoration-blue-600\/65 {
  text-decoration-color: rgb(37 99 235 / 0.65);
}

.decoration-blue-600\/70 {
  text-decoration-color: rgb(37 99 235 / 0.7);
}

.decoration-blue-600\/75 {
  text-decoration-color: rgb(37 99 235 / 0.75);
}

.decoration-blue-600\/80 {
  text-decoration-color: rgb(37 99 235 / 0.8);
}

.decoration-blue-600\/85 {
  text-decoration-color: rgb(37 99 235 / 0.85);
}

.decoration-blue-600\/90 {
  text-decoration-color: rgb(37 99 235 / 0.9);
}

.decoration-blue-600\/95 {
  text-decoration-color: rgb(37 99 235 / 0.95);
}

.decoration-blue-700 {
  text-decoration-color: #1d4ed8;
}

.decoration-blue-700\/0 {
  text-decoration-color: rgb(29 78 216 / 0);
}

.decoration-blue-700\/10 {
  text-decoration-color: rgb(29 78 216 / 0.1);
}

.decoration-blue-700\/100 {
  text-decoration-color: rgb(29 78 216 / 1);
}

.decoration-blue-700\/15 {
  text-decoration-color: rgb(29 78 216 / 0.15);
}

.decoration-blue-700\/20 {
  text-decoration-color: rgb(29 78 216 / 0.2);
}

.decoration-blue-700\/25 {
  text-decoration-color: rgb(29 78 216 / 0.25);
}

.decoration-blue-700\/30 {
  text-decoration-color: rgb(29 78 216 / 0.3);
}

.decoration-blue-700\/35 {
  text-decoration-color: rgb(29 78 216 / 0.35);
}

.decoration-blue-700\/40 {
  text-decoration-color: rgb(29 78 216 / 0.4);
}

.decoration-blue-700\/45 {
  text-decoration-color: rgb(29 78 216 / 0.45);
}

.decoration-blue-700\/5 {
  text-decoration-color: rgb(29 78 216 / 0.05);
}

.decoration-blue-700\/50 {
  text-decoration-color: rgb(29 78 216 / 0.5);
}

.decoration-blue-700\/55 {
  text-decoration-color: rgb(29 78 216 / 0.55);
}

.decoration-blue-700\/60 {
  text-decoration-color: rgb(29 78 216 / 0.6);
}

.decoration-blue-700\/65 {
  text-decoration-color: rgb(29 78 216 / 0.65);
}

.decoration-blue-700\/70 {
  text-decoration-color: rgb(29 78 216 / 0.7);
}

.decoration-blue-700\/75 {
  text-decoration-color: rgb(29 78 216 / 0.75);
}

.decoration-blue-700\/80 {
  text-decoration-color: rgb(29 78 216 / 0.8);
}

.decoration-blue-700\/85 {
  text-decoration-color: rgb(29 78 216 / 0.85);
}

.decoration-blue-700\/90 {
  text-decoration-color: rgb(29 78 216 / 0.9);
}

.decoration-blue-700\/95 {
  text-decoration-color: rgb(29 78 216 / 0.95);
}

.decoration-blue-800 {
  text-decoration-color: #1e40af;
}

.decoration-blue-800\/0 {
  text-decoration-color: rgb(30 64 175 / 0);
}

.decoration-blue-800\/10 {
  text-decoration-color: rgb(30 64 175 / 0.1);
}

.decoration-blue-800\/100 {
  text-decoration-color: rgb(30 64 175 / 1);
}

.decoration-blue-800\/15 {
  text-decoration-color: rgb(30 64 175 / 0.15);
}

.decoration-blue-800\/20 {
  text-decoration-color: rgb(30 64 175 / 0.2);
}

.decoration-blue-800\/25 {
  text-decoration-color: rgb(30 64 175 / 0.25);
}

.decoration-blue-800\/30 {
  text-decoration-color: rgb(30 64 175 / 0.3);
}

.decoration-blue-800\/35 {
  text-decoration-color: rgb(30 64 175 / 0.35);
}

.decoration-blue-800\/40 {
  text-decoration-color: rgb(30 64 175 / 0.4);
}

.decoration-blue-800\/45 {
  text-decoration-color: rgb(30 64 175 / 0.45);
}

.decoration-blue-800\/5 {
  text-decoration-color: rgb(30 64 175 / 0.05);
}

.decoration-blue-800\/50 {
  text-decoration-color: rgb(30 64 175 / 0.5);
}

.decoration-blue-800\/55 {
  text-decoration-color: rgb(30 64 175 / 0.55);
}

.decoration-blue-800\/60 {
  text-decoration-color: rgb(30 64 175 / 0.6);
}

.decoration-blue-800\/65 {
  text-decoration-color: rgb(30 64 175 / 0.65);
}

.decoration-blue-800\/70 {
  text-decoration-color: rgb(30 64 175 / 0.7);
}

.decoration-blue-800\/75 {
  text-decoration-color: rgb(30 64 175 / 0.75);
}

.decoration-blue-800\/80 {
  text-decoration-color: rgb(30 64 175 / 0.8);
}

.decoration-blue-800\/85 {
  text-decoration-color: rgb(30 64 175 / 0.85);
}

.decoration-blue-800\/90 {
  text-decoration-color: rgb(30 64 175 / 0.9);
}

.decoration-blue-800\/95 {
  text-decoration-color: rgb(30 64 175 / 0.95);
}

.decoration-blue-900 {
  text-decoration-color: #1e3a8a;
}

.decoration-blue-900\/0 {
  text-decoration-color: rgb(30 58 138 / 0);
}

.decoration-blue-900\/10 {
  text-decoration-color: rgb(30 58 138 / 0.1);
}

.decoration-blue-900\/100 {
  text-decoration-color: rgb(30 58 138 / 1);
}

.decoration-blue-900\/15 {
  text-decoration-color: rgb(30 58 138 / 0.15);
}

.decoration-blue-900\/20 {
  text-decoration-color: rgb(30 58 138 / 0.2);
}

.decoration-blue-900\/25 {
  text-decoration-color: rgb(30 58 138 / 0.25);
}

.decoration-blue-900\/30 {
  text-decoration-color: rgb(30 58 138 / 0.3);
}

.decoration-blue-900\/35 {
  text-decoration-color: rgb(30 58 138 / 0.35);
}

.decoration-blue-900\/40 {
  text-decoration-color: rgb(30 58 138 / 0.4);
}

.decoration-blue-900\/45 {
  text-decoration-color: rgb(30 58 138 / 0.45);
}

.decoration-blue-900\/5 {
  text-decoration-color: rgb(30 58 138 / 0.05);
}

.decoration-blue-900\/50 {
  text-decoration-color: rgb(30 58 138 / 0.5);
}

.decoration-blue-900\/55 {
  text-decoration-color: rgb(30 58 138 / 0.55);
}

.decoration-blue-900\/60 {
  text-decoration-color: rgb(30 58 138 / 0.6);
}

.decoration-blue-900\/65 {
  text-decoration-color: rgb(30 58 138 / 0.65);
}

.decoration-blue-900\/70 {
  text-decoration-color: rgb(30 58 138 / 0.7);
}

.decoration-blue-900\/75 {
  text-decoration-color: rgb(30 58 138 / 0.75);
}

.decoration-blue-900\/80 {
  text-decoration-color: rgb(30 58 138 / 0.8);
}

.decoration-blue-900\/85 {
  text-decoration-color: rgb(30 58 138 / 0.85);
}

.decoration-blue-900\/90 {
  text-decoration-color: rgb(30 58 138 / 0.9);
}

.decoration-blue-900\/95 {
  text-decoration-color: rgb(30 58 138 / 0.95);
}

.decoration-blue-950 {
  text-decoration-color: #172554;
}

.decoration-blue-950\/0 {
  text-decoration-color: rgb(23 37 84 / 0);
}

.decoration-blue-950\/10 {
  text-decoration-color: rgb(23 37 84 / 0.1);
}

.decoration-blue-950\/100 {
  text-decoration-color: rgb(23 37 84 / 1);
}

.decoration-blue-950\/15 {
  text-decoration-color: rgb(23 37 84 / 0.15);
}

.decoration-blue-950\/20 {
  text-decoration-color: rgb(23 37 84 / 0.2);
}

.decoration-blue-950\/25 {
  text-decoration-color: rgb(23 37 84 / 0.25);
}

.decoration-blue-950\/30 {
  text-decoration-color: rgb(23 37 84 / 0.3);
}

.decoration-blue-950\/35 {
  text-decoration-color: rgb(23 37 84 / 0.35);
}

.decoration-blue-950\/40 {
  text-decoration-color: rgb(23 37 84 / 0.4);
}

.decoration-blue-950\/45 {
  text-decoration-color: rgb(23 37 84 / 0.45);
}

.decoration-blue-950\/5 {
  text-decoration-color: rgb(23 37 84 / 0.05);
}

.decoration-blue-950\/50 {
  text-decoration-color: rgb(23 37 84 / 0.5);
}

.decoration-blue-950\/55 {
  text-decoration-color: rgb(23 37 84 / 0.55);
}

.decoration-blue-950\/60 {
  text-decoration-color: rgb(23 37 84 / 0.6);
}

.decoration-blue-950\/65 {
  text-decoration-color: rgb(23 37 84 / 0.65);
}

.decoration-blue-950\/70 {
  text-decoration-color: rgb(23 37 84 / 0.7);
}

.decoration-blue-950\/75 {
  text-decoration-color: rgb(23 37 84 / 0.75);
}

.decoration-blue-950\/80 {
  text-decoration-color: rgb(23 37 84 / 0.8);
}

.decoration-blue-950\/85 {
  text-decoration-color: rgb(23 37 84 / 0.85);
}

.decoration-blue-950\/90 {
  text-decoration-color: rgb(23 37 84 / 0.9);
}

.decoration-blue-950\/95 {
  text-decoration-color: rgb(23 37 84 / 0.95);
}

.decoration-current {
  text-decoration-color: currentColor;
}

.decoration-eva-blue {
  text-decoration-color: #1A213E;
}

.decoration-eva-blue-appt {
  text-decoration-color: rgba(52, 137, 207);
}

.decoration-eva-blue-appt\/0 {
  text-decoration-color: rgba(52, 137, 207, 0);
}

.decoration-eva-blue-appt\/10 {
  text-decoration-color: rgba(52, 137, 207, 0.1);
}

.decoration-eva-blue-appt\/100 {
  text-decoration-color: rgba(52, 137, 207, 1);
}

.decoration-eva-blue-appt\/15 {
  text-decoration-color: rgba(52, 137, 207, 0.15);
}

.decoration-eva-blue-appt\/20 {
  text-decoration-color: rgba(52, 137, 207, 0.2);
}

.decoration-eva-blue-appt\/25 {
  text-decoration-color: rgba(52, 137, 207, 0.25);
}

.decoration-eva-blue-appt\/30 {
  text-decoration-color: rgba(52, 137, 207, 0.3);
}

.decoration-eva-blue-appt\/35 {
  text-decoration-color: rgba(52, 137, 207, 0.35);
}

.decoration-eva-blue-appt\/40 {
  text-decoration-color: rgba(52, 137, 207, 0.4);
}

.decoration-eva-blue-appt\/45 {
  text-decoration-color: rgba(52, 137, 207, 0.45);
}

.decoration-eva-blue-appt\/5 {
  text-decoration-color: rgba(52, 137, 207, 0.05);
}

.decoration-eva-blue-appt\/50 {
  text-decoration-color: rgba(52, 137, 207, 0.5);
}

.decoration-eva-blue-appt\/55 {
  text-decoration-color: rgba(52, 137, 207, 0.55);
}

.decoration-eva-blue-appt\/60 {
  text-decoration-color: rgba(52, 137, 207, 0.6);
}

.decoration-eva-blue-appt\/65 {
  text-decoration-color: rgba(52, 137, 207, 0.65);
}

.decoration-eva-blue-appt\/70 {
  text-decoration-color: rgba(52, 137, 207, 0.7);
}

.decoration-eva-blue-appt\/75 {
  text-decoration-color: rgba(52, 137, 207, 0.75);
}

.decoration-eva-blue-appt\/80 {
  text-decoration-color: rgba(52, 137, 207, 0.8);
}

.decoration-eva-blue-appt\/85 {
  text-decoration-color: rgba(52, 137, 207, 0.85);
}

.decoration-eva-blue-appt\/90 {
  text-decoration-color: rgba(52, 137, 207, 0.9);
}

.decoration-eva-blue-appt\/95 {
  text-decoration-color: rgba(52, 137, 207, 0.95);
}

.decoration-eva-blue-gray {
  text-decoration-color: #75798b;
}

.decoration-eva-blue-gray\/0 {
  text-decoration-color: rgb(117 121 139 / 0);
}

.decoration-eva-blue-gray\/10 {
  text-decoration-color: rgb(117 121 139 / 0.1);
}

.decoration-eva-blue-gray\/100 {
  text-decoration-color: rgb(117 121 139 / 1);
}

.decoration-eva-blue-gray\/15 {
  text-decoration-color: rgb(117 121 139 / 0.15);
}

.decoration-eva-blue-gray\/20 {
  text-decoration-color: rgb(117 121 139 / 0.2);
}

.decoration-eva-blue-gray\/25 {
  text-decoration-color: rgb(117 121 139 / 0.25);
}

.decoration-eva-blue-gray\/30 {
  text-decoration-color: rgb(117 121 139 / 0.3);
}

.decoration-eva-blue-gray\/35 {
  text-decoration-color: rgb(117 121 139 / 0.35);
}

.decoration-eva-blue-gray\/40 {
  text-decoration-color: rgb(117 121 139 / 0.4);
}

.decoration-eva-blue-gray\/45 {
  text-decoration-color: rgb(117 121 139 / 0.45);
}

.decoration-eva-blue-gray\/5 {
  text-decoration-color: rgb(117 121 139 / 0.05);
}

.decoration-eva-blue-gray\/50 {
  text-decoration-color: rgb(117 121 139 / 0.5);
}

.decoration-eva-blue-gray\/55 {
  text-decoration-color: rgb(117 121 139 / 0.55);
}

.decoration-eva-blue-gray\/60 {
  text-decoration-color: rgb(117 121 139 / 0.6);
}

.decoration-eva-blue-gray\/65 {
  text-decoration-color: rgb(117 121 139 / 0.65);
}

.decoration-eva-blue-gray\/70 {
  text-decoration-color: rgb(117 121 139 / 0.7);
}

.decoration-eva-blue-gray\/75 {
  text-decoration-color: rgb(117 121 139 / 0.75);
}

.decoration-eva-blue-gray\/80 {
  text-decoration-color: rgb(117 121 139 / 0.8);
}

.decoration-eva-blue-gray\/85 {
  text-decoration-color: rgb(117 121 139 / 0.85);
}

.decoration-eva-blue-gray\/90 {
  text-decoration-color: rgb(117 121 139 / 0.9);
}

.decoration-eva-blue-gray\/95 {
  text-decoration-color: rgb(117 121 139 / 0.95);
}

.decoration-eva-blue-hv {
  text-decoration-color: #0f121f;
}

.decoration-eva-blue-hv\/0 {
  text-decoration-color: rgb(15 18 31 / 0);
}

.decoration-eva-blue-hv\/10 {
  text-decoration-color: rgb(15 18 31 / 0.1);
}

.decoration-eva-blue-hv\/100 {
  text-decoration-color: rgb(15 18 31 / 1);
}

.decoration-eva-blue-hv\/15 {
  text-decoration-color: rgb(15 18 31 / 0.15);
}

.decoration-eva-blue-hv\/20 {
  text-decoration-color: rgb(15 18 31 / 0.2);
}

.decoration-eva-blue-hv\/25 {
  text-decoration-color: rgb(15 18 31 / 0.25);
}

.decoration-eva-blue-hv\/30 {
  text-decoration-color: rgb(15 18 31 / 0.3);
}

.decoration-eva-blue-hv\/35 {
  text-decoration-color: rgb(15 18 31 / 0.35);
}

.decoration-eva-blue-hv\/40 {
  text-decoration-color: rgb(15 18 31 / 0.4);
}

.decoration-eva-blue-hv\/45 {
  text-decoration-color: rgb(15 18 31 / 0.45);
}

.decoration-eva-blue-hv\/5 {
  text-decoration-color: rgb(15 18 31 / 0.05);
}

.decoration-eva-blue-hv\/50 {
  text-decoration-color: rgb(15 18 31 / 0.5);
}

.decoration-eva-blue-hv\/55 {
  text-decoration-color: rgb(15 18 31 / 0.55);
}

.decoration-eva-blue-hv\/60 {
  text-decoration-color: rgb(15 18 31 / 0.6);
}

.decoration-eva-blue-hv\/65 {
  text-decoration-color: rgb(15 18 31 / 0.65);
}

.decoration-eva-blue-hv\/70 {
  text-decoration-color: rgb(15 18 31 / 0.7);
}

.decoration-eva-blue-hv\/75 {
  text-decoration-color: rgb(15 18 31 / 0.75);
}

.decoration-eva-blue-hv\/80 {
  text-decoration-color: rgb(15 18 31 / 0.8);
}

.decoration-eva-blue-hv\/85 {
  text-decoration-color: rgb(15 18 31 / 0.85);
}

.decoration-eva-blue-hv\/90 {
  text-decoration-color: rgb(15 18 31 / 0.9);
}

.decoration-eva-blue-hv\/95 {
  text-decoration-color: rgb(15 18 31 / 0.95);
}

.decoration-eva-blue-light {
  text-decoration-color: #303851;
}

.decoration-eva-blue-light-hv {
  text-decoration-color: rgba(17,20,30,.3);
}

.decoration-eva-blue-light-hv\/0 {
  text-decoration-color: rgba(17, 20, 30, 0);
}

.decoration-eva-blue-light-hv\/10 {
  text-decoration-color: rgba(17, 20, 30, 0.1);
}

.decoration-eva-blue-light-hv\/100 {
  text-decoration-color: rgba(17, 20, 30, 1);
}

.decoration-eva-blue-light-hv\/15 {
  text-decoration-color: rgba(17, 20, 30, 0.15);
}

.decoration-eva-blue-light-hv\/20 {
  text-decoration-color: rgba(17, 20, 30, 0.2);
}

.decoration-eva-blue-light-hv\/25 {
  text-decoration-color: rgba(17, 20, 30, 0.25);
}

.decoration-eva-blue-light-hv\/30 {
  text-decoration-color: rgba(17, 20, 30, 0.3);
}

.decoration-eva-blue-light-hv\/35 {
  text-decoration-color: rgba(17, 20, 30, 0.35);
}

.decoration-eva-blue-light-hv\/40 {
  text-decoration-color: rgba(17, 20, 30, 0.4);
}

.decoration-eva-blue-light-hv\/45 {
  text-decoration-color: rgba(17, 20, 30, 0.45);
}

.decoration-eva-blue-light-hv\/5 {
  text-decoration-color: rgba(17, 20, 30, 0.05);
}

.decoration-eva-blue-light-hv\/50 {
  text-decoration-color: rgba(17, 20, 30, 0.5);
}

.decoration-eva-blue-light-hv\/55 {
  text-decoration-color: rgba(17, 20, 30, 0.55);
}

.decoration-eva-blue-light-hv\/60 {
  text-decoration-color: rgba(17, 20, 30, 0.6);
}

.decoration-eva-blue-light-hv\/65 {
  text-decoration-color: rgba(17, 20, 30, 0.65);
}

.decoration-eva-blue-light-hv\/70 {
  text-decoration-color: rgba(17, 20, 30, 0.7);
}

.decoration-eva-blue-light-hv\/75 {
  text-decoration-color: rgba(17, 20, 30, 0.75);
}

.decoration-eva-blue-light-hv\/80 {
  text-decoration-color: rgba(17, 20, 30, 0.8);
}

.decoration-eva-blue-light-hv\/85 {
  text-decoration-color: rgba(17, 20, 30, 0.85);
}

.decoration-eva-blue-light-hv\/90 {
  text-decoration-color: rgba(17, 20, 30, 0.9);
}

.decoration-eva-blue-light-hv\/95 {
  text-decoration-color: rgba(17, 20, 30, 0.95);
}

.decoration-eva-blue-light\/0 {
  text-decoration-color: rgb(48 56 81 / 0);
}

.decoration-eva-blue-light\/10 {
  text-decoration-color: rgb(48 56 81 / 0.1);
}

.decoration-eva-blue-light\/100 {
  text-decoration-color: rgb(48 56 81 / 1);
}

.decoration-eva-blue-light\/15 {
  text-decoration-color: rgb(48 56 81 / 0.15);
}

.decoration-eva-blue-light\/20 {
  text-decoration-color: rgb(48 56 81 / 0.2);
}

.decoration-eva-blue-light\/25 {
  text-decoration-color: rgb(48 56 81 / 0.25);
}

.decoration-eva-blue-light\/30 {
  text-decoration-color: rgb(48 56 81 / 0.3);
}

.decoration-eva-blue-light\/35 {
  text-decoration-color: rgb(48 56 81 / 0.35);
}

.decoration-eva-blue-light\/40 {
  text-decoration-color: rgb(48 56 81 / 0.4);
}

.decoration-eva-blue-light\/45 {
  text-decoration-color: rgb(48 56 81 / 0.45);
}

.decoration-eva-blue-light\/5 {
  text-decoration-color: rgb(48 56 81 / 0.05);
}

.decoration-eva-blue-light\/50 {
  text-decoration-color: rgb(48 56 81 / 0.5);
}

.decoration-eva-blue-light\/55 {
  text-decoration-color: rgb(48 56 81 / 0.55);
}

.decoration-eva-blue-light\/60 {
  text-decoration-color: rgb(48 56 81 / 0.6);
}

.decoration-eva-blue-light\/65 {
  text-decoration-color: rgb(48 56 81 / 0.65);
}

.decoration-eva-blue-light\/70 {
  text-decoration-color: rgb(48 56 81 / 0.7);
}

.decoration-eva-blue-light\/75 {
  text-decoration-color: rgb(48 56 81 / 0.75);
}

.decoration-eva-blue-light\/80 {
  text-decoration-color: rgb(48 56 81 / 0.8);
}

.decoration-eva-blue-light\/85 {
  text-decoration-color: rgb(48 56 81 / 0.85);
}

.decoration-eva-blue-light\/90 {
  text-decoration-color: rgb(48 56 81 / 0.9);
}

.decoration-eva-blue-light\/95 {
  text-decoration-color: rgb(48 56 81 / 0.95);
}

.decoration-eva-blue\/0 {
  text-decoration-color: rgb(26 33 62 / 0);
}

.decoration-eva-blue\/10 {
  text-decoration-color: rgb(26 33 62 / 0.1);
}

.decoration-eva-blue\/100 {
  text-decoration-color: rgb(26 33 62 / 1);
}

.decoration-eva-blue\/15 {
  text-decoration-color: rgb(26 33 62 / 0.15);
}

.decoration-eva-blue\/20 {
  text-decoration-color: rgb(26 33 62 / 0.2);
}

.decoration-eva-blue\/25 {
  text-decoration-color: rgb(26 33 62 / 0.25);
}

.decoration-eva-blue\/30 {
  text-decoration-color: rgb(26 33 62 / 0.3);
}

.decoration-eva-blue\/35 {
  text-decoration-color: rgb(26 33 62 / 0.35);
}

.decoration-eva-blue\/40 {
  text-decoration-color: rgb(26 33 62 / 0.4);
}

.decoration-eva-blue\/45 {
  text-decoration-color: rgb(26 33 62 / 0.45);
}

.decoration-eva-blue\/5 {
  text-decoration-color: rgb(26 33 62 / 0.05);
}

.decoration-eva-blue\/50 {
  text-decoration-color: rgb(26 33 62 / 0.5);
}

.decoration-eva-blue\/55 {
  text-decoration-color: rgb(26 33 62 / 0.55);
}

.decoration-eva-blue\/60 {
  text-decoration-color: rgb(26 33 62 / 0.6);
}

.decoration-eva-blue\/65 {
  text-decoration-color: rgb(26 33 62 / 0.65);
}

.decoration-eva-blue\/70 {
  text-decoration-color: rgb(26 33 62 / 0.7);
}

.decoration-eva-blue\/75 {
  text-decoration-color: rgb(26 33 62 / 0.75);
}

.decoration-eva-blue\/80 {
  text-decoration-color: rgb(26 33 62 / 0.8);
}

.decoration-eva-blue\/85 {
  text-decoration-color: rgb(26 33 62 / 0.85);
}

.decoration-eva-blue\/90 {
  text-decoration-color: rgb(26 33 62 / 0.9);
}

.decoration-eva-blue\/95 {
  text-decoration-color: rgb(26 33 62 / 0.95);
}

.decoration-eva-brown-appt {
  text-decoration-color: rgba(99, 93, 94, 1);
}

.decoration-eva-brown-appt\/0 {
  text-decoration-color: rgba(99, 93, 94, 0);
}

.decoration-eva-brown-appt\/10 {
  text-decoration-color: rgba(99, 93, 94, 0.1);
}

.decoration-eva-brown-appt\/100 {
  text-decoration-color: rgba(99, 93, 94, 1);
}

.decoration-eva-brown-appt\/15 {
  text-decoration-color: rgba(99, 93, 94, 0.15);
}

.decoration-eva-brown-appt\/20 {
  text-decoration-color: rgba(99, 93, 94, 0.2);
}

.decoration-eva-brown-appt\/25 {
  text-decoration-color: rgba(99, 93, 94, 0.25);
}

.decoration-eva-brown-appt\/30 {
  text-decoration-color: rgba(99, 93, 94, 0.3);
}

.decoration-eva-brown-appt\/35 {
  text-decoration-color: rgba(99, 93, 94, 0.35);
}

.decoration-eva-brown-appt\/40 {
  text-decoration-color: rgba(99, 93, 94, 0.4);
}

.decoration-eva-brown-appt\/45 {
  text-decoration-color: rgba(99, 93, 94, 0.45);
}

.decoration-eva-brown-appt\/5 {
  text-decoration-color: rgba(99, 93, 94, 0.05);
}

.decoration-eva-brown-appt\/50 {
  text-decoration-color: rgba(99, 93, 94, 0.5);
}

.decoration-eva-brown-appt\/55 {
  text-decoration-color: rgba(99, 93, 94, 0.55);
}

.decoration-eva-brown-appt\/60 {
  text-decoration-color: rgba(99, 93, 94, 0.6);
}

.decoration-eva-brown-appt\/65 {
  text-decoration-color: rgba(99, 93, 94, 0.65);
}

.decoration-eva-brown-appt\/70 {
  text-decoration-color: rgba(99, 93, 94, 0.7);
}

.decoration-eva-brown-appt\/75 {
  text-decoration-color: rgba(99, 93, 94, 0.75);
}

.decoration-eva-brown-appt\/80 {
  text-decoration-color: rgba(99, 93, 94, 0.8);
}

.decoration-eva-brown-appt\/85 {
  text-decoration-color: rgba(99, 93, 94, 0.85);
}

.decoration-eva-brown-appt\/90 {
  text-decoration-color: rgba(99, 93, 94, 0.9);
}

.decoration-eva-brown-appt\/95 {
  text-decoration-color: rgba(99, 93, 94, 0.95);
}

.decoration-eva-dark-green-appt {
  text-decoration-color: rgba(102, 188, 130, 1);
}

.decoration-eva-dark-green-appt\/0 {
  text-decoration-color: rgba(102, 188, 130, 0);
}

.decoration-eva-dark-green-appt\/10 {
  text-decoration-color: rgba(102, 188, 130, 0.1);
}

.decoration-eva-dark-green-appt\/100 {
  text-decoration-color: rgba(102, 188, 130, 1);
}

.decoration-eva-dark-green-appt\/15 {
  text-decoration-color: rgba(102, 188, 130, 0.15);
}

.decoration-eva-dark-green-appt\/20 {
  text-decoration-color: rgba(102, 188, 130, 0.2);
}

.decoration-eva-dark-green-appt\/25 {
  text-decoration-color: rgba(102, 188, 130, 0.25);
}

.decoration-eva-dark-green-appt\/30 {
  text-decoration-color: rgba(102, 188, 130, 0.3);
}

.decoration-eva-dark-green-appt\/35 {
  text-decoration-color: rgba(102, 188, 130, 0.35);
}

.decoration-eva-dark-green-appt\/40 {
  text-decoration-color: rgba(102, 188, 130, 0.4);
}

.decoration-eva-dark-green-appt\/45 {
  text-decoration-color: rgba(102, 188, 130, 0.45);
}

.decoration-eva-dark-green-appt\/5 {
  text-decoration-color: rgba(102, 188, 130, 0.05);
}

.decoration-eva-dark-green-appt\/50 {
  text-decoration-color: rgba(102, 188, 130, 0.5);
}

.decoration-eva-dark-green-appt\/55 {
  text-decoration-color: rgba(102, 188, 130, 0.55);
}

.decoration-eva-dark-green-appt\/60 {
  text-decoration-color: rgba(102, 188, 130, 0.6);
}

.decoration-eva-dark-green-appt\/65 {
  text-decoration-color: rgba(102, 188, 130, 0.65);
}

.decoration-eva-dark-green-appt\/70 {
  text-decoration-color: rgba(102, 188, 130, 0.7);
}

.decoration-eva-dark-green-appt\/75 {
  text-decoration-color: rgba(102, 188, 130, 0.75);
}

.decoration-eva-dark-green-appt\/80 {
  text-decoration-color: rgba(102, 188, 130, 0.8);
}

.decoration-eva-dark-green-appt\/85 {
  text-decoration-color: rgba(102, 188, 130, 0.85);
}

.decoration-eva-dark-green-appt\/90 {
  text-decoration-color: rgba(102, 188, 130, 0.9);
}

.decoration-eva-dark-green-appt\/95 {
  text-decoration-color: rgba(102, 188, 130, 0.95);
}

.decoration-eva-dark-red-appt {
  text-decoration-color: rgba(198, 102, 94, 1);
}

.decoration-eva-dark-red-appt\/0 {
  text-decoration-color: rgba(198, 102, 94, 0);
}

.decoration-eva-dark-red-appt\/10 {
  text-decoration-color: rgba(198, 102, 94, 0.1);
}

.decoration-eva-dark-red-appt\/100 {
  text-decoration-color: rgba(198, 102, 94, 1);
}

.decoration-eva-dark-red-appt\/15 {
  text-decoration-color: rgba(198, 102, 94, 0.15);
}

.decoration-eva-dark-red-appt\/20 {
  text-decoration-color: rgba(198, 102, 94, 0.2);
}

.decoration-eva-dark-red-appt\/25 {
  text-decoration-color: rgba(198, 102, 94, 0.25);
}

.decoration-eva-dark-red-appt\/30 {
  text-decoration-color: rgba(198, 102, 94, 0.3);
}

.decoration-eva-dark-red-appt\/35 {
  text-decoration-color: rgba(198, 102, 94, 0.35);
}

.decoration-eva-dark-red-appt\/40 {
  text-decoration-color: rgba(198, 102, 94, 0.4);
}

.decoration-eva-dark-red-appt\/45 {
  text-decoration-color: rgba(198, 102, 94, 0.45);
}

.decoration-eva-dark-red-appt\/5 {
  text-decoration-color: rgba(198, 102, 94, 0.05);
}

.decoration-eva-dark-red-appt\/50 {
  text-decoration-color: rgba(198, 102, 94, 0.5);
}

.decoration-eva-dark-red-appt\/55 {
  text-decoration-color: rgba(198, 102, 94, 0.55);
}

.decoration-eva-dark-red-appt\/60 {
  text-decoration-color: rgba(198, 102, 94, 0.6);
}

.decoration-eva-dark-red-appt\/65 {
  text-decoration-color: rgba(198, 102, 94, 0.65);
}

.decoration-eva-dark-red-appt\/70 {
  text-decoration-color: rgba(198, 102, 94, 0.7);
}

.decoration-eva-dark-red-appt\/75 {
  text-decoration-color: rgba(198, 102, 94, 0.75);
}

.decoration-eva-dark-red-appt\/80 {
  text-decoration-color: rgba(198, 102, 94, 0.8);
}

.decoration-eva-dark-red-appt\/85 {
  text-decoration-color: rgba(198, 102, 94, 0.85);
}

.decoration-eva-dark-red-appt\/90 {
  text-decoration-color: rgba(198, 102, 94, 0.9);
}

.decoration-eva-dark-red-appt\/95 {
  text-decoration-color: rgba(198, 102, 94, 0.95);
}

.decoration-eva-green {
  text-decoration-color: #49B5A8;
}

.decoration-eva-green-appt {
  text-decoration-color: rgba(128, 215, 109);
}

.decoration-eva-green-appt\/0 {
  text-decoration-color: rgba(128, 215, 109, 0);
}

.decoration-eva-green-appt\/10 {
  text-decoration-color: rgba(128, 215, 109, 0.1);
}

.decoration-eva-green-appt\/100 {
  text-decoration-color: rgba(128, 215, 109, 1);
}

.decoration-eva-green-appt\/15 {
  text-decoration-color: rgba(128, 215, 109, 0.15);
}

.decoration-eva-green-appt\/20 {
  text-decoration-color: rgba(128, 215, 109, 0.2);
}

.decoration-eva-green-appt\/25 {
  text-decoration-color: rgba(128, 215, 109, 0.25);
}

.decoration-eva-green-appt\/30 {
  text-decoration-color: rgba(128, 215, 109, 0.3);
}

.decoration-eva-green-appt\/35 {
  text-decoration-color: rgba(128, 215, 109, 0.35);
}

.decoration-eva-green-appt\/40 {
  text-decoration-color: rgba(128, 215, 109, 0.4);
}

.decoration-eva-green-appt\/45 {
  text-decoration-color: rgba(128, 215, 109, 0.45);
}

.decoration-eva-green-appt\/5 {
  text-decoration-color: rgba(128, 215, 109, 0.05);
}

.decoration-eva-green-appt\/50 {
  text-decoration-color: rgba(128, 215, 109, 0.5);
}

.decoration-eva-green-appt\/55 {
  text-decoration-color: rgba(128, 215, 109, 0.55);
}

.decoration-eva-green-appt\/60 {
  text-decoration-color: rgba(128, 215, 109, 0.6);
}

.decoration-eva-green-appt\/65 {
  text-decoration-color: rgba(128, 215, 109, 0.65);
}

.decoration-eva-green-appt\/70 {
  text-decoration-color: rgba(128, 215, 109, 0.7);
}

.decoration-eva-green-appt\/75 {
  text-decoration-color: rgba(128, 215, 109, 0.75);
}

.decoration-eva-green-appt\/80 {
  text-decoration-color: rgba(128, 215, 109, 0.8);
}

.decoration-eva-green-appt\/85 {
  text-decoration-color: rgba(128, 215, 109, 0.85);
}

.decoration-eva-green-appt\/90 {
  text-decoration-color: rgba(128, 215, 109, 0.9);
}

.decoration-eva-green-appt\/95 {
  text-decoration-color: rgba(128, 215, 109, 0.95);
}

.decoration-eva-green-brown-appt {
  text-decoration-color: rgba(197, 191, 140, 1);
}

.decoration-eva-green-brown-appt\/0 {
  text-decoration-color: rgba(197, 191, 140, 0);
}

.decoration-eva-green-brown-appt\/10 {
  text-decoration-color: rgba(197, 191, 140, 0.1);
}

.decoration-eva-green-brown-appt\/100 {
  text-decoration-color: rgba(197, 191, 140, 1);
}

.decoration-eva-green-brown-appt\/15 {
  text-decoration-color: rgba(197, 191, 140, 0.15);
}

.decoration-eva-green-brown-appt\/20 {
  text-decoration-color: rgba(197, 191, 140, 0.2);
}

.decoration-eva-green-brown-appt\/25 {
  text-decoration-color: rgba(197, 191, 140, 0.25);
}

.decoration-eva-green-brown-appt\/30 {
  text-decoration-color: rgba(197, 191, 140, 0.3);
}

.decoration-eva-green-brown-appt\/35 {
  text-decoration-color: rgba(197, 191, 140, 0.35);
}

.decoration-eva-green-brown-appt\/40 {
  text-decoration-color: rgba(197, 191, 140, 0.4);
}

.decoration-eva-green-brown-appt\/45 {
  text-decoration-color: rgba(197, 191, 140, 0.45);
}

.decoration-eva-green-brown-appt\/5 {
  text-decoration-color: rgba(197, 191, 140, 0.05);
}

.decoration-eva-green-brown-appt\/50 {
  text-decoration-color: rgba(197, 191, 140, 0.5);
}

.decoration-eva-green-brown-appt\/55 {
  text-decoration-color: rgba(197, 191, 140, 0.55);
}

.decoration-eva-green-brown-appt\/60 {
  text-decoration-color: rgba(197, 191, 140, 0.6);
}

.decoration-eva-green-brown-appt\/65 {
  text-decoration-color: rgba(197, 191, 140, 0.65);
}

.decoration-eva-green-brown-appt\/70 {
  text-decoration-color: rgba(197, 191, 140, 0.7);
}

.decoration-eva-green-brown-appt\/75 {
  text-decoration-color: rgba(197, 191, 140, 0.75);
}

.decoration-eva-green-brown-appt\/80 {
  text-decoration-color: rgba(197, 191, 140, 0.8);
}

.decoration-eva-green-brown-appt\/85 {
  text-decoration-color: rgba(197, 191, 140, 0.85);
}

.decoration-eva-green-brown-appt\/90 {
  text-decoration-color: rgba(197, 191, 140, 0.9);
}

.decoration-eva-green-brown-appt\/95 {
  text-decoration-color: rgba(197, 191, 140, 0.95);
}

.decoration-eva-green-hv {
  text-decoration-color: #3f9c90;
}

.decoration-eva-green-hv\/0 {
  text-decoration-color: rgb(63 156 144 / 0);
}

.decoration-eva-green-hv\/10 {
  text-decoration-color: rgb(63 156 144 / 0.1);
}

.decoration-eva-green-hv\/100 {
  text-decoration-color: rgb(63 156 144 / 1);
}

.decoration-eva-green-hv\/15 {
  text-decoration-color: rgb(63 156 144 / 0.15);
}

.decoration-eva-green-hv\/20 {
  text-decoration-color: rgb(63 156 144 / 0.2);
}

.decoration-eva-green-hv\/25 {
  text-decoration-color: rgb(63 156 144 / 0.25);
}

.decoration-eva-green-hv\/30 {
  text-decoration-color: rgb(63 156 144 / 0.3);
}

.decoration-eva-green-hv\/35 {
  text-decoration-color: rgb(63 156 144 / 0.35);
}

.decoration-eva-green-hv\/40 {
  text-decoration-color: rgb(63 156 144 / 0.4);
}

.decoration-eva-green-hv\/45 {
  text-decoration-color: rgb(63 156 144 / 0.45);
}

.decoration-eva-green-hv\/5 {
  text-decoration-color: rgb(63 156 144 / 0.05);
}

.decoration-eva-green-hv\/50 {
  text-decoration-color: rgb(63 156 144 / 0.5);
}

.decoration-eva-green-hv\/55 {
  text-decoration-color: rgb(63 156 144 / 0.55);
}

.decoration-eva-green-hv\/60 {
  text-decoration-color: rgb(63 156 144 / 0.6);
}

.decoration-eva-green-hv\/65 {
  text-decoration-color: rgb(63 156 144 / 0.65);
}

.decoration-eva-green-hv\/70 {
  text-decoration-color: rgb(63 156 144 / 0.7);
}

.decoration-eva-green-hv\/75 {
  text-decoration-color: rgb(63 156 144 / 0.75);
}

.decoration-eva-green-hv\/80 {
  text-decoration-color: rgb(63 156 144 / 0.8);
}

.decoration-eva-green-hv\/85 {
  text-decoration-color: rgb(63 156 144 / 0.85);
}

.decoration-eva-green-hv\/90 {
  text-decoration-color: rgb(63 156 144 / 0.9);
}

.decoration-eva-green-hv\/95 {
  text-decoration-color: rgb(63 156 144 / 0.95);
}

.decoration-eva-green\/0 {
  text-decoration-color: rgb(73 181 168 / 0);
}

.decoration-eva-green\/10 {
  text-decoration-color: rgb(73 181 168 / 0.1);
}

.decoration-eva-green\/100 {
  text-decoration-color: rgb(73 181 168 / 1);
}

.decoration-eva-green\/15 {
  text-decoration-color: rgb(73 181 168 / 0.15);
}

.decoration-eva-green\/20 {
  text-decoration-color: rgb(73 181 168 / 0.2);
}

.decoration-eva-green\/25 {
  text-decoration-color: rgb(73 181 168 / 0.25);
}

.decoration-eva-green\/30 {
  text-decoration-color: rgb(73 181 168 / 0.3);
}

.decoration-eva-green\/35 {
  text-decoration-color: rgb(73 181 168 / 0.35);
}

.decoration-eva-green\/40 {
  text-decoration-color: rgb(73 181 168 / 0.4);
}

.decoration-eva-green\/45 {
  text-decoration-color: rgb(73 181 168 / 0.45);
}

.decoration-eva-green\/5 {
  text-decoration-color: rgb(73 181 168 / 0.05);
}

.decoration-eva-green\/50 {
  text-decoration-color: rgb(73 181 168 / 0.5);
}

.decoration-eva-green\/55 {
  text-decoration-color: rgb(73 181 168 / 0.55);
}

.decoration-eva-green\/60 {
  text-decoration-color: rgb(73 181 168 / 0.6);
}

.decoration-eva-green\/65 {
  text-decoration-color: rgb(73 181 168 / 0.65);
}

.decoration-eva-green\/70 {
  text-decoration-color: rgb(73 181 168 / 0.7);
}

.decoration-eva-green\/75 {
  text-decoration-color: rgb(73 181 168 / 0.75);
}

.decoration-eva-green\/80 {
  text-decoration-color: rgb(73 181 168 / 0.8);
}

.decoration-eva-green\/85 {
  text-decoration-color: rgb(73 181 168 / 0.85);
}

.decoration-eva-green\/90 {
  text-decoration-color: rgb(73 181 168 / 0.9);
}

.decoration-eva-green\/95 {
  text-decoration-color: rgb(73 181 168 / 0.95);
}

.decoration-eva-lavender-appt {
  text-decoration-color: rgba(169, 124, 165, 1);
}

.decoration-eva-lavender-appt\/0 {
  text-decoration-color: rgba(169, 124, 165, 0);
}

.decoration-eva-lavender-appt\/10 {
  text-decoration-color: rgba(169, 124, 165, 0.1);
}

.decoration-eva-lavender-appt\/100 {
  text-decoration-color: rgba(169, 124, 165, 1);
}

.decoration-eva-lavender-appt\/15 {
  text-decoration-color: rgba(169, 124, 165, 0.15);
}

.decoration-eva-lavender-appt\/20 {
  text-decoration-color: rgba(169, 124, 165, 0.2);
}

.decoration-eva-lavender-appt\/25 {
  text-decoration-color: rgba(169, 124, 165, 0.25);
}

.decoration-eva-lavender-appt\/30 {
  text-decoration-color: rgba(169, 124, 165, 0.3);
}

.decoration-eva-lavender-appt\/35 {
  text-decoration-color: rgba(169, 124, 165, 0.35);
}

.decoration-eva-lavender-appt\/40 {
  text-decoration-color: rgba(169, 124, 165, 0.4);
}

.decoration-eva-lavender-appt\/45 {
  text-decoration-color: rgba(169, 124, 165, 0.45);
}

.decoration-eva-lavender-appt\/5 {
  text-decoration-color: rgba(169, 124, 165, 0.05);
}

.decoration-eva-lavender-appt\/50 {
  text-decoration-color: rgba(169, 124, 165, 0.5);
}

.decoration-eva-lavender-appt\/55 {
  text-decoration-color: rgba(169, 124, 165, 0.55);
}

.decoration-eva-lavender-appt\/60 {
  text-decoration-color: rgba(169, 124, 165, 0.6);
}

.decoration-eva-lavender-appt\/65 {
  text-decoration-color: rgba(169, 124, 165, 0.65);
}

.decoration-eva-lavender-appt\/70 {
  text-decoration-color: rgba(169, 124, 165, 0.7);
}

.decoration-eva-lavender-appt\/75 {
  text-decoration-color: rgba(169, 124, 165, 0.75);
}

.decoration-eva-lavender-appt\/80 {
  text-decoration-color: rgba(169, 124, 165, 0.8);
}

.decoration-eva-lavender-appt\/85 {
  text-decoration-color: rgba(169, 124, 165, 0.85);
}

.decoration-eva-lavender-appt\/90 {
  text-decoration-color: rgba(169, 124, 165, 0.9);
}

.decoration-eva-lavender-appt\/95 {
  text-decoration-color: rgba(169, 124, 165, 0.95);
}

.decoration-eva-magenta-appt {
  text-decoration-color: rgba(223, 91, 146, 1);
}

.decoration-eva-magenta-appt\/0 {
  text-decoration-color: rgba(223, 91, 146, 0);
}

.decoration-eva-magenta-appt\/10 {
  text-decoration-color: rgba(223, 91, 146, 0.1);
}

.decoration-eva-magenta-appt\/100 {
  text-decoration-color: rgba(223, 91, 146, 1);
}

.decoration-eva-magenta-appt\/15 {
  text-decoration-color: rgba(223, 91, 146, 0.15);
}

.decoration-eva-magenta-appt\/20 {
  text-decoration-color: rgba(223, 91, 146, 0.2);
}

.decoration-eva-magenta-appt\/25 {
  text-decoration-color: rgba(223, 91, 146, 0.25);
}

.decoration-eva-magenta-appt\/30 {
  text-decoration-color: rgba(223, 91, 146, 0.3);
}

.decoration-eva-magenta-appt\/35 {
  text-decoration-color: rgba(223, 91, 146, 0.35);
}

.decoration-eva-magenta-appt\/40 {
  text-decoration-color: rgba(223, 91, 146, 0.4);
}

.decoration-eva-magenta-appt\/45 {
  text-decoration-color: rgba(223, 91, 146, 0.45);
}

.decoration-eva-magenta-appt\/5 {
  text-decoration-color: rgba(223, 91, 146, 0.05);
}

.decoration-eva-magenta-appt\/50 {
  text-decoration-color: rgba(223, 91, 146, 0.5);
}

.decoration-eva-magenta-appt\/55 {
  text-decoration-color: rgba(223, 91, 146, 0.55);
}

.decoration-eva-magenta-appt\/60 {
  text-decoration-color: rgba(223, 91, 146, 0.6);
}

.decoration-eva-magenta-appt\/65 {
  text-decoration-color: rgba(223, 91, 146, 0.65);
}

.decoration-eva-magenta-appt\/70 {
  text-decoration-color: rgba(223, 91, 146, 0.7);
}

.decoration-eva-magenta-appt\/75 {
  text-decoration-color: rgba(223, 91, 146, 0.75);
}

.decoration-eva-magenta-appt\/80 {
  text-decoration-color: rgba(223, 91, 146, 0.8);
}

.decoration-eva-magenta-appt\/85 {
  text-decoration-color: rgba(223, 91, 146, 0.85);
}

.decoration-eva-magenta-appt\/90 {
  text-decoration-color: rgba(223, 91, 146, 0.9);
}

.decoration-eva-magenta-appt\/95 {
  text-decoration-color: rgba(223, 91, 146, 0.95);
}

.decoration-eva-orange-appt {
  text-decoration-color: rgba(232, 176, 99, 1);
}

.decoration-eva-orange-appt\/0 {
  text-decoration-color: rgba(232, 176, 99, 0);
}

.decoration-eva-orange-appt\/10 {
  text-decoration-color: rgba(232, 176, 99, 0.1);
}

.decoration-eva-orange-appt\/100 {
  text-decoration-color: rgba(232, 176, 99, 1);
}

.decoration-eva-orange-appt\/15 {
  text-decoration-color: rgba(232, 176, 99, 0.15);
}

.decoration-eva-orange-appt\/20 {
  text-decoration-color: rgba(232, 176, 99, 0.2);
}

.decoration-eva-orange-appt\/25 {
  text-decoration-color: rgba(232, 176, 99, 0.25);
}

.decoration-eva-orange-appt\/30 {
  text-decoration-color: rgba(232, 176, 99, 0.3);
}

.decoration-eva-orange-appt\/35 {
  text-decoration-color: rgba(232, 176, 99, 0.35);
}

.decoration-eva-orange-appt\/40 {
  text-decoration-color: rgba(232, 176, 99, 0.4);
}

.decoration-eva-orange-appt\/45 {
  text-decoration-color: rgba(232, 176, 99, 0.45);
}

.decoration-eva-orange-appt\/5 {
  text-decoration-color: rgba(232, 176, 99, 0.05);
}

.decoration-eva-orange-appt\/50 {
  text-decoration-color: rgba(232, 176, 99, 0.5);
}

.decoration-eva-orange-appt\/55 {
  text-decoration-color: rgba(232, 176, 99, 0.55);
}

.decoration-eva-orange-appt\/60 {
  text-decoration-color: rgba(232, 176, 99, 0.6);
}

.decoration-eva-orange-appt\/65 {
  text-decoration-color: rgba(232, 176, 99, 0.65);
}

.decoration-eva-orange-appt\/70 {
  text-decoration-color: rgba(232, 176, 99, 0.7);
}

.decoration-eva-orange-appt\/75 {
  text-decoration-color: rgba(232, 176, 99, 0.75);
}

.decoration-eva-orange-appt\/80 {
  text-decoration-color: rgba(232, 176, 99, 0.8);
}

.decoration-eva-orange-appt\/85 {
  text-decoration-color: rgba(232, 176, 99, 0.85);
}

.decoration-eva-orange-appt\/90 {
  text-decoration-color: rgba(232, 176, 99, 0.9);
}

.decoration-eva-orange-appt\/95 {
  text-decoration-color: rgba(232, 176, 99, 0.95);
}

.decoration-eva-purple-appt {
  text-decoration-color: rgba(125, 117, 164, 1);
}

.decoration-eva-purple-appt\/0 {
  text-decoration-color: rgba(125, 117, 164, 0);
}

.decoration-eva-purple-appt\/10 {
  text-decoration-color: rgba(125, 117, 164, 0.1);
}

.decoration-eva-purple-appt\/100 {
  text-decoration-color: rgba(125, 117, 164, 1);
}

.decoration-eva-purple-appt\/15 {
  text-decoration-color: rgba(125, 117, 164, 0.15);
}

.decoration-eva-purple-appt\/20 {
  text-decoration-color: rgba(125, 117, 164, 0.2);
}

.decoration-eva-purple-appt\/25 {
  text-decoration-color: rgba(125, 117, 164, 0.25);
}

.decoration-eva-purple-appt\/30 {
  text-decoration-color: rgba(125, 117, 164, 0.3);
}

.decoration-eva-purple-appt\/35 {
  text-decoration-color: rgba(125, 117, 164, 0.35);
}

.decoration-eva-purple-appt\/40 {
  text-decoration-color: rgba(125, 117, 164, 0.4);
}

.decoration-eva-purple-appt\/45 {
  text-decoration-color: rgba(125, 117, 164, 0.45);
}

.decoration-eva-purple-appt\/5 {
  text-decoration-color: rgba(125, 117, 164, 0.05);
}

.decoration-eva-purple-appt\/50 {
  text-decoration-color: rgba(125, 117, 164, 0.5);
}

.decoration-eva-purple-appt\/55 {
  text-decoration-color: rgba(125, 117, 164, 0.55);
}

.decoration-eva-purple-appt\/60 {
  text-decoration-color: rgba(125, 117, 164, 0.6);
}

.decoration-eva-purple-appt\/65 {
  text-decoration-color: rgba(125, 117, 164, 0.65);
}

.decoration-eva-purple-appt\/70 {
  text-decoration-color: rgba(125, 117, 164, 0.7);
}

.decoration-eva-purple-appt\/75 {
  text-decoration-color: rgba(125, 117, 164, 0.75);
}

.decoration-eva-purple-appt\/80 {
  text-decoration-color: rgba(125, 117, 164, 0.8);
}

.decoration-eva-purple-appt\/85 {
  text-decoration-color: rgba(125, 117, 164, 0.85);
}

.decoration-eva-purple-appt\/90 {
  text-decoration-color: rgba(125, 117, 164, 0.9);
}

.decoration-eva-purple-appt\/95 {
  text-decoration-color: rgba(125, 117, 164, 0.95);
}

.decoration-eva-red {
  text-decoration-color: #EA6565;
}

.decoration-eva-red-appt {
  text-decoration-color: rgba(243, 63, 77, 1);
}

.decoration-eva-red-appt\/0 {
  text-decoration-color: rgba(243, 63, 77, 0);
}

.decoration-eva-red-appt\/10 {
  text-decoration-color: rgba(243, 63, 77, 0.1);
}

.decoration-eva-red-appt\/100 {
  text-decoration-color: rgba(243, 63, 77, 1);
}

.decoration-eva-red-appt\/15 {
  text-decoration-color: rgba(243, 63, 77, 0.15);
}

.decoration-eva-red-appt\/20 {
  text-decoration-color: rgba(243, 63, 77, 0.2);
}

.decoration-eva-red-appt\/25 {
  text-decoration-color: rgba(243, 63, 77, 0.25);
}

.decoration-eva-red-appt\/30 {
  text-decoration-color: rgba(243, 63, 77, 0.3);
}

.decoration-eva-red-appt\/35 {
  text-decoration-color: rgba(243, 63, 77, 0.35);
}

.decoration-eva-red-appt\/40 {
  text-decoration-color: rgba(243, 63, 77, 0.4);
}

.decoration-eva-red-appt\/45 {
  text-decoration-color: rgba(243, 63, 77, 0.45);
}

.decoration-eva-red-appt\/5 {
  text-decoration-color: rgba(243, 63, 77, 0.05);
}

.decoration-eva-red-appt\/50 {
  text-decoration-color: rgba(243, 63, 77, 0.5);
}

.decoration-eva-red-appt\/55 {
  text-decoration-color: rgba(243, 63, 77, 0.55);
}

.decoration-eva-red-appt\/60 {
  text-decoration-color: rgba(243, 63, 77, 0.6);
}

.decoration-eva-red-appt\/65 {
  text-decoration-color: rgba(243, 63, 77, 0.65);
}

.decoration-eva-red-appt\/70 {
  text-decoration-color: rgba(243, 63, 77, 0.7);
}

.decoration-eva-red-appt\/75 {
  text-decoration-color: rgba(243, 63, 77, 0.75);
}

.decoration-eva-red-appt\/80 {
  text-decoration-color: rgba(243, 63, 77, 0.8);
}

.decoration-eva-red-appt\/85 {
  text-decoration-color: rgba(243, 63, 77, 0.85);
}

.decoration-eva-red-appt\/90 {
  text-decoration-color: rgba(243, 63, 77, 0.9);
}

.decoration-eva-red-appt\/95 {
  text-decoration-color: rgba(243, 63, 77, 0.95);
}

.decoration-eva-red-orange-appt {
  text-decoration-color: rgba(217, 154, 118, 1);
}

.decoration-eva-red-orange-appt\/0 {
  text-decoration-color: rgba(217, 154, 118, 0);
}

.decoration-eva-red-orange-appt\/10 {
  text-decoration-color: rgba(217, 154, 118, 0.1);
}

.decoration-eva-red-orange-appt\/100 {
  text-decoration-color: rgba(217, 154, 118, 1);
}

.decoration-eva-red-orange-appt\/15 {
  text-decoration-color: rgba(217, 154, 118, 0.15);
}

.decoration-eva-red-orange-appt\/20 {
  text-decoration-color: rgba(217, 154, 118, 0.2);
}

.decoration-eva-red-orange-appt\/25 {
  text-decoration-color: rgba(217, 154, 118, 0.25);
}

.decoration-eva-red-orange-appt\/30 {
  text-decoration-color: rgba(217, 154, 118, 0.3);
}

.decoration-eva-red-orange-appt\/35 {
  text-decoration-color: rgba(217, 154, 118, 0.35);
}

.decoration-eva-red-orange-appt\/40 {
  text-decoration-color: rgba(217, 154, 118, 0.4);
}

.decoration-eva-red-orange-appt\/45 {
  text-decoration-color: rgba(217, 154, 118, 0.45);
}

.decoration-eva-red-orange-appt\/5 {
  text-decoration-color: rgba(217, 154, 118, 0.05);
}

.decoration-eva-red-orange-appt\/50 {
  text-decoration-color: rgba(217, 154, 118, 0.5);
}

.decoration-eva-red-orange-appt\/55 {
  text-decoration-color: rgba(217, 154, 118, 0.55);
}

.decoration-eva-red-orange-appt\/60 {
  text-decoration-color: rgba(217, 154, 118, 0.6);
}

.decoration-eva-red-orange-appt\/65 {
  text-decoration-color: rgba(217, 154, 118, 0.65);
}

.decoration-eva-red-orange-appt\/70 {
  text-decoration-color: rgba(217, 154, 118, 0.7);
}

.decoration-eva-red-orange-appt\/75 {
  text-decoration-color: rgba(217, 154, 118, 0.75);
}

.decoration-eva-red-orange-appt\/80 {
  text-decoration-color: rgba(217, 154, 118, 0.8);
}

.decoration-eva-red-orange-appt\/85 {
  text-decoration-color: rgba(217, 154, 118, 0.85);
}

.decoration-eva-red-orange-appt\/90 {
  text-decoration-color: rgba(217, 154, 118, 0.9);
}

.decoration-eva-red-orange-appt\/95 {
  text-decoration-color: rgba(217, 154, 118, 0.95);
}

.decoration-eva-red\/0 {
  text-decoration-color: rgb(234 101 101 / 0);
}

.decoration-eva-red\/10 {
  text-decoration-color: rgb(234 101 101 / 0.1);
}

.decoration-eva-red\/100 {
  text-decoration-color: rgb(234 101 101 / 1);
}

.decoration-eva-red\/15 {
  text-decoration-color: rgb(234 101 101 / 0.15);
}

.decoration-eva-red\/20 {
  text-decoration-color: rgb(234 101 101 / 0.2);
}

.decoration-eva-red\/25 {
  text-decoration-color: rgb(234 101 101 / 0.25);
}

.decoration-eva-red\/30 {
  text-decoration-color: rgb(234 101 101 / 0.3);
}

.decoration-eva-red\/35 {
  text-decoration-color: rgb(234 101 101 / 0.35);
}

.decoration-eva-red\/40 {
  text-decoration-color: rgb(234 101 101 / 0.4);
}

.decoration-eva-red\/45 {
  text-decoration-color: rgb(234 101 101 / 0.45);
}

.decoration-eva-red\/5 {
  text-decoration-color: rgb(234 101 101 / 0.05);
}

.decoration-eva-red\/50 {
  text-decoration-color: rgb(234 101 101 / 0.5);
}

.decoration-eva-red\/55 {
  text-decoration-color: rgb(234 101 101 / 0.55);
}

.decoration-eva-red\/60 {
  text-decoration-color: rgb(234 101 101 / 0.6);
}

.decoration-eva-red\/65 {
  text-decoration-color: rgb(234 101 101 / 0.65);
}

.decoration-eva-red\/70 {
  text-decoration-color: rgb(234 101 101 / 0.7);
}

.decoration-eva-red\/75 {
  text-decoration-color: rgb(234 101 101 / 0.75);
}

.decoration-eva-red\/80 {
  text-decoration-color: rgb(234 101 101 / 0.8);
}

.decoration-eva-red\/85 {
  text-decoration-color: rgb(234 101 101 / 0.85);
}

.decoration-eva-red\/90 {
  text-decoration-color: rgb(234 101 101 / 0.9);
}

.decoration-eva-red\/95 {
  text-decoration-color: rgb(234 101 101 / 0.95);
}

.decoration-eva-teal-appt {
  text-decoration-color: rgba(22, 172, 151);
}

.decoration-eva-teal-appt\/0 {
  text-decoration-color: rgba(22, 172, 151, 0);
}

.decoration-eva-teal-appt\/10 {
  text-decoration-color: rgba(22, 172, 151, 0.1);
}

.decoration-eva-teal-appt\/100 {
  text-decoration-color: rgba(22, 172, 151, 1);
}

.decoration-eva-teal-appt\/15 {
  text-decoration-color: rgba(22, 172, 151, 0.15);
}

.decoration-eva-teal-appt\/20 {
  text-decoration-color: rgba(22, 172, 151, 0.2);
}

.decoration-eva-teal-appt\/25 {
  text-decoration-color: rgba(22, 172, 151, 0.25);
}

.decoration-eva-teal-appt\/30 {
  text-decoration-color: rgba(22, 172, 151, 0.3);
}

.decoration-eva-teal-appt\/35 {
  text-decoration-color: rgba(22, 172, 151, 0.35);
}

.decoration-eva-teal-appt\/40 {
  text-decoration-color: rgba(22, 172, 151, 0.4);
}

.decoration-eva-teal-appt\/45 {
  text-decoration-color: rgba(22, 172, 151, 0.45);
}

.decoration-eva-teal-appt\/5 {
  text-decoration-color: rgba(22, 172, 151, 0.05);
}

.decoration-eva-teal-appt\/50 {
  text-decoration-color: rgba(22, 172, 151, 0.5);
}

.decoration-eva-teal-appt\/55 {
  text-decoration-color: rgba(22, 172, 151, 0.55);
}

.decoration-eva-teal-appt\/60 {
  text-decoration-color: rgba(22, 172, 151, 0.6);
}

.decoration-eva-teal-appt\/65 {
  text-decoration-color: rgba(22, 172, 151, 0.65);
}

.decoration-eva-teal-appt\/70 {
  text-decoration-color: rgba(22, 172, 151, 0.7);
}

.decoration-eva-teal-appt\/75 {
  text-decoration-color: rgba(22, 172, 151, 0.75);
}

.decoration-eva-teal-appt\/80 {
  text-decoration-color: rgba(22, 172, 151, 0.8);
}

.decoration-eva-teal-appt\/85 {
  text-decoration-color: rgba(22, 172, 151, 0.85);
}

.decoration-eva-teal-appt\/90 {
  text-decoration-color: rgba(22, 172, 151, 0.9);
}

.decoration-eva-teal-appt\/95 {
  text-decoration-color: rgba(22, 172, 151, 0.95);
}

.decoration-eva-yellow {
  text-decoration-color: #E9B362;
}

.decoration-eva-yellow-appt {
  text-decoration-color: rgba(240, 226, 0, 1);
}

.decoration-eva-yellow-appt\/0 {
  text-decoration-color: rgba(240, 226, 0, 0);
}

.decoration-eva-yellow-appt\/10 {
  text-decoration-color: rgba(240, 226, 0, 0.1);
}

.decoration-eva-yellow-appt\/100 {
  text-decoration-color: rgba(240, 226, 0, 1);
}

.decoration-eva-yellow-appt\/15 {
  text-decoration-color: rgba(240, 226, 0, 0.15);
}

.decoration-eva-yellow-appt\/20 {
  text-decoration-color: rgba(240, 226, 0, 0.2);
}

.decoration-eva-yellow-appt\/25 {
  text-decoration-color: rgba(240, 226, 0, 0.25);
}

.decoration-eva-yellow-appt\/30 {
  text-decoration-color: rgba(240, 226, 0, 0.3);
}

.decoration-eva-yellow-appt\/35 {
  text-decoration-color: rgba(240, 226, 0, 0.35);
}

.decoration-eva-yellow-appt\/40 {
  text-decoration-color: rgba(240, 226, 0, 0.4);
}

.decoration-eva-yellow-appt\/45 {
  text-decoration-color: rgba(240, 226, 0, 0.45);
}

.decoration-eva-yellow-appt\/5 {
  text-decoration-color: rgba(240, 226, 0, 0.05);
}

.decoration-eva-yellow-appt\/50 {
  text-decoration-color: rgba(240, 226, 0, 0.5);
}

.decoration-eva-yellow-appt\/55 {
  text-decoration-color: rgba(240, 226, 0, 0.55);
}

.decoration-eva-yellow-appt\/60 {
  text-decoration-color: rgba(240, 226, 0, 0.6);
}

.decoration-eva-yellow-appt\/65 {
  text-decoration-color: rgba(240, 226, 0, 0.65);
}

.decoration-eva-yellow-appt\/70 {
  text-decoration-color: rgba(240, 226, 0, 0.7);
}

.decoration-eva-yellow-appt\/75 {
  text-decoration-color: rgba(240, 226, 0, 0.75);
}

.decoration-eva-yellow-appt\/80 {
  text-decoration-color: rgba(240, 226, 0, 0.8);
}

.decoration-eva-yellow-appt\/85 {
  text-decoration-color: rgba(240, 226, 0, 0.85);
}

.decoration-eva-yellow-appt\/90 {
  text-decoration-color: rgba(240, 226, 0, 0.9);
}

.decoration-eva-yellow-appt\/95 {
  text-decoration-color: rgba(240, 226, 0, 0.95);
}

.decoration-eva-yellow\/0 {
  text-decoration-color: rgb(233 179 98 / 0);
}

.decoration-eva-yellow\/10 {
  text-decoration-color: rgb(233 179 98 / 0.1);
}

.decoration-eva-yellow\/100 {
  text-decoration-color: rgb(233 179 98 / 1);
}

.decoration-eva-yellow\/15 {
  text-decoration-color: rgb(233 179 98 / 0.15);
}

.decoration-eva-yellow\/20 {
  text-decoration-color: rgb(233 179 98 / 0.2);
}

.decoration-eva-yellow\/25 {
  text-decoration-color: rgb(233 179 98 / 0.25);
}

.decoration-eva-yellow\/30 {
  text-decoration-color: rgb(233 179 98 / 0.3);
}

.decoration-eva-yellow\/35 {
  text-decoration-color: rgb(233 179 98 / 0.35);
}

.decoration-eva-yellow\/40 {
  text-decoration-color: rgb(233 179 98 / 0.4);
}

.decoration-eva-yellow\/45 {
  text-decoration-color: rgb(233 179 98 / 0.45);
}

.decoration-eva-yellow\/5 {
  text-decoration-color: rgb(233 179 98 / 0.05);
}

.decoration-eva-yellow\/50 {
  text-decoration-color: rgb(233 179 98 / 0.5);
}

.decoration-eva-yellow\/55 {
  text-decoration-color: rgb(233 179 98 / 0.55);
}

.decoration-eva-yellow\/60 {
  text-decoration-color: rgb(233 179 98 / 0.6);
}

.decoration-eva-yellow\/65 {
  text-decoration-color: rgb(233 179 98 / 0.65);
}

.decoration-eva-yellow\/70 {
  text-decoration-color: rgb(233 179 98 / 0.7);
}

.decoration-eva-yellow\/75 {
  text-decoration-color: rgb(233 179 98 / 0.75);
}

.decoration-eva-yellow\/80 {
  text-decoration-color: rgb(233 179 98 / 0.8);
}

.decoration-eva-yellow\/85 {
  text-decoration-color: rgb(233 179 98 / 0.85);
}

.decoration-eva-yellow\/90 {
  text-decoration-color: rgb(233 179 98 / 0.9);
}

.decoration-eva-yellow\/95 {
  text-decoration-color: rgb(233 179 98 / 0.95);
}

.decoration-gray-100 {
  text-decoration-color: #f5f5f5;
}

.decoration-gray-100\/0 {
  text-decoration-color: rgb(245 245 245 / 0);
}

.decoration-gray-100\/10 {
  text-decoration-color: rgb(245 245 245 / 0.1);
}

.decoration-gray-100\/100 {
  text-decoration-color: rgb(245 245 245 / 1);
}

.decoration-gray-100\/15 {
  text-decoration-color: rgb(245 245 245 / 0.15);
}

.decoration-gray-100\/20 {
  text-decoration-color: rgb(245 245 245 / 0.2);
}

.decoration-gray-100\/25 {
  text-decoration-color: rgb(245 245 245 / 0.25);
}

.decoration-gray-100\/30 {
  text-decoration-color: rgb(245 245 245 / 0.3);
}

.decoration-gray-100\/35 {
  text-decoration-color: rgb(245 245 245 / 0.35);
}

.decoration-gray-100\/40 {
  text-decoration-color: rgb(245 245 245 / 0.4);
}

.decoration-gray-100\/45 {
  text-decoration-color: rgb(245 245 245 / 0.45);
}

.decoration-gray-100\/5 {
  text-decoration-color: rgb(245 245 245 / 0.05);
}

.decoration-gray-100\/50 {
  text-decoration-color: rgb(245 245 245 / 0.5);
}

.decoration-gray-100\/55 {
  text-decoration-color: rgb(245 245 245 / 0.55);
}

.decoration-gray-100\/60 {
  text-decoration-color: rgb(245 245 245 / 0.6);
}

.decoration-gray-100\/65 {
  text-decoration-color: rgb(245 245 245 / 0.65);
}

.decoration-gray-100\/70 {
  text-decoration-color: rgb(245 245 245 / 0.7);
}

.decoration-gray-100\/75 {
  text-decoration-color: rgb(245 245 245 / 0.75);
}

.decoration-gray-100\/80 {
  text-decoration-color: rgb(245 245 245 / 0.8);
}

.decoration-gray-100\/85 {
  text-decoration-color: rgb(245 245 245 / 0.85);
}

.decoration-gray-100\/90 {
  text-decoration-color: rgb(245 245 245 / 0.9);
}

.decoration-gray-100\/95 {
  text-decoration-color: rgb(245 245 245 / 0.95);
}

.decoration-gray-200 {
  text-decoration-color: #e5e5e5;
}

.decoration-gray-200\/0 {
  text-decoration-color: rgb(229 229 229 / 0);
}

.decoration-gray-200\/10 {
  text-decoration-color: rgb(229 229 229 / 0.1);
}

.decoration-gray-200\/100 {
  text-decoration-color: rgb(229 229 229 / 1);
}

.decoration-gray-200\/15 {
  text-decoration-color: rgb(229 229 229 / 0.15);
}

.decoration-gray-200\/20 {
  text-decoration-color: rgb(229 229 229 / 0.2);
}

.decoration-gray-200\/25 {
  text-decoration-color: rgb(229 229 229 / 0.25);
}

.decoration-gray-200\/30 {
  text-decoration-color: rgb(229 229 229 / 0.3);
}

.decoration-gray-200\/35 {
  text-decoration-color: rgb(229 229 229 / 0.35);
}

.decoration-gray-200\/40 {
  text-decoration-color: rgb(229 229 229 / 0.4);
}

.decoration-gray-200\/45 {
  text-decoration-color: rgb(229 229 229 / 0.45);
}

.decoration-gray-200\/5 {
  text-decoration-color: rgb(229 229 229 / 0.05);
}

.decoration-gray-200\/50 {
  text-decoration-color: rgb(229 229 229 / 0.5);
}

.decoration-gray-200\/55 {
  text-decoration-color: rgb(229 229 229 / 0.55);
}

.decoration-gray-200\/60 {
  text-decoration-color: rgb(229 229 229 / 0.6);
}

.decoration-gray-200\/65 {
  text-decoration-color: rgb(229 229 229 / 0.65);
}

.decoration-gray-200\/70 {
  text-decoration-color: rgb(229 229 229 / 0.7);
}

.decoration-gray-200\/75 {
  text-decoration-color: rgb(229 229 229 / 0.75);
}

.decoration-gray-200\/80 {
  text-decoration-color: rgb(229 229 229 / 0.8);
}

.decoration-gray-200\/85 {
  text-decoration-color: rgb(229 229 229 / 0.85);
}

.decoration-gray-200\/90 {
  text-decoration-color: rgb(229 229 229 / 0.9);
}

.decoration-gray-200\/95 {
  text-decoration-color: rgb(229 229 229 / 0.95);
}

.decoration-gray-300 {
  text-decoration-color: #d4d4d4;
}

.decoration-gray-300\/0 {
  text-decoration-color: rgb(212 212 212 / 0);
}

.decoration-gray-300\/10 {
  text-decoration-color: rgb(212 212 212 / 0.1);
}

.decoration-gray-300\/100 {
  text-decoration-color: rgb(212 212 212 / 1);
}

.decoration-gray-300\/15 {
  text-decoration-color: rgb(212 212 212 / 0.15);
}

.decoration-gray-300\/20 {
  text-decoration-color: rgb(212 212 212 / 0.2);
}

.decoration-gray-300\/25 {
  text-decoration-color: rgb(212 212 212 / 0.25);
}

.decoration-gray-300\/30 {
  text-decoration-color: rgb(212 212 212 / 0.3);
}

.decoration-gray-300\/35 {
  text-decoration-color: rgb(212 212 212 / 0.35);
}

.decoration-gray-300\/40 {
  text-decoration-color: rgb(212 212 212 / 0.4);
}

.decoration-gray-300\/45 {
  text-decoration-color: rgb(212 212 212 / 0.45);
}

.decoration-gray-300\/5 {
  text-decoration-color: rgb(212 212 212 / 0.05);
}

.decoration-gray-300\/50 {
  text-decoration-color: rgb(212 212 212 / 0.5);
}

.decoration-gray-300\/55 {
  text-decoration-color: rgb(212 212 212 / 0.55);
}

.decoration-gray-300\/60 {
  text-decoration-color: rgb(212 212 212 / 0.6);
}

.decoration-gray-300\/65 {
  text-decoration-color: rgb(212 212 212 / 0.65);
}

.decoration-gray-300\/70 {
  text-decoration-color: rgb(212 212 212 / 0.7);
}

.decoration-gray-300\/75 {
  text-decoration-color: rgb(212 212 212 / 0.75);
}

.decoration-gray-300\/80 {
  text-decoration-color: rgb(212 212 212 / 0.8);
}

.decoration-gray-300\/85 {
  text-decoration-color: rgb(212 212 212 / 0.85);
}

.decoration-gray-300\/90 {
  text-decoration-color: rgb(212 212 212 / 0.9);
}

.decoration-gray-300\/95 {
  text-decoration-color: rgb(212 212 212 / 0.95);
}

.decoration-gray-400 {
  text-decoration-color: #a3a3a3;
}

.decoration-gray-400\/0 {
  text-decoration-color: rgb(163 163 163 / 0);
}

.decoration-gray-400\/10 {
  text-decoration-color: rgb(163 163 163 / 0.1);
}

.decoration-gray-400\/100 {
  text-decoration-color: rgb(163 163 163 / 1);
}

.decoration-gray-400\/15 {
  text-decoration-color: rgb(163 163 163 / 0.15);
}

.decoration-gray-400\/20 {
  text-decoration-color: rgb(163 163 163 / 0.2);
}

.decoration-gray-400\/25 {
  text-decoration-color: rgb(163 163 163 / 0.25);
}

.decoration-gray-400\/30 {
  text-decoration-color: rgb(163 163 163 / 0.3);
}

.decoration-gray-400\/35 {
  text-decoration-color: rgb(163 163 163 / 0.35);
}

.decoration-gray-400\/40 {
  text-decoration-color: rgb(163 163 163 / 0.4);
}

.decoration-gray-400\/45 {
  text-decoration-color: rgb(163 163 163 / 0.45);
}

.decoration-gray-400\/5 {
  text-decoration-color: rgb(163 163 163 / 0.05);
}

.decoration-gray-400\/50 {
  text-decoration-color: rgb(163 163 163 / 0.5);
}

.decoration-gray-400\/55 {
  text-decoration-color: rgb(163 163 163 / 0.55);
}

.decoration-gray-400\/60 {
  text-decoration-color: rgb(163 163 163 / 0.6);
}

.decoration-gray-400\/65 {
  text-decoration-color: rgb(163 163 163 / 0.65);
}

.decoration-gray-400\/70 {
  text-decoration-color: rgb(163 163 163 / 0.7);
}

.decoration-gray-400\/75 {
  text-decoration-color: rgb(163 163 163 / 0.75);
}

.decoration-gray-400\/80 {
  text-decoration-color: rgb(163 163 163 / 0.8);
}

.decoration-gray-400\/85 {
  text-decoration-color: rgb(163 163 163 / 0.85);
}

.decoration-gray-400\/90 {
  text-decoration-color: rgb(163 163 163 / 0.9);
}

.decoration-gray-400\/95 {
  text-decoration-color: rgb(163 163 163 / 0.95);
}

.decoration-gray-50 {
  text-decoration-color: #fafafa;
}

.decoration-gray-50\/0 {
  text-decoration-color: rgb(250 250 250 / 0);
}

.decoration-gray-50\/10 {
  text-decoration-color: rgb(250 250 250 / 0.1);
}

.decoration-gray-50\/100 {
  text-decoration-color: rgb(250 250 250 / 1);
}

.decoration-gray-50\/15 {
  text-decoration-color: rgb(250 250 250 / 0.15);
}

.decoration-gray-50\/20 {
  text-decoration-color: rgb(250 250 250 / 0.2);
}

.decoration-gray-50\/25 {
  text-decoration-color: rgb(250 250 250 / 0.25);
}

.decoration-gray-50\/30 {
  text-decoration-color: rgb(250 250 250 / 0.3);
}

.decoration-gray-50\/35 {
  text-decoration-color: rgb(250 250 250 / 0.35);
}

.decoration-gray-50\/40 {
  text-decoration-color: rgb(250 250 250 / 0.4);
}

.decoration-gray-50\/45 {
  text-decoration-color: rgb(250 250 250 / 0.45);
}

.decoration-gray-50\/5 {
  text-decoration-color: rgb(250 250 250 / 0.05);
}

.decoration-gray-50\/50 {
  text-decoration-color: rgb(250 250 250 / 0.5);
}

.decoration-gray-50\/55 {
  text-decoration-color: rgb(250 250 250 / 0.55);
}

.decoration-gray-50\/60 {
  text-decoration-color: rgb(250 250 250 / 0.6);
}

.decoration-gray-50\/65 {
  text-decoration-color: rgb(250 250 250 / 0.65);
}

.decoration-gray-50\/70 {
  text-decoration-color: rgb(250 250 250 / 0.7);
}

.decoration-gray-50\/75 {
  text-decoration-color: rgb(250 250 250 / 0.75);
}

.decoration-gray-50\/80 {
  text-decoration-color: rgb(250 250 250 / 0.8);
}

.decoration-gray-50\/85 {
  text-decoration-color: rgb(250 250 250 / 0.85);
}

.decoration-gray-50\/90 {
  text-decoration-color: rgb(250 250 250 / 0.9);
}

.decoration-gray-50\/95 {
  text-decoration-color: rgb(250 250 250 / 0.95);
}

.decoration-gray-500 {
  text-decoration-color: #737373;
}

.decoration-gray-500\/0 {
  text-decoration-color: rgb(115 115 115 / 0);
}

.decoration-gray-500\/10 {
  text-decoration-color: rgb(115 115 115 / 0.1);
}

.decoration-gray-500\/100 {
  text-decoration-color: rgb(115 115 115 / 1);
}

.decoration-gray-500\/15 {
  text-decoration-color: rgb(115 115 115 / 0.15);
}

.decoration-gray-500\/20 {
  text-decoration-color: rgb(115 115 115 / 0.2);
}

.decoration-gray-500\/25 {
  text-decoration-color: rgb(115 115 115 / 0.25);
}

.decoration-gray-500\/30 {
  text-decoration-color: rgb(115 115 115 / 0.3);
}

.decoration-gray-500\/35 {
  text-decoration-color: rgb(115 115 115 / 0.35);
}

.decoration-gray-500\/40 {
  text-decoration-color: rgb(115 115 115 / 0.4);
}

.decoration-gray-500\/45 {
  text-decoration-color: rgb(115 115 115 / 0.45);
}

.decoration-gray-500\/5 {
  text-decoration-color: rgb(115 115 115 / 0.05);
}

.decoration-gray-500\/50 {
  text-decoration-color: rgb(115 115 115 / 0.5);
}

.decoration-gray-500\/55 {
  text-decoration-color: rgb(115 115 115 / 0.55);
}

.decoration-gray-500\/60 {
  text-decoration-color: rgb(115 115 115 / 0.6);
}

.decoration-gray-500\/65 {
  text-decoration-color: rgb(115 115 115 / 0.65);
}

.decoration-gray-500\/70 {
  text-decoration-color: rgb(115 115 115 / 0.7);
}

.decoration-gray-500\/75 {
  text-decoration-color: rgb(115 115 115 / 0.75);
}

.decoration-gray-500\/80 {
  text-decoration-color: rgb(115 115 115 / 0.8);
}

.decoration-gray-500\/85 {
  text-decoration-color: rgb(115 115 115 / 0.85);
}

.decoration-gray-500\/90 {
  text-decoration-color: rgb(115 115 115 / 0.9);
}

.decoration-gray-500\/95 {
  text-decoration-color: rgb(115 115 115 / 0.95);
}

.decoration-gray-600 {
  text-decoration-color: #525252;
}

.decoration-gray-600\/0 {
  text-decoration-color: rgb(82 82 82 / 0);
}

.decoration-gray-600\/10 {
  text-decoration-color: rgb(82 82 82 / 0.1);
}

.decoration-gray-600\/100 {
  text-decoration-color: rgb(82 82 82 / 1);
}

.decoration-gray-600\/15 {
  text-decoration-color: rgb(82 82 82 / 0.15);
}

.decoration-gray-600\/20 {
  text-decoration-color: rgb(82 82 82 / 0.2);
}

.decoration-gray-600\/25 {
  text-decoration-color: rgb(82 82 82 / 0.25);
}

.decoration-gray-600\/30 {
  text-decoration-color: rgb(82 82 82 / 0.3);
}

.decoration-gray-600\/35 {
  text-decoration-color: rgb(82 82 82 / 0.35);
}

.decoration-gray-600\/40 {
  text-decoration-color: rgb(82 82 82 / 0.4);
}

.decoration-gray-600\/45 {
  text-decoration-color: rgb(82 82 82 / 0.45);
}

.decoration-gray-600\/5 {
  text-decoration-color: rgb(82 82 82 / 0.05);
}

.decoration-gray-600\/50 {
  text-decoration-color: rgb(82 82 82 / 0.5);
}

.decoration-gray-600\/55 {
  text-decoration-color: rgb(82 82 82 / 0.55);
}

.decoration-gray-600\/60 {
  text-decoration-color: rgb(82 82 82 / 0.6);
}

.decoration-gray-600\/65 {
  text-decoration-color: rgb(82 82 82 / 0.65);
}

.decoration-gray-600\/70 {
  text-decoration-color: rgb(82 82 82 / 0.7);
}

.decoration-gray-600\/75 {
  text-decoration-color: rgb(82 82 82 / 0.75);
}

.decoration-gray-600\/80 {
  text-decoration-color: rgb(82 82 82 / 0.8);
}

.decoration-gray-600\/85 {
  text-decoration-color: rgb(82 82 82 / 0.85);
}

.decoration-gray-600\/90 {
  text-decoration-color: rgb(82 82 82 / 0.9);
}

.decoration-gray-600\/95 {
  text-decoration-color: rgb(82 82 82 / 0.95);
}

.decoration-gray-700 {
  text-decoration-color: #404040;
}

.decoration-gray-700\/0 {
  text-decoration-color: rgb(64 64 64 / 0);
}

.decoration-gray-700\/10 {
  text-decoration-color: rgb(64 64 64 / 0.1);
}

.decoration-gray-700\/100 {
  text-decoration-color: rgb(64 64 64 / 1);
}

.decoration-gray-700\/15 {
  text-decoration-color: rgb(64 64 64 / 0.15);
}

.decoration-gray-700\/20 {
  text-decoration-color: rgb(64 64 64 / 0.2);
}

.decoration-gray-700\/25 {
  text-decoration-color: rgb(64 64 64 / 0.25);
}

.decoration-gray-700\/30 {
  text-decoration-color: rgb(64 64 64 / 0.3);
}

.decoration-gray-700\/35 {
  text-decoration-color: rgb(64 64 64 / 0.35);
}

.decoration-gray-700\/40 {
  text-decoration-color: rgb(64 64 64 / 0.4);
}

.decoration-gray-700\/45 {
  text-decoration-color: rgb(64 64 64 / 0.45);
}

.decoration-gray-700\/5 {
  text-decoration-color: rgb(64 64 64 / 0.05);
}

.decoration-gray-700\/50 {
  text-decoration-color: rgb(64 64 64 / 0.5);
}

.decoration-gray-700\/55 {
  text-decoration-color: rgb(64 64 64 / 0.55);
}

.decoration-gray-700\/60 {
  text-decoration-color: rgb(64 64 64 / 0.6);
}

.decoration-gray-700\/65 {
  text-decoration-color: rgb(64 64 64 / 0.65);
}

.decoration-gray-700\/70 {
  text-decoration-color: rgb(64 64 64 / 0.7);
}

.decoration-gray-700\/75 {
  text-decoration-color: rgb(64 64 64 / 0.75);
}

.decoration-gray-700\/80 {
  text-decoration-color: rgb(64 64 64 / 0.8);
}

.decoration-gray-700\/85 {
  text-decoration-color: rgb(64 64 64 / 0.85);
}

.decoration-gray-700\/90 {
  text-decoration-color: rgb(64 64 64 / 0.9);
}

.decoration-gray-700\/95 {
  text-decoration-color: rgb(64 64 64 / 0.95);
}

.decoration-gray-800 {
  text-decoration-color: #262626;
}

.decoration-gray-800\/0 {
  text-decoration-color: rgb(38 38 38 / 0);
}

.decoration-gray-800\/10 {
  text-decoration-color: rgb(38 38 38 / 0.1);
}

.decoration-gray-800\/100 {
  text-decoration-color: rgb(38 38 38 / 1);
}

.decoration-gray-800\/15 {
  text-decoration-color: rgb(38 38 38 / 0.15);
}

.decoration-gray-800\/20 {
  text-decoration-color: rgb(38 38 38 / 0.2);
}

.decoration-gray-800\/25 {
  text-decoration-color: rgb(38 38 38 / 0.25);
}

.decoration-gray-800\/30 {
  text-decoration-color: rgb(38 38 38 / 0.3);
}

.decoration-gray-800\/35 {
  text-decoration-color: rgb(38 38 38 / 0.35);
}

.decoration-gray-800\/40 {
  text-decoration-color: rgb(38 38 38 / 0.4);
}

.decoration-gray-800\/45 {
  text-decoration-color: rgb(38 38 38 / 0.45);
}

.decoration-gray-800\/5 {
  text-decoration-color: rgb(38 38 38 / 0.05);
}

.decoration-gray-800\/50 {
  text-decoration-color: rgb(38 38 38 / 0.5);
}

.decoration-gray-800\/55 {
  text-decoration-color: rgb(38 38 38 / 0.55);
}

.decoration-gray-800\/60 {
  text-decoration-color: rgb(38 38 38 / 0.6);
}

.decoration-gray-800\/65 {
  text-decoration-color: rgb(38 38 38 / 0.65);
}

.decoration-gray-800\/70 {
  text-decoration-color: rgb(38 38 38 / 0.7);
}

.decoration-gray-800\/75 {
  text-decoration-color: rgb(38 38 38 / 0.75);
}

.decoration-gray-800\/80 {
  text-decoration-color: rgb(38 38 38 / 0.8);
}

.decoration-gray-800\/85 {
  text-decoration-color: rgb(38 38 38 / 0.85);
}

.decoration-gray-800\/90 {
  text-decoration-color: rgb(38 38 38 / 0.9);
}

.decoration-gray-800\/95 {
  text-decoration-color: rgb(38 38 38 / 0.95);
}

.decoration-gray-900 {
  text-decoration-color: #171717;
}

.decoration-gray-900\/0 {
  text-decoration-color: rgb(23 23 23 / 0);
}

.decoration-gray-900\/10 {
  text-decoration-color: rgb(23 23 23 / 0.1);
}

.decoration-gray-900\/100 {
  text-decoration-color: rgb(23 23 23 / 1);
}

.decoration-gray-900\/15 {
  text-decoration-color: rgb(23 23 23 / 0.15);
}

.decoration-gray-900\/20 {
  text-decoration-color: rgb(23 23 23 / 0.2);
}

.decoration-gray-900\/25 {
  text-decoration-color: rgb(23 23 23 / 0.25);
}

.decoration-gray-900\/30 {
  text-decoration-color: rgb(23 23 23 / 0.3);
}

.decoration-gray-900\/35 {
  text-decoration-color: rgb(23 23 23 / 0.35);
}

.decoration-gray-900\/40 {
  text-decoration-color: rgb(23 23 23 / 0.4);
}

.decoration-gray-900\/45 {
  text-decoration-color: rgb(23 23 23 / 0.45);
}

.decoration-gray-900\/5 {
  text-decoration-color: rgb(23 23 23 / 0.05);
}

.decoration-gray-900\/50 {
  text-decoration-color: rgb(23 23 23 / 0.5);
}

.decoration-gray-900\/55 {
  text-decoration-color: rgb(23 23 23 / 0.55);
}

.decoration-gray-900\/60 {
  text-decoration-color: rgb(23 23 23 / 0.6);
}

.decoration-gray-900\/65 {
  text-decoration-color: rgb(23 23 23 / 0.65);
}

.decoration-gray-900\/70 {
  text-decoration-color: rgb(23 23 23 / 0.7);
}

.decoration-gray-900\/75 {
  text-decoration-color: rgb(23 23 23 / 0.75);
}

.decoration-gray-900\/80 {
  text-decoration-color: rgb(23 23 23 / 0.8);
}

.decoration-gray-900\/85 {
  text-decoration-color: rgb(23 23 23 / 0.85);
}

.decoration-gray-900\/90 {
  text-decoration-color: rgb(23 23 23 / 0.9);
}

.decoration-gray-900\/95 {
  text-decoration-color: rgb(23 23 23 / 0.95);
}

.decoration-gray-950 {
  text-decoration-color: #0a0a0a;
}

.decoration-gray-950\/0 {
  text-decoration-color: rgb(10 10 10 / 0);
}

.decoration-gray-950\/10 {
  text-decoration-color: rgb(10 10 10 / 0.1);
}

.decoration-gray-950\/100 {
  text-decoration-color: rgb(10 10 10 / 1);
}

.decoration-gray-950\/15 {
  text-decoration-color: rgb(10 10 10 / 0.15);
}

.decoration-gray-950\/20 {
  text-decoration-color: rgb(10 10 10 / 0.2);
}

.decoration-gray-950\/25 {
  text-decoration-color: rgb(10 10 10 / 0.25);
}

.decoration-gray-950\/30 {
  text-decoration-color: rgb(10 10 10 / 0.3);
}

.decoration-gray-950\/35 {
  text-decoration-color: rgb(10 10 10 / 0.35);
}

.decoration-gray-950\/40 {
  text-decoration-color: rgb(10 10 10 / 0.4);
}

.decoration-gray-950\/45 {
  text-decoration-color: rgb(10 10 10 / 0.45);
}

.decoration-gray-950\/5 {
  text-decoration-color: rgb(10 10 10 / 0.05);
}

.decoration-gray-950\/50 {
  text-decoration-color: rgb(10 10 10 / 0.5);
}

.decoration-gray-950\/55 {
  text-decoration-color: rgb(10 10 10 / 0.55);
}

.decoration-gray-950\/60 {
  text-decoration-color: rgb(10 10 10 / 0.6);
}

.decoration-gray-950\/65 {
  text-decoration-color: rgb(10 10 10 / 0.65);
}

.decoration-gray-950\/70 {
  text-decoration-color: rgb(10 10 10 / 0.7);
}

.decoration-gray-950\/75 {
  text-decoration-color: rgb(10 10 10 / 0.75);
}

.decoration-gray-950\/80 {
  text-decoration-color: rgb(10 10 10 / 0.8);
}

.decoration-gray-950\/85 {
  text-decoration-color: rgb(10 10 10 / 0.85);
}

.decoration-gray-950\/90 {
  text-decoration-color: rgb(10 10 10 / 0.9);
}

.decoration-gray-950\/95 {
  text-decoration-color: rgb(10 10 10 / 0.95);
}

.decoration-green-100 {
  text-decoration-color: #dcfce7;
}

.decoration-green-100\/0 {
  text-decoration-color: rgb(220 252 231 / 0);
}

.decoration-green-100\/10 {
  text-decoration-color: rgb(220 252 231 / 0.1);
}

.decoration-green-100\/100 {
  text-decoration-color: rgb(220 252 231 / 1);
}

.decoration-green-100\/15 {
  text-decoration-color: rgb(220 252 231 / 0.15);
}

.decoration-green-100\/20 {
  text-decoration-color: rgb(220 252 231 / 0.2);
}

.decoration-green-100\/25 {
  text-decoration-color: rgb(220 252 231 / 0.25);
}

.decoration-green-100\/30 {
  text-decoration-color: rgb(220 252 231 / 0.3);
}

.decoration-green-100\/35 {
  text-decoration-color: rgb(220 252 231 / 0.35);
}

.decoration-green-100\/40 {
  text-decoration-color: rgb(220 252 231 / 0.4);
}

.decoration-green-100\/45 {
  text-decoration-color: rgb(220 252 231 / 0.45);
}

.decoration-green-100\/5 {
  text-decoration-color: rgb(220 252 231 / 0.05);
}

.decoration-green-100\/50 {
  text-decoration-color: rgb(220 252 231 / 0.5);
}

.decoration-green-100\/55 {
  text-decoration-color: rgb(220 252 231 / 0.55);
}

.decoration-green-100\/60 {
  text-decoration-color: rgb(220 252 231 / 0.6);
}

.decoration-green-100\/65 {
  text-decoration-color: rgb(220 252 231 / 0.65);
}

.decoration-green-100\/70 {
  text-decoration-color: rgb(220 252 231 / 0.7);
}

.decoration-green-100\/75 {
  text-decoration-color: rgb(220 252 231 / 0.75);
}

.decoration-green-100\/80 {
  text-decoration-color: rgb(220 252 231 / 0.8);
}

.decoration-green-100\/85 {
  text-decoration-color: rgb(220 252 231 / 0.85);
}

.decoration-green-100\/90 {
  text-decoration-color: rgb(220 252 231 / 0.9);
}

.decoration-green-100\/95 {
  text-decoration-color: rgb(220 252 231 / 0.95);
}

.decoration-green-200 {
  text-decoration-color: #bbf7d0;
}

.decoration-green-200\/0 {
  text-decoration-color: rgb(187 247 208 / 0);
}

.decoration-green-200\/10 {
  text-decoration-color: rgb(187 247 208 / 0.1);
}

.decoration-green-200\/100 {
  text-decoration-color: rgb(187 247 208 / 1);
}

.decoration-green-200\/15 {
  text-decoration-color: rgb(187 247 208 / 0.15);
}

.decoration-green-200\/20 {
  text-decoration-color: rgb(187 247 208 / 0.2);
}

.decoration-green-200\/25 {
  text-decoration-color: rgb(187 247 208 / 0.25);
}

.decoration-green-200\/30 {
  text-decoration-color: rgb(187 247 208 / 0.3);
}

.decoration-green-200\/35 {
  text-decoration-color: rgb(187 247 208 / 0.35);
}

.decoration-green-200\/40 {
  text-decoration-color: rgb(187 247 208 / 0.4);
}

.decoration-green-200\/45 {
  text-decoration-color: rgb(187 247 208 / 0.45);
}

.decoration-green-200\/5 {
  text-decoration-color: rgb(187 247 208 / 0.05);
}

.decoration-green-200\/50 {
  text-decoration-color: rgb(187 247 208 / 0.5);
}

.decoration-green-200\/55 {
  text-decoration-color: rgb(187 247 208 / 0.55);
}

.decoration-green-200\/60 {
  text-decoration-color: rgb(187 247 208 / 0.6);
}

.decoration-green-200\/65 {
  text-decoration-color: rgb(187 247 208 / 0.65);
}

.decoration-green-200\/70 {
  text-decoration-color: rgb(187 247 208 / 0.7);
}

.decoration-green-200\/75 {
  text-decoration-color: rgb(187 247 208 / 0.75);
}

.decoration-green-200\/80 {
  text-decoration-color: rgb(187 247 208 / 0.8);
}

.decoration-green-200\/85 {
  text-decoration-color: rgb(187 247 208 / 0.85);
}

.decoration-green-200\/90 {
  text-decoration-color: rgb(187 247 208 / 0.9);
}

.decoration-green-200\/95 {
  text-decoration-color: rgb(187 247 208 / 0.95);
}

.decoration-green-300 {
  text-decoration-color: #86efac;
}

.decoration-green-300\/0 {
  text-decoration-color: rgb(134 239 172 / 0);
}

.decoration-green-300\/10 {
  text-decoration-color: rgb(134 239 172 / 0.1);
}

.decoration-green-300\/100 {
  text-decoration-color: rgb(134 239 172 / 1);
}

.decoration-green-300\/15 {
  text-decoration-color: rgb(134 239 172 / 0.15);
}

.decoration-green-300\/20 {
  text-decoration-color: rgb(134 239 172 / 0.2);
}

.decoration-green-300\/25 {
  text-decoration-color: rgb(134 239 172 / 0.25);
}

.decoration-green-300\/30 {
  text-decoration-color: rgb(134 239 172 / 0.3);
}

.decoration-green-300\/35 {
  text-decoration-color: rgb(134 239 172 / 0.35);
}

.decoration-green-300\/40 {
  text-decoration-color: rgb(134 239 172 / 0.4);
}

.decoration-green-300\/45 {
  text-decoration-color: rgb(134 239 172 / 0.45);
}

.decoration-green-300\/5 {
  text-decoration-color: rgb(134 239 172 / 0.05);
}

.decoration-green-300\/50 {
  text-decoration-color: rgb(134 239 172 / 0.5);
}

.decoration-green-300\/55 {
  text-decoration-color: rgb(134 239 172 / 0.55);
}

.decoration-green-300\/60 {
  text-decoration-color: rgb(134 239 172 / 0.6);
}

.decoration-green-300\/65 {
  text-decoration-color: rgb(134 239 172 / 0.65);
}

.decoration-green-300\/70 {
  text-decoration-color: rgb(134 239 172 / 0.7);
}

.decoration-green-300\/75 {
  text-decoration-color: rgb(134 239 172 / 0.75);
}

.decoration-green-300\/80 {
  text-decoration-color: rgb(134 239 172 / 0.8);
}

.decoration-green-300\/85 {
  text-decoration-color: rgb(134 239 172 / 0.85);
}

.decoration-green-300\/90 {
  text-decoration-color: rgb(134 239 172 / 0.9);
}

.decoration-green-300\/95 {
  text-decoration-color: rgb(134 239 172 / 0.95);
}

.decoration-green-400 {
  text-decoration-color: #4ade80;
}

.decoration-green-400\/0 {
  text-decoration-color: rgb(74 222 128 / 0);
}

.decoration-green-400\/10 {
  text-decoration-color: rgb(74 222 128 / 0.1);
}

.decoration-green-400\/100 {
  text-decoration-color: rgb(74 222 128 / 1);
}

.decoration-green-400\/15 {
  text-decoration-color: rgb(74 222 128 / 0.15);
}

.decoration-green-400\/20 {
  text-decoration-color: rgb(74 222 128 / 0.2);
}

.decoration-green-400\/25 {
  text-decoration-color: rgb(74 222 128 / 0.25);
}

.decoration-green-400\/30 {
  text-decoration-color: rgb(74 222 128 / 0.3);
}

.decoration-green-400\/35 {
  text-decoration-color: rgb(74 222 128 / 0.35);
}

.decoration-green-400\/40 {
  text-decoration-color: rgb(74 222 128 / 0.4);
}

.decoration-green-400\/45 {
  text-decoration-color: rgb(74 222 128 / 0.45);
}

.decoration-green-400\/5 {
  text-decoration-color: rgb(74 222 128 / 0.05);
}

.decoration-green-400\/50 {
  text-decoration-color: rgb(74 222 128 / 0.5);
}

.decoration-green-400\/55 {
  text-decoration-color: rgb(74 222 128 / 0.55);
}

.decoration-green-400\/60 {
  text-decoration-color: rgb(74 222 128 / 0.6);
}

.decoration-green-400\/65 {
  text-decoration-color: rgb(74 222 128 / 0.65);
}

.decoration-green-400\/70 {
  text-decoration-color: rgb(74 222 128 / 0.7);
}

.decoration-green-400\/75 {
  text-decoration-color: rgb(74 222 128 / 0.75);
}

.decoration-green-400\/80 {
  text-decoration-color: rgb(74 222 128 / 0.8);
}

.decoration-green-400\/85 {
  text-decoration-color: rgb(74 222 128 / 0.85);
}

.decoration-green-400\/90 {
  text-decoration-color: rgb(74 222 128 / 0.9);
}

.decoration-green-400\/95 {
  text-decoration-color: rgb(74 222 128 / 0.95);
}

.decoration-green-50 {
  text-decoration-color: #f0fdf4;
}

.decoration-green-50\/0 {
  text-decoration-color: rgb(240 253 244 / 0);
}

.decoration-green-50\/10 {
  text-decoration-color: rgb(240 253 244 / 0.1);
}

.decoration-green-50\/100 {
  text-decoration-color: rgb(240 253 244 / 1);
}

.decoration-green-50\/15 {
  text-decoration-color: rgb(240 253 244 / 0.15);
}

.decoration-green-50\/20 {
  text-decoration-color: rgb(240 253 244 / 0.2);
}

.decoration-green-50\/25 {
  text-decoration-color: rgb(240 253 244 / 0.25);
}

.decoration-green-50\/30 {
  text-decoration-color: rgb(240 253 244 / 0.3);
}

.decoration-green-50\/35 {
  text-decoration-color: rgb(240 253 244 / 0.35);
}

.decoration-green-50\/40 {
  text-decoration-color: rgb(240 253 244 / 0.4);
}

.decoration-green-50\/45 {
  text-decoration-color: rgb(240 253 244 / 0.45);
}

.decoration-green-50\/5 {
  text-decoration-color: rgb(240 253 244 / 0.05);
}

.decoration-green-50\/50 {
  text-decoration-color: rgb(240 253 244 / 0.5);
}

.decoration-green-50\/55 {
  text-decoration-color: rgb(240 253 244 / 0.55);
}

.decoration-green-50\/60 {
  text-decoration-color: rgb(240 253 244 / 0.6);
}

.decoration-green-50\/65 {
  text-decoration-color: rgb(240 253 244 / 0.65);
}

.decoration-green-50\/70 {
  text-decoration-color: rgb(240 253 244 / 0.7);
}

.decoration-green-50\/75 {
  text-decoration-color: rgb(240 253 244 / 0.75);
}

.decoration-green-50\/80 {
  text-decoration-color: rgb(240 253 244 / 0.8);
}

.decoration-green-50\/85 {
  text-decoration-color: rgb(240 253 244 / 0.85);
}

.decoration-green-50\/90 {
  text-decoration-color: rgb(240 253 244 / 0.9);
}

.decoration-green-50\/95 {
  text-decoration-color: rgb(240 253 244 / 0.95);
}

.decoration-green-500 {
  text-decoration-color: #22c55e;
}

.decoration-green-500\/0 {
  text-decoration-color: rgb(34 197 94 / 0);
}

.decoration-green-500\/10 {
  text-decoration-color: rgb(34 197 94 / 0.1);
}

.decoration-green-500\/100 {
  text-decoration-color: rgb(34 197 94 / 1);
}

.decoration-green-500\/15 {
  text-decoration-color: rgb(34 197 94 / 0.15);
}

.decoration-green-500\/20 {
  text-decoration-color: rgb(34 197 94 / 0.2);
}

.decoration-green-500\/25 {
  text-decoration-color: rgb(34 197 94 / 0.25);
}

.decoration-green-500\/30 {
  text-decoration-color: rgb(34 197 94 / 0.3);
}

.decoration-green-500\/35 {
  text-decoration-color: rgb(34 197 94 / 0.35);
}

.decoration-green-500\/40 {
  text-decoration-color: rgb(34 197 94 / 0.4);
}

.decoration-green-500\/45 {
  text-decoration-color: rgb(34 197 94 / 0.45);
}

.decoration-green-500\/5 {
  text-decoration-color: rgb(34 197 94 / 0.05);
}

.decoration-green-500\/50 {
  text-decoration-color: rgb(34 197 94 / 0.5);
}

.decoration-green-500\/55 {
  text-decoration-color: rgb(34 197 94 / 0.55);
}

.decoration-green-500\/60 {
  text-decoration-color: rgb(34 197 94 / 0.6);
}

.decoration-green-500\/65 {
  text-decoration-color: rgb(34 197 94 / 0.65);
}

.decoration-green-500\/70 {
  text-decoration-color: rgb(34 197 94 / 0.7);
}

.decoration-green-500\/75 {
  text-decoration-color: rgb(34 197 94 / 0.75);
}

.decoration-green-500\/80 {
  text-decoration-color: rgb(34 197 94 / 0.8);
}

.decoration-green-500\/85 {
  text-decoration-color: rgb(34 197 94 / 0.85);
}

.decoration-green-500\/90 {
  text-decoration-color: rgb(34 197 94 / 0.9);
}

.decoration-green-500\/95 {
  text-decoration-color: rgb(34 197 94 / 0.95);
}

.decoration-green-600 {
  text-decoration-color: #16a34a;
}

.decoration-green-600\/0 {
  text-decoration-color: rgb(22 163 74 / 0);
}

.decoration-green-600\/10 {
  text-decoration-color: rgb(22 163 74 / 0.1);
}

.decoration-green-600\/100 {
  text-decoration-color: rgb(22 163 74 / 1);
}

.decoration-green-600\/15 {
  text-decoration-color: rgb(22 163 74 / 0.15);
}

.decoration-green-600\/20 {
  text-decoration-color: rgb(22 163 74 / 0.2);
}

.decoration-green-600\/25 {
  text-decoration-color: rgb(22 163 74 / 0.25);
}

.decoration-green-600\/30 {
  text-decoration-color: rgb(22 163 74 / 0.3);
}

.decoration-green-600\/35 {
  text-decoration-color: rgb(22 163 74 / 0.35);
}

.decoration-green-600\/40 {
  text-decoration-color: rgb(22 163 74 / 0.4);
}

.decoration-green-600\/45 {
  text-decoration-color: rgb(22 163 74 / 0.45);
}

.decoration-green-600\/5 {
  text-decoration-color: rgb(22 163 74 / 0.05);
}

.decoration-green-600\/50 {
  text-decoration-color: rgb(22 163 74 / 0.5);
}

.decoration-green-600\/55 {
  text-decoration-color: rgb(22 163 74 / 0.55);
}

.decoration-green-600\/60 {
  text-decoration-color: rgb(22 163 74 / 0.6);
}

.decoration-green-600\/65 {
  text-decoration-color: rgb(22 163 74 / 0.65);
}

.decoration-green-600\/70 {
  text-decoration-color: rgb(22 163 74 / 0.7);
}

.decoration-green-600\/75 {
  text-decoration-color: rgb(22 163 74 / 0.75);
}

.decoration-green-600\/80 {
  text-decoration-color: rgb(22 163 74 / 0.8);
}

.decoration-green-600\/85 {
  text-decoration-color: rgb(22 163 74 / 0.85);
}

.decoration-green-600\/90 {
  text-decoration-color: rgb(22 163 74 / 0.9);
}

.decoration-green-600\/95 {
  text-decoration-color: rgb(22 163 74 / 0.95);
}

.decoration-green-700 {
  text-decoration-color: #15803d;
}

.decoration-green-700\/0 {
  text-decoration-color: rgb(21 128 61 / 0);
}

.decoration-green-700\/10 {
  text-decoration-color: rgb(21 128 61 / 0.1);
}

.decoration-green-700\/100 {
  text-decoration-color: rgb(21 128 61 / 1);
}

.decoration-green-700\/15 {
  text-decoration-color: rgb(21 128 61 / 0.15);
}

.decoration-green-700\/20 {
  text-decoration-color: rgb(21 128 61 / 0.2);
}

.decoration-green-700\/25 {
  text-decoration-color: rgb(21 128 61 / 0.25);
}

.decoration-green-700\/30 {
  text-decoration-color: rgb(21 128 61 / 0.3);
}

.decoration-green-700\/35 {
  text-decoration-color: rgb(21 128 61 / 0.35);
}

.decoration-green-700\/40 {
  text-decoration-color: rgb(21 128 61 / 0.4);
}

.decoration-green-700\/45 {
  text-decoration-color: rgb(21 128 61 / 0.45);
}

.decoration-green-700\/5 {
  text-decoration-color: rgb(21 128 61 / 0.05);
}

.decoration-green-700\/50 {
  text-decoration-color: rgb(21 128 61 / 0.5);
}

.decoration-green-700\/55 {
  text-decoration-color: rgb(21 128 61 / 0.55);
}

.decoration-green-700\/60 {
  text-decoration-color: rgb(21 128 61 / 0.6);
}

.decoration-green-700\/65 {
  text-decoration-color: rgb(21 128 61 / 0.65);
}

.decoration-green-700\/70 {
  text-decoration-color: rgb(21 128 61 / 0.7);
}

.decoration-green-700\/75 {
  text-decoration-color: rgb(21 128 61 / 0.75);
}

.decoration-green-700\/80 {
  text-decoration-color: rgb(21 128 61 / 0.8);
}

.decoration-green-700\/85 {
  text-decoration-color: rgb(21 128 61 / 0.85);
}

.decoration-green-700\/90 {
  text-decoration-color: rgb(21 128 61 / 0.9);
}

.decoration-green-700\/95 {
  text-decoration-color: rgb(21 128 61 / 0.95);
}

.decoration-green-800 {
  text-decoration-color: #166534;
}

.decoration-green-800\/0 {
  text-decoration-color: rgb(22 101 52 / 0);
}

.decoration-green-800\/10 {
  text-decoration-color: rgb(22 101 52 / 0.1);
}

.decoration-green-800\/100 {
  text-decoration-color: rgb(22 101 52 / 1);
}

.decoration-green-800\/15 {
  text-decoration-color: rgb(22 101 52 / 0.15);
}

.decoration-green-800\/20 {
  text-decoration-color: rgb(22 101 52 / 0.2);
}

.decoration-green-800\/25 {
  text-decoration-color: rgb(22 101 52 / 0.25);
}

.decoration-green-800\/30 {
  text-decoration-color: rgb(22 101 52 / 0.3);
}

.decoration-green-800\/35 {
  text-decoration-color: rgb(22 101 52 / 0.35);
}

.decoration-green-800\/40 {
  text-decoration-color: rgb(22 101 52 / 0.4);
}

.decoration-green-800\/45 {
  text-decoration-color: rgb(22 101 52 / 0.45);
}

.decoration-green-800\/5 {
  text-decoration-color: rgb(22 101 52 / 0.05);
}

.decoration-green-800\/50 {
  text-decoration-color: rgb(22 101 52 / 0.5);
}

.decoration-green-800\/55 {
  text-decoration-color: rgb(22 101 52 / 0.55);
}

.decoration-green-800\/60 {
  text-decoration-color: rgb(22 101 52 / 0.6);
}

.decoration-green-800\/65 {
  text-decoration-color: rgb(22 101 52 / 0.65);
}

.decoration-green-800\/70 {
  text-decoration-color: rgb(22 101 52 / 0.7);
}

.decoration-green-800\/75 {
  text-decoration-color: rgb(22 101 52 / 0.75);
}

.decoration-green-800\/80 {
  text-decoration-color: rgb(22 101 52 / 0.8);
}

.decoration-green-800\/85 {
  text-decoration-color: rgb(22 101 52 / 0.85);
}

.decoration-green-800\/90 {
  text-decoration-color: rgb(22 101 52 / 0.9);
}

.decoration-green-800\/95 {
  text-decoration-color: rgb(22 101 52 / 0.95);
}

.decoration-green-900 {
  text-decoration-color: #14532d;
}

.decoration-green-900\/0 {
  text-decoration-color: rgb(20 83 45 / 0);
}

.decoration-green-900\/10 {
  text-decoration-color: rgb(20 83 45 / 0.1);
}

.decoration-green-900\/100 {
  text-decoration-color: rgb(20 83 45 / 1);
}

.decoration-green-900\/15 {
  text-decoration-color: rgb(20 83 45 / 0.15);
}

.decoration-green-900\/20 {
  text-decoration-color: rgb(20 83 45 / 0.2);
}

.decoration-green-900\/25 {
  text-decoration-color: rgb(20 83 45 / 0.25);
}

.decoration-green-900\/30 {
  text-decoration-color: rgb(20 83 45 / 0.3);
}

.decoration-green-900\/35 {
  text-decoration-color: rgb(20 83 45 / 0.35);
}

.decoration-green-900\/40 {
  text-decoration-color: rgb(20 83 45 / 0.4);
}

.decoration-green-900\/45 {
  text-decoration-color: rgb(20 83 45 / 0.45);
}

.decoration-green-900\/5 {
  text-decoration-color: rgb(20 83 45 / 0.05);
}

.decoration-green-900\/50 {
  text-decoration-color: rgb(20 83 45 / 0.5);
}

.decoration-green-900\/55 {
  text-decoration-color: rgb(20 83 45 / 0.55);
}

.decoration-green-900\/60 {
  text-decoration-color: rgb(20 83 45 / 0.6);
}

.decoration-green-900\/65 {
  text-decoration-color: rgb(20 83 45 / 0.65);
}

.decoration-green-900\/70 {
  text-decoration-color: rgb(20 83 45 / 0.7);
}

.decoration-green-900\/75 {
  text-decoration-color: rgb(20 83 45 / 0.75);
}

.decoration-green-900\/80 {
  text-decoration-color: rgb(20 83 45 / 0.8);
}

.decoration-green-900\/85 {
  text-decoration-color: rgb(20 83 45 / 0.85);
}

.decoration-green-900\/90 {
  text-decoration-color: rgb(20 83 45 / 0.9);
}

.decoration-green-900\/95 {
  text-decoration-color: rgb(20 83 45 / 0.95);
}

.decoration-green-950 {
  text-decoration-color: #052e16;
}

.decoration-green-950\/0 {
  text-decoration-color: rgb(5 46 22 / 0);
}

.decoration-green-950\/10 {
  text-decoration-color: rgb(5 46 22 / 0.1);
}

.decoration-green-950\/100 {
  text-decoration-color: rgb(5 46 22 / 1);
}

.decoration-green-950\/15 {
  text-decoration-color: rgb(5 46 22 / 0.15);
}

.decoration-green-950\/20 {
  text-decoration-color: rgb(5 46 22 / 0.2);
}

.decoration-green-950\/25 {
  text-decoration-color: rgb(5 46 22 / 0.25);
}

.decoration-green-950\/30 {
  text-decoration-color: rgb(5 46 22 / 0.3);
}

.decoration-green-950\/35 {
  text-decoration-color: rgb(5 46 22 / 0.35);
}

.decoration-green-950\/40 {
  text-decoration-color: rgb(5 46 22 / 0.4);
}

.decoration-green-950\/45 {
  text-decoration-color: rgb(5 46 22 / 0.45);
}

.decoration-green-950\/5 {
  text-decoration-color: rgb(5 46 22 / 0.05);
}

.decoration-green-950\/50 {
  text-decoration-color: rgb(5 46 22 / 0.5);
}

.decoration-green-950\/55 {
  text-decoration-color: rgb(5 46 22 / 0.55);
}

.decoration-green-950\/60 {
  text-decoration-color: rgb(5 46 22 / 0.6);
}

.decoration-green-950\/65 {
  text-decoration-color: rgb(5 46 22 / 0.65);
}

.decoration-green-950\/70 {
  text-decoration-color: rgb(5 46 22 / 0.7);
}

.decoration-green-950\/75 {
  text-decoration-color: rgb(5 46 22 / 0.75);
}

.decoration-green-950\/80 {
  text-decoration-color: rgb(5 46 22 / 0.8);
}

.decoration-green-950\/85 {
  text-decoration-color: rgb(5 46 22 / 0.85);
}

.decoration-green-950\/90 {
  text-decoration-color: rgb(5 46 22 / 0.9);
}

.decoration-green-950\/95 {
  text-decoration-color: rgb(5 46 22 / 0.95);
}

.decoration-red-100 {
  text-decoration-color: #fee2e2;
}

.decoration-red-100\/0 {
  text-decoration-color: rgb(254 226 226 / 0);
}

.decoration-red-100\/10 {
  text-decoration-color: rgb(254 226 226 / 0.1);
}

.decoration-red-100\/100 {
  text-decoration-color: rgb(254 226 226 / 1);
}

.decoration-red-100\/15 {
  text-decoration-color: rgb(254 226 226 / 0.15);
}

.decoration-red-100\/20 {
  text-decoration-color: rgb(254 226 226 / 0.2);
}

.decoration-red-100\/25 {
  text-decoration-color: rgb(254 226 226 / 0.25);
}

.decoration-red-100\/30 {
  text-decoration-color: rgb(254 226 226 / 0.3);
}

.decoration-red-100\/35 {
  text-decoration-color: rgb(254 226 226 / 0.35);
}

.decoration-red-100\/40 {
  text-decoration-color: rgb(254 226 226 / 0.4);
}

.decoration-red-100\/45 {
  text-decoration-color: rgb(254 226 226 / 0.45);
}

.decoration-red-100\/5 {
  text-decoration-color: rgb(254 226 226 / 0.05);
}

.decoration-red-100\/50 {
  text-decoration-color: rgb(254 226 226 / 0.5);
}

.decoration-red-100\/55 {
  text-decoration-color: rgb(254 226 226 / 0.55);
}

.decoration-red-100\/60 {
  text-decoration-color: rgb(254 226 226 / 0.6);
}

.decoration-red-100\/65 {
  text-decoration-color: rgb(254 226 226 / 0.65);
}

.decoration-red-100\/70 {
  text-decoration-color: rgb(254 226 226 / 0.7);
}

.decoration-red-100\/75 {
  text-decoration-color: rgb(254 226 226 / 0.75);
}

.decoration-red-100\/80 {
  text-decoration-color: rgb(254 226 226 / 0.8);
}

.decoration-red-100\/85 {
  text-decoration-color: rgb(254 226 226 / 0.85);
}

.decoration-red-100\/90 {
  text-decoration-color: rgb(254 226 226 / 0.9);
}

.decoration-red-100\/95 {
  text-decoration-color: rgb(254 226 226 / 0.95);
}

.decoration-red-200 {
  text-decoration-color: #fecaca;
}

.decoration-red-200\/0 {
  text-decoration-color: rgb(254 202 202 / 0);
}

.decoration-red-200\/10 {
  text-decoration-color: rgb(254 202 202 / 0.1);
}

.decoration-red-200\/100 {
  text-decoration-color: rgb(254 202 202 / 1);
}

.decoration-red-200\/15 {
  text-decoration-color: rgb(254 202 202 / 0.15);
}

.decoration-red-200\/20 {
  text-decoration-color: rgb(254 202 202 / 0.2);
}

.decoration-red-200\/25 {
  text-decoration-color: rgb(254 202 202 / 0.25);
}

.decoration-red-200\/30 {
  text-decoration-color: rgb(254 202 202 / 0.3);
}

.decoration-red-200\/35 {
  text-decoration-color: rgb(254 202 202 / 0.35);
}

.decoration-red-200\/40 {
  text-decoration-color: rgb(254 202 202 / 0.4);
}

.decoration-red-200\/45 {
  text-decoration-color: rgb(254 202 202 / 0.45);
}

.decoration-red-200\/5 {
  text-decoration-color: rgb(254 202 202 / 0.05);
}

.decoration-red-200\/50 {
  text-decoration-color: rgb(254 202 202 / 0.5);
}

.decoration-red-200\/55 {
  text-decoration-color: rgb(254 202 202 / 0.55);
}

.decoration-red-200\/60 {
  text-decoration-color: rgb(254 202 202 / 0.6);
}

.decoration-red-200\/65 {
  text-decoration-color: rgb(254 202 202 / 0.65);
}

.decoration-red-200\/70 {
  text-decoration-color: rgb(254 202 202 / 0.7);
}

.decoration-red-200\/75 {
  text-decoration-color: rgb(254 202 202 / 0.75);
}

.decoration-red-200\/80 {
  text-decoration-color: rgb(254 202 202 / 0.8);
}

.decoration-red-200\/85 {
  text-decoration-color: rgb(254 202 202 / 0.85);
}

.decoration-red-200\/90 {
  text-decoration-color: rgb(254 202 202 / 0.9);
}

.decoration-red-200\/95 {
  text-decoration-color: rgb(254 202 202 / 0.95);
}

.decoration-red-300 {
  text-decoration-color: #fca5a5;
}

.decoration-red-300\/0 {
  text-decoration-color: rgb(252 165 165 / 0);
}

.decoration-red-300\/10 {
  text-decoration-color: rgb(252 165 165 / 0.1);
}

.decoration-red-300\/100 {
  text-decoration-color: rgb(252 165 165 / 1);
}

.decoration-red-300\/15 {
  text-decoration-color: rgb(252 165 165 / 0.15);
}

.decoration-red-300\/20 {
  text-decoration-color: rgb(252 165 165 / 0.2);
}

.decoration-red-300\/25 {
  text-decoration-color: rgb(252 165 165 / 0.25);
}

.decoration-red-300\/30 {
  text-decoration-color: rgb(252 165 165 / 0.3);
}

.decoration-red-300\/35 {
  text-decoration-color: rgb(252 165 165 / 0.35);
}

.decoration-red-300\/40 {
  text-decoration-color: rgb(252 165 165 / 0.4);
}

.decoration-red-300\/45 {
  text-decoration-color: rgb(252 165 165 / 0.45);
}

.decoration-red-300\/5 {
  text-decoration-color: rgb(252 165 165 / 0.05);
}

.decoration-red-300\/50 {
  text-decoration-color: rgb(252 165 165 / 0.5);
}

.decoration-red-300\/55 {
  text-decoration-color: rgb(252 165 165 / 0.55);
}

.decoration-red-300\/60 {
  text-decoration-color: rgb(252 165 165 / 0.6);
}

.decoration-red-300\/65 {
  text-decoration-color: rgb(252 165 165 / 0.65);
}

.decoration-red-300\/70 {
  text-decoration-color: rgb(252 165 165 / 0.7);
}

.decoration-red-300\/75 {
  text-decoration-color: rgb(252 165 165 / 0.75);
}

.decoration-red-300\/80 {
  text-decoration-color: rgb(252 165 165 / 0.8);
}

.decoration-red-300\/85 {
  text-decoration-color: rgb(252 165 165 / 0.85);
}

.decoration-red-300\/90 {
  text-decoration-color: rgb(252 165 165 / 0.9);
}

.decoration-red-300\/95 {
  text-decoration-color: rgb(252 165 165 / 0.95);
}

.decoration-red-400 {
  text-decoration-color: #f87171;
}

.decoration-red-400\/0 {
  text-decoration-color: rgb(248 113 113 / 0);
}

.decoration-red-400\/10 {
  text-decoration-color: rgb(248 113 113 / 0.1);
}

.decoration-red-400\/100 {
  text-decoration-color: rgb(248 113 113 / 1);
}

.decoration-red-400\/15 {
  text-decoration-color: rgb(248 113 113 / 0.15);
}

.decoration-red-400\/20 {
  text-decoration-color: rgb(248 113 113 / 0.2);
}

.decoration-red-400\/25 {
  text-decoration-color: rgb(248 113 113 / 0.25);
}

.decoration-red-400\/30 {
  text-decoration-color: rgb(248 113 113 / 0.3);
}

.decoration-red-400\/35 {
  text-decoration-color: rgb(248 113 113 / 0.35);
}

.decoration-red-400\/40 {
  text-decoration-color: rgb(248 113 113 / 0.4);
}

.decoration-red-400\/45 {
  text-decoration-color: rgb(248 113 113 / 0.45);
}

.decoration-red-400\/5 {
  text-decoration-color: rgb(248 113 113 / 0.05);
}

.decoration-red-400\/50 {
  text-decoration-color: rgb(248 113 113 / 0.5);
}

.decoration-red-400\/55 {
  text-decoration-color: rgb(248 113 113 / 0.55);
}

.decoration-red-400\/60 {
  text-decoration-color: rgb(248 113 113 / 0.6);
}

.decoration-red-400\/65 {
  text-decoration-color: rgb(248 113 113 / 0.65);
}

.decoration-red-400\/70 {
  text-decoration-color: rgb(248 113 113 / 0.7);
}

.decoration-red-400\/75 {
  text-decoration-color: rgb(248 113 113 / 0.75);
}

.decoration-red-400\/80 {
  text-decoration-color: rgb(248 113 113 / 0.8);
}

.decoration-red-400\/85 {
  text-decoration-color: rgb(248 113 113 / 0.85);
}

.decoration-red-400\/90 {
  text-decoration-color: rgb(248 113 113 / 0.9);
}

.decoration-red-400\/95 {
  text-decoration-color: rgb(248 113 113 / 0.95);
}

.decoration-red-50 {
  text-decoration-color: #fef2f2;
}

.decoration-red-50\/0 {
  text-decoration-color: rgb(254 242 242 / 0);
}

.decoration-red-50\/10 {
  text-decoration-color: rgb(254 242 242 / 0.1);
}

.decoration-red-50\/100 {
  text-decoration-color: rgb(254 242 242 / 1);
}

.decoration-red-50\/15 {
  text-decoration-color: rgb(254 242 242 / 0.15);
}

.decoration-red-50\/20 {
  text-decoration-color: rgb(254 242 242 / 0.2);
}

.decoration-red-50\/25 {
  text-decoration-color: rgb(254 242 242 / 0.25);
}

.decoration-red-50\/30 {
  text-decoration-color: rgb(254 242 242 / 0.3);
}

.decoration-red-50\/35 {
  text-decoration-color: rgb(254 242 242 / 0.35);
}

.decoration-red-50\/40 {
  text-decoration-color: rgb(254 242 242 / 0.4);
}

.decoration-red-50\/45 {
  text-decoration-color: rgb(254 242 242 / 0.45);
}

.decoration-red-50\/5 {
  text-decoration-color: rgb(254 242 242 / 0.05);
}

.decoration-red-50\/50 {
  text-decoration-color: rgb(254 242 242 / 0.5);
}

.decoration-red-50\/55 {
  text-decoration-color: rgb(254 242 242 / 0.55);
}

.decoration-red-50\/60 {
  text-decoration-color: rgb(254 242 242 / 0.6);
}

.decoration-red-50\/65 {
  text-decoration-color: rgb(254 242 242 / 0.65);
}

.decoration-red-50\/70 {
  text-decoration-color: rgb(254 242 242 / 0.7);
}

.decoration-red-50\/75 {
  text-decoration-color: rgb(254 242 242 / 0.75);
}

.decoration-red-50\/80 {
  text-decoration-color: rgb(254 242 242 / 0.8);
}

.decoration-red-50\/85 {
  text-decoration-color: rgb(254 242 242 / 0.85);
}

.decoration-red-50\/90 {
  text-decoration-color: rgb(254 242 242 / 0.9);
}

.decoration-red-50\/95 {
  text-decoration-color: rgb(254 242 242 / 0.95);
}

.decoration-red-500 {
  text-decoration-color: #ef4444;
}

.decoration-red-500\/0 {
  text-decoration-color: rgb(239 68 68 / 0);
}

.decoration-red-500\/10 {
  text-decoration-color: rgb(239 68 68 / 0.1);
}

.decoration-red-500\/100 {
  text-decoration-color: rgb(239 68 68 / 1);
}

.decoration-red-500\/15 {
  text-decoration-color: rgb(239 68 68 / 0.15);
}

.decoration-red-500\/20 {
  text-decoration-color: rgb(239 68 68 / 0.2);
}

.decoration-red-500\/25 {
  text-decoration-color: rgb(239 68 68 / 0.25);
}

.decoration-red-500\/30 {
  text-decoration-color: rgb(239 68 68 / 0.3);
}

.decoration-red-500\/35 {
  text-decoration-color: rgb(239 68 68 / 0.35);
}

.decoration-red-500\/40 {
  text-decoration-color: rgb(239 68 68 / 0.4);
}

.decoration-red-500\/45 {
  text-decoration-color: rgb(239 68 68 / 0.45);
}

.decoration-red-500\/5 {
  text-decoration-color: rgb(239 68 68 / 0.05);
}

.decoration-red-500\/50 {
  text-decoration-color: rgb(239 68 68 / 0.5);
}

.decoration-red-500\/55 {
  text-decoration-color: rgb(239 68 68 / 0.55);
}

.decoration-red-500\/60 {
  text-decoration-color: rgb(239 68 68 / 0.6);
}

.decoration-red-500\/65 {
  text-decoration-color: rgb(239 68 68 / 0.65);
}

.decoration-red-500\/70 {
  text-decoration-color: rgb(239 68 68 / 0.7);
}

.decoration-red-500\/75 {
  text-decoration-color: rgb(239 68 68 / 0.75);
}

.decoration-red-500\/80 {
  text-decoration-color: rgb(239 68 68 / 0.8);
}

.decoration-red-500\/85 {
  text-decoration-color: rgb(239 68 68 / 0.85);
}

.decoration-red-500\/90 {
  text-decoration-color: rgb(239 68 68 / 0.9);
}

.decoration-red-500\/95 {
  text-decoration-color: rgb(239 68 68 / 0.95);
}

.decoration-red-600 {
  text-decoration-color: #dc2626;
}

.decoration-red-600\/0 {
  text-decoration-color: rgb(220 38 38 / 0);
}

.decoration-red-600\/10 {
  text-decoration-color: rgb(220 38 38 / 0.1);
}

.decoration-red-600\/100 {
  text-decoration-color: rgb(220 38 38 / 1);
}

.decoration-red-600\/15 {
  text-decoration-color: rgb(220 38 38 / 0.15);
}

.decoration-red-600\/20 {
  text-decoration-color: rgb(220 38 38 / 0.2);
}

.decoration-red-600\/25 {
  text-decoration-color: rgb(220 38 38 / 0.25);
}

.decoration-red-600\/30 {
  text-decoration-color: rgb(220 38 38 / 0.3);
}

.decoration-red-600\/35 {
  text-decoration-color: rgb(220 38 38 / 0.35);
}

.decoration-red-600\/40 {
  text-decoration-color: rgb(220 38 38 / 0.4);
}

.decoration-red-600\/45 {
  text-decoration-color: rgb(220 38 38 / 0.45);
}

.decoration-red-600\/5 {
  text-decoration-color: rgb(220 38 38 / 0.05);
}

.decoration-red-600\/50 {
  text-decoration-color: rgb(220 38 38 / 0.5);
}

.decoration-red-600\/55 {
  text-decoration-color: rgb(220 38 38 / 0.55);
}

.decoration-red-600\/60 {
  text-decoration-color: rgb(220 38 38 / 0.6);
}

.decoration-red-600\/65 {
  text-decoration-color: rgb(220 38 38 / 0.65);
}

.decoration-red-600\/70 {
  text-decoration-color: rgb(220 38 38 / 0.7);
}

.decoration-red-600\/75 {
  text-decoration-color: rgb(220 38 38 / 0.75);
}

.decoration-red-600\/80 {
  text-decoration-color: rgb(220 38 38 / 0.8);
}

.decoration-red-600\/85 {
  text-decoration-color: rgb(220 38 38 / 0.85);
}

.decoration-red-600\/90 {
  text-decoration-color: rgb(220 38 38 / 0.9);
}

.decoration-red-600\/95 {
  text-decoration-color: rgb(220 38 38 / 0.95);
}

.decoration-red-700 {
  text-decoration-color: #b91c1c;
}

.decoration-red-700\/0 {
  text-decoration-color: rgb(185 28 28 / 0);
}

.decoration-red-700\/10 {
  text-decoration-color: rgb(185 28 28 / 0.1);
}

.decoration-red-700\/100 {
  text-decoration-color: rgb(185 28 28 / 1);
}

.decoration-red-700\/15 {
  text-decoration-color: rgb(185 28 28 / 0.15);
}

.decoration-red-700\/20 {
  text-decoration-color: rgb(185 28 28 / 0.2);
}

.decoration-red-700\/25 {
  text-decoration-color: rgb(185 28 28 / 0.25);
}

.decoration-red-700\/30 {
  text-decoration-color: rgb(185 28 28 / 0.3);
}

.decoration-red-700\/35 {
  text-decoration-color: rgb(185 28 28 / 0.35);
}

.decoration-red-700\/40 {
  text-decoration-color: rgb(185 28 28 / 0.4);
}

.decoration-red-700\/45 {
  text-decoration-color: rgb(185 28 28 / 0.45);
}

.decoration-red-700\/5 {
  text-decoration-color: rgb(185 28 28 / 0.05);
}

.decoration-red-700\/50 {
  text-decoration-color: rgb(185 28 28 / 0.5);
}

.decoration-red-700\/55 {
  text-decoration-color: rgb(185 28 28 / 0.55);
}

.decoration-red-700\/60 {
  text-decoration-color: rgb(185 28 28 / 0.6);
}

.decoration-red-700\/65 {
  text-decoration-color: rgb(185 28 28 / 0.65);
}

.decoration-red-700\/70 {
  text-decoration-color: rgb(185 28 28 / 0.7);
}

.decoration-red-700\/75 {
  text-decoration-color: rgb(185 28 28 / 0.75);
}

.decoration-red-700\/80 {
  text-decoration-color: rgb(185 28 28 / 0.8);
}

.decoration-red-700\/85 {
  text-decoration-color: rgb(185 28 28 / 0.85);
}

.decoration-red-700\/90 {
  text-decoration-color: rgb(185 28 28 / 0.9);
}

.decoration-red-700\/95 {
  text-decoration-color: rgb(185 28 28 / 0.95);
}

.decoration-red-800 {
  text-decoration-color: #991b1b;
}

.decoration-red-800\/0 {
  text-decoration-color: rgb(153 27 27 / 0);
}

.decoration-red-800\/10 {
  text-decoration-color: rgb(153 27 27 / 0.1);
}

.decoration-red-800\/100 {
  text-decoration-color: rgb(153 27 27 / 1);
}

.decoration-red-800\/15 {
  text-decoration-color: rgb(153 27 27 / 0.15);
}

.decoration-red-800\/20 {
  text-decoration-color: rgb(153 27 27 / 0.2);
}

.decoration-red-800\/25 {
  text-decoration-color: rgb(153 27 27 / 0.25);
}

.decoration-red-800\/30 {
  text-decoration-color: rgb(153 27 27 / 0.3);
}

.decoration-red-800\/35 {
  text-decoration-color: rgb(153 27 27 / 0.35);
}

.decoration-red-800\/40 {
  text-decoration-color: rgb(153 27 27 / 0.4);
}

.decoration-red-800\/45 {
  text-decoration-color: rgb(153 27 27 / 0.45);
}

.decoration-red-800\/5 {
  text-decoration-color: rgb(153 27 27 / 0.05);
}

.decoration-red-800\/50 {
  text-decoration-color: rgb(153 27 27 / 0.5);
}

.decoration-red-800\/55 {
  text-decoration-color: rgb(153 27 27 / 0.55);
}

.decoration-red-800\/60 {
  text-decoration-color: rgb(153 27 27 / 0.6);
}

.decoration-red-800\/65 {
  text-decoration-color: rgb(153 27 27 / 0.65);
}

.decoration-red-800\/70 {
  text-decoration-color: rgb(153 27 27 / 0.7);
}

.decoration-red-800\/75 {
  text-decoration-color: rgb(153 27 27 / 0.75);
}

.decoration-red-800\/80 {
  text-decoration-color: rgb(153 27 27 / 0.8);
}

.decoration-red-800\/85 {
  text-decoration-color: rgb(153 27 27 / 0.85);
}

.decoration-red-800\/90 {
  text-decoration-color: rgb(153 27 27 / 0.9);
}

.decoration-red-800\/95 {
  text-decoration-color: rgb(153 27 27 / 0.95);
}

.decoration-red-900 {
  text-decoration-color: #7f1d1d;
}

.decoration-red-900\/0 {
  text-decoration-color: rgb(127 29 29 / 0);
}

.decoration-red-900\/10 {
  text-decoration-color: rgb(127 29 29 / 0.1);
}

.decoration-red-900\/100 {
  text-decoration-color: rgb(127 29 29 / 1);
}

.decoration-red-900\/15 {
  text-decoration-color: rgb(127 29 29 / 0.15);
}

.decoration-red-900\/20 {
  text-decoration-color: rgb(127 29 29 / 0.2);
}

.decoration-red-900\/25 {
  text-decoration-color: rgb(127 29 29 / 0.25);
}

.decoration-red-900\/30 {
  text-decoration-color: rgb(127 29 29 / 0.3);
}

.decoration-red-900\/35 {
  text-decoration-color: rgb(127 29 29 / 0.35);
}

.decoration-red-900\/40 {
  text-decoration-color: rgb(127 29 29 / 0.4);
}

.decoration-red-900\/45 {
  text-decoration-color: rgb(127 29 29 / 0.45);
}

.decoration-red-900\/5 {
  text-decoration-color: rgb(127 29 29 / 0.05);
}

.decoration-red-900\/50 {
  text-decoration-color: rgb(127 29 29 / 0.5);
}

.decoration-red-900\/55 {
  text-decoration-color: rgb(127 29 29 / 0.55);
}

.decoration-red-900\/60 {
  text-decoration-color: rgb(127 29 29 / 0.6);
}

.decoration-red-900\/65 {
  text-decoration-color: rgb(127 29 29 / 0.65);
}

.decoration-red-900\/70 {
  text-decoration-color: rgb(127 29 29 / 0.7);
}

.decoration-red-900\/75 {
  text-decoration-color: rgb(127 29 29 / 0.75);
}

.decoration-red-900\/80 {
  text-decoration-color: rgb(127 29 29 / 0.8);
}

.decoration-red-900\/85 {
  text-decoration-color: rgb(127 29 29 / 0.85);
}

.decoration-red-900\/90 {
  text-decoration-color: rgb(127 29 29 / 0.9);
}

.decoration-red-900\/95 {
  text-decoration-color: rgb(127 29 29 / 0.95);
}

.decoration-red-950 {
  text-decoration-color: #450a0a;
}

.decoration-red-950\/0 {
  text-decoration-color: rgb(69 10 10 / 0);
}

.decoration-red-950\/10 {
  text-decoration-color: rgb(69 10 10 / 0.1);
}

.decoration-red-950\/100 {
  text-decoration-color: rgb(69 10 10 / 1);
}

.decoration-red-950\/15 {
  text-decoration-color: rgb(69 10 10 / 0.15);
}

.decoration-red-950\/20 {
  text-decoration-color: rgb(69 10 10 / 0.2);
}

.decoration-red-950\/25 {
  text-decoration-color: rgb(69 10 10 / 0.25);
}

.decoration-red-950\/30 {
  text-decoration-color: rgb(69 10 10 / 0.3);
}

.decoration-red-950\/35 {
  text-decoration-color: rgb(69 10 10 / 0.35);
}

.decoration-red-950\/40 {
  text-decoration-color: rgb(69 10 10 / 0.4);
}

.decoration-red-950\/45 {
  text-decoration-color: rgb(69 10 10 / 0.45);
}

.decoration-red-950\/5 {
  text-decoration-color: rgb(69 10 10 / 0.05);
}

.decoration-red-950\/50 {
  text-decoration-color: rgb(69 10 10 / 0.5);
}

.decoration-red-950\/55 {
  text-decoration-color: rgb(69 10 10 / 0.55);
}

.decoration-red-950\/60 {
  text-decoration-color: rgb(69 10 10 / 0.6);
}

.decoration-red-950\/65 {
  text-decoration-color: rgb(69 10 10 / 0.65);
}

.decoration-red-950\/70 {
  text-decoration-color: rgb(69 10 10 / 0.7);
}

.decoration-red-950\/75 {
  text-decoration-color: rgb(69 10 10 / 0.75);
}

.decoration-red-950\/80 {
  text-decoration-color: rgb(69 10 10 / 0.8);
}

.decoration-red-950\/85 {
  text-decoration-color: rgb(69 10 10 / 0.85);
}

.decoration-red-950\/90 {
  text-decoration-color: rgb(69 10 10 / 0.9);
}

.decoration-red-950\/95 {
  text-decoration-color: rgb(69 10 10 / 0.95);
}

.decoration-transparent {
  text-decoration-color: transparent;
}

.decoration-transparent\/0 {
  text-decoration-color: rgb(0 0 0 / 0);
}

.decoration-transparent\/10 {
  text-decoration-color: rgb(0 0 0 / 0.1);
}

.decoration-transparent\/100 {
  text-decoration-color: rgb(0 0 0 / 1);
}

.decoration-transparent\/15 {
  text-decoration-color: rgb(0 0 0 / 0.15);
}

.decoration-transparent\/20 {
  text-decoration-color: rgb(0 0 0 / 0.2);
}

.decoration-transparent\/25 {
  text-decoration-color: rgb(0 0 0 / 0.25);
}

.decoration-transparent\/30 {
  text-decoration-color: rgb(0 0 0 / 0.3);
}

.decoration-transparent\/35 {
  text-decoration-color: rgb(0 0 0 / 0.35);
}

.decoration-transparent\/40 {
  text-decoration-color: rgb(0 0 0 / 0.4);
}

.decoration-transparent\/45 {
  text-decoration-color: rgb(0 0 0 / 0.45);
}

.decoration-transparent\/5 {
  text-decoration-color: rgb(0 0 0 / 0.05);
}

.decoration-transparent\/50 {
  text-decoration-color: rgb(0 0 0 / 0.5);
}

.decoration-transparent\/55 {
  text-decoration-color: rgb(0 0 0 / 0.55);
}

.decoration-transparent\/60 {
  text-decoration-color: rgb(0 0 0 / 0.6);
}

.decoration-transparent\/65 {
  text-decoration-color: rgb(0 0 0 / 0.65);
}

.decoration-transparent\/70 {
  text-decoration-color: rgb(0 0 0 / 0.7);
}

.decoration-transparent\/75 {
  text-decoration-color: rgb(0 0 0 / 0.75);
}

.decoration-transparent\/80 {
  text-decoration-color: rgb(0 0 0 / 0.8);
}

.decoration-transparent\/85 {
  text-decoration-color: rgb(0 0 0 / 0.85);
}

.decoration-transparent\/90 {
  text-decoration-color: rgb(0 0 0 / 0.9);
}

.decoration-transparent\/95 {
  text-decoration-color: rgb(0 0 0 / 0.95);
}

.decoration-white {
  text-decoration-color: #fff;
}

.decoration-white\/0 {
  text-decoration-color: rgb(255 255 255 / 0);
}

.decoration-white\/10 {
  text-decoration-color: rgb(255 255 255 / 0.1);
}

.decoration-white\/100 {
  text-decoration-color: rgb(255 255 255 / 1);
}

.decoration-white\/15 {
  text-decoration-color: rgb(255 255 255 / 0.15);
}

.decoration-white\/20 {
  text-decoration-color: rgb(255 255 255 / 0.2);
}

.decoration-white\/25 {
  text-decoration-color: rgb(255 255 255 / 0.25);
}

.decoration-white\/30 {
  text-decoration-color: rgb(255 255 255 / 0.3);
}

.decoration-white\/35 {
  text-decoration-color: rgb(255 255 255 / 0.35);
}

.decoration-white\/40 {
  text-decoration-color: rgb(255 255 255 / 0.4);
}

.decoration-white\/45 {
  text-decoration-color: rgb(255 255 255 / 0.45);
}

.decoration-white\/5 {
  text-decoration-color: rgb(255 255 255 / 0.05);
}

.decoration-white\/50 {
  text-decoration-color: rgb(255 255 255 / 0.5);
}

.decoration-white\/55 {
  text-decoration-color: rgb(255 255 255 / 0.55);
}

.decoration-white\/60 {
  text-decoration-color: rgb(255 255 255 / 0.6);
}

.decoration-white\/65 {
  text-decoration-color: rgb(255 255 255 / 0.65);
}

.decoration-white\/70 {
  text-decoration-color: rgb(255 255 255 / 0.7);
}

.decoration-white\/75 {
  text-decoration-color: rgb(255 255 255 / 0.75);
}

.decoration-white\/80 {
  text-decoration-color: rgb(255 255 255 / 0.8);
}

.decoration-white\/85 {
  text-decoration-color: rgb(255 255 255 / 0.85);
}

.decoration-white\/90 {
  text-decoration-color: rgb(255 255 255 / 0.9);
}

.decoration-white\/95 {
  text-decoration-color: rgb(255 255 255 / 0.95);
}

.decoration-solid {
  text-decoration-style: solid;
}

.decoration-double {
  text-decoration-style: double;
}

.decoration-dotted {
  text-decoration-style: dotted;
}

.decoration-dashed {
  text-decoration-style: dashed;
}

.decoration-wavy {
  text-decoration-style: wavy;
}

.decoration-0 {
  text-decoration-thickness: 0px;
}

.decoration-1 {
  text-decoration-thickness: 1px;
}

.decoration-2 {
  text-decoration-thickness: 2px;
}

.decoration-4 {
  text-decoration-thickness: 4px;
}

.decoration-8 {
  text-decoration-thickness: 8px;
}

.decoration-auto {
  text-decoration-thickness: auto;
}

.decoration-from-font {
  text-decoration-thickness: from-font;
}

.underline-offset-0 {
  text-underline-offset: 0px;
}

.underline-offset-1 {
  text-underline-offset: 1px;
}

.underline-offset-2 {
  text-underline-offset: 2px;
}

.underline-offset-4 {
  text-underline-offset: 4px;
}

.underline-offset-8 {
  text-underline-offset: 8px;
}

.underline-offset-auto {
  text-underline-offset: auto;
}

.placeholder-black::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(0 0 0 / var(--tw-placeholder-opacity, 1));
}

.placeholder-black::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(0 0 0 / var(--tw-placeholder-opacity, 1));
}

.placeholder-black\/0::-moz-placeholder {
  color: rgb(0 0 0 / 0);
}

.placeholder-black\/0::placeholder {
  color: rgb(0 0 0 / 0);
}

.placeholder-black\/10::-moz-placeholder {
  color: rgb(0 0 0 / 0.1);
}

.placeholder-black\/10::placeholder {
  color: rgb(0 0 0 / 0.1);
}

.placeholder-black\/100::-moz-placeholder {
  color: rgb(0 0 0 / 1);
}

.placeholder-black\/100::placeholder {
  color: rgb(0 0 0 / 1);
}

.placeholder-black\/15::-moz-placeholder {
  color: rgb(0 0 0 / 0.15);
}

.placeholder-black\/15::placeholder {
  color: rgb(0 0 0 / 0.15);
}

.placeholder-black\/20::-moz-placeholder {
  color: rgb(0 0 0 / 0.2);
}

.placeholder-black\/20::placeholder {
  color: rgb(0 0 0 / 0.2);
}

.placeholder-black\/25::-moz-placeholder {
  color: rgb(0 0 0 / 0.25);
}

.placeholder-black\/25::placeholder {
  color: rgb(0 0 0 / 0.25);
}

.placeholder-black\/30::-moz-placeholder {
  color: rgb(0 0 0 / 0.3);
}

.placeholder-black\/30::placeholder {
  color: rgb(0 0 0 / 0.3);
}

.placeholder-black\/35::-moz-placeholder {
  color: rgb(0 0 0 / 0.35);
}

.placeholder-black\/35::placeholder {
  color: rgb(0 0 0 / 0.35);
}

.placeholder-black\/40::-moz-placeholder {
  color: rgb(0 0 0 / 0.4);
}

.placeholder-black\/40::placeholder {
  color: rgb(0 0 0 / 0.4);
}

.placeholder-black\/45::-moz-placeholder {
  color: rgb(0 0 0 / 0.45);
}

.placeholder-black\/45::placeholder {
  color: rgb(0 0 0 / 0.45);
}

.placeholder-black\/5::-moz-placeholder {
  color: rgb(0 0 0 / 0.05);
}

.placeholder-black\/5::placeholder {
  color: rgb(0 0 0 / 0.05);
}

.placeholder-black\/50::-moz-placeholder {
  color: rgb(0 0 0 / 0.5);
}

.placeholder-black\/50::placeholder {
  color: rgb(0 0 0 / 0.5);
}

.placeholder-black\/55::-moz-placeholder {
  color: rgb(0 0 0 / 0.55);
}

.placeholder-black\/55::placeholder {
  color: rgb(0 0 0 / 0.55);
}

.placeholder-black\/60::-moz-placeholder {
  color: rgb(0 0 0 / 0.6);
}

.placeholder-black\/60::placeholder {
  color: rgb(0 0 0 / 0.6);
}

.placeholder-black\/65::-moz-placeholder {
  color: rgb(0 0 0 / 0.65);
}

.placeholder-black\/65::placeholder {
  color: rgb(0 0 0 / 0.65);
}

.placeholder-black\/70::-moz-placeholder {
  color: rgb(0 0 0 / 0.7);
}

.placeholder-black\/70::placeholder {
  color: rgb(0 0 0 / 0.7);
}

.placeholder-black\/75::-moz-placeholder {
  color: rgb(0 0 0 / 0.75);
}

.placeholder-black\/75::placeholder {
  color: rgb(0 0 0 / 0.75);
}

.placeholder-black\/80::-moz-placeholder {
  color: rgb(0 0 0 / 0.8);
}

.placeholder-black\/80::placeholder {
  color: rgb(0 0 0 / 0.8);
}

.placeholder-black\/85::-moz-placeholder {
  color: rgb(0 0 0 / 0.85);
}

.placeholder-black\/85::placeholder {
  color: rgb(0 0 0 / 0.85);
}

.placeholder-black\/90::-moz-placeholder {
  color: rgb(0 0 0 / 0.9);
}

.placeholder-black\/90::placeholder {
  color: rgb(0 0 0 / 0.9);
}

.placeholder-black\/95::-moz-placeholder {
  color: rgb(0 0 0 / 0.95);
}

.placeholder-black\/95::placeholder {
  color: rgb(0 0 0 / 0.95);
}

.placeholder-blue-100::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(219 234 254 / var(--tw-placeholder-opacity, 1));
}

.placeholder-blue-100::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(219 234 254 / var(--tw-placeholder-opacity, 1));
}

.placeholder-blue-100\/0::-moz-placeholder {
  color: rgb(219 234 254 / 0);
}

.placeholder-blue-100\/0::placeholder {
  color: rgb(219 234 254 / 0);
}

.placeholder-blue-100\/10::-moz-placeholder {
  color: rgb(219 234 254 / 0.1);
}

.placeholder-blue-100\/10::placeholder {
  color: rgb(219 234 254 / 0.1);
}

.placeholder-blue-100\/100::-moz-placeholder {
  color: rgb(219 234 254 / 1);
}

.placeholder-blue-100\/100::placeholder {
  color: rgb(219 234 254 / 1);
}

.placeholder-blue-100\/15::-moz-placeholder {
  color: rgb(219 234 254 / 0.15);
}

.placeholder-blue-100\/15::placeholder {
  color: rgb(219 234 254 / 0.15);
}

.placeholder-blue-100\/20::-moz-placeholder {
  color: rgb(219 234 254 / 0.2);
}

.placeholder-blue-100\/20::placeholder {
  color: rgb(219 234 254 / 0.2);
}

.placeholder-blue-100\/25::-moz-placeholder {
  color: rgb(219 234 254 / 0.25);
}

.placeholder-blue-100\/25::placeholder {
  color: rgb(219 234 254 / 0.25);
}

.placeholder-blue-100\/30::-moz-placeholder {
  color: rgb(219 234 254 / 0.3);
}

.placeholder-blue-100\/30::placeholder {
  color: rgb(219 234 254 / 0.3);
}

.placeholder-blue-100\/35::-moz-placeholder {
  color: rgb(219 234 254 / 0.35);
}

.placeholder-blue-100\/35::placeholder {
  color: rgb(219 234 254 / 0.35);
}

.placeholder-blue-100\/40::-moz-placeholder {
  color: rgb(219 234 254 / 0.4);
}

.placeholder-blue-100\/40::placeholder {
  color: rgb(219 234 254 / 0.4);
}

.placeholder-blue-100\/45::-moz-placeholder {
  color: rgb(219 234 254 / 0.45);
}

.placeholder-blue-100\/45::placeholder {
  color: rgb(219 234 254 / 0.45);
}

.placeholder-blue-100\/5::-moz-placeholder {
  color: rgb(219 234 254 / 0.05);
}

.placeholder-blue-100\/5::placeholder {
  color: rgb(219 234 254 / 0.05);
}

.placeholder-blue-100\/50::-moz-placeholder {
  color: rgb(219 234 254 / 0.5);
}

.placeholder-blue-100\/50::placeholder {
  color: rgb(219 234 254 / 0.5);
}

.placeholder-blue-100\/55::-moz-placeholder {
  color: rgb(219 234 254 / 0.55);
}

.placeholder-blue-100\/55::placeholder {
  color: rgb(219 234 254 / 0.55);
}

.placeholder-blue-100\/60::-moz-placeholder {
  color: rgb(219 234 254 / 0.6);
}

.placeholder-blue-100\/60::placeholder {
  color: rgb(219 234 254 / 0.6);
}

.placeholder-blue-100\/65::-moz-placeholder {
  color: rgb(219 234 254 / 0.65);
}

.placeholder-blue-100\/65::placeholder {
  color: rgb(219 234 254 / 0.65);
}

.placeholder-blue-100\/70::-moz-placeholder {
  color: rgb(219 234 254 / 0.7);
}

.placeholder-blue-100\/70::placeholder {
  color: rgb(219 234 254 / 0.7);
}

.placeholder-blue-100\/75::-moz-placeholder {
  color: rgb(219 234 254 / 0.75);
}

.placeholder-blue-100\/75::placeholder {
  color: rgb(219 234 254 / 0.75);
}

.placeholder-blue-100\/80::-moz-placeholder {
  color: rgb(219 234 254 / 0.8);
}

.placeholder-blue-100\/80::placeholder {
  color: rgb(219 234 254 / 0.8);
}

.placeholder-blue-100\/85::-moz-placeholder {
  color: rgb(219 234 254 / 0.85);
}

.placeholder-blue-100\/85::placeholder {
  color: rgb(219 234 254 / 0.85);
}

.placeholder-blue-100\/90::-moz-placeholder {
  color: rgb(219 234 254 / 0.9);
}

.placeholder-blue-100\/90::placeholder {
  color: rgb(219 234 254 / 0.9);
}

.placeholder-blue-100\/95::-moz-placeholder {
  color: rgb(219 234 254 / 0.95);
}

.placeholder-blue-100\/95::placeholder {
  color: rgb(219 234 254 / 0.95);
}

.placeholder-blue-200::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(191 219 254 / var(--tw-placeholder-opacity, 1));
}

.placeholder-blue-200::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(191 219 254 / var(--tw-placeholder-opacity, 1));
}

.placeholder-blue-200\/0::-moz-placeholder {
  color: rgb(191 219 254 / 0);
}

.placeholder-blue-200\/0::placeholder {
  color: rgb(191 219 254 / 0);
}

.placeholder-blue-200\/10::-moz-placeholder {
  color: rgb(191 219 254 / 0.1);
}

.placeholder-blue-200\/10::placeholder {
  color: rgb(191 219 254 / 0.1);
}

.placeholder-blue-200\/100::-moz-placeholder {
  color: rgb(191 219 254 / 1);
}

.placeholder-blue-200\/100::placeholder {
  color: rgb(191 219 254 / 1);
}

.placeholder-blue-200\/15::-moz-placeholder {
  color: rgb(191 219 254 / 0.15);
}

.placeholder-blue-200\/15::placeholder {
  color: rgb(191 219 254 / 0.15);
}

.placeholder-blue-200\/20::-moz-placeholder {
  color: rgb(191 219 254 / 0.2);
}

.placeholder-blue-200\/20::placeholder {
  color: rgb(191 219 254 / 0.2);
}

.placeholder-blue-200\/25::-moz-placeholder {
  color: rgb(191 219 254 / 0.25);
}

.placeholder-blue-200\/25::placeholder {
  color: rgb(191 219 254 / 0.25);
}

.placeholder-blue-200\/30::-moz-placeholder {
  color: rgb(191 219 254 / 0.3);
}

.placeholder-blue-200\/30::placeholder {
  color: rgb(191 219 254 / 0.3);
}

.placeholder-blue-200\/35::-moz-placeholder {
  color: rgb(191 219 254 / 0.35);
}

.placeholder-blue-200\/35::placeholder {
  color: rgb(191 219 254 / 0.35);
}

.placeholder-blue-200\/40::-moz-placeholder {
  color: rgb(191 219 254 / 0.4);
}

.placeholder-blue-200\/40::placeholder {
  color: rgb(191 219 254 / 0.4);
}

.placeholder-blue-200\/45::-moz-placeholder {
  color: rgb(191 219 254 / 0.45);
}

.placeholder-blue-200\/45::placeholder {
  color: rgb(191 219 254 / 0.45);
}

.placeholder-blue-200\/5::-moz-placeholder {
  color: rgb(191 219 254 / 0.05);
}

.placeholder-blue-200\/5::placeholder {
  color: rgb(191 219 254 / 0.05);
}

.placeholder-blue-200\/50::-moz-placeholder {
  color: rgb(191 219 254 / 0.5);
}

.placeholder-blue-200\/50::placeholder {
  color: rgb(191 219 254 / 0.5);
}

.placeholder-blue-200\/55::-moz-placeholder {
  color: rgb(191 219 254 / 0.55);
}

.placeholder-blue-200\/55::placeholder {
  color: rgb(191 219 254 / 0.55);
}

.placeholder-blue-200\/60::-moz-placeholder {
  color: rgb(191 219 254 / 0.6);
}

.placeholder-blue-200\/60::placeholder {
  color: rgb(191 219 254 / 0.6);
}

.placeholder-blue-200\/65::-moz-placeholder {
  color: rgb(191 219 254 / 0.65);
}

.placeholder-blue-200\/65::placeholder {
  color: rgb(191 219 254 / 0.65);
}

.placeholder-blue-200\/70::-moz-placeholder {
  color: rgb(191 219 254 / 0.7);
}

.placeholder-blue-200\/70::placeholder {
  color: rgb(191 219 254 / 0.7);
}

.placeholder-blue-200\/75::-moz-placeholder {
  color: rgb(191 219 254 / 0.75);
}

.placeholder-blue-200\/75::placeholder {
  color: rgb(191 219 254 / 0.75);
}

.placeholder-blue-200\/80::-moz-placeholder {
  color: rgb(191 219 254 / 0.8);
}

.placeholder-blue-200\/80::placeholder {
  color: rgb(191 219 254 / 0.8);
}

.placeholder-blue-200\/85::-moz-placeholder {
  color: rgb(191 219 254 / 0.85);
}

.placeholder-blue-200\/85::placeholder {
  color: rgb(191 219 254 / 0.85);
}

.placeholder-blue-200\/90::-moz-placeholder {
  color: rgb(191 219 254 / 0.9);
}

.placeholder-blue-200\/90::placeholder {
  color: rgb(191 219 254 / 0.9);
}

.placeholder-blue-200\/95::-moz-placeholder {
  color: rgb(191 219 254 / 0.95);
}

.placeholder-blue-200\/95::placeholder {
  color: rgb(191 219 254 / 0.95);
}

.placeholder-blue-300::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(147 197 253 / var(--tw-placeholder-opacity, 1));
}

.placeholder-blue-300::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(147 197 253 / var(--tw-placeholder-opacity, 1));
}

.placeholder-blue-300\/0::-moz-placeholder {
  color: rgb(147 197 253 / 0);
}

.placeholder-blue-300\/0::placeholder {
  color: rgb(147 197 253 / 0);
}

.placeholder-blue-300\/10::-moz-placeholder {
  color: rgb(147 197 253 / 0.1);
}

.placeholder-blue-300\/10::placeholder {
  color: rgb(147 197 253 / 0.1);
}

.placeholder-blue-300\/100::-moz-placeholder {
  color: rgb(147 197 253 / 1);
}

.placeholder-blue-300\/100::placeholder {
  color: rgb(147 197 253 / 1);
}

.placeholder-blue-300\/15::-moz-placeholder {
  color: rgb(147 197 253 / 0.15);
}

.placeholder-blue-300\/15::placeholder {
  color: rgb(147 197 253 / 0.15);
}

.placeholder-blue-300\/20::-moz-placeholder {
  color: rgb(147 197 253 / 0.2);
}

.placeholder-blue-300\/20::placeholder {
  color: rgb(147 197 253 / 0.2);
}

.placeholder-blue-300\/25::-moz-placeholder {
  color: rgb(147 197 253 / 0.25);
}

.placeholder-blue-300\/25::placeholder {
  color: rgb(147 197 253 / 0.25);
}

.placeholder-blue-300\/30::-moz-placeholder {
  color: rgb(147 197 253 / 0.3);
}

.placeholder-blue-300\/30::placeholder {
  color: rgb(147 197 253 / 0.3);
}

.placeholder-blue-300\/35::-moz-placeholder {
  color: rgb(147 197 253 / 0.35);
}

.placeholder-blue-300\/35::placeholder {
  color: rgb(147 197 253 / 0.35);
}

.placeholder-blue-300\/40::-moz-placeholder {
  color: rgb(147 197 253 / 0.4);
}

.placeholder-blue-300\/40::placeholder {
  color: rgb(147 197 253 / 0.4);
}

.placeholder-blue-300\/45::-moz-placeholder {
  color: rgb(147 197 253 / 0.45);
}

.placeholder-blue-300\/45::placeholder {
  color: rgb(147 197 253 / 0.45);
}

.placeholder-blue-300\/5::-moz-placeholder {
  color: rgb(147 197 253 / 0.05);
}

.placeholder-blue-300\/5::placeholder {
  color: rgb(147 197 253 / 0.05);
}

.placeholder-blue-300\/50::-moz-placeholder {
  color: rgb(147 197 253 / 0.5);
}

.placeholder-blue-300\/50::placeholder {
  color: rgb(147 197 253 / 0.5);
}

.placeholder-blue-300\/55::-moz-placeholder {
  color: rgb(147 197 253 / 0.55);
}

.placeholder-blue-300\/55::placeholder {
  color: rgb(147 197 253 / 0.55);
}

.placeholder-blue-300\/60::-moz-placeholder {
  color: rgb(147 197 253 / 0.6);
}

.placeholder-blue-300\/60::placeholder {
  color: rgb(147 197 253 / 0.6);
}

.placeholder-blue-300\/65::-moz-placeholder {
  color: rgb(147 197 253 / 0.65);
}

.placeholder-blue-300\/65::placeholder {
  color: rgb(147 197 253 / 0.65);
}

.placeholder-blue-300\/70::-moz-placeholder {
  color: rgb(147 197 253 / 0.7);
}

.placeholder-blue-300\/70::placeholder {
  color: rgb(147 197 253 / 0.7);
}

.placeholder-blue-300\/75::-moz-placeholder {
  color: rgb(147 197 253 / 0.75);
}

.placeholder-blue-300\/75::placeholder {
  color: rgb(147 197 253 / 0.75);
}

.placeholder-blue-300\/80::-moz-placeholder {
  color: rgb(147 197 253 / 0.8);
}

.placeholder-blue-300\/80::placeholder {
  color: rgb(147 197 253 / 0.8);
}

.placeholder-blue-300\/85::-moz-placeholder {
  color: rgb(147 197 253 / 0.85);
}

.placeholder-blue-300\/85::placeholder {
  color: rgb(147 197 253 / 0.85);
}

.placeholder-blue-300\/90::-moz-placeholder {
  color: rgb(147 197 253 / 0.9);
}

.placeholder-blue-300\/90::placeholder {
  color: rgb(147 197 253 / 0.9);
}

.placeholder-blue-300\/95::-moz-placeholder {
  color: rgb(147 197 253 / 0.95);
}

.placeholder-blue-300\/95::placeholder {
  color: rgb(147 197 253 / 0.95);
}

.placeholder-blue-400::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(96 165 250 / var(--tw-placeholder-opacity, 1));
}

.placeholder-blue-400::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(96 165 250 / var(--tw-placeholder-opacity, 1));
}

.placeholder-blue-400\/0::-moz-placeholder {
  color: rgb(96 165 250 / 0);
}

.placeholder-blue-400\/0::placeholder {
  color: rgb(96 165 250 / 0);
}

.placeholder-blue-400\/10::-moz-placeholder {
  color: rgb(96 165 250 / 0.1);
}

.placeholder-blue-400\/10::placeholder {
  color: rgb(96 165 250 / 0.1);
}

.placeholder-blue-400\/100::-moz-placeholder {
  color: rgb(96 165 250 / 1);
}

.placeholder-blue-400\/100::placeholder {
  color: rgb(96 165 250 / 1);
}

.placeholder-blue-400\/15::-moz-placeholder {
  color: rgb(96 165 250 / 0.15);
}

.placeholder-blue-400\/15::placeholder {
  color: rgb(96 165 250 / 0.15);
}

.placeholder-blue-400\/20::-moz-placeholder {
  color: rgb(96 165 250 / 0.2);
}

.placeholder-blue-400\/20::placeholder {
  color: rgb(96 165 250 / 0.2);
}

.placeholder-blue-400\/25::-moz-placeholder {
  color: rgb(96 165 250 / 0.25);
}

.placeholder-blue-400\/25::placeholder {
  color: rgb(96 165 250 / 0.25);
}

.placeholder-blue-400\/30::-moz-placeholder {
  color: rgb(96 165 250 / 0.3);
}

.placeholder-blue-400\/30::placeholder {
  color: rgb(96 165 250 / 0.3);
}

.placeholder-blue-400\/35::-moz-placeholder {
  color: rgb(96 165 250 / 0.35);
}

.placeholder-blue-400\/35::placeholder {
  color: rgb(96 165 250 / 0.35);
}

.placeholder-blue-400\/40::-moz-placeholder {
  color: rgb(96 165 250 / 0.4);
}

.placeholder-blue-400\/40::placeholder {
  color: rgb(96 165 250 / 0.4);
}

.placeholder-blue-400\/45::-moz-placeholder {
  color: rgb(96 165 250 / 0.45);
}

.placeholder-blue-400\/45::placeholder {
  color: rgb(96 165 250 / 0.45);
}

.placeholder-blue-400\/5::-moz-placeholder {
  color: rgb(96 165 250 / 0.05);
}

.placeholder-blue-400\/5::placeholder {
  color: rgb(96 165 250 / 0.05);
}

.placeholder-blue-400\/50::-moz-placeholder {
  color: rgb(96 165 250 / 0.5);
}

.placeholder-blue-400\/50::placeholder {
  color: rgb(96 165 250 / 0.5);
}

.placeholder-blue-400\/55::-moz-placeholder {
  color: rgb(96 165 250 / 0.55);
}

.placeholder-blue-400\/55::placeholder {
  color: rgb(96 165 250 / 0.55);
}

.placeholder-blue-400\/60::-moz-placeholder {
  color: rgb(96 165 250 / 0.6);
}

.placeholder-blue-400\/60::placeholder {
  color: rgb(96 165 250 / 0.6);
}

.placeholder-blue-400\/65::-moz-placeholder {
  color: rgb(96 165 250 / 0.65);
}

.placeholder-blue-400\/65::placeholder {
  color: rgb(96 165 250 / 0.65);
}

.placeholder-blue-400\/70::-moz-placeholder {
  color: rgb(96 165 250 / 0.7);
}

.placeholder-blue-400\/70::placeholder {
  color: rgb(96 165 250 / 0.7);
}

.placeholder-blue-400\/75::-moz-placeholder {
  color: rgb(96 165 250 / 0.75);
}

.placeholder-blue-400\/75::placeholder {
  color: rgb(96 165 250 / 0.75);
}

.placeholder-blue-400\/80::-moz-placeholder {
  color: rgb(96 165 250 / 0.8);
}

.placeholder-blue-400\/80::placeholder {
  color: rgb(96 165 250 / 0.8);
}

.placeholder-blue-400\/85::-moz-placeholder {
  color: rgb(96 165 250 / 0.85);
}

.placeholder-blue-400\/85::placeholder {
  color: rgb(96 165 250 / 0.85);
}

.placeholder-blue-400\/90::-moz-placeholder {
  color: rgb(96 165 250 / 0.9);
}

.placeholder-blue-400\/90::placeholder {
  color: rgb(96 165 250 / 0.9);
}

.placeholder-blue-400\/95::-moz-placeholder {
  color: rgb(96 165 250 / 0.95);
}

.placeholder-blue-400\/95::placeholder {
  color: rgb(96 165 250 / 0.95);
}

.placeholder-blue-50::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(239 246 255 / var(--tw-placeholder-opacity, 1));
}

.placeholder-blue-50::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(239 246 255 / var(--tw-placeholder-opacity, 1));
}

.placeholder-blue-50\/0::-moz-placeholder {
  color: rgb(239 246 255 / 0);
}

.placeholder-blue-50\/0::placeholder {
  color: rgb(239 246 255 / 0);
}

.placeholder-blue-50\/10::-moz-placeholder {
  color: rgb(239 246 255 / 0.1);
}

.placeholder-blue-50\/10::placeholder {
  color: rgb(239 246 255 / 0.1);
}

.placeholder-blue-50\/100::-moz-placeholder {
  color: rgb(239 246 255 / 1);
}

.placeholder-blue-50\/100::placeholder {
  color: rgb(239 246 255 / 1);
}

.placeholder-blue-50\/15::-moz-placeholder {
  color: rgb(239 246 255 / 0.15);
}

.placeholder-blue-50\/15::placeholder {
  color: rgb(239 246 255 / 0.15);
}

.placeholder-blue-50\/20::-moz-placeholder {
  color: rgb(239 246 255 / 0.2);
}

.placeholder-blue-50\/20::placeholder {
  color: rgb(239 246 255 / 0.2);
}

.placeholder-blue-50\/25::-moz-placeholder {
  color: rgb(239 246 255 / 0.25);
}

.placeholder-blue-50\/25::placeholder {
  color: rgb(239 246 255 / 0.25);
}

.placeholder-blue-50\/30::-moz-placeholder {
  color: rgb(239 246 255 / 0.3);
}

.placeholder-blue-50\/30::placeholder {
  color: rgb(239 246 255 / 0.3);
}

.placeholder-blue-50\/35::-moz-placeholder {
  color: rgb(239 246 255 / 0.35);
}

.placeholder-blue-50\/35::placeholder {
  color: rgb(239 246 255 / 0.35);
}

.placeholder-blue-50\/40::-moz-placeholder {
  color: rgb(239 246 255 / 0.4);
}

.placeholder-blue-50\/40::placeholder {
  color: rgb(239 246 255 / 0.4);
}

.placeholder-blue-50\/45::-moz-placeholder {
  color: rgb(239 246 255 / 0.45);
}

.placeholder-blue-50\/45::placeholder {
  color: rgb(239 246 255 / 0.45);
}

.placeholder-blue-50\/5::-moz-placeholder {
  color: rgb(239 246 255 / 0.05);
}

.placeholder-blue-50\/5::placeholder {
  color: rgb(239 246 255 / 0.05);
}

.placeholder-blue-50\/50::-moz-placeholder {
  color: rgb(239 246 255 / 0.5);
}

.placeholder-blue-50\/50::placeholder {
  color: rgb(239 246 255 / 0.5);
}

.placeholder-blue-50\/55::-moz-placeholder {
  color: rgb(239 246 255 / 0.55);
}

.placeholder-blue-50\/55::placeholder {
  color: rgb(239 246 255 / 0.55);
}

.placeholder-blue-50\/60::-moz-placeholder {
  color: rgb(239 246 255 / 0.6);
}

.placeholder-blue-50\/60::placeholder {
  color: rgb(239 246 255 / 0.6);
}

.placeholder-blue-50\/65::-moz-placeholder {
  color: rgb(239 246 255 / 0.65);
}

.placeholder-blue-50\/65::placeholder {
  color: rgb(239 246 255 / 0.65);
}

.placeholder-blue-50\/70::-moz-placeholder {
  color: rgb(239 246 255 / 0.7);
}

.placeholder-blue-50\/70::placeholder {
  color: rgb(239 246 255 / 0.7);
}

.placeholder-blue-50\/75::-moz-placeholder {
  color: rgb(239 246 255 / 0.75);
}

.placeholder-blue-50\/75::placeholder {
  color: rgb(239 246 255 / 0.75);
}

.placeholder-blue-50\/80::-moz-placeholder {
  color: rgb(239 246 255 / 0.8);
}

.placeholder-blue-50\/80::placeholder {
  color: rgb(239 246 255 / 0.8);
}

.placeholder-blue-50\/85::-moz-placeholder {
  color: rgb(239 246 255 / 0.85);
}

.placeholder-blue-50\/85::placeholder {
  color: rgb(239 246 255 / 0.85);
}

.placeholder-blue-50\/90::-moz-placeholder {
  color: rgb(239 246 255 / 0.9);
}

.placeholder-blue-50\/90::placeholder {
  color: rgb(239 246 255 / 0.9);
}

.placeholder-blue-50\/95::-moz-placeholder {
  color: rgb(239 246 255 / 0.95);
}

.placeholder-blue-50\/95::placeholder {
  color: rgb(239 246 255 / 0.95);
}

.placeholder-blue-500::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(59 130 246 / var(--tw-placeholder-opacity, 1));
}

.placeholder-blue-500::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(59 130 246 / var(--tw-placeholder-opacity, 1));
}

.placeholder-blue-500\/0::-moz-placeholder {
  color: rgb(59 130 246 / 0);
}

.placeholder-blue-500\/0::placeholder {
  color: rgb(59 130 246 / 0);
}

.placeholder-blue-500\/10::-moz-placeholder {
  color: rgb(59 130 246 / 0.1);
}

.placeholder-blue-500\/10::placeholder {
  color: rgb(59 130 246 / 0.1);
}

.placeholder-blue-500\/100::-moz-placeholder {
  color: rgb(59 130 246 / 1);
}

.placeholder-blue-500\/100::placeholder {
  color: rgb(59 130 246 / 1);
}

.placeholder-blue-500\/15::-moz-placeholder {
  color: rgb(59 130 246 / 0.15);
}

.placeholder-blue-500\/15::placeholder {
  color: rgb(59 130 246 / 0.15);
}

.placeholder-blue-500\/20::-moz-placeholder {
  color: rgb(59 130 246 / 0.2);
}

.placeholder-blue-500\/20::placeholder {
  color: rgb(59 130 246 / 0.2);
}

.placeholder-blue-500\/25::-moz-placeholder {
  color: rgb(59 130 246 / 0.25);
}

.placeholder-blue-500\/25::placeholder {
  color: rgb(59 130 246 / 0.25);
}

.placeholder-blue-500\/30::-moz-placeholder {
  color: rgb(59 130 246 / 0.3);
}

.placeholder-blue-500\/30::placeholder {
  color: rgb(59 130 246 / 0.3);
}

.placeholder-blue-500\/35::-moz-placeholder {
  color: rgb(59 130 246 / 0.35);
}

.placeholder-blue-500\/35::placeholder {
  color: rgb(59 130 246 / 0.35);
}

.placeholder-blue-500\/40::-moz-placeholder {
  color: rgb(59 130 246 / 0.4);
}

.placeholder-blue-500\/40::placeholder {
  color: rgb(59 130 246 / 0.4);
}

.placeholder-blue-500\/45::-moz-placeholder {
  color: rgb(59 130 246 / 0.45);
}

.placeholder-blue-500\/45::placeholder {
  color: rgb(59 130 246 / 0.45);
}

.placeholder-blue-500\/5::-moz-placeholder {
  color: rgb(59 130 246 / 0.05);
}

.placeholder-blue-500\/5::placeholder {
  color: rgb(59 130 246 / 0.05);
}

.placeholder-blue-500\/50::-moz-placeholder {
  color: rgb(59 130 246 / 0.5);
}

.placeholder-blue-500\/50::placeholder {
  color: rgb(59 130 246 / 0.5);
}

.placeholder-blue-500\/55::-moz-placeholder {
  color: rgb(59 130 246 / 0.55);
}

.placeholder-blue-500\/55::placeholder {
  color: rgb(59 130 246 / 0.55);
}

.placeholder-blue-500\/60::-moz-placeholder {
  color: rgb(59 130 246 / 0.6);
}

.placeholder-blue-500\/60::placeholder {
  color: rgb(59 130 246 / 0.6);
}

.placeholder-blue-500\/65::-moz-placeholder {
  color: rgb(59 130 246 / 0.65);
}

.placeholder-blue-500\/65::placeholder {
  color: rgb(59 130 246 / 0.65);
}

.placeholder-blue-500\/70::-moz-placeholder {
  color: rgb(59 130 246 / 0.7);
}

.placeholder-blue-500\/70::placeholder {
  color: rgb(59 130 246 / 0.7);
}

.placeholder-blue-500\/75::-moz-placeholder {
  color: rgb(59 130 246 / 0.75);
}

.placeholder-blue-500\/75::placeholder {
  color: rgb(59 130 246 / 0.75);
}

.placeholder-blue-500\/80::-moz-placeholder {
  color: rgb(59 130 246 / 0.8);
}

.placeholder-blue-500\/80::placeholder {
  color: rgb(59 130 246 / 0.8);
}

.placeholder-blue-500\/85::-moz-placeholder {
  color: rgb(59 130 246 / 0.85);
}

.placeholder-blue-500\/85::placeholder {
  color: rgb(59 130 246 / 0.85);
}

.placeholder-blue-500\/90::-moz-placeholder {
  color: rgb(59 130 246 / 0.9);
}

.placeholder-blue-500\/90::placeholder {
  color: rgb(59 130 246 / 0.9);
}

.placeholder-blue-500\/95::-moz-placeholder {
  color: rgb(59 130 246 / 0.95);
}

.placeholder-blue-500\/95::placeholder {
  color: rgb(59 130 246 / 0.95);
}

.placeholder-blue-600::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(37 99 235 / var(--tw-placeholder-opacity, 1));
}

.placeholder-blue-600::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(37 99 235 / var(--tw-placeholder-opacity, 1));
}

.placeholder-blue-600\/0::-moz-placeholder {
  color: rgb(37 99 235 / 0);
}

.placeholder-blue-600\/0::placeholder {
  color: rgb(37 99 235 / 0);
}

.placeholder-blue-600\/10::-moz-placeholder {
  color: rgb(37 99 235 / 0.1);
}

.placeholder-blue-600\/10::placeholder {
  color: rgb(37 99 235 / 0.1);
}

.placeholder-blue-600\/100::-moz-placeholder {
  color: rgb(37 99 235 / 1);
}

.placeholder-blue-600\/100::placeholder {
  color: rgb(37 99 235 / 1);
}

.placeholder-blue-600\/15::-moz-placeholder {
  color: rgb(37 99 235 / 0.15);
}

.placeholder-blue-600\/15::placeholder {
  color: rgb(37 99 235 / 0.15);
}

.placeholder-blue-600\/20::-moz-placeholder {
  color: rgb(37 99 235 / 0.2);
}

.placeholder-blue-600\/20::placeholder {
  color: rgb(37 99 235 / 0.2);
}

.placeholder-blue-600\/25::-moz-placeholder {
  color: rgb(37 99 235 / 0.25);
}

.placeholder-blue-600\/25::placeholder {
  color: rgb(37 99 235 / 0.25);
}

.placeholder-blue-600\/30::-moz-placeholder {
  color: rgb(37 99 235 / 0.3);
}

.placeholder-blue-600\/30::placeholder {
  color: rgb(37 99 235 / 0.3);
}

.placeholder-blue-600\/35::-moz-placeholder {
  color: rgb(37 99 235 / 0.35);
}

.placeholder-blue-600\/35::placeholder {
  color: rgb(37 99 235 / 0.35);
}

.placeholder-blue-600\/40::-moz-placeholder {
  color: rgb(37 99 235 / 0.4);
}

.placeholder-blue-600\/40::placeholder {
  color: rgb(37 99 235 / 0.4);
}

.placeholder-blue-600\/45::-moz-placeholder {
  color: rgb(37 99 235 / 0.45);
}

.placeholder-blue-600\/45::placeholder {
  color: rgb(37 99 235 / 0.45);
}

.placeholder-blue-600\/5::-moz-placeholder {
  color: rgb(37 99 235 / 0.05);
}

.placeholder-blue-600\/5::placeholder {
  color: rgb(37 99 235 / 0.05);
}

.placeholder-blue-600\/50::-moz-placeholder {
  color: rgb(37 99 235 / 0.5);
}

.placeholder-blue-600\/50::placeholder {
  color: rgb(37 99 235 / 0.5);
}

.placeholder-blue-600\/55::-moz-placeholder {
  color: rgb(37 99 235 / 0.55);
}

.placeholder-blue-600\/55::placeholder {
  color: rgb(37 99 235 / 0.55);
}

.placeholder-blue-600\/60::-moz-placeholder {
  color: rgb(37 99 235 / 0.6);
}

.placeholder-blue-600\/60::placeholder {
  color: rgb(37 99 235 / 0.6);
}

.placeholder-blue-600\/65::-moz-placeholder {
  color: rgb(37 99 235 / 0.65);
}

.placeholder-blue-600\/65::placeholder {
  color: rgb(37 99 235 / 0.65);
}

.placeholder-blue-600\/70::-moz-placeholder {
  color: rgb(37 99 235 / 0.7);
}

.placeholder-blue-600\/70::placeholder {
  color: rgb(37 99 235 / 0.7);
}

.placeholder-blue-600\/75::-moz-placeholder {
  color: rgb(37 99 235 / 0.75);
}

.placeholder-blue-600\/75::placeholder {
  color: rgb(37 99 235 / 0.75);
}

.placeholder-blue-600\/80::-moz-placeholder {
  color: rgb(37 99 235 / 0.8);
}

.placeholder-blue-600\/80::placeholder {
  color: rgb(37 99 235 / 0.8);
}

.placeholder-blue-600\/85::-moz-placeholder {
  color: rgb(37 99 235 / 0.85);
}

.placeholder-blue-600\/85::placeholder {
  color: rgb(37 99 235 / 0.85);
}

.placeholder-blue-600\/90::-moz-placeholder {
  color: rgb(37 99 235 / 0.9);
}

.placeholder-blue-600\/90::placeholder {
  color: rgb(37 99 235 / 0.9);
}

.placeholder-blue-600\/95::-moz-placeholder {
  color: rgb(37 99 235 / 0.95);
}

.placeholder-blue-600\/95::placeholder {
  color: rgb(37 99 235 / 0.95);
}

.placeholder-blue-700::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(29 78 216 / var(--tw-placeholder-opacity, 1));
}

.placeholder-blue-700::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(29 78 216 / var(--tw-placeholder-opacity, 1));
}

.placeholder-blue-700\/0::-moz-placeholder {
  color: rgb(29 78 216 / 0);
}

.placeholder-blue-700\/0::placeholder {
  color: rgb(29 78 216 / 0);
}

.placeholder-blue-700\/10::-moz-placeholder {
  color: rgb(29 78 216 / 0.1);
}

.placeholder-blue-700\/10::placeholder {
  color: rgb(29 78 216 / 0.1);
}

.placeholder-blue-700\/100::-moz-placeholder {
  color: rgb(29 78 216 / 1);
}

.placeholder-blue-700\/100::placeholder {
  color: rgb(29 78 216 / 1);
}

.placeholder-blue-700\/15::-moz-placeholder {
  color: rgb(29 78 216 / 0.15);
}

.placeholder-blue-700\/15::placeholder {
  color: rgb(29 78 216 / 0.15);
}

.placeholder-blue-700\/20::-moz-placeholder {
  color: rgb(29 78 216 / 0.2);
}

.placeholder-blue-700\/20::placeholder {
  color: rgb(29 78 216 / 0.2);
}

.placeholder-blue-700\/25::-moz-placeholder {
  color: rgb(29 78 216 / 0.25);
}

.placeholder-blue-700\/25::placeholder {
  color: rgb(29 78 216 / 0.25);
}

.placeholder-blue-700\/30::-moz-placeholder {
  color: rgb(29 78 216 / 0.3);
}

.placeholder-blue-700\/30::placeholder {
  color: rgb(29 78 216 / 0.3);
}

.placeholder-blue-700\/35::-moz-placeholder {
  color: rgb(29 78 216 / 0.35);
}

.placeholder-blue-700\/35::placeholder {
  color: rgb(29 78 216 / 0.35);
}

.placeholder-blue-700\/40::-moz-placeholder {
  color: rgb(29 78 216 / 0.4);
}

.placeholder-blue-700\/40::placeholder {
  color: rgb(29 78 216 / 0.4);
}

.placeholder-blue-700\/45::-moz-placeholder {
  color: rgb(29 78 216 / 0.45);
}

.placeholder-blue-700\/45::placeholder {
  color: rgb(29 78 216 / 0.45);
}

.placeholder-blue-700\/5::-moz-placeholder {
  color: rgb(29 78 216 / 0.05);
}

.placeholder-blue-700\/5::placeholder {
  color: rgb(29 78 216 / 0.05);
}

.placeholder-blue-700\/50::-moz-placeholder {
  color: rgb(29 78 216 / 0.5);
}

.placeholder-blue-700\/50::placeholder {
  color: rgb(29 78 216 / 0.5);
}

.placeholder-blue-700\/55::-moz-placeholder {
  color: rgb(29 78 216 / 0.55);
}

.placeholder-blue-700\/55::placeholder {
  color: rgb(29 78 216 / 0.55);
}

.placeholder-blue-700\/60::-moz-placeholder {
  color: rgb(29 78 216 / 0.6);
}

.placeholder-blue-700\/60::placeholder {
  color: rgb(29 78 216 / 0.6);
}

.placeholder-blue-700\/65::-moz-placeholder {
  color: rgb(29 78 216 / 0.65);
}

.placeholder-blue-700\/65::placeholder {
  color: rgb(29 78 216 / 0.65);
}

.placeholder-blue-700\/70::-moz-placeholder {
  color: rgb(29 78 216 / 0.7);
}

.placeholder-blue-700\/70::placeholder {
  color: rgb(29 78 216 / 0.7);
}

.placeholder-blue-700\/75::-moz-placeholder {
  color: rgb(29 78 216 / 0.75);
}

.placeholder-blue-700\/75::placeholder {
  color: rgb(29 78 216 / 0.75);
}

.placeholder-blue-700\/80::-moz-placeholder {
  color: rgb(29 78 216 / 0.8);
}

.placeholder-blue-700\/80::placeholder {
  color: rgb(29 78 216 / 0.8);
}

.placeholder-blue-700\/85::-moz-placeholder {
  color: rgb(29 78 216 / 0.85);
}

.placeholder-blue-700\/85::placeholder {
  color: rgb(29 78 216 / 0.85);
}

.placeholder-blue-700\/90::-moz-placeholder {
  color: rgb(29 78 216 / 0.9);
}

.placeholder-blue-700\/90::placeholder {
  color: rgb(29 78 216 / 0.9);
}

.placeholder-blue-700\/95::-moz-placeholder {
  color: rgb(29 78 216 / 0.95);
}

.placeholder-blue-700\/95::placeholder {
  color: rgb(29 78 216 / 0.95);
}

.placeholder-blue-800::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(30 64 175 / var(--tw-placeholder-opacity, 1));
}

.placeholder-blue-800::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(30 64 175 / var(--tw-placeholder-opacity, 1));
}

.placeholder-blue-800\/0::-moz-placeholder {
  color: rgb(30 64 175 / 0);
}

.placeholder-blue-800\/0::placeholder {
  color: rgb(30 64 175 / 0);
}

.placeholder-blue-800\/10::-moz-placeholder {
  color: rgb(30 64 175 / 0.1);
}

.placeholder-blue-800\/10::placeholder {
  color: rgb(30 64 175 / 0.1);
}

.placeholder-blue-800\/100::-moz-placeholder {
  color: rgb(30 64 175 / 1);
}

.placeholder-blue-800\/100::placeholder {
  color: rgb(30 64 175 / 1);
}

.placeholder-blue-800\/15::-moz-placeholder {
  color: rgb(30 64 175 / 0.15);
}

.placeholder-blue-800\/15::placeholder {
  color: rgb(30 64 175 / 0.15);
}

.placeholder-blue-800\/20::-moz-placeholder {
  color: rgb(30 64 175 / 0.2);
}

.placeholder-blue-800\/20::placeholder {
  color: rgb(30 64 175 / 0.2);
}

.placeholder-blue-800\/25::-moz-placeholder {
  color: rgb(30 64 175 / 0.25);
}

.placeholder-blue-800\/25::placeholder {
  color: rgb(30 64 175 / 0.25);
}

.placeholder-blue-800\/30::-moz-placeholder {
  color: rgb(30 64 175 / 0.3);
}

.placeholder-blue-800\/30::placeholder {
  color: rgb(30 64 175 / 0.3);
}

.placeholder-blue-800\/35::-moz-placeholder {
  color: rgb(30 64 175 / 0.35);
}

.placeholder-blue-800\/35::placeholder {
  color: rgb(30 64 175 / 0.35);
}

.placeholder-blue-800\/40::-moz-placeholder {
  color: rgb(30 64 175 / 0.4);
}

.placeholder-blue-800\/40::placeholder {
  color: rgb(30 64 175 / 0.4);
}

.placeholder-blue-800\/45::-moz-placeholder {
  color: rgb(30 64 175 / 0.45);
}

.placeholder-blue-800\/45::placeholder {
  color: rgb(30 64 175 / 0.45);
}

.placeholder-blue-800\/5::-moz-placeholder {
  color: rgb(30 64 175 / 0.05);
}

.placeholder-blue-800\/5::placeholder {
  color: rgb(30 64 175 / 0.05);
}

.placeholder-blue-800\/50::-moz-placeholder {
  color: rgb(30 64 175 / 0.5);
}

.placeholder-blue-800\/50::placeholder {
  color: rgb(30 64 175 / 0.5);
}

.placeholder-blue-800\/55::-moz-placeholder {
  color: rgb(30 64 175 / 0.55);
}

.placeholder-blue-800\/55::placeholder {
  color: rgb(30 64 175 / 0.55);
}

.placeholder-blue-800\/60::-moz-placeholder {
  color: rgb(30 64 175 / 0.6);
}

.placeholder-blue-800\/60::placeholder {
  color: rgb(30 64 175 / 0.6);
}

.placeholder-blue-800\/65::-moz-placeholder {
  color: rgb(30 64 175 / 0.65);
}

.placeholder-blue-800\/65::placeholder {
  color: rgb(30 64 175 / 0.65);
}

.placeholder-blue-800\/70::-moz-placeholder {
  color: rgb(30 64 175 / 0.7);
}

.placeholder-blue-800\/70::placeholder {
  color: rgb(30 64 175 / 0.7);
}

.placeholder-blue-800\/75::-moz-placeholder {
  color: rgb(30 64 175 / 0.75);
}

.placeholder-blue-800\/75::placeholder {
  color: rgb(30 64 175 / 0.75);
}

.placeholder-blue-800\/80::-moz-placeholder {
  color: rgb(30 64 175 / 0.8);
}

.placeholder-blue-800\/80::placeholder {
  color: rgb(30 64 175 / 0.8);
}

.placeholder-blue-800\/85::-moz-placeholder {
  color: rgb(30 64 175 / 0.85);
}

.placeholder-blue-800\/85::placeholder {
  color: rgb(30 64 175 / 0.85);
}

.placeholder-blue-800\/90::-moz-placeholder {
  color: rgb(30 64 175 / 0.9);
}

.placeholder-blue-800\/90::placeholder {
  color: rgb(30 64 175 / 0.9);
}

.placeholder-blue-800\/95::-moz-placeholder {
  color: rgb(30 64 175 / 0.95);
}

.placeholder-blue-800\/95::placeholder {
  color: rgb(30 64 175 / 0.95);
}

.placeholder-blue-900::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(30 58 138 / var(--tw-placeholder-opacity, 1));
}

.placeholder-blue-900::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(30 58 138 / var(--tw-placeholder-opacity, 1));
}

.placeholder-blue-900\/0::-moz-placeholder {
  color: rgb(30 58 138 / 0);
}

.placeholder-blue-900\/0::placeholder {
  color: rgb(30 58 138 / 0);
}

.placeholder-blue-900\/10::-moz-placeholder {
  color: rgb(30 58 138 / 0.1);
}

.placeholder-blue-900\/10::placeholder {
  color: rgb(30 58 138 / 0.1);
}

.placeholder-blue-900\/100::-moz-placeholder {
  color: rgb(30 58 138 / 1);
}

.placeholder-blue-900\/100::placeholder {
  color: rgb(30 58 138 / 1);
}

.placeholder-blue-900\/15::-moz-placeholder {
  color: rgb(30 58 138 / 0.15);
}

.placeholder-blue-900\/15::placeholder {
  color: rgb(30 58 138 / 0.15);
}

.placeholder-blue-900\/20::-moz-placeholder {
  color: rgb(30 58 138 / 0.2);
}

.placeholder-blue-900\/20::placeholder {
  color: rgb(30 58 138 / 0.2);
}

.placeholder-blue-900\/25::-moz-placeholder {
  color: rgb(30 58 138 / 0.25);
}

.placeholder-blue-900\/25::placeholder {
  color: rgb(30 58 138 / 0.25);
}

.placeholder-blue-900\/30::-moz-placeholder {
  color: rgb(30 58 138 / 0.3);
}

.placeholder-blue-900\/30::placeholder {
  color: rgb(30 58 138 / 0.3);
}

.placeholder-blue-900\/35::-moz-placeholder {
  color: rgb(30 58 138 / 0.35);
}

.placeholder-blue-900\/35::placeholder {
  color: rgb(30 58 138 / 0.35);
}

.placeholder-blue-900\/40::-moz-placeholder {
  color: rgb(30 58 138 / 0.4);
}

.placeholder-blue-900\/40::placeholder {
  color: rgb(30 58 138 / 0.4);
}

.placeholder-blue-900\/45::-moz-placeholder {
  color: rgb(30 58 138 / 0.45);
}

.placeholder-blue-900\/45::placeholder {
  color: rgb(30 58 138 / 0.45);
}

.placeholder-blue-900\/5::-moz-placeholder {
  color: rgb(30 58 138 / 0.05);
}

.placeholder-blue-900\/5::placeholder {
  color: rgb(30 58 138 / 0.05);
}

.placeholder-blue-900\/50::-moz-placeholder {
  color: rgb(30 58 138 / 0.5);
}

.placeholder-blue-900\/50::placeholder {
  color: rgb(30 58 138 / 0.5);
}

.placeholder-blue-900\/55::-moz-placeholder {
  color: rgb(30 58 138 / 0.55);
}

.placeholder-blue-900\/55::placeholder {
  color: rgb(30 58 138 / 0.55);
}

.placeholder-blue-900\/60::-moz-placeholder {
  color: rgb(30 58 138 / 0.6);
}

.placeholder-blue-900\/60::placeholder {
  color: rgb(30 58 138 / 0.6);
}

.placeholder-blue-900\/65::-moz-placeholder {
  color: rgb(30 58 138 / 0.65);
}

.placeholder-blue-900\/65::placeholder {
  color: rgb(30 58 138 / 0.65);
}

.placeholder-blue-900\/70::-moz-placeholder {
  color: rgb(30 58 138 / 0.7);
}

.placeholder-blue-900\/70::placeholder {
  color: rgb(30 58 138 / 0.7);
}

.placeholder-blue-900\/75::-moz-placeholder {
  color: rgb(30 58 138 / 0.75);
}

.placeholder-blue-900\/75::placeholder {
  color: rgb(30 58 138 / 0.75);
}

.placeholder-blue-900\/80::-moz-placeholder {
  color: rgb(30 58 138 / 0.8);
}

.placeholder-blue-900\/80::placeholder {
  color: rgb(30 58 138 / 0.8);
}

.placeholder-blue-900\/85::-moz-placeholder {
  color: rgb(30 58 138 / 0.85);
}

.placeholder-blue-900\/85::placeholder {
  color: rgb(30 58 138 / 0.85);
}

.placeholder-blue-900\/90::-moz-placeholder {
  color: rgb(30 58 138 / 0.9);
}

.placeholder-blue-900\/90::placeholder {
  color: rgb(30 58 138 / 0.9);
}

.placeholder-blue-900\/95::-moz-placeholder {
  color: rgb(30 58 138 / 0.95);
}

.placeholder-blue-900\/95::placeholder {
  color: rgb(30 58 138 / 0.95);
}

.placeholder-blue-950::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(23 37 84 / var(--tw-placeholder-opacity, 1));
}

.placeholder-blue-950::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(23 37 84 / var(--tw-placeholder-opacity, 1));
}

.placeholder-blue-950\/0::-moz-placeholder {
  color: rgb(23 37 84 / 0);
}

.placeholder-blue-950\/0::placeholder {
  color: rgb(23 37 84 / 0);
}

.placeholder-blue-950\/10::-moz-placeholder {
  color: rgb(23 37 84 / 0.1);
}

.placeholder-blue-950\/10::placeholder {
  color: rgb(23 37 84 / 0.1);
}

.placeholder-blue-950\/100::-moz-placeholder {
  color: rgb(23 37 84 / 1);
}

.placeholder-blue-950\/100::placeholder {
  color: rgb(23 37 84 / 1);
}

.placeholder-blue-950\/15::-moz-placeholder {
  color: rgb(23 37 84 / 0.15);
}

.placeholder-blue-950\/15::placeholder {
  color: rgb(23 37 84 / 0.15);
}

.placeholder-blue-950\/20::-moz-placeholder {
  color: rgb(23 37 84 / 0.2);
}

.placeholder-blue-950\/20::placeholder {
  color: rgb(23 37 84 / 0.2);
}

.placeholder-blue-950\/25::-moz-placeholder {
  color: rgb(23 37 84 / 0.25);
}

.placeholder-blue-950\/25::placeholder {
  color: rgb(23 37 84 / 0.25);
}

.placeholder-blue-950\/30::-moz-placeholder {
  color: rgb(23 37 84 / 0.3);
}

.placeholder-blue-950\/30::placeholder {
  color: rgb(23 37 84 / 0.3);
}

.placeholder-blue-950\/35::-moz-placeholder {
  color: rgb(23 37 84 / 0.35);
}

.placeholder-blue-950\/35::placeholder {
  color: rgb(23 37 84 / 0.35);
}

.placeholder-blue-950\/40::-moz-placeholder {
  color: rgb(23 37 84 / 0.4);
}

.placeholder-blue-950\/40::placeholder {
  color: rgb(23 37 84 / 0.4);
}

.placeholder-blue-950\/45::-moz-placeholder {
  color: rgb(23 37 84 / 0.45);
}

.placeholder-blue-950\/45::placeholder {
  color: rgb(23 37 84 / 0.45);
}

.placeholder-blue-950\/5::-moz-placeholder {
  color: rgb(23 37 84 / 0.05);
}

.placeholder-blue-950\/5::placeholder {
  color: rgb(23 37 84 / 0.05);
}

.placeholder-blue-950\/50::-moz-placeholder {
  color: rgb(23 37 84 / 0.5);
}

.placeholder-blue-950\/50::placeholder {
  color: rgb(23 37 84 / 0.5);
}

.placeholder-blue-950\/55::-moz-placeholder {
  color: rgb(23 37 84 / 0.55);
}

.placeholder-blue-950\/55::placeholder {
  color: rgb(23 37 84 / 0.55);
}

.placeholder-blue-950\/60::-moz-placeholder {
  color: rgb(23 37 84 / 0.6);
}

.placeholder-blue-950\/60::placeholder {
  color: rgb(23 37 84 / 0.6);
}

.placeholder-blue-950\/65::-moz-placeholder {
  color: rgb(23 37 84 / 0.65);
}

.placeholder-blue-950\/65::placeholder {
  color: rgb(23 37 84 / 0.65);
}

.placeholder-blue-950\/70::-moz-placeholder {
  color: rgb(23 37 84 / 0.7);
}

.placeholder-blue-950\/70::placeholder {
  color: rgb(23 37 84 / 0.7);
}

.placeholder-blue-950\/75::-moz-placeholder {
  color: rgb(23 37 84 / 0.75);
}

.placeholder-blue-950\/75::placeholder {
  color: rgb(23 37 84 / 0.75);
}

.placeholder-blue-950\/80::-moz-placeholder {
  color: rgb(23 37 84 / 0.8);
}

.placeholder-blue-950\/80::placeholder {
  color: rgb(23 37 84 / 0.8);
}

.placeholder-blue-950\/85::-moz-placeholder {
  color: rgb(23 37 84 / 0.85);
}

.placeholder-blue-950\/85::placeholder {
  color: rgb(23 37 84 / 0.85);
}

.placeholder-blue-950\/90::-moz-placeholder {
  color: rgb(23 37 84 / 0.9);
}

.placeholder-blue-950\/90::placeholder {
  color: rgb(23 37 84 / 0.9);
}

.placeholder-blue-950\/95::-moz-placeholder {
  color: rgb(23 37 84 / 0.95);
}

.placeholder-blue-950\/95::placeholder {
  color: rgb(23 37 84 / 0.95);
}

.placeholder-current::-moz-placeholder {
  color: currentColor;
}

.placeholder-current::placeholder {
  color: currentColor;
}

.placeholder-eva-blue::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(26 33 62 / var(--tw-placeholder-opacity, 1));
}

.placeholder-eva-blue::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(26 33 62 / var(--tw-placeholder-opacity, 1));
}

.placeholder-eva-blue-appt::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(52, 137, 207, var(--tw-placeholder-opacity, 1));
}

.placeholder-eva-blue-appt::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(52, 137, 207, var(--tw-placeholder-opacity, 1));
}

.placeholder-eva-blue-appt\/0::-moz-placeholder {
  color: rgba(52, 137, 207, 0);
}

.placeholder-eva-blue-appt\/0::placeholder {
  color: rgba(52, 137, 207, 0);
}

.placeholder-eva-blue-appt\/10::-moz-placeholder {
  color: rgba(52, 137, 207, 0.1);
}

.placeholder-eva-blue-appt\/10::placeholder {
  color: rgba(52, 137, 207, 0.1);
}

.placeholder-eva-blue-appt\/100::-moz-placeholder {
  color: rgba(52, 137, 207, 1);
}

.placeholder-eva-blue-appt\/100::placeholder {
  color: rgba(52, 137, 207, 1);
}

.placeholder-eva-blue-appt\/15::-moz-placeholder {
  color: rgba(52, 137, 207, 0.15);
}

.placeholder-eva-blue-appt\/15::placeholder {
  color: rgba(52, 137, 207, 0.15);
}

.placeholder-eva-blue-appt\/20::-moz-placeholder {
  color: rgba(52, 137, 207, 0.2);
}

.placeholder-eva-blue-appt\/20::placeholder {
  color: rgba(52, 137, 207, 0.2);
}

.placeholder-eva-blue-appt\/25::-moz-placeholder {
  color: rgba(52, 137, 207, 0.25);
}

.placeholder-eva-blue-appt\/25::placeholder {
  color: rgba(52, 137, 207, 0.25);
}

.placeholder-eva-blue-appt\/30::-moz-placeholder {
  color: rgba(52, 137, 207, 0.3);
}

.placeholder-eva-blue-appt\/30::placeholder {
  color: rgba(52, 137, 207, 0.3);
}

.placeholder-eva-blue-appt\/35::-moz-placeholder {
  color: rgba(52, 137, 207, 0.35);
}

.placeholder-eva-blue-appt\/35::placeholder {
  color: rgba(52, 137, 207, 0.35);
}

.placeholder-eva-blue-appt\/40::-moz-placeholder {
  color: rgba(52, 137, 207, 0.4);
}

.placeholder-eva-blue-appt\/40::placeholder {
  color: rgba(52, 137, 207, 0.4);
}

.placeholder-eva-blue-appt\/45::-moz-placeholder {
  color: rgba(52, 137, 207, 0.45);
}

.placeholder-eva-blue-appt\/45::placeholder {
  color: rgba(52, 137, 207, 0.45);
}

.placeholder-eva-blue-appt\/5::-moz-placeholder {
  color: rgba(52, 137, 207, 0.05);
}

.placeholder-eva-blue-appt\/5::placeholder {
  color: rgba(52, 137, 207, 0.05);
}

.placeholder-eva-blue-appt\/50::-moz-placeholder {
  color: rgba(52, 137, 207, 0.5);
}

.placeholder-eva-blue-appt\/50::placeholder {
  color: rgba(52, 137, 207, 0.5);
}

.placeholder-eva-blue-appt\/55::-moz-placeholder {
  color: rgba(52, 137, 207, 0.55);
}

.placeholder-eva-blue-appt\/55::placeholder {
  color: rgba(52, 137, 207, 0.55);
}

.placeholder-eva-blue-appt\/60::-moz-placeholder {
  color: rgba(52, 137, 207, 0.6);
}

.placeholder-eva-blue-appt\/60::placeholder {
  color: rgba(52, 137, 207, 0.6);
}

.placeholder-eva-blue-appt\/65::-moz-placeholder {
  color: rgba(52, 137, 207, 0.65);
}

.placeholder-eva-blue-appt\/65::placeholder {
  color: rgba(52, 137, 207, 0.65);
}

.placeholder-eva-blue-appt\/70::-moz-placeholder {
  color: rgba(52, 137, 207, 0.7);
}

.placeholder-eva-blue-appt\/70::placeholder {
  color: rgba(52, 137, 207, 0.7);
}

.placeholder-eva-blue-appt\/75::-moz-placeholder {
  color: rgba(52, 137, 207, 0.75);
}

.placeholder-eva-blue-appt\/75::placeholder {
  color: rgba(52, 137, 207, 0.75);
}

.placeholder-eva-blue-appt\/80::-moz-placeholder {
  color: rgba(52, 137, 207, 0.8);
}

.placeholder-eva-blue-appt\/80::placeholder {
  color: rgba(52, 137, 207, 0.8);
}

.placeholder-eva-blue-appt\/85::-moz-placeholder {
  color: rgba(52, 137, 207, 0.85);
}

.placeholder-eva-blue-appt\/85::placeholder {
  color: rgba(52, 137, 207, 0.85);
}

.placeholder-eva-blue-appt\/90::-moz-placeholder {
  color: rgba(52, 137, 207, 0.9);
}

.placeholder-eva-blue-appt\/90::placeholder {
  color: rgba(52, 137, 207, 0.9);
}

.placeholder-eva-blue-appt\/95::-moz-placeholder {
  color: rgba(52, 137, 207, 0.95);
}

.placeholder-eva-blue-appt\/95::placeholder {
  color: rgba(52, 137, 207, 0.95);
}

.placeholder-eva-blue-gray::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(117 121 139 / var(--tw-placeholder-opacity, 1));
}

.placeholder-eva-blue-gray::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(117 121 139 / var(--tw-placeholder-opacity, 1));
}

.placeholder-eva-blue-gray\/0::-moz-placeholder {
  color: rgb(117 121 139 / 0);
}

.placeholder-eva-blue-gray\/0::placeholder {
  color: rgb(117 121 139 / 0);
}

.placeholder-eva-blue-gray\/10::-moz-placeholder {
  color: rgb(117 121 139 / 0.1);
}

.placeholder-eva-blue-gray\/10::placeholder {
  color: rgb(117 121 139 / 0.1);
}

.placeholder-eva-blue-gray\/100::-moz-placeholder {
  color: rgb(117 121 139 / 1);
}

.placeholder-eva-blue-gray\/100::placeholder {
  color: rgb(117 121 139 / 1);
}

.placeholder-eva-blue-gray\/15::-moz-placeholder {
  color: rgb(117 121 139 / 0.15);
}

.placeholder-eva-blue-gray\/15::placeholder {
  color: rgb(117 121 139 / 0.15);
}

.placeholder-eva-blue-gray\/20::-moz-placeholder {
  color: rgb(117 121 139 / 0.2);
}

.placeholder-eva-blue-gray\/20::placeholder {
  color: rgb(117 121 139 / 0.2);
}

.placeholder-eva-blue-gray\/25::-moz-placeholder {
  color: rgb(117 121 139 / 0.25);
}

.placeholder-eva-blue-gray\/25::placeholder {
  color: rgb(117 121 139 / 0.25);
}

.placeholder-eva-blue-gray\/30::-moz-placeholder {
  color: rgb(117 121 139 / 0.3);
}

.placeholder-eva-blue-gray\/30::placeholder {
  color: rgb(117 121 139 / 0.3);
}

.placeholder-eva-blue-gray\/35::-moz-placeholder {
  color: rgb(117 121 139 / 0.35);
}

.placeholder-eva-blue-gray\/35::placeholder {
  color: rgb(117 121 139 / 0.35);
}

.placeholder-eva-blue-gray\/40::-moz-placeholder {
  color: rgb(117 121 139 / 0.4);
}

.placeholder-eva-blue-gray\/40::placeholder {
  color: rgb(117 121 139 / 0.4);
}

.placeholder-eva-blue-gray\/45::-moz-placeholder {
  color: rgb(117 121 139 / 0.45);
}

.placeholder-eva-blue-gray\/45::placeholder {
  color: rgb(117 121 139 / 0.45);
}

.placeholder-eva-blue-gray\/5::-moz-placeholder {
  color: rgb(117 121 139 / 0.05);
}

.placeholder-eva-blue-gray\/5::placeholder {
  color: rgb(117 121 139 / 0.05);
}

.placeholder-eva-blue-gray\/50::-moz-placeholder {
  color: rgb(117 121 139 / 0.5);
}

.placeholder-eva-blue-gray\/50::placeholder {
  color: rgb(117 121 139 / 0.5);
}

.placeholder-eva-blue-gray\/55::-moz-placeholder {
  color: rgb(117 121 139 / 0.55);
}

.placeholder-eva-blue-gray\/55::placeholder {
  color: rgb(117 121 139 / 0.55);
}

.placeholder-eva-blue-gray\/60::-moz-placeholder {
  color: rgb(117 121 139 / 0.6);
}

.placeholder-eva-blue-gray\/60::placeholder {
  color: rgb(117 121 139 / 0.6);
}

.placeholder-eva-blue-gray\/65::-moz-placeholder {
  color: rgb(117 121 139 / 0.65);
}

.placeholder-eva-blue-gray\/65::placeholder {
  color: rgb(117 121 139 / 0.65);
}

.placeholder-eva-blue-gray\/70::-moz-placeholder {
  color: rgb(117 121 139 / 0.7);
}

.placeholder-eva-blue-gray\/70::placeholder {
  color: rgb(117 121 139 / 0.7);
}

.placeholder-eva-blue-gray\/75::-moz-placeholder {
  color: rgb(117 121 139 / 0.75);
}

.placeholder-eva-blue-gray\/75::placeholder {
  color: rgb(117 121 139 / 0.75);
}

.placeholder-eva-blue-gray\/80::-moz-placeholder {
  color: rgb(117 121 139 / 0.8);
}

.placeholder-eva-blue-gray\/80::placeholder {
  color: rgb(117 121 139 / 0.8);
}

.placeholder-eva-blue-gray\/85::-moz-placeholder {
  color: rgb(117 121 139 / 0.85);
}

.placeholder-eva-blue-gray\/85::placeholder {
  color: rgb(117 121 139 / 0.85);
}

.placeholder-eva-blue-gray\/90::-moz-placeholder {
  color: rgb(117 121 139 / 0.9);
}

.placeholder-eva-blue-gray\/90::placeholder {
  color: rgb(117 121 139 / 0.9);
}

.placeholder-eva-blue-gray\/95::-moz-placeholder {
  color: rgb(117 121 139 / 0.95);
}

.placeholder-eva-blue-gray\/95::placeholder {
  color: rgb(117 121 139 / 0.95);
}

.placeholder-eva-blue-hv::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(15 18 31 / var(--tw-placeholder-opacity, 1));
}

.placeholder-eva-blue-hv::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(15 18 31 / var(--tw-placeholder-opacity, 1));
}

.placeholder-eva-blue-hv\/0::-moz-placeholder {
  color: rgb(15 18 31 / 0);
}

.placeholder-eva-blue-hv\/0::placeholder {
  color: rgb(15 18 31 / 0);
}

.placeholder-eva-blue-hv\/10::-moz-placeholder {
  color: rgb(15 18 31 / 0.1);
}

.placeholder-eva-blue-hv\/10::placeholder {
  color: rgb(15 18 31 / 0.1);
}

.placeholder-eva-blue-hv\/100::-moz-placeholder {
  color: rgb(15 18 31 / 1);
}

.placeholder-eva-blue-hv\/100::placeholder {
  color: rgb(15 18 31 / 1);
}

.placeholder-eva-blue-hv\/15::-moz-placeholder {
  color: rgb(15 18 31 / 0.15);
}

.placeholder-eva-blue-hv\/15::placeholder {
  color: rgb(15 18 31 / 0.15);
}

.placeholder-eva-blue-hv\/20::-moz-placeholder {
  color: rgb(15 18 31 / 0.2);
}

.placeholder-eva-blue-hv\/20::placeholder {
  color: rgb(15 18 31 / 0.2);
}

.placeholder-eva-blue-hv\/25::-moz-placeholder {
  color: rgb(15 18 31 / 0.25);
}

.placeholder-eva-blue-hv\/25::placeholder {
  color: rgb(15 18 31 / 0.25);
}

.placeholder-eva-blue-hv\/30::-moz-placeholder {
  color: rgb(15 18 31 / 0.3);
}

.placeholder-eva-blue-hv\/30::placeholder {
  color: rgb(15 18 31 / 0.3);
}

.placeholder-eva-blue-hv\/35::-moz-placeholder {
  color: rgb(15 18 31 / 0.35);
}

.placeholder-eva-blue-hv\/35::placeholder {
  color: rgb(15 18 31 / 0.35);
}

.placeholder-eva-blue-hv\/40::-moz-placeholder {
  color: rgb(15 18 31 / 0.4);
}

.placeholder-eva-blue-hv\/40::placeholder {
  color: rgb(15 18 31 / 0.4);
}

.placeholder-eva-blue-hv\/45::-moz-placeholder {
  color: rgb(15 18 31 / 0.45);
}

.placeholder-eva-blue-hv\/45::placeholder {
  color: rgb(15 18 31 / 0.45);
}

.placeholder-eva-blue-hv\/5::-moz-placeholder {
  color: rgb(15 18 31 / 0.05);
}

.placeholder-eva-blue-hv\/5::placeholder {
  color: rgb(15 18 31 / 0.05);
}

.placeholder-eva-blue-hv\/50::-moz-placeholder {
  color: rgb(15 18 31 / 0.5);
}

.placeholder-eva-blue-hv\/50::placeholder {
  color: rgb(15 18 31 / 0.5);
}

.placeholder-eva-blue-hv\/55::-moz-placeholder {
  color: rgb(15 18 31 / 0.55);
}

.placeholder-eva-blue-hv\/55::placeholder {
  color: rgb(15 18 31 / 0.55);
}

.placeholder-eva-blue-hv\/60::-moz-placeholder {
  color: rgb(15 18 31 / 0.6);
}

.placeholder-eva-blue-hv\/60::placeholder {
  color: rgb(15 18 31 / 0.6);
}

.placeholder-eva-blue-hv\/65::-moz-placeholder {
  color: rgb(15 18 31 / 0.65);
}

.placeholder-eva-blue-hv\/65::placeholder {
  color: rgb(15 18 31 / 0.65);
}

.placeholder-eva-blue-hv\/70::-moz-placeholder {
  color: rgb(15 18 31 / 0.7);
}

.placeholder-eva-blue-hv\/70::placeholder {
  color: rgb(15 18 31 / 0.7);
}

.placeholder-eva-blue-hv\/75::-moz-placeholder {
  color: rgb(15 18 31 / 0.75);
}

.placeholder-eva-blue-hv\/75::placeholder {
  color: rgb(15 18 31 / 0.75);
}

.placeholder-eva-blue-hv\/80::-moz-placeholder {
  color: rgb(15 18 31 / 0.8);
}

.placeholder-eva-blue-hv\/80::placeholder {
  color: rgb(15 18 31 / 0.8);
}

.placeholder-eva-blue-hv\/85::-moz-placeholder {
  color: rgb(15 18 31 / 0.85);
}

.placeholder-eva-blue-hv\/85::placeholder {
  color: rgb(15 18 31 / 0.85);
}

.placeholder-eva-blue-hv\/90::-moz-placeholder {
  color: rgb(15 18 31 / 0.9);
}

.placeholder-eva-blue-hv\/90::placeholder {
  color: rgb(15 18 31 / 0.9);
}

.placeholder-eva-blue-hv\/95::-moz-placeholder {
  color: rgb(15 18 31 / 0.95);
}

.placeholder-eva-blue-hv\/95::placeholder {
  color: rgb(15 18 31 / 0.95);
}

.placeholder-eva-blue-light::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(48 56 81 / var(--tw-placeholder-opacity, 1));
}

.placeholder-eva-blue-light::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(48 56 81 / var(--tw-placeholder-opacity, 1));
}

.placeholder-eva-blue-light-hv::-moz-placeholder {
  color: rgba(17,20,30,.3);
}

.placeholder-eva-blue-light-hv::placeholder {
  color: rgba(17,20,30,.3);
}

.placeholder-eva-blue-light-hv\/0::-moz-placeholder {
  color: rgba(17, 20, 30, 0);
}

.placeholder-eva-blue-light-hv\/0::placeholder {
  color: rgba(17, 20, 30, 0);
}

.placeholder-eva-blue-light-hv\/10::-moz-placeholder {
  color: rgba(17, 20, 30, 0.1);
}

.placeholder-eva-blue-light-hv\/10::placeholder {
  color: rgba(17, 20, 30, 0.1);
}

.placeholder-eva-blue-light-hv\/100::-moz-placeholder {
  color: rgba(17, 20, 30, 1);
}

.placeholder-eva-blue-light-hv\/100::placeholder {
  color: rgba(17, 20, 30, 1);
}

.placeholder-eva-blue-light-hv\/15::-moz-placeholder {
  color: rgba(17, 20, 30, 0.15);
}

.placeholder-eva-blue-light-hv\/15::placeholder {
  color: rgba(17, 20, 30, 0.15);
}

.placeholder-eva-blue-light-hv\/20::-moz-placeholder {
  color: rgba(17, 20, 30, 0.2);
}

.placeholder-eva-blue-light-hv\/20::placeholder {
  color: rgba(17, 20, 30, 0.2);
}

.placeholder-eva-blue-light-hv\/25::-moz-placeholder {
  color: rgba(17, 20, 30, 0.25);
}

.placeholder-eva-blue-light-hv\/25::placeholder {
  color: rgba(17, 20, 30, 0.25);
}

.placeholder-eva-blue-light-hv\/30::-moz-placeholder {
  color: rgba(17, 20, 30, 0.3);
}

.placeholder-eva-blue-light-hv\/30::placeholder {
  color: rgba(17, 20, 30, 0.3);
}

.placeholder-eva-blue-light-hv\/35::-moz-placeholder {
  color: rgba(17, 20, 30, 0.35);
}

.placeholder-eva-blue-light-hv\/35::placeholder {
  color: rgba(17, 20, 30, 0.35);
}

.placeholder-eva-blue-light-hv\/40::-moz-placeholder {
  color: rgba(17, 20, 30, 0.4);
}

.placeholder-eva-blue-light-hv\/40::placeholder {
  color: rgba(17, 20, 30, 0.4);
}

.placeholder-eva-blue-light-hv\/45::-moz-placeholder {
  color: rgba(17, 20, 30, 0.45);
}

.placeholder-eva-blue-light-hv\/45::placeholder {
  color: rgba(17, 20, 30, 0.45);
}

.placeholder-eva-blue-light-hv\/5::-moz-placeholder {
  color: rgba(17, 20, 30, 0.05);
}

.placeholder-eva-blue-light-hv\/5::placeholder {
  color: rgba(17, 20, 30, 0.05);
}

.placeholder-eva-blue-light-hv\/50::-moz-placeholder {
  color: rgba(17, 20, 30, 0.5);
}

.placeholder-eva-blue-light-hv\/50::placeholder {
  color: rgba(17, 20, 30, 0.5);
}

.placeholder-eva-blue-light-hv\/55::-moz-placeholder {
  color: rgba(17, 20, 30, 0.55);
}

.placeholder-eva-blue-light-hv\/55::placeholder {
  color: rgba(17, 20, 30, 0.55);
}

.placeholder-eva-blue-light-hv\/60::-moz-placeholder {
  color: rgba(17, 20, 30, 0.6);
}

.placeholder-eva-blue-light-hv\/60::placeholder {
  color: rgba(17, 20, 30, 0.6);
}

.placeholder-eva-blue-light-hv\/65::-moz-placeholder {
  color: rgba(17, 20, 30, 0.65);
}

.placeholder-eva-blue-light-hv\/65::placeholder {
  color: rgba(17, 20, 30, 0.65);
}

.placeholder-eva-blue-light-hv\/70::-moz-placeholder {
  color: rgba(17, 20, 30, 0.7);
}

.placeholder-eva-blue-light-hv\/70::placeholder {
  color: rgba(17, 20, 30, 0.7);
}

.placeholder-eva-blue-light-hv\/75::-moz-placeholder {
  color: rgba(17, 20, 30, 0.75);
}

.placeholder-eva-blue-light-hv\/75::placeholder {
  color: rgba(17, 20, 30, 0.75);
}

.placeholder-eva-blue-light-hv\/80::-moz-placeholder {
  color: rgba(17, 20, 30, 0.8);
}

.placeholder-eva-blue-light-hv\/80::placeholder {
  color: rgba(17, 20, 30, 0.8);
}

.placeholder-eva-blue-light-hv\/85::-moz-placeholder {
  color: rgba(17, 20, 30, 0.85);
}

.placeholder-eva-blue-light-hv\/85::placeholder {
  color: rgba(17, 20, 30, 0.85);
}

.placeholder-eva-blue-light-hv\/90::-moz-placeholder {
  color: rgba(17, 20, 30, 0.9);
}

.placeholder-eva-blue-light-hv\/90::placeholder {
  color: rgba(17, 20, 30, 0.9);
}

.placeholder-eva-blue-light-hv\/95::-moz-placeholder {
  color: rgba(17, 20, 30, 0.95);
}

.placeholder-eva-blue-light-hv\/95::placeholder {
  color: rgba(17, 20, 30, 0.95);
}

.placeholder-eva-blue-light\/0::-moz-placeholder {
  color: rgb(48 56 81 / 0);
}

.placeholder-eva-blue-light\/0::placeholder {
  color: rgb(48 56 81 / 0);
}

.placeholder-eva-blue-light\/10::-moz-placeholder {
  color: rgb(48 56 81 / 0.1);
}

.placeholder-eva-blue-light\/10::placeholder {
  color: rgb(48 56 81 / 0.1);
}

.placeholder-eva-blue-light\/100::-moz-placeholder {
  color: rgb(48 56 81 / 1);
}

.placeholder-eva-blue-light\/100::placeholder {
  color: rgb(48 56 81 / 1);
}

.placeholder-eva-blue-light\/15::-moz-placeholder {
  color: rgb(48 56 81 / 0.15);
}

.placeholder-eva-blue-light\/15::placeholder {
  color: rgb(48 56 81 / 0.15);
}

.placeholder-eva-blue-light\/20::-moz-placeholder {
  color: rgb(48 56 81 / 0.2);
}

.placeholder-eva-blue-light\/20::placeholder {
  color: rgb(48 56 81 / 0.2);
}

.placeholder-eva-blue-light\/25::-moz-placeholder {
  color: rgb(48 56 81 / 0.25);
}

.placeholder-eva-blue-light\/25::placeholder {
  color: rgb(48 56 81 / 0.25);
}

.placeholder-eva-blue-light\/30::-moz-placeholder {
  color: rgb(48 56 81 / 0.3);
}

.placeholder-eva-blue-light\/30::placeholder {
  color: rgb(48 56 81 / 0.3);
}

.placeholder-eva-blue-light\/35::-moz-placeholder {
  color: rgb(48 56 81 / 0.35);
}

.placeholder-eva-blue-light\/35::placeholder {
  color: rgb(48 56 81 / 0.35);
}

.placeholder-eva-blue-light\/40::-moz-placeholder {
  color: rgb(48 56 81 / 0.4);
}

.placeholder-eva-blue-light\/40::placeholder {
  color: rgb(48 56 81 / 0.4);
}

.placeholder-eva-blue-light\/45::-moz-placeholder {
  color: rgb(48 56 81 / 0.45);
}

.placeholder-eva-blue-light\/45::placeholder {
  color: rgb(48 56 81 / 0.45);
}

.placeholder-eva-blue-light\/5::-moz-placeholder {
  color: rgb(48 56 81 / 0.05);
}

.placeholder-eva-blue-light\/5::placeholder {
  color: rgb(48 56 81 / 0.05);
}

.placeholder-eva-blue-light\/50::-moz-placeholder {
  color: rgb(48 56 81 / 0.5);
}

.placeholder-eva-blue-light\/50::placeholder {
  color: rgb(48 56 81 / 0.5);
}

.placeholder-eva-blue-light\/55::-moz-placeholder {
  color: rgb(48 56 81 / 0.55);
}

.placeholder-eva-blue-light\/55::placeholder {
  color: rgb(48 56 81 / 0.55);
}

.placeholder-eva-blue-light\/60::-moz-placeholder {
  color: rgb(48 56 81 / 0.6);
}

.placeholder-eva-blue-light\/60::placeholder {
  color: rgb(48 56 81 / 0.6);
}

.placeholder-eva-blue-light\/65::-moz-placeholder {
  color: rgb(48 56 81 / 0.65);
}

.placeholder-eva-blue-light\/65::placeholder {
  color: rgb(48 56 81 / 0.65);
}

.placeholder-eva-blue-light\/70::-moz-placeholder {
  color: rgb(48 56 81 / 0.7);
}

.placeholder-eva-blue-light\/70::placeholder {
  color: rgb(48 56 81 / 0.7);
}

.placeholder-eva-blue-light\/75::-moz-placeholder {
  color: rgb(48 56 81 / 0.75);
}

.placeholder-eva-blue-light\/75::placeholder {
  color: rgb(48 56 81 / 0.75);
}

.placeholder-eva-blue-light\/80::-moz-placeholder {
  color: rgb(48 56 81 / 0.8);
}

.placeholder-eva-blue-light\/80::placeholder {
  color: rgb(48 56 81 / 0.8);
}

.placeholder-eva-blue-light\/85::-moz-placeholder {
  color: rgb(48 56 81 / 0.85);
}

.placeholder-eva-blue-light\/85::placeholder {
  color: rgb(48 56 81 / 0.85);
}

.placeholder-eva-blue-light\/90::-moz-placeholder {
  color: rgb(48 56 81 / 0.9);
}

.placeholder-eva-blue-light\/90::placeholder {
  color: rgb(48 56 81 / 0.9);
}

.placeholder-eva-blue-light\/95::-moz-placeholder {
  color: rgb(48 56 81 / 0.95);
}

.placeholder-eva-blue-light\/95::placeholder {
  color: rgb(48 56 81 / 0.95);
}

.placeholder-eva-blue\/0::-moz-placeholder {
  color: rgb(26 33 62 / 0);
}

.placeholder-eva-blue\/0::placeholder {
  color: rgb(26 33 62 / 0);
}

.placeholder-eva-blue\/10::-moz-placeholder {
  color: rgb(26 33 62 / 0.1);
}

.placeholder-eva-blue\/10::placeholder {
  color: rgb(26 33 62 / 0.1);
}

.placeholder-eva-blue\/100::-moz-placeholder {
  color: rgb(26 33 62 / 1);
}

.placeholder-eva-blue\/100::placeholder {
  color: rgb(26 33 62 / 1);
}

.placeholder-eva-blue\/15::-moz-placeholder {
  color: rgb(26 33 62 / 0.15);
}

.placeholder-eva-blue\/15::placeholder {
  color: rgb(26 33 62 / 0.15);
}

.placeholder-eva-blue\/20::-moz-placeholder {
  color: rgb(26 33 62 / 0.2);
}

.placeholder-eva-blue\/20::placeholder {
  color: rgb(26 33 62 / 0.2);
}

.placeholder-eva-blue\/25::-moz-placeholder {
  color: rgb(26 33 62 / 0.25);
}

.placeholder-eva-blue\/25::placeholder {
  color: rgb(26 33 62 / 0.25);
}

.placeholder-eva-blue\/30::-moz-placeholder {
  color: rgb(26 33 62 / 0.3);
}

.placeholder-eva-blue\/30::placeholder {
  color: rgb(26 33 62 / 0.3);
}

.placeholder-eva-blue\/35::-moz-placeholder {
  color: rgb(26 33 62 / 0.35);
}

.placeholder-eva-blue\/35::placeholder {
  color: rgb(26 33 62 / 0.35);
}

.placeholder-eva-blue\/40::-moz-placeholder {
  color: rgb(26 33 62 / 0.4);
}

.placeholder-eva-blue\/40::placeholder {
  color: rgb(26 33 62 / 0.4);
}

.placeholder-eva-blue\/45::-moz-placeholder {
  color: rgb(26 33 62 / 0.45);
}

.placeholder-eva-blue\/45::placeholder {
  color: rgb(26 33 62 / 0.45);
}

.placeholder-eva-blue\/5::-moz-placeholder {
  color: rgb(26 33 62 / 0.05);
}

.placeholder-eva-blue\/5::placeholder {
  color: rgb(26 33 62 / 0.05);
}

.placeholder-eva-blue\/50::-moz-placeholder {
  color: rgb(26 33 62 / 0.5);
}

.placeholder-eva-blue\/50::placeholder {
  color: rgb(26 33 62 / 0.5);
}

.placeholder-eva-blue\/55::-moz-placeholder {
  color: rgb(26 33 62 / 0.55);
}

.placeholder-eva-blue\/55::placeholder {
  color: rgb(26 33 62 / 0.55);
}

.placeholder-eva-blue\/60::-moz-placeholder {
  color: rgb(26 33 62 / 0.6);
}

.placeholder-eva-blue\/60::placeholder {
  color: rgb(26 33 62 / 0.6);
}

.placeholder-eva-blue\/65::-moz-placeholder {
  color: rgb(26 33 62 / 0.65);
}

.placeholder-eva-blue\/65::placeholder {
  color: rgb(26 33 62 / 0.65);
}

.placeholder-eva-blue\/70::-moz-placeholder {
  color: rgb(26 33 62 / 0.7);
}

.placeholder-eva-blue\/70::placeholder {
  color: rgb(26 33 62 / 0.7);
}

.placeholder-eva-blue\/75::-moz-placeholder {
  color: rgb(26 33 62 / 0.75);
}

.placeholder-eva-blue\/75::placeholder {
  color: rgb(26 33 62 / 0.75);
}

.placeholder-eva-blue\/80::-moz-placeholder {
  color: rgb(26 33 62 / 0.8);
}

.placeholder-eva-blue\/80::placeholder {
  color: rgb(26 33 62 / 0.8);
}

.placeholder-eva-blue\/85::-moz-placeholder {
  color: rgb(26 33 62 / 0.85);
}

.placeholder-eva-blue\/85::placeholder {
  color: rgb(26 33 62 / 0.85);
}

.placeholder-eva-blue\/90::-moz-placeholder {
  color: rgb(26 33 62 / 0.9);
}

.placeholder-eva-blue\/90::placeholder {
  color: rgb(26 33 62 / 0.9);
}

.placeholder-eva-blue\/95::-moz-placeholder {
  color: rgb(26 33 62 / 0.95);
}

.placeholder-eva-blue\/95::placeholder {
  color: rgb(26 33 62 / 0.95);
}

.placeholder-eva-brown-appt::-moz-placeholder {
  color: rgba(99, 93, 94, 1);
}

.placeholder-eva-brown-appt::placeholder {
  color: rgba(99, 93, 94, 1);
}

.placeholder-eva-brown-appt\/0::-moz-placeholder {
  color: rgba(99, 93, 94, 0);
}

.placeholder-eva-brown-appt\/0::placeholder {
  color: rgba(99, 93, 94, 0);
}

.placeholder-eva-brown-appt\/10::-moz-placeholder {
  color: rgba(99, 93, 94, 0.1);
}

.placeholder-eva-brown-appt\/10::placeholder {
  color: rgba(99, 93, 94, 0.1);
}

.placeholder-eva-brown-appt\/100::-moz-placeholder {
  color: rgba(99, 93, 94, 1);
}

.placeholder-eva-brown-appt\/100::placeholder {
  color: rgba(99, 93, 94, 1);
}

.placeholder-eva-brown-appt\/15::-moz-placeholder {
  color: rgba(99, 93, 94, 0.15);
}

.placeholder-eva-brown-appt\/15::placeholder {
  color: rgba(99, 93, 94, 0.15);
}

.placeholder-eva-brown-appt\/20::-moz-placeholder {
  color: rgba(99, 93, 94, 0.2);
}

.placeholder-eva-brown-appt\/20::placeholder {
  color: rgba(99, 93, 94, 0.2);
}

.placeholder-eva-brown-appt\/25::-moz-placeholder {
  color: rgba(99, 93, 94, 0.25);
}

.placeholder-eva-brown-appt\/25::placeholder {
  color: rgba(99, 93, 94, 0.25);
}

.placeholder-eva-brown-appt\/30::-moz-placeholder {
  color: rgba(99, 93, 94, 0.3);
}

.placeholder-eva-brown-appt\/30::placeholder {
  color: rgba(99, 93, 94, 0.3);
}

.placeholder-eva-brown-appt\/35::-moz-placeholder {
  color: rgba(99, 93, 94, 0.35);
}

.placeholder-eva-brown-appt\/35::placeholder {
  color: rgba(99, 93, 94, 0.35);
}

.placeholder-eva-brown-appt\/40::-moz-placeholder {
  color: rgba(99, 93, 94, 0.4);
}

.placeholder-eva-brown-appt\/40::placeholder {
  color: rgba(99, 93, 94, 0.4);
}

.placeholder-eva-brown-appt\/45::-moz-placeholder {
  color: rgba(99, 93, 94, 0.45);
}

.placeholder-eva-brown-appt\/45::placeholder {
  color: rgba(99, 93, 94, 0.45);
}

.placeholder-eva-brown-appt\/5::-moz-placeholder {
  color: rgba(99, 93, 94, 0.05);
}

.placeholder-eva-brown-appt\/5::placeholder {
  color: rgba(99, 93, 94, 0.05);
}

.placeholder-eva-brown-appt\/50::-moz-placeholder {
  color: rgba(99, 93, 94, 0.5);
}

.placeholder-eva-brown-appt\/50::placeholder {
  color: rgba(99, 93, 94, 0.5);
}

.placeholder-eva-brown-appt\/55::-moz-placeholder {
  color: rgba(99, 93, 94, 0.55);
}

.placeholder-eva-brown-appt\/55::placeholder {
  color: rgba(99, 93, 94, 0.55);
}

.placeholder-eva-brown-appt\/60::-moz-placeholder {
  color: rgba(99, 93, 94, 0.6);
}

.placeholder-eva-brown-appt\/60::placeholder {
  color: rgba(99, 93, 94, 0.6);
}

.placeholder-eva-brown-appt\/65::-moz-placeholder {
  color: rgba(99, 93, 94, 0.65);
}

.placeholder-eva-brown-appt\/65::placeholder {
  color: rgba(99, 93, 94, 0.65);
}

.placeholder-eva-brown-appt\/70::-moz-placeholder {
  color: rgba(99, 93, 94, 0.7);
}

.placeholder-eva-brown-appt\/70::placeholder {
  color: rgba(99, 93, 94, 0.7);
}

.placeholder-eva-brown-appt\/75::-moz-placeholder {
  color: rgba(99, 93, 94, 0.75);
}

.placeholder-eva-brown-appt\/75::placeholder {
  color: rgba(99, 93, 94, 0.75);
}

.placeholder-eva-brown-appt\/80::-moz-placeholder {
  color: rgba(99, 93, 94, 0.8);
}

.placeholder-eva-brown-appt\/80::placeholder {
  color: rgba(99, 93, 94, 0.8);
}

.placeholder-eva-brown-appt\/85::-moz-placeholder {
  color: rgba(99, 93, 94, 0.85);
}

.placeholder-eva-brown-appt\/85::placeholder {
  color: rgba(99, 93, 94, 0.85);
}

.placeholder-eva-brown-appt\/90::-moz-placeholder {
  color: rgba(99, 93, 94, 0.9);
}

.placeholder-eva-brown-appt\/90::placeholder {
  color: rgba(99, 93, 94, 0.9);
}

.placeholder-eva-brown-appt\/95::-moz-placeholder {
  color: rgba(99, 93, 94, 0.95);
}

.placeholder-eva-brown-appt\/95::placeholder {
  color: rgba(99, 93, 94, 0.95);
}

.placeholder-eva-dark-green-appt::-moz-placeholder {
  color: rgba(102, 188, 130, 1);
}

.placeholder-eva-dark-green-appt::placeholder {
  color: rgba(102, 188, 130, 1);
}

.placeholder-eva-dark-green-appt\/0::-moz-placeholder {
  color: rgba(102, 188, 130, 0);
}

.placeholder-eva-dark-green-appt\/0::placeholder {
  color: rgba(102, 188, 130, 0);
}

.placeholder-eva-dark-green-appt\/10::-moz-placeholder {
  color: rgba(102, 188, 130, 0.1);
}

.placeholder-eva-dark-green-appt\/10::placeholder {
  color: rgba(102, 188, 130, 0.1);
}

.placeholder-eva-dark-green-appt\/100::-moz-placeholder {
  color: rgba(102, 188, 130, 1);
}

.placeholder-eva-dark-green-appt\/100::placeholder {
  color: rgba(102, 188, 130, 1);
}

.placeholder-eva-dark-green-appt\/15::-moz-placeholder {
  color: rgba(102, 188, 130, 0.15);
}

.placeholder-eva-dark-green-appt\/15::placeholder {
  color: rgba(102, 188, 130, 0.15);
}

.placeholder-eva-dark-green-appt\/20::-moz-placeholder {
  color: rgba(102, 188, 130, 0.2);
}

.placeholder-eva-dark-green-appt\/20::placeholder {
  color: rgba(102, 188, 130, 0.2);
}

.placeholder-eva-dark-green-appt\/25::-moz-placeholder {
  color: rgba(102, 188, 130, 0.25);
}

.placeholder-eva-dark-green-appt\/25::placeholder {
  color: rgba(102, 188, 130, 0.25);
}

.placeholder-eva-dark-green-appt\/30::-moz-placeholder {
  color: rgba(102, 188, 130, 0.3);
}

.placeholder-eva-dark-green-appt\/30::placeholder {
  color: rgba(102, 188, 130, 0.3);
}

.placeholder-eva-dark-green-appt\/35::-moz-placeholder {
  color: rgba(102, 188, 130, 0.35);
}

.placeholder-eva-dark-green-appt\/35::placeholder {
  color: rgba(102, 188, 130, 0.35);
}

.placeholder-eva-dark-green-appt\/40::-moz-placeholder {
  color: rgba(102, 188, 130, 0.4);
}

.placeholder-eva-dark-green-appt\/40::placeholder {
  color: rgba(102, 188, 130, 0.4);
}

.placeholder-eva-dark-green-appt\/45::-moz-placeholder {
  color: rgba(102, 188, 130, 0.45);
}

.placeholder-eva-dark-green-appt\/45::placeholder {
  color: rgba(102, 188, 130, 0.45);
}

.placeholder-eva-dark-green-appt\/5::-moz-placeholder {
  color: rgba(102, 188, 130, 0.05);
}

.placeholder-eva-dark-green-appt\/5::placeholder {
  color: rgba(102, 188, 130, 0.05);
}

.placeholder-eva-dark-green-appt\/50::-moz-placeholder {
  color: rgba(102, 188, 130, 0.5);
}

.placeholder-eva-dark-green-appt\/50::placeholder {
  color: rgba(102, 188, 130, 0.5);
}

.placeholder-eva-dark-green-appt\/55::-moz-placeholder {
  color: rgba(102, 188, 130, 0.55);
}

.placeholder-eva-dark-green-appt\/55::placeholder {
  color: rgba(102, 188, 130, 0.55);
}

.placeholder-eva-dark-green-appt\/60::-moz-placeholder {
  color: rgba(102, 188, 130, 0.6);
}

.placeholder-eva-dark-green-appt\/60::placeholder {
  color: rgba(102, 188, 130, 0.6);
}

.placeholder-eva-dark-green-appt\/65::-moz-placeholder {
  color: rgba(102, 188, 130, 0.65);
}

.placeholder-eva-dark-green-appt\/65::placeholder {
  color: rgba(102, 188, 130, 0.65);
}

.placeholder-eva-dark-green-appt\/70::-moz-placeholder {
  color: rgba(102, 188, 130, 0.7);
}

.placeholder-eva-dark-green-appt\/70::placeholder {
  color: rgba(102, 188, 130, 0.7);
}

.placeholder-eva-dark-green-appt\/75::-moz-placeholder {
  color: rgba(102, 188, 130, 0.75);
}

.placeholder-eva-dark-green-appt\/75::placeholder {
  color: rgba(102, 188, 130, 0.75);
}

.placeholder-eva-dark-green-appt\/80::-moz-placeholder {
  color: rgba(102, 188, 130, 0.8);
}

.placeholder-eva-dark-green-appt\/80::placeholder {
  color: rgba(102, 188, 130, 0.8);
}

.placeholder-eva-dark-green-appt\/85::-moz-placeholder {
  color: rgba(102, 188, 130, 0.85);
}

.placeholder-eva-dark-green-appt\/85::placeholder {
  color: rgba(102, 188, 130, 0.85);
}

.placeholder-eva-dark-green-appt\/90::-moz-placeholder {
  color: rgba(102, 188, 130, 0.9);
}

.placeholder-eva-dark-green-appt\/90::placeholder {
  color: rgba(102, 188, 130, 0.9);
}

.placeholder-eva-dark-green-appt\/95::-moz-placeholder {
  color: rgba(102, 188, 130, 0.95);
}

.placeholder-eva-dark-green-appt\/95::placeholder {
  color: rgba(102, 188, 130, 0.95);
}

.placeholder-eva-dark-red-appt::-moz-placeholder {
  color: rgba(198, 102, 94, 1);
}

.placeholder-eva-dark-red-appt::placeholder {
  color: rgba(198, 102, 94, 1);
}

.placeholder-eva-dark-red-appt\/0::-moz-placeholder {
  color: rgba(198, 102, 94, 0);
}

.placeholder-eva-dark-red-appt\/0::placeholder {
  color: rgba(198, 102, 94, 0);
}

.placeholder-eva-dark-red-appt\/10::-moz-placeholder {
  color: rgba(198, 102, 94, 0.1);
}

.placeholder-eva-dark-red-appt\/10::placeholder {
  color: rgba(198, 102, 94, 0.1);
}

.placeholder-eva-dark-red-appt\/100::-moz-placeholder {
  color: rgba(198, 102, 94, 1);
}

.placeholder-eva-dark-red-appt\/100::placeholder {
  color: rgba(198, 102, 94, 1);
}

.placeholder-eva-dark-red-appt\/15::-moz-placeholder {
  color: rgba(198, 102, 94, 0.15);
}

.placeholder-eva-dark-red-appt\/15::placeholder {
  color: rgba(198, 102, 94, 0.15);
}

.placeholder-eva-dark-red-appt\/20::-moz-placeholder {
  color: rgba(198, 102, 94, 0.2);
}

.placeholder-eva-dark-red-appt\/20::placeholder {
  color: rgba(198, 102, 94, 0.2);
}

.placeholder-eva-dark-red-appt\/25::-moz-placeholder {
  color: rgba(198, 102, 94, 0.25);
}

.placeholder-eva-dark-red-appt\/25::placeholder {
  color: rgba(198, 102, 94, 0.25);
}

.placeholder-eva-dark-red-appt\/30::-moz-placeholder {
  color: rgba(198, 102, 94, 0.3);
}

.placeholder-eva-dark-red-appt\/30::placeholder {
  color: rgba(198, 102, 94, 0.3);
}

.placeholder-eva-dark-red-appt\/35::-moz-placeholder {
  color: rgba(198, 102, 94, 0.35);
}

.placeholder-eva-dark-red-appt\/35::placeholder {
  color: rgba(198, 102, 94, 0.35);
}

.placeholder-eva-dark-red-appt\/40::-moz-placeholder {
  color: rgba(198, 102, 94, 0.4);
}

.placeholder-eva-dark-red-appt\/40::placeholder {
  color: rgba(198, 102, 94, 0.4);
}

.placeholder-eva-dark-red-appt\/45::-moz-placeholder {
  color: rgba(198, 102, 94, 0.45);
}

.placeholder-eva-dark-red-appt\/45::placeholder {
  color: rgba(198, 102, 94, 0.45);
}

.placeholder-eva-dark-red-appt\/5::-moz-placeholder {
  color: rgba(198, 102, 94, 0.05);
}

.placeholder-eva-dark-red-appt\/5::placeholder {
  color: rgba(198, 102, 94, 0.05);
}

.placeholder-eva-dark-red-appt\/50::-moz-placeholder {
  color: rgba(198, 102, 94, 0.5);
}

.placeholder-eva-dark-red-appt\/50::placeholder {
  color: rgba(198, 102, 94, 0.5);
}

.placeholder-eva-dark-red-appt\/55::-moz-placeholder {
  color: rgba(198, 102, 94, 0.55);
}

.placeholder-eva-dark-red-appt\/55::placeholder {
  color: rgba(198, 102, 94, 0.55);
}

.placeholder-eva-dark-red-appt\/60::-moz-placeholder {
  color: rgba(198, 102, 94, 0.6);
}

.placeholder-eva-dark-red-appt\/60::placeholder {
  color: rgba(198, 102, 94, 0.6);
}

.placeholder-eva-dark-red-appt\/65::-moz-placeholder {
  color: rgba(198, 102, 94, 0.65);
}

.placeholder-eva-dark-red-appt\/65::placeholder {
  color: rgba(198, 102, 94, 0.65);
}

.placeholder-eva-dark-red-appt\/70::-moz-placeholder {
  color: rgba(198, 102, 94, 0.7);
}

.placeholder-eva-dark-red-appt\/70::placeholder {
  color: rgba(198, 102, 94, 0.7);
}

.placeholder-eva-dark-red-appt\/75::-moz-placeholder {
  color: rgba(198, 102, 94, 0.75);
}

.placeholder-eva-dark-red-appt\/75::placeholder {
  color: rgba(198, 102, 94, 0.75);
}

.placeholder-eva-dark-red-appt\/80::-moz-placeholder {
  color: rgba(198, 102, 94, 0.8);
}

.placeholder-eva-dark-red-appt\/80::placeholder {
  color: rgba(198, 102, 94, 0.8);
}

.placeholder-eva-dark-red-appt\/85::-moz-placeholder {
  color: rgba(198, 102, 94, 0.85);
}

.placeholder-eva-dark-red-appt\/85::placeholder {
  color: rgba(198, 102, 94, 0.85);
}

.placeholder-eva-dark-red-appt\/90::-moz-placeholder {
  color: rgba(198, 102, 94, 0.9);
}

.placeholder-eva-dark-red-appt\/90::placeholder {
  color: rgba(198, 102, 94, 0.9);
}

.placeholder-eva-dark-red-appt\/95::-moz-placeholder {
  color: rgba(198, 102, 94, 0.95);
}

.placeholder-eva-dark-red-appt\/95::placeholder {
  color: rgba(198, 102, 94, 0.95);
}

.placeholder-eva-green::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(73 181 168 / var(--tw-placeholder-opacity, 1));
}

.placeholder-eva-green::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(73 181 168 / var(--tw-placeholder-opacity, 1));
}

.placeholder-eva-green-appt::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(128, 215, 109, var(--tw-placeholder-opacity, 1));
}

.placeholder-eva-green-appt::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(128, 215, 109, var(--tw-placeholder-opacity, 1));
}

.placeholder-eva-green-appt\/0::-moz-placeholder {
  color: rgba(128, 215, 109, 0);
}

.placeholder-eva-green-appt\/0::placeholder {
  color: rgba(128, 215, 109, 0);
}

.placeholder-eva-green-appt\/10::-moz-placeholder {
  color: rgba(128, 215, 109, 0.1);
}

.placeholder-eva-green-appt\/10::placeholder {
  color: rgba(128, 215, 109, 0.1);
}

.placeholder-eva-green-appt\/100::-moz-placeholder {
  color: rgba(128, 215, 109, 1);
}

.placeholder-eva-green-appt\/100::placeholder {
  color: rgba(128, 215, 109, 1);
}

.placeholder-eva-green-appt\/15::-moz-placeholder {
  color: rgba(128, 215, 109, 0.15);
}

.placeholder-eva-green-appt\/15::placeholder {
  color: rgba(128, 215, 109, 0.15);
}

.placeholder-eva-green-appt\/20::-moz-placeholder {
  color: rgba(128, 215, 109, 0.2);
}

.placeholder-eva-green-appt\/20::placeholder {
  color: rgba(128, 215, 109, 0.2);
}

.placeholder-eva-green-appt\/25::-moz-placeholder {
  color: rgba(128, 215, 109, 0.25);
}

.placeholder-eva-green-appt\/25::placeholder {
  color: rgba(128, 215, 109, 0.25);
}

.placeholder-eva-green-appt\/30::-moz-placeholder {
  color: rgba(128, 215, 109, 0.3);
}

.placeholder-eva-green-appt\/30::placeholder {
  color: rgba(128, 215, 109, 0.3);
}

.placeholder-eva-green-appt\/35::-moz-placeholder {
  color: rgba(128, 215, 109, 0.35);
}

.placeholder-eva-green-appt\/35::placeholder {
  color: rgba(128, 215, 109, 0.35);
}

.placeholder-eva-green-appt\/40::-moz-placeholder {
  color: rgba(128, 215, 109, 0.4);
}

.placeholder-eva-green-appt\/40::placeholder {
  color: rgba(128, 215, 109, 0.4);
}

.placeholder-eva-green-appt\/45::-moz-placeholder {
  color: rgba(128, 215, 109, 0.45);
}

.placeholder-eva-green-appt\/45::placeholder {
  color: rgba(128, 215, 109, 0.45);
}

.placeholder-eva-green-appt\/5::-moz-placeholder {
  color: rgba(128, 215, 109, 0.05);
}

.placeholder-eva-green-appt\/5::placeholder {
  color: rgba(128, 215, 109, 0.05);
}

.placeholder-eva-green-appt\/50::-moz-placeholder {
  color: rgba(128, 215, 109, 0.5);
}

.placeholder-eva-green-appt\/50::placeholder {
  color: rgba(128, 215, 109, 0.5);
}

.placeholder-eva-green-appt\/55::-moz-placeholder {
  color: rgba(128, 215, 109, 0.55);
}

.placeholder-eva-green-appt\/55::placeholder {
  color: rgba(128, 215, 109, 0.55);
}

.placeholder-eva-green-appt\/60::-moz-placeholder {
  color: rgba(128, 215, 109, 0.6);
}

.placeholder-eva-green-appt\/60::placeholder {
  color: rgba(128, 215, 109, 0.6);
}

.placeholder-eva-green-appt\/65::-moz-placeholder {
  color: rgba(128, 215, 109, 0.65);
}

.placeholder-eva-green-appt\/65::placeholder {
  color: rgba(128, 215, 109, 0.65);
}

.placeholder-eva-green-appt\/70::-moz-placeholder {
  color: rgba(128, 215, 109, 0.7);
}

.placeholder-eva-green-appt\/70::placeholder {
  color: rgba(128, 215, 109, 0.7);
}

.placeholder-eva-green-appt\/75::-moz-placeholder {
  color: rgba(128, 215, 109, 0.75);
}

.placeholder-eva-green-appt\/75::placeholder {
  color: rgba(128, 215, 109, 0.75);
}

.placeholder-eva-green-appt\/80::-moz-placeholder {
  color: rgba(128, 215, 109, 0.8);
}

.placeholder-eva-green-appt\/80::placeholder {
  color: rgba(128, 215, 109, 0.8);
}

.placeholder-eva-green-appt\/85::-moz-placeholder {
  color: rgba(128, 215, 109, 0.85);
}

.placeholder-eva-green-appt\/85::placeholder {
  color: rgba(128, 215, 109, 0.85);
}

.placeholder-eva-green-appt\/90::-moz-placeholder {
  color: rgba(128, 215, 109, 0.9);
}

.placeholder-eva-green-appt\/90::placeholder {
  color: rgba(128, 215, 109, 0.9);
}

.placeholder-eva-green-appt\/95::-moz-placeholder {
  color: rgba(128, 215, 109, 0.95);
}

.placeholder-eva-green-appt\/95::placeholder {
  color: rgba(128, 215, 109, 0.95);
}

.placeholder-eva-green-brown-appt::-moz-placeholder {
  color: rgba(197, 191, 140, 1);
}

.placeholder-eva-green-brown-appt::placeholder {
  color: rgba(197, 191, 140, 1);
}

.placeholder-eva-green-brown-appt\/0::-moz-placeholder {
  color: rgba(197, 191, 140, 0);
}

.placeholder-eva-green-brown-appt\/0::placeholder {
  color: rgba(197, 191, 140, 0);
}

.placeholder-eva-green-brown-appt\/10::-moz-placeholder {
  color: rgba(197, 191, 140, 0.1);
}

.placeholder-eva-green-brown-appt\/10::placeholder {
  color: rgba(197, 191, 140, 0.1);
}

.placeholder-eva-green-brown-appt\/100::-moz-placeholder {
  color: rgba(197, 191, 140, 1);
}

.placeholder-eva-green-brown-appt\/100::placeholder {
  color: rgba(197, 191, 140, 1);
}

.placeholder-eva-green-brown-appt\/15::-moz-placeholder {
  color: rgba(197, 191, 140, 0.15);
}

.placeholder-eva-green-brown-appt\/15::placeholder {
  color: rgba(197, 191, 140, 0.15);
}

.placeholder-eva-green-brown-appt\/20::-moz-placeholder {
  color: rgba(197, 191, 140, 0.2);
}

.placeholder-eva-green-brown-appt\/20::placeholder {
  color: rgba(197, 191, 140, 0.2);
}

.placeholder-eva-green-brown-appt\/25::-moz-placeholder {
  color: rgba(197, 191, 140, 0.25);
}

.placeholder-eva-green-brown-appt\/25::placeholder {
  color: rgba(197, 191, 140, 0.25);
}

.placeholder-eva-green-brown-appt\/30::-moz-placeholder {
  color: rgba(197, 191, 140, 0.3);
}

.placeholder-eva-green-brown-appt\/30::placeholder {
  color: rgba(197, 191, 140, 0.3);
}

.placeholder-eva-green-brown-appt\/35::-moz-placeholder {
  color: rgba(197, 191, 140, 0.35);
}

.placeholder-eva-green-brown-appt\/35::placeholder {
  color: rgba(197, 191, 140, 0.35);
}

.placeholder-eva-green-brown-appt\/40::-moz-placeholder {
  color: rgba(197, 191, 140, 0.4);
}

.placeholder-eva-green-brown-appt\/40::placeholder {
  color: rgba(197, 191, 140, 0.4);
}

.placeholder-eva-green-brown-appt\/45::-moz-placeholder {
  color: rgba(197, 191, 140, 0.45);
}

.placeholder-eva-green-brown-appt\/45::placeholder {
  color: rgba(197, 191, 140, 0.45);
}

.placeholder-eva-green-brown-appt\/5::-moz-placeholder {
  color: rgba(197, 191, 140, 0.05);
}

.placeholder-eva-green-brown-appt\/5::placeholder {
  color: rgba(197, 191, 140, 0.05);
}

.placeholder-eva-green-brown-appt\/50::-moz-placeholder {
  color: rgba(197, 191, 140, 0.5);
}

.placeholder-eva-green-brown-appt\/50::placeholder {
  color: rgba(197, 191, 140, 0.5);
}

.placeholder-eva-green-brown-appt\/55::-moz-placeholder {
  color: rgba(197, 191, 140, 0.55);
}

.placeholder-eva-green-brown-appt\/55::placeholder {
  color: rgba(197, 191, 140, 0.55);
}

.placeholder-eva-green-brown-appt\/60::-moz-placeholder {
  color: rgba(197, 191, 140, 0.6);
}

.placeholder-eva-green-brown-appt\/60::placeholder {
  color: rgba(197, 191, 140, 0.6);
}

.placeholder-eva-green-brown-appt\/65::-moz-placeholder {
  color: rgba(197, 191, 140, 0.65);
}

.placeholder-eva-green-brown-appt\/65::placeholder {
  color: rgba(197, 191, 140, 0.65);
}

.placeholder-eva-green-brown-appt\/70::-moz-placeholder {
  color: rgba(197, 191, 140, 0.7);
}

.placeholder-eva-green-brown-appt\/70::placeholder {
  color: rgba(197, 191, 140, 0.7);
}

.placeholder-eva-green-brown-appt\/75::-moz-placeholder {
  color: rgba(197, 191, 140, 0.75);
}

.placeholder-eva-green-brown-appt\/75::placeholder {
  color: rgba(197, 191, 140, 0.75);
}

.placeholder-eva-green-brown-appt\/80::-moz-placeholder {
  color: rgba(197, 191, 140, 0.8);
}

.placeholder-eva-green-brown-appt\/80::placeholder {
  color: rgba(197, 191, 140, 0.8);
}

.placeholder-eva-green-brown-appt\/85::-moz-placeholder {
  color: rgba(197, 191, 140, 0.85);
}

.placeholder-eva-green-brown-appt\/85::placeholder {
  color: rgba(197, 191, 140, 0.85);
}

.placeholder-eva-green-brown-appt\/90::-moz-placeholder {
  color: rgba(197, 191, 140, 0.9);
}

.placeholder-eva-green-brown-appt\/90::placeholder {
  color: rgba(197, 191, 140, 0.9);
}

.placeholder-eva-green-brown-appt\/95::-moz-placeholder {
  color: rgba(197, 191, 140, 0.95);
}

.placeholder-eva-green-brown-appt\/95::placeholder {
  color: rgba(197, 191, 140, 0.95);
}

.placeholder-eva-green-hv::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(63 156 144 / var(--tw-placeholder-opacity, 1));
}

.placeholder-eva-green-hv::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(63 156 144 / var(--tw-placeholder-opacity, 1));
}

.placeholder-eva-green-hv\/0::-moz-placeholder {
  color: rgb(63 156 144 / 0);
}

.placeholder-eva-green-hv\/0::placeholder {
  color: rgb(63 156 144 / 0);
}

.placeholder-eva-green-hv\/10::-moz-placeholder {
  color: rgb(63 156 144 / 0.1);
}

.placeholder-eva-green-hv\/10::placeholder {
  color: rgb(63 156 144 / 0.1);
}

.placeholder-eva-green-hv\/100::-moz-placeholder {
  color: rgb(63 156 144 / 1);
}

.placeholder-eva-green-hv\/100::placeholder {
  color: rgb(63 156 144 / 1);
}

.placeholder-eva-green-hv\/15::-moz-placeholder {
  color: rgb(63 156 144 / 0.15);
}

.placeholder-eva-green-hv\/15::placeholder {
  color: rgb(63 156 144 / 0.15);
}

.placeholder-eva-green-hv\/20::-moz-placeholder {
  color: rgb(63 156 144 / 0.2);
}

.placeholder-eva-green-hv\/20::placeholder {
  color: rgb(63 156 144 / 0.2);
}

.placeholder-eva-green-hv\/25::-moz-placeholder {
  color: rgb(63 156 144 / 0.25);
}

.placeholder-eva-green-hv\/25::placeholder {
  color: rgb(63 156 144 / 0.25);
}

.placeholder-eva-green-hv\/30::-moz-placeholder {
  color: rgb(63 156 144 / 0.3);
}

.placeholder-eva-green-hv\/30::placeholder {
  color: rgb(63 156 144 / 0.3);
}

.placeholder-eva-green-hv\/35::-moz-placeholder {
  color: rgb(63 156 144 / 0.35);
}

.placeholder-eva-green-hv\/35::placeholder {
  color: rgb(63 156 144 / 0.35);
}

.placeholder-eva-green-hv\/40::-moz-placeholder {
  color: rgb(63 156 144 / 0.4);
}

.placeholder-eva-green-hv\/40::placeholder {
  color: rgb(63 156 144 / 0.4);
}

.placeholder-eva-green-hv\/45::-moz-placeholder {
  color: rgb(63 156 144 / 0.45);
}

.placeholder-eva-green-hv\/45::placeholder {
  color: rgb(63 156 144 / 0.45);
}

.placeholder-eva-green-hv\/5::-moz-placeholder {
  color: rgb(63 156 144 / 0.05);
}

.placeholder-eva-green-hv\/5::placeholder {
  color: rgb(63 156 144 / 0.05);
}

.placeholder-eva-green-hv\/50::-moz-placeholder {
  color: rgb(63 156 144 / 0.5);
}

.placeholder-eva-green-hv\/50::placeholder {
  color: rgb(63 156 144 / 0.5);
}

.placeholder-eva-green-hv\/55::-moz-placeholder {
  color: rgb(63 156 144 / 0.55);
}

.placeholder-eva-green-hv\/55::placeholder {
  color: rgb(63 156 144 / 0.55);
}

.placeholder-eva-green-hv\/60::-moz-placeholder {
  color: rgb(63 156 144 / 0.6);
}

.placeholder-eva-green-hv\/60::placeholder {
  color: rgb(63 156 144 / 0.6);
}

.placeholder-eva-green-hv\/65::-moz-placeholder {
  color: rgb(63 156 144 / 0.65);
}

.placeholder-eva-green-hv\/65::placeholder {
  color: rgb(63 156 144 / 0.65);
}

.placeholder-eva-green-hv\/70::-moz-placeholder {
  color: rgb(63 156 144 / 0.7);
}

.placeholder-eva-green-hv\/70::placeholder {
  color: rgb(63 156 144 / 0.7);
}

.placeholder-eva-green-hv\/75::-moz-placeholder {
  color: rgb(63 156 144 / 0.75);
}

.placeholder-eva-green-hv\/75::placeholder {
  color: rgb(63 156 144 / 0.75);
}

.placeholder-eva-green-hv\/80::-moz-placeholder {
  color: rgb(63 156 144 / 0.8);
}

.placeholder-eva-green-hv\/80::placeholder {
  color: rgb(63 156 144 / 0.8);
}

.placeholder-eva-green-hv\/85::-moz-placeholder {
  color: rgb(63 156 144 / 0.85);
}

.placeholder-eva-green-hv\/85::placeholder {
  color: rgb(63 156 144 / 0.85);
}

.placeholder-eva-green-hv\/90::-moz-placeholder {
  color: rgb(63 156 144 / 0.9);
}

.placeholder-eva-green-hv\/90::placeholder {
  color: rgb(63 156 144 / 0.9);
}

.placeholder-eva-green-hv\/95::-moz-placeholder {
  color: rgb(63 156 144 / 0.95);
}

.placeholder-eva-green-hv\/95::placeholder {
  color: rgb(63 156 144 / 0.95);
}

.placeholder-eva-green\/0::-moz-placeholder {
  color: rgb(73 181 168 / 0);
}

.placeholder-eva-green\/0::placeholder {
  color: rgb(73 181 168 / 0);
}

.placeholder-eva-green\/10::-moz-placeholder {
  color: rgb(73 181 168 / 0.1);
}

.placeholder-eva-green\/10::placeholder {
  color: rgb(73 181 168 / 0.1);
}

.placeholder-eva-green\/100::-moz-placeholder {
  color: rgb(73 181 168 / 1);
}

.placeholder-eva-green\/100::placeholder {
  color: rgb(73 181 168 / 1);
}

.placeholder-eva-green\/15::-moz-placeholder {
  color: rgb(73 181 168 / 0.15);
}

.placeholder-eva-green\/15::placeholder {
  color: rgb(73 181 168 / 0.15);
}

.placeholder-eva-green\/20::-moz-placeholder {
  color: rgb(73 181 168 / 0.2);
}

.placeholder-eva-green\/20::placeholder {
  color: rgb(73 181 168 / 0.2);
}

.placeholder-eva-green\/25::-moz-placeholder {
  color: rgb(73 181 168 / 0.25);
}

.placeholder-eva-green\/25::placeholder {
  color: rgb(73 181 168 / 0.25);
}

.placeholder-eva-green\/30::-moz-placeholder {
  color: rgb(73 181 168 / 0.3);
}

.placeholder-eva-green\/30::placeholder {
  color: rgb(73 181 168 / 0.3);
}

.placeholder-eva-green\/35::-moz-placeholder {
  color: rgb(73 181 168 / 0.35);
}

.placeholder-eva-green\/35::placeholder {
  color: rgb(73 181 168 / 0.35);
}

.placeholder-eva-green\/40::-moz-placeholder {
  color: rgb(73 181 168 / 0.4);
}

.placeholder-eva-green\/40::placeholder {
  color: rgb(73 181 168 / 0.4);
}

.placeholder-eva-green\/45::-moz-placeholder {
  color: rgb(73 181 168 / 0.45);
}

.placeholder-eva-green\/45::placeholder {
  color: rgb(73 181 168 / 0.45);
}

.placeholder-eva-green\/5::-moz-placeholder {
  color: rgb(73 181 168 / 0.05);
}

.placeholder-eva-green\/5::placeholder {
  color: rgb(73 181 168 / 0.05);
}

.placeholder-eva-green\/50::-moz-placeholder {
  color: rgb(73 181 168 / 0.5);
}

.placeholder-eva-green\/50::placeholder {
  color: rgb(73 181 168 / 0.5);
}

.placeholder-eva-green\/55::-moz-placeholder {
  color: rgb(73 181 168 / 0.55);
}

.placeholder-eva-green\/55::placeholder {
  color: rgb(73 181 168 / 0.55);
}

.placeholder-eva-green\/60::-moz-placeholder {
  color: rgb(73 181 168 / 0.6);
}

.placeholder-eva-green\/60::placeholder {
  color: rgb(73 181 168 / 0.6);
}

.placeholder-eva-green\/65::-moz-placeholder {
  color: rgb(73 181 168 / 0.65);
}

.placeholder-eva-green\/65::placeholder {
  color: rgb(73 181 168 / 0.65);
}

.placeholder-eva-green\/70::-moz-placeholder {
  color: rgb(73 181 168 / 0.7);
}

.placeholder-eva-green\/70::placeholder {
  color: rgb(73 181 168 / 0.7);
}

.placeholder-eva-green\/75::-moz-placeholder {
  color: rgb(73 181 168 / 0.75);
}

.placeholder-eva-green\/75::placeholder {
  color: rgb(73 181 168 / 0.75);
}

.placeholder-eva-green\/80::-moz-placeholder {
  color: rgb(73 181 168 / 0.8);
}

.placeholder-eva-green\/80::placeholder {
  color: rgb(73 181 168 / 0.8);
}

.placeholder-eva-green\/85::-moz-placeholder {
  color: rgb(73 181 168 / 0.85);
}

.placeholder-eva-green\/85::placeholder {
  color: rgb(73 181 168 / 0.85);
}

.placeholder-eva-green\/90::-moz-placeholder {
  color: rgb(73 181 168 / 0.9);
}

.placeholder-eva-green\/90::placeholder {
  color: rgb(73 181 168 / 0.9);
}

.placeholder-eva-green\/95::-moz-placeholder {
  color: rgb(73 181 168 / 0.95);
}

.placeholder-eva-green\/95::placeholder {
  color: rgb(73 181 168 / 0.95);
}

.placeholder-eva-lavender-appt::-moz-placeholder {
  color: rgba(169, 124, 165, 1);
}

.placeholder-eva-lavender-appt::placeholder {
  color: rgba(169, 124, 165, 1);
}

.placeholder-eva-lavender-appt\/0::-moz-placeholder {
  color: rgba(169, 124, 165, 0);
}

.placeholder-eva-lavender-appt\/0::placeholder {
  color: rgba(169, 124, 165, 0);
}

.placeholder-eva-lavender-appt\/10::-moz-placeholder {
  color: rgba(169, 124, 165, 0.1);
}

.placeholder-eva-lavender-appt\/10::placeholder {
  color: rgba(169, 124, 165, 0.1);
}

.placeholder-eva-lavender-appt\/100::-moz-placeholder {
  color: rgba(169, 124, 165, 1);
}

.placeholder-eva-lavender-appt\/100::placeholder {
  color: rgba(169, 124, 165, 1);
}

.placeholder-eva-lavender-appt\/15::-moz-placeholder {
  color: rgba(169, 124, 165, 0.15);
}

.placeholder-eva-lavender-appt\/15::placeholder {
  color: rgba(169, 124, 165, 0.15);
}

.placeholder-eva-lavender-appt\/20::-moz-placeholder {
  color: rgba(169, 124, 165, 0.2);
}

.placeholder-eva-lavender-appt\/20::placeholder {
  color: rgba(169, 124, 165, 0.2);
}

.placeholder-eva-lavender-appt\/25::-moz-placeholder {
  color: rgba(169, 124, 165, 0.25);
}

.placeholder-eva-lavender-appt\/25::placeholder {
  color: rgba(169, 124, 165, 0.25);
}

.placeholder-eva-lavender-appt\/30::-moz-placeholder {
  color: rgba(169, 124, 165, 0.3);
}

.placeholder-eva-lavender-appt\/30::placeholder {
  color: rgba(169, 124, 165, 0.3);
}

.placeholder-eva-lavender-appt\/35::-moz-placeholder {
  color: rgba(169, 124, 165, 0.35);
}

.placeholder-eva-lavender-appt\/35::placeholder {
  color: rgba(169, 124, 165, 0.35);
}

.placeholder-eva-lavender-appt\/40::-moz-placeholder {
  color: rgba(169, 124, 165, 0.4);
}

.placeholder-eva-lavender-appt\/40::placeholder {
  color: rgba(169, 124, 165, 0.4);
}

.placeholder-eva-lavender-appt\/45::-moz-placeholder {
  color: rgba(169, 124, 165, 0.45);
}

.placeholder-eva-lavender-appt\/45::placeholder {
  color: rgba(169, 124, 165, 0.45);
}

.placeholder-eva-lavender-appt\/5::-moz-placeholder {
  color: rgba(169, 124, 165, 0.05);
}

.placeholder-eva-lavender-appt\/5::placeholder {
  color: rgba(169, 124, 165, 0.05);
}

.placeholder-eva-lavender-appt\/50::-moz-placeholder {
  color: rgba(169, 124, 165, 0.5);
}

.placeholder-eva-lavender-appt\/50::placeholder {
  color: rgba(169, 124, 165, 0.5);
}

.placeholder-eva-lavender-appt\/55::-moz-placeholder {
  color: rgba(169, 124, 165, 0.55);
}

.placeholder-eva-lavender-appt\/55::placeholder {
  color: rgba(169, 124, 165, 0.55);
}

.placeholder-eva-lavender-appt\/60::-moz-placeholder {
  color: rgba(169, 124, 165, 0.6);
}

.placeholder-eva-lavender-appt\/60::placeholder {
  color: rgba(169, 124, 165, 0.6);
}

.placeholder-eva-lavender-appt\/65::-moz-placeholder {
  color: rgba(169, 124, 165, 0.65);
}

.placeholder-eva-lavender-appt\/65::placeholder {
  color: rgba(169, 124, 165, 0.65);
}

.placeholder-eva-lavender-appt\/70::-moz-placeholder {
  color: rgba(169, 124, 165, 0.7);
}

.placeholder-eva-lavender-appt\/70::placeholder {
  color: rgba(169, 124, 165, 0.7);
}

.placeholder-eva-lavender-appt\/75::-moz-placeholder {
  color: rgba(169, 124, 165, 0.75);
}

.placeholder-eva-lavender-appt\/75::placeholder {
  color: rgba(169, 124, 165, 0.75);
}

.placeholder-eva-lavender-appt\/80::-moz-placeholder {
  color: rgba(169, 124, 165, 0.8);
}

.placeholder-eva-lavender-appt\/80::placeholder {
  color: rgba(169, 124, 165, 0.8);
}

.placeholder-eva-lavender-appt\/85::-moz-placeholder {
  color: rgba(169, 124, 165, 0.85);
}

.placeholder-eva-lavender-appt\/85::placeholder {
  color: rgba(169, 124, 165, 0.85);
}

.placeholder-eva-lavender-appt\/90::-moz-placeholder {
  color: rgba(169, 124, 165, 0.9);
}

.placeholder-eva-lavender-appt\/90::placeholder {
  color: rgba(169, 124, 165, 0.9);
}

.placeholder-eva-lavender-appt\/95::-moz-placeholder {
  color: rgba(169, 124, 165, 0.95);
}

.placeholder-eva-lavender-appt\/95::placeholder {
  color: rgba(169, 124, 165, 0.95);
}

.placeholder-eva-magenta-appt::-moz-placeholder {
  color: rgba(223, 91, 146, 1);
}

.placeholder-eva-magenta-appt::placeholder {
  color: rgba(223, 91, 146, 1);
}

.placeholder-eva-magenta-appt\/0::-moz-placeholder {
  color: rgba(223, 91, 146, 0);
}

.placeholder-eva-magenta-appt\/0::placeholder {
  color: rgba(223, 91, 146, 0);
}

.placeholder-eva-magenta-appt\/10::-moz-placeholder {
  color: rgba(223, 91, 146, 0.1);
}

.placeholder-eva-magenta-appt\/10::placeholder {
  color: rgba(223, 91, 146, 0.1);
}

.placeholder-eva-magenta-appt\/100::-moz-placeholder {
  color: rgba(223, 91, 146, 1);
}

.placeholder-eva-magenta-appt\/100::placeholder {
  color: rgba(223, 91, 146, 1);
}

.placeholder-eva-magenta-appt\/15::-moz-placeholder {
  color: rgba(223, 91, 146, 0.15);
}

.placeholder-eva-magenta-appt\/15::placeholder {
  color: rgba(223, 91, 146, 0.15);
}

.placeholder-eva-magenta-appt\/20::-moz-placeholder {
  color: rgba(223, 91, 146, 0.2);
}

.placeholder-eva-magenta-appt\/20::placeholder {
  color: rgba(223, 91, 146, 0.2);
}

.placeholder-eva-magenta-appt\/25::-moz-placeholder {
  color: rgba(223, 91, 146, 0.25);
}

.placeholder-eva-magenta-appt\/25::placeholder {
  color: rgba(223, 91, 146, 0.25);
}

.placeholder-eva-magenta-appt\/30::-moz-placeholder {
  color: rgba(223, 91, 146, 0.3);
}

.placeholder-eva-magenta-appt\/30::placeholder {
  color: rgba(223, 91, 146, 0.3);
}

.placeholder-eva-magenta-appt\/35::-moz-placeholder {
  color: rgba(223, 91, 146, 0.35);
}

.placeholder-eva-magenta-appt\/35::placeholder {
  color: rgba(223, 91, 146, 0.35);
}

.placeholder-eva-magenta-appt\/40::-moz-placeholder {
  color: rgba(223, 91, 146, 0.4);
}

.placeholder-eva-magenta-appt\/40::placeholder {
  color: rgba(223, 91, 146, 0.4);
}

.placeholder-eva-magenta-appt\/45::-moz-placeholder {
  color: rgba(223, 91, 146, 0.45);
}

.placeholder-eva-magenta-appt\/45::placeholder {
  color: rgba(223, 91, 146, 0.45);
}

.placeholder-eva-magenta-appt\/5::-moz-placeholder {
  color: rgba(223, 91, 146, 0.05);
}

.placeholder-eva-magenta-appt\/5::placeholder {
  color: rgba(223, 91, 146, 0.05);
}

.placeholder-eva-magenta-appt\/50::-moz-placeholder {
  color: rgba(223, 91, 146, 0.5);
}

.placeholder-eva-magenta-appt\/50::placeholder {
  color: rgba(223, 91, 146, 0.5);
}

.placeholder-eva-magenta-appt\/55::-moz-placeholder {
  color: rgba(223, 91, 146, 0.55);
}

.placeholder-eva-magenta-appt\/55::placeholder {
  color: rgba(223, 91, 146, 0.55);
}

.placeholder-eva-magenta-appt\/60::-moz-placeholder {
  color: rgba(223, 91, 146, 0.6);
}

.placeholder-eva-magenta-appt\/60::placeholder {
  color: rgba(223, 91, 146, 0.6);
}

.placeholder-eva-magenta-appt\/65::-moz-placeholder {
  color: rgba(223, 91, 146, 0.65);
}

.placeholder-eva-magenta-appt\/65::placeholder {
  color: rgba(223, 91, 146, 0.65);
}

.placeholder-eva-magenta-appt\/70::-moz-placeholder {
  color: rgba(223, 91, 146, 0.7);
}

.placeholder-eva-magenta-appt\/70::placeholder {
  color: rgba(223, 91, 146, 0.7);
}

.placeholder-eva-magenta-appt\/75::-moz-placeholder {
  color: rgba(223, 91, 146, 0.75);
}

.placeholder-eva-magenta-appt\/75::placeholder {
  color: rgba(223, 91, 146, 0.75);
}

.placeholder-eva-magenta-appt\/80::-moz-placeholder {
  color: rgba(223, 91, 146, 0.8);
}

.placeholder-eva-magenta-appt\/80::placeholder {
  color: rgba(223, 91, 146, 0.8);
}

.placeholder-eva-magenta-appt\/85::-moz-placeholder {
  color: rgba(223, 91, 146, 0.85);
}

.placeholder-eva-magenta-appt\/85::placeholder {
  color: rgba(223, 91, 146, 0.85);
}

.placeholder-eva-magenta-appt\/90::-moz-placeholder {
  color: rgba(223, 91, 146, 0.9);
}

.placeholder-eva-magenta-appt\/90::placeholder {
  color: rgba(223, 91, 146, 0.9);
}

.placeholder-eva-magenta-appt\/95::-moz-placeholder {
  color: rgba(223, 91, 146, 0.95);
}

.placeholder-eva-magenta-appt\/95::placeholder {
  color: rgba(223, 91, 146, 0.95);
}

.placeholder-eva-orange-appt::-moz-placeholder {
  color: rgba(232, 176, 99, 1);
}

.placeholder-eva-orange-appt::placeholder {
  color: rgba(232, 176, 99, 1);
}

.placeholder-eva-orange-appt\/0::-moz-placeholder {
  color: rgba(232, 176, 99, 0);
}

.placeholder-eva-orange-appt\/0::placeholder {
  color: rgba(232, 176, 99, 0);
}

.placeholder-eva-orange-appt\/10::-moz-placeholder {
  color: rgba(232, 176, 99, 0.1);
}

.placeholder-eva-orange-appt\/10::placeholder {
  color: rgba(232, 176, 99, 0.1);
}

.placeholder-eva-orange-appt\/100::-moz-placeholder {
  color: rgba(232, 176, 99, 1);
}

.placeholder-eva-orange-appt\/100::placeholder {
  color: rgba(232, 176, 99, 1);
}

.placeholder-eva-orange-appt\/15::-moz-placeholder {
  color: rgba(232, 176, 99, 0.15);
}

.placeholder-eva-orange-appt\/15::placeholder {
  color: rgba(232, 176, 99, 0.15);
}

.placeholder-eva-orange-appt\/20::-moz-placeholder {
  color: rgba(232, 176, 99, 0.2);
}

.placeholder-eva-orange-appt\/20::placeholder {
  color: rgba(232, 176, 99, 0.2);
}

.placeholder-eva-orange-appt\/25::-moz-placeholder {
  color: rgba(232, 176, 99, 0.25);
}

.placeholder-eva-orange-appt\/25::placeholder {
  color: rgba(232, 176, 99, 0.25);
}

.placeholder-eva-orange-appt\/30::-moz-placeholder {
  color: rgba(232, 176, 99, 0.3);
}

.placeholder-eva-orange-appt\/30::placeholder {
  color: rgba(232, 176, 99, 0.3);
}

.placeholder-eva-orange-appt\/35::-moz-placeholder {
  color: rgba(232, 176, 99, 0.35);
}

.placeholder-eva-orange-appt\/35::placeholder {
  color: rgba(232, 176, 99, 0.35);
}

.placeholder-eva-orange-appt\/40::-moz-placeholder {
  color: rgba(232, 176, 99, 0.4);
}

.placeholder-eva-orange-appt\/40::placeholder {
  color: rgba(232, 176, 99, 0.4);
}

.placeholder-eva-orange-appt\/45::-moz-placeholder {
  color: rgba(232, 176, 99, 0.45);
}

.placeholder-eva-orange-appt\/45::placeholder {
  color: rgba(232, 176, 99, 0.45);
}

.placeholder-eva-orange-appt\/5::-moz-placeholder {
  color: rgba(232, 176, 99, 0.05);
}

.placeholder-eva-orange-appt\/5::placeholder {
  color: rgba(232, 176, 99, 0.05);
}

.placeholder-eva-orange-appt\/50::-moz-placeholder {
  color: rgba(232, 176, 99, 0.5);
}

.placeholder-eva-orange-appt\/50::placeholder {
  color: rgba(232, 176, 99, 0.5);
}

.placeholder-eva-orange-appt\/55::-moz-placeholder {
  color: rgba(232, 176, 99, 0.55);
}

.placeholder-eva-orange-appt\/55::placeholder {
  color: rgba(232, 176, 99, 0.55);
}

.placeholder-eva-orange-appt\/60::-moz-placeholder {
  color: rgba(232, 176, 99, 0.6);
}

.placeholder-eva-orange-appt\/60::placeholder {
  color: rgba(232, 176, 99, 0.6);
}

.placeholder-eva-orange-appt\/65::-moz-placeholder {
  color: rgba(232, 176, 99, 0.65);
}

.placeholder-eva-orange-appt\/65::placeholder {
  color: rgba(232, 176, 99, 0.65);
}

.placeholder-eva-orange-appt\/70::-moz-placeholder {
  color: rgba(232, 176, 99, 0.7);
}

.placeholder-eva-orange-appt\/70::placeholder {
  color: rgba(232, 176, 99, 0.7);
}

.placeholder-eva-orange-appt\/75::-moz-placeholder {
  color: rgba(232, 176, 99, 0.75);
}

.placeholder-eva-orange-appt\/75::placeholder {
  color: rgba(232, 176, 99, 0.75);
}

.placeholder-eva-orange-appt\/80::-moz-placeholder {
  color: rgba(232, 176, 99, 0.8);
}

.placeholder-eva-orange-appt\/80::placeholder {
  color: rgba(232, 176, 99, 0.8);
}

.placeholder-eva-orange-appt\/85::-moz-placeholder {
  color: rgba(232, 176, 99, 0.85);
}

.placeholder-eva-orange-appt\/85::placeholder {
  color: rgba(232, 176, 99, 0.85);
}

.placeholder-eva-orange-appt\/90::-moz-placeholder {
  color: rgba(232, 176, 99, 0.9);
}

.placeholder-eva-orange-appt\/90::placeholder {
  color: rgba(232, 176, 99, 0.9);
}

.placeholder-eva-orange-appt\/95::-moz-placeholder {
  color: rgba(232, 176, 99, 0.95);
}

.placeholder-eva-orange-appt\/95::placeholder {
  color: rgba(232, 176, 99, 0.95);
}

.placeholder-eva-purple-appt::-moz-placeholder {
  color: rgba(125, 117, 164, 1);
}

.placeholder-eva-purple-appt::placeholder {
  color: rgba(125, 117, 164, 1);
}

.placeholder-eva-purple-appt\/0::-moz-placeholder {
  color: rgba(125, 117, 164, 0);
}

.placeholder-eva-purple-appt\/0::placeholder {
  color: rgba(125, 117, 164, 0);
}

.placeholder-eva-purple-appt\/10::-moz-placeholder {
  color: rgba(125, 117, 164, 0.1);
}

.placeholder-eva-purple-appt\/10::placeholder {
  color: rgba(125, 117, 164, 0.1);
}

.placeholder-eva-purple-appt\/100::-moz-placeholder {
  color: rgba(125, 117, 164, 1);
}

.placeholder-eva-purple-appt\/100::placeholder {
  color: rgba(125, 117, 164, 1);
}

.placeholder-eva-purple-appt\/15::-moz-placeholder {
  color: rgba(125, 117, 164, 0.15);
}

.placeholder-eva-purple-appt\/15::placeholder {
  color: rgba(125, 117, 164, 0.15);
}

.placeholder-eva-purple-appt\/20::-moz-placeholder {
  color: rgba(125, 117, 164, 0.2);
}

.placeholder-eva-purple-appt\/20::placeholder {
  color: rgba(125, 117, 164, 0.2);
}

.placeholder-eva-purple-appt\/25::-moz-placeholder {
  color: rgba(125, 117, 164, 0.25);
}

.placeholder-eva-purple-appt\/25::placeholder {
  color: rgba(125, 117, 164, 0.25);
}

.placeholder-eva-purple-appt\/30::-moz-placeholder {
  color: rgba(125, 117, 164, 0.3);
}

.placeholder-eva-purple-appt\/30::placeholder {
  color: rgba(125, 117, 164, 0.3);
}

.placeholder-eva-purple-appt\/35::-moz-placeholder {
  color: rgba(125, 117, 164, 0.35);
}

.placeholder-eva-purple-appt\/35::placeholder {
  color: rgba(125, 117, 164, 0.35);
}

.placeholder-eva-purple-appt\/40::-moz-placeholder {
  color: rgba(125, 117, 164, 0.4);
}

.placeholder-eva-purple-appt\/40::placeholder {
  color: rgba(125, 117, 164, 0.4);
}

.placeholder-eva-purple-appt\/45::-moz-placeholder {
  color: rgba(125, 117, 164, 0.45);
}

.placeholder-eva-purple-appt\/45::placeholder {
  color: rgba(125, 117, 164, 0.45);
}

.placeholder-eva-purple-appt\/5::-moz-placeholder {
  color: rgba(125, 117, 164, 0.05);
}

.placeholder-eva-purple-appt\/5::placeholder {
  color: rgba(125, 117, 164, 0.05);
}

.placeholder-eva-purple-appt\/50::-moz-placeholder {
  color: rgba(125, 117, 164, 0.5);
}

.placeholder-eva-purple-appt\/50::placeholder {
  color: rgba(125, 117, 164, 0.5);
}

.placeholder-eva-purple-appt\/55::-moz-placeholder {
  color: rgba(125, 117, 164, 0.55);
}

.placeholder-eva-purple-appt\/55::placeholder {
  color: rgba(125, 117, 164, 0.55);
}

.placeholder-eva-purple-appt\/60::-moz-placeholder {
  color: rgba(125, 117, 164, 0.6);
}

.placeholder-eva-purple-appt\/60::placeholder {
  color: rgba(125, 117, 164, 0.6);
}

.placeholder-eva-purple-appt\/65::-moz-placeholder {
  color: rgba(125, 117, 164, 0.65);
}

.placeholder-eva-purple-appt\/65::placeholder {
  color: rgba(125, 117, 164, 0.65);
}

.placeholder-eva-purple-appt\/70::-moz-placeholder {
  color: rgba(125, 117, 164, 0.7);
}

.placeholder-eva-purple-appt\/70::placeholder {
  color: rgba(125, 117, 164, 0.7);
}

.placeholder-eva-purple-appt\/75::-moz-placeholder {
  color: rgba(125, 117, 164, 0.75);
}

.placeholder-eva-purple-appt\/75::placeholder {
  color: rgba(125, 117, 164, 0.75);
}

.placeholder-eva-purple-appt\/80::-moz-placeholder {
  color: rgba(125, 117, 164, 0.8);
}

.placeholder-eva-purple-appt\/80::placeholder {
  color: rgba(125, 117, 164, 0.8);
}

.placeholder-eva-purple-appt\/85::-moz-placeholder {
  color: rgba(125, 117, 164, 0.85);
}

.placeholder-eva-purple-appt\/85::placeholder {
  color: rgba(125, 117, 164, 0.85);
}

.placeholder-eva-purple-appt\/90::-moz-placeholder {
  color: rgba(125, 117, 164, 0.9);
}

.placeholder-eva-purple-appt\/90::placeholder {
  color: rgba(125, 117, 164, 0.9);
}

.placeholder-eva-purple-appt\/95::-moz-placeholder {
  color: rgba(125, 117, 164, 0.95);
}

.placeholder-eva-purple-appt\/95::placeholder {
  color: rgba(125, 117, 164, 0.95);
}

.placeholder-eva-red::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(234 101 101 / var(--tw-placeholder-opacity, 1));
}

.placeholder-eva-red::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(234 101 101 / var(--tw-placeholder-opacity, 1));
}

.placeholder-eva-red-appt::-moz-placeholder {
  color: rgba(243, 63, 77, 1);
}

.placeholder-eva-red-appt::placeholder {
  color: rgba(243, 63, 77, 1);
}

.placeholder-eva-red-appt\/0::-moz-placeholder {
  color: rgba(243, 63, 77, 0);
}

.placeholder-eva-red-appt\/0::placeholder {
  color: rgba(243, 63, 77, 0);
}

.placeholder-eva-red-appt\/10::-moz-placeholder {
  color: rgba(243, 63, 77, 0.1);
}

.placeholder-eva-red-appt\/10::placeholder {
  color: rgba(243, 63, 77, 0.1);
}

.placeholder-eva-red-appt\/100::-moz-placeholder {
  color: rgba(243, 63, 77, 1);
}

.placeholder-eva-red-appt\/100::placeholder {
  color: rgba(243, 63, 77, 1);
}

.placeholder-eva-red-appt\/15::-moz-placeholder {
  color: rgba(243, 63, 77, 0.15);
}

.placeholder-eva-red-appt\/15::placeholder {
  color: rgba(243, 63, 77, 0.15);
}

.placeholder-eva-red-appt\/20::-moz-placeholder {
  color: rgba(243, 63, 77, 0.2);
}

.placeholder-eva-red-appt\/20::placeholder {
  color: rgba(243, 63, 77, 0.2);
}

.placeholder-eva-red-appt\/25::-moz-placeholder {
  color: rgba(243, 63, 77, 0.25);
}

.placeholder-eva-red-appt\/25::placeholder {
  color: rgba(243, 63, 77, 0.25);
}

.placeholder-eva-red-appt\/30::-moz-placeholder {
  color: rgba(243, 63, 77, 0.3);
}

.placeholder-eva-red-appt\/30::placeholder {
  color: rgba(243, 63, 77, 0.3);
}

.placeholder-eva-red-appt\/35::-moz-placeholder {
  color: rgba(243, 63, 77, 0.35);
}

.placeholder-eva-red-appt\/35::placeholder {
  color: rgba(243, 63, 77, 0.35);
}

.placeholder-eva-red-appt\/40::-moz-placeholder {
  color: rgba(243, 63, 77, 0.4);
}

.placeholder-eva-red-appt\/40::placeholder {
  color: rgba(243, 63, 77, 0.4);
}

.placeholder-eva-red-appt\/45::-moz-placeholder {
  color: rgba(243, 63, 77, 0.45);
}

.placeholder-eva-red-appt\/45::placeholder {
  color: rgba(243, 63, 77, 0.45);
}

.placeholder-eva-red-appt\/5::-moz-placeholder {
  color: rgba(243, 63, 77, 0.05);
}

.placeholder-eva-red-appt\/5::placeholder {
  color: rgba(243, 63, 77, 0.05);
}

.placeholder-eva-red-appt\/50::-moz-placeholder {
  color: rgba(243, 63, 77, 0.5);
}

.placeholder-eva-red-appt\/50::placeholder {
  color: rgba(243, 63, 77, 0.5);
}

.placeholder-eva-red-appt\/55::-moz-placeholder {
  color: rgba(243, 63, 77, 0.55);
}

.placeholder-eva-red-appt\/55::placeholder {
  color: rgba(243, 63, 77, 0.55);
}

.placeholder-eva-red-appt\/60::-moz-placeholder {
  color: rgba(243, 63, 77, 0.6);
}

.placeholder-eva-red-appt\/60::placeholder {
  color: rgba(243, 63, 77, 0.6);
}

.placeholder-eva-red-appt\/65::-moz-placeholder {
  color: rgba(243, 63, 77, 0.65);
}

.placeholder-eva-red-appt\/65::placeholder {
  color: rgba(243, 63, 77, 0.65);
}

.placeholder-eva-red-appt\/70::-moz-placeholder {
  color: rgba(243, 63, 77, 0.7);
}

.placeholder-eva-red-appt\/70::placeholder {
  color: rgba(243, 63, 77, 0.7);
}

.placeholder-eva-red-appt\/75::-moz-placeholder {
  color: rgba(243, 63, 77, 0.75);
}

.placeholder-eva-red-appt\/75::placeholder {
  color: rgba(243, 63, 77, 0.75);
}

.placeholder-eva-red-appt\/80::-moz-placeholder {
  color: rgba(243, 63, 77, 0.8);
}

.placeholder-eva-red-appt\/80::placeholder {
  color: rgba(243, 63, 77, 0.8);
}

.placeholder-eva-red-appt\/85::-moz-placeholder {
  color: rgba(243, 63, 77, 0.85);
}

.placeholder-eva-red-appt\/85::placeholder {
  color: rgba(243, 63, 77, 0.85);
}

.placeholder-eva-red-appt\/90::-moz-placeholder {
  color: rgba(243, 63, 77, 0.9);
}

.placeholder-eva-red-appt\/90::placeholder {
  color: rgba(243, 63, 77, 0.9);
}

.placeholder-eva-red-appt\/95::-moz-placeholder {
  color: rgba(243, 63, 77, 0.95);
}

.placeholder-eva-red-appt\/95::placeholder {
  color: rgba(243, 63, 77, 0.95);
}

.placeholder-eva-red-orange-appt::-moz-placeholder {
  color: rgba(217, 154, 118, 1);
}

.placeholder-eva-red-orange-appt::placeholder {
  color: rgba(217, 154, 118, 1);
}

.placeholder-eva-red-orange-appt\/0::-moz-placeholder {
  color: rgba(217, 154, 118, 0);
}

.placeholder-eva-red-orange-appt\/0::placeholder {
  color: rgba(217, 154, 118, 0);
}

.placeholder-eva-red-orange-appt\/10::-moz-placeholder {
  color: rgba(217, 154, 118, 0.1);
}

.placeholder-eva-red-orange-appt\/10::placeholder {
  color: rgba(217, 154, 118, 0.1);
}

.placeholder-eva-red-orange-appt\/100::-moz-placeholder {
  color: rgba(217, 154, 118, 1);
}

.placeholder-eva-red-orange-appt\/100::placeholder {
  color: rgba(217, 154, 118, 1);
}

.placeholder-eva-red-orange-appt\/15::-moz-placeholder {
  color: rgba(217, 154, 118, 0.15);
}

.placeholder-eva-red-orange-appt\/15::placeholder {
  color: rgba(217, 154, 118, 0.15);
}

.placeholder-eva-red-orange-appt\/20::-moz-placeholder {
  color: rgba(217, 154, 118, 0.2);
}

.placeholder-eva-red-orange-appt\/20::placeholder {
  color: rgba(217, 154, 118, 0.2);
}

.placeholder-eva-red-orange-appt\/25::-moz-placeholder {
  color: rgba(217, 154, 118, 0.25);
}

.placeholder-eva-red-orange-appt\/25::placeholder {
  color: rgba(217, 154, 118, 0.25);
}

.placeholder-eva-red-orange-appt\/30::-moz-placeholder {
  color: rgba(217, 154, 118, 0.3);
}

.placeholder-eva-red-orange-appt\/30::placeholder {
  color: rgba(217, 154, 118, 0.3);
}

.placeholder-eva-red-orange-appt\/35::-moz-placeholder {
  color: rgba(217, 154, 118, 0.35);
}

.placeholder-eva-red-orange-appt\/35::placeholder {
  color: rgba(217, 154, 118, 0.35);
}

.placeholder-eva-red-orange-appt\/40::-moz-placeholder {
  color: rgba(217, 154, 118, 0.4);
}

.placeholder-eva-red-orange-appt\/40::placeholder {
  color: rgba(217, 154, 118, 0.4);
}

.placeholder-eva-red-orange-appt\/45::-moz-placeholder {
  color: rgba(217, 154, 118, 0.45);
}

.placeholder-eva-red-orange-appt\/45::placeholder {
  color: rgba(217, 154, 118, 0.45);
}

.placeholder-eva-red-orange-appt\/5::-moz-placeholder {
  color: rgba(217, 154, 118, 0.05);
}

.placeholder-eva-red-orange-appt\/5::placeholder {
  color: rgba(217, 154, 118, 0.05);
}

.placeholder-eva-red-orange-appt\/50::-moz-placeholder {
  color: rgba(217, 154, 118, 0.5);
}

.placeholder-eva-red-orange-appt\/50::placeholder {
  color: rgba(217, 154, 118, 0.5);
}

.placeholder-eva-red-orange-appt\/55::-moz-placeholder {
  color: rgba(217, 154, 118, 0.55);
}

.placeholder-eva-red-orange-appt\/55::placeholder {
  color: rgba(217, 154, 118, 0.55);
}

.placeholder-eva-red-orange-appt\/60::-moz-placeholder {
  color: rgba(217, 154, 118, 0.6);
}

.placeholder-eva-red-orange-appt\/60::placeholder {
  color: rgba(217, 154, 118, 0.6);
}

.placeholder-eva-red-orange-appt\/65::-moz-placeholder {
  color: rgba(217, 154, 118, 0.65);
}

.placeholder-eva-red-orange-appt\/65::placeholder {
  color: rgba(217, 154, 118, 0.65);
}

.placeholder-eva-red-orange-appt\/70::-moz-placeholder {
  color: rgba(217, 154, 118, 0.7);
}

.placeholder-eva-red-orange-appt\/70::placeholder {
  color: rgba(217, 154, 118, 0.7);
}

.placeholder-eva-red-orange-appt\/75::-moz-placeholder {
  color: rgba(217, 154, 118, 0.75);
}

.placeholder-eva-red-orange-appt\/75::placeholder {
  color: rgba(217, 154, 118, 0.75);
}

.placeholder-eva-red-orange-appt\/80::-moz-placeholder {
  color: rgba(217, 154, 118, 0.8);
}

.placeholder-eva-red-orange-appt\/80::placeholder {
  color: rgba(217, 154, 118, 0.8);
}

.placeholder-eva-red-orange-appt\/85::-moz-placeholder {
  color: rgba(217, 154, 118, 0.85);
}

.placeholder-eva-red-orange-appt\/85::placeholder {
  color: rgba(217, 154, 118, 0.85);
}

.placeholder-eva-red-orange-appt\/90::-moz-placeholder {
  color: rgba(217, 154, 118, 0.9);
}

.placeholder-eva-red-orange-appt\/90::placeholder {
  color: rgba(217, 154, 118, 0.9);
}

.placeholder-eva-red-orange-appt\/95::-moz-placeholder {
  color: rgba(217, 154, 118, 0.95);
}

.placeholder-eva-red-orange-appt\/95::placeholder {
  color: rgba(217, 154, 118, 0.95);
}

.placeholder-eva-red\/0::-moz-placeholder {
  color: rgb(234 101 101 / 0);
}

.placeholder-eva-red\/0::placeholder {
  color: rgb(234 101 101 / 0);
}

.placeholder-eva-red\/10::-moz-placeholder {
  color: rgb(234 101 101 / 0.1);
}

.placeholder-eva-red\/10::placeholder {
  color: rgb(234 101 101 / 0.1);
}

.placeholder-eva-red\/100::-moz-placeholder {
  color: rgb(234 101 101 / 1);
}

.placeholder-eva-red\/100::placeholder {
  color: rgb(234 101 101 / 1);
}

.placeholder-eva-red\/15::-moz-placeholder {
  color: rgb(234 101 101 / 0.15);
}

.placeholder-eva-red\/15::placeholder {
  color: rgb(234 101 101 / 0.15);
}

.placeholder-eva-red\/20::-moz-placeholder {
  color: rgb(234 101 101 / 0.2);
}

.placeholder-eva-red\/20::placeholder {
  color: rgb(234 101 101 / 0.2);
}

.placeholder-eva-red\/25::-moz-placeholder {
  color: rgb(234 101 101 / 0.25);
}

.placeholder-eva-red\/25::placeholder {
  color: rgb(234 101 101 / 0.25);
}

.placeholder-eva-red\/30::-moz-placeholder {
  color: rgb(234 101 101 / 0.3);
}

.placeholder-eva-red\/30::placeholder {
  color: rgb(234 101 101 / 0.3);
}

.placeholder-eva-red\/35::-moz-placeholder {
  color: rgb(234 101 101 / 0.35);
}

.placeholder-eva-red\/35::placeholder {
  color: rgb(234 101 101 / 0.35);
}

.placeholder-eva-red\/40::-moz-placeholder {
  color: rgb(234 101 101 / 0.4);
}

.placeholder-eva-red\/40::placeholder {
  color: rgb(234 101 101 / 0.4);
}

.placeholder-eva-red\/45::-moz-placeholder {
  color: rgb(234 101 101 / 0.45);
}

.placeholder-eva-red\/45::placeholder {
  color: rgb(234 101 101 / 0.45);
}

.placeholder-eva-red\/5::-moz-placeholder {
  color: rgb(234 101 101 / 0.05);
}

.placeholder-eva-red\/5::placeholder {
  color: rgb(234 101 101 / 0.05);
}

.placeholder-eva-red\/50::-moz-placeholder {
  color: rgb(234 101 101 / 0.5);
}

.placeholder-eva-red\/50::placeholder {
  color: rgb(234 101 101 / 0.5);
}

.placeholder-eva-red\/55::-moz-placeholder {
  color: rgb(234 101 101 / 0.55);
}

.placeholder-eva-red\/55::placeholder {
  color: rgb(234 101 101 / 0.55);
}

.placeholder-eva-red\/60::-moz-placeholder {
  color: rgb(234 101 101 / 0.6);
}

.placeholder-eva-red\/60::placeholder {
  color: rgb(234 101 101 / 0.6);
}

.placeholder-eva-red\/65::-moz-placeholder {
  color: rgb(234 101 101 / 0.65);
}

.placeholder-eva-red\/65::placeholder {
  color: rgb(234 101 101 / 0.65);
}

.placeholder-eva-red\/70::-moz-placeholder {
  color: rgb(234 101 101 / 0.7);
}

.placeholder-eva-red\/70::placeholder {
  color: rgb(234 101 101 / 0.7);
}

.placeholder-eva-red\/75::-moz-placeholder {
  color: rgb(234 101 101 / 0.75);
}

.placeholder-eva-red\/75::placeholder {
  color: rgb(234 101 101 / 0.75);
}

.placeholder-eva-red\/80::-moz-placeholder {
  color: rgb(234 101 101 / 0.8);
}

.placeholder-eva-red\/80::placeholder {
  color: rgb(234 101 101 / 0.8);
}

.placeholder-eva-red\/85::-moz-placeholder {
  color: rgb(234 101 101 / 0.85);
}

.placeholder-eva-red\/85::placeholder {
  color: rgb(234 101 101 / 0.85);
}

.placeholder-eva-red\/90::-moz-placeholder {
  color: rgb(234 101 101 / 0.9);
}

.placeholder-eva-red\/90::placeholder {
  color: rgb(234 101 101 / 0.9);
}

.placeholder-eva-red\/95::-moz-placeholder {
  color: rgb(234 101 101 / 0.95);
}

.placeholder-eva-red\/95::placeholder {
  color: rgb(234 101 101 / 0.95);
}

.placeholder-eva-teal-appt::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(22, 172, 151, var(--tw-placeholder-opacity, 1));
}

.placeholder-eva-teal-appt::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgba(22, 172, 151, var(--tw-placeholder-opacity, 1));
}

.placeholder-eva-teal-appt\/0::-moz-placeholder {
  color: rgba(22, 172, 151, 0);
}

.placeholder-eva-teal-appt\/0::placeholder {
  color: rgba(22, 172, 151, 0);
}

.placeholder-eva-teal-appt\/10::-moz-placeholder {
  color: rgba(22, 172, 151, 0.1);
}

.placeholder-eva-teal-appt\/10::placeholder {
  color: rgba(22, 172, 151, 0.1);
}

.placeholder-eva-teal-appt\/100::-moz-placeholder {
  color: rgba(22, 172, 151, 1);
}

.placeholder-eva-teal-appt\/100::placeholder {
  color: rgba(22, 172, 151, 1);
}

.placeholder-eva-teal-appt\/15::-moz-placeholder {
  color: rgba(22, 172, 151, 0.15);
}

.placeholder-eva-teal-appt\/15::placeholder {
  color: rgba(22, 172, 151, 0.15);
}

.placeholder-eva-teal-appt\/20::-moz-placeholder {
  color: rgba(22, 172, 151, 0.2);
}

.placeholder-eva-teal-appt\/20::placeholder {
  color: rgba(22, 172, 151, 0.2);
}

.placeholder-eva-teal-appt\/25::-moz-placeholder {
  color: rgba(22, 172, 151, 0.25);
}

.placeholder-eva-teal-appt\/25::placeholder {
  color: rgba(22, 172, 151, 0.25);
}

.placeholder-eva-teal-appt\/30::-moz-placeholder {
  color: rgba(22, 172, 151, 0.3);
}

.placeholder-eva-teal-appt\/30::placeholder {
  color: rgba(22, 172, 151, 0.3);
}

.placeholder-eva-teal-appt\/35::-moz-placeholder {
  color: rgba(22, 172, 151, 0.35);
}

.placeholder-eva-teal-appt\/35::placeholder {
  color: rgba(22, 172, 151, 0.35);
}

.placeholder-eva-teal-appt\/40::-moz-placeholder {
  color: rgba(22, 172, 151, 0.4);
}

.placeholder-eva-teal-appt\/40::placeholder {
  color: rgba(22, 172, 151, 0.4);
}

.placeholder-eva-teal-appt\/45::-moz-placeholder {
  color: rgba(22, 172, 151, 0.45);
}

.placeholder-eva-teal-appt\/45::placeholder {
  color: rgba(22, 172, 151, 0.45);
}

.placeholder-eva-teal-appt\/5::-moz-placeholder {
  color: rgba(22, 172, 151, 0.05);
}

.placeholder-eva-teal-appt\/5::placeholder {
  color: rgba(22, 172, 151, 0.05);
}

.placeholder-eva-teal-appt\/50::-moz-placeholder {
  color: rgba(22, 172, 151, 0.5);
}

.placeholder-eva-teal-appt\/50::placeholder {
  color: rgba(22, 172, 151, 0.5);
}

.placeholder-eva-teal-appt\/55::-moz-placeholder {
  color: rgba(22, 172, 151, 0.55);
}

.placeholder-eva-teal-appt\/55::placeholder {
  color: rgba(22, 172, 151, 0.55);
}

.placeholder-eva-teal-appt\/60::-moz-placeholder {
  color: rgba(22, 172, 151, 0.6);
}

.placeholder-eva-teal-appt\/60::placeholder {
  color: rgba(22, 172, 151, 0.6);
}

.placeholder-eva-teal-appt\/65::-moz-placeholder {
  color: rgba(22, 172, 151, 0.65);
}

.placeholder-eva-teal-appt\/65::placeholder {
  color: rgba(22, 172, 151, 0.65);
}

.placeholder-eva-teal-appt\/70::-moz-placeholder {
  color: rgba(22, 172, 151, 0.7);
}

.placeholder-eva-teal-appt\/70::placeholder {
  color: rgba(22, 172, 151, 0.7);
}

.placeholder-eva-teal-appt\/75::-moz-placeholder {
  color: rgba(22, 172, 151, 0.75);
}

.placeholder-eva-teal-appt\/75::placeholder {
  color: rgba(22, 172, 151, 0.75);
}

.placeholder-eva-teal-appt\/80::-moz-placeholder {
  color: rgba(22, 172, 151, 0.8);
}

.placeholder-eva-teal-appt\/80::placeholder {
  color: rgba(22, 172, 151, 0.8);
}

.placeholder-eva-teal-appt\/85::-moz-placeholder {
  color: rgba(22, 172, 151, 0.85);
}

.placeholder-eva-teal-appt\/85::placeholder {
  color: rgba(22, 172, 151, 0.85);
}

.placeholder-eva-teal-appt\/90::-moz-placeholder {
  color: rgba(22, 172, 151, 0.9);
}

.placeholder-eva-teal-appt\/90::placeholder {
  color: rgba(22, 172, 151, 0.9);
}

.placeholder-eva-teal-appt\/95::-moz-placeholder {
  color: rgba(22, 172, 151, 0.95);
}

.placeholder-eva-teal-appt\/95::placeholder {
  color: rgba(22, 172, 151, 0.95);
}

.placeholder-eva-yellow::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(233 179 98 / var(--tw-placeholder-opacity, 1));
}

.placeholder-eva-yellow::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(233 179 98 / var(--tw-placeholder-opacity, 1));
}

.placeholder-eva-yellow-appt::-moz-placeholder {
  color: rgba(240, 226, 0, 1);
}

.placeholder-eva-yellow-appt::placeholder {
  color: rgba(240, 226, 0, 1);
}

.placeholder-eva-yellow-appt\/0::-moz-placeholder {
  color: rgba(240, 226, 0, 0);
}

.placeholder-eva-yellow-appt\/0::placeholder {
  color: rgba(240, 226, 0, 0);
}

.placeholder-eva-yellow-appt\/10::-moz-placeholder {
  color: rgba(240, 226, 0, 0.1);
}

.placeholder-eva-yellow-appt\/10::placeholder {
  color: rgba(240, 226, 0, 0.1);
}

.placeholder-eva-yellow-appt\/100::-moz-placeholder {
  color: rgba(240, 226, 0, 1);
}

.placeholder-eva-yellow-appt\/100::placeholder {
  color: rgba(240, 226, 0, 1);
}

.placeholder-eva-yellow-appt\/15::-moz-placeholder {
  color: rgba(240, 226, 0, 0.15);
}

.placeholder-eva-yellow-appt\/15::placeholder {
  color: rgba(240, 226, 0, 0.15);
}

.placeholder-eva-yellow-appt\/20::-moz-placeholder {
  color: rgba(240, 226, 0, 0.2);
}

.placeholder-eva-yellow-appt\/20::placeholder {
  color: rgba(240, 226, 0, 0.2);
}

.placeholder-eva-yellow-appt\/25::-moz-placeholder {
  color: rgba(240, 226, 0, 0.25);
}

.placeholder-eva-yellow-appt\/25::placeholder {
  color: rgba(240, 226, 0, 0.25);
}

.placeholder-eva-yellow-appt\/30::-moz-placeholder {
  color: rgba(240, 226, 0, 0.3);
}

.placeholder-eva-yellow-appt\/30::placeholder {
  color: rgba(240, 226, 0, 0.3);
}

.placeholder-eva-yellow-appt\/35::-moz-placeholder {
  color: rgba(240, 226, 0, 0.35);
}

.placeholder-eva-yellow-appt\/35::placeholder {
  color: rgba(240, 226, 0, 0.35);
}

.placeholder-eva-yellow-appt\/40::-moz-placeholder {
  color: rgba(240, 226, 0, 0.4);
}

.placeholder-eva-yellow-appt\/40::placeholder {
  color: rgba(240, 226, 0, 0.4);
}

.placeholder-eva-yellow-appt\/45::-moz-placeholder {
  color: rgba(240, 226, 0, 0.45);
}

.placeholder-eva-yellow-appt\/45::placeholder {
  color: rgba(240, 226, 0, 0.45);
}

.placeholder-eva-yellow-appt\/5::-moz-placeholder {
  color: rgba(240, 226, 0, 0.05);
}

.placeholder-eva-yellow-appt\/5::placeholder {
  color: rgba(240, 226, 0, 0.05);
}

.placeholder-eva-yellow-appt\/50::-moz-placeholder {
  color: rgba(240, 226, 0, 0.5);
}

.placeholder-eva-yellow-appt\/50::placeholder {
  color: rgba(240, 226, 0, 0.5);
}

.placeholder-eva-yellow-appt\/55::-moz-placeholder {
  color: rgba(240, 226, 0, 0.55);
}

.placeholder-eva-yellow-appt\/55::placeholder {
  color: rgba(240, 226, 0, 0.55);
}

.placeholder-eva-yellow-appt\/60::-moz-placeholder {
  color: rgba(240, 226, 0, 0.6);
}

.placeholder-eva-yellow-appt\/60::placeholder {
  color: rgba(240, 226, 0, 0.6);
}

.placeholder-eva-yellow-appt\/65::-moz-placeholder {
  color: rgba(240, 226, 0, 0.65);
}

.placeholder-eva-yellow-appt\/65::placeholder {
  color: rgba(240, 226, 0, 0.65);
}

.placeholder-eva-yellow-appt\/70::-moz-placeholder {
  color: rgba(240, 226, 0, 0.7);
}

.placeholder-eva-yellow-appt\/70::placeholder {
  color: rgba(240, 226, 0, 0.7);
}

.placeholder-eva-yellow-appt\/75::-moz-placeholder {
  color: rgba(240, 226, 0, 0.75);
}

.placeholder-eva-yellow-appt\/75::placeholder {
  color: rgba(240, 226, 0, 0.75);
}

.placeholder-eva-yellow-appt\/80::-moz-placeholder {
  color: rgba(240, 226, 0, 0.8);
}

.placeholder-eva-yellow-appt\/80::placeholder {
  color: rgba(240, 226, 0, 0.8);
}

.placeholder-eva-yellow-appt\/85::-moz-placeholder {
  color: rgba(240, 226, 0, 0.85);
}

.placeholder-eva-yellow-appt\/85::placeholder {
  color: rgba(240, 226, 0, 0.85);
}

.placeholder-eva-yellow-appt\/90::-moz-placeholder {
  color: rgba(240, 226, 0, 0.9);
}

.placeholder-eva-yellow-appt\/90::placeholder {
  color: rgba(240, 226, 0, 0.9);
}

.placeholder-eva-yellow-appt\/95::-moz-placeholder {
  color: rgba(240, 226, 0, 0.95);
}

.placeholder-eva-yellow-appt\/95::placeholder {
  color: rgba(240, 226, 0, 0.95);
}

.placeholder-eva-yellow\/0::-moz-placeholder {
  color: rgb(233 179 98 / 0);
}

.placeholder-eva-yellow\/0::placeholder {
  color: rgb(233 179 98 / 0);
}

.placeholder-eva-yellow\/10::-moz-placeholder {
  color: rgb(233 179 98 / 0.1);
}

.placeholder-eva-yellow\/10::placeholder {
  color: rgb(233 179 98 / 0.1);
}

.placeholder-eva-yellow\/100::-moz-placeholder {
  color: rgb(233 179 98 / 1);
}

.placeholder-eva-yellow\/100::placeholder {
  color: rgb(233 179 98 / 1);
}

.placeholder-eva-yellow\/15::-moz-placeholder {
  color: rgb(233 179 98 / 0.15);
}

.placeholder-eva-yellow\/15::placeholder {
  color: rgb(233 179 98 / 0.15);
}

.placeholder-eva-yellow\/20::-moz-placeholder {
  color: rgb(233 179 98 / 0.2);
}

.placeholder-eva-yellow\/20::placeholder {
  color: rgb(233 179 98 / 0.2);
}

.placeholder-eva-yellow\/25::-moz-placeholder {
  color: rgb(233 179 98 / 0.25);
}

.placeholder-eva-yellow\/25::placeholder {
  color: rgb(233 179 98 / 0.25);
}

.placeholder-eva-yellow\/30::-moz-placeholder {
  color: rgb(233 179 98 / 0.3);
}

.placeholder-eva-yellow\/30::placeholder {
  color: rgb(233 179 98 / 0.3);
}

.placeholder-eva-yellow\/35::-moz-placeholder {
  color: rgb(233 179 98 / 0.35);
}

.placeholder-eva-yellow\/35::placeholder {
  color: rgb(233 179 98 / 0.35);
}

.placeholder-eva-yellow\/40::-moz-placeholder {
  color: rgb(233 179 98 / 0.4);
}

.placeholder-eva-yellow\/40::placeholder {
  color: rgb(233 179 98 / 0.4);
}

.placeholder-eva-yellow\/45::-moz-placeholder {
  color: rgb(233 179 98 / 0.45);
}

.placeholder-eva-yellow\/45::placeholder {
  color: rgb(233 179 98 / 0.45);
}

.placeholder-eva-yellow\/5::-moz-placeholder {
  color: rgb(233 179 98 / 0.05);
}

.placeholder-eva-yellow\/5::placeholder {
  color: rgb(233 179 98 / 0.05);
}

.placeholder-eva-yellow\/50::-moz-placeholder {
  color: rgb(233 179 98 / 0.5);
}

.placeholder-eva-yellow\/50::placeholder {
  color: rgb(233 179 98 / 0.5);
}

.placeholder-eva-yellow\/55::-moz-placeholder {
  color: rgb(233 179 98 / 0.55);
}

.placeholder-eva-yellow\/55::placeholder {
  color: rgb(233 179 98 / 0.55);
}

.placeholder-eva-yellow\/60::-moz-placeholder {
  color: rgb(233 179 98 / 0.6);
}

.placeholder-eva-yellow\/60::placeholder {
  color: rgb(233 179 98 / 0.6);
}

.placeholder-eva-yellow\/65::-moz-placeholder {
  color: rgb(233 179 98 / 0.65);
}

.placeholder-eva-yellow\/65::placeholder {
  color: rgb(233 179 98 / 0.65);
}

.placeholder-eva-yellow\/70::-moz-placeholder {
  color: rgb(233 179 98 / 0.7);
}

.placeholder-eva-yellow\/70::placeholder {
  color: rgb(233 179 98 / 0.7);
}

.placeholder-eva-yellow\/75::-moz-placeholder {
  color: rgb(233 179 98 / 0.75);
}

.placeholder-eva-yellow\/75::placeholder {
  color: rgb(233 179 98 / 0.75);
}

.placeholder-eva-yellow\/80::-moz-placeholder {
  color: rgb(233 179 98 / 0.8);
}

.placeholder-eva-yellow\/80::placeholder {
  color: rgb(233 179 98 / 0.8);
}

.placeholder-eva-yellow\/85::-moz-placeholder {
  color: rgb(233 179 98 / 0.85);
}

.placeholder-eva-yellow\/85::placeholder {
  color: rgb(233 179 98 / 0.85);
}

.placeholder-eva-yellow\/90::-moz-placeholder {
  color: rgb(233 179 98 / 0.9);
}

.placeholder-eva-yellow\/90::placeholder {
  color: rgb(233 179 98 / 0.9);
}

.placeholder-eva-yellow\/95::-moz-placeholder {
  color: rgb(233 179 98 / 0.95);
}

.placeholder-eva-yellow\/95::placeholder {
  color: rgb(233 179 98 / 0.95);
}

.placeholder-gray-100::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(245 245 245 / var(--tw-placeholder-opacity, 1));
}

.placeholder-gray-100::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(245 245 245 / var(--tw-placeholder-opacity, 1));
}

.placeholder-gray-100\/0::-moz-placeholder {
  color: rgb(245 245 245 / 0);
}

.placeholder-gray-100\/0::placeholder {
  color: rgb(245 245 245 / 0);
}

.placeholder-gray-100\/10::-moz-placeholder {
  color: rgb(245 245 245 / 0.1);
}

.placeholder-gray-100\/10::placeholder {
  color: rgb(245 245 245 / 0.1);
}

.placeholder-gray-100\/100::-moz-placeholder {
  color: rgb(245 245 245 / 1);
}

.placeholder-gray-100\/100::placeholder {
  color: rgb(245 245 245 / 1);
}

.placeholder-gray-100\/15::-moz-placeholder {
  color: rgb(245 245 245 / 0.15);
}

.placeholder-gray-100\/15::placeholder {
  color: rgb(245 245 245 / 0.15);
}

.placeholder-gray-100\/20::-moz-placeholder {
  color: rgb(245 245 245 / 0.2);
}

.placeholder-gray-100\/20::placeholder {
  color: rgb(245 245 245 / 0.2);
}

.placeholder-gray-100\/25::-moz-placeholder {
  color: rgb(245 245 245 / 0.25);
}

.placeholder-gray-100\/25::placeholder {
  color: rgb(245 245 245 / 0.25);
}

.placeholder-gray-100\/30::-moz-placeholder {
  color: rgb(245 245 245 / 0.3);
}

.placeholder-gray-100\/30::placeholder {
  color: rgb(245 245 245 / 0.3);
}

.placeholder-gray-100\/35::-moz-placeholder {
  color: rgb(245 245 245 / 0.35);
}

.placeholder-gray-100\/35::placeholder {
  color: rgb(245 245 245 / 0.35);
}

.placeholder-gray-100\/40::-moz-placeholder {
  color: rgb(245 245 245 / 0.4);
}

.placeholder-gray-100\/40::placeholder {
  color: rgb(245 245 245 / 0.4);
}

.placeholder-gray-100\/45::-moz-placeholder {
  color: rgb(245 245 245 / 0.45);
}

.placeholder-gray-100\/45::placeholder {
  color: rgb(245 245 245 / 0.45);
}

.placeholder-gray-100\/5::-moz-placeholder {
  color: rgb(245 245 245 / 0.05);
}

.placeholder-gray-100\/5::placeholder {
  color: rgb(245 245 245 / 0.05);
}

.placeholder-gray-100\/50::-moz-placeholder {
  color: rgb(245 245 245 / 0.5);
}

.placeholder-gray-100\/50::placeholder {
  color: rgb(245 245 245 / 0.5);
}

.placeholder-gray-100\/55::-moz-placeholder {
  color: rgb(245 245 245 / 0.55);
}

.placeholder-gray-100\/55::placeholder {
  color: rgb(245 245 245 / 0.55);
}

.placeholder-gray-100\/60::-moz-placeholder {
  color: rgb(245 245 245 / 0.6);
}

.placeholder-gray-100\/60::placeholder {
  color: rgb(245 245 245 / 0.6);
}

.placeholder-gray-100\/65::-moz-placeholder {
  color: rgb(245 245 245 / 0.65);
}

.placeholder-gray-100\/65::placeholder {
  color: rgb(245 245 245 / 0.65);
}

.placeholder-gray-100\/70::-moz-placeholder {
  color: rgb(245 245 245 / 0.7);
}

.placeholder-gray-100\/70::placeholder {
  color: rgb(245 245 245 / 0.7);
}

.placeholder-gray-100\/75::-moz-placeholder {
  color: rgb(245 245 245 / 0.75);
}

.placeholder-gray-100\/75::placeholder {
  color: rgb(245 245 245 / 0.75);
}

.placeholder-gray-100\/80::-moz-placeholder {
  color: rgb(245 245 245 / 0.8);
}

.placeholder-gray-100\/80::placeholder {
  color: rgb(245 245 245 / 0.8);
}

.placeholder-gray-100\/85::-moz-placeholder {
  color: rgb(245 245 245 / 0.85);
}

.placeholder-gray-100\/85::placeholder {
  color: rgb(245 245 245 / 0.85);
}

.placeholder-gray-100\/90::-moz-placeholder {
  color: rgb(245 245 245 / 0.9);
}

.placeholder-gray-100\/90::placeholder {
  color: rgb(245 245 245 / 0.9);
}

.placeholder-gray-100\/95::-moz-placeholder {
  color: rgb(245 245 245 / 0.95);
}

.placeholder-gray-100\/95::placeholder {
  color: rgb(245 245 245 / 0.95);
}

.placeholder-gray-200::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(229 229 229 / var(--tw-placeholder-opacity, 1));
}

.placeholder-gray-200::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(229 229 229 / var(--tw-placeholder-opacity, 1));
}

.placeholder-gray-200\/0::-moz-placeholder {
  color: rgb(229 229 229 / 0);
}

.placeholder-gray-200\/0::placeholder {
  color: rgb(229 229 229 / 0);
}

.placeholder-gray-200\/10::-moz-placeholder {
  color: rgb(229 229 229 / 0.1);
}

.placeholder-gray-200\/10::placeholder {
  color: rgb(229 229 229 / 0.1);
}

.placeholder-gray-200\/100::-moz-placeholder {
  color: rgb(229 229 229 / 1);
}

.placeholder-gray-200\/100::placeholder {
  color: rgb(229 229 229 / 1);
}

.placeholder-gray-200\/15::-moz-placeholder {
  color: rgb(229 229 229 / 0.15);
}

.placeholder-gray-200\/15::placeholder {
  color: rgb(229 229 229 / 0.15);
}

.placeholder-gray-200\/20::-moz-placeholder {
  color: rgb(229 229 229 / 0.2);
}

.placeholder-gray-200\/20::placeholder {
  color: rgb(229 229 229 / 0.2);
}

.placeholder-gray-200\/25::-moz-placeholder {
  color: rgb(229 229 229 / 0.25);
}

.placeholder-gray-200\/25::placeholder {
  color: rgb(229 229 229 / 0.25);
}

.placeholder-gray-200\/30::-moz-placeholder {
  color: rgb(229 229 229 / 0.3);
}

.placeholder-gray-200\/30::placeholder {
  color: rgb(229 229 229 / 0.3);
}

.placeholder-gray-200\/35::-moz-placeholder {
  color: rgb(229 229 229 / 0.35);
}

.placeholder-gray-200\/35::placeholder {
  color: rgb(229 229 229 / 0.35);
}

.placeholder-gray-200\/40::-moz-placeholder {
  color: rgb(229 229 229 / 0.4);
}

.placeholder-gray-200\/40::placeholder {
  color: rgb(229 229 229 / 0.4);
}

.placeholder-gray-200\/45::-moz-placeholder {
  color: rgb(229 229 229 / 0.45);
}

.placeholder-gray-200\/45::placeholder {
  color: rgb(229 229 229 / 0.45);
}

.placeholder-gray-200\/5::-moz-placeholder {
  color: rgb(229 229 229 / 0.05);
}

.placeholder-gray-200\/5::placeholder {
  color: rgb(229 229 229 / 0.05);
}

.placeholder-gray-200\/50::-moz-placeholder {
  color: rgb(229 229 229 / 0.5);
}

.placeholder-gray-200\/50::placeholder {
  color: rgb(229 229 229 / 0.5);
}

.placeholder-gray-200\/55::-moz-placeholder {
  color: rgb(229 229 229 / 0.55);
}

.placeholder-gray-200\/55::placeholder {
  color: rgb(229 229 229 / 0.55);
}

.placeholder-gray-200\/60::-moz-placeholder {
  color: rgb(229 229 229 / 0.6);
}

.placeholder-gray-200\/60::placeholder {
  color: rgb(229 229 229 / 0.6);
}

.placeholder-gray-200\/65::-moz-placeholder {
  color: rgb(229 229 229 / 0.65);
}

.placeholder-gray-200\/65::placeholder {
  color: rgb(229 229 229 / 0.65);
}

.placeholder-gray-200\/70::-moz-placeholder {
  color: rgb(229 229 229 / 0.7);
}

.placeholder-gray-200\/70::placeholder {
  color: rgb(229 229 229 / 0.7);
}

.placeholder-gray-200\/75::-moz-placeholder {
  color: rgb(229 229 229 / 0.75);
}

.placeholder-gray-200\/75::placeholder {
  color: rgb(229 229 229 / 0.75);
}

.placeholder-gray-200\/80::-moz-placeholder {
  color: rgb(229 229 229 / 0.8);
}

.placeholder-gray-200\/80::placeholder {
  color: rgb(229 229 229 / 0.8);
}

.placeholder-gray-200\/85::-moz-placeholder {
  color: rgb(229 229 229 / 0.85);
}

.placeholder-gray-200\/85::placeholder {
  color: rgb(229 229 229 / 0.85);
}

.placeholder-gray-200\/90::-moz-placeholder {
  color: rgb(229 229 229 / 0.9);
}

.placeholder-gray-200\/90::placeholder {
  color: rgb(229 229 229 / 0.9);
}

.placeholder-gray-200\/95::-moz-placeholder {
  color: rgb(229 229 229 / 0.95);
}

.placeholder-gray-200\/95::placeholder {
  color: rgb(229 229 229 / 0.95);
}

.placeholder-gray-300::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(212 212 212 / var(--tw-placeholder-opacity, 1));
}

.placeholder-gray-300::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(212 212 212 / var(--tw-placeholder-opacity, 1));
}

.placeholder-gray-300\/0::-moz-placeholder {
  color: rgb(212 212 212 / 0);
}

.placeholder-gray-300\/0::placeholder {
  color: rgb(212 212 212 / 0);
}

.placeholder-gray-300\/10::-moz-placeholder {
  color: rgb(212 212 212 / 0.1);
}

.placeholder-gray-300\/10::placeholder {
  color: rgb(212 212 212 / 0.1);
}

.placeholder-gray-300\/100::-moz-placeholder {
  color: rgb(212 212 212 / 1);
}

.placeholder-gray-300\/100::placeholder {
  color: rgb(212 212 212 / 1);
}

.placeholder-gray-300\/15::-moz-placeholder {
  color: rgb(212 212 212 / 0.15);
}

.placeholder-gray-300\/15::placeholder {
  color: rgb(212 212 212 / 0.15);
}

.placeholder-gray-300\/20::-moz-placeholder {
  color: rgb(212 212 212 / 0.2);
}

.placeholder-gray-300\/20::placeholder {
  color: rgb(212 212 212 / 0.2);
}

.placeholder-gray-300\/25::-moz-placeholder {
  color: rgb(212 212 212 / 0.25);
}

.placeholder-gray-300\/25::placeholder {
  color: rgb(212 212 212 / 0.25);
}

.placeholder-gray-300\/30::-moz-placeholder {
  color: rgb(212 212 212 / 0.3);
}

.placeholder-gray-300\/30::placeholder {
  color: rgb(212 212 212 / 0.3);
}

.placeholder-gray-300\/35::-moz-placeholder {
  color: rgb(212 212 212 / 0.35);
}

.placeholder-gray-300\/35::placeholder {
  color: rgb(212 212 212 / 0.35);
}

.placeholder-gray-300\/40::-moz-placeholder {
  color: rgb(212 212 212 / 0.4);
}

.placeholder-gray-300\/40::placeholder {
  color: rgb(212 212 212 / 0.4);
}

.placeholder-gray-300\/45::-moz-placeholder {
  color: rgb(212 212 212 / 0.45);
}

.placeholder-gray-300\/45::placeholder {
  color: rgb(212 212 212 / 0.45);
}

.placeholder-gray-300\/5::-moz-placeholder {
  color: rgb(212 212 212 / 0.05);
}

.placeholder-gray-300\/5::placeholder {
  color: rgb(212 212 212 / 0.05);
}

.placeholder-gray-300\/50::-moz-placeholder {
  color: rgb(212 212 212 / 0.5);
}

.placeholder-gray-300\/50::placeholder {
  color: rgb(212 212 212 / 0.5);
}

.placeholder-gray-300\/55::-moz-placeholder {
  color: rgb(212 212 212 / 0.55);
}

.placeholder-gray-300\/55::placeholder {
  color: rgb(212 212 212 / 0.55);
}

.placeholder-gray-300\/60::-moz-placeholder {
  color: rgb(212 212 212 / 0.6);
}

.placeholder-gray-300\/60::placeholder {
  color: rgb(212 212 212 / 0.6);
}

.placeholder-gray-300\/65::-moz-placeholder {
  color: rgb(212 212 212 / 0.65);
}

.placeholder-gray-300\/65::placeholder {
  color: rgb(212 212 212 / 0.65);
}

.placeholder-gray-300\/70::-moz-placeholder {
  color: rgb(212 212 212 / 0.7);
}

.placeholder-gray-300\/70::placeholder {
  color: rgb(212 212 212 / 0.7);
}

.placeholder-gray-300\/75::-moz-placeholder {
  color: rgb(212 212 212 / 0.75);
}

.placeholder-gray-300\/75::placeholder {
  color: rgb(212 212 212 / 0.75);
}

.placeholder-gray-300\/80::-moz-placeholder {
  color: rgb(212 212 212 / 0.8);
}

.placeholder-gray-300\/80::placeholder {
  color: rgb(212 212 212 / 0.8);
}

.placeholder-gray-300\/85::-moz-placeholder {
  color: rgb(212 212 212 / 0.85);
}

.placeholder-gray-300\/85::placeholder {
  color: rgb(212 212 212 / 0.85);
}

.placeholder-gray-300\/90::-moz-placeholder {
  color: rgb(212 212 212 / 0.9);
}

.placeholder-gray-300\/90::placeholder {
  color: rgb(212 212 212 / 0.9);
}

.placeholder-gray-300\/95::-moz-placeholder {
  color: rgb(212 212 212 / 0.95);
}

.placeholder-gray-300\/95::placeholder {
  color: rgb(212 212 212 / 0.95);
}

.placeholder-gray-400::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(163 163 163 / var(--tw-placeholder-opacity, 1));
}

.placeholder-gray-400::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(163 163 163 / var(--tw-placeholder-opacity, 1));
}

.placeholder-gray-400\/0::-moz-placeholder {
  color: rgb(163 163 163 / 0);
}

.placeholder-gray-400\/0::placeholder {
  color: rgb(163 163 163 / 0);
}

.placeholder-gray-400\/10::-moz-placeholder {
  color: rgb(163 163 163 / 0.1);
}

.placeholder-gray-400\/10::placeholder {
  color: rgb(163 163 163 / 0.1);
}

.placeholder-gray-400\/100::-moz-placeholder {
  color: rgb(163 163 163 / 1);
}

.placeholder-gray-400\/100::placeholder {
  color: rgb(163 163 163 / 1);
}

.placeholder-gray-400\/15::-moz-placeholder {
  color: rgb(163 163 163 / 0.15);
}

.placeholder-gray-400\/15::placeholder {
  color: rgb(163 163 163 / 0.15);
}

.placeholder-gray-400\/20::-moz-placeholder {
  color: rgb(163 163 163 / 0.2);
}

.placeholder-gray-400\/20::placeholder {
  color: rgb(163 163 163 / 0.2);
}

.placeholder-gray-400\/25::-moz-placeholder {
  color: rgb(163 163 163 / 0.25);
}

.placeholder-gray-400\/25::placeholder {
  color: rgb(163 163 163 / 0.25);
}

.placeholder-gray-400\/30::-moz-placeholder {
  color: rgb(163 163 163 / 0.3);
}

.placeholder-gray-400\/30::placeholder {
  color: rgb(163 163 163 / 0.3);
}

.placeholder-gray-400\/35::-moz-placeholder {
  color: rgb(163 163 163 / 0.35);
}

.placeholder-gray-400\/35::placeholder {
  color: rgb(163 163 163 / 0.35);
}

.placeholder-gray-400\/40::-moz-placeholder {
  color: rgb(163 163 163 / 0.4);
}

.placeholder-gray-400\/40::placeholder {
  color: rgb(163 163 163 / 0.4);
}

.placeholder-gray-400\/45::-moz-placeholder {
  color: rgb(163 163 163 / 0.45);
}

.placeholder-gray-400\/45::placeholder {
  color: rgb(163 163 163 / 0.45);
}

.placeholder-gray-400\/5::-moz-placeholder {
  color: rgb(163 163 163 / 0.05);
}

.placeholder-gray-400\/5::placeholder {
  color: rgb(163 163 163 / 0.05);
}

.placeholder-gray-400\/50::-moz-placeholder {
  color: rgb(163 163 163 / 0.5);
}

.placeholder-gray-400\/50::placeholder {
  color: rgb(163 163 163 / 0.5);
}

.placeholder-gray-400\/55::-moz-placeholder {
  color: rgb(163 163 163 / 0.55);
}

.placeholder-gray-400\/55::placeholder {
  color: rgb(163 163 163 / 0.55);
}

.placeholder-gray-400\/60::-moz-placeholder {
  color: rgb(163 163 163 / 0.6);
}

.placeholder-gray-400\/60::placeholder {
  color: rgb(163 163 163 / 0.6);
}

.placeholder-gray-400\/65::-moz-placeholder {
  color: rgb(163 163 163 / 0.65);
}

.placeholder-gray-400\/65::placeholder {
  color: rgb(163 163 163 / 0.65);
}

.placeholder-gray-400\/70::-moz-placeholder {
  color: rgb(163 163 163 / 0.7);
}

.placeholder-gray-400\/70::placeholder {
  color: rgb(163 163 163 / 0.7);
}

.placeholder-gray-400\/75::-moz-placeholder {
  color: rgb(163 163 163 / 0.75);
}

.placeholder-gray-400\/75::placeholder {
  color: rgb(163 163 163 / 0.75);
}

.placeholder-gray-400\/80::-moz-placeholder {
  color: rgb(163 163 163 / 0.8);
}

.placeholder-gray-400\/80::placeholder {
  color: rgb(163 163 163 / 0.8);
}

.placeholder-gray-400\/85::-moz-placeholder {
  color: rgb(163 163 163 / 0.85);
}

.placeholder-gray-400\/85::placeholder {
  color: rgb(163 163 163 / 0.85);
}

.placeholder-gray-400\/90::-moz-placeholder {
  color: rgb(163 163 163 / 0.9);
}

.placeholder-gray-400\/90::placeholder {
  color: rgb(163 163 163 / 0.9);
}

.placeholder-gray-400\/95::-moz-placeholder {
  color: rgb(163 163 163 / 0.95);
}

.placeholder-gray-400\/95::placeholder {
  color: rgb(163 163 163 / 0.95);
}

.placeholder-gray-50::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(250 250 250 / var(--tw-placeholder-opacity, 1));
}

.placeholder-gray-50::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(250 250 250 / var(--tw-placeholder-opacity, 1));
}

.placeholder-gray-50\/0::-moz-placeholder {
  color: rgb(250 250 250 / 0);
}

.placeholder-gray-50\/0::placeholder {
  color: rgb(250 250 250 / 0);
}

.placeholder-gray-50\/10::-moz-placeholder {
  color: rgb(250 250 250 / 0.1);
}

.placeholder-gray-50\/10::placeholder {
  color: rgb(250 250 250 / 0.1);
}

.placeholder-gray-50\/100::-moz-placeholder {
  color: rgb(250 250 250 / 1);
}

.placeholder-gray-50\/100::placeholder {
  color: rgb(250 250 250 / 1);
}

.placeholder-gray-50\/15::-moz-placeholder {
  color: rgb(250 250 250 / 0.15);
}

.placeholder-gray-50\/15::placeholder {
  color: rgb(250 250 250 / 0.15);
}

.placeholder-gray-50\/20::-moz-placeholder {
  color: rgb(250 250 250 / 0.2);
}

.placeholder-gray-50\/20::placeholder {
  color: rgb(250 250 250 / 0.2);
}

.placeholder-gray-50\/25::-moz-placeholder {
  color: rgb(250 250 250 / 0.25);
}

.placeholder-gray-50\/25::placeholder {
  color: rgb(250 250 250 / 0.25);
}

.placeholder-gray-50\/30::-moz-placeholder {
  color: rgb(250 250 250 / 0.3);
}

.placeholder-gray-50\/30::placeholder {
  color: rgb(250 250 250 / 0.3);
}

.placeholder-gray-50\/35::-moz-placeholder {
  color: rgb(250 250 250 / 0.35);
}

.placeholder-gray-50\/35::placeholder {
  color: rgb(250 250 250 / 0.35);
}

.placeholder-gray-50\/40::-moz-placeholder {
  color: rgb(250 250 250 / 0.4);
}

.placeholder-gray-50\/40::placeholder {
  color: rgb(250 250 250 / 0.4);
}

.placeholder-gray-50\/45::-moz-placeholder {
  color: rgb(250 250 250 / 0.45);
}

.placeholder-gray-50\/45::placeholder {
  color: rgb(250 250 250 / 0.45);
}

.placeholder-gray-50\/5::-moz-placeholder {
  color: rgb(250 250 250 / 0.05);
}

.placeholder-gray-50\/5::placeholder {
  color: rgb(250 250 250 / 0.05);
}

.placeholder-gray-50\/50::-moz-placeholder {
  color: rgb(250 250 250 / 0.5);
}

.placeholder-gray-50\/50::placeholder {
  color: rgb(250 250 250 / 0.5);
}

.placeholder-gray-50\/55::-moz-placeholder {
  color: rgb(250 250 250 / 0.55);
}

.placeholder-gray-50\/55::placeholder {
  color: rgb(250 250 250 / 0.55);
}

.placeholder-gray-50\/60::-moz-placeholder {
  color: rgb(250 250 250 / 0.6);
}

.placeholder-gray-50\/60::placeholder {
  color: rgb(250 250 250 / 0.6);
}

.placeholder-gray-50\/65::-moz-placeholder {
  color: rgb(250 250 250 / 0.65);
}

.placeholder-gray-50\/65::placeholder {
  color: rgb(250 250 250 / 0.65);
}

.placeholder-gray-50\/70::-moz-placeholder {
  color: rgb(250 250 250 / 0.7);
}

.placeholder-gray-50\/70::placeholder {
  color: rgb(250 250 250 / 0.7);
}

.placeholder-gray-50\/75::-moz-placeholder {
  color: rgb(250 250 250 / 0.75);
}

.placeholder-gray-50\/75::placeholder {
  color: rgb(250 250 250 / 0.75);
}

.placeholder-gray-50\/80::-moz-placeholder {
  color: rgb(250 250 250 / 0.8);
}

.placeholder-gray-50\/80::placeholder {
  color: rgb(250 250 250 / 0.8);
}

.placeholder-gray-50\/85::-moz-placeholder {
  color: rgb(250 250 250 / 0.85);
}

.placeholder-gray-50\/85::placeholder {
  color: rgb(250 250 250 / 0.85);
}

.placeholder-gray-50\/90::-moz-placeholder {
  color: rgb(250 250 250 / 0.9);
}

.placeholder-gray-50\/90::placeholder {
  color: rgb(250 250 250 / 0.9);
}

.placeholder-gray-50\/95::-moz-placeholder {
  color: rgb(250 250 250 / 0.95);
}

.placeholder-gray-50\/95::placeholder {
  color: rgb(250 250 250 / 0.95);
}

.placeholder-gray-500::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(115 115 115 / var(--tw-placeholder-opacity, 1));
}

.placeholder-gray-500::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(115 115 115 / var(--tw-placeholder-opacity, 1));
}

.placeholder-gray-500\/0::-moz-placeholder {
  color: rgb(115 115 115 / 0);
}

.placeholder-gray-500\/0::placeholder {
  color: rgb(115 115 115 / 0);
}

.placeholder-gray-500\/10::-moz-placeholder {
  color: rgb(115 115 115 / 0.1);
}

.placeholder-gray-500\/10::placeholder {
  color: rgb(115 115 115 / 0.1);
}

.placeholder-gray-500\/100::-moz-placeholder {
  color: rgb(115 115 115 / 1);
}

.placeholder-gray-500\/100::placeholder {
  color: rgb(115 115 115 / 1);
}

.placeholder-gray-500\/15::-moz-placeholder {
  color: rgb(115 115 115 / 0.15);
}

.placeholder-gray-500\/15::placeholder {
  color: rgb(115 115 115 / 0.15);
}

.placeholder-gray-500\/20::-moz-placeholder {
  color: rgb(115 115 115 / 0.2);
}

.placeholder-gray-500\/20::placeholder {
  color: rgb(115 115 115 / 0.2);
}

.placeholder-gray-500\/25::-moz-placeholder {
  color: rgb(115 115 115 / 0.25);
}

.placeholder-gray-500\/25::placeholder {
  color: rgb(115 115 115 / 0.25);
}

.placeholder-gray-500\/30::-moz-placeholder {
  color: rgb(115 115 115 / 0.3);
}

.placeholder-gray-500\/30::placeholder {
  color: rgb(115 115 115 / 0.3);
}

.placeholder-gray-500\/35::-moz-placeholder {
  color: rgb(115 115 115 / 0.35);
}

.placeholder-gray-500\/35::placeholder {
  color: rgb(115 115 115 / 0.35);
}

.placeholder-gray-500\/40::-moz-placeholder {
  color: rgb(115 115 115 / 0.4);
}

.placeholder-gray-500\/40::placeholder {
  color: rgb(115 115 115 / 0.4);
}

.placeholder-gray-500\/45::-moz-placeholder {
  color: rgb(115 115 115 / 0.45);
}

.placeholder-gray-500\/45::placeholder {
  color: rgb(115 115 115 / 0.45);
}

.placeholder-gray-500\/5::-moz-placeholder {
  color: rgb(115 115 115 / 0.05);
}

.placeholder-gray-500\/5::placeholder {
  color: rgb(115 115 115 / 0.05);
}

.placeholder-gray-500\/50::-moz-placeholder {
  color: rgb(115 115 115 / 0.5);
}

.placeholder-gray-500\/50::placeholder {
  color: rgb(115 115 115 / 0.5);
}

.placeholder-gray-500\/55::-moz-placeholder {
  color: rgb(115 115 115 / 0.55);
}

.placeholder-gray-500\/55::placeholder {
  color: rgb(115 115 115 / 0.55);
}

.placeholder-gray-500\/60::-moz-placeholder {
  color: rgb(115 115 115 / 0.6);
}

.placeholder-gray-500\/60::placeholder {
  color: rgb(115 115 115 / 0.6);
}

.placeholder-gray-500\/65::-moz-placeholder {
  color: rgb(115 115 115 / 0.65);
}

.placeholder-gray-500\/65::placeholder {
  color: rgb(115 115 115 / 0.65);
}

.placeholder-gray-500\/70::-moz-placeholder {
  color: rgb(115 115 115 / 0.7);
}

.placeholder-gray-500\/70::placeholder {
  color: rgb(115 115 115 / 0.7);
}

.placeholder-gray-500\/75::-moz-placeholder {
  color: rgb(115 115 115 / 0.75);
}

.placeholder-gray-500\/75::placeholder {
  color: rgb(115 115 115 / 0.75);
}

.placeholder-gray-500\/80::-moz-placeholder {
  color: rgb(115 115 115 / 0.8);
}

.placeholder-gray-500\/80::placeholder {
  color: rgb(115 115 115 / 0.8);
}

.placeholder-gray-500\/85::-moz-placeholder {
  color: rgb(115 115 115 / 0.85);
}

.placeholder-gray-500\/85::placeholder {
  color: rgb(115 115 115 / 0.85);
}

.placeholder-gray-500\/90::-moz-placeholder {
  color: rgb(115 115 115 / 0.9);
}

.placeholder-gray-500\/90::placeholder {
  color: rgb(115 115 115 / 0.9);
}

.placeholder-gray-500\/95::-moz-placeholder {
  color: rgb(115 115 115 / 0.95);
}

.placeholder-gray-500\/95::placeholder {
  color: rgb(115 115 115 / 0.95);
}

.placeholder-gray-600::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(82 82 82 / var(--tw-placeholder-opacity, 1));
}

.placeholder-gray-600::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(82 82 82 / var(--tw-placeholder-opacity, 1));
}

.placeholder-gray-600\/0::-moz-placeholder {
  color: rgb(82 82 82 / 0);
}

.placeholder-gray-600\/0::placeholder {
  color: rgb(82 82 82 / 0);
}

.placeholder-gray-600\/10::-moz-placeholder {
  color: rgb(82 82 82 / 0.1);
}

.placeholder-gray-600\/10::placeholder {
  color: rgb(82 82 82 / 0.1);
}

.placeholder-gray-600\/100::-moz-placeholder {
  color: rgb(82 82 82 / 1);
}

.placeholder-gray-600\/100::placeholder {
  color: rgb(82 82 82 / 1);
}

.placeholder-gray-600\/15::-moz-placeholder {
  color: rgb(82 82 82 / 0.15);
}

.placeholder-gray-600\/15::placeholder {
  color: rgb(82 82 82 / 0.15);
}

.placeholder-gray-600\/20::-moz-placeholder {
  color: rgb(82 82 82 / 0.2);
}

.placeholder-gray-600\/20::placeholder {
  color: rgb(82 82 82 / 0.2);
}

.placeholder-gray-600\/25::-moz-placeholder {
  color: rgb(82 82 82 / 0.25);
}

.placeholder-gray-600\/25::placeholder {
  color: rgb(82 82 82 / 0.25);
}

.placeholder-gray-600\/30::-moz-placeholder {
  color: rgb(82 82 82 / 0.3);
}

.placeholder-gray-600\/30::placeholder {
  color: rgb(82 82 82 / 0.3);
}

.placeholder-gray-600\/35::-moz-placeholder {
  color: rgb(82 82 82 / 0.35);
}

.placeholder-gray-600\/35::placeholder {
  color: rgb(82 82 82 / 0.35);
}

.placeholder-gray-600\/40::-moz-placeholder {
  color: rgb(82 82 82 / 0.4);
}

.placeholder-gray-600\/40::placeholder {
  color: rgb(82 82 82 / 0.4);
}

.placeholder-gray-600\/45::-moz-placeholder {
  color: rgb(82 82 82 / 0.45);
}

.placeholder-gray-600\/45::placeholder {
  color: rgb(82 82 82 / 0.45);
}

.placeholder-gray-600\/5::-moz-placeholder {
  color: rgb(82 82 82 / 0.05);
}

.placeholder-gray-600\/5::placeholder {
  color: rgb(82 82 82 / 0.05);
}

.placeholder-gray-600\/50::-moz-placeholder {
  color: rgb(82 82 82 / 0.5);
}

.placeholder-gray-600\/50::placeholder {
  color: rgb(82 82 82 / 0.5);
}

.placeholder-gray-600\/55::-moz-placeholder {
  color: rgb(82 82 82 / 0.55);
}

.placeholder-gray-600\/55::placeholder {
  color: rgb(82 82 82 / 0.55);
}

.placeholder-gray-600\/60::-moz-placeholder {
  color: rgb(82 82 82 / 0.6);
}

.placeholder-gray-600\/60::placeholder {
  color: rgb(82 82 82 / 0.6);
}

.placeholder-gray-600\/65::-moz-placeholder {
  color: rgb(82 82 82 / 0.65);
}

.placeholder-gray-600\/65::placeholder {
  color: rgb(82 82 82 / 0.65);
}

.placeholder-gray-600\/70::-moz-placeholder {
  color: rgb(82 82 82 / 0.7);
}

.placeholder-gray-600\/70::placeholder {
  color: rgb(82 82 82 / 0.7);
}

.placeholder-gray-600\/75::-moz-placeholder {
  color: rgb(82 82 82 / 0.75);
}

.placeholder-gray-600\/75::placeholder {
  color: rgb(82 82 82 / 0.75);
}

.placeholder-gray-600\/80::-moz-placeholder {
  color: rgb(82 82 82 / 0.8);
}

.placeholder-gray-600\/80::placeholder {
  color: rgb(82 82 82 / 0.8);
}

.placeholder-gray-600\/85::-moz-placeholder {
  color: rgb(82 82 82 / 0.85);
}

.placeholder-gray-600\/85::placeholder {
  color: rgb(82 82 82 / 0.85);
}

.placeholder-gray-600\/90::-moz-placeholder {
  color: rgb(82 82 82 / 0.9);
}

.placeholder-gray-600\/90::placeholder {
  color: rgb(82 82 82 / 0.9);
}

.placeholder-gray-600\/95::-moz-placeholder {
  color: rgb(82 82 82 / 0.95);
}

.placeholder-gray-600\/95::placeholder {
  color: rgb(82 82 82 / 0.95);
}

.placeholder-gray-700::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(64 64 64 / var(--tw-placeholder-opacity, 1));
}

.placeholder-gray-700::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(64 64 64 / var(--tw-placeholder-opacity, 1));
}

.placeholder-gray-700\/0::-moz-placeholder {
  color: rgb(64 64 64 / 0);
}

.placeholder-gray-700\/0::placeholder {
  color: rgb(64 64 64 / 0);
}

.placeholder-gray-700\/10::-moz-placeholder {
  color: rgb(64 64 64 / 0.1);
}

.placeholder-gray-700\/10::placeholder {
  color: rgb(64 64 64 / 0.1);
}

.placeholder-gray-700\/100::-moz-placeholder {
  color: rgb(64 64 64 / 1);
}

.placeholder-gray-700\/100::placeholder {
  color: rgb(64 64 64 / 1);
}

.placeholder-gray-700\/15::-moz-placeholder {
  color: rgb(64 64 64 / 0.15);
}

.placeholder-gray-700\/15::placeholder {
  color: rgb(64 64 64 / 0.15);
}

.placeholder-gray-700\/20::-moz-placeholder {
  color: rgb(64 64 64 / 0.2);
}

.placeholder-gray-700\/20::placeholder {
  color: rgb(64 64 64 / 0.2);
}

.placeholder-gray-700\/25::-moz-placeholder {
  color: rgb(64 64 64 / 0.25);
}

.placeholder-gray-700\/25::placeholder {
  color: rgb(64 64 64 / 0.25);
}

.placeholder-gray-700\/30::-moz-placeholder {
  color: rgb(64 64 64 / 0.3);
}

.placeholder-gray-700\/30::placeholder {
  color: rgb(64 64 64 / 0.3);
}

.placeholder-gray-700\/35::-moz-placeholder {
  color: rgb(64 64 64 / 0.35);
}

.placeholder-gray-700\/35::placeholder {
  color: rgb(64 64 64 / 0.35);
}

.placeholder-gray-700\/40::-moz-placeholder {
  color: rgb(64 64 64 / 0.4);
}

.placeholder-gray-700\/40::placeholder {
  color: rgb(64 64 64 / 0.4);
}

.placeholder-gray-700\/45::-moz-placeholder {
  color: rgb(64 64 64 / 0.45);
}

.placeholder-gray-700\/45::placeholder {
  color: rgb(64 64 64 / 0.45);
}

.placeholder-gray-700\/5::-moz-placeholder {
  color: rgb(64 64 64 / 0.05);
}

.placeholder-gray-700\/5::placeholder {
  color: rgb(64 64 64 / 0.05);
}

.placeholder-gray-700\/50::-moz-placeholder {
  color: rgb(64 64 64 / 0.5);
}

.placeholder-gray-700\/50::placeholder {
  color: rgb(64 64 64 / 0.5);
}

.placeholder-gray-700\/55::-moz-placeholder {
  color: rgb(64 64 64 / 0.55);
}

.placeholder-gray-700\/55::placeholder {
  color: rgb(64 64 64 / 0.55);
}

.placeholder-gray-700\/60::-moz-placeholder {
  color: rgb(64 64 64 / 0.6);
}

.placeholder-gray-700\/60::placeholder {
  color: rgb(64 64 64 / 0.6);
}

.placeholder-gray-700\/65::-moz-placeholder {
  color: rgb(64 64 64 / 0.65);
}

.placeholder-gray-700\/65::placeholder {
  color: rgb(64 64 64 / 0.65);
}

.placeholder-gray-700\/70::-moz-placeholder {
  color: rgb(64 64 64 / 0.7);
}

.placeholder-gray-700\/70::placeholder {
  color: rgb(64 64 64 / 0.7);
}

.placeholder-gray-700\/75::-moz-placeholder {
  color: rgb(64 64 64 / 0.75);
}

.placeholder-gray-700\/75::placeholder {
  color: rgb(64 64 64 / 0.75);
}

.placeholder-gray-700\/80::-moz-placeholder {
  color: rgb(64 64 64 / 0.8);
}

.placeholder-gray-700\/80::placeholder {
  color: rgb(64 64 64 / 0.8);
}

.placeholder-gray-700\/85::-moz-placeholder {
  color: rgb(64 64 64 / 0.85);
}

.placeholder-gray-700\/85::placeholder {
  color: rgb(64 64 64 / 0.85);
}

.placeholder-gray-700\/90::-moz-placeholder {
  color: rgb(64 64 64 / 0.9);
}

.placeholder-gray-700\/90::placeholder {
  color: rgb(64 64 64 / 0.9);
}

.placeholder-gray-700\/95::-moz-placeholder {
  color: rgb(64 64 64 / 0.95);
}

.placeholder-gray-700\/95::placeholder {
  color: rgb(64 64 64 / 0.95);
}

.placeholder-gray-800::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(38 38 38 / var(--tw-placeholder-opacity, 1));
}

.placeholder-gray-800::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(38 38 38 / var(--tw-placeholder-opacity, 1));
}

.placeholder-gray-800\/0::-moz-placeholder {
  color: rgb(38 38 38 / 0);
}

.placeholder-gray-800\/0::placeholder {
  color: rgb(38 38 38 / 0);
}

.placeholder-gray-800\/10::-moz-placeholder {
  color: rgb(38 38 38 / 0.1);
}

.placeholder-gray-800\/10::placeholder {
  color: rgb(38 38 38 / 0.1);
}

.placeholder-gray-800\/100::-moz-placeholder {
  color: rgb(38 38 38 / 1);
}

.placeholder-gray-800\/100::placeholder {
  color: rgb(38 38 38 / 1);
}

.placeholder-gray-800\/15::-moz-placeholder {
  color: rgb(38 38 38 / 0.15);
}

.placeholder-gray-800\/15::placeholder {
  color: rgb(38 38 38 / 0.15);
}

.placeholder-gray-800\/20::-moz-placeholder {
  color: rgb(38 38 38 / 0.2);
}

.placeholder-gray-800\/20::placeholder {
  color: rgb(38 38 38 / 0.2);
}

.placeholder-gray-800\/25::-moz-placeholder {
  color: rgb(38 38 38 / 0.25);
}

.placeholder-gray-800\/25::placeholder {
  color: rgb(38 38 38 / 0.25);
}

.placeholder-gray-800\/30::-moz-placeholder {
  color: rgb(38 38 38 / 0.3);
}

.placeholder-gray-800\/30::placeholder {
  color: rgb(38 38 38 / 0.3);
}

.placeholder-gray-800\/35::-moz-placeholder {
  color: rgb(38 38 38 / 0.35);
}

.placeholder-gray-800\/35::placeholder {
  color: rgb(38 38 38 / 0.35);
}

.placeholder-gray-800\/40::-moz-placeholder {
  color: rgb(38 38 38 / 0.4);
}

.placeholder-gray-800\/40::placeholder {
  color: rgb(38 38 38 / 0.4);
}

.placeholder-gray-800\/45::-moz-placeholder {
  color: rgb(38 38 38 / 0.45);
}

.placeholder-gray-800\/45::placeholder {
  color: rgb(38 38 38 / 0.45);
}

.placeholder-gray-800\/5::-moz-placeholder {
  color: rgb(38 38 38 / 0.05);
}

.placeholder-gray-800\/5::placeholder {
  color: rgb(38 38 38 / 0.05);
}

.placeholder-gray-800\/50::-moz-placeholder {
  color: rgb(38 38 38 / 0.5);
}

.placeholder-gray-800\/50::placeholder {
  color: rgb(38 38 38 / 0.5);
}

.placeholder-gray-800\/55::-moz-placeholder {
  color: rgb(38 38 38 / 0.55);
}

.placeholder-gray-800\/55::placeholder {
  color: rgb(38 38 38 / 0.55);
}

.placeholder-gray-800\/60::-moz-placeholder {
  color: rgb(38 38 38 / 0.6);
}

.placeholder-gray-800\/60::placeholder {
  color: rgb(38 38 38 / 0.6);
}

.placeholder-gray-800\/65::-moz-placeholder {
  color: rgb(38 38 38 / 0.65);
}

.placeholder-gray-800\/65::placeholder {
  color: rgb(38 38 38 / 0.65);
}

.placeholder-gray-800\/70::-moz-placeholder {
  color: rgb(38 38 38 / 0.7);
}

.placeholder-gray-800\/70::placeholder {
  color: rgb(38 38 38 / 0.7);
}

.placeholder-gray-800\/75::-moz-placeholder {
  color: rgb(38 38 38 / 0.75);
}

.placeholder-gray-800\/75::placeholder {
  color: rgb(38 38 38 / 0.75);
}

.placeholder-gray-800\/80::-moz-placeholder {
  color: rgb(38 38 38 / 0.8);
}

.placeholder-gray-800\/80::placeholder {
  color: rgb(38 38 38 / 0.8);
}

.placeholder-gray-800\/85::-moz-placeholder {
  color: rgb(38 38 38 / 0.85);
}

.placeholder-gray-800\/85::placeholder {
  color: rgb(38 38 38 / 0.85);
}

.placeholder-gray-800\/90::-moz-placeholder {
  color: rgb(38 38 38 / 0.9);
}

.placeholder-gray-800\/90::placeholder {
  color: rgb(38 38 38 / 0.9);
}

.placeholder-gray-800\/95::-moz-placeholder {
  color: rgb(38 38 38 / 0.95);
}

.placeholder-gray-800\/95::placeholder {
  color: rgb(38 38 38 / 0.95);
}

.placeholder-gray-900::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(23 23 23 / var(--tw-placeholder-opacity, 1));
}

.placeholder-gray-900::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(23 23 23 / var(--tw-placeholder-opacity, 1));
}

.placeholder-gray-900\/0::-moz-placeholder {
  color: rgb(23 23 23 / 0);
}

.placeholder-gray-900\/0::placeholder {
  color: rgb(23 23 23 / 0);
}

.placeholder-gray-900\/10::-moz-placeholder {
  color: rgb(23 23 23 / 0.1);
}

.placeholder-gray-900\/10::placeholder {
  color: rgb(23 23 23 / 0.1);
}

.placeholder-gray-900\/100::-moz-placeholder {
  color: rgb(23 23 23 / 1);
}

.placeholder-gray-900\/100::placeholder {
  color: rgb(23 23 23 / 1);
}

.placeholder-gray-900\/15::-moz-placeholder {
  color: rgb(23 23 23 / 0.15);
}

.placeholder-gray-900\/15::placeholder {
  color: rgb(23 23 23 / 0.15);
}

.placeholder-gray-900\/20::-moz-placeholder {
  color: rgb(23 23 23 / 0.2);
}

.placeholder-gray-900\/20::placeholder {
  color: rgb(23 23 23 / 0.2);
}

.placeholder-gray-900\/25::-moz-placeholder {
  color: rgb(23 23 23 / 0.25);
}

.placeholder-gray-900\/25::placeholder {
  color: rgb(23 23 23 / 0.25);
}

.placeholder-gray-900\/30::-moz-placeholder {
  color: rgb(23 23 23 / 0.3);
}

.placeholder-gray-900\/30::placeholder {
  color: rgb(23 23 23 / 0.3);
}

.placeholder-gray-900\/35::-moz-placeholder {
  color: rgb(23 23 23 / 0.35);
}

.placeholder-gray-900\/35::placeholder {
  color: rgb(23 23 23 / 0.35);
}

.placeholder-gray-900\/40::-moz-placeholder {
  color: rgb(23 23 23 / 0.4);
}

.placeholder-gray-900\/40::placeholder {
  color: rgb(23 23 23 / 0.4);
}

.placeholder-gray-900\/45::-moz-placeholder {
  color: rgb(23 23 23 / 0.45);
}

.placeholder-gray-900\/45::placeholder {
  color: rgb(23 23 23 / 0.45);
}

.placeholder-gray-900\/5::-moz-placeholder {
  color: rgb(23 23 23 / 0.05);
}

.placeholder-gray-900\/5::placeholder {
  color: rgb(23 23 23 / 0.05);
}

.placeholder-gray-900\/50::-moz-placeholder {
  color: rgb(23 23 23 / 0.5);
}

.placeholder-gray-900\/50::placeholder {
  color: rgb(23 23 23 / 0.5);
}

.placeholder-gray-900\/55::-moz-placeholder {
  color: rgb(23 23 23 / 0.55);
}

.placeholder-gray-900\/55::placeholder {
  color: rgb(23 23 23 / 0.55);
}

.placeholder-gray-900\/60::-moz-placeholder {
  color: rgb(23 23 23 / 0.6);
}

.placeholder-gray-900\/60::placeholder {
  color: rgb(23 23 23 / 0.6);
}

.placeholder-gray-900\/65::-moz-placeholder {
  color: rgb(23 23 23 / 0.65);
}

.placeholder-gray-900\/65::placeholder {
  color: rgb(23 23 23 / 0.65);
}

.placeholder-gray-900\/70::-moz-placeholder {
  color: rgb(23 23 23 / 0.7);
}

.placeholder-gray-900\/70::placeholder {
  color: rgb(23 23 23 / 0.7);
}

.placeholder-gray-900\/75::-moz-placeholder {
  color: rgb(23 23 23 / 0.75);
}

.placeholder-gray-900\/75::placeholder {
  color: rgb(23 23 23 / 0.75);
}

.placeholder-gray-900\/80::-moz-placeholder {
  color: rgb(23 23 23 / 0.8);
}

.placeholder-gray-900\/80::placeholder {
  color: rgb(23 23 23 / 0.8);
}

.placeholder-gray-900\/85::-moz-placeholder {
  color: rgb(23 23 23 / 0.85);
}

.placeholder-gray-900\/85::placeholder {
  color: rgb(23 23 23 / 0.85);
}

.placeholder-gray-900\/90::-moz-placeholder {
  color: rgb(23 23 23 / 0.9);
}

.placeholder-gray-900\/90::placeholder {
  color: rgb(23 23 23 / 0.9);
}

.placeholder-gray-900\/95::-moz-placeholder {
  color: rgb(23 23 23 / 0.95);
}

.placeholder-gray-900\/95::placeholder {
  color: rgb(23 23 23 / 0.95);
}

.placeholder-gray-950::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(10 10 10 / var(--tw-placeholder-opacity, 1));
}

.placeholder-gray-950::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(10 10 10 / var(--tw-placeholder-opacity, 1));
}

.placeholder-gray-950\/0::-moz-placeholder {
  color: rgb(10 10 10 / 0);
}

.placeholder-gray-950\/0::placeholder {
  color: rgb(10 10 10 / 0);
}

.placeholder-gray-950\/10::-moz-placeholder {
  color: rgb(10 10 10 / 0.1);
}

.placeholder-gray-950\/10::placeholder {
  color: rgb(10 10 10 / 0.1);
}

.placeholder-gray-950\/100::-moz-placeholder {
  color: rgb(10 10 10 / 1);
}

.placeholder-gray-950\/100::placeholder {
  color: rgb(10 10 10 / 1);
}

.placeholder-gray-950\/15::-moz-placeholder {
  color: rgb(10 10 10 / 0.15);
}

.placeholder-gray-950\/15::placeholder {
  color: rgb(10 10 10 / 0.15);
}

.placeholder-gray-950\/20::-moz-placeholder {
  color: rgb(10 10 10 / 0.2);
}

.placeholder-gray-950\/20::placeholder {
  color: rgb(10 10 10 / 0.2);
}

.placeholder-gray-950\/25::-moz-placeholder {
  color: rgb(10 10 10 / 0.25);
}

.placeholder-gray-950\/25::placeholder {
  color: rgb(10 10 10 / 0.25);
}

.placeholder-gray-950\/30::-moz-placeholder {
  color: rgb(10 10 10 / 0.3);
}

.placeholder-gray-950\/30::placeholder {
  color: rgb(10 10 10 / 0.3);
}

.placeholder-gray-950\/35::-moz-placeholder {
  color: rgb(10 10 10 / 0.35);
}

.placeholder-gray-950\/35::placeholder {
  color: rgb(10 10 10 / 0.35);
}

.placeholder-gray-950\/40::-moz-placeholder {
  color: rgb(10 10 10 / 0.4);
}

.placeholder-gray-950\/40::placeholder {
  color: rgb(10 10 10 / 0.4);
}

.placeholder-gray-950\/45::-moz-placeholder {
  color: rgb(10 10 10 / 0.45);
}

.placeholder-gray-950\/45::placeholder {
  color: rgb(10 10 10 / 0.45);
}

.placeholder-gray-950\/5::-moz-placeholder {
  color: rgb(10 10 10 / 0.05);
}

.placeholder-gray-950\/5::placeholder {
  color: rgb(10 10 10 / 0.05);
}

.placeholder-gray-950\/50::-moz-placeholder {
  color: rgb(10 10 10 / 0.5);
}

.placeholder-gray-950\/50::placeholder {
  color: rgb(10 10 10 / 0.5);
}

.placeholder-gray-950\/55::-moz-placeholder {
  color: rgb(10 10 10 / 0.55);
}

.placeholder-gray-950\/55::placeholder {
  color: rgb(10 10 10 / 0.55);
}

.placeholder-gray-950\/60::-moz-placeholder {
  color: rgb(10 10 10 / 0.6);
}

.placeholder-gray-950\/60::placeholder {
  color: rgb(10 10 10 / 0.6);
}

.placeholder-gray-950\/65::-moz-placeholder {
  color: rgb(10 10 10 / 0.65);
}

.placeholder-gray-950\/65::placeholder {
  color: rgb(10 10 10 / 0.65);
}

.placeholder-gray-950\/70::-moz-placeholder {
  color: rgb(10 10 10 / 0.7);
}

.placeholder-gray-950\/70::placeholder {
  color: rgb(10 10 10 / 0.7);
}

.placeholder-gray-950\/75::-moz-placeholder {
  color: rgb(10 10 10 / 0.75);
}

.placeholder-gray-950\/75::placeholder {
  color: rgb(10 10 10 / 0.75);
}

.placeholder-gray-950\/80::-moz-placeholder {
  color: rgb(10 10 10 / 0.8);
}

.placeholder-gray-950\/80::placeholder {
  color: rgb(10 10 10 / 0.8);
}

.placeholder-gray-950\/85::-moz-placeholder {
  color: rgb(10 10 10 / 0.85);
}

.placeholder-gray-950\/85::placeholder {
  color: rgb(10 10 10 / 0.85);
}

.placeholder-gray-950\/90::-moz-placeholder {
  color: rgb(10 10 10 / 0.9);
}

.placeholder-gray-950\/90::placeholder {
  color: rgb(10 10 10 / 0.9);
}

.placeholder-gray-950\/95::-moz-placeholder {
  color: rgb(10 10 10 / 0.95);
}

.placeholder-gray-950\/95::placeholder {
  color: rgb(10 10 10 / 0.95);
}

.placeholder-green-100::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(220 252 231 / var(--tw-placeholder-opacity, 1));
}

.placeholder-green-100::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(220 252 231 / var(--tw-placeholder-opacity, 1));
}

.placeholder-green-100\/0::-moz-placeholder {
  color: rgb(220 252 231 / 0);
}

.placeholder-green-100\/0::placeholder {
  color: rgb(220 252 231 / 0);
}

.placeholder-green-100\/10::-moz-placeholder {
  color: rgb(220 252 231 / 0.1);
}

.placeholder-green-100\/10::placeholder {
  color: rgb(220 252 231 / 0.1);
}

.placeholder-green-100\/100::-moz-placeholder {
  color: rgb(220 252 231 / 1);
}

.placeholder-green-100\/100::placeholder {
  color: rgb(220 252 231 / 1);
}

.placeholder-green-100\/15::-moz-placeholder {
  color: rgb(220 252 231 / 0.15);
}

.placeholder-green-100\/15::placeholder {
  color: rgb(220 252 231 / 0.15);
}

.placeholder-green-100\/20::-moz-placeholder {
  color: rgb(220 252 231 / 0.2);
}

.placeholder-green-100\/20::placeholder {
  color: rgb(220 252 231 / 0.2);
}

.placeholder-green-100\/25::-moz-placeholder {
  color: rgb(220 252 231 / 0.25);
}

.placeholder-green-100\/25::placeholder {
  color: rgb(220 252 231 / 0.25);
}

.placeholder-green-100\/30::-moz-placeholder {
  color: rgb(220 252 231 / 0.3);
}

.placeholder-green-100\/30::placeholder {
  color: rgb(220 252 231 / 0.3);
}

.placeholder-green-100\/35::-moz-placeholder {
  color: rgb(220 252 231 / 0.35);
}

.placeholder-green-100\/35::placeholder {
  color: rgb(220 252 231 / 0.35);
}

.placeholder-green-100\/40::-moz-placeholder {
  color: rgb(220 252 231 / 0.4);
}

.placeholder-green-100\/40::placeholder {
  color: rgb(220 252 231 / 0.4);
}

.placeholder-green-100\/45::-moz-placeholder {
  color: rgb(220 252 231 / 0.45);
}

.placeholder-green-100\/45::placeholder {
  color: rgb(220 252 231 / 0.45);
}

.placeholder-green-100\/5::-moz-placeholder {
  color: rgb(220 252 231 / 0.05);
}

.placeholder-green-100\/5::placeholder {
  color: rgb(220 252 231 / 0.05);
}

.placeholder-green-100\/50::-moz-placeholder {
  color: rgb(220 252 231 / 0.5);
}

.placeholder-green-100\/50::placeholder {
  color: rgb(220 252 231 / 0.5);
}

.placeholder-green-100\/55::-moz-placeholder {
  color: rgb(220 252 231 / 0.55);
}

.placeholder-green-100\/55::placeholder {
  color: rgb(220 252 231 / 0.55);
}

.placeholder-green-100\/60::-moz-placeholder {
  color: rgb(220 252 231 / 0.6);
}

.placeholder-green-100\/60::placeholder {
  color: rgb(220 252 231 / 0.6);
}

.placeholder-green-100\/65::-moz-placeholder {
  color: rgb(220 252 231 / 0.65);
}

.placeholder-green-100\/65::placeholder {
  color: rgb(220 252 231 / 0.65);
}

.placeholder-green-100\/70::-moz-placeholder {
  color: rgb(220 252 231 / 0.7);
}

.placeholder-green-100\/70::placeholder {
  color: rgb(220 252 231 / 0.7);
}

.placeholder-green-100\/75::-moz-placeholder {
  color: rgb(220 252 231 / 0.75);
}

.placeholder-green-100\/75::placeholder {
  color: rgb(220 252 231 / 0.75);
}

.placeholder-green-100\/80::-moz-placeholder {
  color: rgb(220 252 231 / 0.8);
}

.placeholder-green-100\/80::placeholder {
  color: rgb(220 252 231 / 0.8);
}

.placeholder-green-100\/85::-moz-placeholder {
  color: rgb(220 252 231 / 0.85);
}

.placeholder-green-100\/85::placeholder {
  color: rgb(220 252 231 / 0.85);
}

.placeholder-green-100\/90::-moz-placeholder {
  color: rgb(220 252 231 / 0.9);
}

.placeholder-green-100\/90::placeholder {
  color: rgb(220 252 231 / 0.9);
}

.placeholder-green-100\/95::-moz-placeholder {
  color: rgb(220 252 231 / 0.95);
}

.placeholder-green-100\/95::placeholder {
  color: rgb(220 252 231 / 0.95);
}

.placeholder-green-200::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(187 247 208 / var(--tw-placeholder-opacity, 1));
}

.placeholder-green-200::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(187 247 208 / var(--tw-placeholder-opacity, 1));
}

.placeholder-green-200\/0::-moz-placeholder {
  color: rgb(187 247 208 / 0);
}

.placeholder-green-200\/0::placeholder {
  color: rgb(187 247 208 / 0);
}

.placeholder-green-200\/10::-moz-placeholder {
  color: rgb(187 247 208 / 0.1);
}

.placeholder-green-200\/10::placeholder {
  color: rgb(187 247 208 / 0.1);
}

.placeholder-green-200\/100::-moz-placeholder {
  color: rgb(187 247 208 / 1);
}

.placeholder-green-200\/100::placeholder {
  color: rgb(187 247 208 / 1);
}

.placeholder-green-200\/15::-moz-placeholder {
  color: rgb(187 247 208 / 0.15);
}

.placeholder-green-200\/15::placeholder {
  color: rgb(187 247 208 / 0.15);
}

.placeholder-green-200\/20::-moz-placeholder {
  color: rgb(187 247 208 / 0.2);
}

.placeholder-green-200\/20::placeholder {
  color: rgb(187 247 208 / 0.2);
}

.placeholder-green-200\/25::-moz-placeholder {
  color: rgb(187 247 208 / 0.25);
}

.placeholder-green-200\/25::placeholder {
  color: rgb(187 247 208 / 0.25);
}

.placeholder-green-200\/30::-moz-placeholder {
  color: rgb(187 247 208 / 0.3);
}

.placeholder-green-200\/30::placeholder {
  color: rgb(187 247 208 / 0.3);
}

.placeholder-green-200\/35::-moz-placeholder {
  color: rgb(187 247 208 / 0.35);
}

.placeholder-green-200\/35::placeholder {
  color: rgb(187 247 208 / 0.35);
}

.placeholder-green-200\/40::-moz-placeholder {
  color: rgb(187 247 208 / 0.4);
}

.placeholder-green-200\/40::placeholder {
  color: rgb(187 247 208 / 0.4);
}

.placeholder-green-200\/45::-moz-placeholder {
  color: rgb(187 247 208 / 0.45);
}

.placeholder-green-200\/45::placeholder {
  color: rgb(187 247 208 / 0.45);
}

.placeholder-green-200\/5::-moz-placeholder {
  color: rgb(187 247 208 / 0.05);
}

.placeholder-green-200\/5::placeholder {
  color: rgb(187 247 208 / 0.05);
}

.placeholder-green-200\/50::-moz-placeholder {
  color: rgb(187 247 208 / 0.5);
}

.placeholder-green-200\/50::placeholder {
  color: rgb(187 247 208 / 0.5);
}

.placeholder-green-200\/55::-moz-placeholder {
  color: rgb(187 247 208 / 0.55);
}

.placeholder-green-200\/55::placeholder {
  color: rgb(187 247 208 / 0.55);
}

.placeholder-green-200\/60::-moz-placeholder {
  color: rgb(187 247 208 / 0.6);
}

.placeholder-green-200\/60::placeholder {
  color: rgb(187 247 208 / 0.6);
}

.placeholder-green-200\/65::-moz-placeholder {
  color: rgb(187 247 208 / 0.65);
}

.placeholder-green-200\/65::placeholder {
  color: rgb(187 247 208 / 0.65);
}

.placeholder-green-200\/70::-moz-placeholder {
  color: rgb(187 247 208 / 0.7);
}

.placeholder-green-200\/70::placeholder {
  color: rgb(187 247 208 / 0.7);
}

.placeholder-green-200\/75::-moz-placeholder {
  color: rgb(187 247 208 / 0.75);
}

.placeholder-green-200\/75::placeholder {
  color: rgb(187 247 208 / 0.75);
}

.placeholder-green-200\/80::-moz-placeholder {
  color: rgb(187 247 208 / 0.8);
}

.placeholder-green-200\/80::placeholder {
  color: rgb(187 247 208 / 0.8);
}

.placeholder-green-200\/85::-moz-placeholder {
  color: rgb(187 247 208 / 0.85);
}

.placeholder-green-200\/85::placeholder {
  color: rgb(187 247 208 / 0.85);
}

.placeholder-green-200\/90::-moz-placeholder {
  color: rgb(187 247 208 / 0.9);
}

.placeholder-green-200\/90::placeholder {
  color: rgb(187 247 208 / 0.9);
}

.placeholder-green-200\/95::-moz-placeholder {
  color: rgb(187 247 208 / 0.95);
}

.placeholder-green-200\/95::placeholder {
  color: rgb(187 247 208 / 0.95);
}

.placeholder-green-300::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(134 239 172 / var(--tw-placeholder-opacity, 1));
}

.placeholder-green-300::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(134 239 172 / var(--tw-placeholder-opacity, 1));
}

.placeholder-green-300\/0::-moz-placeholder {
  color: rgb(134 239 172 / 0);
}

.placeholder-green-300\/0::placeholder {
  color: rgb(134 239 172 / 0);
}

.placeholder-green-300\/10::-moz-placeholder {
  color: rgb(134 239 172 / 0.1);
}

.placeholder-green-300\/10::placeholder {
  color: rgb(134 239 172 / 0.1);
}

.placeholder-green-300\/100::-moz-placeholder {
  color: rgb(134 239 172 / 1);
}

.placeholder-green-300\/100::placeholder {
  color: rgb(134 239 172 / 1);
}

.placeholder-green-300\/15::-moz-placeholder {
  color: rgb(134 239 172 / 0.15);
}

.placeholder-green-300\/15::placeholder {
  color: rgb(134 239 172 / 0.15);
}

.placeholder-green-300\/20::-moz-placeholder {
  color: rgb(134 239 172 / 0.2);
}

.placeholder-green-300\/20::placeholder {
  color: rgb(134 239 172 / 0.2);
}

.placeholder-green-300\/25::-moz-placeholder {
  color: rgb(134 239 172 / 0.25);
}

.placeholder-green-300\/25::placeholder {
  color: rgb(134 239 172 / 0.25);
}

.placeholder-green-300\/30::-moz-placeholder {
  color: rgb(134 239 172 / 0.3);
}

.placeholder-green-300\/30::placeholder {
  color: rgb(134 239 172 / 0.3);
}

.placeholder-green-300\/35::-moz-placeholder {
  color: rgb(134 239 172 / 0.35);
}

.placeholder-green-300\/35::placeholder {
  color: rgb(134 239 172 / 0.35);
}

.placeholder-green-300\/40::-moz-placeholder {
  color: rgb(134 239 172 / 0.4);
}

.placeholder-green-300\/40::placeholder {
  color: rgb(134 239 172 / 0.4);
}

.placeholder-green-300\/45::-moz-placeholder {
  color: rgb(134 239 172 / 0.45);
}

.placeholder-green-300\/45::placeholder {
  color: rgb(134 239 172 / 0.45);
}

.placeholder-green-300\/5::-moz-placeholder {
  color: rgb(134 239 172 / 0.05);
}

.placeholder-green-300\/5::placeholder {
  color: rgb(134 239 172 / 0.05);
}

.placeholder-green-300\/50::-moz-placeholder {
  color: rgb(134 239 172 / 0.5);
}

.placeholder-green-300\/50::placeholder {
  color: rgb(134 239 172 / 0.5);
}

.placeholder-green-300\/55::-moz-placeholder {
  color: rgb(134 239 172 / 0.55);
}

.placeholder-green-300\/55::placeholder {
  color: rgb(134 239 172 / 0.55);
}

.placeholder-green-300\/60::-moz-placeholder {
  color: rgb(134 239 172 / 0.6);
}

.placeholder-green-300\/60::placeholder {
  color: rgb(134 239 172 / 0.6);
}

.placeholder-green-300\/65::-moz-placeholder {
  color: rgb(134 239 172 / 0.65);
}

.placeholder-green-300\/65::placeholder {
  color: rgb(134 239 172 / 0.65);
}

.placeholder-green-300\/70::-moz-placeholder {
  color: rgb(134 239 172 / 0.7);
}

.placeholder-green-300\/70::placeholder {
  color: rgb(134 239 172 / 0.7);
}

.placeholder-green-300\/75::-moz-placeholder {
  color: rgb(134 239 172 / 0.75);
}

.placeholder-green-300\/75::placeholder {
  color: rgb(134 239 172 / 0.75);
}

.placeholder-green-300\/80::-moz-placeholder {
  color: rgb(134 239 172 / 0.8);
}

.placeholder-green-300\/80::placeholder {
  color: rgb(134 239 172 / 0.8);
}

.placeholder-green-300\/85::-moz-placeholder {
  color: rgb(134 239 172 / 0.85);
}

.placeholder-green-300\/85::placeholder {
  color: rgb(134 239 172 / 0.85);
}

.placeholder-green-300\/90::-moz-placeholder {
  color: rgb(134 239 172 / 0.9);
}

.placeholder-green-300\/90::placeholder {
  color: rgb(134 239 172 / 0.9);
}

.placeholder-green-300\/95::-moz-placeholder {
  color: rgb(134 239 172 / 0.95);
}

.placeholder-green-300\/95::placeholder {
  color: rgb(134 239 172 / 0.95);
}

.placeholder-green-400::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(74 222 128 / var(--tw-placeholder-opacity, 1));
}

.placeholder-green-400::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(74 222 128 / var(--tw-placeholder-opacity, 1));
}

.placeholder-green-400\/0::-moz-placeholder {
  color: rgb(74 222 128 / 0);
}

.placeholder-green-400\/0::placeholder {
  color: rgb(74 222 128 / 0);
}

.placeholder-green-400\/10::-moz-placeholder {
  color: rgb(74 222 128 / 0.1);
}

.placeholder-green-400\/10::placeholder {
  color: rgb(74 222 128 / 0.1);
}

.placeholder-green-400\/100::-moz-placeholder {
  color: rgb(74 222 128 / 1);
}

.placeholder-green-400\/100::placeholder {
  color: rgb(74 222 128 / 1);
}

.placeholder-green-400\/15::-moz-placeholder {
  color: rgb(74 222 128 / 0.15);
}

.placeholder-green-400\/15::placeholder {
  color: rgb(74 222 128 / 0.15);
}

.placeholder-green-400\/20::-moz-placeholder {
  color: rgb(74 222 128 / 0.2);
}

.placeholder-green-400\/20::placeholder {
  color: rgb(74 222 128 / 0.2);
}

.placeholder-green-400\/25::-moz-placeholder {
  color: rgb(74 222 128 / 0.25);
}

.placeholder-green-400\/25::placeholder {
  color: rgb(74 222 128 / 0.25);
}

.placeholder-green-400\/30::-moz-placeholder {
  color: rgb(74 222 128 / 0.3);
}

.placeholder-green-400\/30::placeholder {
  color: rgb(74 222 128 / 0.3);
}

.placeholder-green-400\/35::-moz-placeholder {
  color: rgb(74 222 128 / 0.35);
}

.placeholder-green-400\/35::placeholder {
  color: rgb(74 222 128 / 0.35);
}

.placeholder-green-400\/40::-moz-placeholder {
  color: rgb(74 222 128 / 0.4);
}

.placeholder-green-400\/40::placeholder {
  color: rgb(74 222 128 / 0.4);
}

.placeholder-green-400\/45::-moz-placeholder {
  color: rgb(74 222 128 / 0.45);
}

.placeholder-green-400\/45::placeholder {
  color: rgb(74 222 128 / 0.45);
}

.placeholder-green-400\/5::-moz-placeholder {
  color: rgb(74 222 128 / 0.05);
}

.placeholder-green-400\/5::placeholder {
  color: rgb(74 222 128 / 0.05);
}

.placeholder-green-400\/50::-moz-placeholder {
  color: rgb(74 222 128 / 0.5);
}

.placeholder-green-400\/50::placeholder {
  color: rgb(74 222 128 / 0.5);
}

.placeholder-green-400\/55::-moz-placeholder {
  color: rgb(74 222 128 / 0.55);
}

.placeholder-green-400\/55::placeholder {
  color: rgb(74 222 128 / 0.55);
}

.placeholder-green-400\/60::-moz-placeholder {
  color: rgb(74 222 128 / 0.6);
}

.placeholder-green-400\/60::placeholder {
  color: rgb(74 222 128 / 0.6);
}

.placeholder-green-400\/65::-moz-placeholder {
  color: rgb(74 222 128 / 0.65);
}

.placeholder-green-400\/65::placeholder {
  color: rgb(74 222 128 / 0.65);
}

.placeholder-green-400\/70::-moz-placeholder {
  color: rgb(74 222 128 / 0.7);
}

.placeholder-green-400\/70::placeholder {
  color: rgb(74 222 128 / 0.7);
}

.placeholder-green-400\/75::-moz-placeholder {
  color: rgb(74 222 128 / 0.75);
}

.placeholder-green-400\/75::placeholder {
  color: rgb(74 222 128 / 0.75);
}

.placeholder-green-400\/80::-moz-placeholder {
  color: rgb(74 222 128 / 0.8);
}

.placeholder-green-400\/80::placeholder {
  color: rgb(74 222 128 / 0.8);
}

.placeholder-green-400\/85::-moz-placeholder {
  color: rgb(74 222 128 / 0.85);
}

.placeholder-green-400\/85::placeholder {
  color: rgb(74 222 128 / 0.85);
}

.placeholder-green-400\/90::-moz-placeholder {
  color: rgb(74 222 128 / 0.9);
}

.placeholder-green-400\/90::placeholder {
  color: rgb(74 222 128 / 0.9);
}

.placeholder-green-400\/95::-moz-placeholder {
  color: rgb(74 222 128 / 0.95);
}

.placeholder-green-400\/95::placeholder {
  color: rgb(74 222 128 / 0.95);
}

.placeholder-green-50::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(240 253 244 / var(--tw-placeholder-opacity, 1));
}

.placeholder-green-50::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(240 253 244 / var(--tw-placeholder-opacity, 1));
}

.placeholder-green-50\/0::-moz-placeholder {
  color: rgb(240 253 244 / 0);
}

.placeholder-green-50\/0::placeholder {
  color: rgb(240 253 244 / 0);
}

.placeholder-green-50\/10::-moz-placeholder {
  color: rgb(240 253 244 / 0.1);
}

.placeholder-green-50\/10::placeholder {
  color: rgb(240 253 244 / 0.1);
}

.placeholder-green-50\/100::-moz-placeholder {
  color: rgb(240 253 244 / 1);
}

.placeholder-green-50\/100::placeholder {
  color: rgb(240 253 244 / 1);
}

.placeholder-green-50\/15::-moz-placeholder {
  color: rgb(240 253 244 / 0.15);
}

.placeholder-green-50\/15::placeholder {
  color: rgb(240 253 244 / 0.15);
}

.placeholder-green-50\/20::-moz-placeholder {
  color: rgb(240 253 244 / 0.2);
}

.placeholder-green-50\/20::placeholder {
  color: rgb(240 253 244 / 0.2);
}

.placeholder-green-50\/25::-moz-placeholder {
  color: rgb(240 253 244 / 0.25);
}

.placeholder-green-50\/25::placeholder {
  color: rgb(240 253 244 / 0.25);
}

.placeholder-green-50\/30::-moz-placeholder {
  color: rgb(240 253 244 / 0.3);
}

.placeholder-green-50\/30::placeholder {
  color: rgb(240 253 244 / 0.3);
}

.placeholder-green-50\/35::-moz-placeholder {
  color: rgb(240 253 244 / 0.35);
}

.placeholder-green-50\/35::placeholder {
  color: rgb(240 253 244 / 0.35);
}

.placeholder-green-50\/40::-moz-placeholder {
  color: rgb(240 253 244 / 0.4);
}

.placeholder-green-50\/40::placeholder {
  color: rgb(240 253 244 / 0.4);
}

.placeholder-green-50\/45::-moz-placeholder {
  color: rgb(240 253 244 / 0.45);
}

.placeholder-green-50\/45::placeholder {
  color: rgb(240 253 244 / 0.45);
}

.placeholder-green-50\/5::-moz-placeholder {
  color: rgb(240 253 244 / 0.05);
}

.placeholder-green-50\/5::placeholder {
  color: rgb(240 253 244 / 0.05);
}

.placeholder-green-50\/50::-moz-placeholder {
  color: rgb(240 253 244 / 0.5);
}

.placeholder-green-50\/50::placeholder {
  color: rgb(240 253 244 / 0.5);
}

.placeholder-green-50\/55::-moz-placeholder {
  color: rgb(240 253 244 / 0.55);
}

.placeholder-green-50\/55::placeholder {
  color: rgb(240 253 244 / 0.55);
}

.placeholder-green-50\/60::-moz-placeholder {
  color: rgb(240 253 244 / 0.6);
}

.placeholder-green-50\/60::placeholder {
  color: rgb(240 253 244 / 0.6);
}

.placeholder-green-50\/65::-moz-placeholder {
  color: rgb(240 253 244 / 0.65);
}

.placeholder-green-50\/65::placeholder {
  color: rgb(240 253 244 / 0.65);
}

.placeholder-green-50\/70::-moz-placeholder {
  color: rgb(240 253 244 / 0.7);
}

.placeholder-green-50\/70::placeholder {
  color: rgb(240 253 244 / 0.7);
}

.placeholder-green-50\/75::-moz-placeholder {
  color: rgb(240 253 244 / 0.75);
}

.placeholder-green-50\/75::placeholder {
  color: rgb(240 253 244 / 0.75);
}

.placeholder-green-50\/80::-moz-placeholder {
  color: rgb(240 253 244 / 0.8);
}

.placeholder-green-50\/80::placeholder {
  color: rgb(240 253 244 / 0.8);
}

.placeholder-green-50\/85::-moz-placeholder {
  color: rgb(240 253 244 / 0.85);
}

.placeholder-green-50\/85::placeholder {
  color: rgb(240 253 244 / 0.85);
}

.placeholder-green-50\/90::-moz-placeholder {
  color: rgb(240 253 244 / 0.9);
}

.placeholder-green-50\/90::placeholder {
  color: rgb(240 253 244 / 0.9);
}

.placeholder-green-50\/95::-moz-placeholder {
  color: rgb(240 253 244 / 0.95);
}

.placeholder-green-50\/95::placeholder {
  color: rgb(240 253 244 / 0.95);
}

.placeholder-green-500::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(34 197 94 / var(--tw-placeholder-opacity, 1));
}

.placeholder-green-500::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(34 197 94 / var(--tw-placeholder-opacity, 1));
}

.placeholder-green-500\/0::-moz-placeholder {
  color: rgb(34 197 94 / 0);
}

.placeholder-green-500\/0::placeholder {
  color: rgb(34 197 94 / 0);
}

.placeholder-green-500\/10::-moz-placeholder {
  color: rgb(34 197 94 / 0.1);
}

.placeholder-green-500\/10::placeholder {
  color: rgb(34 197 94 / 0.1);
}

.placeholder-green-500\/100::-moz-placeholder {
  color: rgb(34 197 94 / 1);
}

.placeholder-green-500\/100::placeholder {
  color: rgb(34 197 94 / 1);
}

.placeholder-green-500\/15::-moz-placeholder {
  color: rgb(34 197 94 / 0.15);
}

.placeholder-green-500\/15::placeholder {
  color: rgb(34 197 94 / 0.15);
}

.placeholder-green-500\/20::-moz-placeholder {
  color: rgb(34 197 94 / 0.2);
}

.placeholder-green-500\/20::placeholder {
  color: rgb(34 197 94 / 0.2);
}

.placeholder-green-500\/25::-moz-placeholder {
  color: rgb(34 197 94 / 0.25);
}

.placeholder-green-500\/25::placeholder {
  color: rgb(34 197 94 / 0.25);
}

.placeholder-green-500\/30::-moz-placeholder {
  color: rgb(34 197 94 / 0.3);
}

.placeholder-green-500\/30::placeholder {
  color: rgb(34 197 94 / 0.3);
}

.placeholder-green-500\/35::-moz-placeholder {
  color: rgb(34 197 94 / 0.35);
}

.placeholder-green-500\/35::placeholder {
  color: rgb(34 197 94 / 0.35);
}

.placeholder-green-500\/40::-moz-placeholder {
  color: rgb(34 197 94 / 0.4);
}

.placeholder-green-500\/40::placeholder {
  color: rgb(34 197 94 / 0.4);
}

.placeholder-green-500\/45::-moz-placeholder {
  color: rgb(34 197 94 / 0.45);
}

.placeholder-green-500\/45::placeholder {
  color: rgb(34 197 94 / 0.45);
}

.placeholder-green-500\/5::-moz-placeholder {
  color: rgb(34 197 94 / 0.05);
}

.placeholder-green-500\/5::placeholder {
  color: rgb(34 197 94 / 0.05);
}

.placeholder-green-500\/50::-moz-placeholder {
  color: rgb(34 197 94 / 0.5);
}

.placeholder-green-500\/50::placeholder {
  color: rgb(34 197 94 / 0.5);
}

.placeholder-green-500\/55::-moz-placeholder {
  color: rgb(34 197 94 / 0.55);
}

.placeholder-green-500\/55::placeholder {
  color: rgb(34 197 94 / 0.55);
}

.placeholder-green-500\/60::-moz-placeholder {
  color: rgb(34 197 94 / 0.6);
}

.placeholder-green-500\/60::placeholder {
  color: rgb(34 197 94 / 0.6);
}

.placeholder-green-500\/65::-moz-placeholder {
  color: rgb(34 197 94 / 0.65);
}

.placeholder-green-500\/65::placeholder {
  color: rgb(34 197 94 / 0.65);
}

.placeholder-green-500\/70::-moz-placeholder {
  color: rgb(34 197 94 / 0.7);
}

.placeholder-green-500\/70::placeholder {
  color: rgb(34 197 94 / 0.7);
}

.placeholder-green-500\/75::-moz-placeholder {
  color: rgb(34 197 94 / 0.75);
}

.placeholder-green-500\/75::placeholder {
  color: rgb(34 197 94 / 0.75);
}

.placeholder-green-500\/80::-moz-placeholder {
  color: rgb(34 197 94 / 0.8);
}

.placeholder-green-500\/80::placeholder {
  color: rgb(34 197 94 / 0.8);
}

.placeholder-green-500\/85::-moz-placeholder {
  color: rgb(34 197 94 / 0.85);
}

.placeholder-green-500\/85::placeholder {
  color: rgb(34 197 94 / 0.85);
}

.placeholder-green-500\/90::-moz-placeholder {
  color: rgb(34 197 94 / 0.9);
}

.placeholder-green-500\/90::placeholder {
  color: rgb(34 197 94 / 0.9);
}

.placeholder-green-500\/95::-moz-placeholder {
  color: rgb(34 197 94 / 0.95);
}

.placeholder-green-500\/95::placeholder {
  color: rgb(34 197 94 / 0.95);
}

.placeholder-green-600::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(22 163 74 / var(--tw-placeholder-opacity, 1));
}

.placeholder-green-600::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(22 163 74 / var(--tw-placeholder-opacity, 1));
}

.placeholder-green-600\/0::-moz-placeholder {
  color: rgb(22 163 74 / 0);
}

.placeholder-green-600\/0::placeholder {
  color: rgb(22 163 74 / 0);
}

.placeholder-green-600\/10::-moz-placeholder {
  color: rgb(22 163 74 / 0.1);
}

.placeholder-green-600\/10::placeholder {
  color: rgb(22 163 74 / 0.1);
}

.placeholder-green-600\/100::-moz-placeholder {
  color: rgb(22 163 74 / 1);
}

.placeholder-green-600\/100::placeholder {
  color: rgb(22 163 74 / 1);
}

.placeholder-green-600\/15::-moz-placeholder {
  color: rgb(22 163 74 / 0.15);
}

.placeholder-green-600\/15::placeholder {
  color: rgb(22 163 74 / 0.15);
}

.placeholder-green-600\/20::-moz-placeholder {
  color: rgb(22 163 74 / 0.2);
}

.placeholder-green-600\/20::placeholder {
  color: rgb(22 163 74 / 0.2);
}

.placeholder-green-600\/25::-moz-placeholder {
  color: rgb(22 163 74 / 0.25);
}

.placeholder-green-600\/25::placeholder {
  color: rgb(22 163 74 / 0.25);
}

.placeholder-green-600\/30::-moz-placeholder {
  color: rgb(22 163 74 / 0.3);
}

.placeholder-green-600\/30::placeholder {
  color: rgb(22 163 74 / 0.3);
}

.placeholder-green-600\/35::-moz-placeholder {
  color: rgb(22 163 74 / 0.35);
}

.placeholder-green-600\/35::placeholder {
  color: rgb(22 163 74 / 0.35);
}

.placeholder-green-600\/40::-moz-placeholder {
  color: rgb(22 163 74 / 0.4);
}

.placeholder-green-600\/40::placeholder {
  color: rgb(22 163 74 / 0.4);
}

.placeholder-green-600\/45::-moz-placeholder {
  color: rgb(22 163 74 / 0.45);
}

.placeholder-green-600\/45::placeholder {
  color: rgb(22 163 74 / 0.45);
}

.placeholder-green-600\/5::-moz-placeholder {
  color: rgb(22 163 74 / 0.05);
}

.placeholder-green-600\/5::placeholder {
  color: rgb(22 163 74 / 0.05);
}

.placeholder-green-600\/50::-moz-placeholder {
  color: rgb(22 163 74 / 0.5);
}

.placeholder-green-600\/50::placeholder {
  color: rgb(22 163 74 / 0.5);
}

.placeholder-green-600\/55::-moz-placeholder {
  color: rgb(22 163 74 / 0.55);
}

.placeholder-green-600\/55::placeholder {
  color: rgb(22 163 74 / 0.55);
}

.placeholder-green-600\/60::-moz-placeholder {
  color: rgb(22 163 74 / 0.6);
}

.placeholder-green-600\/60::placeholder {
  color: rgb(22 163 74 / 0.6);
}

.placeholder-green-600\/65::-moz-placeholder {
  color: rgb(22 163 74 / 0.65);
}

.placeholder-green-600\/65::placeholder {
  color: rgb(22 163 74 / 0.65);
}

.placeholder-green-600\/70::-moz-placeholder {
  color: rgb(22 163 74 / 0.7);
}

.placeholder-green-600\/70::placeholder {
  color: rgb(22 163 74 / 0.7);
}

.placeholder-green-600\/75::-moz-placeholder {
  color: rgb(22 163 74 / 0.75);
}

.placeholder-green-600\/75::placeholder {
  color: rgb(22 163 74 / 0.75);
}

.placeholder-green-600\/80::-moz-placeholder {
  color: rgb(22 163 74 / 0.8);
}

.placeholder-green-600\/80::placeholder {
  color: rgb(22 163 74 / 0.8);
}

.placeholder-green-600\/85::-moz-placeholder {
  color: rgb(22 163 74 / 0.85);
}

.placeholder-green-600\/85::placeholder {
  color: rgb(22 163 74 / 0.85);
}

.placeholder-green-600\/90::-moz-placeholder {
  color: rgb(22 163 74 / 0.9);
}

.placeholder-green-600\/90::placeholder {
  color: rgb(22 163 74 / 0.9);
}

.placeholder-green-600\/95::-moz-placeholder {
  color: rgb(22 163 74 / 0.95);
}

.placeholder-green-600\/95::placeholder {
  color: rgb(22 163 74 / 0.95);
}

.placeholder-green-700::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(21 128 61 / var(--tw-placeholder-opacity, 1));
}

.placeholder-green-700::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(21 128 61 / var(--tw-placeholder-opacity, 1));
}

.placeholder-green-700\/0::-moz-placeholder {
  color: rgb(21 128 61 / 0);
}

.placeholder-green-700\/0::placeholder {
  color: rgb(21 128 61 / 0);
}

.placeholder-green-700\/10::-moz-placeholder {
  color: rgb(21 128 61 / 0.1);
}

.placeholder-green-700\/10::placeholder {
  color: rgb(21 128 61 / 0.1);
}

.placeholder-green-700\/100::-moz-placeholder {
  color: rgb(21 128 61 / 1);
}

.placeholder-green-700\/100::placeholder {
  color: rgb(21 128 61 / 1);
}

.placeholder-green-700\/15::-moz-placeholder {
  color: rgb(21 128 61 / 0.15);
}

.placeholder-green-700\/15::placeholder {
  color: rgb(21 128 61 / 0.15);
}

.placeholder-green-700\/20::-moz-placeholder {
  color: rgb(21 128 61 / 0.2);
}

.placeholder-green-700\/20::placeholder {
  color: rgb(21 128 61 / 0.2);
}

.placeholder-green-700\/25::-moz-placeholder {
  color: rgb(21 128 61 / 0.25);
}

.placeholder-green-700\/25::placeholder {
  color: rgb(21 128 61 / 0.25);
}

.placeholder-green-700\/30::-moz-placeholder {
  color: rgb(21 128 61 / 0.3);
}

.placeholder-green-700\/30::placeholder {
  color: rgb(21 128 61 / 0.3);
}

.placeholder-green-700\/35::-moz-placeholder {
  color: rgb(21 128 61 / 0.35);
}

.placeholder-green-700\/35::placeholder {
  color: rgb(21 128 61 / 0.35);
}

.placeholder-green-700\/40::-moz-placeholder {
  color: rgb(21 128 61 / 0.4);
}

.placeholder-green-700\/40::placeholder {
  color: rgb(21 128 61 / 0.4);
}

.placeholder-green-700\/45::-moz-placeholder {
  color: rgb(21 128 61 / 0.45);
}

.placeholder-green-700\/45::placeholder {
  color: rgb(21 128 61 / 0.45);
}

.placeholder-green-700\/5::-moz-placeholder {
  color: rgb(21 128 61 / 0.05);
}

.placeholder-green-700\/5::placeholder {
  color: rgb(21 128 61 / 0.05);
}

.placeholder-green-700\/50::-moz-placeholder {
  color: rgb(21 128 61 / 0.5);
}

.placeholder-green-700\/50::placeholder {
  color: rgb(21 128 61 / 0.5);
}

.placeholder-green-700\/55::-moz-placeholder {
  color: rgb(21 128 61 / 0.55);
}

.placeholder-green-700\/55::placeholder {
  color: rgb(21 128 61 / 0.55);
}

.placeholder-green-700\/60::-moz-placeholder {
  color: rgb(21 128 61 / 0.6);
}

.placeholder-green-700\/60::placeholder {
  color: rgb(21 128 61 / 0.6);
}

.placeholder-green-700\/65::-moz-placeholder {
  color: rgb(21 128 61 / 0.65);
}

.placeholder-green-700\/65::placeholder {
  color: rgb(21 128 61 / 0.65);
}

.placeholder-green-700\/70::-moz-placeholder {
  color: rgb(21 128 61 / 0.7);
}

.placeholder-green-700\/70::placeholder {
  color: rgb(21 128 61 / 0.7);
}

.placeholder-green-700\/75::-moz-placeholder {
  color: rgb(21 128 61 / 0.75);
}

.placeholder-green-700\/75::placeholder {
  color: rgb(21 128 61 / 0.75);
}

.placeholder-green-700\/80::-moz-placeholder {
  color: rgb(21 128 61 / 0.8);
}

.placeholder-green-700\/80::placeholder {
  color: rgb(21 128 61 / 0.8);
}

.placeholder-green-700\/85::-moz-placeholder {
  color: rgb(21 128 61 / 0.85);
}

.placeholder-green-700\/85::placeholder {
  color: rgb(21 128 61 / 0.85);
}

.placeholder-green-700\/90::-moz-placeholder {
  color: rgb(21 128 61 / 0.9);
}

.placeholder-green-700\/90::placeholder {
  color: rgb(21 128 61 / 0.9);
}

.placeholder-green-700\/95::-moz-placeholder {
  color: rgb(21 128 61 / 0.95);
}

.placeholder-green-700\/95::placeholder {
  color: rgb(21 128 61 / 0.95);
}

.placeholder-green-800::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(22 101 52 / var(--tw-placeholder-opacity, 1));
}

.placeholder-green-800::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(22 101 52 / var(--tw-placeholder-opacity, 1));
}

.placeholder-green-800\/0::-moz-placeholder {
  color: rgb(22 101 52 / 0);
}

.placeholder-green-800\/0::placeholder {
  color: rgb(22 101 52 / 0);
}

.placeholder-green-800\/10::-moz-placeholder {
  color: rgb(22 101 52 / 0.1);
}

.placeholder-green-800\/10::placeholder {
  color: rgb(22 101 52 / 0.1);
}

.placeholder-green-800\/100::-moz-placeholder {
  color: rgb(22 101 52 / 1);
}

.placeholder-green-800\/100::placeholder {
  color: rgb(22 101 52 / 1);
}

.placeholder-green-800\/15::-moz-placeholder {
  color: rgb(22 101 52 / 0.15);
}

.placeholder-green-800\/15::placeholder {
  color: rgb(22 101 52 / 0.15);
}

.placeholder-green-800\/20::-moz-placeholder {
  color: rgb(22 101 52 / 0.2);
}

.placeholder-green-800\/20::placeholder {
  color: rgb(22 101 52 / 0.2);
}

.placeholder-green-800\/25::-moz-placeholder {
  color: rgb(22 101 52 / 0.25);
}

.placeholder-green-800\/25::placeholder {
  color: rgb(22 101 52 / 0.25);
}

.placeholder-green-800\/30::-moz-placeholder {
  color: rgb(22 101 52 / 0.3);
}

.placeholder-green-800\/30::placeholder {
  color: rgb(22 101 52 / 0.3);
}

.placeholder-green-800\/35::-moz-placeholder {
  color: rgb(22 101 52 / 0.35);
}

.placeholder-green-800\/35::placeholder {
  color: rgb(22 101 52 / 0.35);
}

.placeholder-green-800\/40::-moz-placeholder {
  color: rgb(22 101 52 / 0.4);
}

.placeholder-green-800\/40::placeholder {
  color: rgb(22 101 52 / 0.4);
}

.placeholder-green-800\/45::-moz-placeholder {
  color: rgb(22 101 52 / 0.45);
}

.placeholder-green-800\/45::placeholder {
  color: rgb(22 101 52 / 0.45);
}

.placeholder-green-800\/5::-moz-placeholder {
  color: rgb(22 101 52 / 0.05);
}

.placeholder-green-800\/5::placeholder {
  color: rgb(22 101 52 / 0.05);
}

.placeholder-green-800\/50::-moz-placeholder {
  color: rgb(22 101 52 / 0.5);
}

.placeholder-green-800\/50::placeholder {
  color: rgb(22 101 52 / 0.5);
}

.placeholder-green-800\/55::-moz-placeholder {
  color: rgb(22 101 52 / 0.55);
}

.placeholder-green-800\/55::placeholder {
  color: rgb(22 101 52 / 0.55);
}

.placeholder-green-800\/60::-moz-placeholder {
  color: rgb(22 101 52 / 0.6);
}

.placeholder-green-800\/60::placeholder {
  color: rgb(22 101 52 / 0.6);
}

.placeholder-green-800\/65::-moz-placeholder {
  color: rgb(22 101 52 / 0.65);
}

.placeholder-green-800\/65::placeholder {
  color: rgb(22 101 52 / 0.65);
}

.placeholder-green-800\/70::-moz-placeholder {
  color: rgb(22 101 52 / 0.7);
}

.placeholder-green-800\/70::placeholder {
  color: rgb(22 101 52 / 0.7);
}

.placeholder-green-800\/75::-moz-placeholder {
  color: rgb(22 101 52 / 0.75);
}

.placeholder-green-800\/75::placeholder {
  color: rgb(22 101 52 / 0.75);
}

.placeholder-green-800\/80::-moz-placeholder {
  color: rgb(22 101 52 / 0.8);
}

.placeholder-green-800\/80::placeholder {
  color: rgb(22 101 52 / 0.8);
}

.placeholder-green-800\/85::-moz-placeholder {
  color: rgb(22 101 52 / 0.85);
}

.placeholder-green-800\/85::placeholder {
  color: rgb(22 101 52 / 0.85);
}

.placeholder-green-800\/90::-moz-placeholder {
  color: rgb(22 101 52 / 0.9);
}

.placeholder-green-800\/90::placeholder {
  color: rgb(22 101 52 / 0.9);
}

.placeholder-green-800\/95::-moz-placeholder {
  color: rgb(22 101 52 / 0.95);
}

.placeholder-green-800\/95::placeholder {
  color: rgb(22 101 52 / 0.95);
}

.placeholder-green-900::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(20 83 45 / var(--tw-placeholder-opacity, 1));
}

.placeholder-green-900::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(20 83 45 / var(--tw-placeholder-opacity, 1));
}

.placeholder-green-900\/0::-moz-placeholder {
  color: rgb(20 83 45 / 0);
}

.placeholder-green-900\/0::placeholder {
  color: rgb(20 83 45 / 0);
}

.placeholder-green-900\/10::-moz-placeholder {
  color: rgb(20 83 45 / 0.1);
}

.placeholder-green-900\/10::placeholder {
  color: rgb(20 83 45 / 0.1);
}

.placeholder-green-900\/100::-moz-placeholder {
  color: rgb(20 83 45 / 1);
}

.placeholder-green-900\/100::placeholder {
  color: rgb(20 83 45 / 1);
}

.placeholder-green-900\/15::-moz-placeholder {
  color: rgb(20 83 45 / 0.15);
}

.placeholder-green-900\/15::placeholder {
  color: rgb(20 83 45 / 0.15);
}

.placeholder-green-900\/20::-moz-placeholder {
  color: rgb(20 83 45 / 0.2);
}

.placeholder-green-900\/20::placeholder {
  color: rgb(20 83 45 / 0.2);
}

.placeholder-green-900\/25::-moz-placeholder {
  color: rgb(20 83 45 / 0.25);
}

.placeholder-green-900\/25::placeholder {
  color: rgb(20 83 45 / 0.25);
}

.placeholder-green-900\/30::-moz-placeholder {
  color: rgb(20 83 45 / 0.3);
}

.placeholder-green-900\/30::placeholder {
  color: rgb(20 83 45 / 0.3);
}

.placeholder-green-900\/35::-moz-placeholder {
  color: rgb(20 83 45 / 0.35);
}

.placeholder-green-900\/35::placeholder {
  color: rgb(20 83 45 / 0.35);
}

.placeholder-green-900\/40::-moz-placeholder {
  color: rgb(20 83 45 / 0.4);
}

.placeholder-green-900\/40::placeholder {
  color: rgb(20 83 45 / 0.4);
}

.placeholder-green-900\/45::-moz-placeholder {
  color: rgb(20 83 45 / 0.45);
}

.placeholder-green-900\/45::placeholder {
  color: rgb(20 83 45 / 0.45);
}

.placeholder-green-900\/5::-moz-placeholder {
  color: rgb(20 83 45 / 0.05);
}

.placeholder-green-900\/5::placeholder {
  color: rgb(20 83 45 / 0.05);
}

.placeholder-green-900\/50::-moz-placeholder {
  color: rgb(20 83 45 / 0.5);
}

.placeholder-green-900\/50::placeholder {
  color: rgb(20 83 45 / 0.5);
}

.placeholder-green-900\/55::-moz-placeholder {
  color: rgb(20 83 45 / 0.55);
}

.placeholder-green-900\/55::placeholder {
  color: rgb(20 83 45 / 0.55);
}

.placeholder-green-900\/60::-moz-placeholder {
  color: rgb(20 83 45 / 0.6);
}

.placeholder-green-900\/60::placeholder {
  color: rgb(20 83 45 / 0.6);
}

.placeholder-green-900\/65::-moz-placeholder {
  color: rgb(20 83 45 / 0.65);
}

.placeholder-green-900\/65::placeholder {
  color: rgb(20 83 45 / 0.65);
}

.placeholder-green-900\/70::-moz-placeholder {
  color: rgb(20 83 45 / 0.7);
}

.placeholder-green-900\/70::placeholder {
  color: rgb(20 83 45 / 0.7);
}

.placeholder-green-900\/75::-moz-placeholder {
  color: rgb(20 83 45 / 0.75);
}

.placeholder-green-900\/75::placeholder {
  color: rgb(20 83 45 / 0.75);
}

.placeholder-green-900\/80::-moz-placeholder {
  color: rgb(20 83 45 / 0.8);
}

.placeholder-green-900\/80::placeholder {
  color: rgb(20 83 45 / 0.8);
}

.placeholder-green-900\/85::-moz-placeholder {
  color: rgb(20 83 45 / 0.85);
}

.placeholder-green-900\/85::placeholder {
  color: rgb(20 83 45 / 0.85);
}

.placeholder-green-900\/90::-moz-placeholder {
  color: rgb(20 83 45 / 0.9);
}

.placeholder-green-900\/90::placeholder {
  color: rgb(20 83 45 / 0.9);
}

.placeholder-green-900\/95::-moz-placeholder {
  color: rgb(20 83 45 / 0.95);
}

.placeholder-green-900\/95::placeholder {
  color: rgb(20 83 45 / 0.95);
}

.placeholder-green-950::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(5 46 22 / var(--tw-placeholder-opacity, 1));
}

.placeholder-green-950::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(5 46 22 / var(--tw-placeholder-opacity, 1));
}

.placeholder-green-950\/0::-moz-placeholder {
  color: rgb(5 46 22 / 0);
}

.placeholder-green-950\/0::placeholder {
  color: rgb(5 46 22 / 0);
}

.placeholder-green-950\/10::-moz-placeholder {
  color: rgb(5 46 22 / 0.1);
}

.placeholder-green-950\/10::placeholder {
  color: rgb(5 46 22 / 0.1);
}

.placeholder-green-950\/100::-moz-placeholder {
  color: rgb(5 46 22 / 1);
}

.placeholder-green-950\/100::placeholder {
  color: rgb(5 46 22 / 1);
}

.placeholder-green-950\/15::-moz-placeholder {
  color: rgb(5 46 22 / 0.15);
}

.placeholder-green-950\/15::placeholder {
  color: rgb(5 46 22 / 0.15);
}

.placeholder-green-950\/20::-moz-placeholder {
  color: rgb(5 46 22 / 0.2);
}

.placeholder-green-950\/20::placeholder {
  color: rgb(5 46 22 / 0.2);
}

.placeholder-green-950\/25::-moz-placeholder {
  color: rgb(5 46 22 / 0.25);
}

.placeholder-green-950\/25::placeholder {
  color: rgb(5 46 22 / 0.25);
}

.placeholder-green-950\/30::-moz-placeholder {
  color: rgb(5 46 22 / 0.3);
}

.placeholder-green-950\/30::placeholder {
  color: rgb(5 46 22 / 0.3);
}

.placeholder-green-950\/35::-moz-placeholder {
  color: rgb(5 46 22 / 0.35);
}

.placeholder-green-950\/35::placeholder {
  color: rgb(5 46 22 / 0.35);
}

.placeholder-green-950\/40::-moz-placeholder {
  color: rgb(5 46 22 / 0.4);
}

.placeholder-green-950\/40::placeholder {
  color: rgb(5 46 22 / 0.4);
}

.placeholder-green-950\/45::-moz-placeholder {
  color: rgb(5 46 22 / 0.45);
}

.placeholder-green-950\/45::placeholder {
  color: rgb(5 46 22 / 0.45);
}

.placeholder-green-950\/5::-moz-placeholder {
  color: rgb(5 46 22 / 0.05);
}

.placeholder-green-950\/5::placeholder {
  color: rgb(5 46 22 / 0.05);
}

.placeholder-green-950\/50::-moz-placeholder {
  color: rgb(5 46 22 / 0.5);
}

.placeholder-green-950\/50::placeholder {
  color: rgb(5 46 22 / 0.5);
}

.placeholder-green-950\/55::-moz-placeholder {
  color: rgb(5 46 22 / 0.55);
}

.placeholder-green-950\/55::placeholder {
  color: rgb(5 46 22 / 0.55);
}

.placeholder-green-950\/60::-moz-placeholder {
  color: rgb(5 46 22 / 0.6);
}

.placeholder-green-950\/60::placeholder {
  color: rgb(5 46 22 / 0.6);
}

.placeholder-green-950\/65::-moz-placeholder {
  color: rgb(5 46 22 / 0.65);
}

.placeholder-green-950\/65::placeholder {
  color: rgb(5 46 22 / 0.65);
}

.placeholder-green-950\/70::-moz-placeholder {
  color: rgb(5 46 22 / 0.7);
}

.placeholder-green-950\/70::placeholder {
  color: rgb(5 46 22 / 0.7);
}

.placeholder-green-950\/75::-moz-placeholder {
  color: rgb(5 46 22 / 0.75);
}

.placeholder-green-950\/75::placeholder {
  color: rgb(5 46 22 / 0.75);
}

.placeholder-green-950\/80::-moz-placeholder {
  color: rgb(5 46 22 / 0.8);
}

.placeholder-green-950\/80::placeholder {
  color: rgb(5 46 22 / 0.8);
}

.placeholder-green-950\/85::-moz-placeholder {
  color: rgb(5 46 22 / 0.85);
}

.placeholder-green-950\/85::placeholder {
  color: rgb(5 46 22 / 0.85);
}

.placeholder-green-950\/90::-moz-placeholder {
  color: rgb(5 46 22 / 0.9);
}

.placeholder-green-950\/90::placeholder {
  color: rgb(5 46 22 / 0.9);
}

.placeholder-green-950\/95::-moz-placeholder {
  color: rgb(5 46 22 / 0.95);
}

.placeholder-green-950\/95::placeholder {
  color: rgb(5 46 22 / 0.95);
}

.placeholder-red-100::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(254 226 226 / var(--tw-placeholder-opacity, 1));
}

.placeholder-red-100::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(254 226 226 / var(--tw-placeholder-opacity, 1));
}

.placeholder-red-100\/0::-moz-placeholder {
  color: rgb(254 226 226 / 0);
}

.placeholder-red-100\/0::placeholder {
  color: rgb(254 226 226 / 0);
}

.placeholder-red-100\/10::-moz-placeholder {
  color: rgb(254 226 226 / 0.1);
}

.placeholder-red-100\/10::placeholder {
  color: rgb(254 226 226 / 0.1);
}

.placeholder-red-100\/100::-moz-placeholder {
  color: rgb(254 226 226 / 1);
}

.placeholder-red-100\/100::placeholder {
  color: rgb(254 226 226 / 1);
}

.placeholder-red-100\/15::-moz-placeholder {
  color: rgb(254 226 226 / 0.15);
}

.placeholder-red-100\/15::placeholder {
  color: rgb(254 226 226 / 0.15);
}

.placeholder-red-100\/20::-moz-placeholder {
  color: rgb(254 226 226 / 0.2);
}

.placeholder-red-100\/20::placeholder {
  color: rgb(254 226 226 / 0.2);
}

.placeholder-red-100\/25::-moz-placeholder {
  color: rgb(254 226 226 / 0.25);
}

.placeholder-red-100\/25::placeholder {
  color: rgb(254 226 226 / 0.25);
}

.placeholder-red-100\/30::-moz-placeholder {
  color: rgb(254 226 226 / 0.3);
}

.placeholder-red-100\/30::placeholder {
  color: rgb(254 226 226 / 0.3);
}

.placeholder-red-100\/35::-moz-placeholder {
  color: rgb(254 226 226 / 0.35);
}

.placeholder-red-100\/35::placeholder {
  color: rgb(254 226 226 / 0.35);
}

.placeholder-red-100\/40::-moz-placeholder {
  color: rgb(254 226 226 / 0.4);
}

.placeholder-red-100\/40::placeholder {
  color: rgb(254 226 226 / 0.4);
}

.placeholder-red-100\/45::-moz-placeholder {
  color: rgb(254 226 226 / 0.45);
}

.placeholder-red-100\/45::placeholder {
  color: rgb(254 226 226 / 0.45);
}

.placeholder-red-100\/5::-moz-placeholder {
  color: rgb(254 226 226 / 0.05);
}

.placeholder-red-100\/5::placeholder {
  color: rgb(254 226 226 / 0.05);
}

.placeholder-red-100\/50::-moz-placeholder {
  color: rgb(254 226 226 / 0.5);
}

.placeholder-red-100\/50::placeholder {
  color: rgb(254 226 226 / 0.5);
}

.placeholder-red-100\/55::-moz-placeholder {
  color: rgb(254 226 226 / 0.55);
}

.placeholder-red-100\/55::placeholder {
  color: rgb(254 226 226 / 0.55);
}

.placeholder-red-100\/60::-moz-placeholder {
  color: rgb(254 226 226 / 0.6);
}

.placeholder-red-100\/60::placeholder {
  color: rgb(254 226 226 / 0.6);
}

.placeholder-red-100\/65::-moz-placeholder {
  color: rgb(254 226 226 / 0.65);
}

.placeholder-red-100\/65::placeholder {
  color: rgb(254 226 226 / 0.65);
}

.placeholder-red-100\/70::-moz-placeholder {
  color: rgb(254 226 226 / 0.7);
}

.placeholder-red-100\/70::placeholder {
  color: rgb(254 226 226 / 0.7);
}

.placeholder-red-100\/75::-moz-placeholder {
  color: rgb(254 226 226 / 0.75);
}

.placeholder-red-100\/75::placeholder {
  color: rgb(254 226 226 / 0.75);
}

.placeholder-red-100\/80::-moz-placeholder {
  color: rgb(254 226 226 / 0.8);
}

.placeholder-red-100\/80::placeholder {
  color: rgb(254 226 226 / 0.8);
}

.placeholder-red-100\/85::-moz-placeholder {
  color: rgb(254 226 226 / 0.85);
}

.placeholder-red-100\/85::placeholder {
  color: rgb(254 226 226 / 0.85);
}

.placeholder-red-100\/90::-moz-placeholder {
  color: rgb(254 226 226 / 0.9);
}

.placeholder-red-100\/90::placeholder {
  color: rgb(254 226 226 / 0.9);
}

.placeholder-red-100\/95::-moz-placeholder {
  color: rgb(254 226 226 / 0.95);
}

.placeholder-red-100\/95::placeholder {
  color: rgb(254 226 226 / 0.95);
}

.placeholder-red-200::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(254 202 202 / var(--tw-placeholder-opacity, 1));
}

.placeholder-red-200::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(254 202 202 / var(--tw-placeholder-opacity, 1));
}

.placeholder-red-200\/0::-moz-placeholder {
  color: rgb(254 202 202 / 0);
}

.placeholder-red-200\/0::placeholder {
  color: rgb(254 202 202 / 0);
}

.placeholder-red-200\/10::-moz-placeholder {
  color: rgb(254 202 202 / 0.1);
}

.placeholder-red-200\/10::placeholder {
  color: rgb(254 202 202 / 0.1);
}

.placeholder-red-200\/100::-moz-placeholder {
  color: rgb(254 202 202 / 1);
}

.placeholder-red-200\/100::placeholder {
  color: rgb(254 202 202 / 1);
}

.placeholder-red-200\/15::-moz-placeholder {
  color: rgb(254 202 202 / 0.15);
}

.placeholder-red-200\/15::placeholder {
  color: rgb(254 202 202 / 0.15);
}

.placeholder-red-200\/20::-moz-placeholder {
  color: rgb(254 202 202 / 0.2);
}

.placeholder-red-200\/20::placeholder {
  color: rgb(254 202 202 / 0.2);
}

.placeholder-red-200\/25::-moz-placeholder {
  color: rgb(254 202 202 / 0.25);
}

.placeholder-red-200\/25::placeholder {
  color: rgb(254 202 202 / 0.25);
}

.placeholder-red-200\/30::-moz-placeholder {
  color: rgb(254 202 202 / 0.3);
}

.placeholder-red-200\/30::placeholder {
  color: rgb(254 202 202 / 0.3);
}

.placeholder-red-200\/35::-moz-placeholder {
  color: rgb(254 202 202 / 0.35);
}

.placeholder-red-200\/35::placeholder {
  color: rgb(254 202 202 / 0.35);
}

.placeholder-red-200\/40::-moz-placeholder {
  color: rgb(254 202 202 / 0.4);
}

.placeholder-red-200\/40::placeholder {
  color: rgb(254 202 202 / 0.4);
}

.placeholder-red-200\/45::-moz-placeholder {
  color: rgb(254 202 202 / 0.45);
}

.placeholder-red-200\/45::placeholder {
  color: rgb(254 202 202 / 0.45);
}

.placeholder-red-200\/5::-moz-placeholder {
  color: rgb(254 202 202 / 0.05);
}

.placeholder-red-200\/5::placeholder {
  color: rgb(254 202 202 / 0.05);
}

.placeholder-red-200\/50::-moz-placeholder {
  color: rgb(254 202 202 / 0.5);
}

.placeholder-red-200\/50::placeholder {
  color: rgb(254 202 202 / 0.5);
}

.placeholder-red-200\/55::-moz-placeholder {
  color: rgb(254 202 202 / 0.55);
}

.placeholder-red-200\/55::placeholder {
  color: rgb(254 202 202 / 0.55);
}

.placeholder-red-200\/60::-moz-placeholder {
  color: rgb(254 202 202 / 0.6);
}

.placeholder-red-200\/60::placeholder {
  color: rgb(254 202 202 / 0.6);
}

.placeholder-red-200\/65::-moz-placeholder {
  color: rgb(254 202 202 / 0.65);
}

.placeholder-red-200\/65::placeholder {
  color: rgb(254 202 202 / 0.65);
}

.placeholder-red-200\/70::-moz-placeholder {
  color: rgb(254 202 202 / 0.7);
}

.placeholder-red-200\/70::placeholder {
  color: rgb(254 202 202 / 0.7);
}

.placeholder-red-200\/75::-moz-placeholder {
  color: rgb(254 202 202 / 0.75);
}

.placeholder-red-200\/75::placeholder {
  color: rgb(254 202 202 / 0.75);
}

.placeholder-red-200\/80::-moz-placeholder {
  color: rgb(254 202 202 / 0.8);
}

.placeholder-red-200\/80::placeholder {
  color: rgb(254 202 202 / 0.8);
}

.placeholder-red-200\/85::-moz-placeholder {
  color: rgb(254 202 202 / 0.85);
}

.placeholder-red-200\/85::placeholder {
  color: rgb(254 202 202 / 0.85);
}

.placeholder-red-200\/90::-moz-placeholder {
  color: rgb(254 202 202 / 0.9);
}

.placeholder-red-200\/90::placeholder {
  color: rgb(254 202 202 / 0.9);
}

.placeholder-red-200\/95::-moz-placeholder {
  color: rgb(254 202 202 / 0.95);
}

.placeholder-red-200\/95::placeholder {
  color: rgb(254 202 202 / 0.95);
}

.placeholder-red-300::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(252 165 165 / var(--tw-placeholder-opacity, 1));
}

.placeholder-red-300::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(252 165 165 / var(--tw-placeholder-opacity, 1));
}

.placeholder-red-300\/0::-moz-placeholder {
  color: rgb(252 165 165 / 0);
}

.placeholder-red-300\/0::placeholder {
  color: rgb(252 165 165 / 0);
}

.placeholder-red-300\/10::-moz-placeholder {
  color: rgb(252 165 165 / 0.1);
}

.placeholder-red-300\/10::placeholder {
  color: rgb(252 165 165 / 0.1);
}

.placeholder-red-300\/100::-moz-placeholder {
  color: rgb(252 165 165 / 1);
}

.placeholder-red-300\/100::placeholder {
  color: rgb(252 165 165 / 1);
}

.placeholder-red-300\/15::-moz-placeholder {
  color: rgb(252 165 165 / 0.15);
}

.placeholder-red-300\/15::placeholder {
  color: rgb(252 165 165 / 0.15);
}

.placeholder-red-300\/20::-moz-placeholder {
  color: rgb(252 165 165 / 0.2);
}

.placeholder-red-300\/20::placeholder {
  color: rgb(252 165 165 / 0.2);
}

.placeholder-red-300\/25::-moz-placeholder {
  color: rgb(252 165 165 / 0.25);
}

.placeholder-red-300\/25::placeholder {
  color: rgb(252 165 165 / 0.25);
}

.placeholder-red-300\/30::-moz-placeholder {
  color: rgb(252 165 165 / 0.3);
}

.placeholder-red-300\/30::placeholder {
  color: rgb(252 165 165 / 0.3);
}

.placeholder-red-300\/35::-moz-placeholder {
  color: rgb(252 165 165 / 0.35);
}

.placeholder-red-300\/35::placeholder {
  color: rgb(252 165 165 / 0.35);
}

.placeholder-red-300\/40::-moz-placeholder {
  color: rgb(252 165 165 / 0.4);
}

.placeholder-red-300\/40::placeholder {
  color: rgb(252 165 165 / 0.4);
}

.placeholder-red-300\/45::-moz-placeholder {
  color: rgb(252 165 165 / 0.45);
}

.placeholder-red-300\/45::placeholder {
  color: rgb(252 165 165 / 0.45);
}

.placeholder-red-300\/5::-moz-placeholder {
  color: rgb(252 165 165 / 0.05);
}

.placeholder-red-300\/5::placeholder {
  color: rgb(252 165 165 / 0.05);
}

.placeholder-red-300\/50::-moz-placeholder {
  color: rgb(252 165 165 / 0.5);
}

.placeholder-red-300\/50::placeholder {
  color: rgb(252 165 165 / 0.5);
}

.placeholder-red-300\/55::-moz-placeholder {
  color: rgb(252 165 165 / 0.55);
}

.placeholder-red-300\/55::placeholder {
  color: rgb(252 165 165 / 0.55);
}

.placeholder-red-300\/60::-moz-placeholder {
  color: rgb(252 165 165 / 0.6);
}

.placeholder-red-300\/60::placeholder {
  color: rgb(252 165 165 / 0.6);
}

.placeholder-red-300\/65::-moz-placeholder {
  color: rgb(252 165 165 / 0.65);
}

.placeholder-red-300\/65::placeholder {
  color: rgb(252 165 165 / 0.65);
}

.placeholder-red-300\/70::-moz-placeholder {
  color: rgb(252 165 165 / 0.7);
}

.placeholder-red-300\/70::placeholder {
  color: rgb(252 165 165 / 0.7);
}

.placeholder-red-300\/75::-moz-placeholder {
  color: rgb(252 165 165 / 0.75);
}

.placeholder-red-300\/75::placeholder {
  color: rgb(252 165 165 / 0.75);
}

.placeholder-red-300\/80::-moz-placeholder {
  color: rgb(252 165 165 / 0.8);
}

.placeholder-red-300\/80::placeholder {
  color: rgb(252 165 165 / 0.8);
}

.placeholder-red-300\/85::-moz-placeholder {
  color: rgb(252 165 165 / 0.85);
}

.placeholder-red-300\/85::placeholder {
  color: rgb(252 165 165 / 0.85);
}

.placeholder-red-300\/90::-moz-placeholder {
  color: rgb(252 165 165 / 0.9);
}

.placeholder-red-300\/90::placeholder {
  color: rgb(252 165 165 / 0.9);
}

.placeholder-red-300\/95::-moz-placeholder {
  color: rgb(252 165 165 / 0.95);
}

.placeholder-red-300\/95::placeholder {
  color: rgb(252 165 165 / 0.95);
}

.placeholder-red-400::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(248 113 113 / var(--tw-placeholder-opacity, 1));
}

.placeholder-red-400::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(248 113 113 / var(--tw-placeholder-opacity, 1));
}

.placeholder-red-400\/0::-moz-placeholder {
  color: rgb(248 113 113 / 0);
}

.placeholder-red-400\/0::placeholder {
  color: rgb(248 113 113 / 0);
}

.placeholder-red-400\/10::-moz-placeholder {
  color: rgb(248 113 113 / 0.1);
}

.placeholder-red-400\/10::placeholder {
  color: rgb(248 113 113 / 0.1);
}

.placeholder-red-400\/100::-moz-placeholder {
  color: rgb(248 113 113 / 1);
}

.placeholder-red-400\/100::placeholder {
  color: rgb(248 113 113 / 1);
}

.placeholder-red-400\/15::-moz-placeholder {
  color: rgb(248 113 113 / 0.15);
}

.placeholder-red-400\/15::placeholder {
  color: rgb(248 113 113 / 0.15);
}

.placeholder-red-400\/20::-moz-placeholder {
  color: rgb(248 113 113 / 0.2);
}

.placeholder-red-400\/20::placeholder {
  color: rgb(248 113 113 / 0.2);
}

.placeholder-red-400\/25::-moz-placeholder {
  color: rgb(248 113 113 / 0.25);
}

.placeholder-red-400\/25::placeholder {
  color: rgb(248 113 113 / 0.25);
}

.placeholder-red-400\/30::-moz-placeholder {
  color: rgb(248 113 113 / 0.3);
}

.placeholder-red-400\/30::placeholder {
  color: rgb(248 113 113 / 0.3);
}

.placeholder-red-400\/35::-moz-placeholder {
  color: rgb(248 113 113 / 0.35);
}

.placeholder-red-400\/35::placeholder {
  color: rgb(248 113 113 / 0.35);
}

.placeholder-red-400\/40::-moz-placeholder {
  color: rgb(248 113 113 / 0.4);
}

.placeholder-red-400\/40::placeholder {
  color: rgb(248 113 113 / 0.4);
}

.placeholder-red-400\/45::-moz-placeholder {
  color: rgb(248 113 113 / 0.45);
}

.placeholder-red-400\/45::placeholder {
  color: rgb(248 113 113 / 0.45);
}

.placeholder-red-400\/5::-moz-placeholder {
  color: rgb(248 113 113 / 0.05);
}

.placeholder-red-400\/5::placeholder {
  color: rgb(248 113 113 / 0.05);
}

.placeholder-red-400\/50::-moz-placeholder {
  color: rgb(248 113 113 / 0.5);
}

.placeholder-red-400\/50::placeholder {
  color: rgb(248 113 113 / 0.5);
}

.placeholder-red-400\/55::-moz-placeholder {
  color: rgb(248 113 113 / 0.55);
}

.placeholder-red-400\/55::placeholder {
  color: rgb(248 113 113 / 0.55);
}

.placeholder-red-400\/60::-moz-placeholder {
  color: rgb(248 113 113 / 0.6);
}

.placeholder-red-400\/60::placeholder {
  color: rgb(248 113 113 / 0.6);
}

.placeholder-red-400\/65::-moz-placeholder {
  color: rgb(248 113 113 / 0.65);
}

.placeholder-red-400\/65::placeholder {
  color: rgb(248 113 113 / 0.65);
}

.placeholder-red-400\/70::-moz-placeholder {
  color: rgb(248 113 113 / 0.7);
}

.placeholder-red-400\/70::placeholder {
  color: rgb(248 113 113 / 0.7);
}

.placeholder-red-400\/75::-moz-placeholder {
  color: rgb(248 113 113 / 0.75);
}

.placeholder-red-400\/75::placeholder {
  color: rgb(248 113 113 / 0.75);
}

.placeholder-red-400\/80::-moz-placeholder {
  color: rgb(248 113 113 / 0.8);
}

.placeholder-red-400\/80::placeholder {
  color: rgb(248 113 113 / 0.8);
}

.placeholder-red-400\/85::-moz-placeholder {
  color: rgb(248 113 113 / 0.85);
}

.placeholder-red-400\/85::placeholder {
  color: rgb(248 113 113 / 0.85);
}

.placeholder-red-400\/90::-moz-placeholder {
  color: rgb(248 113 113 / 0.9);
}

.placeholder-red-400\/90::placeholder {
  color: rgb(248 113 113 / 0.9);
}

.placeholder-red-400\/95::-moz-placeholder {
  color: rgb(248 113 113 / 0.95);
}

.placeholder-red-400\/95::placeholder {
  color: rgb(248 113 113 / 0.95);
}

.placeholder-red-50::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(254 242 242 / var(--tw-placeholder-opacity, 1));
}

.placeholder-red-50::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(254 242 242 / var(--tw-placeholder-opacity, 1));
}

.placeholder-red-50\/0::-moz-placeholder {
  color: rgb(254 242 242 / 0);
}

.placeholder-red-50\/0::placeholder {
  color: rgb(254 242 242 / 0);
}

.placeholder-red-50\/10::-moz-placeholder {
  color: rgb(254 242 242 / 0.1);
}

.placeholder-red-50\/10::placeholder {
  color: rgb(254 242 242 / 0.1);
}

.placeholder-red-50\/100::-moz-placeholder {
  color: rgb(254 242 242 / 1);
}

.placeholder-red-50\/100::placeholder {
  color: rgb(254 242 242 / 1);
}

.placeholder-red-50\/15::-moz-placeholder {
  color: rgb(254 242 242 / 0.15);
}

.placeholder-red-50\/15::placeholder {
  color: rgb(254 242 242 / 0.15);
}

.placeholder-red-50\/20::-moz-placeholder {
  color: rgb(254 242 242 / 0.2);
}

.placeholder-red-50\/20::placeholder {
  color: rgb(254 242 242 / 0.2);
}

.placeholder-red-50\/25::-moz-placeholder {
  color: rgb(254 242 242 / 0.25);
}

.placeholder-red-50\/25::placeholder {
  color: rgb(254 242 242 / 0.25);
}

.placeholder-red-50\/30::-moz-placeholder {
  color: rgb(254 242 242 / 0.3);
}

.placeholder-red-50\/30::placeholder {
  color: rgb(254 242 242 / 0.3);
}

.placeholder-red-50\/35::-moz-placeholder {
  color: rgb(254 242 242 / 0.35);
}

.placeholder-red-50\/35::placeholder {
  color: rgb(254 242 242 / 0.35);
}

.placeholder-red-50\/40::-moz-placeholder {
  color: rgb(254 242 242 / 0.4);
}

.placeholder-red-50\/40::placeholder {
  color: rgb(254 242 242 / 0.4);
}

.placeholder-red-50\/45::-moz-placeholder {
  color: rgb(254 242 242 / 0.45);
}

.placeholder-red-50\/45::placeholder {
  color: rgb(254 242 242 / 0.45);
}

.placeholder-red-50\/5::-moz-placeholder {
  color: rgb(254 242 242 / 0.05);
}

.placeholder-red-50\/5::placeholder {
  color: rgb(254 242 242 / 0.05);
}

.placeholder-red-50\/50::-moz-placeholder {
  color: rgb(254 242 242 / 0.5);
}

.placeholder-red-50\/50::placeholder {
  color: rgb(254 242 242 / 0.5);
}

.placeholder-red-50\/55::-moz-placeholder {
  color: rgb(254 242 242 / 0.55);
}

.placeholder-red-50\/55::placeholder {
  color: rgb(254 242 242 / 0.55);
}

.placeholder-red-50\/60::-moz-placeholder {
  color: rgb(254 242 242 / 0.6);
}

.placeholder-red-50\/60::placeholder {
  color: rgb(254 242 242 / 0.6);
}

.placeholder-red-50\/65::-moz-placeholder {
  color: rgb(254 242 242 / 0.65);
}

.placeholder-red-50\/65::placeholder {
  color: rgb(254 242 242 / 0.65);
}

.placeholder-red-50\/70::-moz-placeholder {
  color: rgb(254 242 242 / 0.7);
}

.placeholder-red-50\/70::placeholder {
  color: rgb(254 242 242 / 0.7);
}

.placeholder-red-50\/75::-moz-placeholder {
  color: rgb(254 242 242 / 0.75);
}

.placeholder-red-50\/75::placeholder {
  color: rgb(254 242 242 / 0.75);
}

.placeholder-red-50\/80::-moz-placeholder {
  color: rgb(254 242 242 / 0.8);
}

.placeholder-red-50\/80::placeholder {
  color: rgb(254 242 242 / 0.8);
}

.placeholder-red-50\/85::-moz-placeholder {
  color: rgb(254 242 242 / 0.85);
}

.placeholder-red-50\/85::placeholder {
  color: rgb(254 242 242 / 0.85);
}

.placeholder-red-50\/90::-moz-placeholder {
  color: rgb(254 242 242 / 0.9);
}

.placeholder-red-50\/90::placeholder {
  color: rgb(254 242 242 / 0.9);
}

.placeholder-red-50\/95::-moz-placeholder {
  color: rgb(254 242 242 / 0.95);
}

.placeholder-red-50\/95::placeholder {
  color: rgb(254 242 242 / 0.95);
}

.placeholder-red-500::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(239 68 68 / var(--tw-placeholder-opacity, 1));
}

.placeholder-red-500::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(239 68 68 / var(--tw-placeholder-opacity, 1));
}

.placeholder-red-500\/0::-moz-placeholder {
  color: rgb(239 68 68 / 0);
}

.placeholder-red-500\/0::placeholder {
  color: rgb(239 68 68 / 0);
}

.placeholder-red-500\/10::-moz-placeholder {
  color: rgb(239 68 68 / 0.1);
}

.placeholder-red-500\/10::placeholder {
  color: rgb(239 68 68 / 0.1);
}

.placeholder-red-500\/100::-moz-placeholder {
  color: rgb(239 68 68 / 1);
}

.placeholder-red-500\/100::placeholder {
  color: rgb(239 68 68 / 1);
}

.placeholder-red-500\/15::-moz-placeholder {
  color: rgb(239 68 68 / 0.15);
}

.placeholder-red-500\/15::placeholder {
  color: rgb(239 68 68 / 0.15);
}

.placeholder-red-500\/20::-moz-placeholder {
  color: rgb(239 68 68 / 0.2);
}

.placeholder-red-500\/20::placeholder {
  color: rgb(239 68 68 / 0.2);
}

.placeholder-red-500\/25::-moz-placeholder {
  color: rgb(239 68 68 / 0.25);
}

.placeholder-red-500\/25::placeholder {
  color: rgb(239 68 68 / 0.25);
}

.placeholder-red-500\/30::-moz-placeholder {
  color: rgb(239 68 68 / 0.3);
}

.placeholder-red-500\/30::placeholder {
  color: rgb(239 68 68 / 0.3);
}

.placeholder-red-500\/35::-moz-placeholder {
  color: rgb(239 68 68 / 0.35);
}

.placeholder-red-500\/35::placeholder {
  color: rgb(239 68 68 / 0.35);
}

.placeholder-red-500\/40::-moz-placeholder {
  color: rgb(239 68 68 / 0.4);
}

.placeholder-red-500\/40::placeholder {
  color: rgb(239 68 68 / 0.4);
}

.placeholder-red-500\/45::-moz-placeholder {
  color: rgb(239 68 68 / 0.45);
}

.placeholder-red-500\/45::placeholder {
  color: rgb(239 68 68 / 0.45);
}

.placeholder-red-500\/5::-moz-placeholder {
  color: rgb(239 68 68 / 0.05);
}

.placeholder-red-500\/5::placeholder {
  color: rgb(239 68 68 / 0.05);
}

.placeholder-red-500\/50::-moz-placeholder {
  color: rgb(239 68 68 / 0.5);
}

.placeholder-red-500\/50::placeholder {
  color: rgb(239 68 68 / 0.5);
}

.placeholder-red-500\/55::-moz-placeholder {
  color: rgb(239 68 68 / 0.55);
}

.placeholder-red-500\/55::placeholder {
  color: rgb(239 68 68 / 0.55);
}

.placeholder-red-500\/60::-moz-placeholder {
  color: rgb(239 68 68 / 0.6);
}

.placeholder-red-500\/60::placeholder {
  color: rgb(239 68 68 / 0.6);
}

.placeholder-red-500\/65::-moz-placeholder {
  color: rgb(239 68 68 / 0.65);
}

.placeholder-red-500\/65::placeholder {
  color: rgb(239 68 68 / 0.65);
}

.placeholder-red-500\/70::-moz-placeholder {
  color: rgb(239 68 68 / 0.7);
}

.placeholder-red-500\/70::placeholder {
  color: rgb(239 68 68 / 0.7);
}

.placeholder-red-500\/75::-moz-placeholder {
  color: rgb(239 68 68 / 0.75);
}

.placeholder-red-500\/75::placeholder {
  color: rgb(239 68 68 / 0.75);
}

.placeholder-red-500\/80::-moz-placeholder {
  color: rgb(239 68 68 / 0.8);
}

.placeholder-red-500\/80::placeholder {
  color: rgb(239 68 68 / 0.8);
}

.placeholder-red-500\/85::-moz-placeholder {
  color: rgb(239 68 68 / 0.85);
}

.placeholder-red-500\/85::placeholder {
  color: rgb(239 68 68 / 0.85);
}

.placeholder-red-500\/90::-moz-placeholder {
  color: rgb(239 68 68 / 0.9);
}

.placeholder-red-500\/90::placeholder {
  color: rgb(239 68 68 / 0.9);
}

.placeholder-red-500\/95::-moz-placeholder {
  color: rgb(239 68 68 / 0.95);
}

.placeholder-red-500\/95::placeholder {
  color: rgb(239 68 68 / 0.95);
}

.placeholder-red-600::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(220 38 38 / var(--tw-placeholder-opacity, 1));
}

.placeholder-red-600::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(220 38 38 / var(--tw-placeholder-opacity, 1));
}

.placeholder-red-600\/0::-moz-placeholder {
  color: rgb(220 38 38 / 0);
}

.placeholder-red-600\/0::placeholder {
  color: rgb(220 38 38 / 0);
}

.placeholder-red-600\/10::-moz-placeholder {
  color: rgb(220 38 38 / 0.1);
}

.placeholder-red-600\/10::placeholder {
  color: rgb(220 38 38 / 0.1);
}

.placeholder-red-600\/100::-moz-placeholder {
  color: rgb(220 38 38 / 1);
}

.placeholder-red-600\/100::placeholder {
  color: rgb(220 38 38 / 1);
}

.placeholder-red-600\/15::-moz-placeholder {
  color: rgb(220 38 38 / 0.15);
}

.placeholder-red-600\/15::placeholder {
  color: rgb(220 38 38 / 0.15);
}

.placeholder-red-600\/20::-moz-placeholder {
  color: rgb(220 38 38 / 0.2);
}

.placeholder-red-600\/20::placeholder {
  color: rgb(220 38 38 / 0.2);
}

.placeholder-red-600\/25::-moz-placeholder {
  color: rgb(220 38 38 / 0.25);
}

.placeholder-red-600\/25::placeholder {
  color: rgb(220 38 38 / 0.25);
}

.placeholder-red-600\/30::-moz-placeholder {
  color: rgb(220 38 38 / 0.3);
}

.placeholder-red-600\/30::placeholder {
  color: rgb(220 38 38 / 0.3);
}

.placeholder-red-600\/35::-moz-placeholder {
  color: rgb(220 38 38 / 0.35);
}

.placeholder-red-600\/35::placeholder {
  color: rgb(220 38 38 / 0.35);
}

.placeholder-red-600\/40::-moz-placeholder {
  color: rgb(220 38 38 / 0.4);
}

.placeholder-red-600\/40::placeholder {
  color: rgb(220 38 38 / 0.4);
}

.placeholder-red-600\/45::-moz-placeholder {
  color: rgb(220 38 38 / 0.45);
}

.placeholder-red-600\/45::placeholder {
  color: rgb(220 38 38 / 0.45);
}

.placeholder-red-600\/5::-moz-placeholder {
  color: rgb(220 38 38 / 0.05);
}

.placeholder-red-600\/5::placeholder {
  color: rgb(220 38 38 / 0.05);
}

.placeholder-red-600\/50::-moz-placeholder {
  color: rgb(220 38 38 / 0.5);
}

.placeholder-red-600\/50::placeholder {
  color: rgb(220 38 38 / 0.5);
}

.placeholder-red-600\/55::-moz-placeholder {
  color: rgb(220 38 38 / 0.55);
}

.placeholder-red-600\/55::placeholder {
  color: rgb(220 38 38 / 0.55);
}

.placeholder-red-600\/60::-moz-placeholder {
  color: rgb(220 38 38 / 0.6);
}

.placeholder-red-600\/60::placeholder {
  color: rgb(220 38 38 / 0.6);
}

.placeholder-red-600\/65::-moz-placeholder {
  color: rgb(220 38 38 / 0.65);
}

.placeholder-red-600\/65::placeholder {
  color: rgb(220 38 38 / 0.65);
}

.placeholder-red-600\/70::-moz-placeholder {
  color: rgb(220 38 38 / 0.7);
}

.placeholder-red-600\/70::placeholder {
  color: rgb(220 38 38 / 0.7);
}

.placeholder-red-600\/75::-moz-placeholder {
  color: rgb(220 38 38 / 0.75);
}

.placeholder-red-600\/75::placeholder {
  color: rgb(220 38 38 / 0.75);
}

.placeholder-red-600\/80::-moz-placeholder {
  color: rgb(220 38 38 / 0.8);
}

.placeholder-red-600\/80::placeholder {
  color: rgb(220 38 38 / 0.8);
}

.placeholder-red-600\/85::-moz-placeholder {
  color: rgb(220 38 38 / 0.85);
}

.placeholder-red-600\/85::placeholder {
  color: rgb(220 38 38 / 0.85);
}

.placeholder-red-600\/90::-moz-placeholder {
  color: rgb(220 38 38 / 0.9);
}

.placeholder-red-600\/90::placeholder {
  color: rgb(220 38 38 / 0.9);
}

.placeholder-red-600\/95::-moz-placeholder {
  color: rgb(220 38 38 / 0.95);
}

.placeholder-red-600\/95::placeholder {
  color: rgb(220 38 38 / 0.95);
}

.placeholder-red-700::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(185 28 28 / var(--tw-placeholder-opacity, 1));
}

.placeholder-red-700::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(185 28 28 / var(--tw-placeholder-opacity, 1));
}

.placeholder-red-700\/0::-moz-placeholder {
  color: rgb(185 28 28 / 0);
}

.placeholder-red-700\/0::placeholder {
  color: rgb(185 28 28 / 0);
}

.placeholder-red-700\/10::-moz-placeholder {
  color: rgb(185 28 28 / 0.1);
}

.placeholder-red-700\/10::placeholder {
  color: rgb(185 28 28 / 0.1);
}

.placeholder-red-700\/100::-moz-placeholder {
  color: rgb(185 28 28 / 1);
}

.placeholder-red-700\/100::placeholder {
  color: rgb(185 28 28 / 1);
}

.placeholder-red-700\/15::-moz-placeholder {
  color: rgb(185 28 28 / 0.15);
}

.placeholder-red-700\/15::placeholder {
  color: rgb(185 28 28 / 0.15);
}

.placeholder-red-700\/20::-moz-placeholder {
  color: rgb(185 28 28 / 0.2);
}

.placeholder-red-700\/20::placeholder {
  color: rgb(185 28 28 / 0.2);
}

.placeholder-red-700\/25::-moz-placeholder {
  color: rgb(185 28 28 / 0.25);
}

.placeholder-red-700\/25::placeholder {
  color: rgb(185 28 28 / 0.25);
}

.placeholder-red-700\/30::-moz-placeholder {
  color: rgb(185 28 28 / 0.3);
}

.placeholder-red-700\/30::placeholder {
  color: rgb(185 28 28 / 0.3);
}

.placeholder-red-700\/35::-moz-placeholder {
  color: rgb(185 28 28 / 0.35);
}

.placeholder-red-700\/35::placeholder {
  color: rgb(185 28 28 / 0.35);
}

.placeholder-red-700\/40::-moz-placeholder {
  color: rgb(185 28 28 / 0.4);
}

.placeholder-red-700\/40::placeholder {
  color: rgb(185 28 28 / 0.4);
}

.placeholder-red-700\/45::-moz-placeholder {
  color: rgb(185 28 28 / 0.45);
}

.placeholder-red-700\/45::placeholder {
  color: rgb(185 28 28 / 0.45);
}

.placeholder-red-700\/5::-moz-placeholder {
  color: rgb(185 28 28 / 0.05);
}

.placeholder-red-700\/5::placeholder {
  color: rgb(185 28 28 / 0.05);
}

.placeholder-red-700\/50::-moz-placeholder {
  color: rgb(185 28 28 / 0.5);
}

.placeholder-red-700\/50::placeholder {
  color: rgb(185 28 28 / 0.5);
}

.placeholder-red-700\/55::-moz-placeholder {
  color: rgb(185 28 28 / 0.55);
}

.placeholder-red-700\/55::placeholder {
  color: rgb(185 28 28 / 0.55);
}

.placeholder-red-700\/60::-moz-placeholder {
  color: rgb(185 28 28 / 0.6);
}

.placeholder-red-700\/60::placeholder {
  color: rgb(185 28 28 / 0.6);
}

.placeholder-red-700\/65::-moz-placeholder {
  color: rgb(185 28 28 / 0.65);
}

.placeholder-red-700\/65::placeholder {
  color: rgb(185 28 28 / 0.65);
}

.placeholder-red-700\/70::-moz-placeholder {
  color: rgb(185 28 28 / 0.7);
}

.placeholder-red-700\/70::placeholder {
  color: rgb(185 28 28 / 0.7);
}

.placeholder-red-700\/75::-moz-placeholder {
  color: rgb(185 28 28 / 0.75);
}

.placeholder-red-700\/75::placeholder {
  color: rgb(185 28 28 / 0.75);
}

.placeholder-red-700\/80::-moz-placeholder {
  color: rgb(185 28 28 / 0.8);
}

.placeholder-red-700\/80::placeholder {
  color: rgb(185 28 28 / 0.8);
}

.placeholder-red-700\/85::-moz-placeholder {
  color: rgb(185 28 28 / 0.85);
}

.placeholder-red-700\/85::placeholder {
  color: rgb(185 28 28 / 0.85);
}

.placeholder-red-700\/90::-moz-placeholder {
  color: rgb(185 28 28 / 0.9);
}

.placeholder-red-700\/90::placeholder {
  color: rgb(185 28 28 / 0.9);
}

.placeholder-red-700\/95::-moz-placeholder {
  color: rgb(185 28 28 / 0.95);
}

.placeholder-red-700\/95::placeholder {
  color: rgb(185 28 28 / 0.95);
}

.placeholder-red-800::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(153 27 27 / var(--tw-placeholder-opacity, 1));
}

.placeholder-red-800::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(153 27 27 / var(--tw-placeholder-opacity, 1));
}

.placeholder-red-800\/0::-moz-placeholder {
  color: rgb(153 27 27 / 0);
}

.placeholder-red-800\/0::placeholder {
  color: rgb(153 27 27 / 0);
}

.placeholder-red-800\/10::-moz-placeholder {
  color: rgb(153 27 27 / 0.1);
}

.placeholder-red-800\/10::placeholder {
  color: rgb(153 27 27 / 0.1);
}

.placeholder-red-800\/100::-moz-placeholder {
  color: rgb(153 27 27 / 1);
}

.placeholder-red-800\/100::placeholder {
  color: rgb(153 27 27 / 1);
}

.placeholder-red-800\/15::-moz-placeholder {
  color: rgb(153 27 27 / 0.15);
}

.placeholder-red-800\/15::placeholder {
  color: rgb(153 27 27 / 0.15);
}

.placeholder-red-800\/20::-moz-placeholder {
  color: rgb(153 27 27 / 0.2);
}

.placeholder-red-800\/20::placeholder {
  color: rgb(153 27 27 / 0.2);
}

.placeholder-red-800\/25::-moz-placeholder {
  color: rgb(153 27 27 / 0.25);
}

.placeholder-red-800\/25::placeholder {
  color: rgb(153 27 27 / 0.25);
}

.placeholder-red-800\/30::-moz-placeholder {
  color: rgb(153 27 27 / 0.3);
}

.placeholder-red-800\/30::placeholder {
  color: rgb(153 27 27 / 0.3);
}

.placeholder-red-800\/35::-moz-placeholder {
  color: rgb(153 27 27 / 0.35);
}

.placeholder-red-800\/35::placeholder {
  color: rgb(153 27 27 / 0.35);
}

.placeholder-red-800\/40::-moz-placeholder {
  color: rgb(153 27 27 / 0.4);
}

.placeholder-red-800\/40::placeholder {
  color: rgb(153 27 27 / 0.4);
}

.placeholder-red-800\/45::-moz-placeholder {
  color: rgb(153 27 27 / 0.45);
}

.placeholder-red-800\/45::placeholder {
  color: rgb(153 27 27 / 0.45);
}

.placeholder-red-800\/5::-moz-placeholder {
  color: rgb(153 27 27 / 0.05);
}

.placeholder-red-800\/5::placeholder {
  color: rgb(153 27 27 / 0.05);
}

.placeholder-red-800\/50::-moz-placeholder {
  color: rgb(153 27 27 / 0.5);
}

.placeholder-red-800\/50::placeholder {
  color: rgb(153 27 27 / 0.5);
}

.placeholder-red-800\/55::-moz-placeholder {
  color: rgb(153 27 27 / 0.55);
}

.placeholder-red-800\/55::placeholder {
  color: rgb(153 27 27 / 0.55);
}

.placeholder-red-800\/60::-moz-placeholder {
  color: rgb(153 27 27 / 0.6);
}

.placeholder-red-800\/60::placeholder {
  color: rgb(153 27 27 / 0.6);
}

.placeholder-red-800\/65::-moz-placeholder {
  color: rgb(153 27 27 / 0.65);
}

.placeholder-red-800\/65::placeholder {
  color: rgb(153 27 27 / 0.65);
}

.placeholder-red-800\/70::-moz-placeholder {
  color: rgb(153 27 27 / 0.7);
}

.placeholder-red-800\/70::placeholder {
  color: rgb(153 27 27 / 0.7);
}

.placeholder-red-800\/75::-moz-placeholder {
  color: rgb(153 27 27 / 0.75);
}

.placeholder-red-800\/75::placeholder {
  color: rgb(153 27 27 / 0.75);
}

.placeholder-red-800\/80::-moz-placeholder {
  color: rgb(153 27 27 / 0.8);
}

.placeholder-red-800\/80::placeholder {
  color: rgb(153 27 27 / 0.8);
}

.placeholder-red-800\/85::-moz-placeholder {
  color: rgb(153 27 27 / 0.85);
}

.placeholder-red-800\/85::placeholder {
  color: rgb(153 27 27 / 0.85);
}

.placeholder-red-800\/90::-moz-placeholder {
  color: rgb(153 27 27 / 0.9);
}

.placeholder-red-800\/90::placeholder {
  color: rgb(153 27 27 / 0.9);
}

.placeholder-red-800\/95::-moz-placeholder {
  color: rgb(153 27 27 / 0.95);
}

.placeholder-red-800\/95::placeholder {
  color: rgb(153 27 27 / 0.95);
}

.placeholder-red-900::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(127 29 29 / var(--tw-placeholder-opacity, 1));
}

.placeholder-red-900::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(127 29 29 / var(--tw-placeholder-opacity, 1));
}

.placeholder-red-900\/0::-moz-placeholder {
  color: rgb(127 29 29 / 0);
}

.placeholder-red-900\/0::placeholder {
  color: rgb(127 29 29 / 0);
}

.placeholder-red-900\/10::-moz-placeholder {
  color: rgb(127 29 29 / 0.1);
}

.placeholder-red-900\/10::placeholder {
  color: rgb(127 29 29 / 0.1);
}

.placeholder-red-900\/100::-moz-placeholder {
  color: rgb(127 29 29 / 1);
}

.placeholder-red-900\/100::placeholder {
  color: rgb(127 29 29 / 1);
}

.placeholder-red-900\/15::-moz-placeholder {
  color: rgb(127 29 29 / 0.15);
}

.placeholder-red-900\/15::placeholder {
  color: rgb(127 29 29 / 0.15);
}

.placeholder-red-900\/20::-moz-placeholder {
  color: rgb(127 29 29 / 0.2);
}

.placeholder-red-900\/20::placeholder {
  color: rgb(127 29 29 / 0.2);
}

.placeholder-red-900\/25::-moz-placeholder {
  color: rgb(127 29 29 / 0.25);
}

.placeholder-red-900\/25::placeholder {
  color: rgb(127 29 29 / 0.25);
}

.placeholder-red-900\/30::-moz-placeholder {
  color: rgb(127 29 29 / 0.3);
}

.placeholder-red-900\/30::placeholder {
  color: rgb(127 29 29 / 0.3);
}

.placeholder-red-900\/35::-moz-placeholder {
  color: rgb(127 29 29 / 0.35);
}

.placeholder-red-900\/35::placeholder {
  color: rgb(127 29 29 / 0.35);
}

.placeholder-red-900\/40::-moz-placeholder {
  color: rgb(127 29 29 / 0.4);
}

.placeholder-red-900\/40::placeholder {
  color: rgb(127 29 29 / 0.4);
}

.placeholder-red-900\/45::-moz-placeholder {
  color: rgb(127 29 29 / 0.45);
}

.placeholder-red-900\/45::placeholder {
  color: rgb(127 29 29 / 0.45);
}

.placeholder-red-900\/5::-moz-placeholder {
  color: rgb(127 29 29 / 0.05);
}

.placeholder-red-900\/5::placeholder {
  color: rgb(127 29 29 / 0.05);
}

.placeholder-red-900\/50::-moz-placeholder {
  color: rgb(127 29 29 / 0.5);
}

.placeholder-red-900\/50::placeholder {
  color: rgb(127 29 29 / 0.5);
}

.placeholder-red-900\/55::-moz-placeholder {
  color: rgb(127 29 29 / 0.55);
}

.placeholder-red-900\/55::placeholder {
  color: rgb(127 29 29 / 0.55);
}

.placeholder-red-900\/60::-moz-placeholder {
  color: rgb(127 29 29 / 0.6);
}

.placeholder-red-900\/60::placeholder {
  color: rgb(127 29 29 / 0.6);
}

.placeholder-red-900\/65::-moz-placeholder {
  color: rgb(127 29 29 / 0.65);
}

.placeholder-red-900\/65::placeholder {
  color: rgb(127 29 29 / 0.65);
}

.placeholder-red-900\/70::-moz-placeholder {
  color: rgb(127 29 29 / 0.7);
}

.placeholder-red-900\/70::placeholder {
  color: rgb(127 29 29 / 0.7);
}

.placeholder-red-900\/75::-moz-placeholder {
  color: rgb(127 29 29 / 0.75);
}

.placeholder-red-900\/75::placeholder {
  color: rgb(127 29 29 / 0.75);
}

.placeholder-red-900\/80::-moz-placeholder {
  color: rgb(127 29 29 / 0.8);
}

.placeholder-red-900\/80::placeholder {
  color: rgb(127 29 29 / 0.8);
}

.placeholder-red-900\/85::-moz-placeholder {
  color: rgb(127 29 29 / 0.85);
}

.placeholder-red-900\/85::placeholder {
  color: rgb(127 29 29 / 0.85);
}

.placeholder-red-900\/90::-moz-placeholder {
  color: rgb(127 29 29 / 0.9);
}

.placeholder-red-900\/90::placeholder {
  color: rgb(127 29 29 / 0.9);
}

.placeholder-red-900\/95::-moz-placeholder {
  color: rgb(127 29 29 / 0.95);
}

.placeholder-red-900\/95::placeholder {
  color: rgb(127 29 29 / 0.95);
}

.placeholder-red-950::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(69 10 10 / var(--tw-placeholder-opacity, 1));
}

.placeholder-red-950::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(69 10 10 / var(--tw-placeholder-opacity, 1));
}

.placeholder-red-950\/0::-moz-placeholder {
  color: rgb(69 10 10 / 0);
}

.placeholder-red-950\/0::placeholder {
  color: rgb(69 10 10 / 0);
}

.placeholder-red-950\/10::-moz-placeholder {
  color: rgb(69 10 10 / 0.1);
}

.placeholder-red-950\/10::placeholder {
  color: rgb(69 10 10 / 0.1);
}

.placeholder-red-950\/100::-moz-placeholder {
  color: rgb(69 10 10 / 1);
}

.placeholder-red-950\/100::placeholder {
  color: rgb(69 10 10 / 1);
}

.placeholder-red-950\/15::-moz-placeholder {
  color: rgb(69 10 10 / 0.15);
}

.placeholder-red-950\/15::placeholder {
  color: rgb(69 10 10 / 0.15);
}

.placeholder-red-950\/20::-moz-placeholder {
  color: rgb(69 10 10 / 0.2);
}

.placeholder-red-950\/20::placeholder {
  color: rgb(69 10 10 / 0.2);
}

.placeholder-red-950\/25::-moz-placeholder {
  color: rgb(69 10 10 / 0.25);
}

.placeholder-red-950\/25::placeholder {
  color: rgb(69 10 10 / 0.25);
}

.placeholder-red-950\/30::-moz-placeholder {
  color: rgb(69 10 10 / 0.3);
}

.placeholder-red-950\/30::placeholder {
  color: rgb(69 10 10 / 0.3);
}

.placeholder-red-950\/35::-moz-placeholder {
  color: rgb(69 10 10 / 0.35);
}

.placeholder-red-950\/35::placeholder {
  color: rgb(69 10 10 / 0.35);
}

.placeholder-red-950\/40::-moz-placeholder {
  color: rgb(69 10 10 / 0.4);
}

.placeholder-red-950\/40::placeholder {
  color: rgb(69 10 10 / 0.4);
}

.placeholder-red-950\/45::-moz-placeholder {
  color: rgb(69 10 10 / 0.45);
}

.placeholder-red-950\/45::placeholder {
  color: rgb(69 10 10 / 0.45);
}

.placeholder-red-950\/5::-moz-placeholder {
  color: rgb(69 10 10 / 0.05);
}

.placeholder-red-950\/5::placeholder {
  color: rgb(69 10 10 / 0.05);
}

.placeholder-red-950\/50::-moz-placeholder {
  color: rgb(69 10 10 / 0.5);
}

.placeholder-red-950\/50::placeholder {
  color: rgb(69 10 10 / 0.5);
}

.placeholder-red-950\/55::-moz-placeholder {
  color: rgb(69 10 10 / 0.55);
}

.placeholder-red-950\/55::placeholder {
  color: rgb(69 10 10 / 0.55);
}

.placeholder-red-950\/60::-moz-placeholder {
  color: rgb(69 10 10 / 0.6);
}

.placeholder-red-950\/60::placeholder {
  color: rgb(69 10 10 / 0.6);
}

.placeholder-red-950\/65::-moz-placeholder {
  color: rgb(69 10 10 / 0.65);
}

.placeholder-red-950\/65::placeholder {
  color: rgb(69 10 10 / 0.65);
}

.placeholder-red-950\/70::-moz-placeholder {
  color: rgb(69 10 10 / 0.7);
}

.placeholder-red-950\/70::placeholder {
  color: rgb(69 10 10 / 0.7);
}

.placeholder-red-950\/75::-moz-placeholder {
  color: rgb(69 10 10 / 0.75);
}

.placeholder-red-950\/75::placeholder {
  color: rgb(69 10 10 / 0.75);
}

.placeholder-red-950\/80::-moz-placeholder {
  color: rgb(69 10 10 / 0.8);
}

.placeholder-red-950\/80::placeholder {
  color: rgb(69 10 10 / 0.8);
}

.placeholder-red-950\/85::-moz-placeholder {
  color: rgb(69 10 10 / 0.85);
}

.placeholder-red-950\/85::placeholder {
  color: rgb(69 10 10 / 0.85);
}

.placeholder-red-950\/90::-moz-placeholder {
  color: rgb(69 10 10 / 0.9);
}

.placeholder-red-950\/90::placeholder {
  color: rgb(69 10 10 / 0.9);
}

.placeholder-red-950\/95::-moz-placeholder {
  color: rgb(69 10 10 / 0.95);
}

.placeholder-red-950\/95::placeholder {
  color: rgb(69 10 10 / 0.95);
}

.placeholder-transparent::-moz-placeholder {
  color: transparent;
}

.placeholder-transparent::placeholder {
  color: transparent;
}

.placeholder-transparent\/0::-moz-placeholder {
  color: rgb(0 0 0 / 0);
}

.placeholder-transparent\/0::placeholder {
  color: rgb(0 0 0 / 0);
}

.placeholder-transparent\/10::-moz-placeholder {
  color: rgb(0 0 0 / 0.1);
}

.placeholder-transparent\/10::placeholder {
  color: rgb(0 0 0 / 0.1);
}

.placeholder-transparent\/100::-moz-placeholder {
  color: rgb(0 0 0 / 1);
}

.placeholder-transparent\/100::placeholder {
  color: rgb(0 0 0 / 1);
}

.placeholder-transparent\/15::-moz-placeholder {
  color: rgb(0 0 0 / 0.15);
}

.placeholder-transparent\/15::placeholder {
  color: rgb(0 0 0 / 0.15);
}

.placeholder-transparent\/20::-moz-placeholder {
  color: rgb(0 0 0 / 0.2);
}

.placeholder-transparent\/20::placeholder {
  color: rgb(0 0 0 / 0.2);
}

.placeholder-transparent\/25::-moz-placeholder {
  color: rgb(0 0 0 / 0.25);
}

.placeholder-transparent\/25::placeholder {
  color: rgb(0 0 0 / 0.25);
}

.placeholder-transparent\/30::-moz-placeholder {
  color: rgb(0 0 0 / 0.3);
}

.placeholder-transparent\/30::placeholder {
  color: rgb(0 0 0 / 0.3);
}

.placeholder-transparent\/35::-moz-placeholder {
  color: rgb(0 0 0 / 0.35);
}

.placeholder-transparent\/35::placeholder {
  color: rgb(0 0 0 / 0.35);
}

.placeholder-transparent\/40::-moz-placeholder {
  color: rgb(0 0 0 / 0.4);
}

.placeholder-transparent\/40::placeholder {
  color: rgb(0 0 0 / 0.4);
}

.placeholder-transparent\/45::-moz-placeholder {
  color: rgb(0 0 0 / 0.45);
}

.placeholder-transparent\/45::placeholder {
  color: rgb(0 0 0 / 0.45);
}

.placeholder-transparent\/5::-moz-placeholder {
  color: rgb(0 0 0 / 0.05);
}

.placeholder-transparent\/5::placeholder {
  color: rgb(0 0 0 / 0.05);
}

.placeholder-transparent\/50::-moz-placeholder {
  color: rgb(0 0 0 / 0.5);
}

.placeholder-transparent\/50::placeholder {
  color: rgb(0 0 0 / 0.5);
}

.placeholder-transparent\/55::-moz-placeholder {
  color: rgb(0 0 0 / 0.55);
}

.placeholder-transparent\/55::placeholder {
  color: rgb(0 0 0 / 0.55);
}

.placeholder-transparent\/60::-moz-placeholder {
  color: rgb(0 0 0 / 0.6);
}

.placeholder-transparent\/60::placeholder {
  color: rgb(0 0 0 / 0.6);
}

.placeholder-transparent\/65::-moz-placeholder {
  color: rgb(0 0 0 / 0.65);
}

.placeholder-transparent\/65::placeholder {
  color: rgb(0 0 0 / 0.65);
}

.placeholder-transparent\/70::-moz-placeholder {
  color: rgb(0 0 0 / 0.7);
}

.placeholder-transparent\/70::placeholder {
  color: rgb(0 0 0 / 0.7);
}

.placeholder-transparent\/75::-moz-placeholder {
  color: rgb(0 0 0 / 0.75);
}

.placeholder-transparent\/75::placeholder {
  color: rgb(0 0 0 / 0.75);
}

.placeholder-transparent\/80::-moz-placeholder {
  color: rgb(0 0 0 / 0.8);
}

.placeholder-transparent\/80::placeholder {
  color: rgb(0 0 0 / 0.8);
}

.placeholder-transparent\/85::-moz-placeholder {
  color: rgb(0 0 0 / 0.85);
}

.placeholder-transparent\/85::placeholder {
  color: rgb(0 0 0 / 0.85);
}

.placeholder-transparent\/90::-moz-placeholder {
  color: rgb(0 0 0 / 0.9);
}

.placeholder-transparent\/90::placeholder {
  color: rgb(0 0 0 / 0.9);
}

.placeholder-transparent\/95::-moz-placeholder {
  color: rgb(0 0 0 / 0.95);
}

.placeholder-transparent\/95::placeholder {
  color: rgb(0 0 0 / 0.95);
}

.placeholder-white::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(255 255 255 / var(--tw-placeholder-opacity, 1));
}

.placeholder-white::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(255 255 255 / var(--tw-placeholder-opacity, 1));
}

.placeholder-white\/0::-moz-placeholder {
  color: rgb(255 255 255 / 0);
}

.placeholder-white\/0::placeholder {
  color: rgb(255 255 255 / 0);
}

.placeholder-white\/10::-moz-placeholder {
  color: rgb(255 255 255 / 0.1);
}

.placeholder-white\/10::placeholder {
  color: rgb(255 255 255 / 0.1);
}

.placeholder-white\/100::-moz-placeholder {
  color: rgb(255 255 255 / 1);
}

.placeholder-white\/100::placeholder {
  color: rgb(255 255 255 / 1);
}

.placeholder-white\/15::-moz-placeholder {
  color: rgb(255 255 255 / 0.15);
}

.placeholder-white\/15::placeholder {
  color: rgb(255 255 255 / 0.15);
}

.placeholder-white\/20::-moz-placeholder {
  color: rgb(255 255 255 / 0.2);
}

.placeholder-white\/20::placeholder {
  color: rgb(255 255 255 / 0.2);
}

.placeholder-white\/25::-moz-placeholder {
  color: rgb(255 255 255 / 0.25);
}

.placeholder-white\/25::placeholder {
  color: rgb(255 255 255 / 0.25);
}

.placeholder-white\/30::-moz-placeholder {
  color: rgb(255 255 255 / 0.3);
}

.placeholder-white\/30::placeholder {
  color: rgb(255 255 255 / 0.3);
}

.placeholder-white\/35::-moz-placeholder {
  color: rgb(255 255 255 / 0.35);
}

.placeholder-white\/35::placeholder {
  color: rgb(255 255 255 / 0.35);
}

.placeholder-white\/40::-moz-placeholder {
  color: rgb(255 255 255 / 0.4);
}

.placeholder-white\/40::placeholder {
  color: rgb(255 255 255 / 0.4);
}

.placeholder-white\/45::-moz-placeholder {
  color: rgb(255 255 255 / 0.45);
}

.placeholder-white\/45::placeholder {
  color: rgb(255 255 255 / 0.45);
}

.placeholder-white\/5::-moz-placeholder {
  color: rgb(255 255 255 / 0.05);
}

.placeholder-white\/5::placeholder {
  color: rgb(255 255 255 / 0.05);
}

.placeholder-white\/50::-moz-placeholder {
  color: rgb(255 255 255 / 0.5);
}

.placeholder-white\/50::placeholder {
  color: rgb(255 255 255 / 0.5);
}

.placeholder-white\/55::-moz-placeholder {
  color: rgb(255 255 255 / 0.55);
}

.placeholder-white\/55::placeholder {
  color: rgb(255 255 255 / 0.55);
}

.placeholder-white\/60::-moz-placeholder {
  color: rgb(255 255 255 / 0.6);
}

.placeholder-white\/60::placeholder {
  color: rgb(255 255 255 / 0.6);
}

.placeholder-white\/65::-moz-placeholder {
  color: rgb(255 255 255 / 0.65);
}

.placeholder-white\/65::placeholder {
  color: rgb(255 255 255 / 0.65);
}

.placeholder-white\/70::-moz-placeholder {
  color: rgb(255 255 255 / 0.7);
}

.placeholder-white\/70::placeholder {
  color: rgb(255 255 255 / 0.7);
}

.placeholder-white\/75::-moz-placeholder {
  color: rgb(255 255 255 / 0.75);
}

.placeholder-white\/75::placeholder {
  color: rgb(255 255 255 / 0.75);
}

.placeholder-white\/80::-moz-placeholder {
  color: rgb(255 255 255 / 0.8);
}

.placeholder-white\/80::placeholder {
  color: rgb(255 255 255 / 0.8);
}

.placeholder-white\/85::-moz-placeholder {
  color: rgb(255 255 255 / 0.85);
}

.placeholder-white\/85::placeholder {
  color: rgb(255 255 255 / 0.85);
}

.placeholder-white\/90::-moz-placeholder {
  color: rgb(255 255 255 / 0.9);
}

.placeholder-white\/90::placeholder {
  color: rgb(255 255 255 / 0.9);
}

.placeholder-white\/95::-moz-placeholder {
  color: rgb(255 255 255 / 0.95);
}

.placeholder-white\/95::placeholder {
  color: rgb(255 255 255 / 0.95);
}

.placeholder-opacity-0::-moz-placeholder {
  --tw-placeholder-opacity: 0;
}

.placeholder-opacity-0::placeholder {
  --tw-placeholder-opacity: 0;
}

.placeholder-opacity-10::-moz-placeholder {
  --tw-placeholder-opacity: 0.1;
}

.placeholder-opacity-10::placeholder {
  --tw-placeholder-opacity: 0.1;
}

.placeholder-opacity-100::-moz-placeholder {
  --tw-placeholder-opacity: 1;
}

.placeholder-opacity-100::placeholder {
  --tw-placeholder-opacity: 1;
}

.placeholder-opacity-15::-moz-placeholder {
  --tw-placeholder-opacity: 0.15;
}

.placeholder-opacity-15::placeholder {
  --tw-placeholder-opacity: 0.15;
}

.placeholder-opacity-20::-moz-placeholder {
  --tw-placeholder-opacity: 0.2;
}

.placeholder-opacity-20::placeholder {
  --tw-placeholder-opacity: 0.2;
}

.placeholder-opacity-25::-moz-placeholder {
  --tw-placeholder-opacity: 0.25;
}

.placeholder-opacity-25::placeholder {
  --tw-placeholder-opacity: 0.25;
}

.placeholder-opacity-30::-moz-placeholder {
  --tw-placeholder-opacity: 0.3;
}

.placeholder-opacity-30::placeholder {
  --tw-placeholder-opacity: 0.3;
}

.placeholder-opacity-35::-moz-placeholder {
  --tw-placeholder-opacity: 0.35;
}

.placeholder-opacity-35::placeholder {
  --tw-placeholder-opacity: 0.35;
}

.placeholder-opacity-40::-moz-placeholder {
  --tw-placeholder-opacity: 0.4;
}

.placeholder-opacity-40::placeholder {
  --tw-placeholder-opacity: 0.4;
}

.placeholder-opacity-45::-moz-placeholder {
  --tw-placeholder-opacity: 0.45;
}

.placeholder-opacity-45::placeholder {
  --tw-placeholder-opacity: 0.45;
}

.placeholder-opacity-5::-moz-placeholder {
  --tw-placeholder-opacity: 0.05;
}

.placeholder-opacity-5::placeholder {
  --tw-placeholder-opacity: 0.05;
}

.placeholder-opacity-50::-moz-placeholder {
  --tw-placeholder-opacity: 0.5;
}

.placeholder-opacity-50::placeholder {
  --tw-placeholder-opacity: 0.5;
}

.placeholder-opacity-55::-moz-placeholder {
  --tw-placeholder-opacity: 0.55;
}

.placeholder-opacity-55::placeholder {
  --tw-placeholder-opacity: 0.55;
}

.placeholder-opacity-60::-moz-placeholder {
  --tw-placeholder-opacity: 0.6;
}

.placeholder-opacity-60::placeholder {
  --tw-placeholder-opacity: 0.6;
}

.placeholder-opacity-65::-moz-placeholder {
  --tw-placeholder-opacity: 0.65;
}

.placeholder-opacity-65::placeholder {
  --tw-placeholder-opacity: 0.65;
}

.placeholder-opacity-70::-moz-placeholder {
  --tw-placeholder-opacity: 0.7;
}

.placeholder-opacity-70::placeholder {
  --tw-placeholder-opacity: 0.7;
}

.placeholder-opacity-75::-moz-placeholder {
  --tw-placeholder-opacity: 0.75;
}

.placeholder-opacity-75::placeholder {
  --tw-placeholder-opacity: 0.75;
}

.placeholder-opacity-80::-moz-placeholder {
  --tw-placeholder-opacity: 0.8;
}

.placeholder-opacity-80::placeholder {
  --tw-placeholder-opacity: 0.8;
}

.placeholder-opacity-85::-moz-placeholder {
  --tw-placeholder-opacity: 0.85;
}

.placeholder-opacity-85::placeholder {
  --tw-placeholder-opacity: 0.85;
}

.placeholder-opacity-90::-moz-placeholder {
  --tw-placeholder-opacity: 0.9;
}

.placeholder-opacity-90::placeholder {
  --tw-placeholder-opacity: 0.9;
}

.placeholder-opacity-95::-moz-placeholder {
  --tw-placeholder-opacity: 0.95;
}

.placeholder-opacity-95::placeholder {
  --tw-placeholder-opacity: 0.95;
}

.caret-black {
  caret-color: #000;
}

.caret-black\/0 {
  caret-color: rgb(0 0 0 / 0);
}

.caret-black\/10 {
  caret-color: rgb(0 0 0 / 0.1);
}

.caret-black\/100 {
  caret-color: rgb(0 0 0 / 1);
}

.caret-black\/15 {
  caret-color: rgb(0 0 0 / 0.15);
}

.caret-black\/20 {
  caret-color: rgb(0 0 0 / 0.2);
}

.caret-black\/25 {
  caret-color: rgb(0 0 0 / 0.25);
}

.caret-black\/30 {
  caret-color: rgb(0 0 0 / 0.3);
}

.caret-black\/35 {
  caret-color: rgb(0 0 0 / 0.35);
}

.caret-black\/40 {
  caret-color: rgb(0 0 0 / 0.4);
}

.caret-black\/45 {
  caret-color: rgb(0 0 0 / 0.45);
}

.caret-black\/5 {
  caret-color: rgb(0 0 0 / 0.05);
}

.caret-black\/50 {
  caret-color: rgb(0 0 0 / 0.5);
}

.caret-black\/55 {
  caret-color: rgb(0 0 0 / 0.55);
}

.caret-black\/60 {
  caret-color: rgb(0 0 0 / 0.6);
}

.caret-black\/65 {
  caret-color: rgb(0 0 0 / 0.65);
}

.caret-black\/70 {
  caret-color: rgb(0 0 0 / 0.7);
}

.caret-black\/75 {
  caret-color: rgb(0 0 0 / 0.75);
}

.caret-black\/80 {
  caret-color: rgb(0 0 0 / 0.8);
}

.caret-black\/85 {
  caret-color: rgb(0 0 0 / 0.85);
}

.caret-black\/90 {
  caret-color: rgb(0 0 0 / 0.9);
}

.caret-black\/95 {
  caret-color: rgb(0 0 0 / 0.95);
}

.caret-blue-100 {
  caret-color: #dbeafe;
}

.caret-blue-100\/0 {
  caret-color: rgb(219 234 254 / 0);
}

.caret-blue-100\/10 {
  caret-color: rgb(219 234 254 / 0.1);
}

.caret-blue-100\/100 {
  caret-color: rgb(219 234 254 / 1);
}

.caret-blue-100\/15 {
  caret-color: rgb(219 234 254 / 0.15);
}

.caret-blue-100\/20 {
  caret-color: rgb(219 234 254 / 0.2);
}

.caret-blue-100\/25 {
  caret-color: rgb(219 234 254 / 0.25);
}

.caret-blue-100\/30 {
  caret-color: rgb(219 234 254 / 0.3);
}

.caret-blue-100\/35 {
  caret-color: rgb(219 234 254 / 0.35);
}

.caret-blue-100\/40 {
  caret-color: rgb(219 234 254 / 0.4);
}

.caret-blue-100\/45 {
  caret-color: rgb(219 234 254 / 0.45);
}

.caret-blue-100\/5 {
  caret-color: rgb(219 234 254 / 0.05);
}

.caret-blue-100\/50 {
  caret-color: rgb(219 234 254 / 0.5);
}

.caret-blue-100\/55 {
  caret-color: rgb(219 234 254 / 0.55);
}

.caret-blue-100\/60 {
  caret-color: rgb(219 234 254 / 0.6);
}

.caret-blue-100\/65 {
  caret-color: rgb(219 234 254 / 0.65);
}

.caret-blue-100\/70 {
  caret-color: rgb(219 234 254 / 0.7);
}

.caret-blue-100\/75 {
  caret-color: rgb(219 234 254 / 0.75);
}

.caret-blue-100\/80 {
  caret-color: rgb(219 234 254 / 0.8);
}

.caret-blue-100\/85 {
  caret-color: rgb(219 234 254 / 0.85);
}

.caret-blue-100\/90 {
  caret-color: rgb(219 234 254 / 0.9);
}

.caret-blue-100\/95 {
  caret-color: rgb(219 234 254 / 0.95);
}

.caret-blue-200 {
  caret-color: #bfdbfe;
}

.caret-blue-200\/0 {
  caret-color: rgb(191 219 254 / 0);
}

.caret-blue-200\/10 {
  caret-color: rgb(191 219 254 / 0.1);
}

.caret-blue-200\/100 {
  caret-color: rgb(191 219 254 / 1);
}

.caret-blue-200\/15 {
  caret-color: rgb(191 219 254 / 0.15);
}

.caret-blue-200\/20 {
  caret-color: rgb(191 219 254 / 0.2);
}

.caret-blue-200\/25 {
  caret-color: rgb(191 219 254 / 0.25);
}

.caret-blue-200\/30 {
  caret-color: rgb(191 219 254 / 0.3);
}

.caret-blue-200\/35 {
  caret-color: rgb(191 219 254 / 0.35);
}

.caret-blue-200\/40 {
  caret-color: rgb(191 219 254 / 0.4);
}

.caret-blue-200\/45 {
  caret-color: rgb(191 219 254 / 0.45);
}

.caret-blue-200\/5 {
  caret-color: rgb(191 219 254 / 0.05);
}

.caret-blue-200\/50 {
  caret-color: rgb(191 219 254 / 0.5);
}

.caret-blue-200\/55 {
  caret-color: rgb(191 219 254 / 0.55);
}

.caret-blue-200\/60 {
  caret-color: rgb(191 219 254 / 0.6);
}

.caret-blue-200\/65 {
  caret-color: rgb(191 219 254 / 0.65);
}

.caret-blue-200\/70 {
  caret-color: rgb(191 219 254 / 0.7);
}

.caret-blue-200\/75 {
  caret-color: rgb(191 219 254 / 0.75);
}

.caret-blue-200\/80 {
  caret-color: rgb(191 219 254 / 0.8);
}

.caret-blue-200\/85 {
  caret-color: rgb(191 219 254 / 0.85);
}

.caret-blue-200\/90 {
  caret-color: rgb(191 219 254 / 0.9);
}

.caret-blue-200\/95 {
  caret-color: rgb(191 219 254 / 0.95);
}

.caret-blue-300 {
  caret-color: #93c5fd;
}

.caret-blue-300\/0 {
  caret-color: rgb(147 197 253 / 0);
}

.caret-blue-300\/10 {
  caret-color: rgb(147 197 253 / 0.1);
}

.caret-blue-300\/100 {
  caret-color: rgb(147 197 253 / 1);
}

.caret-blue-300\/15 {
  caret-color: rgb(147 197 253 / 0.15);
}

.caret-blue-300\/20 {
  caret-color: rgb(147 197 253 / 0.2);
}

.caret-blue-300\/25 {
  caret-color: rgb(147 197 253 / 0.25);
}

.caret-blue-300\/30 {
  caret-color: rgb(147 197 253 / 0.3);
}

.caret-blue-300\/35 {
  caret-color: rgb(147 197 253 / 0.35);
}

.caret-blue-300\/40 {
  caret-color: rgb(147 197 253 / 0.4);
}

.caret-blue-300\/45 {
  caret-color: rgb(147 197 253 / 0.45);
}

.caret-blue-300\/5 {
  caret-color: rgb(147 197 253 / 0.05);
}

.caret-blue-300\/50 {
  caret-color: rgb(147 197 253 / 0.5);
}

.caret-blue-300\/55 {
  caret-color: rgb(147 197 253 / 0.55);
}

.caret-blue-300\/60 {
  caret-color: rgb(147 197 253 / 0.6);
}

.caret-blue-300\/65 {
  caret-color: rgb(147 197 253 / 0.65);
}

.caret-blue-300\/70 {
  caret-color: rgb(147 197 253 / 0.7);
}

.caret-blue-300\/75 {
  caret-color: rgb(147 197 253 / 0.75);
}

.caret-blue-300\/80 {
  caret-color: rgb(147 197 253 / 0.8);
}

.caret-blue-300\/85 {
  caret-color: rgb(147 197 253 / 0.85);
}

.caret-blue-300\/90 {
  caret-color: rgb(147 197 253 / 0.9);
}

.caret-blue-300\/95 {
  caret-color: rgb(147 197 253 / 0.95);
}

.caret-blue-400 {
  caret-color: #60a5fa;
}

.caret-blue-400\/0 {
  caret-color: rgb(96 165 250 / 0);
}

.caret-blue-400\/10 {
  caret-color: rgb(96 165 250 / 0.1);
}

.caret-blue-400\/100 {
  caret-color: rgb(96 165 250 / 1);
}

.caret-blue-400\/15 {
  caret-color: rgb(96 165 250 / 0.15);
}

.caret-blue-400\/20 {
  caret-color: rgb(96 165 250 / 0.2);
}

.caret-blue-400\/25 {
  caret-color: rgb(96 165 250 / 0.25);
}

.caret-blue-400\/30 {
  caret-color: rgb(96 165 250 / 0.3);
}

.caret-blue-400\/35 {
  caret-color: rgb(96 165 250 / 0.35);
}

.caret-blue-400\/40 {
  caret-color: rgb(96 165 250 / 0.4);
}

.caret-blue-400\/45 {
  caret-color: rgb(96 165 250 / 0.45);
}

.caret-blue-400\/5 {
  caret-color: rgb(96 165 250 / 0.05);
}

.caret-blue-400\/50 {
  caret-color: rgb(96 165 250 / 0.5);
}

.caret-blue-400\/55 {
  caret-color: rgb(96 165 250 / 0.55);
}

.caret-blue-400\/60 {
  caret-color: rgb(96 165 250 / 0.6);
}

.caret-blue-400\/65 {
  caret-color: rgb(96 165 250 / 0.65);
}

.caret-blue-400\/70 {
  caret-color: rgb(96 165 250 / 0.7);
}

.caret-blue-400\/75 {
  caret-color: rgb(96 165 250 / 0.75);
}

.caret-blue-400\/80 {
  caret-color: rgb(96 165 250 / 0.8);
}

.caret-blue-400\/85 {
  caret-color: rgb(96 165 250 / 0.85);
}

.caret-blue-400\/90 {
  caret-color: rgb(96 165 250 / 0.9);
}

.caret-blue-400\/95 {
  caret-color: rgb(96 165 250 / 0.95);
}

.caret-blue-50 {
  caret-color: #eff6ff;
}

.caret-blue-50\/0 {
  caret-color: rgb(239 246 255 / 0);
}

.caret-blue-50\/10 {
  caret-color: rgb(239 246 255 / 0.1);
}

.caret-blue-50\/100 {
  caret-color: rgb(239 246 255 / 1);
}

.caret-blue-50\/15 {
  caret-color: rgb(239 246 255 / 0.15);
}

.caret-blue-50\/20 {
  caret-color: rgb(239 246 255 / 0.2);
}

.caret-blue-50\/25 {
  caret-color: rgb(239 246 255 / 0.25);
}

.caret-blue-50\/30 {
  caret-color: rgb(239 246 255 / 0.3);
}

.caret-blue-50\/35 {
  caret-color: rgb(239 246 255 / 0.35);
}

.caret-blue-50\/40 {
  caret-color: rgb(239 246 255 / 0.4);
}

.caret-blue-50\/45 {
  caret-color: rgb(239 246 255 / 0.45);
}

.caret-blue-50\/5 {
  caret-color: rgb(239 246 255 / 0.05);
}

.caret-blue-50\/50 {
  caret-color: rgb(239 246 255 / 0.5);
}

.caret-blue-50\/55 {
  caret-color: rgb(239 246 255 / 0.55);
}

.caret-blue-50\/60 {
  caret-color: rgb(239 246 255 / 0.6);
}

.caret-blue-50\/65 {
  caret-color: rgb(239 246 255 / 0.65);
}

.caret-blue-50\/70 {
  caret-color: rgb(239 246 255 / 0.7);
}

.caret-blue-50\/75 {
  caret-color: rgb(239 246 255 / 0.75);
}

.caret-blue-50\/80 {
  caret-color: rgb(239 246 255 / 0.8);
}

.caret-blue-50\/85 {
  caret-color: rgb(239 246 255 / 0.85);
}

.caret-blue-50\/90 {
  caret-color: rgb(239 246 255 / 0.9);
}

.caret-blue-50\/95 {
  caret-color: rgb(239 246 255 / 0.95);
}

.caret-blue-500 {
  caret-color: #3b82f6;
}

.caret-blue-500\/0 {
  caret-color: rgb(59 130 246 / 0);
}

.caret-blue-500\/10 {
  caret-color: rgb(59 130 246 / 0.1);
}

.caret-blue-500\/100 {
  caret-color: rgb(59 130 246 / 1);
}

.caret-blue-500\/15 {
  caret-color: rgb(59 130 246 / 0.15);
}

.caret-blue-500\/20 {
  caret-color: rgb(59 130 246 / 0.2);
}

.caret-blue-500\/25 {
  caret-color: rgb(59 130 246 / 0.25);
}

.caret-blue-500\/30 {
  caret-color: rgb(59 130 246 / 0.3);
}

.caret-blue-500\/35 {
  caret-color: rgb(59 130 246 / 0.35);
}

.caret-blue-500\/40 {
  caret-color: rgb(59 130 246 / 0.4);
}

.caret-blue-500\/45 {
  caret-color: rgb(59 130 246 / 0.45);
}

.caret-blue-500\/5 {
  caret-color: rgb(59 130 246 / 0.05);
}

.caret-blue-500\/50 {
  caret-color: rgb(59 130 246 / 0.5);
}

.caret-blue-500\/55 {
  caret-color: rgb(59 130 246 / 0.55);
}

.caret-blue-500\/60 {
  caret-color: rgb(59 130 246 / 0.6);
}

.caret-blue-500\/65 {
  caret-color: rgb(59 130 246 / 0.65);
}

.caret-blue-500\/70 {
  caret-color: rgb(59 130 246 / 0.7);
}

.caret-blue-500\/75 {
  caret-color: rgb(59 130 246 / 0.75);
}

.caret-blue-500\/80 {
  caret-color: rgb(59 130 246 / 0.8);
}

.caret-blue-500\/85 {
  caret-color: rgb(59 130 246 / 0.85);
}

.caret-blue-500\/90 {
  caret-color: rgb(59 130 246 / 0.9);
}

.caret-blue-500\/95 {
  caret-color: rgb(59 130 246 / 0.95);
}

.caret-blue-600 {
  caret-color: #2563eb;
}

.caret-blue-600\/0 {
  caret-color: rgb(37 99 235 / 0);
}

.caret-blue-600\/10 {
  caret-color: rgb(37 99 235 / 0.1);
}

.caret-blue-600\/100 {
  caret-color: rgb(37 99 235 / 1);
}

.caret-blue-600\/15 {
  caret-color: rgb(37 99 235 / 0.15);
}

.caret-blue-600\/20 {
  caret-color: rgb(37 99 235 / 0.2);
}

.caret-blue-600\/25 {
  caret-color: rgb(37 99 235 / 0.25);
}

.caret-blue-600\/30 {
  caret-color: rgb(37 99 235 / 0.3);
}

.caret-blue-600\/35 {
  caret-color: rgb(37 99 235 / 0.35);
}

.caret-blue-600\/40 {
  caret-color: rgb(37 99 235 / 0.4);
}

.caret-blue-600\/45 {
  caret-color: rgb(37 99 235 / 0.45);
}

.caret-blue-600\/5 {
  caret-color: rgb(37 99 235 / 0.05);
}

.caret-blue-600\/50 {
  caret-color: rgb(37 99 235 / 0.5);
}

.caret-blue-600\/55 {
  caret-color: rgb(37 99 235 / 0.55);
}

.caret-blue-600\/60 {
  caret-color: rgb(37 99 235 / 0.6);
}

.caret-blue-600\/65 {
  caret-color: rgb(37 99 235 / 0.65);
}

.caret-blue-600\/70 {
  caret-color: rgb(37 99 235 / 0.7);
}

.caret-blue-600\/75 {
  caret-color: rgb(37 99 235 / 0.75);
}

.caret-blue-600\/80 {
  caret-color: rgb(37 99 235 / 0.8);
}

.caret-blue-600\/85 {
  caret-color: rgb(37 99 235 / 0.85);
}

.caret-blue-600\/90 {
  caret-color: rgb(37 99 235 / 0.9);
}

.caret-blue-600\/95 {
  caret-color: rgb(37 99 235 / 0.95);
}

.caret-blue-700 {
  caret-color: #1d4ed8;
}

.caret-blue-700\/0 {
  caret-color: rgb(29 78 216 / 0);
}

.caret-blue-700\/10 {
  caret-color: rgb(29 78 216 / 0.1);
}

.caret-blue-700\/100 {
  caret-color: rgb(29 78 216 / 1);
}

.caret-blue-700\/15 {
  caret-color: rgb(29 78 216 / 0.15);
}

.caret-blue-700\/20 {
  caret-color: rgb(29 78 216 / 0.2);
}

.caret-blue-700\/25 {
  caret-color: rgb(29 78 216 / 0.25);
}

.caret-blue-700\/30 {
  caret-color: rgb(29 78 216 / 0.3);
}

.caret-blue-700\/35 {
  caret-color: rgb(29 78 216 / 0.35);
}

.caret-blue-700\/40 {
  caret-color: rgb(29 78 216 / 0.4);
}

.caret-blue-700\/45 {
  caret-color: rgb(29 78 216 / 0.45);
}

.caret-blue-700\/5 {
  caret-color: rgb(29 78 216 / 0.05);
}

.caret-blue-700\/50 {
  caret-color: rgb(29 78 216 / 0.5);
}

.caret-blue-700\/55 {
  caret-color: rgb(29 78 216 / 0.55);
}

.caret-blue-700\/60 {
  caret-color: rgb(29 78 216 / 0.6);
}

.caret-blue-700\/65 {
  caret-color: rgb(29 78 216 / 0.65);
}

.caret-blue-700\/70 {
  caret-color: rgb(29 78 216 / 0.7);
}

.caret-blue-700\/75 {
  caret-color: rgb(29 78 216 / 0.75);
}

.caret-blue-700\/80 {
  caret-color: rgb(29 78 216 / 0.8);
}

.caret-blue-700\/85 {
  caret-color: rgb(29 78 216 / 0.85);
}

.caret-blue-700\/90 {
  caret-color: rgb(29 78 216 / 0.9);
}

.caret-blue-700\/95 {
  caret-color: rgb(29 78 216 / 0.95);
}

.caret-blue-800 {
  caret-color: #1e40af;
}

.caret-blue-800\/0 {
  caret-color: rgb(30 64 175 / 0);
}

.caret-blue-800\/10 {
  caret-color: rgb(30 64 175 / 0.1);
}

.caret-blue-800\/100 {
  caret-color: rgb(30 64 175 / 1);
}

.caret-blue-800\/15 {
  caret-color: rgb(30 64 175 / 0.15);
}

.caret-blue-800\/20 {
  caret-color: rgb(30 64 175 / 0.2);
}

.caret-blue-800\/25 {
  caret-color: rgb(30 64 175 / 0.25);
}

.caret-blue-800\/30 {
  caret-color: rgb(30 64 175 / 0.3);
}

.caret-blue-800\/35 {
  caret-color: rgb(30 64 175 / 0.35);
}

.caret-blue-800\/40 {
  caret-color: rgb(30 64 175 / 0.4);
}

.caret-blue-800\/45 {
  caret-color: rgb(30 64 175 / 0.45);
}

.caret-blue-800\/5 {
  caret-color: rgb(30 64 175 / 0.05);
}

.caret-blue-800\/50 {
  caret-color: rgb(30 64 175 / 0.5);
}

.caret-blue-800\/55 {
  caret-color: rgb(30 64 175 / 0.55);
}

.caret-blue-800\/60 {
  caret-color: rgb(30 64 175 / 0.6);
}

.caret-blue-800\/65 {
  caret-color: rgb(30 64 175 / 0.65);
}

.caret-blue-800\/70 {
  caret-color: rgb(30 64 175 / 0.7);
}

.caret-blue-800\/75 {
  caret-color: rgb(30 64 175 / 0.75);
}

.caret-blue-800\/80 {
  caret-color: rgb(30 64 175 / 0.8);
}

.caret-blue-800\/85 {
  caret-color: rgb(30 64 175 / 0.85);
}

.caret-blue-800\/90 {
  caret-color: rgb(30 64 175 / 0.9);
}

.caret-blue-800\/95 {
  caret-color: rgb(30 64 175 / 0.95);
}

.caret-blue-900 {
  caret-color: #1e3a8a;
}

.caret-blue-900\/0 {
  caret-color: rgb(30 58 138 / 0);
}

.caret-blue-900\/10 {
  caret-color: rgb(30 58 138 / 0.1);
}

.caret-blue-900\/100 {
  caret-color: rgb(30 58 138 / 1);
}

.caret-blue-900\/15 {
  caret-color: rgb(30 58 138 / 0.15);
}

.caret-blue-900\/20 {
  caret-color: rgb(30 58 138 / 0.2);
}

.caret-blue-900\/25 {
  caret-color: rgb(30 58 138 / 0.25);
}

.caret-blue-900\/30 {
  caret-color: rgb(30 58 138 / 0.3);
}

.caret-blue-900\/35 {
  caret-color: rgb(30 58 138 / 0.35);
}

.caret-blue-900\/40 {
  caret-color: rgb(30 58 138 / 0.4);
}

.caret-blue-900\/45 {
  caret-color: rgb(30 58 138 / 0.45);
}

.caret-blue-900\/5 {
  caret-color: rgb(30 58 138 / 0.05);
}

.caret-blue-900\/50 {
  caret-color: rgb(30 58 138 / 0.5);
}

.caret-blue-900\/55 {
  caret-color: rgb(30 58 138 / 0.55);
}

.caret-blue-900\/60 {
  caret-color: rgb(30 58 138 / 0.6);
}

.caret-blue-900\/65 {
  caret-color: rgb(30 58 138 / 0.65);
}

.caret-blue-900\/70 {
  caret-color: rgb(30 58 138 / 0.7);
}

.caret-blue-900\/75 {
  caret-color: rgb(30 58 138 / 0.75);
}

.caret-blue-900\/80 {
  caret-color: rgb(30 58 138 / 0.8);
}

.caret-blue-900\/85 {
  caret-color: rgb(30 58 138 / 0.85);
}

.caret-blue-900\/90 {
  caret-color: rgb(30 58 138 / 0.9);
}

.caret-blue-900\/95 {
  caret-color: rgb(30 58 138 / 0.95);
}

.caret-blue-950 {
  caret-color: #172554;
}

.caret-blue-950\/0 {
  caret-color: rgb(23 37 84 / 0);
}

.caret-blue-950\/10 {
  caret-color: rgb(23 37 84 / 0.1);
}

.caret-blue-950\/100 {
  caret-color: rgb(23 37 84 / 1);
}

.caret-blue-950\/15 {
  caret-color: rgb(23 37 84 / 0.15);
}

.caret-blue-950\/20 {
  caret-color: rgb(23 37 84 / 0.2);
}

.caret-blue-950\/25 {
  caret-color: rgb(23 37 84 / 0.25);
}

.caret-blue-950\/30 {
  caret-color: rgb(23 37 84 / 0.3);
}

.caret-blue-950\/35 {
  caret-color: rgb(23 37 84 / 0.35);
}

.caret-blue-950\/40 {
  caret-color: rgb(23 37 84 / 0.4);
}

.caret-blue-950\/45 {
  caret-color: rgb(23 37 84 / 0.45);
}

.caret-blue-950\/5 {
  caret-color: rgb(23 37 84 / 0.05);
}

.caret-blue-950\/50 {
  caret-color: rgb(23 37 84 / 0.5);
}

.caret-blue-950\/55 {
  caret-color: rgb(23 37 84 / 0.55);
}

.caret-blue-950\/60 {
  caret-color: rgb(23 37 84 / 0.6);
}

.caret-blue-950\/65 {
  caret-color: rgb(23 37 84 / 0.65);
}

.caret-blue-950\/70 {
  caret-color: rgb(23 37 84 / 0.7);
}

.caret-blue-950\/75 {
  caret-color: rgb(23 37 84 / 0.75);
}

.caret-blue-950\/80 {
  caret-color: rgb(23 37 84 / 0.8);
}

.caret-blue-950\/85 {
  caret-color: rgb(23 37 84 / 0.85);
}

.caret-blue-950\/90 {
  caret-color: rgb(23 37 84 / 0.9);
}

.caret-blue-950\/95 {
  caret-color: rgb(23 37 84 / 0.95);
}

.caret-current {
  caret-color: currentColor;
}

.caret-eva-blue {
  caret-color: #1A213E;
}

.caret-eva-blue-appt {
  caret-color: rgba(52, 137, 207);
}

.caret-eva-blue-appt\/0 {
  caret-color: rgba(52, 137, 207, 0);
}

.caret-eva-blue-appt\/10 {
  caret-color: rgba(52, 137, 207, 0.1);
}

.caret-eva-blue-appt\/100 {
  caret-color: rgba(52, 137, 207, 1);
}

.caret-eva-blue-appt\/15 {
  caret-color: rgba(52, 137, 207, 0.15);
}

.caret-eva-blue-appt\/20 {
  caret-color: rgba(52, 137, 207, 0.2);
}

.caret-eva-blue-appt\/25 {
  caret-color: rgba(52, 137, 207, 0.25);
}

.caret-eva-blue-appt\/30 {
  caret-color: rgba(52, 137, 207, 0.3);
}

.caret-eva-blue-appt\/35 {
  caret-color: rgba(52, 137, 207, 0.35);
}

.caret-eva-blue-appt\/40 {
  caret-color: rgba(52, 137, 207, 0.4);
}

.caret-eva-blue-appt\/45 {
  caret-color: rgba(52, 137, 207, 0.45);
}

.caret-eva-blue-appt\/5 {
  caret-color: rgba(52, 137, 207, 0.05);
}

.caret-eva-blue-appt\/50 {
  caret-color: rgba(52, 137, 207, 0.5);
}

.caret-eva-blue-appt\/55 {
  caret-color: rgba(52, 137, 207, 0.55);
}

.caret-eva-blue-appt\/60 {
  caret-color: rgba(52, 137, 207, 0.6);
}

.caret-eva-blue-appt\/65 {
  caret-color: rgba(52, 137, 207, 0.65);
}

.caret-eva-blue-appt\/70 {
  caret-color: rgba(52, 137, 207, 0.7);
}

.caret-eva-blue-appt\/75 {
  caret-color: rgba(52, 137, 207, 0.75);
}

.caret-eva-blue-appt\/80 {
  caret-color: rgba(52, 137, 207, 0.8);
}

.caret-eva-blue-appt\/85 {
  caret-color: rgba(52, 137, 207, 0.85);
}

.caret-eva-blue-appt\/90 {
  caret-color: rgba(52, 137, 207, 0.9);
}

.caret-eva-blue-appt\/95 {
  caret-color: rgba(52, 137, 207, 0.95);
}

.caret-eva-blue-gray {
  caret-color: #75798b;
}

.caret-eva-blue-gray\/0 {
  caret-color: rgb(117 121 139 / 0);
}

.caret-eva-blue-gray\/10 {
  caret-color: rgb(117 121 139 / 0.1);
}

.caret-eva-blue-gray\/100 {
  caret-color: rgb(117 121 139 / 1);
}

.caret-eva-blue-gray\/15 {
  caret-color: rgb(117 121 139 / 0.15);
}

.caret-eva-blue-gray\/20 {
  caret-color: rgb(117 121 139 / 0.2);
}

.caret-eva-blue-gray\/25 {
  caret-color: rgb(117 121 139 / 0.25);
}

.caret-eva-blue-gray\/30 {
  caret-color: rgb(117 121 139 / 0.3);
}

.caret-eva-blue-gray\/35 {
  caret-color: rgb(117 121 139 / 0.35);
}

.caret-eva-blue-gray\/40 {
  caret-color: rgb(117 121 139 / 0.4);
}

.caret-eva-blue-gray\/45 {
  caret-color: rgb(117 121 139 / 0.45);
}

.caret-eva-blue-gray\/5 {
  caret-color: rgb(117 121 139 / 0.05);
}

.caret-eva-blue-gray\/50 {
  caret-color: rgb(117 121 139 / 0.5);
}

.caret-eva-blue-gray\/55 {
  caret-color: rgb(117 121 139 / 0.55);
}

.caret-eva-blue-gray\/60 {
  caret-color: rgb(117 121 139 / 0.6);
}

.caret-eva-blue-gray\/65 {
  caret-color: rgb(117 121 139 / 0.65);
}

.caret-eva-blue-gray\/70 {
  caret-color: rgb(117 121 139 / 0.7);
}

.caret-eva-blue-gray\/75 {
  caret-color: rgb(117 121 139 / 0.75);
}

.caret-eva-blue-gray\/80 {
  caret-color: rgb(117 121 139 / 0.8);
}

.caret-eva-blue-gray\/85 {
  caret-color: rgb(117 121 139 / 0.85);
}

.caret-eva-blue-gray\/90 {
  caret-color: rgb(117 121 139 / 0.9);
}

.caret-eva-blue-gray\/95 {
  caret-color: rgb(117 121 139 / 0.95);
}

.caret-eva-blue-hv {
  caret-color: #0f121f;
}

.caret-eva-blue-hv\/0 {
  caret-color: rgb(15 18 31 / 0);
}

.caret-eva-blue-hv\/10 {
  caret-color: rgb(15 18 31 / 0.1);
}

.caret-eva-blue-hv\/100 {
  caret-color: rgb(15 18 31 / 1);
}

.caret-eva-blue-hv\/15 {
  caret-color: rgb(15 18 31 / 0.15);
}

.caret-eva-blue-hv\/20 {
  caret-color: rgb(15 18 31 / 0.2);
}

.caret-eva-blue-hv\/25 {
  caret-color: rgb(15 18 31 / 0.25);
}

.caret-eva-blue-hv\/30 {
  caret-color: rgb(15 18 31 / 0.3);
}

.caret-eva-blue-hv\/35 {
  caret-color: rgb(15 18 31 / 0.35);
}

.caret-eva-blue-hv\/40 {
  caret-color: rgb(15 18 31 / 0.4);
}

.caret-eva-blue-hv\/45 {
  caret-color: rgb(15 18 31 / 0.45);
}

.caret-eva-blue-hv\/5 {
  caret-color: rgb(15 18 31 / 0.05);
}

.caret-eva-blue-hv\/50 {
  caret-color: rgb(15 18 31 / 0.5);
}

.caret-eva-blue-hv\/55 {
  caret-color: rgb(15 18 31 / 0.55);
}

.caret-eva-blue-hv\/60 {
  caret-color: rgb(15 18 31 / 0.6);
}

.caret-eva-blue-hv\/65 {
  caret-color: rgb(15 18 31 / 0.65);
}

.caret-eva-blue-hv\/70 {
  caret-color: rgb(15 18 31 / 0.7);
}

.caret-eva-blue-hv\/75 {
  caret-color: rgb(15 18 31 / 0.75);
}

.caret-eva-blue-hv\/80 {
  caret-color: rgb(15 18 31 / 0.8);
}

.caret-eva-blue-hv\/85 {
  caret-color: rgb(15 18 31 / 0.85);
}

.caret-eva-blue-hv\/90 {
  caret-color: rgb(15 18 31 / 0.9);
}

.caret-eva-blue-hv\/95 {
  caret-color: rgb(15 18 31 / 0.95);
}

.caret-eva-blue-light {
  caret-color: #303851;
}

.caret-eva-blue-light-hv {
  caret-color: rgba(17,20,30,.3);
}

.caret-eva-blue-light-hv\/0 {
  caret-color: rgba(17, 20, 30, 0);
}

.caret-eva-blue-light-hv\/10 {
  caret-color: rgba(17, 20, 30, 0.1);
}

.caret-eva-blue-light-hv\/100 {
  caret-color: rgba(17, 20, 30, 1);
}

.caret-eva-blue-light-hv\/15 {
  caret-color: rgba(17, 20, 30, 0.15);
}

.caret-eva-blue-light-hv\/20 {
  caret-color: rgba(17, 20, 30, 0.2);
}

.caret-eva-blue-light-hv\/25 {
  caret-color: rgba(17, 20, 30, 0.25);
}

.caret-eva-blue-light-hv\/30 {
  caret-color: rgba(17, 20, 30, 0.3);
}

.caret-eva-blue-light-hv\/35 {
  caret-color: rgba(17, 20, 30, 0.35);
}

.caret-eva-blue-light-hv\/40 {
  caret-color: rgba(17, 20, 30, 0.4);
}

.caret-eva-blue-light-hv\/45 {
  caret-color: rgba(17, 20, 30, 0.45);
}

.caret-eva-blue-light-hv\/5 {
  caret-color: rgba(17, 20, 30, 0.05);
}

.caret-eva-blue-light-hv\/50 {
  caret-color: rgba(17, 20, 30, 0.5);
}

.caret-eva-blue-light-hv\/55 {
  caret-color: rgba(17, 20, 30, 0.55);
}

.caret-eva-blue-light-hv\/60 {
  caret-color: rgba(17, 20, 30, 0.6);
}

.caret-eva-blue-light-hv\/65 {
  caret-color: rgba(17, 20, 30, 0.65);
}

.caret-eva-blue-light-hv\/70 {
  caret-color: rgba(17, 20, 30, 0.7);
}

.caret-eva-blue-light-hv\/75 {
  caret-color: rgba(17, 20, 30, 0.75);
}

.caret-eva-blue-light-hv\/80 {
  caret-color: rgba(17, 20, 30, 0.8);
}

.caret-eva-blue-light-hv\/85 {
  caret-color: rgba(17, 20, 30, 0.85);
}

.caret-eva-blue-light-hv\/90 {
  caret-color: rgba(17, 20, 30, 0.9);
}

.caret-eva-blue-light-hv\/95 {
  caret-color: rgba(17, 20, 30, 0.95);
}

.caret-eva-blue-light\/0 {
  caret-color: rgb(48 56 81 / 0);
}

.caret-eva-blue-light\/10 {
  caret-color: rgb(48 56 81 / 0.1);
}

.caret-eva-blue-light\/100 {
  caret-color: rgb(48 56 81 / 1);
}

.caret-eva-blue-light\/15 {
  caret-color: rgb(48 56 81 / 0.15);
}

.caret-eva-blue-light\/20 {
  caret-color: rgb(48 56 81 / 0.2);
}

.caret-eva-blue-light\/25 {
  caret-color: rgb(48 56 81 / 0.25);
}

.caret-eva-blue-light\/30 {
  caret-color: rgb(48 56 81 / 0.3);
}

.caret-eva-blue-light\/35 {
  caret-color: rgb(48 56 81 / 0.35);
}

.caret-eva-blue-light\/40 {
  caret-color: rgb(48 56 81 / 0.4);
}

.caret-eva-blue-light\/45 {
  caret-color: rgb(48 56 81 / 0.45);
}

.caret-eva-blue-light\/5 {
  caret-color: rgb(48 56 81 / 0.05);
}

.caret-eva-blue-light\/50 {
  caret-color: rgb(48 56 81 / 0.5);
}

.caret-eva-blue-light\/55 {
  caret-color: rgb(48 56 81 / 0.55);
}

.caret-eva-blue-light\/60 {
  caret-color: rgb(48 56 81 / 0.6);
}

.caret-eva-blue-light\/65 {
  caret-color: rgb(48 56 81 / 0.65);
}

.caret-eva-blue-light\/70 {
  caret-color: rgb(48 56 81 / 0.7);
}

.caret-eva-blue-light\/75 {
  caret-color: rgb(48 56 81 / 0.75);
}

.caret-eva-blue-light\/80 {
  caret-color: rgb(48 56 81 / 0.8);
}

.caret-eva-blue-light\/85 {
  caret-color: rgb(48 56 81 / 0.85);
}

.caret-eva-blue-light\/90 {
  caret-color: rgb(48 56 81 / 0.9);
}

.caret-eva-blue-light\/95 {
  caret-color: rgb(48 56 81 / 0.95);
}

.caret-eva-blue\/0 {
  caret-color: rgb(26 33 62 / 0);
}

.caret-eva-blue\/10 {
  caret-color: rgb(26 33 62 / 0.1);
}

.caret-eva-blue\/100 {
  caret-color: rgb(26 33 62 / 1);
}

.caret-eva-blue\/15 {
  caret-color: rgb(26 33 62 / 0.15);
}

.caret-eva-blue\/20 {
  caret-color: rgb(26 33 62 / 0.2);
}

.caret-eva-blue\/25 {
  caret-color: rgb(26 33 62 / 0.25);
}

.caret-eva-blue\/30 {
  caret-color: rgb(26 33 62 / 0.3);
}

.caret-eva-blue\/35 {
  caret-color: rgb(26 33 62 / 0.35);
}

.caret-eva-blue\/40 {
  caret-color: rgb(26 33 62 / 0.4);
}

.caret-eva-blue\/45 {
  caret-color: rgb(26 33 62 / 0.45);
}

.caret-eva-blue\/5 {
  caret-color: rgb(26 33 62 / 0.05);
}

.caret-eva-blue\/50 {
  caret-color: rgb(26 33 62 / 0.5);
}

.caret-eva-blue\/55 {
  caret-color: rgb(26 33 62 / 0.55);
}

.caret-eva-blue\/60 {
  caret-color: rgb(26 33 62 / 0.6);
}

.caret-eva-blue\/65 {
  caret-color: rgb(26 33 62 / 0.65);
}

.caret-eva-blue\/70 {
  caret-color: rgb(26 33 62 / 0.7);
}

.caret-eva-blue\/75 {
  caret-color: rgb(26 33 62 / 0.75);
}

.caret-eva-blue\/80 {
  caret-color: rgb(26 33 62 / 0.8);
}

.caret-eva-blue\/85 {
  caret-color: rgb(26 33 62 / 0.85);
}

.caret-eva-blue\/90 {
  caret-color: rgb(26 33 62 / 0.9);
}

.caret-eva-blue\/95 {
  caret-color: rgb(26 33 62 / 0.95);
}

.caret-eva-brown-appt {
  caret-color: rgba(99, 93, 94, 1);
}

.caret-eva-brown-appt\/0 {
  caret-color: rgba(99, 93, 94, 0);
}

.caret-eva-brown-appt\/10 {
  caret-color: rgba(99, 93, 94, 0.1);
}

.caret-eva-brown-appt\/100 {
  caret-color: rgba(99, 93, 94, 1);
}

.caret-eva-brown-appt\/15 {
  caret-color: rgba(99, 93, 94, 0.15);
}

.caret-eva-brown-appt\/20 {
  caret-color: rgba(99, 93, 94, 0.2);
}

.caret-eva-brown-appt\/25 {
  caret-color: rgba(99, 93, 94, 0.25);
}

.caret-eva-brown-appt\/30 {
  caret-color: rgba(99, 93, 94, 0.3);
}

.caret-eva-brown-appt\/35 {
  caret-color: rgba(99, 93, 94, 0.35);
}

.caret-eva-brown-appt\/40 {
  caret-color: rgba(99, 93, 94, 0.4);
}

.caret-eva-brown-appt\/45 {
  caret-color: rgba(99, 93, 94, 0.45);
}

.caret-eva-brown-appt\/5 {
  caret-color: rgba(99, 93, 94, 0.05);
}

.caret-eva-brown-appt\/50 {
  caret-color: rgba(99, 93, 94, 0.5);
}

.caret-eva-brown-appt\/55 {
  caret-color: rgba(99, 93, 94, 0.55);
}

.caret-eva-brown-appt\/60 {
  caret-color: rgba(99, 93, 94, 0.6);
}

.caret-eva-brown-appt\/65 {
  caret-color: rgba(99, 93, 94, 0.65);
}

.caret-eva-brown-appt\/70 {
  caret-color: rgba(99, 93, 94, 0.7);
}

.caret-eva-brown-appt\/75 {
  caret-color: rgba(99, 93, 94, 0.75);
}

.caret-eva-brown-appt\/80 {
  caret-color: rgba(99, 93, 94, 0.8);
}

.caret-eva-brown-appt\/85 {
  caret-color: rgba(99, 93, 94, 0.85);
}

.caret-eva-brown-appt\/90 {
  caret-color: rgba(99, 93, 94, 0.9);
}

.caret-eva-brown-appt\/95 {
  caret-color: rgba(99, 93, 94, 0.95);
}

.caret-eva-dark-green-appt {
  caret-color: rgba(102, 188, 130, 1);
}

.caret-eva-dark-green-appt\/0 {
  caret-color: rgba(102, 188, 130, 0);
}

.caret-eva-dark-green-appt\/10 {
  caret-color: rgba(102, 188, 130, 0.1);
}

.caret-eva-dark-green-appt\/100 {
  caret-color: rgba(102, 188, 130, 1);
}

.caret-eva-dark-green-appt\/15 {
  caret-color: rgba(102, 188, 130, 0.15);
}

.caret-eva-dark-green-appt\/20 {
  caret-color: rgba(102, 188, 130, 0.2);
}

.caret-eva-dark-green-appt\/25 {
  caret-color: rgba(102, 188, 130, 0.25);
}

.caret-eva-dark-green-appt\/30 {
  caret-color: rgba(102, 188, 130, 0.3);
}

.caret-eva-dark-green-appt\/35 {
  caret-color: rgba(102, 188, 130, 0.35);
}

.caret-eva-dark-green-appt\/40 {
  caret-color: rgba(102, 188, 130, 0.4);
}

.caret-eva-dark-green-appt\/45 {
  caret-color: rgba(102, 188, 130, 0.45);
}

.caret-eva-dark-green-appt\/5 {
  caret-color: rgba(102, 188, 130, 0.05);
}

.caret-eva-dark-green-appt\/50 {
  caret-color: rgba(102, 188, 130, 0.5);
}

.caret-eva-dark-green-appt\/55 {
  caret-color: rgba(102, 188, 130, 0.55);
}

.caret-eva-dark-green-appt\/60 {
  caret-color: rgba(102, 188, 130, 0.6);
}

.caret-eva-dark-green-appt\/65 {
  caret-color: rgba(102, 188, 130, 0.65);
}

.caret-eva-dark-green-appt\/70 {
  caret-color: rgba(102, 188, 130, 0.7);
}

.caret-eva-dark-green-appt\/75 {
  caret-color: rgba(102, 188, 130, 0.75);
}

.caret-eva-dark-green-appt\/80 {
  caret-color: rgba(102, 188, 130, 0.8);
}

.caret-eva-dark-green-appt\/85 {
  caret-color: rgba(102, 188, 130, 0.85);
}

.caret-eva-dark-green-appt\/90 {
  caret-color: rgba(102, 188, 130, 0.9);
}

.caret-eva-dark-green-appt\/95 {
  caret-color: rgba(102, 188, 130, 0.95);
}

.caret-eva-dark-red-appt {
  caret-color: rgba(198, 102, 94, 1);
}

.caret-eva-dark-red-appt\/0 {
  caret-color: rgba(198, 102, 94, 0);
}

.caret-eva-dark-red-appt\/10 {
  caret-color: rgba(198, 102, 94, 0.1);
}

.caret-eva-dark-red-appt\/100 {
  caret-color: rgba(198, 102, 94, 1);
}

.caret-eva-dark-red-appt\/15 {
  caret-color: rgba(198, 102, 94, 0.15);
}

.caret-eva-dark-red-appt\/20 {
  caret-color: rgba(198, 102, 94, 0.2);
}

.caret-eva-dark-red-appt\/25 {
  caret-color: rgba(198, 102, 94, 0.25);
}

.caret-eva-dark-red-appt\/30 {
  caret-color: rgba(198, 102, 94, 0.3);
}

.caret-eva-dark-red-appt\/35 {
  caret-color: rgba(198, 102, 94, 0.35);
}

.caret-eva-dark-red-appt\/40 {
  caret-color: rgba(198, 102, 94, 0.4);
}

.caret-eva-dark-red-appt\/45 {
  caret-color: rgba(198, 102, 94, 0.45);
}

.caret-eva-dark-red-appt\/5 {
  caret-color: rgba(198, 102, 94, 0.05);
}

.caret-eva-dark-red-appt\/50 {
  caret-color: rgba(198, 102, 94, 0.5);
}

.caret-eva-dark-red-appt\/55 {
  caret-color: rgba(198, 102, 94, 0.55);
}

.caret-eva-dark-red-appt\/60 {
  caret-color: rgba(198, 102, 94, 0.6);
}

.caret-eva-dark-red-appt\/65 {
  caret-color: rgba(198, 102, 94, 0.65);
}

.caret-eva-dark-red-appt\/70 {
  caret-color: rgba(198, 102, 94, 0.7);
}

.caret-eva-dark-red-appt\/75 {
  caret-color: rgba(198, 102, 94, 0.75);
}

.caret-eva-dark-red-appt\/80 {
  caret-color: rgba(198, 102, 94, 0.8);
}

.caret-eva-dark-red-appt\/85 {
  caret-color: rgba(198, 102, 94, 0.85);
}

.caret-eva-dark-red-appt\/90 {
  caret-color: rgba(198, 102, 94, 0.9);
}

.caret-eva-dark-red-appt\/95 {
  caret-color: rgba(198, 102, 94, 0.95);
}

.caret-eva-green {
  caret-color: #49B5A8;
}

.caret-eva-green-appt {
  caret-color: rgba(128, 215, 109);
}

.caret-eva-green-appt\/0 {
  caret-color: rgba(128, 215, 109, 0);
}

.caret-eva-green-appt\/10 {
  caret-color: rgba(128, 215, 109, 0.1);
}

.caret-eva-green-appt\/100 {
  caret-color: rgba(128, 215, 109, 1);
}

.caret-eva-green-appt\/15 {
  caret-color: rgba(128, 215, 109, 0.15);
}

.caret-eva-green-appt\/20 {
  caret-color: rgba(128, 215, 109, 0.2);
}

.caret-eva-green-appt\/25 {
  caret-color: rgba(128, 215, 109, 0.25);
}

.caret-eva-green-appt\/30 {
  caret-color: rgba(128, 215, 109, 0.3);
}

.caret-eva-green-appt\/35 {
  caret-color: rgba(128, 215, 109, 0.35);
}

.caret-eva-green-appt\/40 {
  caret-color: rgba(128, 215, 109, 0.4);
}

.caret-eva-green-appt\/45 {
  caret-color: rgba(128, 215, 109, 0.45);
}

.caret-eva-green-appt\/5 {
  caret-color: rgba(128, 215, 109, 0.05);
}

.caret-eva-green-appt\/50 {
  caret-color: rgba(128, 215, 109, 0.5);
}

.caret-eva-green-appt\/55 {
  caret-color: rgba(128, 215, 109, 0.55);
}

.caret-eva-green-appt\/60 {
  caret-color: rgba(128, 215, 109, 0.6);
}

.caret-eva-green-appt\/65 {
  caret-color: rgba(128, 215, 109, 0.65);
}

.caret-eva-green-appt\/70 {
  caret-color: rgba(128, 215, 109, 0.7);
}

.caret-eva-green-appt\/75 {
  caret-color: rgba(128, 215, 109, 0.75);
}

.caret-eva-green-appt\/80 {
  caret-color: rgba(128, 215, 109, 0.8);
}

.caret-eva-green-appt\/85 {
  caret-color: rgba(128, 215, 109, 0.85);
}

.caret-eva-green-appt\/90 {
  caret-color: rgba(128, 215, 109, 0.9);
}

.caret-eva-green-appt\/95 {
  caret-color: rgba(128, 215, 109, 0.95);
}

.caret-eva-green-brown-appt {
  caret-color: rgba(197, 191, 140, 1);
}

.caret-eva-green-brown-appt\/0 {
  caret-color: rgba(197, 191, 140, 0);
}

.caret-eva-green-brown-appt\/10 {
  caret-color: rgba(197, 191, 140, 0.1);
}

.caret-eva-green-brown-appt\/100 {
  caret-color: rgba(197, 191, 140, 1);
}

.caret-eva-green-brown-appt\/15 {
  caret-color: rgba(197, 191, 140, 0.15);
}

.caret-eva-green-brown-appt\/20 {
  caret-color: rgba(197, 191, 140, 0.2);
}

.caret-eva-green-brown-appt\/25 {
  caret-color: rgba(197, 191, 140, 0.25);
}

.caret-eva-green-brown-appt\/30 {
  caret-color: rgba(197, 191, 140, 0.3);
}

.caret-eva-green-brown-appt\/35 {
  caret-color: rgba(197, 191, 140, 0.35);
}

.caret-eva-green-brown-appt\/40 {
  caret-color: rgba(197, 191, 140, 0.4);
}

.caret-eva-green-brown-appt\/45 {
  caret-color: rgba(197, 191, 140, 0.45);
}

.caret-eva-green-brown-appt\/5 {
  caret-color: rgba(197, 191, 140, 0.05);
}

.caret-eva-green-brown-appt\/50 {
  caret-color: rgba(197, 191, 140, 0.5);
}

.caret-eva-green-brown-appt\/55 {
  caret-color: rgba(197, 191, 140, 0.55);
}

.caret-eva-green-brown-appt\/60 {
  caret-color: rgba(197, 191, 140, 0.6);
}

.caret-eva-green-brown-appt\/65 {
  caret-color: rgba(197, 191, 140, 0.65);
}

.caret-eva-green-brown-appt\/70 {
  caret-color: rgba(197, 191, 140, 0.7);
}

.caret-eva-green-brown-appt\/75 {
  caret-color: rgba(197, 191, 140, 0.75);
}

.caret-eva-green-brown-appt\/80 {
  caret-color: rgba(197, 191, 140, 0.8);
}

.caret-eva-green-brown-appt\/85 {
  caret-color: rgba(197, 191, 140, 0.85);
}

.caret-eva-green-brown-appt\/90 {
  caret-color: rgba(197, 191, 140, 0.9);
}

.caret-eva-green-brown-appt\/95 {
  caret-color: rgba(197, 191, 140, 0.95);
}

.caret-eva-green-hv {
  caret-color: #3f9c90;
}

.caret-eva-green-hv\/0 {
  caret-color: rgb(63 156 144 / 0);
}

.caret-eva-green-hv\/10 {
  caret-color: rgb(63 156 144 / 0.1);
}

.caret-eva-green-hv\/100 {
  caret-color: rgb(63 156 144 / 1);
}

.caret-eva-green-hv\/15 {
  caret-color: rgb(63 156 144 / 0.15);
}

.caret-eva-green-hv\/20 {
  caret-color: rgb(63 156 144 / 0.2);
}

.caret-eva-green-hv\/25 {
  caret-color: rgb(63 156 144 / 0.25);
}

.caret-eva-green-hv\/30 {
  caret-color: rgb(63 156 144 / 0.3);
}

.caret-eva-green-hv\/35 {
  caret-color: rgb(63 156 144 / 0.35);
}

.caret-eva-green-hv\/40 {
  caret-color: rgb(63 156 144 / 0.4);
}

.caret-eva-green-hv\/45 {
  caret-color: rgb(63 156 144 / 0.45);
}

.caret-eva-green-hv\/5 {
  caret-color: rgb(63 156 144 / 0.05);
}

.caret-eva-green-hv\/50 {
  caret-color: rgb(63 156 144 / 0.5);
}

.caret-eva-green-hv\/55 {
  caret-color: rgb(63 156 144 / 0.55);
}

.caret-eva-green-hv\/60 {
  caret-color: rgb(63 156 144 / 0.6);
}

.caret-eva-green-hv\/65 {
  caret-color: rgb(63 156 144 / 0.65);
}

.caret-eva-green-hv\/70 {
  caret-color: rgb(63 156 144 / 0.7);
}

.caret-eva-green-hv\/75 {
  caret-color: rgb(63 156 144 / 0.75);
}

.caret-eva-green-hv\/80 {
  caret-color: rgb(63 156 144 / 0.8);
}

.caret-eva-green-hv\/85 {
  caret-color: rgb(63 156 144 / 0.85);
}

.caret-eva-green-hv\/90 {
  caret-color: rgb(63 156 144 / 0.9);
}

.caret-eva-green-hv\/95 {
  caret-color: rgb(63 156 144 / 0.95);
}

.caret-eva-green\/0 {
  caret-color: rgb(73 181 168 / 0);
}

.caret-eva-green\/10 {
  caret-color: rgb(73 181 168 / 0.1);
}

.caret-eva-green\/100 {
  caret-color: rgb(73 181 168 / 1);
}

.caret-eva-green\/15 {
  caret-color: rgb(73 181 168 / 0.15);
}

.caret-eva-green\/20 {
  caret-color: rgb(73 181 168 / 0.2);
}

.caret-eva-green\/25 {
  caret-color: rgb(73 181 168 / 0.25);
}

.caret-eva-green\/30 {
  caret-color: rgb(73 181 168 / 0.3);
}

.caret-eva-green\/35 {
  caret-color: rgb(73 181 168 / 0.35);
}

.caret-eva-green\/40 {
  caret-color: rgb(73 181 168 / 0.4);
}

.caret-eva-green\/45 {
  caret-color: rgb(73 181 168 / 0.45);
}

.caret-eva-green\/5 {
  caret-color: rgb(73 181 168 / 0.05);
}

.caret-eva-green\/50 {
  caret-color: rgb(73 181 168 / 0.5);
}

.caret-eva-green\/55 {
  caret-color: rgb(73 181 168 / 0.55);
}

.caret-eva-green\/60 {
  caret-color: rgb(73 181 168 / 0.6);
}

.caret-eva-green\/65 {
  caret-color: rgb(73 181 168 / 0.65);
}

.caret-eva-green\/70 {
  caret-color: rgb(73 181 168 / 0.7);
}

.caret-eva-green\/75 {
  caret-color: rgb(73 181 168 / 0.75);
}

.caret-eva-green\/80 {
  caret-color: rgb(73 181 168 / 0.8);
}

.caret-eva-green\/85 {
  caret-color: rgb(73 181 168 / 0.85);
}

.caret-eva-green\/90 {
  caret-color: rgb(73 181 168 / 0.9);
}

.caret-eva-green\/95 {
  caret-color: rgb(73 181 168 / 0.95);
}

.caret-eva-lavender-appt {
  caret-color: rgba(169, 124, 165, 1);
}

.caret-eva-lavender-appt\/0 {
  caret-color: rgba(169, 124, 165, 0);
}

.caret-eva-lavender-appt\/10 {
  caret-color: rgba(169, 124, 165, 0.1);
}

.caret-eva-lavender-appt\/100 {
  caret-color: rgba(169, 124, 165, 1);
}

.caret-eva-lavender-appt\/15 {
  caret-color: rgba(169, 124, 165, 0.15);
}

.caret-eva-lavender-appt\/20 {
  caret-color: rgba(169, 124, 165, 0.2);
}

.caret-eva-lavender-appt\/25 {
  caret-color: rgba(169, 124, 165, 0.25);
}

.caret-eva-lavender-appt\/30 {
  caret-color: rgba(169, 124, 165, 0.3);
}

.caret-eva-lavender-appt\/35 {
  caret-color: rgba(169, 124, 165, 0.35);
}

.caret-eva-lavender-appt\/40 {
  caret-color: rgba(169, 124, 165, 0.4);
}

.caret-eva-lavender-appt\/45 {
  caret-color: rgba(169, 124, 165, 0.45);
}

.caret-eva-lavender-appt\/5 {
  caret-color: rgba(169, 124, 165, 0.05);
}

.caret-eva-lavender-appt\/50 {
  caret-color: rgba(169, 124, 165, 0.5);
}

.caret-eva-lavender-appt\/55 {
  caret-color: rgba(169, 124, 165, 0.55);
}

.caret-eva-lavender-appt\/60 {
  caret-color: rgba(169, 124, 165, 0.6);
}

.caret-eva-lavender-appt\/65 {
  caret-color: rgba(169, 124, 165, 0.65);
}

.caret-eva-lavender-appt\/70 {
  caret-color: rgba(169, 124, 165, 0.7);
}

.caret-eva-lavender-appt\/75 {
  caret-color: rgba(169, 124, 165, 0.75);
}

.caret-eva-lavender-appt\/80 {
  caret-color: rgba(169, 124, 165, 0.8);
}

.caret-eva-lavender-appt\/85 {
  caret-color: rgba(169, 124, 165, 0.85);
}

.caret-eva-lavender-appt\/90 {
  caret-color: rgba(169, 124, 165, 0.9);
}

.caret-eva-lavender-appt\/95 {
  caret-color: rgba(169, 124, 165, 0.95);
}

.caret-eva-magenta-appt {
  caret-color: rgba(223, 91, 146, 1);
}

.caret-eva-magenta-appt\/0 {
  caret-color: rgba(223, 91, 146, 0);
}

.caret-eva-magenta-appt\/10 {
  caret-color: rgba(223, 91, 146, 0.1);
}

.caret-eva-magenta-appt\/100 {
  caret-color: rgba(223, 91, 146, 1);
}

.caret-eva-magenta-appt\/15 {
  caret-color: rgba(223, 91, 146, 0.15);
}

.caret-eva-magenta-appt\/20 {
  caret-color: rgba(223, 91, 146, 0.2);
}

.caret-eva-magenta-appt\/25 {
  caret-color: rgba(223, 91, 146, 0.25);
}

.caret-eva-magenta-appt\/30 {
  caret-color: rgba(223, 91, 146, 0.3);
}

.caret-eva-magenta-appt\/35 {
  caret-color: rgba(223, 91, 146, 0.35);
}

.caret-eva-magenta-appt\/40 {
  caret-color: rgba(223, 91, 146, 0.4);
}

.caret-eva-magenta-appt\/45 {
  caret-color: rgba(223, 91, 146, 0.45);
}

.caret-eva-magenta-appt\/5 {
  caret-color: rgba(223, 91, 146, 0.05);
}

.caret-eva-magenta-appt\/50 {
  caret-color: rgba(223, 91, 146, 0.5);
}

.caret-eva-magenta-appt\/55 {
  caret-color: rgba(223, 91, 146, 0.55);
}

.caret-eva-magenta-appt\/60 {
  caret-color: rgba(223, 91, 146, 0.6);
}

.caret-eva-magenta-appt\/65 {
  caret-color: rgba(223, 91, 146, 0.65);
}

.caret-eva-magenta-appt\/70 {
  caret-color: rgba(223, 91, 146, 0.7);
}

.caret-eva-magenta-appt\/75 {
  caret-color: rgba(223, 91, 146, 0.75);
}

.caret-eva-magenta-appt\/80 {
  caret-color: rgba(223, 91, 146, 0.8);
}

.caret-eva-magenta-appt\/85 {
  caret-color: rgba(223, 91, 146, 0.85);
}

.caret-eva-magenta-appt\/90 {
  caret-color: rgba(223, 91, 146, 0.9);
}

.caret-eva-magenta-appt\/95 {
  caret-color: rgba(223, 91, 146, 0.95);
}

.caret-eva-orange-appt {
  caret-color: rgba(232, 176, 99, 1);
}

.caret-eva-orange-appt\/0 {
  caret-color: rgba(232, 176, 99, 0);
}

.caret-eva-orange-appt\/10 {
  caret-color: rgba(232, 176, 99, 0.1);
}

.caret-eva-orange-appt\/100 {
  caret-color: rgba(232, 176, 99, 1);
}

.caret-eva-orange-appt\/15 {
  caret-color: rgba(232, 176, 99, 0.15);
}

.caret-eva-orange-appt\/20 {
  caret-color: rgba(232, 176, 99, 0.2);
}

.caret-eva-orange-appt\/25 {
  caret-color: rgba(232, 176, 99, 0.25);
}

.caret-eva-orange-appt\/30 {
  caret-color: rgba(232, 176, 99, 0.3);
}

.caret-eva-orange-appt\/35 {
  caret-color: rgba(232, 176, 99, 0.35);
}

.caret-eva-orange-appt\/40 {
  caret-color: rgba(232, 176, 99, 0.4);
}

.caret-eva-orange-appt\/45 {
  caret-color: rgba(232, 176, 99, 0.45);
}

.caret-eva-orange-appt\/5 {
  caret-color: rgba(232, 176, 99, 0.05);
}

.caret-eva-orange-appt\/50 {
  caret-color: rgba(232, 176, 99, 0.5);
}

.caret-eva-orange-appt\/55 {
  caret-color: rgba(232, 176, 99, 0.55);
}

.caret-eva-orange-appt\/60 {
  caret-color: rgba(232, 176, 99, 0.6);
}

.caret-eva-orange-appt\/65 {
  caret-color: rgba(232, 176, 99, 0.65);
}

.caret-eva-orange-appt\/70 {
  caret-color: rgba(232, 176, 99, 0.7);
}

.caret-eva-orange-appt\/75 {
  caret-color: rgba(232, 176, 99, 0.75);
}

.caret-eva-orange-appt\/80 {
  caret-color: rgba(232, 176, 99, 0.8);
}

.caret-eva-orange-appt\/85 {
  caret-color: rgba(232, 176, 99, 0.85);
}

.caret-eva-orange-appt\/90 {
  caret-color: rgba(232, 176, 99, 0.9);
}

.caret-eva-orange-appt\/95 {
  caret-color: rgba(232, 176, 99, 0.95);
}

.caret-eva-purple-appt {
  caret-color: rgba(125, 117, 164, 1);
}

.caret-eva-purple-appt\/0 {
  caret-color: rgba(125, 117, 164, 0);
}

.caret-eva-purple-appt\/10 {
  caret-color: rgba(125, 117, 164, 0.1);
}

.caret-eva-purple-appt\/100 {
  caret-color: rgba(125, 117, 164, 1);
}

.caret-eva-purple-appt\/15 {
  caret-color: rgba(125, 117, 164, 0.15);
}

.caret-eva-purple-appt\/20 {
  caret-color: rgba(125, 117, 164, 0.2);
}

.caret-eva-purple-appt\/25 {
  caret-color: rgba(125, 117, 164, 0.25);
}

.caret-eva-purple-appt\/30 {
  caret-color: rgba(125, 117, 164, 0.3);
}

.caret-eva-purple-appt\/35 {
  caret-color: rgba(125, 117, 164, 0.35);
}

.caret-eva-purple-appt\/40 {
  caret-color: rgba(125, 117, 164, 0.4);
}

.caret-eva-purple-appt\/45 {
  caret-color: rgba(125, 117, 164, 0.45);
}

.caret-eva-purple-appt\/5 {
  caret-color: rgba(125, 117, 164, 0.05);
}

.caret-eva-purple-appt\/50 {
  caret-color: rgba(125, 117, 164, 0.5);
}

.caret-eva-purple-appt\/55 {
  caret-color: rgba(125, 117, 164, 0.55);
}

.caret-eva-purple-appt\/60 {
  caret-color: rgba(125, 117, 164, 0.6);
}

.caret-eva-purple-appt\/65 {
  caret-color: rgba(125, 117, 164, 0.65);
}

.caret-eva-purple-appt\/70 {
  caret-color: rgba(125, 117, 164, 0.7);
}

.caret-eva-purple-appt\/75 {
  caret-color: rgba(125, 117, 164, 0.75);
}

.caret-eva-purple-appt\/80 {
  caret-color: rgba(125, 117, 164, 0.8);
}

.caret-eva-purple-appt\/85 {
  caret-color: rgba(125, 117, 164, 0.85);
}

.caret-eva-purple-appt\/90 {
  caret-color: rgba(125, 117, 164, 0.9);
}

.caret-eva-purple-appt\/95 {
  caret-color: rgba(125, 117, 164, 0.95);
}

.caret-eva-red {
  caret-color: #EA6565;
}

.caret-eva-red-appt {
  caret-color: rgba(243, 63, 77, 1);
}

.caret-eva-red-appt\/0 {
  caret-color: rgba(243, 63, 77, 0);
}

.caret-eva-red-appt\/10 {
  caret-color: rgba(243, 63, 77, 0.1);
}

.caret-eva-red-appt\/100 {
  caret-color: rgba(243, 63, 77, 1);
}

.caret-eva-red-appt\/15 {
  caret-color: rgba(243, 63, 77, 0.15);
}

.caret-eva-red-appt\/20 {
  caret-color: rgba(243, 63, 77, 0.2);
}

.caret-eva-red-appt\/25 {
  caret-color: rgba(243, 63, 77, 0.25);
}

.caret-eva-red-appt\/30 {
  caret-color: rgba(243, 63, 77, 0.3);
}

.caret-eva-red-appt\/35 {
  caret-color: rgba(243, 63, 77, 0.35);
}

.caret-eva-red-appt\/40 {
  caret-color: rgba(243, 63, 77, 0.4);
}

.caret-eva-red-appt\/45 {
  caret-color: rgba(243, 63, 77, 0.45);
}

.caret-eva-red-appt\/5 {
  caret-color: rgba(243, 63, 77, 0.05);
}

.caret-eva-red-appt\/50 {
  caret-color: rgba(243, 63, 77, 0.5);
}

.caret-eva-red-appt\/55 {
  caret-color: rgba(243, 63, 77, 0.55);
}

.caret-eva-red-appt\/60 {
  caret-color: rgba(243, 63, 77, 0.6);
}

.caret-eva-red-appt\/65 {
  caret-color: rgba(243, 63, 77, 0.65);
}

.caret-eva-red-appt\/70 {
  caret-color: rgba(243, 63, 77, 0.7);
}

.caret-eva-red-appt\/75 {
  caret-color: rgba(243, 63, 77, 0.75);
}

.caret-eva-red-appt\/80 {
  caret-color: rgba(243, 63, 77, 0.8);
}

.caret-eva-red-appt\/85 {
  caret-color: rgba(243, 63, 77, 0.85);
}

.caret-eva-red-appt\/90 {
  caret-color: rgba(243, 63, 77, 0.9);
}

.caret-eva-red-appt\/95 {
  caret-color: rgba(243, 63, 77, 0.95);
}

.caret-eva-red-orange-appt {
  caret-color: rgba(217, 154, 118, 1);
}

.caret-eva-red-orange-appt\/0 {
  caret-color: rgba(217, 154, 118, 0);
}

.caret-eva-red-orange-appt\/10 {
  caret-color: rgba(217, 154, 118, 0.1);
}

.caret-eva-red-orange-appt\/100 {
  caret-color: rgba(217, 154, 118, 1);
}

.caret-eva-red-orange-appt\/15 {
  caret-color: rgba(217, 154, 118, 0.15);
}

.caret-eva-red-orange-appt\/20 {
  caret-color: rgba(217, 154, 118, 0.2);
}

.caret-eva-red-orange-appt\/25 {
  caret-color: rgba(217, 154, 118, 0.25);
}

.caret-eva-red-orange-appt\/30 {
  caret-color: rgba(217, 154, 118, 0.3);
}

.caret-eva-red-orange-appt\/35 {
  caret-color: rgba(217, 154, 118, 0.35);
}

.caret-eva-red-orange-appt\/40 {
  caret-color: rgba(217, 154, 118, 0.4);
}

.caret-eva-red-orange-appt\/45 {
  caret-color: rgba(217, 154, 118, 0.45);
}

.caret-eva-red-orange-appt\/5 {
  caret-color: rgba(217, 154, 118, 0.05);
}

.caret-eva-red-orange-appt\/50 {
  caret-color: rgba(217, 154, 118, 0.5);
}

.caret-eva-red-orange-appt\/55 {
  caret-color: rgba(217, 154, 118, 0.55);
}

.caret-eva-red-orange-appt\/60 {
  caret-color: rgba(217, 154, 118, 0.6);
}

.caret-eva-red-orange-appt\/65 {
  caret-color: rgba(217, 154, 118, 0.65);
}

.caret-eva-red-orange-appt\/70 {
  caret-color: rgba(217, 154, 118, 0.7);
}

.caret-eva-red-orange-appt\/75 {
  caret-color: rgba(217, 154, 118, 0.75);
}

.caret-eva-red-orange-appt\/80 {
  caret-color: rgba(217, 154, 118, 0.8);
}

.caret-eva-red-orange-appt\/85 {
  caret-color: rgba(217, 154, 118, 0.85);
}

.caret-eva-red-orange-appt\/90 {
  caret-color: rgba(217, 154, 118, 0.9);
}

.caret-eva-red-orange-appt\/95 {
  caret-color: rgba(217, 154, 118, 0.95);
}

.caret-eva-red\/0 {
  caret-color: rgb(234 101 101 / 0);
}

.caret-eva-red\/10 {
  caret-color: rgb(234 101 101 / 0.1);
}

.caret-eva-red\/100 {
  caret-color: rgb(234 101 101 / 1);
}

.caret-eva-red\/15 {
  caret-color: rgb(234 101 101 / 0.15);
}

.caret-eva-red\/20 {
  caret-color: rgb(234 101 101 / 0.2);
}

.caret-eva-red\/25 {
  caret-color: rgb(234 101 101 / 0.25);
}

.caret-eva-red\/30 {
  caret-color: rgb(234 101 101 / 0.3);
}

.caret-eva-red\/35 {
  caret-color: rgb(234 101 101 / 0.35);
}

.caret-eva-red\/40 {
  caret-color: rgb(234 101 101 / 0.4);
}

.caret-eva-red\/45 {
  caret-color: rgb(234 101 101 / 0.45);
}

.caret-eva-red\/5 {
  caret-color: rgb(234 101 101 / 0.05);
}

.caret-eva-red\/50 {
  caret-color: rgb(234 101 101 / 0.5);
}

.caret-eva-red\/55 {
  caret-color: rgb(234 101 101 / 0.55);
}

.caret-eva-red\/60 {
  caret-color: rgb(234 101 101 / 0.6);
}

.caret-eva-red\/65 {
  caret-color: rgb(234 101 101 / 0.65);
}

.caret-eva-red\/70 {
  caret-color: rgb(234 101 101 / 0.7);
}

.caret-eva-red\/75 {
  caret-color: rgb(234 101 101 / 0.75);
}

.caret-eva-red\/80 {
  caret-color: rgb(234 101 101 / 0.8);
}

.caret-eva-red\/85 {
  caret-color: rgb(234 101 101 / 0.85);
}

.caret-eva-red\/90 {
  caret-color: rgb(234 101 101 / 0.9);
}

.caret-eva-red\/95 {
  caret-color: rgb(234 101 101 / 0.95);
}

.caret-eva-teal-appt {
  caret-color: rgba(22, 172, 151);
}

.caret-eva-teal-appt\/0 {
  caret-color: rgba(22, 172, 151, 0);
}

.caret-eva-teal-appt\/10 {
  caret-color: rgba(22, 172, 151, 0.1);
}

.caret-eva-teal-appt\/100 {
  caret-color: rgba(22, 172, 151, 1);
}

.caret-eva-teal-appt\/15 {
  caret-color: rgba(22, 172, 151, 0.15);
}

.caret-eva-teal-appt\/20 {
  caret-color: rgba(22, 172, 151, 0.2);
}

.caret-eva-teal-appt\/25 {
  caret-color: rgba(22, 172, 151, 0.25);
}

.caret-eva-teal-appt\/30 {
  caret-color: rgba(22, 172, 151, 0.3);
}

.caret-eva-teal-appt\/35 {
  caret-color: rgba(22, 172, 151, 0.35);
}

.caret-eva-teal-appt\/40 {
  caret-color: rgba(22, 172, 151, 0.4);
}

.caret-eva-teal-appt\/45 {
  caret-color: rgba(22, 172, 151, 0.45);
}

.caret-eva-teal-appt\/5 {
  caret-color: rgba(22, 172, 151, 0.05);
}

.caret-eva-teal-appt\/50 {
  caret-color: rgba(22, 172, 151, 0.5);
}

.caret-eva-teal-appt\/55 {
  caret-color: rgba(22, 172, 151, 0.55);
}

.caret-eva-teal-appt\/60 {
  caret-color: rgba(22, 172, 151, 0.6);
}

.caret-eva-teal-appt\/65 {
  caret-color: rgba(22, 172, 151, 0.65);
}

.caret-eva-teal-appt\/70 {
  caret-color: rgba(22, 172, 151, 0.7);
}

.caret-eva-teal-appt\/75 {
  caret-color: rgba(22, 172, 151, 0.75);
}

.caret-eva-teal-appt\/80 {
  caret-color: rgba(22, 172, 151, 0.8);
}

.caret-eva-teal-appt\/85 {
  caret-color: rgba(22, 172, 151, 0.85);
}

.caret-eva-teal-appt\/90 {
  caret-color: rgba(22, 172, 151, 0.9);
}

.caret-eva-teal-appt\/95 {
  caret-color: rgba(22, 172, 151, 0.95);
}

.caret-eva-yellow {
  caret-color: #E9B362;
}

.caret-eva-yellow-appt {
  caret-color: rgba(240, 226, 0, 1);
}

.caret-eva-yellow-appt\/0 {
  caret-color: rgba(240, 226, 0, 0);
}

.caret-eva-yellow-appt\/10 {
  caret-color: rgba(240, 226, 0, 0.1);
}

.caret-eva-yellow-appt\/100 {
  caret-color: rgba(240, 226, 0, 1);
}

.caret-eva-yellow-appt\/15 {
  caret-color: rgba(240, 226, 0, 0.15);
}

.caret-eva-yellow-appt\/20 {
  caret-color: rgba(240, 226, 0, 0.2);
}

.caret-eva-yellow-appt\/25 {
  caret-color: rgba(240, 226, 0, 0.25);
}

.caret-eva-yellow-appt\/30 {
  caret-color: rgba(240, 226, 0, 0.3);
}

.caret-eva-yellow-appt\/35 {
  caret-color: rgba(240, 226, 0, 0.35);
}

.caret-eva-yellow-appt\/40 {
  caret-color: rgba(240, 226, 0, 0.4);
}

.caret-eva-yellow-appt\/45 {
  caret-color: rgba(240, 226, 0, 0.45);
}

.caret-eva-yellow-appt\/5 {
  caret-color: rgba(240, 226, 0, 0.05);
}

.caret-eva-yellow-appt\/50 {
  caret-color: rgba(240, 226, 0, 0.5);
}

.caret-eva-yellow-appt\/55 {
  caret-color: rgba(240, 226, 0, 0.55);
}

.caret-eva-yellow-appt\/60 {
  caret-color: rgba(240, 226, 0, 0.6);
}

.caret-eva-yellow-appt\/65 {
  caret-color: rgba(240, 226, 0, 0.65);
}

.caret-eva-yellow-appt\/70 {
  caret-color: rgba(240, 226, 0, 0.7);
}

.caret-eva-yellow-appt\/75 {
  caret-color: rgba(240, 226, 0, 0.75);
}

.caret-eva-yellow-appt\/80 {
  caret-color: rgba(240, 226, 0, 0.8);
}

.caret-eva-yellow-appt\/85 {
  caret-color: rgba(240, 226, 0, 0.85);
}

.caret-eva-yellow-appt\/90 {
  caret-color: rgba(240, 226, 0, 0.9);
}

.caret-eva-yellow-appt\/95 {
  caret-color: rgba(240, 226, 0, 0.95);
}

.caret-eva-yellow\/0 {
  caret-color: rgb(233 179 98 / 0);
}

.caret-eva-yellow\/10 {
  caret-color: rgb(233 179 98 / 0.1);
}

.caret-eva-yellow\/100 {
  caret-color: rgb(233 179 98 / 1);
}

.caret-eva-yellow\/15 {
  caret-color: rgb(233 179 98 / 0.15);
}

.caret-eva-yellow\/20 {
  caret-color: rgb(233 179 98 / 0.2);
}

.caret-eva-yellow\/25 {
  caret-color: rgb(233 179 98 / 0.25);
}

.caret-eva-yellow\/30 {
  caret-color: rgb(233 179 98 / 0.3);
}

.caret-eva-yellow\/35 {
  caret-color: rgb(233 179 98 / 0.35);
}

.caret-eva-yellow\/40 {
  caret-color: rgb(233 179 98 / 0.4);
}

.caret-eva-yellow\/45 {
  caret-color: rgb(233 179 98 / 0.45);
}

.caret-eva-yellow\/5 {
  caret-color: rgb(233 179 98 / 0.05);
}

.caret-eva-yellow\/50 {
  caret-color: rgb(233 179 98 / 0.5);
}

.caret-eva-yellow\/55 {
  caret-color: rgb(233 179 98 / 0.55);
}

.caret-eva-yellow\/60 {
  caret-color: rgb(233 179 98 / 0.6);
}

.caret-eva-yellow\/65 {
  caret-color: rgb(233 179 98 / 0.65);
}

.caret-eva-yellow\/70 {
  caret-color: rgb(233 179 98 / 0.7);
}

.caret-eva-yellow\/75 {
  caret-color: rgb(233 179 98 / 0.75);
}

.caret-eva-yellow\/80 {
  caret-color: rgb(233 179 98 / 0.8);
}

.caret-eva-yellow\/85 {
  caret-color: rgb(233 179 98 / 0.85);
}

.caret-eva-yellow\/90 {
  caret-color: rgb(233 179 98 / 0.9);
}

.caret-eva-yellow\/95 {
  caret-color: rgb(233 179 98 / 0.95);
}

.caret-gray-100 {
  caret-color: #f5f5f5;
}

.caret-gray-100\/0 {
  caret-color: rgb(245 245 245 / 0);
}

.caret-gray-100\/10 {
  caret-color: rgb(245 245 245 / 0.1);
}

.caret-gray-100\/100 {
  caret-color: rgb(245 245 245 / 1);
}

.caret-gray-100\/15 {
  caret-color: rgb(245 245 245 / 0.15);
}

.caret-gray-100\/20 {
  caret-color: rgb(245 245 245 / 0.2);
}

.caret-gray-100\/25 {
  caret-color: rgb(245 245 245 / 0.25);
}

.caret-gray-100\/30 {
  caret-color: rgb(245 245 245 / 0.3);
}

.caret-gray-100\/35 {
  caret-color: rgb(245 245 245 / 0.35);
}

.caret-gray-100\/40 {
  caret-color: rgb(245 245 245 / 0.4);
}

.caret-gray-100\/45 {
  caret-color: rgb(245 245 245 / 0.45);
}

.caret-gray-100\/5 {
  caret-color: rgb(245 245 245 / 0.05);
}

.caret-gray-100\/50 {
  caret-color: rgb(245 245 245 / 0.5);
}

.caret-gray-100\/55 {
  caret-color: rgb(245 245 245 / 0.55);
}

.caret-gray-100\/60 {
  caret-color: rgb(245 245 245 / 0.6);
}

.caret-gray-100\/65 {
  caret-color: rgb(245 245 245 / 0.65);
}

.caret-gray-100\/70 {
  caret-color: rgb(245 245 245 / 0.7);
}

.caret-gray-100\/75 {
  caret-color: rgb(245 245 245 / 0.75);
}

.caret-gray-100\/80 {
  caret-color: rgb(245 245 245 / 0.8);
}

.caret-gray-100\/85 {
  caret-color: rgb(245 245 245 / 0.85);
}

.caret-gray-100\/90 {
  caret-color: rgb(245 245 245 / 0.9);
}

.caret-gray-100\/95 {
  caret-color: rgb(245 245 245 / 0.95);
}

.caret-gray-200 {
  caret-color: #e5e5e5;
}

.caret-gray-200\/0 {
  caret-color: rgb(229 229 229 / 0);
}

.caret-gray-200\/10 {
  caret-color: rgb(229 229 229 / 0.1);
}

.caret-gray-200\/100 {
  caret-color: rgb(229 229 229 / 1);
}

.caret-gray-200\/15 {
  caret-color: rgb(229 229 229 / 0.15);
}

.caret-gray-200\/20 {
  caret-color: rgb(229 229 229 / 0.2);
}

.caret-gray-200\/25 {
  caret-color: rgb(229 229 229 / 0.25);
}

.caret-gray-200\/30 {
  caret-color: rgb(229 229 229 / 0.3);
}

.caret-gray-200\/35 {
  caret-color: rgb(229 229 229 / 0.35);
}

.caret-gray-200\/40 {
  caret-color: rgb(229 229 229 / 0.4);
}

.caret-gray-200\/45 {
  caret-color: rgb(229 229 229 / 0.45);
}

.caret-gray-200\/5 {
  caret-color: rgb(229 229 229 / 0.05);
}

.caret-gray-200\/50 {
  caret-color: rgb(229 229 229 / 0.5);
}

.caret-gray-200\/55 {
  caret-color: rgb(229 229 229 / 0.55);
}

.caret-gray-200\/60 {
  caret-color: rgb(229 229 229 / 0.6);
}

.caret-gray-200\/65 {
  caret-color: rgb(229 229 229 / 0.65);
}

.caret-gray-200\/70 {
  caret-color: rgb(229 229 229 / 0.7);
}

.caret-gray-200\/75 {
  caret-color: rgb(229 229 229 / 0.75);
}

.caret-gray-200\/80 {
  caret-color: rgb(229 229 229 / 0.8);
}

.caret-gray-200\/85 {
  caret-color: rgb(229 229 229 / 0.85);
}

.caret-gray-200\/90 {
  caret-color: rgb(229 229 229 / 0.9);
}

.caret-gray-200\/95 {
  caret-color: rgb(229 229 229 / 0.95);
}

.caret-gray-300 {
  caret-color: #d4d4d4;
}

.caret-gray-300\/0 {
  caret-color: rgb(212 212 212 / 0);
}

.caret-gray-300\/10 {
  caret-color: rgb(212 212 212 / 0.1);
}

.caret-gray-300\/100 {
  caret-color: rgb(212 212 212 / 1);
}

.caret-gray-300\/15 {
  caret-color: rgb(212 212 212 / 0.15);
}

.caret-gray-300\/20 {
  caret-color: rgb(212 212 212 / 0.2);
}

.caret-gray-300\/25 {
  caret-color: rgb(212 212 212 / 0.25);
}

.caret-gray-300\/30 {
  caret-color: rgb(212 212 212 / 0.3);
}

.caret-gray-300\/35 {
  caret-color: rgb(212 212 212 / 0.35);
}

.caret-gray-300\/40 {
  caret-color: rgb(212 212 212 / 0.4);
}

.caret-gray-300\/45 {
  caret-color: rgb(212 212 212 / 0.45);
}

.caret-gray-300\/5 {
  caret-color: rgb(212 212 212 / 0.05);
}

.caret-gray-300\/50 {
  caret-color: rgb(212 212 212 / 0.5);
}

.caret-gray-300\/55 {
  caret-color: rgb(212 212 212 / 0.55);
}

.caret-gray-300\/60 {
  caret-color: rgb(212 212 212 / 0.6);
}

.caret-gray-300\/65 {
  caret-color: rgb(212 212 212 / 0.65);
}

.caret-gray-300\/70 {
  caret-color: rgb(212 212 212 / 0.7);
}

.caret-gray-300\/75 {
  caret-color: rgb(212 212 212 / 0.75);
}

.caret-gray-300\/80 {
  caret-color: rgb(212 212 212 / 0.8);
}

.caret-gray-300\/85 {
  caret-color: rgb(212 212 212 / 0.85);
}

.caret-gray-300\/90 {
  caret-color: rgb(212 212 212 / 0.9);
}

.caret-gray-300\/95 {
  caret-color: rgb(212 212 212 / 0.95);
}

.caret-gray-400 {
  caret-color: #a3a3a3;
}

.caret-gray-400\/0 {
  caret-color: rgb(163 163 163 / 0);
}

.caret-gray-400\/10 {
  caret-color: rgb(163 163 163 / 0.1);
}

.caret-gray-400\/100 {
  caret-color: rgb(163 163 163 / 1);
}

.caret-gray-400\/15 {
  caret-color: rgb(163 163 163 / 0.15);
}

.caret-gray-400\/20 {
  caret-color: rgb(163 163 163 / 0.2);
}

.caret-gray-400\/25 {
  caret-color: rgb(163 163 163 / 0.25);
}

.caret-gray-400\/30 {
  caret-color: rgb(163 163 163 / 0.3);
}

.caret-gray-400\/35 {
  caret-color: rgb(163 163 163 / 0.35);
}

.caret-gray-400\/40 {
  caret-color: rgb(163 163 163 / 0.4);
}

.caret-gray-400\/45 {
  caret-color: rgb(163 163 163 / 0.45);
}

.caret-gray-400\/5 {
  caret-color: rgb(163 163 163 / 0.05);
}

.caret-gray-400\/50 {
  caret-color: rgb(163 163 163 / 0.5);
}

.caret-gray-400\/55 {
  caret-color: rgb(163 163 163 / 0.55);
}

.caret-gray-400\/60 {
  caret-color: rgb(163 163 163 / 0.6);
}

.caret-gray-400\/65 {
  caret-color: rgb(163 163 163 / 0.65);
}

.caret-gray-400\/70 {
  caret-color: rgb(163 163 163 / 0.7);
}

.caret-gray-400\/75 {
  caret-color: rgb(163 163 163 / 0.75);
}

.caret-gray-400\/80 {
  caret-color: rgb(163 163 163 / 0.8);
}

.caret-gray-400\/85 {
  caret-color: rgb(163 163 163 / 0.85);
}

.caret-gray-400\/90 {
  caret-color: rgb(163 163 163 / 0.9);
}

.caret-gray-400\/95 {
  caret-color: rgb(163 163 163 / 0.95);
}

.caret-gray-50 {
  caret-color: #fafafa;
}

.caret-gray-50\/0 {
  caret-color: rgb(250 250 250 / 0);
}

.caret-gray-50\/10 {
  caret-color: rgb(250 250 250 / 0.1);
}

.caret-gray-50\/100 {
  caret-color: rgb(250 250 250 / 1);
}

.caret-gray-50\/15 {
  caret-color: rgb(250 250 250 / 0.15);
}

.caret-gray-50\/20 {
  caret-color: rgb(250 250 250 / 0.2);
}

.caret-gray-50\/25 {
  caret-color: rgb(250 250 250 / 0.25);
}

.caret-gray-50\/30 {
  caret-color: rgb(250 250 250 / 0.3);
}

.caret-gray-50\/35 {
  caret-color: rgb(250 250 250 / 0.35);
}

.caret-gray-50\/40 {
  caret-color: rgb(250 250 250 / 0.4);
}

.caret-gray-50\/45 {
  caret-color: rgb(250 250 250 / 0.45);
}

.caret-gray-50\/5 {
  caret-color: rgb(250 250 250 / 0.05);
}

.caret-gray-50\/50 {
  caret-color: rgb(250 250 250 / 0.5);
}

.caret-gray-50\/55 {
  caret-color: rgb(250 250 250 / 0.55);
}

.caret-gray-50\/60 {
  caret-color: rgb(250 250 250 / 0.6);
}

.caret-gray-50\/65 {
  caret-color: rgb(250 250 250 / 0.65);
}

.caret-gray-50\/70 {
  caret-color: rgb(250 250 250 / 0.7);
}

.caret-gray-50\/75 {
  caret-color: rgb(250 250 250 / 0.75);
}

.caret-gray-50\/80 {
  caret-color: rgb(250 250 250 / 0.8);
}

.caret-gray-50\/85 {
  caret-color: rgb(250 250 250 / 0.85);
}

.caret-gray-50\/90 {
  caret-color: rgb(250 250 250 / 0.9);
}

.caret-gray-50\/95 {
  caret-color: rgb(250 250 250 / 0.95);
}

.caret-gray-500 {
  caret-color: #737373;
}

.caret-gray-500\/0 {
  caret-color: rgb(115 115 115 / 0);
}

.caret-gray-500\/10 {
  caret-color: rgb(115 115 115 / 0.1);
}

.caret-gray-500\/100 {
  caret-color: rgb(115 115 115 / 1);
}

.caret-gray-500\/15 {
  caret-color: rgb(115 115 115 / 0.15);
}

.caret-gray-500\/20 {
  caret-color: rgb(115 115 115 / 0.2);
}

.caret-gray-500\/25 {
  caret-color: rgb(115 115 115 / 0.25);
}

.caret-gray-500\/30 {
  caret-color: rgb(115 115 115 / 0.3);
}

.caret-gray-500\/35 {
  caret-color: rgb(115 115 115 / 0.35);
}

.caret-gray-500\/40 {
  caret-color: rgb(115 115 115 / 0.4);
}

.caret-gray-500\/45 {
  caret-color: rgb(115 115 115 / 0.45);
}

.caret-gray-500\/5 {
  caret-color: rgb(115 115 115 / 0.05);
}

.caret-gray-500\/50 {
  caret-color: rgb(115 115 115 / 0.5);
}

.caret-gray-500\/55 {
  caret-color: rgb(115 115 115 / 0.55);
}

.caret-gray-500\/60 {
  caret-color: rgb(115 115 115 / 0.6);
}

.caret-gray-500\/65 {
  caret-color: rgb(115 115 115 / 0.65);
}

.caret-gray-500\/70 {
  caret-color: rgb(115 115 115 / 0.7);
}

.caret-gray-500\/75 {
  caret-color: rgb(115 115 115 / 0.75);
}

.caret-gray-500\/80 {
  caret-color: rgb(115 115 115 / 0.8);
}

.caret-gray-500\/85 {
  caret-color: rgb(115 115 115 / 0.85);
}

.caret-gray-500\/90 {
  caret-color: rgb(115 115 115 / 0.9);
}

.caret-gray-500\/95 {
  caret-color: rgb(115 115 115 / 0.95);
}

.caret-gray-600 {
  caret-color: #525252;
}

.caret-gray-600\/0 {
  caret-color: rgb(82 82 82 / 0);
}

.caret-gray-600\/10 {
  caret-color: rgb(82 82 82 / 0.1);
}

.caret-gray-600\/100 {
  caret-color: rgb(82 82 82 / 1);
}

.caret-gray-600\/15 {
  caret-color: rgb(82 82 82 / 0.15);
}

.caret-gray-600\/20 {
  caret-color: rgb(82 82 82 / 0.2);
}

.caret-gray-600\/25 {
  caret-color: rgb(82 82 82 / 0.25);
}

.caret-gray-600\/30 {
  caret-color: rgb(82 82 82 / 0.3);
}

.caret-gray-600\/35 {
  caret-color: rgb(82 82 82 / 0.35);
}

.caret-gray-600\/40 {
  caret-color: rgb(82 82 82 / 0.4);
}

.caret-gray-600\/45 {
  caret-color: rgb(82 82 82 / 0.45);
}

.caret-gray-600\/5 {
  caret-color: rgb(82 82 82 / 0.05);
}

.caret-gray-600\/50 {
  caret-color: rgb(82 82 82 / 0.5);
}

.caret-gray-600\/55 {
  caret-color: rgb(82 82 82 / 0.55);
}

.caret-gray-600\/60 {
  caret-color: rgb(82 82 82 / 0.6);
}

.caret-gray-600\/65 {
  caret-color: rgb(82 82 82 / 0.65);
}

.caret-gray-600\/70 {
  caret-color: rgb(82 82 82 / 0.7);
}

.caret-gray-600\/75 {
  caret-color: rgb(82 82 82 / 0.75);
}

.caret-gray-600\/80 {
  caret-color: rgb(82 82 82 / 0.8);
}

.caret-gray-600\/85 {
  caret-color: rgb(82 82 82 / 0.85);
}

.caret-gray-600\/90 {
  caret-color: rgb(82 82 82 / 0.9);
}

.caret-gray-600\/95 {
  caret-color: rgb(82 82 82 / 0.95);
}

.caret-gray-700 {
  caret-color: #404040;
}

.caret-gray-700\/0 {
  caret-color: rgb(64 64 64 / 0);
}

.caret-gray-700\/10 {
  caret-color: rgb(64 64 64 / 0.1);
}

.caret-gray-700\/100 {
  caret-color: rgb(64 64 64 / 1);
}

.caret-gray-700\/15 {
  caret-color: rgb(64 64 64 / 0.15);
}

.caret-gray-700\/20 {
  caret-color: rgb(64 64 64 / 0.2);
}

.caret-gray-700\/25 {
  caret-color: rgb(64 64 64 / 0.25);
}

.caret-gray-700\/30 {
  caret-color: rgb(64 64 64 / 0.3);
}

.caret-gray-700\/35 {
  caret-color: rgb(64 64 64 / 0.35);
}

.caret-gray-700\/40 {
  caret-color: rgb(64 64 64 / 0.4);
}

.caret-gray-700\/45 {
  caret-color: rgb(64 64 64 / 0.45);
}

.caret-gray-700\/5 {
  caret-color: rgb(64 64 64 / 0.05);
}

.caret-gray-700\/50 {
  caret-color: rgb(64 64 64 / 0.5);
}

.caret-gray-700\/55 {
  caret-color: rgb(64 64 64 / 0.55);
}

.caret-gray-700\/60 {
  caret-color: rgb(64 64 64 / 0.6);
}

.caret-gray-700\/65 {
  caret-color: rgb(64 64 64 / 0.65);
}

.caret-gray-700\/70 {
  caret-color: rgb(64 64 64 / 0.7);
}

.caret-gray-700\/75 {
  caret-color: rgb(64 64 64 / 0.75);
}

.caret-gray-700\/80 {
  caret-color: rgb(64 64 64 / 0.8);
}

.caret-gray-700\/85 {
  caret-color: rgb(64 64 64 / 0.85);
}

.caret-gray-700\/90 {
  caret-color: rgb(64 64 64 / 0.9);
}

.caret-gray-700\/95 {
  caret-color: rgb(64 64 64 / 0.95);
}

.caret-gray-800 {
  caret-color: #262626;
}

.caret-gray-800\/0 {
  caret-color: rgb(38 38 38 / 0);
}

.caret-gray-800\/10 {
  caret-color: rgb(38 38 38 / 0.1);
}

.caret-gray-800\/100 {
  caret-color: rgb(38 38 38 / 1);
}

.caret-gray-800\/15 {
  caret-color: rgb(38 38 38 / 0.15);
}

.caret-gray-800\/20 {
  caret-color: rgb(38 38 38 / 0.2);
}

.caret-gray-800\/25 {
  caret-color: rgb(38 38 38 / 0.25);
}

.caret-gray-800\/30 {
  caret-color: rgb(38 38 38 / 0.3);
}

.caret-gray-800\/35 {
  caret-color: rgb(38 38 38 / 0.35);
}

.caret-gray-800\/40 {
  caret-color: rgb(38 38 38 / 0.4);
}

.caret-gray-800\/45 {
  caret-color: rgb(38 38 38 / 0.45);
}

.caret-gray-800\/5 {
  caret-color: rgb(38 38 38 / 0.05);
}

.caret-gray-800\/50 {
  caret-color: rgb(38 38 38 / 0.5);
}

.caret-gray-800\/55 {
  caret-color: rgb(38 38 38 / 0.55);
}

.caret-gray-800\/60 {
  caret-color: rgb(38 38 38 / 0.6);
}

.caret-gray-800\/65 {
  caret-color: rgb(38 38 38 / 0.65);
}

.caret-gray-800\/70 {
  caret-color: rgb(38 38 38 / 0.7);
}

.caret-gray-800\/75 {
  caret-color: rgb(38 38 38 / 0.75);
}

.caret-gray-800\/80 {
  caret-color: rgb(38 38 38 / 0.8);
}

.caret-gray-800\/85 {
  caret-color: rgb(38 38 38 / 0.85);
}

.caret-gray-800\/90 {
  caret-color: rgb(38 38 38 / 0.9);
}

.caret-gray-800\/95 {
  caret-color: rgb(38 38 38 / 0.95);
}

.caret-gray-900 {
  caret-color: #171717;
}

.caret-gray-900\/0 {
  caret-color: rgb(23 23 23 / 0);
}

.caret-gray-900\/10 {
  caret-color: rgb(23 23 23 / 0.1);
}

.caret-gray-900\/100 {
  caret-color: rgb(23 23 23 / 1);
}

.caret-gray-900\/15 {
  caret-color: rgb(23 23 23 / 0.15);
}

.caret-gray-900\/20 {
  caret-color: rgb(23 23 23 / 0.2);
}

.caret-gray-900\/25 {
  caret-color: rgb(23 23 23 / 0.25);
}

.caret-gray-900\/30 {
  caret-color: rgb(23 23 23 / 0.3);
}

.caret-gray-900\/35 {
  caret-color: rgb(23 23 23 / 0.35);
}

.caret-gray-900\/40 {
  caret-color: rgb(23 23 23 / 0.4);
}

.caret-gray-900\/45 {
  caret-color: rgb(23 23 23 / 0.45);
}

.caret-gray-900\/5 {
  caret-color: rgb(23 23 23 / 0.05);
}

.caret-gray-900\/50 {
  caret-color: rgb(23 23 23 / 0.5);
}

.caret-gray-900\/55 {
  caret-color: rgb(23 23 23 / 0.55);
}

.caret-gray-900\/60 {
  caret-color: rgb(23 23 23 / 0.6);
}

.caret-gray-900\/65 {
  caret-color: rgb(23 23 23 / 0.65);
}

.caret-gray-900\/70 {
  caret-color: rgb(23 23 23 / 0.7);
}

.caret-gray-900\/75 {
  caret-color: rgb(23 23 23 / 0.75);
}

.caret-gray-900\/80 {
  caret-color: rgb(23 23 23 / 0.8);
}

.caret-gray-900\/85 {
  caret-color: rgb(23 23 23 / 0.85);
}

.caret-gray-900\/90 {
  caret-color: rgb(23 23 23 / 0.9);
}

.caret-gray-900\/95 {
  caret-color: rgb(23 23 23 / 0.95);
}

.caret-gray-950 {
  caret-color: #0a0a0a;
}

.caret-gray-950\/0 {
  caret-color: rgb(10 10 10 / 0);
}

.caret-gray-950\/10 {
  caret-color: rgb(10 10 10 / 0.1);
}

.caret-gray-950\/100 {
  caret-color: rgb(10 10 10 / 1);
}

.caret-gray-950\/15 {
  caret-color: rgb(10 10 10 / 0.15);
}

.caret-gray-950\/20 {
  caret-color: rgb(10 10 10 / 0.2);
}

.caret-gray-950\/25 {
  caret-color: rgb(10 10 10 / 0.25);
}

.caret-gray-950\/30 {
  caret-color: rgb(10 10 10 / 0.3);
}

.caret-gray-950\/35 {
  caret-color: rgb(10 10 10 / 0.35);
}

.caret-gray-950\/40 {
  caret-color: rgb(10 10 10 / 0.4);
}

.caret-gray-950\/45 {
  caret-color: rgb(10 10 10 / 0.45);
}

.caret-gray-950\/5 {
  caret-color: rgb(10 10 10 / 0.05);
}

.caret-gray-950\/50 {
  caret-color: rgb(10 10 10 / 0.5);
}

.caret-gray-950\/55 {
  caret-color: rgb(10 10 10 / 0.55);
}

.caret-gray-950\/60 {
  caret-color: rgb(10 10 10 / 0.6);
}

.caret-gray-950\/65 {
  caret-color: rgb(10 10 10 / 0.65);
}

.caret-gray-950\/70 {
  caret-color: rgb(10 10 10 / 0.7);
}

.caret-gray-950\/75 {
  caret-color: rgb(10 10 10 / 0.75);
}

.caret-gray-950\/80 {
  caret-color: rgb(10 10 10 / 0.8);
}

.caret-gray-950\/85 {
  caret-color: rgb(10 10 10 / 0.85);
}

.caret-gray-950\/90 {
  caret-color: rgb(10 10 10 / 0.9);
}

.caret-gray-950\/95 {
  caret-color: rgb(10 10 10 / 0.95);
}

.caret-green-100 {
  caret-color: #dcfce7;
}

.caret-green-100\/0 {
  caret-color: rgb(220 252 231 / 0);
}

.caret-green-100\/10 {
  caret-color: rgb(220 252 231 / 0.1);
}

.caret-green-100\/100 {
  caret-color: rgb(220 252 231 / 1);
}

.caret-green-100\/15 {
  caret-color: rgb(220 252 231 / 0.15);
}

.caret-green-100\/20 {
  caret-color: rgb(220 252 231 / 0.2);
}

.caret-green-100\/25 {
  caret-color: rgb(220 252 231 / 0.25);
}

.caret-green-100\/30 {
  caret-color: rgb(220 252 231 / 0.3);
}

.caret-green-100\/35 {
  caret-color: rgb(220 252 231 / 0.35);
}

.caret-green-100\/40 {
  caret-color: rgb(220 252 231 / 0.4);
}

.caret-green-100\/45 {
  caret-color: rgb(220 252 231 / 0.45);
}

.caret-green-100\/5 {
  caret-color: rgb(220 252 231 / 0.05);
}

.caret-green-100\/50 {
  caret-color: rgb(220 252 231 / 0.5);
}

.caret-green-100\/55 {
  caret-color: rgb(220 252 231 / 0.55);
}

.caret-green-100\/60 {
  caret-color: rgb(220 252 231 / 0.6);
}

.caret-green-100\/65 {
  caret-color: rgb(220 252 231 / 0.65);
}

.caret-green-100\/70 {
  caret-color: rgb(220 252 231 / 0.7);
}

.caret-green-100\/75 {
  caret-color: rgb(220 252 231 / 0.75);
}

.caret-green-100\/80 {
  caret-color: rgb(220 252 231 / 0.8);
}

.caret-green-100\/85 {
  caret-color: rgb(220 252 231 / 0.85);
}

.caret-green-100\/90 {
  caret-color: rgb(220 252 231 / 0.9);
}

.caret-green-100\/95 {
  caret-color: rgb(220 252 231 / 0.95);
}

.caret-green-200 {
  caret-color: #bbf7d0;
}

.caret-green-200\/0 {
  caret-color: rgb(187 247 208 / 0);
}

.caret-green-200\/10 {
  caret-color: rgb(187 247 208 / 0.1);
}

.caret-green-200\/100 {
  caret-color: rgb(187 247 208 / 1);
}

.caret-green-200\/15 {
  caret-color: rgb(187 247 208 / 0.15);
}

.caret-green-200\/20 {
  caret-color: rgb(187 247 208 / 0.2);
}

.caret-green-200\/25 {
  caret-color: rgb(187 247 208 / 0.25);
}

.caret-green-200\/30 {
  caret-color: rgb(187 247 208 / 0.3);
}

.caret-green-200\/35 {
  caret-color: rgb(187 247 208 / 0.35);
}

.caret-green-200\/40 {
  caret-color: rgb(187 247 208 / 0.4);
}

.caret-green-200\/45 {
  caret-color: rgb(187 247 208 / 0.45);
}

.caret-green-200\/5 {
  caret-color: rgb(187 247 208 / 0.05);
}

.caret-green-200\/50 {
  caret-color: rgb(187 247 208 / 0.5);
}

.caret-green-200\/55 {
  caret-color: rgb(187 247 208 / 0.55);
}

.caret-green-200\/60 {
  caret-color: rgb(187 247 208 / 0.6);
}

.caret-green-200\/65 {
  caret-color: rgb(187 247 208 / 0.65);
}

.caret-green-200\/70 {
  caret-color: rgb(187 247 208 / 0.7);
}

.caret-green-200\/75 {
  caret-color: rgb(187 247 208 / 0.75);
}

.caret-green-200\/80 {
  caret-color: rgb(187 247 208 / 0.8);
}

.caret-green-200\/85 {
  caret-color: rgb(187 247 208 / 0.85);
}

.caret-green-200\/90 {
  caret-color: rgb(187 247 208 / 0.9);
}

.caret-green-200\/95 {
  caret-color: rgb(187 247 208 / 0.95);
}

.caret-green-300 {
  caret-color: #86efac;
}

.caret-green-300\/0 {
  caret-color: rgb(134 239 172 / 0);
}

.caret-green-300\/10 {
  caret-color: rgb(134 239 172 / 0.1);
}

.caret-green-300\/100 {
  caret-color: rgb(134 239 172 / 1);
}

.caret-green-300\/15 {
  caret-color: rgb(134 239 172 / 0.15);
}

.caret-green-300\/20 {
  caret-color: rgb(134 239 172 / 0.2);
}

.caret-green-300\/25 {
  caret-color: rgb(134 239 172 / 0.25);
}

.caret-green-300\/30 {
  caret-color: rgb(134 239 172 / 0.3);
}

.caret-green-300\/35 {
  caret-color: rgb(134 239 172 / 0.35);
}

.caret-green-300\/40 {
  caret-color: rgb(134 239 172 / 0.4);
}

.caret-green-300\/45 {
  caret-color: rgb(134 239 172 / 0.45);
}

.caret-green-300\/5 {
  caret-color: rgb(134 239 172 / 0.05);
}

.caret-green-300\/50 {
  caret-color: rgb(134 239 172 / 0.5);
}

.caret-green-300\/55 {
  caret-color: rgb(134 239 172 / 0.55);
}

.caret-green-300\/60 {
  caret-color: rgb(134 239 172 / 0.6);
}

.caret-green-300\/65 {
  caret-color: rgb(134 239 172 / 0.65);
}

.caret-green-300\/70 {
  caret-color: rgb(134 239 172 / 0.7);
}

.caret-green-300\/75 {
  caret-color: rgb(134 239 172 / 0.75);
}

.caret-green-300\/80 {
  caret-color: rgb(134 239 172 / 0.8);
}

.caret-green-300\/85 {
  caret-color: rgb(134 239 172 / 0.85);
}

.caret-green-300\/90 {
  caret-color: rgb(134 239 172 / 0.9);
}

.caret-green-300\/95 {
  caret-color: rgb(134 239 172 / 0.95);
}

.caret-green-400 {
  caret-color: #4ade80;
}

.caret-green-400\/0 {
  caret-color: rgb(74 222 128 / 0);
}

.caret-green-400\/10 {
  caret-color: rgb(74 222 128 / 0.1);
}

.caret-green-400\/100 {
  caret-color: rgb(74 222 128 / 1);
}

.caret-green-400\/15 {
  caret-color: rgb(74 222 128 / 0.15);
}

.caret-green-400\/20 {
  caret-color: rgb(74 222 128 / 0.2);
}

.caret-green-400\/25 {
  caret-color: rgb(74 222 128 / 0.25);
}

.caret-green-400\/30 {
  caret-color: rgb(74 222 128 / 0.3);
}

.caret-green-400\/35 {
  caret-color: rgb(74 222 128 / 0.35);
}

.caret-green-400\/40 {
  caret-color: rgb(74 222 128 / 0.4);
}

.caret-green-400\/45 {
  caret-color: rgb(74 222 128 / 0.45);
}

.caret-green-400\/5 {
  caret-color: rgb(74 222 128 / 0.05);
}

.caret-green-400\/50 {
  caret-color: rgb(74 222 128 / 0.5);
}

.caret-green-400\/55 {
  caret-color: rgb(74 222 128 / 0.55);
}

.caret-green-400\/60 {
  caret-color: rgb(74 222 128 / 0.6);
}

.caret-green-400\/65 {
  caret-color: rgb(74 222 128 / 0.65);
}

.caret-green-400\/70 {
  caret-color: rgb(74 222 128 / 0.7);
}

.caret-green-400\/75 {
  caret-color: rgb(74 222 128 / 0.75);
}

.caret-green-400\/80 {
  caret-color: rgb(74 222 128 / 0.8);
}

.caret-green-400\/85 {
  caret-color: rgb(74 222 128 / 0.85);
}

.caret-green-400\/90 {
  caret-color: rgb(74 222 128 / 0.9);
}

.caret-green-400\/95 {
  caret-color: rgb(74 222 128 / 0.95);
}

.caret-green-50 {
  caret-color: #f0fdf4;
}

.caret-green-50\/0 {
  caret-color: rgb(240 253 244 / 0);
}

.caret-green-50\/10 {
  caret-color: rgb(240 253 244 / 0.1);
}

.caret-green-50\/100 {
  caret-color: rgb(240 253 244 / 1);
}

.caret-green-50\/15 {
  caret-color: rgb(240 253 244 / 0.15);
}

.caret-green-50\/20 {
  caret-color: rgb(240 253 244 / 0.2);
}

.caret-green-50\/25 {
  caret-color: rgb(240 253 244 / 0.25);
}

.caret-green-50\/30 {
  caret-color: rgb(240 253 244 / 0.3);
}

.caret-green-50\/35 {
  caret-color: rgb(240 253 244 / 0.35);
}

.caret-green-50\/40 {
  caret-color: rgb(240 253 244 / 0.4);
}

.caret-green-50\/45 {
  caret-color: rgb(240 253 244 / 0.45);
}

.caret-green-50\/5 {
  caret-color: rgb(240 253 244 / 0.05);
}

.caret-green-50\/50 {
  caret-color: rgb(240 253 244 / 0.5);
}

.caret-green-50\/55 {
  caret-color: rgb(240 253 244 / 0.55);
}

.caret-green-50\/60 {
  caret-color: rgb(240 253 244 / 0.6);
}

.caret-green-50\/65 {
  caret-color: rgb(240 253 244 / 0.65);
}

.caret-green-50\/70 {
  caret-color: rgb(240 253 244 / 0.7);
}

.caret-green-50\/75 {
  caret-color: rgb(240 253 244 / 0.75);
}

.caret-green-50\/80 {
  caret-color: rgb(240 253 244 / 0.8);
}

.caret-green-50\/85 {
  caret-color: rgb(240 253 244 / 0.85);
}

.caret-green-50\/90 {
  caret-color: rgb(240 253 244 / 0.9);
}

.caret-green-50\/95 {
  caret-color: rgb(240 253 244 / 0.95);
}

.caret-green-500 {
  caret-color: #22c55e;
}

.caret-green-500\/0 {
  caret-color: rgb(34 197 94 / 0);
}

.caret-green-500\/10 {
  caret-color: rgb(34 197 94 / 0.1);
}

.caret-green-500\/100 {
  caret-color: rgb(34 197 94 / 1);
}

.caret-green-500\/15 {
  caret-color: rgb(34 197 94 / 0.15);
}

.caret-green-500\/20 {
  caret-color: rgb(34 197 94 / 0.2);
}

.caret-green-500\/25 {
  caret-color: rgb(34 197 94 / 0.25);
}

.caret-green-500\/30 {
  caret-color: rgb(34 197 94 / 0.3);
}

.caret-green-500\/35 {
  caret-color: rgb(34 197 94 / 0.35);
}

.caret-green-500\/40 {
  caret-color: rgb(34 197 94 / 0.4);
}

.caret-green-500\/45 {
  caret-color: rgb(34 197 94 / 0.45);
}

.caret-green-500\/5 {
  caret-color: rgb(34 197 94 / 0.05);
}

.caret-green-500\/50 {
  caret-color: rgb(34 197 94 / 0.5);
}

.caret-green-500\/55 {
  caret-color: rgb(34 197 94 / 0.55);
}

.caret-green-500\/60 {
  caret-color: rgb(34 197 94 / 0.6);
}

.caret-green-500\/65 {
  caret-color: rgb(34 197 94 / 0.65);
}

.caret-green-500\/70 {
  caret-color: rgb(34 197 94 / 0.7);
}

.caret-green-500\/75 {
  caret-color: rgb(34 197 94 / 0.75);
}

.caret-green-500\/80 {
  caret-color: rgb(34 197 94 / 0.8);
}

.caret-green-500\/85 {
  caret-color: rgb(34 197 94 / 0.85);
}

.caret-green-500\/90 {
  caret-color: rgb(34 197 94 / 0.9);
}

.caret-green-500\/95 {
  caret-color: rgb(34 197 94 / 0.95);
}

.caret-green-600 {
  caret-color: #16a34a;
}

.caret-green-600\/0 {
  caret-color: rgb(22 163 74 / 0);
}

.caret-green-600\/10 {
  caret-color: rgb(22 163 74 / 0.1);
}

.caret-green-600\/100 {
  caret-color: rgb(22 163 74 / 1);
}

.caret-green-600\/15 {
  caret-color: rgb(22 163 74 / 0.15);
}

.caret-green-600\/20 {
  caret-color: rgb(22 163 74 / 0.2);
}

.caret-green-600\/25 {
  caret-color: rgb(22 163 74 / 0.25);
}

.caret-green-600\/30 {
  caret-color: rgb(22 163 74 / 0.3);
}

.caret-green-600\/35 {
  caret-color: rgb(22 163 74 / 0.35);
}

.caret-green-600\/40 {
  caret-color: rgb(22 163 74 / 0.4);
}

.caret-green-600\/45 {
  caret-color: rgb(22 163 74 / 0.45);
}

.caret-green-600\/5 {
  caret-color: rgb(22 163 74 / 0.05);
}

.caret-green-600\/50 {
  caret-color: rgb(22 163 74 / 0.5);
}

.caret-green-600\/55 {
  caret-color: rgb(22 163 74 / 0.55);
}

.caret-green-600\/60 {
  caret-color: rgb(22 163 74 / 0.6);
}

.caret-green-600\/65 {
  caret-color: rgb(22 163 74 / 0.65);
}

.caret-green-600\/70 {
  caret-color: rgb(22 163 74 / 0.7);
}

.caret-green-600\/75 {
  caret-color: rgb(22 163 74 / 0.75);
}

.caret-green-600\/80 {
  caret-color: rgb(22 163 74 / 0.8);
}

.caret-green-600\/85 {
  caret-color: rgb(22 163 74 / 0.85);
}

.caret-green-600\/90 {
  caret-color: rgb(22 163 74 / 0.9);
}

.caret-green-600\/95 {
  caret-color: rgb(22 163 74 / 0.95);
}

.caret-green-700 {
  caret-color: #15803d;
}

.caret-green-700\/0 {
  caret-color: rgb(21 128 61 / 0);
}

.caret-green-700\/10 {
  caret-color: rgb(21 128 61 / 0.1);
}

.caret-green-700\/100 {
  caret-color: rgb(21 128 61 / 1);
}

.caret-green-700\/15 {
  caret-color: rgb(21 128 61 / 0.15);
}

.caret-green-700\/20 {
  caret-color: rgb(21 128 61 / 0.2);
}

.caret-green-700\/25 {
  caret-color: rgb(21 128 61 / 0.25);
}

.caret-green-700\/30 {
  caret-color: rgb(21 128 61 / 0.3);
}

.caret-green-700\/35 {
  caret-color: rgb(21 128 61 / 0.35);
}

.caret-green-700\/40 {
  caret-color: rgb(21 128 61 / 0.4);
}

.caret-green-700\/45 {
  caret-color: rgb(21 128 61 / 0.45);
}

.caret-green-700\/5 {
  caret-color: rgb(21 128 61 / 0.05);
}

.caret-green-700\/50 {
  caret-color: rgb(21 128 61 / 0.5);
}

.caret-green-700\/55 {
  caret-color: rgb(21 128 61 / 0.55);
}

.caret-green-700\/60 {
  caret-color: rgb(21 128 61 / 0.6);
}

.caret-green-700\/65 {
  caret-color: rgb(21 128 61 / 0.65);
}

.caret-green-700\/70 {
  caret-color: rgb(21 128 61 / 0.7);
}

.caret-green-700\/75 {
  caret-color: rgb(21 128 61 / 0.75);
}

.caret-green-700\/80 {
  caret-color: rgb(21 128 61 / 0.8);
}

.caret-green-700\/85 {
  caret-color: rgb(21 128 61 / 0.85);
}

.caret-green-700\/90 {
  caret-color: rgb(21 128 61 / 0.9);
}

.caret-green-700\/95 {
  caret-color: rgb(21 128 61 / 0.95);
}

.caret-green-800 {
  caret-color: #166534;
}

.caret-green-800\/0 {
  caret-color: rgb(22 101 52 / 0);
}

.caret-green-800\/10 {
  caret-color: rgb(22 101 52 / 0.1);
}

.caret-green-800\/100 {
  caret-color: rgb(22 101 52 / 1);
}

.caret-green-800\/15 {
  caret-color: rgb(22 101 52 / 0.15);
}

.caret-green-800\/20 {
  caret-color: rgb(22 101 52 / 0.2);
}

.caret-green-800\/25 {
  caret-color: rgb(22 101 52 / 0.25);
}

.caret-green-800\/30 {
  caret-color: rgb(22 101 52 / 0.3);
}

.caret-green-800\/35 {
  caret-color: rgb(22 101 52 / 0.35);
}

.caret-green-800\/40 {
  caret-color: rgb(22 101 52 / 0.4);
}

.caret-green-800\/45 {
  caret-color: rgb(22 101 52 / 0.45);
}

.caret-green-800\/5 {
  caret-color: rgb(22 101 52 / 0.05);
}

.caret-green-800\/50 {
  caret-color: rgb(22 101 52 / 0.5);
}

.caret-green-800\/55 {
  caret-color: rgb(22 101 52 / 0.55);
}

.caret-green-800\/60 {
  caret-color: rgb(22 101 52 / 0.6);
}

.caret-green-800\/65 {
  caret-color: rgb(22 101 52 / 0.65);
}

.caret-green-800\/70 {
  caret-color: rgb(22 101 52 / 0.7);
}

.caret-green-800\/75 {
  caret-color: rgb(22 101 52 / 0.75);
}

.caret-green-800\/80 {
  caret-color: rgb(22 101 52 / 0.8);
}

.caret-green-800\/85 {
  caret-color: rgb(22 101 52 / 0.85);
}

.caret-green-800\/90 {
  caret-color: rgb(22 101 52 / 0.9);
}

.caret-green-800\/95 {
  caret-color: rgb(22 101 52 / 0.95);
}

.caret-green-900 {
  caret-color: #14532d;
}

.caret-green-900\/0 {
  caret-color: rgb(20 83 45 / 0);
}

.caret-green-900\/10 {
  caret-color: rgb(20 83 45 / 0.1);
}

.caret-green-900\/100 {
  caret-color: rgb(20 83 45 / 1);
}

.caret-green-900\/15 {
  caret-color: rgb(20 83 45 / 0.15);
}

.caret-green-900\/20 {
  caret-color: rgb(20 83 45 / 0.2);
}

.caret-green-900\/25 {
  caret-color: rgb(20 83 45 / 0.25);
}

.caret-green-900\/30 {
  caret-color: rgb(20 83 45 / 0.3);
}

.caret-green-900\/35 {
  caret-color: rgb(20 83 45 / 0.35);
}

.caret-green-900\/40 {
  caret-color: rgb(20 83 45 / 0.4);
}

.caret-green-900\/45 {
  caret-color: rgb(20 83 45 / 0.45);
}

.caret-green-900\/5 {
  caret-color: rgb(20 83 45 / 0.05);
}

.caret-green-900\/50 {
  caret-color: rgb(20 83 45 / 0.5);
}

.caret-green-900\/55 {
  caret-color: rgb(20 83 45 / 0.55);
}

.caret-green-900\/60 {
  caret-color: rgb(20 83 45 / 0.6);
}

.caret-green-900\/65 {
  caret-color: rgb(20 83 45 / 0.65);
}

.caret-green-900\/70 {
  caret-color: rgb(20 83 45 / 0.7);
}

.caret-green-900\/75 {
  caret-color: rgb(20 83 45 / 0.75);
}

.caret-green-900\/80 {
  caret-color: rgb(20 83 45 / 0.8);
}

.caret-green-900\/85 {
  caret-color: rgb(20 83 45 / 0.85);
}

.caret-green-900\/90 {
  caret-color: rgb(20 83 45 / 0.9);
}

.caret-green-900\/95 {
  caret-color: rgb(20 83 45 / 0.95);
}

.caret-green-950 {
  caret-color: #052e16;
}

.caret-green-950\/0 {
  caret-color: rgb(5 46 22 / 0);
}

.caret-green-950\/10 {
  caret-color: rgb(5 46 22 / 0.1);
}

.caret-green-950\/100 {
  caret-color: rgb(5 46 22 / 1);
}

.caret-green-950\/15 {
  caret-color: rgb(5 46 22 / 0.15);
}

.caret-green-950\/20 {
  caret-color: rgb(5 46 22 / 0.2);
}

.caret-green-950\/25 {
  caret-color: rgb(5 46 22 / 0.25);
}

.caret-green-950\/30 {
  caret-color: rgb(5 46 22 / 0.3);
}

.caret-green-950\/35 {
  caret-color: rgb(5 46 22 / 0.35);
}

.caret-green-950\/40 {
  caret-color: rgb(5 46 22 / 0.4);
}

.caret-green-950\/45 {
  caret-color: rgb(5 46 22 / 0.45);
}

.caret-green-950\/5 {
  caret-color: rgb(5 46 22 / 0.05);
}

.caret-green-950\/50 {
  caret-color: rgb(5 46 22 / 0.5);
}

.caret-green-950\/55 {
  caret-color: rgb(5 46 22 / 0.55);
}

.caret-green-950\/60 {
  caret-color: rgb(5 46 22 / 0.6);
}

.caret-green-950\/65 {
  caret-color: rgb(5 46 22 / 0.65);
}

.caret-green-950\/70 {
  caret-color: rgb(5 46 22 / 0.7);
}

.caret-green-950\/75 {
  caret-color: rgb(5 46 22 / 0.75);
}

.caret-green-950\/80 {
  caret-color: rgb(5 46 22 / 0.8);
}

.caret-green-950\/85 {
  caret-color: rgb(5 46 22 / 0.85);
}

.caret-green-950\/90 {
  caret-color: rgb(5 46 22 / 0.9);
}

.caret-green-950\/95 {
  caret-color: rgb(5 46 22 / 0.95);
}

.caret-red-100 {
  caret-color: #fee2e2;
}

.caret-red-100\/0 {
  caret-color: rgb(254 226 226 / 0);
}

.caret-red-100\/10 {
  caret-color: rgb(254 226 226 / 0.1);
}

.caret-red-100\/100 {
  caret-color: rgb(254 226 226 / 1);
}

.caret-red-100\/15 {
  caret-color: rgb(254 226 226 / 0.15);
}

.caret-red-100\/20 {
  caret-color: rgb(254 226 226 / 0.2);
}

.caret-red-100\/25 {
  caret-color: rgb(254 226 226 / 0.25);
}

.caret-red-100\/30 {
  caret-color: rgb(254 226 226 / 0.3);
}

.caret-red-100\/35 {
  caret-color: rgb(254 226 226 / 0.35);
}

.caret-red-100\/40 {
  caret-color: rgb(254 226 226 / 0.4);
}

.caret-red-100\/45 {
  caret-color: rgb(254 226 226 / 0.45);
}

.caret-red-100\/5 {
  caret-color: rgb(254 226 226 / 0.05);
}

.caret-red-100\/50 {
  caret-color: rgb(254 226 226 / 0.5);
}

.caret-red-100\/55 {
  caret-color: rgb(254 226 226 / 0.55);
}

.caret-red-100\/60 {
  caret-color: rgb(254 226 226 / 0.6);
}

.caret-red-100\/65 {
  caret-color: rgb(254 226 226 / 0.65);
}

.caret-red-100\/70 {
  caret-color: rgb(254 226 226 / 0.7);
}

.caret-red-100\/75 {
  caret-color: rgb(254 226 226 / 0.75);
}

.caret-red-100\/80 {
  caret-color: rgb(254 226 226 / 0.8);
}

.caret-red-100\/85 {
  caret-color: rgb(254 226 226 / 0.85);
}

.caret-red-100\/90 {
  caret-color: rgb(254 226 226 / 0.9);
}

.caret-red-100\/95 {
  caret-color: rgb(254 226 226 / 0.95);
}

.caret-red-200 {
  caret-color: #fecaca;
}

.caret-red-200\/0 {
  caret-color: rgb(254 202 202 / 0);
}

.caret-red-200\/10 {
  caret-color: rgb(254 202 202 / 0.1);
}

.caret-red-200\/100 {
  caret-color: rgb(254 202 202 / 1);
}

.caret-red-200\/15 {
  caret-color: rgb(254 202 202 / 0.15);
}

.caret-red-200\/20 {
  caret-color: rgb(254 202 202 / 0.2);
}

.caret-red-200\/25 {
  caret-color: rgb(254 202 202 / 0.25);
}

.caret-red-200\/30 {
  caret-color: rgb(254 202 202 / 0.3);
}

.caret-red-200\/35 {
  caret-color: rgb(254 202 202 / 0.35);
}

.caret-red-200\/40 {
  caret-color: rgb(254 202 202 / 0.4);
}

.caret-red-200\/45 {
  caret-color: rgb(254 202 202 / 0.45);
}

.caret-red-200\/5 {
  caret-color: rgb(254 202 202 / 0.05);
}

.caret-red-200\/50 {
  caret-color: rgb(254 202 202 / 0.5);
}

.caret-red-200\/55 {
  caret-color: rgb(254 202 202 / 0.55);
}

.caret-red-200\/60 {
  caret-color: rgb(254 202 202 / 0.6);
}

.caret-red-200\/65 {
  caret-color: rgb(254 202 202 / 0.65);
}

.caret-red-200\/70 {
  caret-color: rgb(254 202 202 / 0.7);
}

.caret-red-200\/75 {
  caret-color: rgb(254 202 202 / 0.75);
}

.caret-red-200\/80 {
  caret-color: rgb(254 202 202 / 0.8);
}

.caret-red-200\/85 {
  caret-color: rgb(254 202 202 / 0.85);
}

.caret-red-200\/90 {
  caret-color: rgb(254 202 202 / 0.9);
}

.caret-red-200\/95 {
  caret-color: rgb(254 202 202 / 0.95);
}

.caret-red-300 {
  caret-color: #fca5a5;
}

.caret-red-300\/0 {
  caret-color: rgb(252 165 165 / 0);
}

.caret-red-300\/10 {
  caret-color: rgb(252 165 165 / 0.1);
}

.caret-red-300\/100 {
  caret-color: rgb(252 165 165 / 1);
}

.caret-red-300\/15 {
  caret-color: rgb(252 165 165 / 0.15);
}

.caret-red-300\/20 {
  caret-color: rgb(252 165 165 / 0.2);
}

.caret-red-300\/25 {
  caret-color: rgb(252 165 165 / 0.25);
}

.caret-red-300\/30 {
  caret-color: rgb(252 165 165 / 0.3);
}

.caret-red-300\/35 {
  caret-color: rgb(252 165 165 / 0.35);
}

.caret-red-300\/40 {
  caret-color: rgb(252 165 165 / 0.4);
}

.caret-red-300\/45 {
  caret-color: rgb(252 165 165 / 0.45);
}

.caret-red-300\/5 {
  caret-color: rgb(252 165 165 / 0.05);
}

.caret-red-300\/50 {
  caret-color: rgb(252 165 165 / 0.5);
}

.caret-red-300\/55 {
  caret-color: rgb(252 165 165 / 0.55);
}

.caret-red-300\/60 {
  caret-color: rgb(252 165 165 / 0.6);
}

.caret-red-300\/65 {
  caret-color: rgb(252 165 165 / 0.65);
}

.caret-red-300\/70 {
  caret-color: rgb(252 165 165 / 0.7);
}

.caret-red-300\/75 {
  caret-color: rgb(252 165 165 / 0.75);
}

.caret-red-300\/80 {
  caret-color: rgb(252 165 165 / 0.8);
}

.caret-red-300\/85 {
  caret-color: rgb(252 165 165 / 0.85);
}

.caret-red-300\/90 {
  caret-color: rgb(252 165 165 / 0.9);
}

.caret-red-300\/95 {
  caret-color: rgb(252 165 165 / 0.95);
}

.caret-red-400 {
  caret-color: #f87171;
}

.caret-red-400\/0 {
  caret-color: rgb(248 113 113 / 0);
}

.caret-red-400\/10 {
  caret-color: rgb(248 113 113 / 0.1);
}

.caret-red-400\/100 {
  caret-color: rgb(248 113 113 / 1);
}

.caret-red-400\/15 {
  caret-color: rgb(248 113 113 / 0.15);
}

.caret-red-400\/20 {
  caret-color: rgb(248 113 113 / 0.2);
}

.caret-red-400\/25 {
  caret-color: rgb(248 113 113 / 0.25);
}

.caret-red-400\/30 {
  caret-color: rgb(248 113 113 / 0.3);
}

.caret-red-400\/35 {
  caret-color: rgb(248 113 113 / 0.35);
}

.caret-red-400\/40 {
  caret-color: rgb(248 113 113 / 0.4);
}

.caret-red-400\/45 {
  caret-color: rgb(248 113 113 / 0.45);
}

.caret-red-400\/5 {
  caret-color: rgb(248 113 113 / 0.05);
}

.caret-red-400\/50 {
  caret-color: rgb(248 113 113 / 0.5);
}

.caret-red-400\/55 {
  caret-color: rgb(248 113 113 / 0.55);
}

.caret-red-400\/60 {
  caret-color: rgb(248 113 113 / 0.6);
}

.caret-red-400\/65 {
  caret-color: rgb(248 113 113 / 0.65);
}

.caret-red-400\/70 {
  caret-color: rgb(248 113 113 / 0.7);
}

.caret-red-400\/75 {
  caret-color: rgb(248 113 113 / 0.75);
}

.caret-red-400\/80 {
  caret-color: rgb(248 113 113 / 0.8);
}

.caret-red-400\/85 {
  caret-color: rgb(248 113 113 / 0.85);
}

.caret-red-400\/90 {
  caret-color: rgb(248 113 113 / 0.9);
}

.caret-red-400\/95 {
  caret-color: rgb(248 113 113 / 0.95);
}

.caret-red-50 {
  caret-color: #fef2f2;
}

.caret-red-50\/0 {
  caret-color: rgb(254 242 242 / 0);
}

.caret-red-50\/10 {
  caret-color: rgb(254 242 242 / 0.1);
}

.caret-red-50\/100 {
  caret-color: rgb(254 242 242 / 1);
}

.caret-red-50\/15 {
  caret-color: rgb(254 242 242 / 0.15);
}

.caret-red-50\/20 {
  caret-color: rgb(254 242 242 / 0.2);
}

.caret-red-50\/25 {
  caret-color: rgb(254 242 242 / 0.25);
}

.caret-red-50\/30 {
  caret-color: rgb(254 242 242 / 0.3);
}

.caret-red-50\/35 {
  caret-color: rgb(254 242 242 / 0.35);
}

.caret-red-50\/40 {
  caret-color: rgb(254 242 242 / 0.4);
}

.caret-red-50\/45 {
  caret-color: rgb(254 242 242 / 0.45);
}

.caret-red-50\/5 {
  caret-color: rgb(254 242 242 / 0.05);
}

.caret-red-50\/50 {
  caret-color: rgb(254 242 242 / 0.5);
}

.caret-red-50\/55 {
  caret-color: rgb(254 242 242 / 0.55);
}

.caret-red-50\/60 {
  caret-color: rgb(254 242 242 / 0.6);
}

.caret-red-50\/65 {
  caret-color: rgb(254 242 242 / 0.65);
}

.caret-red-50\/70 {
  caret-color: rgb(254 242 242 / 0.7);
}

.caret-red-50\/75 {
  caret-color: rgb(254 242 242 / 0.75);
}

.caret-red-50\/80 {
  caret-color: rgb(254 242 242 / 0.8);
}

.caret-red-50\/85 {
  caret-color: rgb(254 242 242 / 0.85);
}

.caret-red-50\/90 {
  caret-color: rgb(254 242 242 / 0.9);
}

.caret-red-50\/95 {
  caret-color: rgb(254 242 242 / 0.95);
}

.caret-red-500 {
  caret-color: #ef4444;
}

.caret-red-500\/0 {
  caret-color: rgb(239 68 68 / 0);
}

.caret-red-500\/10 {
  caret-color: rgb(239 68 68 / 0.1);
}

.caret-red-500\/100 {
  caret-color: rgb(239 68 68 / 1);
}

.caret-red-500\/15 {
  caret-color: rgb(239 68 68 / 0.15);
}

.caret-red-500\/20 {
  caret-color: rgb(239 68 68 / 0.2);
}

.caret-red-500\/25 {
  caret-color: rgb(239 68 68 / 0.25);
}

.caret-red-500\/30 {
  caret-color: rgb(239 68 68 / 0.3);
}

.caret-red-500\/35 {
  caret-color: rgb(239 68 68 / 0.35);
}

.caret-red-500\/40 {
  caret-color: rgb(239 68 68 / 0.4);
}

.caret-red-500\/45 {
  caret-color: rgb(239 68 68 / 0.45);
}

.caret-red-500\/5 {
  caret-color: rgb(239 68 68 / 0.05);
}

.caret-red-500\/50 {
  caret-color: rgb(239 68 68 / 0.5);
}

.caret-red-500\/55 {
  caret-color: rgb(239 68 68 / 0.55);
}

.caret-red-500\/60 {
  caret-color: rgb(239 68 68 / 0.6);
}

.caret-red-500\/65 {
  caret-color: rgb(239 68 68 / 0.65);
}

.caret-red-500\/70 {
  caret-color: rgb(239 68 68 / 0.7);
}

.caret-red-500\/75 {
  caret-color: rgb(239 68 68 / 0.75);
}

.caret-red-500\/80 {
  caret-color: rgb(239 68 68 / 0.8);
}

.caret-red-500\/85 {
  caret-color: rgb(239 68 68 / 0.85);
}

.caret-red-500\/90 {
  caret-color: rgb(239 68 68 / 0.9);
}

.caret-red-500\/95 {
  caret-color: rgb(239 68 68 / 0.95);
}

.caret-red-600 {
  caret-color: #dc2626;
}

.caret-red-600\/0 {
  caret-color: rgb(220 38 38 / 0);
}

.caret-red-600\/10 {
  caret-color: rgb(220 38 38 / 0.1);
}

.caret-red-600\/100 {
  caret-color: rgb(220 38 38 / 1);
}

.caret-red-600\/15 {
  caret-color: rgb(220 38 38 / 0.15);
}

.caret-red-600\/20 {
  caret-color: rgb(220 38 38 / 0.2);
}

.caret-red-600\/25 {
  caret-color: rgb(220 38 38 / 0.25);
}

.caret-red-600\/30 {
  caret-color: rgb(220 38 38 / 0.3);
}

.caret-red-600\/35 {
  caret-color: rgb(220 38 38 / 0.35);
}

.caret-red-600\/40 {
  caret-color: rgb(220 38 38 / 0.4);
}

.caret-red-600\/45 {
  caret-color: rgb(220 38 38 / 0.45);
}

.caret-red-600\/5 {
  caret-color: rgb(220 38 38 / 0.05);
}

.caret-red-600\/50 {
  caret-color: rgb(220 38 38 / 0.5);
}

.caret-red-600\/55 {
  caret-color: rgb(220 38 38 / 0.55);
}

.caret-red-600\/60 {
  caret-color: rgb(220 38 38 / 0.6);
}

.caret-red-600\/65 {
  caret-color: rgb(220 38 38 / 0.65);
}

.caret-red-600\/70 {
  caret-color: rgb(220 38 38 / 0.7);
}

.caret-red-600\/75 {
  caret-color: rgb(220 38 38 / 0.75);
}

.caret-red-600\/80 {
  caret-color: rgb(220 38 38 / 0.8);
}

.caret-red-600\/85 {
  caret-color: rgb(220 38 38 / 0.85);
}

.caret-red-600\/90 {
  caret-color: rgb(220 38 38 / 0.9);
}

.caret-red-600\/95 {
  caret-color: rgb(220 38 38 / 0.95);
}

.caret-red-700 {
  caret-color: #b91c1c;
}

.caret-red-700\/0 {
  caret-color: rgb(185 28 28 / 0);
}

.caret-red-700\/10 {
  caret-color: rgb(185 28 28 / 0.1);
}

.caret-red-700\/100 {
  caret-color: rgb(185 28 28 / 1);
}

.caret-red-700\/15 {
  caret-color: rgb(185 28 28 / 0.15);
}

.caret-red-700\/20 {
  caret-color: rgb(185 28 28 / 0.2);
}

.caret-red-700\/25 {
  caret-color: rgb(185 28 28 / 0.25);
}

.caret-red-700\/30 {
  caret-color: rgb(185 28 28 / 0.3);
}

.caret-red-700\/35 {
  caret-color: rgb(185 28 28 / 0.35);
}

.caret-red-700\/40 {
  caret-color: rgb(185 28 28 / 0.4);
}

.caret-red-700\/45 {
  caret-color: rgb(185 28 28 / 0.45);
}

.caret-red-700\/5 {
  caret-color: rgb(185 28 28 / 0.05);
}

.caret-red-700\/50 {
  caret-color: rgb(185 28 28 / 0.5);
}

.caret-red-700\/55 {
  caret-color: rgb(185 28 28 / 0.55);
}

.caret-red-700\/60 {
  caret-color: rgb(185 28 28 / 0.6);
}

.caret-red-700\/65 {
  caret-color: rgb(185 28 28 / 0.65);
}

.caret-red-700\/70 {
  caret-color: rgb(185 28 28 / 0.7);
}

.caret-red-700\/75 {
  caret-color: rgb(185 28 28 / 0.75);
}

.caret-red-700\/80 {
  caret-color: rgb(185 28 28 / 0.8);
}

.caret-red-700\/85 {
  caret-color: rgb(185 28 28 / 0.85);
}

.caret-red-700\/90 {
  caret-color: rgb(185 28 28 / 0.9);
}

.caret-red-700\/95 {
  caret-color: rgb(185 28 28 / 0.95);
}

.caret-red-800 {
  caret-color: #991b1b;
}

.caret-red-800\/0 {
  caret-color: rgb(153 27 27 / 0);
}

.caret-red-800\/10 {
  caret-color: rgb(153 27 27 / 0.1);
}

.caret-red-800\/100 {
  caret-color: rgb(153 27 27 / 1);
}

.caret-red-800\/15 {
  caret-color: rgb(153 27 27 / 0.15);
}

.caret-red-800\/20 {
  caret-color: rgb(153 27 27 / 0.2);
}

.caret-red-800\/25 {
  caret-color: rgb(153 27 27 / 0.25);
}

.caret-red-800\/30 {
  caret-color: rgb(153 27 27 / 0.3);
}

.caret-red-800\/35 {
  caret-color: rgb(153 27 27 / 0.35);
}

.caret-red-800\/40 {
  caret-color: rgb(153 27 27 / 0.4);
}

.caret-red-800\/45 {
  caret-color: rgb(153 27 27 / 0.45);
}

.caret-red-800\/5 {
  caret-color: rgb(153 27 27 / 0.05);
}

.caret-red-800\/50 {
  caret-color: rgb(153 27 27 / 0.5);
}

.caret-red-800\/55 {
  caret-color: rgb(153 27 27 / 0.55);
}

.caret-red-800\/60 {
  caret-color: rgb(153 27 27 / 0.6);
}

.caret-red-800\/65 {
  caret-color: rgb(153 27 27 / 0.65);
}

.caret-red-800\/70 {
  caret-color: rgb(153 27 27 / 0.7);
}

.caret-red-800\/75 {
  caret-color: rgb(153 27 27 / 0.75);
}

.caret-red-800\/80 {
  caret-color: rgb(153 27 27 / 0.8);
}

.caret-red-800\/85 {
  caret-color: rgb(153 27 27 / 0.85);
}

.caret-red-800\/90 {
  caret-color: rgb(153 27 27 / 0.9);
}

.caret-red-800\/95 {
  caret-color: rgb(153 27 27 / 0.95);
}

.caret-red-900 {
  caret-color: #7f1d1d;
}

.caret-red-900\/0 {
  caret-color: rgb(127 29 29 / 0);
}

.caret-red-900\/10 {
  caret-color: rgb(127 29 29 / 0.1);
}

.caret-red-900\/100 {
  caret-color: rgb(127 29 29 / 1);
}

.caret-red-900\/15 {
  caret-color: rgb(127 29 29 / 0.15);
}

.caret-red-900\/20 {
  caret-color: rgb(127 29 29 / 0.2);
}

.caret-red-900\/25 {
  caret-color: rgb(127 29 29 / 0.25);
}

.caret-red-900\/30 {
  caret-color: rgb(127 29 29 / 0.3);
}

.caret-red-900\/35 {
  caret-color: rgb(127 29 29 / 0.35);
}

.caret-red-900\/40 {
  caret-color: rgb(127 29 29 / 0.4);
}

.caret-red-900\/45 {
  caret-color: rgb(127 29 29 / 0.45);
}

.caret-red-900\/5 {
  caret-color: rgb(127 29 29 / 0.05);
}

.caret-red-900\/50 {
  caret-color: rgb(127 29 29 / 0.5);
}

.caret-red-900\/55 {
  caret-color: rgb(127 29 29 / 0.55);
}

.caret-red-900\/60 {
  caret-color: rgb(127 29 29 / 0.6);
}

.caret-red-900\/65 {
  caret-color: rgb(127 29 29 / 0.65);
}

.caret-red-900\/70 {
  caret-color: rgb(127 29 29 / 0.7);
}

.caret-red-900\/75 {
  caret-color: rgb(127 29 29 / 0.75);
}

.caret-red-900\/80 {
  caret-color: rgb(127 29 29 / 0.8);
}

.caret-red-900\/85 {
  caret-color: rgb(127 29 29 / 0.85);
}

.caret-red-900\/90 {
  caret-color: rgb(127 29 29 / 0.9);
}

.caret-red-900\/95 {
  caret-color: rgb(127 29 29 / 0.95);
}

.caret-red-950 {
  caret-color: #450a0a;
}

.caret-red-950\/0 {
  caret-color: rgb(69 10 10 / 0);
}

.caret-red-950\/10 {
  caret-color: rgb(69 10 10 / 0.1);
}

.caret-red-950\/100 {
  caret-color: rgb(69 10 10 / 1);
}

.caret-red-950\/15 {
  caret-color: rgb(69 10 10 / 0.15);
}

.caret-red-950\/20 {
  caret-color: rgb(69 10 10 / 0.2);
}

.caret-red-950\/25 {
  caret-color: rgb(69 10 10 / 0.25);
}

.caret-red-950\/30 {
  caret-color: rgb(69 10 10 / 0.3);
}

.caret-red-950\/35 {
  caret-color: rgb(69 10 10 / 0.35);
}

.caret-red-950\/40 {
  caret-color: rgb(69 10 10 / 0.4);
}

.caret-red-950\/45 {
  caret-color: rgb(69 10 10 / 0.45);
}

.caret-red-950\/5 {
  caret-color: rgb(69 10 10 / 0.05);
}

.caret-red-950\/50 {
  caret-color: rgb(69 10 10 / 0.5);
}

.caret-red-950\/55 {
  caret-color: rgb(69 10 10 / 0.55);
}

.caret-red-950\/60 {
  caret-color: rgb(69 10 10 / 0.6);
}

.caret-red-950\/65 {
  caret-color: rgb(69 10 10 / 0.65);
}

.caret-red-950\/70 {
  caret-color: rgb(69 10 10 / 0.7);
}

.caret-red-950\/75 {
  caret-color: rgb(69 10 10 / 0.75);
}

.caret-red-950\/80 {
  caret-color: rgb(69 10 10 / 0.8);
}

.caret-red-950\/85 {
  caret-color: rgb(69 10 10 / 0.85);
}

.caret-red-950\/90 {
  caret-color: rgb(69 10 10 / 0.9);
}

.caret-red-950\/95 {
  caret-color: rgb(69 10 10 / 0.95);
}

.caret-transparent {
  caret-color: transparent;
}

.caret-transparent\/0 {
  caret-color: rgb(0 0 0 / 0);
}

.caret-transparent\/10 {
  caret-color: rgb(0 0 0 / 0.1);
}

.caret-transparent\/100 {
  caret-color: rgb(0 0 0 / 1);
}

.caret-transparent\/15 {
  caret-color: rgb(0 0 0 / 0.15);
}

.caret-transparent\/20 {
  caret-color: rgb(0 0 0 / 0.2);
}

.caret-transparent\/25 {
  caret-color: rgb(0 0 0 / 0.25);
}

.caret-transparent\/30 {
  caret-color: rgb(0 0 0 / 0.3);
}

.caret-transparent\/35 {
  caret-color: rgb(0 0 0 / 0.35);
}

.caret-transparent\/40 {
  caret-color: rgb(0 0 0 / 0.4);
}

.caret-transparent\/45 {
  caret-color: rgb(0 0 0 / 0.45);
}

.caret-transparent\/5 {
  caret-color: rgb(0 0 0 / 0.05);
}

.caret-transparent\/50 {
  caret-color: rgb(0 0 0 / 0.5);
}

.caret-transparent\/55 {
  caret-color: rgb(0 0 0 / 0.55);
}

.caret-transparent\/60 {
  caret-color: rgb(0 0 0 / 0.6);
}

.caret-transparent\/65 {
  caret-color: rgb(0 0 0 / 0.65);
}

.caret-transparent\/70 {
  caret-color: rgb(0 0 0 / 0.7);
}

.caret-transparent\/75 {
  caret-color: rgb(0 0 0 / 0.75);
}

.caret-transparent\/80 {
  caret-color: rgb(0 0 0 / 0.8);
}

.caret-transparent\/85 {
  caret-color: rgb(0 0 0 / 0.85);
}

.caret-transparent\/90 {
  caret-color: rgb(0 0 0 / 0.9);
}

.caret-transparent\/95 {
  caret-color: rgb(0 0 0 / 0.95);
}

.caret-white {
  caret-color: #fff;
}

.caret-white\/0 {
  caret-color: rgb(255 255 255 / 0);
}

.caret-white\/10 {
  caret-color: rgb(255 255 255 / 0.1);
}

.caret-white\/100 {
  caret-color: rgb(255 255 255 / 1);
}

.caret-white\/15 {
  caret-color: rgb(255 255 255 / 0.15);
}

.caret-white\/20 {
  caret-color: rgb(255 255 255 / 0.2);
}

.caret-white\/25 {
  caret-color: rgb(255 255 255 / 0.25);
}

.caret-white\/30 {
  caret-color: rgb(255 255 255 / 0.3);
}

.caret-white\/35 {
  caret-color: rgb(255 255 255 / 0.35);
}

.caret-white\/40 {
  caret-color: rgb(255 255 255 / 0.4);
}

.caret-white\/45 {
  caret-color: rgb(255 255 255 / 0.45);
}

.caret-white\/5 {
  caret-color: rgb(255 255 255 / 0.05);
}

.caret-white\/50 {
  caret-color: rgb(255 255 255 / 0.5);
}

.caret-white\/55 {
  caret-color: rgb(255 255 255 / 0.55);
}

.caret-white\/60 {
  caret-color: rgb(255 255 255 / 0.6);
}

.caret-white\/65 {
  caret-color: rgb(255 255 255 / 0.65);
}

.caret-white\/70 {
  caret-color: rgb(255 255 255 / 0.7);
}

.caret-white\/75 {
  caret-color: rgb(255 255 255 / 0.75);
}

.caret-white\/80 {
  caret-color: rgb(255 255 255 / 0.8);
}

.caret-white\/85 {
  caret-color: rgb(255 255 255 / 0.85);
}

.caret-white\/90 {
  caret-color: rgb(255 255 255 / 0.9);
}

.caret-white\/95 {
  caret-color: rgb(255 255 255 / 0.95);
}

.accent-auto {
  accent-color: auto;
}

.accent-black {
  accent-color: #000;
}

.accent-black\/0 {
  accent-color: rgb(0 0 0 / 0);
}

.accent-black\/10 {
  accent-color: rgb(0 0 0 / 0.1);
}

.accent-black\/100 {
  accent-color: rgb(0 0 0 / 1);
}

.accent-black\/15 {
  accent-color: rgb(0 0 0 / 0.15);
}

.accent-black\/20 {
  accent-color: rgb(0 0 0 / 0.2);
}

.accent-black\/25 {
  accent-color: rgb(0 0 0 / 0.25);
}

.accent-black\/30 {
  accent-color: rgb(0 0 0 / 0.3);
}

.accent-black\/35 {
  accent-color: rgb(0 0 0 / 0.35);
}

.accent-black\/40 {
  accent-color: rgb(0 0 0 / 0.4);
}

.accent-black\/45 {
  accent-color: rgb(0 0 0 / 0.45);
}

.accent-black\/5 {
  accent-color: rgb(0 0 0 / 0.05);
}

.accent-black\/50 {
  accent-color: rgb(0 0 0 / 0.5);
}

.accent-black\/55 {
  accent-color: rgb(0 0 0 / 0.55);
}

.accent-black\/60 {
  accent-color: rgb(0 0 0 / 0.6);
}

.accent-black\/65 {
  accent-color: rgb(0 0 0 / 0.65);
}

.accent-black\/70 {
  accent-color: rgb(0 0 0 / 0.7);
}

.accent-black\/75 {
  accent-color: rgb(0 0 0 / 0.75);
}

.accent-black\/80 {
  accent-color: rgb(0 0 0 / 0.8);
}

.accent-black\/85 {
  accent-color: rgb(0 0 0 / 0.85);
}

.accent-black\/90 {
  accent-color: rgb(0 0 0 / 0.9);
}

.accent-black\/95 {
  accent-color: rgb(0 0 0 / 0.95);
}

.accent-blue-100 {
  accent-color: #dbeafe;
}

.accent-blue-100\/0 {
  accent-color: rgb(219 234 254 / 0);
}

.accent-blue-100\/10 {
  accent-color: rgb(219 234 254 / 0.1);
}

.accent-blue-100\/100 {
  accent-color: rgb(219 234 254 / 1);
}

.accent-blue-100\/15 {
  accent-color: rgb(219 234 254 / 0.15);
}

.accent-blue-100\/20 {
  accent-color: rgb(219 234 254 / 0.2);
}

.accent-blue-100\/25 {
  accent-color: rgb(219 234 254 / 0.25);
}

.accent-blue-100\/30 {
  accent-color: rgb(219 234 254 / 0.3);
}

.accent-blue-100\/35 {
  accent-color: rgb(219 234 254 / 0.35);
}

.accent-blue-100\/40 {
  accent-color: rgb(219 234 254 / 0.4);
}

.accent-blue-100\/45 {
  accent-color: rgb(219 234 254 / 0.45);
}

.accent-blue-100\/5 {
  accent-color: rgb(219 234 254 / 0.05);
}

.accent-blue-100\/50 {
  accent-color: rgb(219 234 254 / 0.5);
}

.accent-blue-100\/55 {
  accent-color: rgb(219 234 254 / 0.55);
}

.accent-blue-100\/60 {
  accent-color: rgb(219 234 254 / 0.6);
}

.accent-blue-100\/65 {
  accent-color: rgb(219 234 254 / 0.65);
}

.accent-blue-100\/70 {
  accent-color: rgb(219 234 254 / 0.7);
}

.accent-blue-100\/75 {
  accent-color: rgb(219 234 254 / 0.75);
}

.accent-blue-100\/80 {
  accent-color: rgb(219 234 254 / 0.8);
}

.accent-blue-100\/85 {
  accent-color: rgb(219 234 254 / 0.85);
}

.accent-blue-100\/90 {
  accent-color: rgb(219 234 254 / 0.9);
}

.accent-blue-100\/95 {
  accent-color: rgb(219 234 254 / 0.95);
}

.accent-blue-200 {
  accent-color: #bfdbfe;
}

.accent-blue-200\/0 {
  accent-color: rgb(191 219 254 / 0);
}

.accent-blue-200\/10 {
  accent-color: rgb(191 219 254 / 0.1);
}

.accent-blue-200\/100 {
  accent-color: rgb(191 219 254 / 1);
}

.accent-blue-200\/15 {
  accent-color: rgb(191 219 254 / 0.15);
}

.accent-blue-200\/20 {
  accent-color: rgb(191 219 254 / 0.2);
}

.accent-blue-200\/25 {
  accent-color: rgb(191 219 254 / 0.25);
}

.accent-blue-200\/30 {
  accent-color: rgb(191 219 254 / 0.3);
}

.accent-blue-200\/35 {
  accent-color: rgb(191 219 254 / 0.35);
}

.accent-blue-200\/40 {
  accent-color: rgb(191 219 254 / 0.4);
}

.accent-blue-200\/45 {
  accent-color: rgb(191 219 254 / 0.45);
}

.accent-blue-200\/5 {
  accent-color: rgb(191 219 254 / 0.05);
}

.accent-blue-200\/50 {
  accent-color: rgb(191 219 254 / 0.5);
}

.accent-blue-200\/55 {
  accent-color: rgb(191 219 254 / 0.55);
}

.accent-blue-200\/60 {
  accent-color: rgb(191 219 254 / 0.6);
}

.accent-blue-200\/65 {
  accent-color: rgb(191 219 254 / 0.65);
}

.accent-blue-200\/70 {
  accent-color: rgb(191 219 254 / 0.7);
}

.accent-blue-200\/75 {
  accent-color: rgb(191 219 254 / 0.75);
}

.accent-blue-200\/80 {
  accent-color: rgb(191 219 254 / 0.8);
}

.accent-blue-200\/85 {
  accent-color: rgb(191 219 254 / 0.85);
}

.accent-blue-200\/90 {
  accent-color: rgb(191 219 254 / 0.9);
}

.accent-blue-200\/95 {
  accent-color: rgb(191 219 254 / 0.95);
}

.accent-blue-300 {
  accent-color: #93c5fd;
}

.accent-blue-300\/0 {
  accent-color: rgb(147 197 253 / 0);
}

.accent-blue-300\/10 {
  accent-color: rgb(147 197 253 / 0.1);
}

.accent-blue-300\/100 {
  accent-color: rgb(147 197 253 / 1);
}

.accent-blue-300\/15 {
  accent-color: rgb(147 197 253 / 0.15);
}

.accent-blue-300\/20 {
  accent-color: rgb(147 197 253 / 0.2);
}

.accent-blue-300\/25 {
  accent-color: rgb(147 197 253 / 0.25);
}

.accent-blue-300\/30 {
  accent-color: rgb(147 197 253 / 0.3);
}

.accent-blue-300\/35 {
  accent-color: rgb(147 197 253 / 0.35);
}

.accent-blue-300\/40 {
  accent-color: rgb(147 197 253 / 0.4);
}

.accent-blue-300\/45 {
  accent-color: rgb(147 197 253 / 0.45);
}

.accent-blue-300\/5 {
  accent-color: rgb(147 197 253 / 0.05);
}

.accent-blue-300\/50 {
  accent-color: rgb(147 197 253 / 0.5);
}

.accent-blue-300\/55 {
  accent-color: rgb(147 197 253 / 0.55);
}

.accent-blue-300\/60 {
  accent-color: rgb(147 197 253 / 0.6);
}

.accent-blue-300\/65 {
  accent-color: rgb(147 197 253 / 0.65);
}

.accent-blue-300\/70 {
  accent-color: rgb(147 197 253 / 0.7);
}

.accent-blue-300\/75 {
  accent-color: rgb(147 197 253 / 0.75);
}

.accent-blue-300\/80 {
  accent-color: rgb(147 197 253 / 0.8);
}

.accent-blue-300\/85 {
  accent-color: rgb(147 197 253 / 0.85);
}

.accent-blue-300\/90 {
  accent-color: rgb(147 197 253 / 0.9);
}

.accent-blue-300\/95 {
  accent-color: rgb(147 197 253 / 0.95);
}

.accent-blue-400 {
  accent-color: #60a5fa;
}

.accent-blue-400\/0 {
  accent-color: rgb(96 165 250 / 0);
}

.accent-blue-400\/10 {
  accent-color: rgb(96 165 250 / 0.1);
}

.accent-blue-400\/100 {
  accent-color: rgb(96 165 250 / 1);
}

.accent-blue-400\/15 {
  accent-color: rgb(96 165 250 / 0.15);
}

.accent-blue-400\/20 {
  accent-color: rgb(96 165 250 / 0.2);
}

.accent-blue-400\/25 {
  accent-color: rgb(96 165 250 / 0.25);
}

.accent-blue-400\/30 {
  accent-color: rgb(96 165 250 / 0.3);
}

.accent-blue-400\/35 {
  accent-color: rgb(96 165 250 / 0.35);
}

.accent-blue-400\/40 {
  accent-color: rgb(96 165 250 / 0.4);
}

.accent-blue-400\/45 {
  accent-color: rgb(96 165 250 / 0.45);
}

.accent-blue-400\/5 {
  accent-color: rgb(96 165 250 / 0.05);
}

.accent-blue-400\/50 {
  accent-color: rgb(96 165 250 / 0.5);
}

.accent-blue-400\/55 {
  accent-color: rgb(96 165 250 / 0.55);
}

.accent-blue-400\/60 {
  accent-color: rgb(96 165 250 / 0.6);
}

.accent-blue-400\/65 {
  accent-color: rgb(96 165 250 / 0.65);
}

.accent-blue-400\/70 {
  accent-color: rgb(96 165 250 / 0.7);
}

.accent-blue-400\/75 {
  accent-color: rgb(96 165 250 / 0.75);
}

.accent-blue-400\/80 {
  accent-color: rgb(96 165 250 / 0.8);
}

.accent-blue-400\/85 {
  accent-color: rgb(96 165 250 / 0.85);
}

.accent-blue-400\/90 {
  accent-color: rgb(96 165 250 / 0.9);
}

.accent-blue-400\/95 {
  accent-color: rgb(96 165 250 / 0.95);
}

.accent-blue-50 {
  accent-color: #eff6ff;
}

.accent-blue-50\/0 {
  accent-color: rgb(239 246 255 / 0);
}

.accent-blue-50\/10 {
  accent-color: rgb(239 246 255 / 0.1);
}

.accent-blue-50\/100 {
  accent-color: rgb(239 246 255 / 1);
}

.accent-blue-50\/15 {
  accent-color: rgb(239 246 255 / 0.15);
}

.accent-blue-50\/20 {
  accent-color: rgb(239 246 255 / 0.2);
}

.accent-blue-50\/25 {
  accent-color: rgb(239 246 255 / 0.25);
}

.accent-blue-50\/30 {
  accent-color: rgb(239 246 255 / 0.3);
}

.accent-blue-50\/35 {
  accent-color: rgb(239 246 255 / 0.35);
}

.accent-blue-50\/40 {
  accent-color: rgb(239 246 255 / 0.4);
}

.accent-blue-50\/45 {
  accent-color: rgb(239 246 255 / 0.45);
}

.accent-blue-50\/5 {
  accent-color: rgb(239 246 255 / 0.05);
}

.accent-blue-50\/50 {
  accent-color: rgb(239 246 255 / 0.5);
}

.accent-blue-50\/55 {
  accent-color: rgb(239 246 255 / 0.55);
}

.accent-blue-50\/60 {
  accent-color: rgb(239 246 255 / 0.6);
}

.accent-blue-50\/65 {
  accent-color: rgb(239 246 255 / 0.65);
}

.accent-blue-50\/70 {
  accent-color: rgb(239 246 255 / 0.7);
}

.accent-blue-50\/75 {
  accent-color: rgb(239 246 255 / 0.75);
}

.accent-blue-50\/80 {
  accent-color: rgb(239 246 255 / 0.8);
}

.accent-blue-50\/85 {
  accent-color: rgb(239 246 255 / 0.85);
}

.accent-blue-50\/90 {
  accent-color: rgb(239 246 255 / 0.9);
}

.accent-blue-50\/95 {
  accent-color: rgb(239 246 255 / 0.95);
}

.accent-blue-500 {
  accent-color: #3b82f6;
}

.accent-blue-500\/0 {
  accent-color: rgb(59 130 246 / 0);
}

.accent-blue-500\/10 {
  accent-color: rgb(59 130 246 / 0.1);
}

.accent-blue-500\/100 {
  accent-color: rgb(59 130 246 / 1);
}

.accent-blue-500\/15 {
  accent-color: rgb(59 130 246 / 0.15);
}

.accent-blue-500\/20 {
  accent-color: rgb(59 130 246 / 0.2);
}

.accent-blue-500\/25 {
  accent-color: rgb(59 130 246 / 0.25);
}

.accent-blue-500\/30 {
  accent-color: rgb(59 130 246 / 0.3);
}

.accent-blue-500\/35 {
  accent-color: rgb(59 130 246 / 0.35);
}

.accent-blue-500\/40 {
  accent-color: rgb(59 130 246 / 0.4);
}

.accent-blue-500\/45 {
  accent-color: rgb(59 130 246 / 0.45);
}

.accent-blue-500\/5 {
  accent-color: rgb(59 130 246 / 0.05);
}

.accent-blue-500\/50 {
  accent-color: rgb(59 130 246 / 0.5);
}

.accent-blue-500\/55 {
  accent-color: rgb(59 130 246 / 0.55);
}

.accent-blue-500\/60 {
  accent-color: rgb(59 130 246 / 0.6);
}

.accent-blue-500\/65 {
  accent-color: rgb(59 130 246 / 0.65);
}

.accent-blue-500\/70 {
  accent-color: rgb(59 130 246 / 0.7);
}

.accent-blue-500\/75 {
  accent-color: rgb(59 130 246 / 0.75);
}

.accent-blue-500\/80 {
  accent-color: rgb(59 130 246 / 0.8);
}

.accent-blue-500\/85 {
  accent-color: rgb(59 130 246 / 0.85);
}

.accent-blue-500\/90 {
  accent-color: rgb(59 130 246 / 0.9);
}

.accent-blue-500\/95 {
  accent-color: rgb(59 130 246 / 0.95);
}

.accent-blue-600 {
  accent-color: #2563eb;
}

.accent-blue-600\/0 {
  accent-color: rgb(37 99 235 / 0);
}

.accent-blue-600\/10 {
  accent-color: rgb(37 99 235 / 0.1);
}

.accent-blue-600\/100 {
  accent-color: rgb(37 99 235 / 1);
}

.accent-blue-600\/15 {
  accent-color: rgb(37 99 235 / 0.15);
}

.accent-blue-600\/20 {
  accent-color: rgb(37 99 235 / 0.2);
}

.accent-blue-600\/25 {
  accent-color: rgb(37 99 235 / 0.25);
}

.accent-blue-600\/30 {
  accent-color: rgb(37 99 235 / 0.3);
}

.accent-blue-600\/35 {
  accent-color: rgb(37 99 235 / 0.35);
}

.accent-blue-600\/40 {
  accent-color: rgb(37 99 235 / 0.4);
}

.accent-blue-600\/45 {
  accent-color: rgb(37 99 235 / 0.45);
}

.accent-blue-600\/5 {
  accent-color: rgb(37 99 235 / 0.05);
}

.accent-blue-600\/50 {
  accent-color: rgb(37 99 235 / 0.5);
}

.accent-blue-600\/55 {
  accent-color: rgb(37 99 235 / 0.55);
}

.accent-blue-600\/60 {
  accent-color: rgb(37 99 235 / 0.6);
}

.accent-blue-600\/65 {
  accent-color: rgb(37 99 235 / 0.65);
}

.accent-blue-600\/70 {
  accent-color: rgb(37 99 235 / 0.7);
}

.accent-blue-600\/75 {
  accent-color: rgb(37 99 235 / 0.75);
}

.accent-blue-600\/80 {
  accent-color: rgb(37 99 235 / 0.8);
}

.accent-blue-600\/85 {
  accent-color: rgb(37 99 235 / 0.85);
}

.accent-blue-600\/90 {
  accent-color: rgb(37 99 235 / 0.9);
}

.accent-blue-600\/95 {
  accent-color: rgb(37 99 235 / 0.95);
}

.accent-blue-700 {
  accent-color: #1d4ed8;
}

.accent-blue-700\/0 {
  accent-color: rgb(29 78 216 / 0);
}

.accent-blue-700\/10 {
  accent-color: rgb(29 78 216 / 0.1);
}

.accent-blue-700\/100 {
  accent-color: rgb(29 78 216 / 1);
}

.accent-blue-700\/15 {
  accent-color: rgb(29 78 216 / 0.15);
}

.accent-blue-700\/20 {
  accent-color: rgb(29 78 216 / 0.2);
}

.accent-blue-700\/25 {
  accent-color: rgb(29 78 216 / 0.25);
}

.accent-blue-700\/30 {
  accent-color: rgb(29 78 216 / 0.3);
}

.accent-blue-700\/35 {
  accent-color: rgb(29 78 216 / 0.35);
}

.accent-blue-700\/40 {
  accent-color: rgb(29 78 216 / 0.4);
}

.accent-blue-700\/45 {
  accent-color: rgb(29 78 216 / 0.45);
}

.accent-blue-700\/5 {
  accent-color: rgb(29 78 216 / 0.05);
}

.accent-blue-700\/50 {
  accent-color: rgb(29 78 216 / 0.5);
}

.accent-blue-700\/55 {
  accent-color: rgb(29 78 216 / 0.55);
}

.accent-blue-700\/60 {
  accent-color: rgb(29 78 216 / 0.6);
}

.accent-blue-700\/65 {
  accent-color: rgb(29 78 216 / 0.65);
}

.accent-blue-700\/70 {
  accent-color: rgb(29 78 216 / 0.7);
}

.accent-blue-700\/75 {
  accent-color: rgb(29 78 216 / 0.75);
}

.accent-blue-700\/80 {
  accent-color: rgb(29 78 216 / 0.8);
}

.accent-blue-700\/85 {
  accent-color: rgb(29 78 216 / 0.85);
}

.accent-blue-700\/90 {
  accent-color: rgb(29 78 216 / 0.9);
}

.accent-blue-700\/95 {
  accent-color: rgb(29 78 216 / 0.95);
}

.accent-blue-800 {
  accent-color: #1e40af;
}

.accent-blue-800\/0 {
  accent-color: rgb(30 64 175 / 0);
}

.accent-blue-800\/10 {
  accent-color: rgb(30 64 175 / 0.1);
}

.accent-blue-800\/100 {
  accent-color: rgb(30 64 175 / 1);
}

.accent-blue-800\/15 {
  accent-color: rgb(30 64 175 / 0.15);
}

.accent-blue-800\/20 {
  accent-color: rgb(30 64 175 / 0.2);
}

.accent-blue-800\/25 {
  accent-color: rgb(30 64 175 / 0.25);
}

.accent-blue-800\/30 {
  accent-color: rgb(30 64 175 / 0.3);
}

.accent-blue-800\/35 {
  accent-color: rgb(30 64 175 / 0.35);
}

.accent-blue-800\/40 {
  accent-color: rgb(30 64 175 / 0.4);
}

.accent-blue-800\/45 {
  accent-color: rgb(30 64 175 / 0.45);
}

.accent-blue-800\/5 {
  accent-color: rgb(30 64 175 / 0.05);
}

.accent-blue-800\/50 {
  accent-color: rgb(30 64 175 / 0.5);
}

.accent-blue-800\/55 {
  accent-color: rgb(30 64 175 / 0.55);
}

.accent-blue-800\/60 {
  accent-color: rgb(30 64 175 / 0.6);
}

.accent-blue-800\/65 {
  accent-color: rgb(30 64 175 / 0.65);
}

.accent-blue-800\/70 {
  accent-color: rgb(30 64 175 / 0.7);
}

.accent-blue-800\/75 {
  accent-color: rgb(30 64 175 / 0.75);
}

.accent-blue-800\/80 {
  accent-color: rgb(30 64 175 / 0.8);
}

.accent-blue-800\/85 {
  accent-color: rgb(30 64 175 / 0.85);
}

.accent-blue-800\/90 {
  accent-color: rgb(30 64 175 / 0.9);
}

.accent-blue-800\/95 {
  accent-color: rgb(30 64 175 / 0.95);
}

.accent-blue-900 {
  accent-color: #1e3a8a;
}

.accent-blue-900\/0 {
  accent-color: rgb(30 58 138 / 0);
}

.accent-blue-900\/10 {
  accent-color: rgb(30 58 138 / 0.1);
}

.accent-blue-900\/100 {
  accent-color: rgb(30 58 138 / 1);
}

.accent-blue-900\/15 {
  accent-color: rgb(30 58 138 / 0.15);
}

.accent-blue-900\/20 {
  accent-color: rgb(30 58 138 / 0.2);
}

.accent-blue-900\/25 {
  accent-color: rgb(30 58 138 / 0.25);
}

.accent-blue-900\/30 {
  accent-color: rgb(30 58 138 / 0.3);
}

.accent-blue-900\/35 {
  accent-color: rgb(30 58 138 / 0.35);
}

.accent-blue-900\/40 {
  accent-color: rgb(30 58 138 / 0.4);
}

.accent-blue-900\/45 {
  accent-color: rgb(30 58 138 / 0.45);
}

.accent-blue-900\/5 {
  accent-color: rgb(30 58 138 / 0.05);
}

.accent-blue-900\/50 {
  accent-color: rgb(30 58 138 / 0.5);
}

.accent-blue-900\/55 {
  accent-color: rgb(30 58 138 / 0.55);
}

.accent-blue-900\/60 {
  accent-color: rgb(30 58 138 / 0.6);
}

.accent-blue-900\/65 {
  accent-color: rgb(30 58 138 / 0.65);
}

.accent-blue-900\/70 {
  accent-color: rgb(30 58 138 / 0.7);
}

.accent-blue-900\/75 {
  accent-color: rgb(30 58 138 / 0.75);
}

.accent-blue-900\/80 {
  accent-color: rgb(30 58 138 / 0.8);
}

.accent-blue-900\/85 {
  accent-color: rgb(30 58 138 / 0.85);
}

.accent-blue-900\/90 {
  accent-color: rgb(30 58 138 / 0.9);
}

.accent-blue-900\/95 {
  accent-color: rgb(30 58 138 / 0.95);
}

.accent-blue-950 {
  accent-color: #172554;
}

.accent-blue-950\/0 {
  accent-color: rgb(23 37 84 / 0);
}

.accent-blue-950\/10 {
  accent-color: rgb(23 37 84 / 0.1);
}

.accent-blue-950\/100 {
  accent-color: rgb(23 37 84 / 1);
}

.accent-blue-950\/15 {
  accent-color: rgb(23 37 84 / 0.15);
}

.accent-blue-950\/20 {
  accent-color: rgb(23 37 84 / 0.2);
}

.accent-blue-950\/25 {
  accent-color: rgb(23 37 84 / 0.25);
}

.accent-blue-950\/30 {
  accent-color: rgb(23 37 84 / 0.3);
}

.accent-blue-950\/35 {
  accent-color: rgb(23 37 84 / 0.35);
}

.accent-blue-950\/40 {
  accent-color: rgb(23 37 84 / 0.4);
}

.accent-blue-950\/45 {
  accent-color: rgb(23 37 84 / 0.45);
}

.accent-blue-950\/5 {
  accent-color: rgb(23 37 84 / 0.05);
}

.accent-blue-950\/50 {
  accent-color: rgb(23 37 84 / 0.5);
}

.accent-blue-950\/55 {
  accent-color: rgb(23 37 84 / 0.55);
}

.accent-blue-950\/60 {
  accent-color: rgb(23 37 84 / 0.6);
}

.accent-blue-950\/65 {
  accent-color: rgb(23 37 84 / 0.65);
}

.accent-blue-950\/70 {
  accent-color: rgb(23 37 84 / 0.7);
}

.accent-blue-950\/75 {
  accent-color: rgb(23 37 84 / 0.75);
}

.accent-blue-950\/80 {
  accent-color: rgb(23 37 84 / 0.8);
}

.accent-blue-950\/85 {
  accent-color: rgb(23 37 84 / 0.85);
}

.accent-blue-950\/90 {
  accent-color: rgb(23 37 84 / 0.9);
}

.accent-blue-950\/95 {
  accent-color: rgb(23 37 84 / 0.95);
}

.accent-current {
  accent-color: currentColor;
}

.accent-eva-blue {
  accent-color: #1A213E;
}

.accent-eva-blue-appt {
  accent-color: rgba(52, 137, 207);
}

.accent-eva-blue-appt\/0 {
  accent-color: rgba(52, 137, 207, 0);
}

.accent-eva-blue-appt\/10 {
  accent-color: rgba(52, 137, 207, 0.1);
}

.accent-eva-blue-appt\/100 {
  accent-color: rgba(52, 137, 207, 1);
}

.accent-eva-blue-appt\/15 {
  accent-color: rgba(52, 137, 207, 0.15);
}

.accent-eva-blue-appt\/20 {
  accent-color: rgba(52, 137, 207, 0.2);
}

.accent-eva-blue-appt\/25 {
  accent-color: rgba(52, 137, 207, 0.25);
}

.accent-eva-blue-appt\/30 {
  accent-color: rgba(52, 137, 207, 0.3);
}

.accent-eva-blue-appt\/35 {
  accent-color: rgba(52, 137, 207, 0.35);
}

.accent-eva-blue-appt\/40 {
  accent-color: rgba(52, 137, 207, 0.4);
}

.accent-eva-blue-appt\/45 {
  accent-color: rgba(52, 137, 207, 0.45);
}

.accent-eva-blue-appt\/5 {
  accent-color: rgba(52, 137, 207, 0.05);
}

.accent-eva-blue-appt\/50 {
  accent-color: rgba(52, 137, 207, 0.5);
}

.accent-eva-blue-appt\/55 {
  accent-color: rgba(52, 137, 207, 0.55);
}

.accent-eva-blue-appt\/60 {
  accent-color: rgba(52, 137, 207, 0.6);
}

.accent-eva-blue-appt\/65 {
  accent-color: rgba(52, 137, 207, 0.65);
}

.accent-eva-blue-appt\/70 {
  accent-color: rgba(52, 137, 207, 0.7);
}

.accent-eva-blue-appt\/75 {
  accent-color: rgba(52, 137, 207, 0.75);
}

.accent-eva-blue-appt\/80 {
  accent-color: rgba(52, 137, 207, 0.8);
}

.accent-eva-blue-appt\/85 {
  accent-color: rgba(52, 137, 207, 0.85);
}

.accent-eva-blue-appt\/90 {
  accent-color: rgba(52, 137, 207, 0.9);
}

.accent-eva-blue-appt\/95 {
  accent-color: rgba(52, 137, 207, 0.95);
}

.accent-eva-blue-gray {
  accent-color: #75798b;
}

.accent-eva-blue-gray\/0 {
  accent-color: rgb(117 121 139 / 0);
}

.accent-eva-blue-gray\/10 {
  accent-color: rgb(117 121 139 / 0.1);
}

.accent-eva-blue-gray\/100 {
  accent-color: rgb(117 121 139 / 1);
}

.accent-eva-blue-gray\/15 {
  accent-color: rgb(117 121 139 / 0.15);
}

.accent-eva-blue-gray\/20 {
  accent-color: rgb(117 121 139 / 0.2);
}

.accent-eva-blue-gray\/25 {
  accent-color: rgb(117 121 139 / 0.25);
}

.accent-eva-blue-gray\/30 {
  accent-color: rgb(117 121 139 / 0.3);
}

.accent-eva-blue-gray\/35 {
  accent-color: rgb(117 121 139 / 0.35);
}

.accent-eva-blue-gray\/40 {
  accent-color: rgb(117 121 139 / 0.4);
}

.accent-eva-blue-gray\/45 {
  accent-color: rgb(117 121 139 / 0.45);
}

.accent-eva-blue-gray\/5 {
  accent-color: rgb(117 121 139 / 0.05);
}

.accent-eva-blue-gray\/50 {
  accent-color: rgb(117 121 139 / 0.5);
}

.accent-eva-blue-gray\/55 {
  accent-color: rgb(117 121 139 / 0.55);
}

.accent-eva-blue-gray\/60 {
  accent-color: rgb(117 121 139 / 0.6);
}

.accent-eva-blue-gray\/65 {
  accent-color: rgb(117 121 139 / 0.65);
}

.accent-eva-blue-gray\/70 {
  accent-color: rgb(117 121 139 / 0.7);
}

.accent-eva-blue-gray\/75 {
  accent-color: rgb(117 121 139 / 0.75);
}

.accent-eva-blue-gray\/80 {
  accent-color: rgb(117 121 139 / 0.8);
}

.accent-eva-blue-gray\/85 {
  accent-color: rgb(117 121 139 / 0.85);
}

.accent-eva-blue-gray\/90 {
  accent-color: rgb(117 121 139 / 0.9);
}

.accent-eva-blue-gray\/95 {
  accent-color: rgb(117 121 139 / 0.95);
}

.accent-eva-blue-hv {
  accent-color: #0f121f;
}

.accent-eva-blue-hv\/0 {
  accent-color: rgb(15 18 31 / 0);
}

.accent-eva-blue-hv\/10 {
  accent-color: rgb(15 18 31 / 0.1);
}

.accent-eva-blue-hv\/100 {
  accent-color: rgb(15 18 31 / 1);
}

.accent-eva-blue-hv\/15 {
  accent-color: rgb(15 18 31 / 0.15);
}

.accent-eva-blue-hv\/20 {
  accent-color: rgb(15 18 31 / 0.2);
}

.accent-eva-blue-hv\/25 {
  accent-color: rgb(15 18 31 / 0.25);
}

.accent-eva-blue-hv\/30 {
  accent-color: rgb(15 18 31 / 0.3);
}

.accent-eva-blue-hv\/35 {
  accent-color: rgb(15 18 31 / 0.35);
}

.accent-eva-blue-hv\/40 {
  accent-color: rgb(15 18 31 / 0.4);
}

.accent-eva-blue-hv\/45 {
  accent-color: rgb(15 18 31 / 0.45);
}

.accent-eva-blue-hv\/5 {
  accent-color: rgb(15 18 31 / 0.05);
}

.accent-eva-blue-hv\/50 {
  accent-color: rgb(15 18 31 / 0.5);
}

.accent-eva-blue-hv\/55 {
  accent-color: rgb(15 18 31 / 0.55);
}

.accent-eva-blue-hv\/60 {
  accent-color: rgb(15 18 31 / 0.6);
}

.accent-eva-blue-hv\/65 {
  accent-color: rgb(15 18 31 / 0.65);
}

.accent-eva-blue-hv\/70 {
  accent-color: rgb(15 18 31 / 0.7);
}

.accent-eva-blue-hv\/75 {
  accent-color: rgb(15 18 31 / 0.75);
}

.accent-eva-blue-hv\/80 {
  accent-color: rgb(15 18 31 / 0.8);
}

.accent-eva-blue-hv\/85 {
  accent-color: rgb(15 18 31 / 0.85);
}

.accent-eva-blue-hv\/90 {
  accent-color: rgb(15 18 31 / 0.9);
}

.accent-eva-blue-hv\/95 {
  accent-color: rgb(15 18 31 / 0.95);
}

.accent-eva-blue-light {
  accent-color: #303851;
}

.accent-eva-blue-light-hv {
  accent-color: rgba(17,20,30,.3);
}

.accent-eva-blue-light-hv\/0 {
  accent-color: rgba(17, 20, 30, 0);
}

.accent-eva-blue-light-hv\/10 {
  accent-color: rgba(17, 20, 30, 0.1);
}

.accent-eva-blue-light-hv\/100 {
  accent-color: rgba(17, 20, 30, 1);
}

.accent-eva-blue-light-hv\/15 {
  accent-color: rgba(17, 20, 30, 0.15);
}

.accent-eva-blue-light-hv\/20 {
  accent-color: rgba(17, 20, 30, 0.2);
}

.accent-eva-blue-light-hv\/25 {
  accent-color: rgba(17, 20, 30, 0.25);
}

.accent-eva-blue-light-hv\/30 {
  accent-color: rgba(17, 20, 30, 0.3);
}

.accent-eva-blue-light-hv\/35 {
  accent-color: rgba(17, 20, 30, 0.35);
}

.accent-eva-blue-light-hv\/40 {
  accent-color: rgba(17, 20, 30, 0.4);
}

.accent-eva-blue-light-hv\/45 {
  accent-color: rgba(17, 20, 30, 0.45);
}

.accent-eva-blue-light-hv\/5 {
  accent-color: rgba(17, 20, 30, 0.05);
}

.accent-eva-blue-light-hv\/50 {
  accent-color: rgba(17, 20, 30, 0.5);
}

.accent-eva-blue-light-hv\/55 {
  accent-color: rgba(17, 20, 30, 0.55);
}

.accent-eva-blue-light-hv\/60 {
  accent-color: rgba(17, 20, 30, 0.6);
}

.accent-eva-blue-light-hv\/65 {
  accent-color: rgba(17, 20, 30, 0.65);
}

.accent-eva-blue-light-hv\/70 {
  accent-color: rgba(17, 20, 30, 0.7);
}

.accent-eva-blue-light-hv\/75 {
  accent-color: rgba(17, 20, 30, 0.75);
}

.accent-eva-blue-light-hv\/80 {
  accent-color: rgba(17, 20, 30, 0.8);
}

.accent-eva-blue-light-hv\/85 {
  accent-color: rgba(17, 20, 30, 0.85);
}

.accent-eva-blue-light-hv\/90 {
  accent-color: rgba(17, 20, 30, 0.9);
}

.accent-eva-blue-light-hv\/95 {
  accent-color: rgba(17, 20, 30, 0.95);
}

.accent-eva-blue-light\/0 {
  accent-color: rgb(48 56 81 / 0);
}

.accent-eva-blue-light\/10 {
  accent-color: rgb(48 56 81 / 0.1);
}

.accent-eva-blue-light\/100 {
  accent-color: rgb(48 56 81 / 1);
}

.accent-eva-blue-light\/15 {
  accent-color: rgb(48 56 81 / 0.15);
}

.accent-eva-blue-light\/20 {
  accent-color: rgb(48 56 81 / 0.2);
}

.accent-eva-blue-light\/25 {
  accent-color: rgb(48 56 81 / 0.25);
}

.accent-eva-blue-light\/30 {
  accent-color: rgb(48 56 81 / 0.3);
}

.accent-eva-blue-light\/35 {
  accent-color: rgb(48 56 81 / 0.35);
}

.accent-eva-blue-light\/40 {
  accent-color: rgb(48 56 81 / 0.4);
}

.accent-eva-blue-light\/45 {
  accent-color: rgb(48 56 81 / 0.45);
}

.accent-eva-blue-light\/5 {
  accent-color: rgb(48 56 81 / 0.05);
}

.accent-eva-blue-light\/50 {
  accent-color: rgb(48 56 81 / 0.5);
}

.accent-eva-blue-light\/55 {
  accent-color: rgb(48 56 81 / 0.55);
}

.accent-eva-blue-light\/60 {
  accent-color: rgb(48 56 81 / 0.6);
}

.accent-eva-blue-light\/65 {
  accent-color: rgb(48 56 81 / 0.65);
}

.accent-eva-blue-light\/70 {
  accent-color: rgb(48 56 81 / 0.7);
}

.accent-eva-blue-light\/75 {
  accent-color: rgb(48 56 81 / 0.75);
}

.accent-eva-blue-light\/80 {
  accent-color: rgb(48 56 81 / 0.8);
}

.accent-eva-blue-light\/85 {
  accent-color: rgb(48 56 81 / 0.85);
}

.accent-eva-blue-light\/90 {
  accent-color: rgb(48 56 81 / 0.9);
}

.accent-eva-blue-light\/95 {
  accent-color: rgb(48 56 81 / 0.95);
}

.accent-eva-blue\/0 {
  accent-color: rgb(26 33 62 / 0);
}

.accent-eva-blue\/10 {
  accent-color: rgb(26 33 62 / 0.1);
}

.accent-eva-blue\/100 {
  accent-color: rgb(26 33 62 / 1);
}

.accent-eva-blue\/15 {
  accent-color: rgb(26 33 62 / 0.15);
}

.accent-eva-blue\/20 {
  accent-color: rgb(26 33 62 / 0.2);
}

.accent-eva-blue\/25 {
  accent-color: rgb(26 33 62 / 0.25);
}

.accent-eva-blue\/30 {
  accent-color: rgb(26 33 62 / 0.3);
}

.accent-eva-blue\/35 {
  accent-color: rgb(26 33 62 / 0.35);
}

.accent-eva-blue\/40 {
  accent-color: rgb(26 33 62 / 0.4);
}

.accent-eva-blue\/45 {
  accent-color: rgb(26 33 62 / 0.45);
}

.accent-eva-blue\/5 {
  accent-color: rgb(26 33 62 / 0.05);
}

.accent-eva-blue\/50 {
  accent-color: rgb(26 33 62 / 0.5);
}

.accent-eva-blue\/55 {
  accent-color: rgb(26 33 62 / 0.55);
}

.accent-eva-blue\/60 {
  accent-color: rgb(26 33 62 / 0.6);
}

.accent-eva-blue\/65 {
  accent-color: rgb(26 33 62 / 0.65);
}

.accent-eva-blue\/70 {
  accent-color: rgb(26 33 62 / 0.7);
}

.accent-eva-blue\/75 {
  accent-color: rgb(26 33 62 / 0.75);
}

.accent-eva-blue\/80 {
  accent-color: rgb(26 33 62 / 0.8);
}

.accent-eva-blue\/85 {
  accent-color: rgb(26 33 62 / 0.85);
}

.accent-eva-blue\/90 {
  accent-color: rgb(26 33 62 / 0.9);
}

.accent-eva-blue\/95 {
  accent-color: rgb(26 33 62 / 0.95);
}

.accent-eva-brown-appt {
  accent-color: rgba(99, 93, 94, 1);
}

.accent-eva-brown-appt\/0 {
  accent-color: rgba(99, 93, 94, 0);
}

.accent-eva-brown-appt\/10 {
  accent-color: rgba(99, 93, 94, 0.1);
}

.accent-eva-brown-appt\/100 {
  accent-color: rgba(99, 93, 94, 1);
}

.accent-eva-brown-appt\/15 {
  accent-color: rgba(99, 93, 94, 0.15);
}

.accent-eva-brown-appt\/20 {
  accent-color: rgba(99, 93, 94, 0.2);
}

.accent-eva-brown-appt\/25 {
  accent-color: rgba(99, 93, 94, 0.25);
}

.accent-eva-brown-appt\/30 {
  accent-color: rgba(99, 93, 94, 0.3);
}

.accent-eva-brown-appt\/35 {
  accent-color: rgba(99, 93, 94, 0.35);
}

.accent-eva-brown-appt\/40 {
  accent-color: rgba(99, 93, 94, 0.4);
}

.accent-eva-brown-appt\/45 {
  accent-color: rgba(99, 93, 94, 0.45);
}

.accent-eva-brown-appt\/5 {
  accent-color: rgba(99, 93, 94, 0.05);
}

.accent-eva-brown-appt\/50 {
  accent-color: rgba(99, 93, 94, 0.5);
}

.accent-eva-brown-appt\/55 {
  accent-color: rgba(99, 93, 94, 0.55);
}

.accent-eva-brown-appt\/60 {
  accent-color: rgba(99, 93, 94, 0.6);
}

.accent-eva-brown-appt\/65 {
  accent-color: rgba(99, 93, 94, 0.65);
}

.accent-eva-brown-appt\/70 {
  accent-color: rgba(99, 93, 94, 0.7);
}

.accent-eva-brown-appt\/75 {
  accent-color: rgba(99, 93, 94, 0.75);
}

.accent-eva-brown-appt\/80 {
  accent-color: rgba(99, 93, 94, 0.8);
}

.accent-eva-brown-appt\/85 {
  accent-color: rgba(99, 93, 94, 0.85);
}

.accent-eva-brown-appt\/90 {
  accent-color: rgba(99, 93, 94, 0.9);
}

.accent-eva-brown-appt\/95 {
  accent-color: rgba(99, 93, 94, 0.95);
}

.accent-eva-dark-green-appt {
  accent-color: rgba(102, 188, 130, 1);
}

.accent-eva-dark-green-appt\/0 {
  accent-color: rgba(102, 188, 130, 0);
}

.accent-eva-dark-green-appt\/10 {
  accent-color: rgba(102, 188, 130, 0.1);
}

.accent-eva-dark-green-appt\/100 {
  accent-color: rgba(102, 188, 130, 1);
}

.accent-eva-dark-green-appt\/15 {
  accent-color: rgba(102, 188, 130, 0.15);
}

.accent-eva-dark-green-appt\/20 {
  accent-color: rgba(102, 188, 130, 0.2);
}

.accent-eva-dark-green-appt\/25 {
  accent-color: rgba(102, 188, 130, 0.25);
}

.accent-eva-dark-green-appt\/30 {
  accent-color: rgba(102, 188, 130, 0.3);
}

.accent-eva-dark-green-appt\/35 {
  accent-color: rgba(102, 188, 130, 0.35);
}

.accent-eva-dark-green-appt\/40 {
  accent-color: rgba(102, 188, 130, 0.4);
}

.accent-eva-dark-green-appt\/45 {
  accent-color: rgba(102, 188, 130, 0.45);
}

.accent-eva-dark-green-appt\/5 {
  accent-color: rgba(102, 188, 130, 0.05);
}

.accent-eva-dark-green-appt\/50 {
  accent-color: rgba(102, 188, 130, 0.5);
}

.accent-eva-dark-green-appt\/55 {
  accent-color: rgba(102, 188, 130, 0.55);
}

.accent-eva-dark-green-appt\/60 {
  accent-color: rgba(102, 188, 130, 0.6);
}

.accent-eva-dark-green-appt\/65 {
  accent-color: rgba(102, 188, 130, 0.65);
}

.accent-eva-dark-green-appt\/70 {
  accent-color: rgba(102, 188, 130, 0.7);
}

.accent-eva-dark-green-appt\/75 {
  accent-color: rgba(102, 188, 130, 0.75);
}

.accent-eva-dark-green-appt\/80 {
  accent-color: rgba(102, 188, 130, 0.8);
}

.accent-eva-dark-green-appt\/85 {
  accent-color: rgba(102, 188, 130, 0.85);
}

.accent-eva-dark-green-appt\/90 {
  accent-color: rgba(102, 188, 130, 0.9);
}

.accent-eva-dark-green-appt\/95 {
  accent-color: rgba(102, 188, 130, 0.95);
}

.accent-eva-dark-red-appt {
  accent-color: rgba(198, 102, 94, 1);
}

.accent-eva-dark-red-appt\/0 {
  accent-color: rgba(198, 102, 94, 0);
}

.accent-eva-dark-red-appt\/10 {
  accent-color: rgba(198, 102, 94, 0.1);
}

.accent-eva-dark-red-appt\/100 {
  accent-color: rgba(198, 102, 94, 1);
}

.accent-eva-dark-red-appt\/15 {
  accent-color: rgba(198, 102, 94, 0.15);
}

.accent-eva-dark-red-appt\/20 {
  accent-color: rgba(198, 102, 94, 0.2);
}

.accent-eva-dark-red-appt\/25 {
  accent-color: rgba(198, 102, 94, 0.25);
}

.accent-eva-dark-red-appt\/30 {
  accent-color: rgba(198, 102, 94, 0.3);
}

.accent-eva-dark-red-appt\/35 {
  accent-color: rgba(198, 102, 94, 0.35);
}

.accent-eva-dark-red-appt\/40 {
  accent-color: rgba(198, 102, 94, 0.4);
}

.accent-eva-dark-red-appt\/45 {
  accent-color: rgba(198, 102, 94, 0.45);
}

.accent-eva-dark-red-appt\/5 {
  accent-color: rgba(198, 102, 94, 0.05);
}

.accent-eva-dark-red-appt\/50 {
  accent-color: rgba(198, 102, 94, 0.5);
}

.accent-eva-dark-red-appt\/55 {
  accent-color: rgba(198, 102, 94, 0.55);
}

.accent-eva-dark-red-appt\/60 {
  accent-color: rgba(198, 102, 94, 0.6);
}

.accent-eva-dark-red-appt\/65 {
  accent-color: rgba(198, 102, 94, 0.65);
}

.accent-eva-dark-red-appt\/70 {
  accent-color: rgba(198, 102, 94, 0.7);
}

.accent-eva-dark-red-appt\/75 {
  accent-color: rgba(198, 102, 94, 0.75);
}

.accent-eva-dark-red-appt\/80 {
  accent-color: rgba(198, 102, 94, 0.8);
}

.accent-eva-dark-red-appt\/85 {
  accent-color: rgba(198, 102, 94, 0.85);
}

.accent-eva-dark-red-appt\/90 {
  accent-color: rgba(198, 102, 94, 0.9);
}

.accent-eva-dark-red-appt\/95 {
  accent-color: rgba(198, 102, 94, 0.95);
}

.accent-eva-green {
  accent-color: #49B5A8;
}

.accent-eva-green-appt {
  accent-color: rgba(128, 215, 109);
}

.accent-eva-green-appt\/0 {
  accent-color: rgba(128, 215, 109, 0);
}

.accent-eva-green-appt\/10 {
  accent-color: rgba(128, 215, 109, 0.1);
}

.accent-eva-green-appt\/100 {
  accent-color: rgba(128, 215, 109, 1);
}

.accent-eva-green-appt\/15 {
  accent-color: rgba(128, 215, 109, 0.15);
}

.accent-eva-green-appt\/20 {
  accent-color: rgba(128, 215, 109, 0.2);
}

.accent-eva-green-appt\/25 {
  accent-color: rgba(128, 215, 109, 0.25);
}

.accent-eva-green-appt\/30 {
  accent-color: rgba(128, 215, 109, 0.3);
}

.accent-eva-green-appt\/35 {
  accent-color: rgba(128, 215, 109, 0.35);
}

.accent-eva-green-appt\/40 {
  accent-color: rgba(128, 215, 109, 0.4);
}

.accent-eva-green-appt\/45 {
  accent-color: rgba(128, 215, 109, 0.45);
}

.accent-eva-green-appt\/5 {
  accent-color: rgba(128, 215, 109, 0.05);
}

.accent-eva-green-appt\/50 {
  accent-color: rgba(128, 215, 109, 0.5);
}

.accent-eva-green-appt\/55 {
  accent-color: rgba(128, 215, 109, 0.55);
}

.accent-eva-green-appt\/60 {
  accent-color: rgba(128, 215, 109, 0.6);
}

.accent-eva-green-appt\/65 {
  accent-color: rgba(128, 215, 109, 0.65);
}

.accent-eva-green-appt\/70 {
  accent-color: rgba(128, 215, 109, 0.7);
}

.accent-eva-green-appt\/75 {
  accent-color: rgba(128, 215, 109, 0.75);
}

.accent-eva-green-appt\/80 {
  accent-color: rgba(128, 215, 109, 0.8);
}

.accent-eva-green-appt\/85 {
  accent-color: rgba(128, 215, 109, 0.85);
}

.accent-eva-green-appt\/90 {
  accent-color: rgba(128, 215, 109, 0.9);
}

.accent-eva-green-appt\/95 {
  accent-color: rgba(128, 215, 109, 0.95);
}

.accent-eva-green-brown-appt {
  accent-color: rgba(197, 191, 140, 1);
}

.accent-eva-green-brown-appt\/0 {
  accent-color: rgba(197, 191, 140, 0);
}

.accent-eva-green-brown-appt\/10 {
  accent-color: rgba(197, 191, 140, 0.1);
}

.accent-eva-green-brown-appt\/100 {
  accent-color: rgba(197, 191, 140, 1);
}

.accent-eva-green-brown-appt\/15 {
  accent-color: rgba(197, 191, 140, 0.15);
}

.accent-eva-green-brown-appt\/20 {
  accent-color: rgba(197, 191, 140, 0.2);
}

.accent-eva-green-brown-appt\/25 {
  accent-color: rgba(197, 191, 140, 0.25);
}

.accent-eva-green-brown-appt\/30 {
  accent-color: rgba(197, 191, 140, 0.3);
}

.accent-eva-green-brown-appt\/35 {
  accent-color: rgba(197, 191, 140, 0.35);
}

.accent-eva-green-brown-appt\/40 {
  accent-color: rgba(197, 191, 140, 0.4);
}

.accent-eva-green-brown-appt\/45 {
  accent-color: rgba(197, 191, 140, 0.45);
}

.accent-eva-green-brown-appt\/5 {
  accent-color: rgba(197, 191, 140, 0.05);
}

.accent-eva-green-brown-appt\/50 {
  accent-color: rgba(197, 191, 140, 0.5);
}

.accent-eva-green-brown-appt\/55 {
  accent-color: rgba(197, 191, 140, 0.55);
}

.accent-eva-green-brown-appt\/60 {
  accent-color: rgba(197, 191, 140, 0.6);
}

.accent-eva-green-brown-appt\/65 {
  accent-color: rgba(197, 191, 140, 0.65);
}

.accent-eva-green-brown-appt\/70 {
  accent-color: rgba(197, 191, 140, 0.7);
}

.accent-eva-green-brown-appt\/75 {
  accent-color: rgba(197, 191, 140, 0.75);
}

.accent-eva-green-brown-appt\/80 {
  accent-color: rgba(197, 191, 140, 0.8);
}

.accent-eva-green-brown-appt\/85 {
  accent-color: rgba(197, 191, 140, 0.85);
}

.accent-eva-green-brown-appt\/90 {
  accent-color: rgba(197, 191, 140, 0.9);
}

.accent-eva-green-brown-appt\/95 {
  accent-color: rgba(197, 191, 140, 0.95);
}

.accent-eva-green-hv {
  accent-color: #3f9c90;
}

.accent-eva-green-hv\/0 {
  accent-color: rgb(63 156 144 / 0);
}

.accent-eva-green-hv\/10 {
  accent-color: rgb(63 156 144 / 0.1);
}

.accent-eva-green-hv\/100 {
  accent-color: rgb(63 156 144 / 1);
}

.accent-eva-green-hv\/15 {
  accent-color: rgb(63 156 144 / 0.15);
}

.accent-eva-green-hv\/20 {
  accent-color: rgb(63 156 144 / 0.2);
}

.accent-eva-green-hv\/25 {
  accent-color: rgb(63 156 144 / 0.25);
}

.accent-eva-green-hv\/30 {
  accent-color: rgb(63 156 144 / 0.3);
}

.accent-eva-green-hv\/35 {
  accent-color: rgb(63 156 144 / 0.35);
}

.accent-eva-green-hv\/40 {
  accent-color: rgb(63 156 144 / 0.4);
}

.accent-eva-green-hv\/45 {
  accent-color: rgb(63 156 144 / 0.45);
}

.accent-eva-green-hv\/5 {
  accent-color: rgb(63 156 144 / 0.05);
}

.accent-eva-green-hv\/50 {
  accent-color: rgb(63 156 144 / 0.5);
}

.accent-eva-green-hv\/55 {
  accent-color: rgb(63 156 144 / 0.55);
}

.accent-eva-green-hv\/60 {
  accent-color: rgb(63 156 144 / 0.6);
}

.accent-eva-green-hv\/65 {
  accent-color: rgb(63 156 144 / 0.65);
}

.accent-eva-green-hv\/70 {
  accent-color: rgb(63 156 144 / 0.7);
}

.accent-eva-green-hv\/75 {
  accent-color: rgb(63 156 144 / 0.75);
}

.accent-eva-green-hv\/80 {
  accent-color: rgb(63 156 144 / 0.8);
}

.accent-eva-green-hv\/85 {
  accent-color: rgb(63 156 144 / 0.85);
}

.accent-eva-green-hv\/90 {
  accent-color: rgb(63 156 144 / 0.9);
}

.accent-eva-green-hv\/95 {
  accent-color: rgb(63 156 144 / 0.95);
}

.accent-eva-green\/0 {
  accent-color: rgb(73 181 168 / 0);
}

.accent-eva-green\/10 {
  accent-color: rgb(73 181 168 / 0.1);
}

.accent-eva-green\/100 {
  accent-color: rgb(73 181 168 / 1);
}

.accent-eva-green\/15 {
  accent-color: rgb(73 181 168 / 0.15);
}

.accent-eva-green\/20 {
  accent-color: rgb(73 181 168 / 0.2);
}

.accent-eva-green\/25 {
  accent-color: rgb(73 181 168 / 0.25);
}

.accent-eva-green\/30 {
  accent-color: rgb(73 181 168 / 0.3);
}

.accent-eva-green\/35 {
  accent-color: rgb(73 181 168 / 0.35);
}

.accent-eva-green\/40 {
  accent-color: rgb(73 181 168 / 0.4);
}

.accent-eva-green\/45 {
  accent-color: rgb(73 181 168 / 0.45);
}

.accent-eva-green\/5 {
  accent-color: rgb(73 181 168 / 0.05);
}

.accent-eva-green\/50 {
  accent-color: rgb(73 181 168 / 0.5);
}

.accent-eva-green\/55 {
  accent-color: rgb(73 181 168 / 0.55);
}

.accent-eva-green\/60 {
  accent-color: rgb(73 181 168 / 0.6);
}

.accent-eva-green\/65 {
  accent-color: rgb(73 181 168 / 0.65);
}

.accent-eva-green\/70 {
  accent-color: rgb(73 181 168 / 0.7);
}

.accent-eva-green\/75 {
  accent-color: rgb(73 181 168 / 0.75);
}

.accent-eva-green\/80 {
  accent-color: rgb(73 181 168 / 0.8);
}

.accent-eva-green\/85 {
  accent-color: rgb(73 181 168 / 0.85);
}

.accent-eva-green\/90 {
  accent-color: rgb(73 181 168 / 0.9);
}

.accent-eva-green\/95 {
  accent-color: rgb(73 181 168 / 0.95);
}

.accent-eva-lavender-appt {
  accent-color: rgba(169, 124, 165, 1);
}

.accent-eva-lavender-appt\/0 {
  accent-color: rgba(169, 124, 165, 0);
}

.accent-eva-lavender-appt\/10 {
  accent-color: rgba(169, 124, 165, 0.1);
}

.accent-eva-lavender-appt\/100 {
  accent-color: rgba(169, 124, 165, 1);
}

.accent-eva-lavender-appt\/15 {
  accent-color: rgba(169, 124, 165, 0.15);
}

.accent-eva-lavender-appt\/20 {
  accent-color: rgba(169, 124, 165, 0.2);
}

.accent-eva-lavender-appt\/25 {
  accent-color: rgba(169, 124, 165, 0.25);
}

.accent-eva-lavender-appt\/30 {
  accent-color: rgba(169, 124, 165, 0.3);
}

.accent-eva-lavender-appt\/35 {
  accent-color: rgba(169, 124, 165, 0.35);
}

.accent-eva-lavender-appt\/40 {
  accent-color: rgba(169, 124, 165, 0.4);
}

.accent-eva-lavender-appt\/45 {
  accent-color: rgba(169, 124, 165, 0.45);
}

.accent-eva-lavender-appt\/5 {
  accent-color: rgba(169, 124, 165, 0.05);
}

.accent-eva-lavender-appt\/50 {
  accent-color: rgba(169, 124, 165, 0.5);
}

.accent-eva-lavender-appt\/55 {
  accent-color: rgba(169, 124, 165, 0.55);
}

.accent-eva-lavender-appt\/60 {
  accent-color: rgba(169, 124, 165, 0.6);
}

.accent-eva-lavender-appt\/65 {
  accent-color: rgba(169, 124, 165, 0.65);
}

.accent-eva-lavender-appt\/70 {
  accent-color: rgba(169, 124, 165, 0.7);
}

.accent-eva-lavender-appt\/75 {
  accent-color: rgba(169, 124, 165, 0.75);
}

.accent-eva-lavender-appt\/80 {
  accent-color: rgba(169, 124, 165, 0.8);
}

.accent-eva-lavender-appt\/85 {
  accent-color: rgba(169, 124, 165, 0.85);
}

.accent-eva-lavender-appt\/90 {
  accent-color: rgba(169, 124, 165, 0.9);
}

.accent-eva-lavender-appt\/95 {
  accent-color: rgba(169, 124, 165, 0.95);
}

.accent-eva-magenta-appt {
  accent-color: rgba(223, 91, 146, 1);
}

.accent-eva-magenta-appt\/0 {
  accent-color: rgba(223, 91, 146, 0);
}

.accent-eva-magenta-appt\/10 {
  accent-color: rgba(223, 91, 146, 0.1);
}

.accent-eva-magenta-appt\/100 {
  accent-color: rgba(223, 91, 146, 1);
}

.accent-eva-magenta-appt\/15 {
  accent-color: rgba(223, 91, 146, 0.15);
}

.accent-eva-magenta-appt\/20 {
  accent-color: rgba(223, 91, 146, 0.2);
}

.accent-eva-magenta-appt\/25 {
  accent-color: rgba(223, 91, 146, 0.25);
}

.accent-eva-magenta-appt\/30 {
  accent-color: rgba(223, 91, 146, 0.3);
}

.accent-eva-magenta-appt\/35 {
  accent-color: rgba(223, 91, 146, 0.35);
}

.accent-eva-magenta-appt\/40 {
  accent-color: rgba(223, 91, 146, 0.4);
}

.accent-eva-magenta-appt\/45 {
  accent-color: rgba(223, 91, 146, 0.45);
}

.accent-eva-magenta-appt\/5 {
  accent-color: rgba(223, 91, 146, 0.05);
}

.accent-eva-magenta-appt\/50 {
  accent-color: rgba(223, 91, 146, 0.5);
}

.accent-eva-magenta-appt\/55 {
  accent-color: rgba(223, 91, 146, 0.55);
}

.accent-eva-magenta-appt\/60 {
  accent-color: rgba(223, 91, 146, 0.6);
}

.accent-eva-magenta-appt\/65 {
  accent-color: rgba(223, 91, 146, 0.65);
}

.accent-eva-magenta-appt\/70 {
  accent-color: rgba(223, 91, 146, 0.7);
}

.accent-eva-magenta-appt\/75 {
  accent-color: rgba(223, 91, 146, 0.75);
}

.accent-eva-magenta-appt\/80 {
  accent-color: rgba(223, 91, 146, 0.8);
}

.accent-eva-magenta-appt\/85 {
  accent-color: rgba(223, 91, 146, 0.85);
}

.accent-eva-magenta-appt\/90 {
  accent-color: rgba(223, 91, 146, 0.9);
}

.accent-eva-magenta-appt\/95 {
  accent-color: rgba(223, 91, 146, 0.95);
}

.accent-eva-orange-appt {
  accent-color: rgba(232, 176, 99, 1);
}

.accent-eva-orange-appt\/0 {
  accent-color: rgba(232, 176, 99, 0);
}

.accent-eva-orange-appt\/10 {
  accent-color: rgba(232, 176, 99, 0.1);
}

.accent-eva-orange-appt\/100 {
  accent-color: rgba(232, 176, 99, 1);
}

.accent-eva-orange-appt\/15 {
  accent-color: rgba(232, 176, 99, 0.15);
}

.accent-eva-orange-appt\/20 {
  accent-color: rgba(232, 176, 99, 0.2);
}

.accent-eva-orange-appt\/25 {
  accent-color: rgba(232, 176, 99, 0.25);
}

.accent-eva-orange-appt\/30 {
  accent-color: rgba(232, 176, 99, 0.3);
}

.accent-eva-orange-appt\/35 {
  accent-color: rgba(232, 176, 99, 0.35);
}

.accent-eva-orange-appt\/40 {
  accent-color: rgba(232, 176, 99, 0.4);
}

.accent-eva-orange-appt\/45 {
  accent-color: rgba(232, 176, 99, 0.45);
}

.accent-eva-orange-appt\/5 {
  accent-color: rgba(232, 176, 99, 0.05);
}

.accent-eva-orange-appt\/50 {
  accent-color: rgba(232, 176, 99, 0.5);
}

.accent-eva-orange-appt\/55 {
  accent-color: rgba(232, 176, 99, 0.55);
}

.accent-eva-orange-appt\/60 {
  accent-color: rgba(232, 176, 99, 0.6);
}

.accent-eva-orange-appt\/65 {
  accent-color: rgba(232, 176, 99, 0.65);
}

.accent-eva-orange-appt\/70 {
  accent-color: rgba(232, 176, 99, 0.7);
}

.accent-eva-orange-appt\/75 {
  accent-color: rgba(232, 176, 99, 0.75);
}

.accent-eva-orange-appt\/80 {
  accent-color: rgba(232, 176, 99, 0.8);
}

.accent-eva-orange-appt\/85 {
  accent-color: rgba(232, 176, 99, 0.85);
}

.accent-eva-orange-appt\/90 {
  accent-color: rgba(232, 176, 99, 0.9);
}

.accent-eva-orange-appt\/95 {
  accent-color: rgba(232, 176, 99, 0.95);
}

.accent-eva-purple-appt {
  accent-color: rgba(125, 117, 164, 1);
}

.accent-eva-purple-appt\/0 {
  accent-color: rgba(125, 117, 164, 0);
}

.accent-eva-purple-appt\/10 {
  accent-color: rgba(125, 117, 164, 0.1);
}

.accent-eva-purple-appt\/100 {
  accent-color: rgba(125, 117, 164, 1);
}

.accent-eva-purple-appt\/15 {
  accent-color: rgba(125, 117, 164, 0.15);
}

.accent-eva-purple-appt\/20 {
  accent-color: rgba(125, 117, 164, 0.2);
}

.accent-eva-purple-appt\/25 {
  accent-color: rgba(125, 117, 164, 0.25);
}

.accent-eva-purple-appt\/30 {
  accent-color: rgba(125, 117, 164, 0.3);
}

.accent-eva-purple-appt\/35 {
  accent-color: rgba(125, 117, 164, 0.35);
}

.accent-eva-purple-appt\/40 {
  accent-color: rgba(125, 117, 164, 0.4);
}

.accent-eva-purple-appt\/45 {
  accent-color: rgba(125, 117, 164, 0.45);
}

.accent-eva-purple-appt\/5 {
  accent-color: rgba(125, 117, 164, 0.05);
}

.accent-eva-purple-appt\/50 {
  accent-color: rgba(125, 117, 164, 0.5);
}

.accent-eva-purple-appt\/55 {
  accent-color: rgba(125, 117, 164, 0.55);
}

.accent-eva-purple-appt\/60 {
  accent-color: rgba(125, 117, 164, 0.6);
}

.accent-eva-purple-appt\/65 {
  accent-color: rgba(125, 117, 164, 0.65);
}

.accent-eva-purple-appt\/70 {
  accent-color: rgba(125, 117, 164, 0.7);
}

.accent-eva-purple-appt\/75 {
  accent-color: rgba(125, 117, 164, 0.75);
}

.accent-eva-purple-appt\/80 {
  accent-color: rgba(125, 117, 164, 0.8);
}

.accent-eva-purple-appt\/85 {
  accent-color: rgba(125, 117, 164, 0.85);
}

.accent-eva-purple-appt\/90 {
  accent-color: rgba(125, 117, 164, 0.9);
}

.accent-eva-purple-appt\/95 {
  accent-color: rgba(125, 117, 164, 0.95);
}

.accent-eva-red {
  accent-color: #EA6565;
}

.accent-eva-red-appt {
  accent-color: rgba(243, 63, 77, 1);
}

.accent-eva-red-appt\/0 {
  accent-color: rgba(243, 63, 77, 0);
}

.accent-eva-red-appt\/10 {
  accent-color: rgba(243, 63, 77, 0.1);
}

.accent-eva-red-appt\/100 {
  accent-color: rgba(243, 63, 77, 1);
}

.accent-eva-red-appt\/15 {
  accent-color: rgba(243, 63, 77, 0.15);
}

.accent-eva-red-appt\/20 {
  accent-color: rgba(243, 63, 77, 0.2);
}

.accent-eva-red-appt\/25 {
  accent-color: rgba(243, 63, 77, 0.25);
}

.accent-eva-red-appt\/30 {
  accent-color: rgba(243, 63, 77, 0.3);
}

.accent-eva-red-appt\/35 {
  accent-color: rgba(243, 63, 77, 0.35);
}

.accent-eva-red-appt\/40 {
  accent-color: rgba(243, 63, 77, 0.4);
}

.accent-eva-red-appt\/45 {
  accent-color: rgba(243, 63, 77, 0.45);
}

.accent-eva-red-appt\/5 {
  accent-color: rgba(243, 63, 77, 0.05);
}

.accent-eva-red-appt\/50 {
  accent-color: rgba(243, 63, 77, 0.5);
}

.accent-eva-red-appt\/55 {
  accent-color: rgba(243, 63, 77, 0.55);
}

.accent-eva-red-appt\/60 {
  accent-color: rgba(243, 63, 77, 0.6);
}

.accent-eva-red-appt\/65 {
  accent-color: rgba(243, 63, 77, 0.65);
}

.accent-eva-red-appt\/70 {
  accent-color: rgba(243, 63, 77, 0.7);
}

.accent-eva-red-appt\/75 {
  accent-color: rgba(243, 63, 77, 0.75);
}

.accent-eva-red-appt\/80 {
  accent-color: rgba(243, 63, 77, 0.8);
}

.accent-eva-red-appt\/85 {
  accent-color: rgba(243, 63, 77, 0.85);
}

.accent-eva-red-appt\/90 {
  accent-color: rgba(243, 63, 77, 0.9);
}

.accent-eva-red-appt\/95 {
  accent-color: rgba(243, 63, 77, 0.95);
}

.accent-eva-red-orange-appt {
  accent-color: rgba(217, 154, 118, 1);
}

.accent-eva-red-orange-appt\/0 {
  accent-color: rgba(217, 154, 118, 0);
}

.accent-eva-red-orange-appt\/10 {
  accent-color: rgba(217, 154, 118, 0.1);
}

.accent-eva-red-orange-appt\/100 {
  accent-color: rgba(217, 154, 118, 1);
}

.accent-eva-red-orange-appt\/15 {
  accent-color: rgba(217, 154, 118, 0.15);
}

.accent-eva-red-orange-appt\/20 {
  accent-color: rgba(217, 154, 118, 0.2);
}

.accent-eva-red-orange-appt\/25 {
  accent-color: rgba(217, 154, 118, 0.25);
}

.accent-eva-red-orange-appt\/30 {
  accent-color: rgba(217, 154, 118, 0.3);
}

.accent-eva-red-orange-appt\/35 {
  accent-color: rgba(217, 154, 118, 0.35);
}

.accent-eva-red-orange-appt\/40 {
  accent-color: rgba(217, 154, 118, 0.4);
}

.accent-eva-red-orange-appt\/45 {
  accent-color: rgba(217, 154, 118, 0.45);
}

.accent-eva-red-orange-appt\/5 {
  accent-color: rgba(217, 154, 118, 0.05);
}

.accent-eva-red-orange-appt\/50 {
  accent-color: rgba(217, 154, 118, 0.5);
}

.accent-eva-red-orange-appt\/55 {
  accent-color: rgba(217, 154, 118, 0.55);
}

.accent-eva-red-orange-appt\/60 {
  accent-color: rgba(217, 154, 118, 0.6);
}

.accent-eva-red-orange-appt\/65 {
  accent-color: rgba(217, 154, 118, 0.65);
}

.accent-eva-red-orange-appt\/70 {
  accent-color: rgba(217, 154, 118, 0.7);
}

.accent-eva-red-orange-appt\/75 {
  accent-color: rgba(217, 154, 118, 0.75);
}

.accent-eva-red-orange-appt\/80 {
  accent-color: rgba(217, 154, 118, 0.8);
}

.accent-eva-red-orange-appt\/85 {
  accent-color: rgba(217, 154, 118, 0.85);
}

.accent-eva-red-orange-appt\/90 {
  accent-color: rgba(217, 154, 118, 0.9);
}

.accent-eva-red-orange-appt\/95 {
  accent-color: rgba(217, 154, 118, 0.95);
}

.accent-eva-red\/0 {
  accent-color: rgb(234 101 101 / 0);
}

.accent-eva-red\/10 {
  accent-color: rgb(234 101 101 / 0.1);
}

.accent-eva-red\/100 {
  accent-color: rgb(234 101 101 / 1);
}

.accent-eva-red\/15 {
  accent-color: rgb(234 101 101 / 0.15);
}

.accent-eva-red\/20 {
  accent-color: rgb(234 101 101 / 0.2);
}

.accent-eva-red\/25 {
  accent-color: rgb(234 101 101 / 0.25);
}

.accent-eva-red\/30 {
  accent-color: rgb(234 101 101 / 0.3);
}

.accent-eva-red\/35 {
  accent-color: rgb(234 101 101 / 0.35);
}

.accent-eva-red\/40 {
  accent-color: rgb(234 101 101 / 0.4);
}

.accent-eva-red\/45 {
  accent-color: rgb(234 101 101 / 0.45);
}

.accent-eva-red\/5 {
  accent-color: rgb(234 101 101 / 0.05);
}

.accent-eva-red\/50 {
  accent-color: rgb(234 101 101 / 0.5);
}

.accent-eva-red\/55 {
  accent-color: rgb(234 101 101 / 0.55);
}

.accent-eva-red\/60 {
  accent-color: rgb(234 101 101 / 0.6);
}

.accent-eva-red\/65 {
  accent-color: rgb(234 101 101 / 0.65);
}

.accent-eva-red\/70 {
  accent-color: rgb(234 101 101 / 0.7);
}

.accent-eva-red\/75 {
  accent-color: rgb(234 101 101 / 0.75);
}

.accent-eva-red\/80 {
  accent-color: rgb(234 101 101 / 0.8);
}

.accent-eva-red\/85 {
  accent-color: rgb(234 101 101 / 0.85);
}

.accent-eva-red\/90 {
  accent-color: rgb(234 101 101 / 0.9);
}

.accent-eva-red\/95 {
  accent-color: rgb(234 101 101 / 0.95);
}

.accent-eva-teal-appt {
  accent-color: rgba(22, 172, 151);
}

.accent-eva-teal-appt\/0 {
  accent-color: rgba(22, 172, 151, 0);
}

.accent-eva-teal-appt\/10 {
  accent-color: rgba(22, 172, 151, 0.1);
}

.accent-eva-teal-appt\/100 {
  accent-color: rgba(22, 172, 151, 1);
}

.accent-eva-teal-appt\/15 {
  accent-color: rgba(22, 172, 151, 0.15);
}

.accent-eva-teal-appt\/20 {
  accent-color: rgba(22, 172, 151, 0.2);
}

.accent-eva-teal-appt\/25 {
  accent-color: rgba(22, 172, 151, 0.25);
}

.accent-eva-teal-appt\/30 {
  accent-color: rgba(22, 172, 151, 0.3);
}

.accent-eva-teal-appt\/35 {
  accent-color: rgba(22, 172, 151, 0.35);
}

.accent-eva-teal-appt\/40 {
  accent-color: rgba(22, 172, 151, 0.4);
}

.accent-eva-teal-appt\/45 {
  accent-color: rgba(22, 172, 151, 0.45);
}

.accent-eva-teal-appt\/5 {
  accent-color: rgba(22, 172, 151, 0.05);
}

.accent-eva-teal-appt\/50 {
  accent-color: rgba(22, 172, 151, 0.5);
}

.accent-eva-teal-appt\/55 {
  accent-color: rgba(22, 172, 151, 0.55);
}

.accent-eva-teal-appt\/60 {
  accent-color: rgba(22, 172, 151, 0.6);
}

.accent-eva-teal-appt\/65 {
  accent-color: rgba(22, 172, 151, 0.65);
}

.accent-eva-teal-appt\/70 {
  accent-color: rgba(22, 172, 151, 0.7);
}

.accent-eva-teal-appt\/75 {
  accent-color: rgba(22, 172, 151, 0.75);
}

.accent-eva-teal-appt\/80 {
  accent-color: rgba(22, 172, 151, 0.8);
}

.accent-eva-teal-appt\/85 {
  accent-color: rgba(22, 172, 151, 0.85);
}

.accent-eva-teal-appt\/90 {
  accent-color: rgba(22, 172, 151, 0.9);
}

.accent-eva-teal-appt\/95 {
  accent-color: rgba(22, 172, 151, 0.95);
}

.accent-eva-yellow {
  accent-color: #E9B362;
}

.accent-eva-yellow-appt {
  accent-color: rgba(240, 226, 0, 1);
}

.accent-eva-yellow-appt\/0 {
  accent-color: rgba(240, 226, 0, 0);
}

.accent-eva-yellow-appt\/10 {
  accent-color: rgba(240, 226, 0, 0.1);
}

.accent-eva-yellow-appt\/100 {
  accent-color: rgba(240, 226, 0, 1);
}

.accent-eva-yellow-appt\/15 {
  accent-color: rgba(240, 226, 0, 0.15);
}

.accent-eva-yellow-appt\/20 {
  accent-color: rgba(240, 226, 0, 0.2);
}

.accent-eva-yellow-appt\/25 {
  accent-color: rgba(240, 226, 0, 0.25);
}

.accent-eva-yellow-appt\/30 {
  accent-color: rgba(240, 226, 0, 0.3);
}

.accent-eva-yellow-appt\/35 {
  accent-color: rgba(240, 226, 0, 0.35);
}

.accent-eva-yellow-appt\/40 {
  accent-color: rgba(240, 226, 0, 0.4);
}

.accent-eva-yellow-appt\/45 {
  accent-color: rgba(240, 226, 0, 0.45);
}

.accent-eva-yellow-appt\/5 {
  accent-color: rgba(240, 226, 0, 0.05);
}

.accent-eva-yellow-appt\/50 {
  accent-color: rgba(240, 226, 0, 0.5);
}

.accent-eva-yellow-appt\/55 {
  accent-color: rgba(240, 226, 0, 0.55);
}

.accent-eva-yellow-appt\/60 {
  accent-color: rgba(240, 226, 0, 0.6);
}

.accent-eva-yellow-appt\/65 {
  accent-color: rgba(240, 226, 0, 0.65);
}

.accent-eva-yellow-appt\/70 {
  accent-color: rgba(240, 226, 0, 0.7);
}

.accent-eva-yellow-appt\/75 {
  accent-color: rgba(240, 226, 0, 0.75);
}

.accent-eva-yellow-appt\/80 {
  accent-color: rgba(240, 226, 0, 0.8);
}

.accent-eva-yellow-appt\/85 {
  accent-color: rgba(240, 226, 0, 0.85);
}

.accent-eva-yellow-appt\/90 {
  accent-color: rgba(240, 226, 0, 0.9);
}

.accent-eva-yellow-appt\/95 {
  accent-color: rgba(240, 226, 0, 0.95);
}

.accent-eva-yellow\/0 {
  accent-color: rgb(233 179 98 / 0);
}

.accent-eva-yellow\/10 {
  accent-color: rgb(233 179 98 / 0.1);
}

.accent-eva-yellow\/100 {
  accent-color: rgb(233 179 98 / 1);
}

.accent-eva-yellow\/15 {
  accent-color: rgb(233 179 98 / 0.15);
}

.accent-eva-yellow\/20 {
  accent-color: rgb(233 179 98 / 0.2);
}

.accent-eva-yellow\/25 {
  accent-color: rgb(233 179 98 / 0.25);
}

.accent-eva-yellow\/30 {
  accent-color: rgb(233 179 98 / 0.3);
}

.accent-eva-yellow\/35 {
  accent-color: rgb(233 179 98 / 0.35);
}

.accent-eva-yellow\/40 {
  accent-color: rgb(233 179 98 / 0.4);
}

.accent-eva-yellow\/45 {
  accent-color: rgb(233 179 98 / 0.45);
}

.accent-eva-yellow\/5 {
  accent-color: rgb(233 179 98 / 0.05);
}

.accent-eva-yellow\/50 {
  accent-color: rgb(233 179 98 / 0.5);
}

.accent-eva-yellow\/55 {
  accent-color: rgb(233 179 98 / 0.55);
}

.accent-eva-yellow\/60 {
  accent-color: rgb(233 179 98 / 0.6);
}

.accent-eva-yellow\/65 {
  accent-color: rgb(233 179 98 / 0.65);
}

.accent-eva-yellow\/70 {
  accent-color: rgb(233 179 98 / 0.7);
}

.accent-eva-yellow\/75 {
  accent-color: rgb(233 179 98 / 0.75);
}

.accent-eva-yellow\/80 {
  accent-color: rgb(233 179 98 / 0.8);
}

.accent-eva-yellow\/85 {
  accent-color: rgb(233 179 98 / 0.85);
}

.accent-eva-yellow\/90 {
  accent-color: rgb(233 179 98 / 0.9);
}

.accent-eva-yellow\/95 {
  accent-color: rgb(233 179 98 / 0.95);
}

.accent-gray-100 {
  accent-color: #f5f5f5;
}

.accent-gray-100\/0 {
  accent-color: rgb(245 245 245 / 0);
}

.accent-gray-100\/10 {
  accent-color: rgb(245 245 245 / 0.1);
}

.accent-gray-100\/100 {
  accent-color: rgb(245 245 245 / 1);
}

.accent-gray-100\/15 {
  accent-color: rgb(245 245 245 / 0.15);
}

.accent-gray-100\/20 {
  accent-color: rgb(245 245 245 / 0.2);
}

.accent-gray-100\/25 {
  accent-color: rgb(245 245 245 / 0.25);
}

.accent-gray-100\/30 {
  accent-color: rgb(245 245 245 / 0.3);
}

.accent-gray-100\/35 {
  accent-color: rgb(245 245 245 / 0.35);
}

.accent-gray-100\/40 {
  accent-color: rgb(245 245 245 / 0.4);
}

.accent-gray-100\/45 {
  accent-color: rgb(245 245 245 / 0.45);
}

.accent-gray-100\/5 {
  accent-color: rgb(245 245 245 / 0.05);
}

.accent-gray-100\/50 {
  accent-color: rgb(245 245 245 / 0.5);
}

.accent-gray-100\/55 {
  accent-color: rgb(245 245 245 / 0.55);
}

.accent-gray-100\/60 {
  accent-color: rgb(245 245 245 / 0.6);
}

.accent-gray-100\/65 {
  accent-color: rgb(245 245 245 / 0.65);
}

.accent-gray-100\/70 {
  accent-color: rgb(245 245 245 / 0.7);
}

.accent-gray-100\/75 {
  accent-color: rgb(245 245 245 / 0.75);
}

.accent-gray-100\/80 {
  accent-color: rgb(245 245 245 / 0.8);
}

.accent-gray-100\/85 {
  accent-color: rgb(245 245 245 / 0.85);
}

.accent-gray-100\/90 {
  accent-color: rgb(245 245 245 / 0.9);
}

.accent-gray-100\/95 {
  accent-color: rgb(245 245 245 / 0.95);
}

.accent-gray-200 {
  accent-color: #e5e5e5;
}

.accent-gray-200\/0 {
  accent-color: rgb(229 229 229 / 0);
}

.accent-gray-200\/10 {
  accent-color: rgb(229 229 229 / 0.1);
}

.accent-gray-200\/100 {
  accent-color: rgb(229 229 229 / 1);
}

.accent-gray-200\/15 {
  accent-color: rgb(229 229 229 / 0.15);
}

.accent-gray-200\/20 {
  accent-color: rgb(229 229 229 / 0.2);
}

.accent-gray-200\/25 {
  accent-color: rgb(229 229 229 / 0.25);
}

.accent-gray-200\/30 {
  accent-color: rgb(229 229 229 / 0.3);
}

.accent-gray-200\/35 {
  accent-color: rgb(229 229 229 / 0.35);
}

.accent-gray-200\/40 {
  accent-color: rgb(229 229 229 / 0.4);
}

.accent-gray-200\/45 {
  accent-color: rgb(229 229 229 / 0.45);
}

.accent-gray-200\/5 {
  accent-color: rgb(229 229 229 / 0.05);
}

.accent-gray-200\/50 {
  accent-color: rgb(229 229 229 / 0.5);
}

.accent-gray-200\/55 {
  accent-color: rgb(229 229 229 / 0.55);
}

.accent-gray-200\/60 {
  accent-color: rgb(229 229 229 / 0.6);
}

.accent-gray-200\/65 {
  accent-color: rgb(229 229 229 / 0.65);
}

.accent-gray-200\/70 {
  accent-color: rgb(229 229 229 / 0.7);
}

.accent-gray-200\/75 {
  accent-color: rgb(229 229 229 / 0.75);
}

.accent-gray-200\/80 {
  accent-color: rgb(229 229 229 / 0.8);
}

.accent-gray-200\/85 {
  accent-color: rgb(229 229 229 / 0.85);
}

.accent-gray-200\/90 {
  accent-color: rgb(229 229 229 / 0.9);
}

.accent-gray-200\/95 {
  accent-color: rgb(229 229 229 / 0.95);
}

.accent-gray-300 {
  accent-color: #d4d4d4;
}

.accent-gray-300\/0 {
  accent-color: rgb(212 212 212 / 0);
}

.accent-gray-300\/10 {
  accent-color: rgb(212 212 212 / 0.1);
}

.accent-gray-300\/100 {
  accent-color: rgb(212 212 212 / 1);
}

.accent-gray-300\/15 {
  accent-color: rgb(212 212 212 / 0.15);
}

.accent-gray-300\/20 {
  accent-color: rgb(212 212 212 / 0.2);
}

.accent-gray-300\/25 {
  accent-color: rgb(212 212 212 / 0.25);
}

.accent-gray-300\/30 {
  accent-color: rgb(212 212 212 / 0.3);
}

.accent-gray-300\/35 {
  accent-color: rgb(212 212 212 / 0.35);
}

.accent-gray-300\/40 {
  accent-color: rgb(212 212 212 / 0.4);
}

.accent-gray-300\/45 {
  accent-color: rgb(212 212 212 / 0.45);
}

.accent-gray-300\/5 {
  accent-color: rgb(212 212 212 / 0.05);
}

.accent-gray-300\/50 {
  accent-color: rgb(212 212 212 / 0.5);
}

.accent-gray-300\/55 {
  accent-color: rgb(212 212 212 / 0.55);
}

.accent-gray-300\/60 {
  accent-color: rgb(212 212 212 / 0.6);
}

.accent-gray-300\/65 {
  accent-color: rgb(212 212 212 / 0.65);
}

.accent-gray-300\/70 {
  accent-color: rgb(212 212 212 / 0.7);
}

.accent-gray-300\/75 {
  accent-color: rgb(212 212 212 / 0.75);
}

.accent-gray-300\/80 {
  accent-color: rgb(212 212 212 / 0.8);
}

.accent-gray-300\/85 {
  accent-color: rgb(212 212 212 / 0.85);
}

.accent-gray-300\/90 {
  accent-color: rgb(212 212 212 / 0.9);
}

.accent-gray-300\/95 {
  accent-color: rgb(212 212 212 / 0.95);
}

.accent-gray-400 {
  accent-color: #a3a3a3;
}

.accent-gray-400\/0 {
  accent-color: rgb(163 163 163 / 0);
}

.accent-gray-400\/10 {
  accent-color: rgb(163 163 163 / 0.1);
}

.accent-gray-400\/100 {
  accent-color: rgb(163 163 163 / 1);
}

.accent-gray-400\/15 {
  accent-color: rgb(163 163 163 / 0.15);
}

.accent-gray-400\/20 {
  accent-color: rgb(163 163 163 / 0.2);
}

.accent-gray-400\/25 {
  accent-color: rgb(163 163 163 / 0.25);
}

.accent-gray-400\/30 {
  accent-color: rgb(163 163 163 / 0.3);
}

.accent-gray-400\/35 {
  accent-color: rgb(163 163 163 / 0.35);
}

.accent-gray-400\/40 {
  accent-color: rgb(163 163 163 / 0.4);
}

.accent-gray-400\/45 {
  accent-color: rgb(163 163 163 / 0.45);
}

.accent-gray-400\/5 {
  accent-color: rgb(163 163 163 / 0.05);
}

.accent-gray-400\/50 {
  accent-color: rgb(163 163 163 / 0.5);
}

.accent-gray-400\/55 {
  accent-color: rgb(163 163 163 / 0.55);
}

.accent-gray-400\/60 {
  accent-color: rgb(163 163 163 / 0.6);
}

.accent-gray-400\/65 {
  accent-color: rgb(163 163 163 / 0.65);
}

.accent-gray-400\/70 {
  accent-color: rgb(163 163 163 / 0.7);
}

.accent-gray-400\/75 {
  accent-color: rgb(163 163 163 / 0.75);
}

.accent-gray-400\/80 {
  accent-color: rgb(163 163 163 / 0.8);
}

.accent-gray-400\/85 {
  accent-color: rgb(163 163 163 / 0.85);
}

.accent-gray-400\/90 {
  accent-color: rgb(163 163 163 / 0.9);
}

.accent-gray-400\/95 {
  accent-color: rgb(163 163 163 / 0.95);
}

.accent-gray-50 {
  accent-color: #fafafa;
}

.accent-gray-50\/0 {
  accent-color: rgb(250 250 250 / 0);
}

.accent-gray-50\/10 {
  accent-color: rgb(250 250 250 / 0.1);
}

.accent-gray-50\/100 {
  accent-color: rgb(250 250 250 / 1);
}

.accent-gray-50\/15 {
  accent-color: rgb(250 250 250 / 0.15);
}

.accent-gray-50\/20 {
  accent-color: rgb(250 250 250 / 0.2);
}

.accent-gray-50\/25 {
  accent-color: rgb(250 250 250 / 0.25);
}

.accent-gray-50\/30 {
  accent-color: rgb(250 250 250 / 0.3);
}

.accent-gray-50\/35 {
  accent-color: rgb(250 250 250 / 0.35);
}

.accent-gray-50\/40 {
  accent-color: rgb(250 250 250 / 0.4);
}

.accent-gray-50\/45 {
  accent-color: rgb(250 250 250 / 0.45);
}

.accent-gray-50\/5 {
  accent-color: rgb(250 250 250 / 0.05);
}

.accent-gray-50\/50 {
  accent-color: rgb(250 250 250 / 0.5);
}

.accent-gray-50\/55 {
  accent-color: rgb(250 250 250 / 0.55);
}

.accent-gray-50\/60 {
  accent-color: rgb(250 250 250 / 0.6);
}

.accent-gray-50\/65 {
  accent-color: rgb(250 250 250 / 0.65);
}

.accent-gray-50\/70 {
  accent-color: rgb(250 250 250 / 0.7);
}

.accent-gray-50\/75 {
  accent-color: rgb(250 250 250 / 0.75);
}

.accent-gray-50\/80 {
  accent-color: rgb(250 250 250 / 0.8);
}

.accent-gray-50\/85 {
  accent-color: rgb(250 250 250 / 0.85);
}

.accent-gray-50\/90 {
  accent-color: rgb(250 250 250 / 0.9);
}

.accent-gray-50\/95 {
  accent-color: rgb(250 250 250 / 0.95);
}

.accent-gray-500 {
  accent-color: #737373;
}

.accent-gray-500\/0 {
  accent-color: rgb(115 115 115 / 0);
}

.accent-gray-500\/10 {
  accent-color: rgb(115 115 115 / 0.1);
}

.accent-gray-500\/100 {
  accent-color: rgb(115 115 115 / 1);
}

.accent-gray-500\/15 {
  accent-color: rgb(115 115 115 / 0.15);
}

.accent-gray-500\/20 {
  accent-color: rgb(115 115 115 / 0.2);
}

.accent-gray-500\/25 {
  accent-color: rgb(115 115 115 / 0.25);
}

.accent-gray-500\/30 {
  accent-color: rgb(115 115 115 / 0.3);
}

.accent-gray-500\/35 {
  accent-color: rgb(115 115 115 / 0.35);
}

.accent-gray-500\/40 {
  accent-color: rgb(115 115 115 / 0.4);
}

.accent-gray-500\/45 {
  accent-color: rgb(115 115 115 / 0.45);
}

.accent-gray-500\/5 {
  accent-color: rgb(115 115 115 / 0.05);
}

.accent-gray-500\/50 {
  accent-color: rgb(115 115 115 / 0.5);
}

.accent-gray-500\/55 {
  accent-color: rgb(115 115 115 / 0.55);
}

.accent-gray-500\/60 {
  accent-color: rgb(115 115 115 / 0.6);
}

.accent-gray-500\/65 {
  accent-color: rgb(115 115 115 / 0.65);
}

.accent-gray-500\/70 {
  accent-color: rgb(115 115 115 / 0.7);
}

.accent-gray-500\/75 {
  accent-color: rgb(115 115 115 / 0.75);
}

.accent-gray-500\/80 {
  accent-color: rgb(115 115 115 / 0.8);
}

.accent-gray-500\/85 {
  accent-color: rgb(115 115 115 / 0.85);
}

.accent-gray-500\/90 {
  accent-color: rgb(115 115 115 / 0.9);
}

.accent-gray-500\/95 {
  accent-color: rgb(115 115 115 / 0.95);
}

.accent-gray-600 {
  accent-color: #525252;
}

.accent-gray-600\/0 {
  accent-color: rgb(82 82 82 / 0);
}

.accent-gray-600\/10 {
  accent-color: rgb(82 82 82 / 0.1);
}

.accent-gray-600\/100 {
  accent-color: rgb(82 82 82 / 1);
}

.accent-gray-600\/15 {
  accent-color: rgb(82 82 82 / 0.15);
}

.accent-gray-600\/20 {
  accent-color: rgb(82 82 82 / 0.2);
}

.accent-gray-600\/25 {
  accent-color: rgb(82 82 82 / 0.25);
}

.accent-gray-600\/30 {
  accent-color: rgb(82 82 82 / 0.3);
}

.accent-gray-600\/35 {
  accent-color: rgb(82 82 82 / 0.35);
}

.accent-gray-600\/40 {
  accent-color: rgb(82 82 82 / 0.4);
}

.accent-gray-600\/45 {
  accent-color: rgb(82 82 82 / 0.45);
}

.accent-gray-600\/5 {
  accent-color: rgb(82 82 82 / 0.05);
}

.accent-gray-600\/50 {
  accent-color: rgb(82 82 82 / 0.5);
}

.accent-gray-600\/55 {
  accent-color: rgb(82 82 82 / 0.55);
}

.accent-gray-600\/60 {
  accent-color: rgb(82 82 82 / 0.6);
}

.accent-gray-600\/65 {
  accent-color: rgb(82 82 82 / 0.65);
}

.accent-gray-600\/70 {
  accent-color: rgb(82 82 82 / 0.7);
}

.accent-gray-600\/75 {
  accent-color: rgb(82 82 82 / 0.75);
}

.accent-gray-600\/80 {
  accent-color: rgb(82 82 82 / 0.8);
}

.accent-gray-600\/85 {
  accent-color: rgb(82 82 82 / 0.85);
}

.accent-gray-600\/90 {
  accent-color: rgb(82 82 82 / 0.9);
}

.accent-gray-600\/95 {
  accent-color: rgb(82 82 82 / 0.95);
}

.accent-gray-700 {
  accent-color: #404040;
}

.accent-gray-700\/0 {
  accent-color: rgb(64 64 64 / 0);
}

.accent-gray-700\/10 {
  accent-color: rgb(64 64 64 / 0.1);
}

.accent-gray-700\/100 {
  accent-color: rgb(64 64 64 / 1);
}

.accent-gray-700\/15 {
  accent-color: rgb(64 64 64 / 0.15);
}

.accent-gray-700\/20 {
  accent-color: rgb(64 64 64 / 0.2);
}

.accent-gray-700\/25 {
  accent-color: rgb(64 64 64 / 0.25);
}

.accent-gray-700\/30 {
  accent-color: rgb(64 64 64 / 0.3);
}

.accent-gray-700\/35 {
  accent-color: rgb(64 64 64 / 0.35);
}

.accent-gray-700\/40 {
  accent-color: rgb(64 64 64 / 0.4);
}

.accent-gray-700\/45 {
  accent-color: rgb(64 64 64 / 0.45);
}

.accent-gray-700\/5 {
  accent-color: rgb(64 64 64 / 0.05);
}

.accent-gray-700\/50 {
  accent-color: rgb(64 64 64 / 0.5);
}

.accent-gray-700\/55 {
  accent-color: rgb(64 64 64 / 0.55);
}

.accent-gray-700\/60 {
  accent-color: rgb(64 64 64 / 0.6);
}

.accent-gray-700\/65 {
  accent-color: rgb(64 64 64 / 0.65);
}

.accent-gray-700\/70 {
  accent-color: rgb(64 64 64 / 0.7);
}

.accent-gray-700\/75 {
  accent-color: rgb(64 64 64 / 0.75);
}

.accent-gray-700\/80 {
  accent-color: rgb(64 64 64 / 0.8);
}

.accent-gray-700\/85 {
  accent-color: rgb(64 64 64 / 0.85);
}

.accent-gray-700\/90 {
  accent-color: rgb(64 64 64 / 0.9);
}

.accent-gray-700\/95 {
  accent-color: rgb(64 64 64 / 0.95);
}

.accent-gray-800 {
  accent-color: #262626;
}

.accent-gray-800\/0 {
  accent-color: rgb(38 38 38 / 0);
}

.accent-gray-800\/10 {
  accent-color: rgb(38 38 38 / 0.1);
}

.accent-gray-800\/100 {
  accent-color: rgb(38 38 38 / 1);
}

.accent-gray-800\/15 {
  accent-color: rgb(38 38 38 / 0.15);
}

.accent-gray-800\/20 {
  accent-color: rgb(38 38 38 / 0.2);
}

.accent-gray-800\/25 {
  accent-color: rgb(38 38 38 / 0.25);
}

.accent-gray-800\/30 {
  accent-color: rgb(38 38 38 / 0.3);
}

.accent-gray-800\/35 {
  accent-color: rgb(38 38 38 / 0.35);
}

.accent-gray-800\/40 {
  accent-color: rgb(38 38 38 / 0.4);
}

.accent-gray-800\/45 {
  accent-color: rgb(38 38 38 / 0.45);
}

.accent-gray-800\/5 {
  accent-color: rgb(38 38 38 / 0.05);
}

.accent-gray-800\/50 {
  accent-color: rgb(38 38 38 / 0.5);
}

.accent-gray-800\/55 {
  accent-color: rgb(38 38 38 / 0.55);
}

.accent-gray-800\/60 {
  accent-color: rgb(38 38 38 / 0.6);
}

.accent-gray-800\/65 {
  accent-color: rgb(38 38 38 / 0.65);
}

.accent-gray-800\/70 {
  accent-color: rgb(38 38 38 / 0.7);
}

.accent-gray-800\/75 {
  accent-color: rgb(38 38 38 / 0.75);
}

.accent-gray-800\/80 {
  accent-color: rgb(38 38 38 / 0.8);
}

.accent-gray-800\/85 {
  accent-color: rgb(38 38 38 / 0.85);
}

.accent-gray-800\/90 {
  accent-color: rgb(38 38 38 / 0.9);
}

.accent-gray-800\/95 {
  accent-color: rgb(38 38 38 / 0.95);
}

.accent-gray-900 {
  accent-color: #171717;
}

.accent-gray-900\/0 {
  accent-color: rgb(23 23 23 / 0);
}

.accent-gray-900\/10 {
  accent-color: rgb(23 23 23 / 0.1);
}

.accent-gray-900\/100 {
  accent-color: rgb(23 23 23 / 1);
}

.accent-gray-900\/15 {
  accent-color: rgb(23 23 23 / 0.15);
}

.accent-gray-900\/20 {
  accent-color: rgb(23 23 23 / 0.2);
}

.accent-gray-900\/25 {
  accent-color: rgb(23 23 23 / 0.25);
}

.accent-gray-900\/30 {
  accent-color: rgb(23 23 23 / 0.3);
}

.accent-gray-900\/35 {
  accent-color: rgb(23 23 23 / 0.35);
}

.accent-gray-900\/40 {
  accent-color: rgb(23 23 23 / 0.4);
}

.accent-gray-900\/45 {
  accent-color: rgb(23 23 23 / 0.45);
}

.accent-gray-900\/5 {
  accent-color: rgb(23 23 23 / 0.05);
}

.accent-gray-900\/50 {
  accent-color: rgb(23 23 23 / 0.5);
}

.accent-gray-900\/55 {
  accent-color: rgb(23 23 23 / 0.55);
}

.accent-gray-900\/60 {
  accent-color: rgb(23 23 23 / 0.6);
}

.accent-gray-900\/65 {
  accent-color: rgb(23 23 23 / 0.65);
}

.accent-gray-900\/70 {
  accent-color: rgb(23 23 23 / 0.7);
}

.accent-gray-900\/75 {
  accent-color: rgb(23 23 23 / 0.75);
}

.accent-gray-900\/80 {
  accent-color: rgb(23 23 23 / 0.8);
}

.accent-gray-900\/85 {
  accent-color: rgb(23 23 23 / 0.85);
}

.accent-gray-900\/90 {
  accent-color: rgb(23 23 23 / 0.9);
}

.accent-gray-900\/95 {
  accent-color: rgb(23 23 23 / 0.95);
}

.accent-gray-950 {
  accent-color: #0a0a0a;
}

.accent-gray-950\/0 {
  accent-color: rgb(10 10 10 / 0);
}

.accent-gray-950\/10 {
  accent-color: rgb(10 10 10 / 0.1);
}

.accent-gray-950\/100 {
  accent-color: rgb(10 10 10 / 1);
}

.accent-gray-950\/15 {
  accent-color: rgb(10 10 10 / 0.15);
}

.accent-gray-950\/20 {
  accent-color: rgb(10 10 10 / 0.2);
}

.accent-gray-950\/25 {
  accent-color: rgb(10 10 10 / 0.25);
}

.accent-gray-950\/30 {
  accent-color: rgb(10 10 10 / 0.3);
}

.accent-gray-950\/35 {
  accent-color: rgb(10 10 10 / 0.35);
}

.accent-gray-950\/40 {
  accent-color: rgb(10 10 10 / 0.4);
}

.accent-gray-950\/45 {
  accent-color: rgb(10 10 10 / 0.45);
}

.accent-gray-950\/5 {
  accent-color: rgb(10 10 10 / 0.05);
}

.accent-gray-950\/50 {
  accent-color: rgb(10 10 10 / 0.5);
}

.accent-gray-950\/55 {
  accent-color: rgb(10 10 10 / 0.55);
}

.accent-gray-950\/60 {
  accent-color: rgb(10 10 10 / 0.6);
}

.accent-gray-950\/65 {
  accent-color: rgb(10 10 10 / 0.65);
}

.accent-gray-950\/70 {
  accent-color: rgb(10 10 10 / 0.7);
}

.accent-gray-950\/75 {
  accent-color: rgb(10 10 10 / 0.75);
}

.accent-gray-950\/80 {
  accent-color: rgb(10 10 10 / 0.8);
}

.accent-gray-950\/85 {
  accent-color: rgb(10 10 10 / 0.85);
}

.accent-gray-950\/90 {
  accent-color: rgb(10 10 10 / 0.9);
}

.accent-gray-950\/95 {
  accent-color: rgb(10 10 10 / 0.95);
}

.accent-green-100 {
  accent-color: #dcfce7;
}

.accent-green-100\/0 {
  accent-color: rgb(220 252 231 / 0);
}

.accent-green-100\/10 {
  accent-color: rgb(220 252 231 / 0.1);
}

.accent-green-100\/100 {
  accent-color: rgb(220 252 231 / 1);
}

.accent-green-100\/15 {
  accent-color: rgb(220 252 231 / 0.15);
}

.accent-green-100\/20 {
  accent-color: rgb(220 252 231 / 0.2);
}

.accent-green-100\/25 {
  accent-color: rgb(220 252 231 / 0.25);
}

.accent-green-100\/30 {
  accent-color: rgb(220 252 231 / 0.3);
}

.accent-green-100\/35 {
  accent-color: rgb(220 252 231 / 0.35);
}

.accent-green-100\/40 {
  accent-color: rgb(220 252 231 / 0.4);
}

.accent-green-100\/45 {
  accent-color: rgb(220 252 231 / 0.45);
}

.accent-green-100\/5 {
  accent-color: rgb(220 252 231 / 0.05);
}

.accent-green-100\/50 {
  accent-color: rgb(220 252 231 / 0.5);
}

.accent-green-100\/55 {
  accent-color: rgb(220 252 231 / 0.55);
}

.accent-green-100\/60 {
  accent-color: rgb(220 252 231 / 0.6);
}

.accent-green-100\/65 {
  accent-color: rgb(220 252 231 / 0.65);
}

.accent-green-100\/70 {
  accent-color: rgb(220 252 231 / 0.7);
}

.accent-green-100\/75 {
  accent-color: rgb(220 252 231 / 0.75);
}

.accent-green-100\/80 {
  accent-color: rgb(220 252 231 / 0.8);
}

.accent-green-100\/85 {
  accent-color: rgb(220 252 231 / 0.85);
}

.accent-green-100\/90 {
  accent-color: rgb(220 252 231 / 0.9);
}

.accent-green-100\/95 {
  accent-color: rgb(220 252 231 / 0.95);
}

.accent-green-200 {
  accent-color: #bbf7d0;
}

.accent-green-200\/0 {
  accent-color: rgb(187 247 208 / 0);
}

.accent-green-200\/10 {
  accent-color: rgb(187 247 208 / 0.1);
}

.accent-green-200\/100 {
  accent-color: rgb(187 247 208 / 1);
}

.accent-green-200\/15 {
  accent-color: rgb(187 247 208 / 0.15);
}

.accent-green-200\/20 {
  accent-color: rgb(187 247 208 / 0.2);
}

.accent-green-200\/25 {
  accent-color: rgb(187 247 208 / 0.25);
}

.accent-green-200\/30 {
  accent-color: rgb(187 247 208 / 0.3);
}

.accent-green-200\/35 {
  accent-color: rgb(187 247 208 / 0.35);
}

.accent-green-200\/40 {
  accent-color: rgb(187 247 208 / 0.4);
}

.accent-green-200\/45 {
  accent-color: rgb(187 247 208 / 0.45);
}

.accent-green-200\/5 {
  accent-color: rgb(187 247 208 / 0.05);
}

.accent-green-200\/50 {
  accent-color: rgb(187 247 208 / 0.5);
}

.accent-green-200\/55 {
  accent-color: rgb(187 247 208 / 0.55);
}

.accent-green-200\/60 {
  accent-color: rgb(187 247 208 / 0.6);
}

.accent-green-200\/65 {
  accent-color: rgb(187 247 208 / 0.65);
}

.accent-green-200\/70 {
  accent-color: rgb(187 247 208 / 0.7);
}

.accent-green-200\/75 {
  accent-color: rgb(187 247 208 / 0.75);
}

.accent-green-200\/80 {
  accent-color: rgb(187 247 208 / 0.8);
}

.accent-green-200\/85 {
  accent-color: rgb(187 247 208 / 0.85);
}

.accent-green-200\/90 {
  accent-color: rgb(187 247 208 / 0.9);
}

.accent-green-200\/95 {
  accent-color: rgb(187 247 208 / 0.95);
}

.accent-green-300 {
  accent-color: #86efac;
}

.accent-green-300\/0 {
  accent-color: rgb(134 239 172 / 0);
}

.accent-green-300\/10 {
  accent-color: rgb(134 239 172 / 0.1);
}

.accent-green-300\/100 {
  accent-color: rgb(134 239 172 / 1);
}

.accent-green-300\/15 {
  accent-color: rgb(134 239 172 / 0.15);
}

.accent-green-300\/20 {
  accent-color: rgb(134 239 172 / 0.2);
}

.accent-green-300\/25 {
  accent-color: rgb(134 239 172 / 0.25);
}

.accent-green-300\/30 {
  accent-color: rgb(134 239 172 / 0.3);
}

.accent-green-300\/35 {
  accent-color: rgb(134 239 172 / 0.35);
}

.accent-green-300\/40 {
  accent-color: rgb(134 239 172 / 0.4);
}

.accent-green-300\/45 {
  accent-color: rgb(134 239 172 / 0.45);
}

.accent-green-300\/5 {
  accent-color: rgb(134 239 172 / 0.05);
}

.accent-green-300\/50 {
  accent-color: rgb(134 239 172 / 0.5);
}

.accent-green-300\/55 {
  accent-color: rgb(134 239 172 / 0.55);
}

.accent-green-300\/60 {
  accent-color: rgb(134 239 172 / 0.6);
}

.accent-green-300\/65 {
  accent-color: rgb(134 239 172 / 0.65);
}

.accent-green-300\/70 {
  accent-color: rgb(134 239 172 / 0.7);
}

.accent-green-300\/75 {
  accent-color: rgb(134 239 172 / 0.75);
}

.accent-green-300\/80 {
  accent-color: rgb(134 239 172 / 0.8);
}

.accent-green-300\/85 {
  accent-color: rgb(134 239 172 / 0.85);
}

.accent-green-300\/90 {
  accent-color: rgb(134 239 172 / 0.9);
}

.accent-green-300\/95 {
  accent-color: rgb(134 239 172 / 0.95);
}

.accent-green-400 {
  accent-color: #4ade80;
}

.accent-green-400\/0 {
  accent-color: rgb(74 222 128 / 0);
}

.accent-green-400\/10 {
  accent-color: rgb(74 222 128 / 0.1);
}

.accent-green-400\/100 {
  accent-color: rgb(74 222 128 / 1);
}

.accent-green-400\/15 {
  accent-color: rgb(74 222 128 / 0.15);
}

.accent-green-400\/20 {
  accent-color: rgb(74 222 128 / 0.2);
}

.accent-green-400\/25 {
  accent-color: rgb(74 222 128 / 0.25);
}

.accent-green-400\/30 {
  accent-color: rgb(74 222 128 / 0.3);
}

.accent-green-400\/35 {
  accent-color: rgb(74 222 128 / 0.35);
}

.accent-green-400\/40 {
  accent-color: rgb(74 222 128 / 0.4);
}

.accent-green-400\/45 {
  accent-color: rgb(74 222 128 / 0.45);
}

.accent-green-400\/5 {
  accent-color: rgb(74 222 128 / 0.05);
}

.accent-green-400\/50 {
  accent-color: rgb(74 222 128 / 0.5);
}

.accent-green-400\/55 {
  accent-color: rgb(74 222 128 / 0.55);
}

.accent-green-400\/60 {
  accent-color: rgb(74 222 128 / 0.6);
}

.accent-green-400\/65 {
  accent-color: rgb(74 222 128 / 0.65);
}

.accent-green-400\/70 {
  accent-color: rgb(74 222 128 / 0.7);
}

.accent-green-400\/75 {
  accent-color: rgb(74 222 128 / 0.75);
}

.accent-green-400\/80 {
  accent-color: rgb(74 222 128 / 0.8);
}

.accent-green-400\/85 {
  accent-color: rgb(74 222 128 / 0.85);
}

.accent-green-400\/90 {
  accent-color: rgb(74 222 128 / 0.9);
}

.accent-green-400\/95 {
  accent-color: rgb(74 222 128 / 0.95);
}

.accent-green-50 {
  accent-color: #f0fdf4;
}

.accent-green-50\/0 {
  accent-color: rgb(240 253 244 / 0);
}

.accent-green-50\/10 {
  accent-color: rgb(240 253 244 / 0.1);
}

.accent-green-50\/100 {
  accent-color: rgb(240 253 244 / 1);
}

.accent-green-50\/15 {
  accent-color: rgb(240 253 244 / 0.15);
}

.accent-green-50\/20 {
  accent-color: rgb(240 253 244 / 0.2);
}

.accent-green-50\/25 {
  accent-color: rgb(240 253 244 / 0.25);
}

.accent-green-50\/30 {
  accent-color: rgb(240 253 244 / 0.3);
}

.accent-green-50\/35 {
  accent-color: rgb(240 253 244 / 0.35);
}

.accent-green-50\/40 {
  accent-color: rgb(240 253 244 / 0.4);
}

.accent-green-50\/45 {
  accent-color: rgb(240 253 244 / 0.45);
}

.accent-green-50\/5 {
  accent-color: rgb(240 253 244 / 0.05);
}

.accent-green-50\/50 {
  accent-color: rgb(240 253 244 / 0.5);
}

.accent-green-50\/55 {
  accent-color: rgb(240 253 244 / 0.55);
}

.accent-green-50\/60 {
  accent-color: rgb(240 253 244 / 0.6);
}

.accent-green-50\/65 {
  accent-color: rgb(240 253 244 / 0.65);
}

.accent-green-50\/70 {
  accent-color: rgb(240 253 244 / 0.7);
}

.accent-green-50\/75 {
  accent-color: rgb(240 253 244 / 0.75);
}

.accent-green-50\/80 {
  accent-color: rgb(240 253 244 / 0.8);
}

.accent-green-50\/85 {
  accent-color: rgb(240 253 244 / 0.85);
}

.accent-green-50\/90 {
  accent-color: rgb(240 253 244 / 0.9);
}

.accent-green-50\/95 {
  accent-color: rgb(240 253 244 / 0.95);
}

.accent-green-500 {
  accent-color: #22c55e;
}

.accent-green-500\/0 {
  accent-color: rgb(34 197 94 / 0);
}

.accent-green-500\/10 {
  accent-color: rgb(34 197 94 / 0.1);
}

.accent-green-500\/100 {
  accent-color: rgb(34 197 94 / 1);
}

.accent-green-500\/15 {
  accent-color: rgb(34 197 94 / 0.15);
}

.accent-green-500\/20 {
  accent-color: rgb(34 197 94 / 0.2);
}

.accent-green-500\/25 {
  accent-color: rgb(34 197 94 / 0.25);
}

.accent-green-500\/30 {
  accent-color: rgb(34 197 94 / 0.3);
}

.accent-green-500\/35 {
  accent-color: rgb(34 197 94 / 0.35);
}

.accent-green-500\/40 {
  accent-color: rgb(34 197 94 / 0.4);
}

.accent-green-500\/45 {
  accent-color: rgb(34 197 94 / 0.45);
}

.accent-green-500\/5 {
  accent-color: rgb(34 197 94 / 0.05);
}

.accent-green-500\/50 {
  accent-color: rgb(34 197 94 / 0.5);
}

.accent-green-500\/55 {
  accent-color: rgb(34 197 94 / 0.55);
}

.accent-green-500\/60 {
  accent-color: rgb(34 197 94 / 0.6);
}

.accent-green-500\/65 {
  accent-color: rgb(34 197 94 / 0.65);
}

.accent-green-500\/70 {
  accent-color: rgb(34 197 94 / 0.7);
}

.accent-green-500\/75 {
  accent-color: rgb(34 197 94 / 0.75);
}

.accent-green-500\/80 {
  accent-color: rgb(34 197 94 / 0.8);
}

.accent-green-500\/85 {
  accent-color: rgb(34 197 94 / 0.85);
}

.accent-green-500\/90 {
  accent-color: rgb(34 197 94 / 0.9);
}

.accent-green-500\/95 {
  accent-color: rgb(34 197 94 / 0.95);
}

.accent-green-600 {
  accent-color: #16a34a;
}

.accent-green-600\/0 {
  accent-color: rgb(22 163 74 / 0);
}

.accent-green-600\/10 {
  accent-color: rgb(22 163 74 / 0.1);
}

.accent-green-600\/100 {
  accent-color: rgb(22 163 74 / 1);
}

.accent-green-600\/15 {
  accent-color: rgb(22 163 74 / 0.15);
}

.accent-green-600\/20 {
  accent-color: rgb(22 163 74 / 0.2);
}

.accent-green-600\/25 {
  accent-color: rgb(22 163 74 / 0.25);
}

.accent-green-600\/30 {
  accent-color: rgb(22 163 74 / 0.3);
}

.accent-green-600\/35 {
  accent-color: rgb(22 163 74 / 0.35);
}

.accent-green-600\/40 {
  accent-color: rgb(22 163 74 / 0.4);
}

.accent-green-600\/45 {
  accent-color: rgb(22 163 74 / 0.45);
}

.accent-green-600\/5 {
  accent-color: rgb(22 163 74 / 0.05);
}

.accent-green-600\/50 {
  accent-color: rgb(22 163 74 / 0.5);
}

.accent-green-600\/55 {
  accent-color: rgb(22 163 74 / 0.55);
}

.accent-green-600\/60 {
  accent-color: rgb(22 163 74 / 0.6);
}

.accent-green-600\/65 {
  accent-color: rgb(22 163 74 / 0.65);
}

.accent-green-600\/70 {
  accent-color: rgb(22 163 74 / 0.7);
}

.accent-green-600\/75 {
  accent-color: rgb(22 163 74 / 0.75);
}

.accent-green-600\/80 {
  accent-color: rgb(22 163 74 / 0.8);
}

.accent-green-600\/85 {
  accent-color: rgb(22 163 74 / 0.85);
}

.accent-green-600\/90 {
  accent-color: rgb(22 163 74 / 0.9);
}

.accent-green-600\/95 {
  accent-color: rgb(22 163 74 / 0.95);
}

.accent-green-700 {
  accent-color: #15803d;
}

.accent-green-700\/0 {
  accent-color: rgb(21 128 61 / 0);
}

.accent-green-700\/10 {
  accent-color: rgb(21 128 61 / 0.1);
}

.accent-green-700\/100 {
  accent-color: rgb(21 128 61 / 1);
}

.accent-green-700\/15 {
  accent-color: rgb(21 128 61 / 0.15);
}

.accent-green-700\/20 {
  accent-color: rgb(21 128 61 / 0.2);
}

.accent-green-700\/25 {
  accent-color: rgb(21 128 61 / 0.25);
}

.accent-green-700\/30 {
  accent-color: rgb(21 128 61 / 0.3);
}

.accent-green-700\/35 {
  accent-color: rgb(21 128 61 / 0.35);
}

.accent-green-700\/40 {
  accent-color: rgb(21 128 61 / 0.4);
}

.accent-green-700\/45 {
  accent-color: rgb(21 128 61 / 0.45);
}

.accent-green-700\/5 {
  accent-color: rgb(21 128 61 / 0.05);
}

.accent-green-700\/50 {
  accent-color: rgb(21 128 61 / 0.5);
}

.accent-green-700\/55 {
  accent-color: rgb(21 128 61 / 0.55);
}

.accent-green-700\/60 {
  accent-color: rgb(21 128 61 / 0.6);
}

.accent-green-700\/65 {
  accent-color: rgb(21 128 61 / 0.65);
}

.accent-green-700\/70 {
  accent-color: rgb(21 128 61 / 0.7);
}

.accent-green-700\/75 {
  accent-color: rgb(21 128 61 / 0.75);
}

.accent-green-700\/80 {
  accent-color: rgb(21 128 61 / 0.8);
}

.accent-green-700\/85 {
  accent-color: rgb(21 128 61 / 0.85);
}

.accent-green-700\/90 {
  accent-color: rgb(21 128 61 / 0.9);
}

.accent-green-700\/95 {
  accent-color: rgb(21 128 61 / 0.95);
}

.accent-green-800 {
  accent-color: #166534;
}

.accent-green-800\/0 {
  accent-color: rgb(22 101 52 / 0);
}

.accent-green-800\/10 {
  accent-color: rgb(22 101 52 / 0.1);
}

.accent-green-800\/100 {
  accent-color: rgb(22 101 52 / 1);
}

.accent-green-800\/15 {
  accent-color: rgb(22 101 52 / 0.15);
}

.accent-green-800\/20 {
  accent-color: rgb(22 101 52 / 0.2);
}

.accent-green-800\/25 {
  accent-color: rgb(22 101 52 / 0.25);
}

.accent-green-800\/30 {
  accent-color: rgb(22 101 52 / 0.3);
}

.accent-green-800\/35 {
  accent-color: rgb(22 101 52 / 0.35);
}

.accent-green-800\/40 {
  accent-color: rgb(22 101 52 / 0.4);
}

.accent-green-800\/45 {
  accent-color: rgb(22 101 52 / 0.45);
}

.accent-green-800\/5 {
  accent-color: rgb(22 101 52 / 0.05);
}

.accent-green-800\/50 {
  accent-color: rgb(22 101 52 / 0.5);
}

.accent-green-800\/55 {
  accent-color: rgb(22 101 52 / 0.55);
}

.accent-green-800\/60 {
  accent-color: rgb(22 101 52 / 0.6);
}

.accent-green-800\/65 {
  accent-color: rgb(22 101 52 / 0.65);
}

.accent-green-800\/70 {
  accent-color: rgb(22 101 52 / 0.7);
}

.accent-green-800\/75 {
  accent-color: rgb(22 101 52 / 0.75);
}

.accent-green-800\/80 {
  accent-color: rgb(22 101 52 / 0.8);
}

.accent-green-800\/85 {
  accent-color: rgb(22 101 52 / 0.85);
}

.accent-green-800\/90 {
  accent-color: rgb(22 101 52 / 0.9);
}

.accent-green-800\/95 {
  accent-color: rgb(22 101 52 / 0.95);
}

.accent-green-900 {
  accent-color: #14532d;
}

.accent-green-900\/0 {
  accent-color: rgb(20 83 45 / 0);
}

.accent-green-900\/10 {
  accent-color: rgb(20 83 45 / 0.1);
}

.accent-green-900\/100 {
  accent-color: rgb(20 83 45 / 1);
}

.accent-green-900\/15 {
  accent-color: rgb(20 83 45 / 0.15);
}

.accent-green-900\/20 {
  accent-color: rgb(20 83 45 / 0.2);
}

.accent-green-900\/25 {
  accent-color: rgb(20 83 45 / 0.25);
}

.accent-green-900\/30 {
  accent-color: rgb(20 83 45 / 0.3);
}

.accent-green-900\/35 {
  accent-color: rgb(20 83 45 / 0.35);
}

.accent-green-900\/40 {
  accent-color: rgb(20 83 45 / 0.4);
}

.accent-green-900\/45 {
  accent-color: rgb(20 83 45 / 0.45);
}

.accent-green-900\/5 {
  accent-color: rgb(20 83 45 / 0.05);
}

.accent-green-900\/50 {
  accent-color: rgb(20 83 45 / 0.5);
}

.accent-green-900\/55 {
  accent-color: rgb(20 83 45 / 0.55);
}

.accent-green-900\/60 {
  accent-color: rgb(20 83 45 / 0.6);
}

.accent-green-900\/65 {
  accent-color: rgb(20 83 45 / 0.65);
}

.accent-green-900\/70 {
  accent-color: rgb(20 83 45 / 0.7);
}

.accent-green-900\/75 {
  accent-color: rgb(20 83 45 / 0.75);
}

.accent-green-900\/80 {
  accent-color: rgb(20 83 45 / 0.8);
}

.accent-green-900\/85 {
  accent-color: rgb(20 83 45 / 0.85);
}

.accent-green-900\/90 {
  accent-color: rgb(20 83 45 / 0.9);
}

.accent-green-900\/95 {
  accent-color: rgb(20 83 45 / 0.95);
}

.accent-green-950 {
  accent-color: #052e16;
}

.accent-green-950\/0 {
  accent-color: rgb(5 46 22 / 0);
}

.accent-green-950\/10 {
  accent-color: rgb(5 46 22 / 0.1);
}

.accent-green-950\/100 {
  accent-color: rgb(5 46 22 / 1);
}

.accent-green-950\/15 {
  accent-color: rgb(5 46 22 / 0.15);
}

.accent-green-950\/20 {
  accent-color: rgb(5 46 22 / 0.2);
}

.accent-green-950\/25 {
  accent-color: rgb(5 46 22 / 0.25);
}

.accent-green-950\/30 {
  accent-color: rgb(5 46 22 / 0.3);
}

.accent-green-950\/35 {
  accent-color: rgb(5 46 22 / 0.35);
}

.accent-green-950\/40 {
  accent-color: rgb(5 46 22 / 0.4);
}

.accent-green-950\/45 {
  accent-color: rgb(5 46 22 / 0.45);
}

.accent-green-950\/5 {
  accent-color: rgb(5 46 22 / 0.05);
}

.accent-green-950\/50 {
  accent-color: rgb(5 46 22 / 0.5);
}

.accent-green-950\/55 {
  accent-color: rgb(5 46 22 / 0.55);
}

.accent-green-950\/60 {
  accent-color: rgb(5 46 22 / 0.6);
}

.accent-green-950\/65 {
  accent-color: rgb(5 46 22 / 0.65);
}

.accent-green-950\/70 {
  accent-color: rgb(5 46 22 / 0.7);
}

.accent-green-950\/75 {
  accent-color: rgb(5 46 22 / 0.75);
}

.accent-green-950\/80 {
  accent-color: rgb(5 46 22 / 0.8);
}

.accent-green-950\/85 {
  accent-color: rgb(5 46 22 / 0.85);
}

.accent-green-950\/90 {
  accent-color: rgb(5 46 22 / 0.9);
}

.accent-green-950\/95 {
  accent-color: rgb(5 46 22 / 0.95);
}

.accent-red-100 {
  accent-color: #fee2e2;
}

.accent-red-100\/0 {
  accent-color: rgb(254 226 226 / 0);
}

.accent-red-100\/10 {
  accent-color: rgb(254 226 226 / 0.1);
}

.accent-red-100\/100 {
  accent-color: rgb(254 226 226 / 1);
}

.accent-red-100\/15 {
  accent-color: rgb(254 226 226 / 0.15);
}

.accent-red-100\/20 {
  accent-color: rgb(254 226 226 / 0.2);
}

.accent-red-100\/25 {
  accent-color: rgb(254 226 226 / 0.25);
}

.accent-red-100\/30 {
  accent-color: rgb(254 226 226 / 0.3);
}

.accent-red-100\/35 {
  accent-color: rgb(254 226 226 / 0.35);
}

.accent-red-100\/40 {
  accent-color: rgb(254 226 226 / 0.4);
}

.accent-red-100\/45 {
  accent-color: rgb(254 226 226 / 0.45);
}

.accent-red-100\/5 {
  accent-color: rgb(254 226 226 / 0.05);
}

.accent-red-100\/50 {
  accent-color: rgb(254 226 226 / 0.5);
}

.accent-red-100\/55 {
  accent-color: rgb(254 226 226 / 0.55);
}

.accent-red-100\/60 {
  accent-color: rgb(254 226 226 / 0.6);
}

.accent-red-100\/65 {
  accent-color: rgb(254 226 226 / 0.65);
}

.accent-red-100\/70 {
  accent-color: rgb(254 226 226 / 0.7);
}

.accent-red-100\/75 {
  accent-color: rgb(254 226 226 / 0.75);
}

.accent-red-100\/80 {
  accent-color: rgb(254 226 226 / 0.8);
}

.accent-red-100\/85 {
  accent-color: rgb(254 226 226 / 0.85);
}

.accent-red-100\/90 {
  accent-color: rgb(254 226 226 / 0.9);
}

.accent-red-100\/95 {
  accent-color: rgb(254 226 226 / 0.95);
}

.accent-red-200 {
  accent-color: #fecaca;
}

.accent-red-200\/0 {
  accent-color: rgb(254 202 202 / 0);
}

.accent-red-200\/10 {
  accent-color: rgb(254 202 202 / 0.1);
}

.accent-red-200\/100 {
  accent-color: rgb(254 202 202 / 1);
}

.accent-red-200\/15 {
  accent-color: rgb(254 202 202 / 0.15);
}

.accent-red-200\/20 {
  accent-color: rgb(254 202 202 / 0.2);
}

.accent-red-200\/25 {
  accent-color: rgb(254 202 202 / 0.25);
}

.accent-red-200\/30 {
  accent-color: rgb(254 202 202 / 0.3);
}

.accent-red-200\/35 {
  accent-color: rgb(254 202 202 / 0.35);
}

.accent-red-200\/40 {
  accent-color: rgb(254 202 202 / 0.4);
}

.accent-red-200\/45 {
  accent-color: rgb(254 202 202 / 0.45);
}

.accent-red-200\/5 {
  accent-color: rgb(254 202 202 / 0.05);
}

.accent-red-200\/50 {
  accent-color: rgb(254 202 202 / 0.5);
}

.accent-red-200\/55 {
  accent-color: rgb(254 202 202 / 0.55);
}

.accent-red-200\/60 {
  accent-color: rgb(254 202 202 / 0.6);
}

.accent-red-200\/65 {
  accent-color: rgb(254 202 202 / 0.65);
}

.accent-red-200\/70 {
  accent-color: rgb(254 202 202 / 0.7);
}

.accent-red-200\/75 {
  accent-color: rgb(254 202 202 / 0.75);
}

.accent-red-200\/80 {
  accent-color: rgb(254 202 202 / 0.8);
}

.accent-red-200\/85 {
  accent-color: rgb(254 202 202 / 0.85);
}

.accent-red-200\/90 {
  accent-color: rgb(254 202 202 / 0.9);
}

.accent-red-200\/95 {
  accent-color: rgb(254 202 202 / 0.95);
}

.accent-red-300 {
  accent-color: #fca5a5;
}

.accent-red-300\/0 {
  accent-color: rgb(252 165 165 / 0);
}

.accent-red-300\/10 {
  accent-color: rgb(252 165 165 / 0.1);
}

.accent-red-300\/100 {
  accent-color: rgb(252 165 165 / 1);
}

.accent-red-300\/15 {
  accent-color: rgb(252 165 165 / 0.15);
}

.accent-red-300\/20 {
  accent-color: rgb(252 165 165 / 0.2);
}

.accent-red-300\/25 {
  accent-color: rgb(252 165 165 / 0.25);
}

.accent-red-300\/30 {
  accent-color: rgb(252 165 165 / 0.3);
}

.accent-red-300\/35 {
  accent-color: rgb(252 165 165 / 0.35);
}

.accent-red-300\/40 {
  accent-color: rgb(252 165 165 / 0.4);
}

.accent-red-300\/45 {
  accent-color: rgb(252 165 165 / 0.45);
}

.accent-red-300\/5 {
  accent-color: rgb(252 165 165 / 0.05);
}

.accent-red-300\/50 {
  accent-color: rgb(252 165 165 / 0.5);
}

.accent-red-300\/55 {
  accent-color: rgb(252 165 165 / 0.55);
}

.accent-red-300\/60 {
  accent-color: rgb(252 165 165 / 0.6);
}

.accent-red-300\/65 {
  accent-color: rgb(252 165 165 / 0.65);
}

.accent-red-300\/70 {
  accent-color: rgb(252 165 165 / 0.7);
}

.accent-red-300\/75 {
  accent-color: rgb(252 165 165 / 0.75);
}

.accent-red-300\/80 {
  accent-color: rgb(252 165 165 / 0.8);
}

.accent-red-300\/85 {
  accent-color: rgb(252 165 165 / 0.85);
}

.accent-red-300\/90 {
  accent-color: rgb(252 165 165 / 0.9);
}

.accent-red-300\/95 {
  accent-color: rgb(252 165 165 / 0.95);
}

.accent-red-400 {
  accent-color: #f87171;
}

.accent-red-400\/0 {
  accent-color: rgb(248 113 113 / 0);
}

.accent-red-400\/10 {
  accent-color: rgb(248 113 113 / 0.1);
}

.accent-red-400\/100 {
  accent-color: rgb(248 113 113 / 1);
}

.accent-red-400\/15 {
  accent-color: rgb(248 113 113 / 0.15);
}

.accent-red-400\/20 {
  accent-color: rgb(248 113 113 / 0.2);
}

.accent-red-400\/25 {
  accent-color: rgb(248 113 113 / 0.25);
}

.accent-red-400\/30 {
  accent-color: rgb(248 113 113 / 0.3);
}

.accent-red-400\/35 {
  accent-color: rgb(248 113 113 / 0.35);
}

.accent-red-400\/40 {
  accent-color: rgb(248 113 113 / 0.4);
}

.accent-red-400\/45 {
  accent-color: rgb(248 113 113 / 0.45);
}

.accent-red-400\/5 {
  accent-color: rgb(248 113 113 / 0.05);
}

.accent-red-400\/50 {
  accent-color: rgb(248 113 113 / 0.5);
}

.accent-red-400\/55 {
  accent-color: rgb(248 113 113 / 0.55);
}

.accent-red-400\/60 {
  accent-color: rgb(248 113 113 / 0.6);
}

.accent-red-400\/65 {
  accent-color: rgb(248 113 113 / 0.65);
}

.accent-red-400\/70 {
  accent-color: rgb(248 113 113 / 0.7);
}

.accent-red-400\/75 {
  accent-color: rgb(248 113 113 / 0.75);
}

.accent-red-400\/80 {
  accent-color: rgb(248 113 113 / 0.8);
}

.accent-red-400\/85 {
  accent-color: rgb(248 113 113 / 0.85);
}

.accent-red-400\/90 {
  accent-color: rgb(248 113 113 / 0.9);
}

.accent-red-400\/95 {
  accent-color: rgb(248 113 113 / 0.95);
}

.accent-red-50 {
  accent-color: #fef2f2;
}

.accent-red-50\/0 {
  accent-color: rgb(254 242 242 / 0);
}

.accent-red-50\/10 {
  accent-color: rgb(254 242 242 / 0.1);
}

.accent-red-50\/100 {
  accent-color: rgb(254 242 242 / 1);
}

.accent-red-50\/15 {
  accent-color: rgb(254 242 242 / 0.15);
}

.accent-red-50\/20 {
  accent-color: rgb(254 242 242 / 0.2);
}

.accent-red-50\/25 {
  accent-color: rgb(254 242 242 / 0.25);
}

.accent-red-50\/30 {
  accent-color: rgb(254 242 242 / 0.3);
}

.accent-red-50\/35 {
  accent-color: rgb(254 242 242 / 0.35);
}

.accent-red-50\/40 {
  accent-color: rgb(254 242 242 / 0.4);
}

.accent-red-50\/45 {
  accent-color: rgb(254 242 242 / 0.45);
}

.accent-red-50\/5 {
  accent-color: rgb(254 242 242 / 0.05);
}

.accent-red-50\/50 {
  accent-color: rgb(254 242 242 / 0.5);
}

.accent-red-50\/55 {
  accent-color: rgb(254 242 242 / 0.55);
}

.accent-red-50\/60 {
  accent-color: rgb(254 242 242 / 0.6);
}

.accent-red-50\/65 {
  accent-color: rgb(254 242 242 / 0.65);
}

.accent-red-50\/70 {
  accent-color: rgb(254 242 242 / 0.7);
}

.accent-red-50\/75 {
  accent-color: rgb(254 242 242 / 0.75);
}

.accent-red-50\/80 {
  accent-color: rgb(254 242 242 / 0.8);
}

.accent-red-50\/85 {
  accent-color: rgb(254 242 242 / 0.85);
}

.accent-red-50\/90 {
  accent-color: rgb(254 242 242 / 0.9);
}

.accent-red-50\/95 {
  accent-color: rgb(254 242 242 / 0.95);
}

.accent-red-500 {
  accent-color: #ef4444;
}

.accent-red-500\/0 {
  accent-color: rgb(239 68 68 / 0);
}

.accent-red-500\/10 {
  accent-color: rgb(239 68 68 / 0.1);
}

.accent-red-500\/100 {
  accent-color: rgb(239 68 68 / 1);
}

.accent-red-500\/15 {
  accent-color: rgb(239 68 68 / 0.15);
}

.accent-red-500\/20 {
  accent-color: rgb(239 68 68 / 0.2);
}

.accent-red-500\/25 {
  accent-color: rgb(239 68 68 / 0.25);
}

.accent-red-500\/30 {
  accent-color: rgb(239 68 68 / 0.3);
}

.accent-red-500\/35 {
  accent-color: rgb(239 68 68 / 0.35);
}

.accent-red-500\/40 {
  accent-color: rgb(239 68 68 / 0.4);
}

.accent-red-500\/45 {
  accent-color: rgb(239 68 68 / 0.45);
}

.accent-red-500\/5 {
  accent-color: rgb(239 68 68 / 0.05);
}

.accent-red-500\/50 {
  accent-color: rgb(239 68 68 / 0.5);
}

.accent-red-500\/55 {
  accent-color: rgb(239 68 68 / 0.55);
}

.accent-red-500\/60 {
  accent-color: rgb(239 68 68 / 0.6);
}

.accent-red-500\/65 {
  accent-color: rgb(239 68 68 / 0.65);
}

.accent-red-500\/70 {
  accent-color: rgb(239 68 68 / 0.7);
}

.accent-red-500\/75 {
  accent-color: rgb(239 68 68 / 0.75);
}

.accent-red-500\/80 {
  accent-color: rgb(239 68 68 / 0.8);
}

.accent-red-500\/85 {
  accent-color: rgb(239 68 68 / 0.85);
}

.accent-red-500\/90 {
  accent-color: rgb(239 68 68 / 0.9);
}

.accent-red-500\/95 {
  accent-color: rgb(239 68 68 / 0.95);
}

.accent-red-600 {
  accent-color: #dc2626;
}

.accent-red-600\/0 {
  accent-color: rgb(220 38 38 / 0);
}

.accent-red-600\/10 {
  accent-color: rgb(220 38 38 / 0.1);
}

.accent-red-600\/100 {
  accent-color: rgb(220 38 38 / 1);
}

.accent-red-600\/15 {
  accent-color: rgb(220 38 38 / 0.15);
}

.accent-red-600\/20 {
  accent-color: rgb(220 38 38 / 0.2);
}

.accent-red-600\/25 {
  accent-color: rgb(220 38 38 / 0.25);
}

.accent-red-600\/30 {
  accent-color: rgb(220 38 38 / 0.3);
}

.accent-red-600\/35 {
  accent-color: rgb(220 38 38 / 0.35);
}

.accent-red-600\/40 {
  accent-color: rgb(220 38 38 / 0.4);
}

.accent-red-600\/45 {
  accent-color: rgb(220 38 38 / 0.45);
}

.accent-red-600\/5 {
  accent-color: rgb(220 38 38 / 0.05);
}

.accent-red-600\/50 {
  accent-color: rgb(220 38 38 / 0.5);
}

.accent-red-600\/55 {
  accent-color: rgb(220 38 38 / 0.55);
}

.accent-red-600\/60 {
  accent-color: rgb(220 38 38 / 0.6);
}

.accent-red-600\/65 {
  accent-color: rgb(220 38 38 / 0.65);
}

.accent-red-600\/70 {
  accent-color: rgb(220 38 38 / 0.7);
}

.accent-red-600\/75 {
  accent-color: rgb(220 38 38 / 0.75);
}

.accent-red-600\/80 {
  accent-color: rgb(220 38 38 / 0.8);
}

.accent-red-600\/85 {
  accent-color: rgb(220 38 38 / 0.85);
}

.accent-red-600\/90 {
  accent-color: rgb(220 38 38 / 0.9);
}

.accent-red-600\/95 {
  accent-color: rgb(220 38 38 / 0.95);
}

.accent-red-700 {
  accent-color: #b91c1c;
}

.accent-red-700\/0 {
  accent-color: rgb(185 28 28 / 0);
}

.accent-red-700\/10 {
  accent-color: rgb(185 28 28 / 0.1);
}

.accent-red-700\/100 {
  accent-color: rgb(185 28 28 / 1);
}

.accent-red-700\/15 {
  accent-color: rgb(185 28 28 / 0.15);
}

.accent-red-700\/20 {
  accent-color: rgb(185 28 28 / 0.2);
}

.accent-red-700\/25 {
  accent-color: rgb(185 28 28 / 0.25);
}

.accent-red-700\/30 {
  accent-color: rgb(185 28 28 / 0.3);
}

.accent-red-700\/35 {
  accent-color: rgb(185 28 28 / 0.35);
}

.accent-red-700\/40 {
  accent-color: rgb(185 28 28 / 0.4);
}

.accent-red-700\/45 {
  accent-color: rgb(185 28 28 / 0.45);
}

.accent-red-700\/5 {
  accent-color: rgb(185 28 28 / 0.05);
}

.accent-red-700\/50 {
  accent-color: rgb(185 28 28 / 0.5);
}

.accent-red-700\/55 {
  accent-color: rgb(185 28 28 / 0.55);
}

.accent-red-700\/60 {
  accent-color: rgb(185 28 28 / 0.6);
}

.accent-red-700\/65 {
  accent-color: rgb(185 28 28 / 0.65);
}

.accent-red-700\/70 {
  accent-color: rgb(185 28 28 / 0.7);
}

.accent-red-700\/75 {
  accent-color: rgb(185 28 28 / 0.75);
}

.accent-red-700\/80 {
  accent-color: rgb(185 28 28 / 0.8);
}

.accent-red-700\/85 {
  accent-color: rgb(185 28 28 / 0.85);
}

.accent-red-700\/90 {
  accent-color: rgb(185 28 28 / 0.9);
}

.accent-red-700\/95 {
  accent-color: rgb(185 28 28 / 0.95);
}

.accent-red-800 {
  accent-color: #991b1b;
}

.accent-red-800\/0 {
  accent-color: rgb(153 27 27 / 0);
}

.accent-red-800\/10 {
  accent-color: rgb(153 27 27 / 0.1);
}

.accent-red-800\/100 {
  accent-color: rgb(153 27 27 / 1);
}

.accent-red-800\/15 {
  accent-color: rgb(153 27 27 / 0.15);
}

.accent-red-800\/20 {
  accent-color: rgb(153 27 27 / 0.2);
}

.accent-red-800\/25 {
  accent-color: rgb(153 27 27 / 0.25);
}

.accent-red-800\/30 {
  accent-color: rgb(153 27 27 / 0.3);
}

.accent-red-800\/35 {
  accent-color: rgb(153 27 27 / 0.35);
}

.accent-red-800\/40 {
  accent-color: rgb(153 27 27 / 0.4);
}

.accent-red-800\/45 {
  accent-color: rgb(153 27 27 / 0.45);
}

.accent-red-800\/5 {
  accent-color: rgb(153 27 27 / 0.05);
}

.accent-red-800\/50 {
  accent-color: rgb(153 27 27 / 0.5);
}

.accent-red-800\/55 {
  accent-color: rgb(153 27 27 / 0.55);
}

.accent-red-800\/60 {
  accent-color: rgb(153 27 27 / 0.6);
}

.accent-red-800\/65 {
  accent-color: rgb(153 27 27 / 0.65);
}

.accent-red-800\/70 {
  accent-color: rgb(153 27 27 / 0.7);
}

.accent-red-800\/75 {
  accent-color: rgb(153 27 27 / 0.75);
}

.accent-red-800\/80 {
  accent-color: rgb(153 27 27 / 0.8);
}

.accent-red-800\/85 {
  accent-color: rgb(153 27 27 / 0.85);
}

.accent-red-800\/90 {
  accent-color: rgb(153 27 27 / 0.9);
}

.accent-red-800\/95 {
  accent-color: rgb(153 27 27 / 0.95);
}

.accent-red-900 {
  accent-color: #7f1d1d;
}

.accent-red-900\/0 {
  accent-color: rgb(127 29 29 / 0);
}

.accent-red-900\/10 {
  accent-color: rgb(127 29 29 / 0.1);
}

.accent-red-900\/100 {
  accent-color: rgb(127 29 29 / 1);
}

.accent-red-900\/15 {
  accent-color: rgb(127 29 29 / 0.15);
}

.accent-red-900\/20 {
  accent-color: rgb(127 29 29 / 0.2);
}

.accent-red-900\/25 {
  accent-color: rgb(127 29 29 / 0.25);
}

.accent-red-900\/30 {
  accent-color: rgb(127 29 29 / 0.3);
}

.accent-red-900\/35 {
  accent-color: rgb(127 29 29 / 0.35);
}

.accent-red-900\/40 {
  accent-color: rgb(127 29 29 / 0.4);
}

.accent-red-900\/45 {
  accent-color: rgb(127 29 29 / 0.45);
}

.accent-red-900\/5 {
  accent-color: rgb(127 29 29 / 0.05);
}

.accent-red-900\/50 {
  accent-color: rgb(127 29 29 / 0.5);
}

.accent-red-900\/55 {
  accent-color: rgb(127 29 29 / 0.55);
}

.accent-red-900\/60 {
  accent-color: rgb(127 29 29 / 0.6);
}

.accent-red-900\/65 {
  accent-color: rgb(127 29 29 / 0.65);
}

.accent-red-900\/70 {
  accent-color: rgb(127 29 29 / 0.7);
}

.accent-red-900\/75 {
  accent-color: rgb(127 29 29 / 0.75);
}

.accent-red-900\/80 {
  accent-color: rgb(127 29 29 / 0.8);
}

.accent-red-900\/85 {
  accent-color: rgb(127 29 29 / 0.85);
}

.accent-red-900\/90 {
  accent-color: rgb(127 29 29 / 0.9);
}

.accent-red-900\/95 {
  accent-color: rgb(127 29 29 / 0.95);
}

.accent-red-950 {
  accent-color: #450a0a;
}

.accent-red-950\/0 {
  accent-color: rgb(69 10 10 / 0);
}

.accent-red-950\/10 {
  accent-color: rgb(69 10 10 / 0.1);
}

.accent-red-950\/100 {
  accent-color: rgb(69 10 10 / 1);
}

.accent-red-950\/15 {
  accent-color: rgb(69 10 10 / 0.15);
}

.accent-red-950\/20 {
  accent-color: rgb(69 10 10 / 0.2);
}

.accent-red-950\/25 {
  accent-color: rgb(69 10 10 / 0.25);
}

.accent-red-950\/30 {
  accent-color: rgb(69 10 10 / 0.3);
}

.accent-red-950\/35 {
  accent-color: rgb(69 10 10 / 0.35);
}

.accent-red-950\/40 {
  accent-color: rgb(69 10 10 / 0.4);
}

.accent-red-950\/45 {
  accent-color: rgb(69 10 10 / 0.45);
}

.accent-red-950\/5 {
  accent-color: rgb(69 10 10 / 0.05);
}

.accent-red-950\/50 {
  accent-color: rgb(69 10 10 / 0.5);
}

.accent-red-950\/55 {
  accent-color: rgb(69 10 10 / 0.55);
}

.accent-red-950\/60 {
  accent-color: rgb(69 10 10 / 0.6);
}

.accent-red-950\/65 {
  accent-color: rgb(69 10 10 / 0.65);
}

.accent-red-950\/70 {
  accent-color: rgb(69 10 10 / 0.7);
}

.accent-red-950\/75 {
  accent-color: rgb(69 10 10 / 0.75);
}

.accent-red-950\/80 {
  accent-color: rgb(69 10 10 / 0.8);
}

.accent-red-950\/85 {
  accent-color: rgb(69 10 10 / 0.85);
}

.accent-red-950\/90 {
  accent-color: rgb(69 10 10 / 0.9);
}

.accent-red-950\/95 {
  accent-color: rgb(69 10 10 / 0.95);
}

.accent-transparent {
  accent-color: transparent;
}

.accent-transparent\/0 {
  accent-color: rgb(0 0 0 / 0);
}

.accent-transparent\/10 {
  accent-color: rgb(0 0 0 / 0.1);
}

.accent-transparent\/100 {
  accent-color: rgb(0 0 0 / 1);
}

.accent-transparent\/15 {
  accent-color: rgb(0 0 0 / 0.15);
}

.accent-transparent\/20 {
  accent-color: rgb(0 0 0 / 0.2);
}

.accent-transparent\/25 {
  accent-color: rgb(0 0 0 / 0.25);
}

.accent-transparent\/30 {
  accent-color: rgb(0 0 0 / 0.3);
}

.accent-transparent\/35 {
  accent-color: rgb(0 0 0 / 0.35);
}

.accent-transparent\/40 {
  accent-color: rgb(0 0 0 / 0.4);
}

.accent-transparent\/45 {
  accent-color: rgb(0 0 0 / 0.45);
}

.accent-transparent\/5 {
  accent-color: rgb(0 0 0 / 0.05);
}

.accent-transparent\/50 {
  accent-color: rgb(0 0 0 / 0.5);
}

.accent-transparent\/55 {
  accent-color: rgb(0 0 0 / 0.55);
}

.accent-transparent\/60 {
  accent-color: rgb(0 0 0 / 0.6);
}

.accent-transparent\/65 {
  accent-color: rgb(0 0 0 / 0.65);
}

.accent-transparent\/70 {
  accent-color: rgb(0 0 0 / 0.7);
}

.accent-transparent\/75 {
  accent-color: rgb(0 0 0 / 0.75);
}

.accent-transparent\/80 {
  accent-color: rgb(0 0 0 / 0.8);
}

.accent-transparent\/85 {
  accent-color: rgb(0 0 0 / 0.85);
}

.accent-transparent\/90 {
  accent-color: rgb(0 0 0 / 0.9);
}

.accent-transparent\/95 {
  accent-color: rgb(0 0 0 / 0.95);
}

.accent-white {
  accent-color: #fff;
}

.accent-white\/0 {
  accent-color: rgb(255 255 255 / 0);
}

.accent-white\/10 {
  accent-color: rgb(255 255 255 / 0.1);
}

.accent-white\/100 {
  accent-color: rgb(255 255 255 / 1);
}

.accent-white\/15 {
  accent-color: rgb(255 255 255 / 0.15);
}

.accent-white\/20 {
  accent-color: rgb(255 255 255 / 0.2);
}

.accent-white\/25 {
  accent-color: rgb(255 255 255 / 0.25);
}

.accent-white\/30 {
  accent-color: rgb(255 255 255 / 0.3);
}

.accent-white\/35 {
  accent-color: rgb(255 255 255 / 0.35);
}

.accent-white\/40 {
  accent-color: rgb(255 255 255 / 0.4);
}

.accent-white\/45 {
  accent-color: rgb(255 255 255 / 0.45);
}

.accent-white\/5 {
  accent-color: rgb(255 255 255 / 0.05);
}

.accent-white\/50 {
  accent-color: rgb(255 255 255 / 0.5);
}

.accent-white\/55 {
  accent-color: rgb(255 255 255 / 0.55);
}

.accent-white\/60 {
  accent-color: rgb(255 255 255 / 0.6);
}

.accent-white\/65 {
  accent-color: rgb(255 255 255 / 0.65);
}

.accent-white\/70 {
  accent-color: rgb(255 255 255 / 0.7);
}

.accent-white\/75 {
  accent-color: rgb(255 255 255 / 0.75);
}

.accent-white\/80 {
  accent-color: rgb(255 255 255 / 0.8);
}

.accent-white\/85 {
  accent-color: rgb(255 255 255 / 0.85);
}

.accent-white\/90 {
  accent-color: rgb(255 255 255 / 0.9);
}

.accent-white\/95 {
  accent-color: rgb(255 255 255 / 0.95);
}

.opacity-0 {
  opacity: 0;
}

.opacity-10 {
  opacity: 0.1;
}

.opacity-100 {
  opacity: 1;
}

.opacity-15 {
  opacity: 0.15;
}

.opacity-20 {
  opacity: 0.2;
}

.opacity-25 {
  opacity: 0.25;
}

.opacity-30 {
  opacity: 0.3;
}

.opacity-35 {
  opacity: 0.35;
}

.opacity-40 {
  opacity: 0.4;
}

.opacity-45 {
  opacity: 0.45;
}

.opacity-5 {
  opacity: 0.05;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-55 {
  opacity: 0.55;
}

.opacity-60 {
  opacity: 0.6;
}

.opacity-65 {
  opacity: 0.65;
}

.opacity-70 {
  opacity: 0.7;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-85 {
  opacity: 0.85;
}

.opacity-90 {
  opacity: 0.9;
}

.opacity-95 {
  opacity: 0.95;
}

.bg-blend-normal {
  background-blend-mode: normal;
}

.bg-blend-multiply {
  background-blend-mode: multiply;
}

.bg-blend-screen {
  background-blend-mode: screen;
}

.bg-blend-overlay {
  background-blend-mode: overlay;
}

.bg-blend-darken {
  background-blend-mode: darken;
}

.bg-blend-lighten {
  background-blend-mode: lighten;
}

.bg-blend-color-dodge {
  background-blend-mode: color-dodge;
}

.bg-blend-color-burn {
  background-blend-mode: color-burn;
}

.bg-blend-hard-light {
  background-blend-mode: hard-light;
}

.bg-blend-soft-light {
  background-blend-mode: soft-light;
}

.bg-blend-difference {
  background-blend-mode: difference;
}

.bg-blend-exclusion {
  background-blend-mode: exclusion;
}

.bg-blend-hue {
  background-blend-mode: hue;
}

.bg-blend-saturation {
  background-blend-mode: saturation;
}

.bg-blend-color {
  background-blend-mode: color;
}

.bg-blend-luminosity {
  background-blend-mode: luminosity;
}

.mix-blend-normal {
  mix-blend-mode: normal;
}

.mix-blend-multiply {
  mix-blend-mode: multiply;
}

.mix-blend-screen {
  mix-blend-mode: screen;
}

.mix-blend-overlay {
  mix-blend-mode: overlay;
}

.mix-blend-darken {
  mix-blend-mode: darken;
}

.mix-blend-lighten {
  mix-blend-mode: lighten;
}

.mix-blend-color-dodge {
  mix-blend-mode: color-dodge;
}

.mix-blend-color-burn {
  mix-blend-mode: color-burn;
}

.mix-blend-hard-light {
  mix-blend-mode: hard-light;
}

.mix-blend-soft-light {
  mix-blend-mode: soft-light;
}

.mix-blend-difference {
  mix-blend-mode: difference;
}

.mix-blend-exclusion {
  mix-blend-mode: exclusion;
}

.mix-blend-hue {
  mix-blend-mode: hue;
}

.mix-blend-saturation {
  mix-blend-mode: saturation;
}

.mix-blend-color {
  mix-blend-mode: color;
}

.mix-blend-luminosity {
  mix-blend-mode: luminosity;
}

.mix-blend-plus-darker {
  mix-blend-mode: plus-darker;
}

.mix-blend-plus-lighter {
  mix-blend-mode: plus-lighter;
}

.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(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: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-inner {
  --tw-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: inset 0 2px 4px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(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: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-none {
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-xl {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(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: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-black {
  --tw-shadow-color: #000;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-black\/0 {
  --tw-shadow-color: rgb(0 0 0 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-black\/10 {
  --tw-shadow-color: rgb(0 0 0 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-black\/100 {
  --tw-shadow-color: rgb(0 0 0 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-black\/15 {
  --tw-shadow-color: rgb(0 0 0 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-black\/20 {
  --tw-shadow-color: rgb(0 0 0 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-black\/25 {
  --tw-shadow-color: rgb(0 0 0 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-black\/30 {
  --tw-shadow-color: rgb(0 0 0 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-black\/35 {
  --tw-shadow-color: rgb(0 0 0 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-black\/40 {
  --tw-shadow-color: rgb(0 0 0 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-black\/45 {
  --tw-shadow-color: rgb(0 0 0 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-black\/5 {
  --tw-shadow-color: rgb(0 0 0 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-black\/50 {
  --tw-shadow-color: rgb(0 0 0 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-black\/55 {
  --tw-shadow-color: rgb(0 0 0 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-black\/60 {
  --tw-shadow-color: rgb(0 0 0 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-black\/65 {
  --tw-shadow-color: rgb(0 0 0 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-black\/70 {
  --tw-shadow-color: rgb(0 0 0 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-black\/75 {
  --tw-shadow-color: rgb(0 0 0 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-black\/80 {
  --tw-shadow-color: rgb(0 0 0 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-black\/85 {
  --tw-shadow-color: rgb(0 0 0 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-black\/90 {
  --tw-shadow-color: rgb(0 0 0 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-black\/95 {
  --tw-shadow-color: rgb(0 0 0 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-100 {
  --tw-shadow-color: #dbeafe;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-100\/0 {
  --tw-shadow-color: rgb(219 234 254 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-100\/10 {
  --tw-shadow-color: rgb(219 234 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-100\/100 {
  --tw-shadow-color: rgb(219 234 254 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-100\/15 {
  --tw-shadow-color: rgb(219 234 254 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-100\/20 {
  --tw-shadow-color: rgb(219 234 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-100\/25 {
  --tw-shadow-color: rgb(219 234 254 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-100\/30 {
  --tw-shadow-color: rgb(219 234 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-100\/35 {
  --tw-shadow-color: rgb(219 234 254 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-100\/40 {
  --tw-shadow-color: rgb(219 234 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-100\/45 {
  --tw-shadow-color: rgb(219 234 254 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-100\/5 {
  --tw-shadow-color: rgb(219 234 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-100\/50 {
  --tw-shadow-color: rgb(219 234 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-100\/55 {
  --tw-shadow-color: rgb(219 234 254 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-100\/60 {
  --tw-shadow-color: rgb(219 234 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-100\/65 {
  --tw-shadow-color: rgb(219 234 254 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-100\/70 {
  --tw-shadow-color: rgb(219 234 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-100\/75 {
  --tw-shadow-color: rgb(219 234 254 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-100\/80 {
  --tw-shadow-color: rgb(219 234 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-100\/85 {
  --tw-shadow-color: rgb(219 234 254 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-100\/90 {
  --tw-shadow-color: rgb(219 234 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-100\/95 {
  --tw-shadow-color: rgb(219 234 254 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-200 {
  --tw-shadow-color: #bfdbfe;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-200\/0 {
  --tw-shadow-color: rgb(191 219 254 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-200\/10 {
  --tw-shadow-color: rgb(191 219 254 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-200\/100 {
  --tw-shadow-color: rgb(191 219 254 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-200\/15 {
  --tw-shadow-color: rgb(191 219 254 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-200\/20 {
  --tw-shadow-color: rgb(191 219 254 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-200\/25 {
  --tw-shadow-color: rgb(191 219 254 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-200\/30 {
  --tw-shadow-color: rgb(191 219 254 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-200\/35 {
  --tw-shadow-color: rgb(191 219 254 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-200\/40 {
  --tw-shadow-color: rgb(191 219 254 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-200\/45 {
  --tw-shadow-color: rgb(191 219 254 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-200\/5 {
  --tw-shadow-color: rgb(191 219 254 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-200\/50 {
  --tw-shadow-color: rgb(191 219 254 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-200\/55 {
  --tw-shadow-color: rgb(191 219 254 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-200\/60 {
  --tw-shadow-color: rgb(191 219 254 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-200\/65 {
  --tw-shadow-color: rgb(191 219 254 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-200\/70 {
  --tw-shadow-color: rgb(191 219 254 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-200\/75 {
  --tw-shadow-color: rgb(191 219 254 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-200\/80 {
  --tw-shadow-color: rgb(191 219 254 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-200\/85 {
  --tw-shadow-color: rgb(191 219 254 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-200\/90 {
  --tw-shadow-color: rgb(191 219 254 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-200\/95 {
  --tw-shadow-color: rgb(191 219 254 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-300 {
  --tw-shadow-color: #93c5fd;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-300\/0 {
  --tw-shadow-color: rgb(147 197 253 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-300\/10 {
  --tw-shadow-color: rgb(147 197 253 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-300\/100 {
  --tw-shadow-color: rgb(147 197 253 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-300\/15 {
  --tw-shadow-color: rgb(147 197 253 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-300\/20 {
  --tw-shadow-color: rgb(147 197 253 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-300\/25 {
  --tw-shadow-color: rgb(147 197 253 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-300\/30 {
  --tw-shadow-color: rgb(147 197 253 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-300\/35 {
  --tw-shadow-color: rgb(147 197 253 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-300\/40 {
  --tw-shadow-color: rgb(147 197 253 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-300\/45 {
  --tw-shadow-color: rgb(147 197 253 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-300\/5 {
  --tw-shadow-color: rgb(147 197 253 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-300\/50 {
  --tw-shadow-color: rgb(147 197 253 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-300\/55 {
  --tw-shadow-color: rgb(147 197 253 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-300\/60 {
  --tw-shadow-color: rgb(147 197 253 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-300\/65 {
  --tw-shadow-color: rgb(147 197 253 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-300\/70 {
  --tw-shadow-color: rgb(147 197 253 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-300\/75 {
  --tw-shadow-color: rgb(147 197 253 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-300\/80 {
  --tw-shadow-color: rgb(147 197 253 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-300\/85 {
  --tw-shadow-color: rgb(147 197 253 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-300\/90 {
  --tw-shadow-color: rgb(147 197 253 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-300\/95 {
  --tw-shadow-color: rgb(147 197 253 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-400 {
  --tw-shadow-color: #60a5fa;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-400\/0 {
  --tw-shadow-color: rgb(96 165 250 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-400\/10 {
  --tw-shadow-color: rgb(96 165 250 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-400\/100 {
  --tw-shadow-color: rgb(96 165 250 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-400\/15 {
  --tw-shadow-color: rgb(96 165 250 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-400\/20 {
  --tw-shadow-color: rgb(96 165 250 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-400\/25 {
  --tw-shadow-color: rgb(96 165 250 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-400\/30 {
  --tw-shadow-color: rgb(96 165 250 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-400\/35 {
  --tw-shadow-color: rgb(96 165 250 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-400\/40 {
  --tw-shadow-color: rgb(96 165 250 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-400\/45 {
  --tw-shadow-color: rgb(96 165 250 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-400\/5 {
  --tw-shadow-color: rgb(96 165 250 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-400\/50 {
  --tw-shadow-color: rgb(96 165 250 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-400\/55 {
  --tw-shadow-color: rgb(96 165 250 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-400\/60 {
  --tw-shadow-color: rgb(96 165 250 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-400\/65 {
  --tw-shadow-color: rgb(96 165 250 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-400\/70 {
  --tw-shadow-color: rgb(96 165 250 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-400\/75 {
  --tw-shadow-color: rgb(96 165 250 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-400\/80 {
  --tw-shadow-color: rgb(96 165 250 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-400\/85 {
  --tw-shadow-color: rgb(96 165 250 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-400\/90 {
  --tw-shadow-color: rgb(96 165 250 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-400\/95 {
  --tw-shadow-color: rgb(96 165 250 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-50 {
  --tw-shadow-color: #eff6ff;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-50\/0 {
  --tw-shadow-color: rgb(239 246 255 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-50\/10 {
  --tw-shadow-color: rgb(239 246 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-50\/100 {
  --tw-shadow-color: rgb(239 246 255 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-50\/15 {
  --tw-shadow-color: rgb(239 246 255 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-50\/20 {
  --tw-shadow-color: rgb(239 246 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-50\/25 {
  --tw-shadow-color: rgb(239 246 255 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-50\/30 {
  --tw-shadow-color: rgb(239 246 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-50\/35 {
  --tw-shadow-color: rgb(239 246 255 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-50\/40 {
  --tw-shadow-color: rgb(239 246 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-50\/45 {
  --tw-shadow-color: rgb(239 246 255 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-50\/5 {
  --tw-shadow-color: rgb(239 246 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-50\/50 {
  --tw-shadow-color: rgb(239 246 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-50\/55 {
  --tw-shadow-color: rgb(239 246 255 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-50\/60 {
  --tw-shadow-color: rgb(239 246 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-50\/65 {
  --tw-shadow-color: rgb(239 246 255 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-50\/70 {
  --tw-shadow-color: rgb(239 246 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-50\/75 {
  --tw-shadow-color: rgb(239 246 255 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-50\/80 {
  --tw-shadow-color: rgb(239 246 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-50\/85 {
  --tw-shadow-color: rgb(239 246 255 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-50\/90 {
  --tw-shadow-color: rgb(239 246 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-50\/95 {
  --tw-shadow-color: rgb(239 246 255 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-500 {
  --tw-shadow-color: #3b82f6;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-500\/0 {
  --tw-shadow-color: rgb(59 130 246 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-500\/10 {
  --tw-shadow-color: rgb(59 130 246 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-500\/100 {
  --tw-shadow-color: rgb(59 130 246 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-500\/15 {
  --tw-shadow-color: rgb(59 130 246 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-500\/20 {
  --tw-shadow-color: rgb(59 130 246 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-500\/25 {
  --tw-shadow-color: rgb(59 130 246 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-500\/30 {
  --tw-shadow-color: rgb(59 130 246 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-500\/35 {
  --tw-shadow-color: rgb(59 130 246 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-500\/40 {
  --tw-shadow-color: rgb(59 130 246 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-500\/45 {
  --tw-shadow-color: rgb(59 130 246 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-500\/5 {
  --tw-shadow-color: rgb(59 130 246 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-500\/50 {
  --tw-shadow-color: rgb(59 130 246 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-500\/55 {
  --tw-shadow-color: rgb(59 130 246 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-500\/60 {
  --tw-shadow-color: rgb(59 130 246 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-500\/65 {
  --tw-shadow-color: rgb(59 130 246 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-500\/70 {
  --tw-shadow-color: rgb(59 130 246 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-500\/75 {
  --tw-shadow-color: rgb(59 130 246 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-500\/80 {
  --tw-shadow-color: rgb(59 130 246 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-500\/85 {
  --tw-shadow-color: rgb(59 130 246 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-500\/90 {
  --tw-shadow-color: rgb(59 130 246 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-500\/95 {
  --tw-shadow-color: rgb(59 130 246 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-600 {
  --tw-shadow-color: #2563eb;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-600\/0 {
  --tw-shadow-color: rgb(37 99 235 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-600\/10 {
  --tw-shadow-color: rgb(37 99 235 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-600\/100 {
  --tw-shadow-color: rgb(37 99 235 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-600\/15 {
  --tw-shadow-color: rgb(37 99 235 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-600\/20 {
  --tw-shadow-color: rgb(37 99 235 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-600\/25 {
  --tw-shadow-color: rgb(37 99 235 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-600\/30 {
  --tw-shadow-color: rgb(37 99 235 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-600\/35 {
  --tw-shadow-color: rgb(37 99 235 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-600\/40 {
  --tw-shadow-color: rgb(37 99 235 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-600\/45 {
  --tw-shadow-color: rgb(37 99 235 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-600\/5 {
  --tw-shadow-color: rgb(37 99 235 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-600\/50 {
  --tw-shadow-color: rgb(37 99 235 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-600\/55 {
  --tw-shadow-color: rgb(37 99 235 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-600\/60 {
  --tw-shadow-color: rgb(37 99 235 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-600\/65 {
  --tw-shadow-color: rgb(37 99 235 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-600\/70 {
  --tw-shadow-color: rgb(37 99 235 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-600\/75 {
  --tw-shadow-color: rgb(37 99 235 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-600\/80 {
  --tw-shadow-color: rgb(37 99 235 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-600\/85 {
  --tw-shadow-color: rgb(37 99 235 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-600\/90 {
  --tw-shadow-color: rgb(37 99 235 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-600\/95 {
  --tw-shadow-color: rgb(37 99 235 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-700 {
  --tw-shadow-color: #1d4ed8;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-700\/0 {
  --tw-shadow-color: rgb(29 78 216 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-700\/10 {
  --tw-shadow-color: rgb(29 78 216 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-700\/100 {
  --tw-shadow-color: rgb(29 78 216 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-700\/15 {
  --tw-shadow-color: rgb(29 78 216 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-700\/20 {
  --tw-shadow-color: rgb(29 78 216 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-700\/25 {
  --tw-shadow-color: rgb(29 78 216 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-700\/30 {
  --tw-shadow-color: rgb(29 78 216 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-700\/35 {
  --tw-shadow-color: rgb(29 78 216 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-700\/40 {
  --tw-shadow-color: rgb(29 78 216 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-700\/45 {
  --tw-shadow-color: rgb(29 78 216 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-700\/5 {
  --tw-shadow-color: rgb(29 78 216 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-700\/50 {
  --tw-shadow-color: rgb(29 78 216 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-700\/55 {
  --tw-shadow-color: rgb(29 78 216 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-700\/60 {
  --tw-shadow-color: rgb(29 78 216 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-700\/65 {
  --tw-shadow-color: rgb(29 78 216 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-700\/70 {
  --tw-shadow-color: rgb(29 78 216 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-700\/75 {
  --tw-shadow-color: rgb(29 78 216 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-700\/80 {
  --tw-shadow-color: rgb(29 78 216 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-700\/85 {
  --tw-shadow-color: rgb(29 78 216 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-700\/90 {
  --tw-shadow-color: rgb(29 78 216 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-700\/95 {
  --tw-shadow-color: rgb(29 78 216 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-800 {
  --tw-shadow-color: #1e40af;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-800\/0 {
  --tw-shadow-color: rgb(30 64 175 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-800\/10 {
  --tw-shadow-color: rgb(30 64 175 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-800\/100 {
  --tw-shadow-color: rgb(30 64 175 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-800\/15 {
  --tw-shadow-color: rgb(30 64 175 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-800\/20 {
  --tw-shadow-color: rgb(30 64 175 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-800\/25 {
  --tw-shadow-color: rgb(30 64 175 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-800\/30 {
  --tw-shadow-color: rgb(30 64 175 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-800\/35 {
  --tw-shadow-color: rgb(30 64 175 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-800\/40 {
  --tw-shadow-color: rgb(30 64 175 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-800\/45 {
  --tw-shadow-color: rgb(30 64 175 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-800\/5 {
  --tw-shadow-color: rgb(30 64 175 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-800\/50 {
  --tw-shadow-color: rgb(30 64 175 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-800\/55 {
  --tw-shadow-color: rgb(30 64 175 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-800\/60 {
  --tw-shadow-color: rgb(30 64 175 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-800\/65 {
  --tw-shadow-color: rgb(30 64 175 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-800\/70 {
  --tw-shadow-color: rgb(30 64 175 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-800\/75 {
  --tw-shadow-color: rgb(30 64 175 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-800\/80 {
  --tw-shadow-color: rgb(30 64 175 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-800\/85 {
  --tw-shadow-color: rgb(30 64 175 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-800\/90 {
  --tw-shadow-color: rgb(30 64 175 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-800\/95 {
  --tw-shadow-color: rgb(30 64 175 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-900 {
  --tw-shadow-color: #1e3a8a;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-900\/0 {
  --tw-shadow-color: rgb(30 58 138 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-900\/10 {
  --tw-shadow-color: rgb(30 58 138 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-900\/100 {
  --tw-shadow-color: rgb(30 58 138 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-900\/15 {
  --tw-shadow-color: rgb(30 58 138 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-900\/20 {
  --tw-shadow-color: rgb(30 58 138 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-900\/25 {
  --tw-shadow-color: rgb(30 58 138 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-900\/30 {
  --tw-shadow-color: rgb(30 58 138 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-900\/35 {
  --tw-shadow-color: rgb(30 58 138 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-900\/40 {
  --tw-shadow-color: rgb(30 58 138 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-900\/45 {
  --tw-shadow-color: rgb(30 58 138 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-900\/5 {
  --tw-shadow-color: rgb(30 58 138 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-900\/50 {
  --tw-shadow-color: rgb(30 58 138 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-900\/55 {
  --tw-shadow-color: rgb(30 58 138 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-900\/60 {
  --tw-shadow-color: rgb(30 58 138 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-900\/65 {
  --tw-shadow-color: rgb(30 58 138 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-900\/70 {
  --tw-shadow-color: rgb(30 58 138 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-900\/75 {
  --tw-shadow-color: rgb(30 58 138 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-900\/80 {
  --tw-shadow-color: rgb(30 58 138 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-900\/85 {
  --tw-shadow-color: rgb(30 58 138 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-900\/90 {
  --tw-shadow-color: rgb(30 58 138 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-900\/95 {
  --tw-shadow-color: rgb(30 58 138 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-950 {
  --tw-shadow-color: #172554;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-950\/0 {
  --tw-shadow-color: rgb(23 37 84 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-950\/10 {
  --tw-shadow-color: rgb(23 37 84 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-950\/100 {
  --tw-shadow-color: rgb(23 37 84 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-950\/15 {
  --tw-shadow-color: rgb(23 37 84 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-950\/20 {
  --tw-shadow-color: rgb(23 37 84 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-950\/25 {
  --tw-shadow-color: rgb(23 37 84 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-950\/30 {
  --tw-shadow-color: rgb(23 37 84 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-950\/35 {
  --tw-shadow-color: rgb(23 37 84 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-950\/40 {
  --tw-shadow-color: rgb(23 37 84 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-950\/45 {
  --tw-shadow-color: rgb(23 37 84 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-950\/5 {
  --tw-shadow-color: rgb(23 37 84 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-950\/50 {
  --tw-shadow-color: rgb(23 37 84 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-950\/55 {
  --tw-shadow-color: rgb(23 37 84 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-950\/60 {
  --tw-shadow-color: rgb(23 37 84 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-950\/65 {
  --tw-shadow-color: rgb(23 37 84 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-950\/70 {
  --tw-shadow-color: rgb(23 37 84 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-950\/75 {
  --tw-shadow-color: rgb(23 37 84 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-950\/80 {
  --tw-shadow-color: rgb(23 37 84 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-950\/85 {
  --tw-shadow-color: rgb(23 37 84 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-950\/90 {
  --tw-shadow-color: rgb(23 37 84 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-950\/95 {
  --tw-shadow-color: rgb(23 37 84 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-current {
  --tw-shadow-color: currentColor;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue {
  --tw-shadow-color: #1A213E;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-appt {
  --tw-shadow-color: rgba(52, 137, 207);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-appt\/0 {
  --tw-shadow-color: rgba(52, 137, 207, 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-appt\/10 {
  --tw-shadow-color: rgba(52, 137, 207, 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-appt\/100 {
  --tw-shadow-color: rgba(52, 137, 207, 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-appt\/15 {
  --tw-shadow-color: rgba(52, 137, 207, 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-appt\/20 {
  --tw-shadow-color: rgba(52, 137, 207, 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-appt\/25 {
  --tw-shadow-color: rgba(52, 137, 207, 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-appt\/30 {
  --tw-shadow-color: rgba(52, 137, 207, 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-appt\/35 {
  --tw-shadow-color: rgba(52, 137, 207, 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-appt\/40 {
  --tw-shadow-color: rgba(52, 137, 207, 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-appt\/45 {
  --tw-shadow-color: rgba(52, 137, 207, 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-appt\/5 {
  --tw-shadow-color: rgba(52, 137, 207, 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-appt\/50 {
  --tw-shadow-color: rgba(52, 137, 207, 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-appt\/55 {
  --tw-shadow-color: rgba(52, 137, 207, 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-appt\/60 {
  --tw-shadow-color: rgba(52, 137, 207, 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-appt\/65 {
  --tw-shadow-color: rgba(52, 137, 207, 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-appt\/70 {
  --tw-shadow-color: rgba(52, 137, 207, 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-appt\/75 {
  --tw-shadow-color: rgba(52, 137, 207, 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-appt\/80 {
  --tw-shadow-color: rgba(52, 137, 207, 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-appt\/85 {
  --tw-shadow-color: rgba(52, 137, 207, 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-appt\/90 {
  --tw-shadow-color: rgba(52, 137, 207, 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-appt\/95 {
  --tw-shadow-color: rgba(52, 137, 207, 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-gray {
  --tw-shadow-color: #75798b;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-gray\/0 {
  --tw-shadow-color: rgb(117 121 139 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-gray\/10 {
  --tw-shadow-color: rgb(117 121 139 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-gray\/100 {
  --tw-shadow-color: rgb(117 121 139 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-gray\/15 {
  --tw-shadow-color: rgb(117 121 139 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-gray\/20 {
  --tw-shadow-color: rgb(117 121 139 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-gray\/25 {
  --tw-shadow-color: rgb(117 121 139 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-gray\/30 {
  --tw-shadow-color: rgb(117 121 139 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-gray\/35 {
  --tw-shadow-color: rgb(117 121 139 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-gray\/40 {
  --tw-shadow-color: rgb(117 121 139 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-gray\/45 {
  --tw-shadow-color: rgb(117 121 139 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-gray\/5 {
  --tw-shadow-color: rgb(117 121 139 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-gray\/50 {
  --tw-shadow-color: rgb(117 121 139 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-gray\/55 {
  --tw-shadow-color: rgb(117 121 139 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-gray\/60 {
  --tw-shadow-color: rgb(117 121 139 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-gray\/65 {
  --tw-shadow-color: rgb(117 121 139 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-gray\/70 {
  --tw-shadow-color: rgb(117 121 139 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-gray\/75 {
  --tw-shadow-color: rgb(117 121 139 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-gray\/80 {
  --tw-shadow-color: rgb(117 121 139 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-gray\/85 {
  --tw-shadow-color: rgb(117 121 139 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-gray\/90 {
  --tw-shadow-color: rgb(117 121 139 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-gray\/95 {
  --tw-shadow-color: rgb(117 121 139 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-hv {
  --tw-shadow-color: #0f121f;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-hv\/0 {
  --tw-shadow-color: rgb(15 18 31 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-hv\/10 {
  --tw-shadow-color: rgb(15 18 31 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-hv\/100 {
  --tw-shadow-color: rgb(15 18 31 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-hv\/15 {
  --tw-shadow-color: rgb(15 18 31 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-hv\/20 {
  --tw-shadow-color: rgb(15 18 31 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-hv\/25 {
  --tw-shadow-color: rgb(15 18 31 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-hv\/30 {
  --tw-shadow-color: rgb(15 18 31 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-hv\/35 {
  --tw-shadow-color: rgb(15 18 31 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-hv\/40 {
  --tw-shadow-color: rgb(15 18 31 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-hv\/45 {
  --tw-shadow-color: rgb(15 18 31 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-hv\/5 {
  --tw-shadow-color: rgb(15 18 31 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-hv\/50 {
  --tw-shadow-color: rgb(15 18 31 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-hv\/55 {
  --tw-shadow-color: rgb(15 18 31 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-hv\/60 {
  --tw-shadow-color: rgb(15 18 31 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-hv\/65 {
  --tw-shadow-color: rgb(15 18 31 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-hv\/70 {
  --tw-shadow-color: rgb(15 18 31 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-hv\/75 {
  --tw-shadow-color: rgb(15 18 31 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-hv\/80 {
  --tw-shadow-color: rgb(15 18 31 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-hv\/85 {
  --tw-shadow-color: rgb(15 18 31 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-hv\/90 {
  --tw-shadow-color: rgb(15 18 31 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-hv\/95 {
  --tw-shadow-color: rgb(15 18 31 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light {
  --tw-shadow-color: #303851;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light-hv {
  --tw-shadow-color: rgba(17,20,30,.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light-hv\/0 {
  --tw-shadow-color: rgba(17, 20, 30, 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light-hv\/10 {
  --tw-shadow-color: rgba(17, 20, 30, 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light-hv\/100 {
  --tw-shadow-color: rgba(17, 20, 30, 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light-hv\/15 {
  --tw-shadow-color: rgba(17, 20, 30, 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light-hv\/20 {
  --tw-shadow-color: rgba(17, 20, 30, 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light-hv\/25 {
  --tw-shadow-color: rgba(17, 20, 30, 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light-hv\/30 {
  --tw-shadow-color: rgba(17, 20, 30, 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light-hv\/35 {
  --tw-shadow-color: rgba(17, 20, 30, 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light-hv\/40 {
  --tw-shadow-color: rgba(17, 20, 30, 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light-hv\/45 {
  --tw-shadow-color: rgba(17, 20, 30, 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light-hv\/5 {
  --tw-shadow-color: rgba(17, 20, 30, 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light-hv\/50 {
  --tw-shadow-color: rgba(17, 20, 30, 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light-hv\/55 {
  --tw-shadow-color: rgba(17, 20, 30, 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light-hv\/60 {
  --tw-shadow-color: rgba(17, 20, 30, 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light-hv\/65 {
  --tw-shadow-color: rgba(17, 20, 30, 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light-hv\/70 {
  --tw-shadow-color: rgba(17, 20, 30, 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light-hv\/75 {
  --tw-shadow-color: rgba(17, 20, 30, 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light-hv\/80 {
  --tw-shadow-color: rgba(17, 20, 30, 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light-hv\/85 {
  --tw-shadow-color: rgba(17, 20, 30, 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light-hv\/90 {
  --tw-shadow-color: rgba(17, 20, 30, 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light-hv\/95 {
  --tw-shadow-color: rgba(17, 20, 30, 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light\/0 {
  --tw-shadow-color: rgb(48 56 81 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light\/10 {
  --tw-shadow-color: rgb(48 56 81 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light\/100 {
  --tw-shadow-color: rgb(48 56 81 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light\/15 {
  --tw-shadow-color: rgb(48 56 81 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light\/20 {
  --tw-shadow-color: rgb(48 56 81 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light\/25 {
  --tw-shadow-color: rgb(48 56 81 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light\/30 {
  --tw-shadow-color: rgb(48 56 81 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light\/35 {
  --tw-shadow-color: rgb(48 56 81 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light\/40 {
  --tw-shadow-color: rgb(48 56 81 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light\/45 {
  --tw-shadow-color: rgb(48 56 81 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light\/5 {
  --tw-shadow-color: rgb(48 56 81 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light\/50 {
  --tw-shadow-color: rgb(48 56 81 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light\/55 {
  --tw-shadow-color: rgb(48 56 81 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light\/60 {
  --tw-shadow-color: rgb(48 56 81 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light\/65 {
  --tw-shadow-color: rgb(48 56 81 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light\/70 {
  --tw-shadow-color: rgb(48 56 81 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light\/75 {
  --tw-shadow-color: rgb(48 56 81 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light\/80 {
  --tw-shadow-color: rgb(48 56 81 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light\/85 {
  --tw-shadow-color: rgb(48 56 81 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light\/90 {
  --tw-shadow-color: rgb(48 56 81 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue-light\/95 {
  --tw-shadow-color: rgb(48 56 81 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue\/0 {
  --tw-shadow-color: rgb(26 33 62 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue\/10 {
  --tw-shadow-color: rgb(26 33 62 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue\/100 {
  --tw-shadow-color: rgb(26 33 62 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue\/15 {
  --tw-shadow-color: rgb(26 33 62 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue\/20 {
  --tw-shadow-color: rgb(26 33 62 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue\/25 {
  --tw-shadow-color: rgb(26 33 62 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue\/30 {
  --tw-shadow-color: rgb(26 33 62 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue\/35 {
  --tw-shadow-color: rgb(26 33 62 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue\/40 {
  --tw-shadow-color: rgb(26 33 62 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue\/45 {
  --tw-shadow-color: rgb(26 33 62 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue\/5 {
  --tw-shadow-color: rgb(26 33 62 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue\/50 {
  --tw-shadow-color: rgb(26 33 62 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue\/55 {
  --tw-shadow-color: rgb(26 33 62 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue\/60 {
  --tw-shadow-color: rgb(26 33 62 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue\/65 {
  --tw-shadow-color: rgb(26 33 62 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue\/70 {
  --tw-shadow-color: rgb(26 33 62 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue\/75 {
  --tw-shadow-color: rgb(26 33 62 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue\/80 {
  --tw-shadow-color: rgb(26 33 62 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue\/85 {
  --tw-shadow-color: rgb(26 33 62 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue\/90 {
  --tw-shadow-color: rgb(26 33 62 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-blue\/95 {
  --tw-shadow-color: rgb(26 33 62 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-brown-appt {
  --tw-shadow-color: rgba(99, 93, 94, 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-brown-appt\/0 {
  --tw-shadow-color: rgba(99, 93, 94, 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-brown-appt\/10 {
  --tw-shadow-color: rgba(99, 93, 94, 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-brown-appt\/100 {
  --tw-shadow-color: rgba(99, 93, 94, 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-brown-appt\/15 {
  --tw-shadow-color: rgba(99, 93, 94, 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-brown-appt\/20 {
  --tw-shadow-color: rgba(99, 93, 94, 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-brown-appt\/25 {
  --tw-shadow-color: rgba(99, 93, 94, 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-brown-appt\/30 {
  --tw-shadow-color: rgba(99, 93, 94, 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-brown-appt\/35 {
  --tw-shadow-color: rgba(99, 93, 94, 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-brown-appt\/40 {
  --tw-shadow-color: rgba(99, 93, 94, 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-brown-appt\/45 {
  --tw-shadow-color: rgba(99, 93, 94, 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-brown-appt\/5 {
  --tw-shadow-color: rgba(99, 93, 94, 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-brown-appt\/50 {
  --tw-shadow-color: rgba(99, 93, 94, 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-brown-appt\/55 {
  --tw-shadow-color: rgba(99, 93, 94, 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-brown-appt\/60 {
  --tw-shadow-color: rgba(99, 93, 94, 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-brown-appt\/65 {
  --tw-shadow-color: rgba(99, 93, 94, 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-brown-appt\/70 {
  --tw-shadow-color: rgba(99, 93, 94, 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-brown-appt\/75 {
  --tw-shadow-color: rgba(99, 93, 94, 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-brown-appt\/80 {
  --tw-shadow-color: rgba(99, 93, 94, 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-brown-appt\/85 {
  --tw-shadow-color: rgba(99, 93, 94, 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-brown-appt\/90 {
  --tw-shadow-color: rgba(99, 93, 94, 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-brown-appt\/95 {
  --tw-shadow-color: rgba(99, 93, 94, 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-green-appt {
  --tw-shadow-color: rgba(102, 188, 130, 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-green-appt\/0 {
  --tw-shadow-color: rgba(102, 188, 130, 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-green-appt\/10 {
  --tw-shadow-color: rgba(102, 188, 130, 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-green-appt\/100 {
  --tw-shadow-color: rgba(102, 188, 130, 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-green-appt\/15 {
  --tw-shadow-color: rgba(102, 188, 130, 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-green-appt\/20 {
  --tw-shadow-color: rgba(102, 188, 130, 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-green-appt\/25 {
  --tw-shadow-color: rgba(102, 188, 130, 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-green-appt\/30 {
  --tw-shadow-color: rgba(102, 188, 130, 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-green-appt\/35 {
  --tw-shadow-color: rgba(102, 188, 130, 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-green-appt\/40 {
  --tw-shadow-color: rgba(102, 188, 130, 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-green-appt\/45 {
  --tw-shadow-color: rgba(102, 188, 130, 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-green-appt\/5 {
  --tw-shadow-color: rgba(102, 188, 130, 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-green-appt\/50 {
  --tw-shadow-color: rgba(102, 188, 130, 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-green-appt\/55 {
  --tw-shadow-color: rgba(102, 188, 130, 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-green-appt\/60 {
  --tw-shadow-color: rgba(102, 188, 130, 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-green-appt\/65 {
  --tw-shadow-color: rgba(102, 188, 130, 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-green-appt\/70 {
  --tw-shadow-color: rgba(102, 188, 130, 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-green-appt\/75 {
  --tw-shadow-color: rgba(102, 188, 130, 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-green-appt\/80 {
  --tw-shadow-color: rgba(102, 188, 130, 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-green-appt\/85 {
  --tw-shadow-color: rgba(102, 188, 130, 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-green-appt\/90 {
  --tw-shadow-color: rgba(102, 188, 130, 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-green-appt\/95 {
  --tw-shadow-color: rgba(102, 188, 130, 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-red-appt {
  --tw-shadow-color: rgba(198, 102, 94, 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-red-appt\/0 {
  --tw-shadow-color: rgba(198, 102, 94, 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-red-appt\/10 {
  --tw-shadow-color: rgba(198, 102, 94, 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-red-appt\/100 {
  --tw-shadow-color: rgba(198, 102, 94, 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-red-appt\/15 {
  --tw-shadow-color: rgba(198, 102, 94, 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-red-appt\/20 {
  --tw-shadow-color: rgba(198, 102, 94, 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-red-appt\/25 {
  --tw-shadow-color: rgba(198, 102, 94, 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-red-appt\/30 {
  --tw-shadow-color: rgba(198, 102, 94, 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-red-appt\/35 {
  --tw-shadow-color: rgba(198, 102, 94, 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-red-appt\/40 {
  --tw-shadow-color: rgba(198, 102, 94, 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-red-appt\/45 {
  --tw-shadow-color: rgba(198, 102, 94, 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-red-appt\/5 {
  --tw-shadow-color: rgba(198, 102, 94, 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-red-appt\/50 {
  --tw-shadow-color: rgba(198, 102, 94, 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-red-appt\/55 {
  --tw-shadow-color: rgba(198, 102, 94, 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-red-appt\/60 {
  --tw-shadow-color: rgba(198, 102, 94, 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-red-appt\/65 {
  --tw-shadow-color: rgba(198, 102, 94, 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-red-appt\/70 {
  --tw-shadow-color: rgba(198, 102, 94, 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-red-appt\/75 {
  --tw-shadow-color: rgba(198, 102, 94, 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-red-appt\/80 {
  --tw-shadow-color: rgba(198, 102, 94, 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-red-appt\/85 {
  --tw-shadow-color: rgba(198, 102, 94, 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-red-appt\/90 {
  --tw-shadow-color: rgba(198, 102, 94, 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-dark-red-appt\/95 {
  --tw-shadow-color: rgba(198, 102, 94, 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green {
  --tw-shadow-color: #49B5A8;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-appt {
  --tw-shadow-color: rgba(128, 215, 109);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-appt\/0 {
  --tw-shadow-color: rgba(128, 215, 109, 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-appt\/10 {
  --tw-shadow-color: rgba(128, 215, 109, 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-appt\/100 {
  --tw-shadow-color: rgba(128, 215, 109, 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-appt\/15 {
  --tw-shadow-color: rgba(128, 215, 109, 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-appt\/20 {
  --tw-shadow-color: rgba(128, 215, 109, 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-appt\/25 {
  --tw-shadow-color: rgba(128, 215, 109, 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-appt\/30 {
  --tw-shadow-color: rgba(128, 215, 109, 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-appt\/35 {
  --tw-shadow-color: rgba(128, 215, 109, 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-appt\/40 {
  --tw-shadow-color: rgba(128, 215, 109, 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-appt\/45 {
  --tw-shadow-color: rgba(128, 215, 109, 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-appt\/5 {
  --tw-shadow-color: rgba(128, 215, 109, 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-appt\/50 {
  --tw-shadow-color: rgba(128, 215, 109, 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-appt\/55 {
  --tw-shadow-color: rgba(128, 215, 109, 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-appt\/60 {
  --tw-shadow-color: rgba(128, 215, 109, 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-appt\/65 {
  --tw-shadow-color: rgba(128, 215, 109, 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-appt\/70 {
  --tw-shadow-color: rgba(128, 215, 109, 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-appt\/75 {
  --tw-shadow-color: rgba(128, 215, 109, 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-appt\/80 {
  --tw-shadow-color: rgba(128, 215, 109, 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-appt\/85 {
  --tw-shadow-color: rgba(128, 215, 109, 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-appt\/90 {
  --tw-shadow-color: rgba(128, 215, 109, 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-appt\/95 {
  --tw-shadow-color: rgba(128, 215, 109, 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-brown-appt {
  --tw-shadow-color: rgba(197, 191, 140, 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-brown-appt\/0 {
  --tw-shadow-color: rgba(197, 191, 140, 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-brown-appt\/10 {
  --tw-shadow-color: rgba(197, 191, 140, 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-brown-appt\/100 {
  --tw-shadow-color: rgba(197, 191, 140, 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-brown-appt\/15 {
  --tw-shadow-color: rgba(197, 191, 140, 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-brown-appt\/20 {
  --tw-shadow-color: rgba(197, 191, 140, 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-brown-appt\/25 {
  --tw-shadow-color: rgba(197, 191, 140, 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-brown-appt\/30 {
  --tw-shadow-color: rgba(197, 191, 140, 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-brown-appt\/35 {
  --tw-shadow-color: rgba(197, 191, 140, 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-brown-appt\/40 {
  --tw-shadow-color: rgba(197, 191, 140, 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-brown-appt\/45 {
  --tw-shadow-color: rgba(197, 191, 140, 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-brown-appt\/5 {
  --tw-shadow-color: rgba(197, 191, 140, 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-brown-appt\/50 {
  --tw-shadow-color: rgba(197, 191, 140, 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-brown-appt\/55 {
  --tw-shadow-color: rgba(197, 191, 140, 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-brown-appt\/60 {
  --tw-shadow-color: rgba(197, 191, 140, 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-brown-appt\/65 {
  --tw-shadow-color: rgba(197, 191, 140, 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-brown-appt\/70 {
  --tw-shadow-color: rgba(197, 191, 140, 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-brown-appt\/75 {
  --tw-shadow-color: rgba(197, 191, 140, 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-brown-appt\/80 {
  --tw-shadow-color: rgba(197, 191, 140, 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-brown-appt\/85 {
  --tw-shadow-color: rgba(197, 191, 140, 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-brown-appt\/90 {
  --tw-shadow-color: rgba(197, 191, 140, 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-brown-appt\/95 {
  --tw-shadow-color: rgba(197, 191, 140, 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-hv {
  --tw-shadow-color: #3f9c90;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-hv\/0 {
  --tw-shadow-color: rgb(63 156 144 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-hv\/10 {
  --tw-shadow-color: rgb(63 156 144 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-hv\/100 {
  --tw-shadow-color: rgb(63 156 144 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-hv\/15 {
  --tw-shadow-color: rgb(63 156 144 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-hv\/20 {
  --tw-shadow-color: rgb(63 156 144 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-hv\/25 {
  --tw-shadow-color: rgb(63 156 144 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-hv\/30 {
  --tw-shadow-color: rgb(63 156 144 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-hv\/35 {
  --tw-shadow-color: rgb(63 156 144 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-hv\/40 {
  --tw-shadow-color: rgb(63 156 144 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-hv\/45 {
  --tw-shadow-color: rgb(63 156 144 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-hv\/5 {
  --tw-shadow-color: rgb(63 156 144 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-hv\/50 {
  --tw-shadow-color: rgb(63 156 144 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-hv\/55 {
  --tw-shadow-color: rgb(63 156 144 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-hv\/60 {
  --tw-shadow-color: rgb(63 156 144 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-hv\/65 {
  --tw-shadow-color: rgb(63 156 144 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-hv\/70 {
  --tw-shadow-color: rgb(63 156 144 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-hv\/75 {
  --tw-shadow-color: rgb(63 156 144 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-hv\/80 {
  --tw-shadow-color: rgb(63 156 144 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-hv\/85 {
  --tw-shadow-color: rgb(63 156 144 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-hv\/90 {
  --tw-shadow-color: rgb(63 156 144 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green-hv\/95 {
  --tw-shadow-color: rgb(63 156 144 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green\/0 {
  --tw-shadow-color: rgb(73 181 168 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green\/10 {
  --tw-shadow-color: rgb(73 181 168 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green\/100 {
  --tw-shadow-color: rgb(73 181 168 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green\/15 {
  --tw-shadow-color: rgb(73 181 168 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green\/20 {
  --tw-shadow-color: rgb(73 181 168 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green\/25 {
  --tw-shadow-color: rgb(73 181 168 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green\/30 {
  --tw-shadow-color: rgb(73 181 168 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green\/35 {
  --tw-shadow-color: rgb(73 181 168 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green\/40 {
  --tw-shadow-color: rgb(73 181 168 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green\/45 {
  --tw-shadow-color: rgb(73 181 168 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green\/5 {
  --tw-shadow-color: rgb(73 181 168 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green\/50 {
  --tw-shadow-color: rgb(73 181 168 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green\/55 {
  --tw-shadow-color: rgb(73 181 168 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green\/60 {
  --tw-shadow-color: rgb(73 181 168 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green\/65 {
  --tw-shadow-color: rgb(73 181 168 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green\/70 {
  --tw-shadow-color: rgb(73 181 168 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green\/75 {
  --tw-shadow-color: rgb(73 181 168 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green\/80 {
  --tw-shadow-color: rgb(73 181 168 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green\/85 {
  --tw-shadow-color: rgb(73 181 168 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green\/90 {
  --tw-shadow-color: rgb(73 181 168 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-green\/95 {
  --tw-shadow-color: rgb(73 181 168 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-lavender-appt {
  --tw-shadow-color: rgba(169, 124, 165, 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-lavender-appt\/0 {
  --tw-shadow-color: rgba(169, 124, 165, 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-lavender-appt\/10 {
  --tw-shadow-color: rgba(169, 124, 165, 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-lavender-appt\/100 {
  --tw-shadow-color: rgba(169, 124, 165, 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-lavender-appt\/15 {
  --tw-shadow-color: rgba(169, 124, 165, 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-lavender-appt\/20 {
  --tw-shadow-color: rgba(169, 124, 165, 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-lavender-appt\/25 {
  --tw-shadow-color: rgba(169, 124, 165, 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-lavender-appt\/30 {
  --tw-shadow-color: rgba(169, 124, 165, 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-lavender-appt\/35 {
  --tw-shadow-color: rgba(169, 124, 165, 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-lavender-appt\/40 {
  --tw-shadow-color: rgba(169, 124, 165, 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-lavender-appt\/45 {
  --tw-shadow-color: rgba(169, 124, 165, 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-lavender-appt\/5 {
  --tw-shadow-color: rgba(169, 124, 165, 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-lavender-appt\/50 {
  --tw-shadow-color: rgba(169, 124, 165, 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-lavender-appt\/55 {
  --tw-shadow-color: rgba(169, 124, 165, 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-lavender-appt\/60 {
  --tw-shadow-color: rgba(169, 124, 165, 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-lavender-appt\/65 {
  --tw-shadow-color: rgba(169, 124, 165, 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-lavender-appt\/70 {
  --tw-shadow-color: rgba(169, 124, 165, 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-lavender-appt\/75 {
  --tw-shadow-color: rgba(169, 124, 165, 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-lavender-appt\/80 {
  --tw-shadow-color: rgba(169, 124, 165, 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-lavender-appt\/85 {
  --tw-shadow-color: rgba(169, 124, 165, 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-lavender-appt\/90 {
  --tw-shadow-color: rgba(169, 124, 165, 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-lavender-appt\/95 {
  --tw-shadow-color: rgba(169, 124, 165, 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-magenta-appt {
  --tw-shadow-color: rgba(223, 91, 146, 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-magenta-appt\/0 {
  --tw-shadow-color: rgba(223, 91, 146, 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-magenta-appt\/10 {
  --tw-shadow-color: rgba(223, 91, 146, 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-magenta-appt\/100 {
  --tw-shadow-color: rgba(223, 91, 146, 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-magenta-appt\/15 {
  --tw-shadow-color: rgba(223, 91, 146, 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-magenta-appt\/20 {
  --tw-shadow-color: rgba(223, 91, 146, 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-magenta-appt\/25 {
  --tw-shadow-color: rgba(223, 91, 146, 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-magenta-appt\/30 {
  --tw-shadow-color: rgba(223, 91, 146, 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-magenta-appt\/35 {
  --tw-shadow-color: rgba(223, 91, 146, 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-magenta-appt\/40 {
  --tw-shadow-color: rgba(223, 91, 146, 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-magenta-appt\/45 {
  --tw-shadow-color: rgba(223, 91, 146, 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-magenta-appt\/5 {
  --tw-shadow-color: rgba(223, 91, 146, 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-magenta-appt\/50 {
  --tw-shadow-color: rgba(223, 91, 146, 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-magenta-appt\/55 {
  --tw-shadow-color: rgba(223, 91, 146, 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-magenta-appt\/60 {
  --tw-shadow-color: rgba(223, 91, 146, 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-magenta-appt\/65 {
  --tw-shadow-color: rgba(223, 91, 146, 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-magenta-appt\/70 {
  --tw-shadow-color: rgba(223, 91, 146, 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-magenta-appt\/75 {
  --tw-shadow-color: rgba(223, 91, 146, 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-magenta-appt\/80 {
  --tw-shadow-color: rgba(223, 91, 146, 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-magenta-appt\/85 {
  --tw-shadow-color: rgba(223, 91, 146, 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-magenta-appt\/90 {
  --tw-shadow-color: rgba(223, 91, 146, 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-magenta-appt\/95 {
  --tw-shadow-color: rgba(223, 91, 146, 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-orange-appt {
  --tw-shadow-color: rgba(232, 176, 99, 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-orange-appt\/0 {
  --tw-shadow-color: rgba(232, 176, 99, 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-orange-appt\/10 {
  --tw-shadow-color: rgba(232, 176, 99, 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-orange-appt\/100 {
  --tw-shadow-color: rgba(232, 176, 99, 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-orange-appt\/15 {
  --tw-shadow-color: rgba(232, 176, 99, 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-orange-appt\/20 {
  --tw-shadow-color: rgba(232, 176, 99, 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-orange-appt\/25 {
  --tw-shadow-color: rgba(232, 176, 99, 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-orange-appt\/30 {
  --tw-shadow-color: rgba(232, 176, 99, 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-orange-appt\/35 {
  --tw-shadow-color: rgba(232, 176, 99, 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-orange-appt\/40 {
  --tw-shadow-color: rgba(232, 176, 99, 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-orange-appt\/45 {
  --tw-shadow-color: rgba(232, 176, 99, 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-orange-appt\/5 {
  --tw-shadow-color: rgba(232, 176, 99, 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-orange-appt\/50 {
  --tw-shadow-color: rgba(232, 176, 99, 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-orange-appt\/55 {
  --tw-shadow-color: rgba(232, 176, 99, 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-orange-appt\/60 {
  --tw-shadow-color: rgba(232, 176, 99, 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-orange-appt\/65 {
  --tw-shadow-color: rgba(232, 176, 99, 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-orange-appt\/70 {
  --tw-shadow-color: rgba(232, 176, 99, 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-orange-appt\/75 {
  --tw-shadow-color: rgba(232, 176, 99, 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-orange-appt\/80 {
  --tw-shadow-color: rgba(232, 176, 99, 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-orange-appt\/85 {
  --tw-shadow-color: rgba(232, 176, 99, 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-orange-appt\/90 {
  --tw-shadow-color: rgba(232, 176, 99, 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-orange-appt\/95 {
  --tw-shadow-color: rgba(232, 176, 99, 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-purple-appt {
  --tw-shadow-color: rgba(125, 117, 164, 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-purple-appt\/0 {
  --tw-shadow-color: rgba(125, 117, 164, 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-purple-appt\/10 {
  --tw-shadow-color: rgba(125, 117, 164, 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-purple-appt\/100 {
  --tw-shadow-color: rgba(125, 117, 164, 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-purple-appt\/15 {
  --tw-shadow-color: rgba(125, 117, 164, 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-purple-appt\/20 {
  --tw-shadow-color: rgba(125, 117, 164, 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-purple-appt\/25 {
  --tw-shadow-color: rgba(125, 117, 164, 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-purple-appt\/30 {
  --tw-shadow-color: rgba(125, 117, 164, 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-purple-appt\/35 {
  --tw-shadow-color: rgba(125, 117, 164, 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-purple-appt\/40 {
  --tw-shadow-color: rgba(125, 117, 164, 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-purple-appt\/45 {
  --tw-shadow-color: rgba(125, 117, 164, 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-purple-appt\/5 {
  --tw-shadow-color: rgba(125, 117, 164, 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-purple-appt\/50 {
  --tw-shadow-color: rgba(125, 117, 164, 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-purple-appt\/55 {
  --tw-shadow-color: rgba(125, 117, 164, 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-purple-appt\/60 {
  --tw-shadow-color: rgba(125, 117, 164, 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-purple-appt\/65 {
  --tw-shadow-color: rgba(125, 117, 164, 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-purple-appt\/70 {
  --tw-shadow-color: rgba(125, 117, 164, 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-purple-appt\/75 {
  --tw-shadow-color: rgba(125, 117, 164, 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-purple-appt\/80 {
  --tw-shadow-color: rgba(125, 117, 164, 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-purple-appt\/85 {
  --tw-shadow-color: rgba(125, 117, 164, 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-purple-appt\/90 {
  --tw-shadow-color: rgba(125, 117, 164, 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-purple-appt\/95 {
  --tw-shadow-color: rgba(125, 117, 164, 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red {
  --tw-shadow-color: #EA6565;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-appt {
  --tw-shadow-color: rgba(243, 63, 77, 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-appt\/0 {
  --tw-shadow-color: rgba(243, 63, 77, 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-appt\/10 {
  --tw-shadow-color: rgba(243, 63, 77, 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-appt\/100 {
  --tw-shadow-color: rgba(243, 63, 77, 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-appt\/15 {
  --tw-shadow-color: rgba(243, 63, 77, 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-appt\/20 {
  --tw-shadow-color: rgba(243, 63, 77, 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-appt\/25 {
  --tw-shadow-color: rgba(243, 63, 77, 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-appt\/30 {
  --tw-shadow-color: rgba(243, 63, 77, 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-appt\/35 {
  --tw-shadow-color: rgba(243, 63, 77, 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-appt\/40 {
  --tw-shadow-color: rgba(243, 63, 77, 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-appt\/45 {
  --tw-shadow-color: rgba(243, 63, 77, 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-appt\/5 {
  --tw-shadow-color: rgba(243, 63, 77, 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-appt\/50 {
  --tw-shadow-color: rgba(243, 63, 77, 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-appt\/55 {
  --tw-shadow-color: rgba(243, 63, 77, 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-appt\/60 {
  --tw-shadow-color: rgba(243, 63, 77, 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-appt\/65 {
  --tw-shadow-color: rgba(243, 63, 77, 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-appt\/70 {
  --tw-shadow-color: rgba(243, 63, 77, 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-appt\/75 {
  --tw-shadow-color: rgba(243, 63, 77, 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-appt\/80 {
  --tw-shadow-color: rgba(243, 63, 77, 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-appt\/85 {
  --tw-shadow-color: rgba(243, 63, 77, 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-appt\/90 {
  --tw-shadow-color: rgba(243, 63, 77, 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-appt\/95 {
  --tw-shadow-color: rgba(243, 63, 77, 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-orange-appt {
  --tw-shadow-color: rgba(217, 154, 118, 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-orange-appt\/0 {
  --tw-shadow-color: rgba(217, 154, 118, 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-orange-appt\/10 {
  --tw-shadow-color: rgba(217, 154, 118, 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-orange-appt\/100 {
  --tw-shadow-color: rgba(217, 154, 118, 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-orange-appt\/15 {
  --tw-shadow-color: rgba(217, 154, 118, 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-orange-appt\/20 {
  --tw-shadow-color: rgba(217, 154, 118, 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-orange-appt\/25 {
  --tw-shadow-color: rgba(217, 154, 118, 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-orange-appt\/30 {
  --tw-shadow-color: rgba(217, 154, 118, 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-orange-appt\/35 {
  --tw-shadow-color: rgba(217, 154, 118, 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-orange-appt\/40 {
  --tw-shadow-color: rgba(217, 154, 118, 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-orange-appt\/45 {
  --tw-shadow-color: rgba(217, 154, 118, 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-orange-appt\/5 {
  --tw-shadow-color: rgba(217, 154, 118, 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-orange-appt\/50 {
  --tw-shadow-color: rgba(217, 154, 118, 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-orange-appt\/55 {
  --tw-shadow-color: rgba(217, 154, 118, 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-orange-appt\/60 {
  --tw-shadow-color: rgba(217, 154, 118, 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-orange-appt\/65 {
  --tw-shadow-color: rgba(217, 154, 118, 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-orange-appt\/70 {
  --tw-shadow-color: rgba(217, 154, 118, 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-orange-appt\/75 {
  --tw-shadow-color: rgba(217, 154, 118, 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-orange-appt\/80 {
  --tw-shadow-color: rgba(217, 154, 118, 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-orange-appt\/85 {
  --tw-shadow-color: rgba(217, 154, 118, 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-orange-appt\/90 {
  --tw-shadow-color: rgba(217, 154, 118, 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red-orange-appt\/95 {
  --tw-shadow-color: rgba(217, 154, 118, 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red\/0 {
  --tw-shadow-color: rgb(234 101 101 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red\/10 {
  --tw-shadow-color: rgb(234 101 101 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red\/100 {
  --tw-shadow-color: rgb(234 101 101 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red\/15 {
  --tw-shadow-color: rgb(234 101 101 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red\/20 {
  --tw-shadow-color: rgb(234 101 101 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red\/25 {
  --tw-shadow-color: rgb(234 101 101 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red\/30 {
  --tw-shadow-color: rgb(234 101 101 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red\/35 {
  --tw-shadow-color: rgb(234 101 101 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red\/40 {
  --tw-shadow-color: rgb(234 101 101 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red\/45 {
  --tw-shadow-color: rgb(234 101 101 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red\/5 {
  --tw-shadow-color: rgb(234 101 101 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red\/50 {
  --tw-shadow-color: rgb(234 101 101 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red\/55 {
  --tw-shadow-color: rgb(234 101 101 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red\/60 {
  --tw-shadow-color: rgb(234 101 101 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red\/65 {
  --tw-shadow-color: rgb(234 101 101 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red\/70 {
  --tw-shadow-color: rgb(234 101 101 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red\/75 {
  --tw-shadow-color: rgb(234 101 101 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red\/80 {
  --tw-shadow-color: rgb(234 101 101 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red\/85 {
  --tw-shadow-color: rgb(234 101 101 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red\/90 {
  --tw-shadow-color: rgb(234 101 101 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-red\/95 {
  --tw-shadow-color: rgb(234 101 101 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-teal-appt {
  --tw-shadow-color: rgba(22, 172, 151);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-teal-appt\/0 {
  --tw-shadow-color: rgba(22, 172, 151, 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-teal-appt\/10 {
  --tw-shadow-color: rgba(22, 172, 151, 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-teal-appt\/100 {
  --tw-shadow-color: rgba(22, 172, 151, 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-teal-appt\/15 {
  --tw-shadow-color: rgba(22, 172, 151, 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-teal-appt\/20 {
  --tw-shadow-color: rgba(22, 172, 151, 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-teal-appt\/25 {
  --tw-shadow-color: rgba(22, 172, 151, 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-teal-appt\/30 {
  --tw-shadow-color: rgba(22, 172, 151, 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-teal-appt\/35 {
  --tw-shadow-color: rgba(22, 172, 151, 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-teal-appt\/40 {
  --tw-shadow-color: rgba(22, 172, 151, 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-teal-appt\/45 {
  --tw-shadow-color: rgba(22, 172, 151, 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-teal-appt\/5 {
  --tw-shadow-color: rgba(22, 172, 151, 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-teal-appt\/50 {
  --tw-shadow-color: rgba(22, 172, 151, 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-teal-appt\/55 {
  --tw-shadow-color: rgba(22, 172, 151, 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-teal-appt\/60 {
  --tw-shadow-color: rgba(22, 172, 151, 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-teal-appt\/65 {
  --tw-shadow-color: rgba(22, 172, 151, 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-teal-appt\/70 {
  --tw-shadow-color: rgba(22, 172, 151, 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-teal-appt\/75 {
  --tw-shadow-color: rgba(22, 172, 151, 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-teal-appt\/80 {
  --tw-shadow-color: rgba(22, 172, 151, 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-teal-appt\/85 {
  --tw-shadow-color: rgba(22, 172, 151, 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-teal-appt\/90 {
  --tw-shadow-color: rgba(22, 172, 151, 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-teal-appt\/95 {
  --tw-shadow-color: rgba(22, 172, 151, 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow {
  --tw-shadow-color: #E9B362;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow-appt {
  --tw-shadow-color: rgba(240, 226, 0, 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow-appt\/0 {
  --tw-shadow-color: rgba(240, 226, 0, 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow-appt\/10 {
  --tw-shadow-color: rgba(240, 226, 0, 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow-appt\/100 {
  --tw-shadow-color: rgba(240, 226, 0, 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow-appt\/15 {
  --tw-shadow-color: rgba(240, 226, 0, 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow-appt\/20 {
  --tw-shadow-color: rgba(240, 226, 0, 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow-appt\/25 {
  --tw-shadow-color: rgba(240, 226, 0, 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow-appt\/30 {
  --tw-shadow-color: rgba(240, 226, 0, 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow-appt\/35 {
  --tw-shadow-color: rgba(240, 226, 0, 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow-appt\/40 {
  --tw-shadow-color: rgba(240, 226, 0, 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow-appt\/45 {
  --tw-shadow-color: rgba(240, 226, 0, 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow-appt\/5 {
  --tw-shadow-color: rgba(240, 226, 0, 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow-appt\/50 {
  --tw-shadow-color: rgba(240, 226, 0, 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow-appt\/55 {
  --tw-shadow-color: rgba(240, 226, 0, 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow-appt\/60 {
  --tw-shadow-color: rgba(240, 226, 0, 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow-appt\/65 {
  --tw-shadow-color: rgba(240, 226, 0, 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow-appt\/70 {
  --tw-shadow-color: rgba(240, 226, 0, 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow-appt\/75 {
  --tw-shadow-color: rgba(240, 226, 0, 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow-appt\/80 {
  --tw-shadow-color: rgba(240, 226, 0, 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow-appt\/85 {
  --tw-shadow-color: rgba(240, 226, 0, 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow-appt\/90 {
  --tw-shadow-color: rgba(240, 226, 0, 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow-appt\/95 {
  --tw-shadow-color: rgba(240, 226, 0, 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow\/0 {
  --tw-shadow-color: rgb(233 179 98 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow\/10 {
  --tw-shadow-color: rgb(233 179 98 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow\/100 {
  --tw-shadow-color: rgb(233 179 98 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow\/15 {
  --tw-shadow-color: rgb(233 179 98 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow\/20 {
  --tw-shadow-color: rgb(233 179 98 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow\/25 {
  --tw-shadow-color: rgb(233 179 98 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow\/30 {
  --tw-shadow-color: rgb(233 179 98 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow\/35 {
  --tw-shadow-color: rgb(233 179 98 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow\/40 {
  --tw-shadow-color: rgb(233 179 98 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow\/45 {
  --tw-shadow-color: rgb(233 179 98 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow\/5 {
  --tw-shadow-color: rgb(233 179 98 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow\/50 {
  --tw-shadow-color: rgb(233 179 98 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow\/55 {
  --tw-shadow-color: rgb(233 179 98 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow\/60 {
  --tw-shadow-color: rgb(233 179 98 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow\/65 {
  --tw-shadow-color: rgb(233 179 98 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow\/70 {
  --tw-shadow-color: rgb(233 179 98 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow\/75 {
  --tw-shadow-color: rgb(233 179 98 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow\/80 {
  --tw-shadow-color: rgb(233 179 98 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow\/85 {
  --tw-shadow-color: rgb(233 179 98 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow\/90 {
  --tw-shadow-color: rgb(233 179 98 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-eva-yellow\/95 {
  --tw-shadow-color: rgb(233 179 98 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-100 {
  --tw-shadow-color: #f5f5f5;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-100\/0 {
  --tw-shadow-color: rgb(245 245 245 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-100\/10 {
  --tw-shadow-color: rgb(245 245 245 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-100\/100 {
  --tw-shadow-color: rgb(245 245 245 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-100\/15 {
  --tw-shadow-color: rgb(245 245 245 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-100\/20 {
  --tw-shadow-color: rgb(245 245 245 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-100\/25 {
  --tw-shadow-color: rgb(245 245 245 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-100\/30 {
  --tw-shadow-color: rgb(245 245 245 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-100\/35 {
  --tw-shadow-color: rgb(245 245 245 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-100\/40 {
  --tw-shadow-color: rgb(245 245 245 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-100\/45 {
  --tw-shadow-color: rgb(245 245 245 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-100\/5 {
  --tw-shadow-color: rgb(245 245 245 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-100\/50 {
  --tw-shadow-color: rgb(245 245 245 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-100\/55 {
  --tw-shadow-color: rgb(245 245 245 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-100\/60 {
  --tw-shadow-color: rgb(245 245 245 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-100\/65 {
  --tw-shadow-color: rgb(245 245 245 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-100\/70 {
  --tw-shadow-color: rgb(245 245 245 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-100\/75 {
  --tw-shadow-color: rgb(245 245 245 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-100\/80 {
  --tw-shadow-color: rgb(245 245 245 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-100\/85 {
  --tw-shadow-color: rgb(245 245 245 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-100\/90 {
  --tw-shadow-color: rgb(245 245 245 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-100\/95 {
  --tw-shadow-color: rgb(245 245 245 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-200 {
  --tw-shadow-color: #e5e5e5;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-200\/0 {
  --tw-shadow-color: rgb(229 229 229 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-200\/10 {
  --tw-shadow-color: rgb(229 229 229 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-200\/100 {
  --tw-shadow-color: rgb(229 229 229 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-200\/15 {
  --tw-shadow-color: rgb(229 229 229 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-200\/20 {
  --tw-shadow-color: rgb(229 229 229 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-200\/25 {
  --tw-shadow-color: rgb(229 229 229 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-200\/30 {
  --tw-shadow-color: rgb(229 229 229 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-200\/35 {
  --tw-shadow-color: rgb(229 229 229 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-200\/40 {
  --tw-shadow-color: rgb(229 229 229 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-200\/45 {
  --tw-shadow-color: rgb(229 229 229 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-200\/5 {
  --tw-shadow-color: rgb(229 229 229 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-200\/50 {
  --tw-shadow-color: rgb(229 229 229 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-200\/55 {
  --tw-shadow-color: rgb(229 229 229 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-200\/60 {
  --tw-shadow-color: rgb(229 229 229 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-200\/65 {
  --tw-shadow-color: rgb(229 229 229 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-200\/70 {
  --tw-shadow-color: rgb(229 229 229 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-200\/75 {
  --tw-shadow-color: rgb(229 229 229 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-200\/80 {
  --tw-shadow-color: rgb(229 229 229 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-200\/85 {
  --tw-shadow-color: rgb(229 229 229 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-200\/90 {
  --tw-shadow-color: rgb(229 229 229 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-200\/95 {
  --tw-shadow-color: rgb(229 229 229 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-300 {
  --tw-shadow-color: #d4d4d4;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-300\/0 {
  --tw-shadow-color: rgb(212 212 212 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-300\/10 {
  --tw-shadow-color: rgb(212 212 212 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-300\/100 {
  --tw-shadow-color: rgb(212 212 212 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-300\/15 {
  --tw-shadow-color: rgb(212 212 212 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-300\/20 {
  --tw-shadow-color: rgb(212 212 212 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-300\/25 {
  --tw-shadow-color: rgb(212 212 212 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-300\/30 {
  --tw-shadow-color: rgb(212 212 212 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-300\/35 {
  --tw-shadow-color: rgb(212 212 212 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-300\/40 {
  --tw-shadow-color: rgb(212 212 212 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-300\/45 {
  --tw-shadow-color: rgb(212 212 212 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-300\/5 {
  --tw-shadow-color: rgb(212 212 212 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-300\/50 {
  --tw-shadow-color: rgb(212 212 212 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-300\/55 {
  --tw-shadow-color: rgb(212 212 212 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-300\/60 {
  --tw-shadow-color: rgb(212 212 212 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-300\/65 {
  --tw-shadow-color: rgb(212 212 212 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-300\/70 {
  --tw-shadow-color: rgb(212 212 212 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-300\/75 {
  --tw-shadow-color: rgb(212 212 212 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-300\/80 {
  --tw-shadow-color: rgb(212 212 212 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-300\/85 {
  --tw-shadow-color: rgb(212 212 212 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-300\/90 {
  --tw-shadow-color: rgb(212 212 212 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-300\/95 {
  --tw-shadow-color: rgb(212 212 212 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-400 {
  --tw-shadow-color: #a3a3a3;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-400\/0 {
  --tw-shadow-color: rgb(163 163 163 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-400\/10 {
  --tw-shadow-color: rgb(163 163 163 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-400\/100 {
  --tw-shadow-color: rgb(163 163 163 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-400\/15 {
  --tw-shadow-color: rgb(163 163 163 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-400\/20 {
  --tw-shadow-color: rgb(163 163 163 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-400\/25 {
  --tw-shadow-color: rgb(163 163 163 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-400\/30 {
  --tw-shadow-color: rgb(163 163 163 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-400\/35 {
  --tw-shadow-color: rgb(163 163 163 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-400\/40 {
  --tw-shadow-color: rgb(163 163 163 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-400\/45 {
  --tw-shadow-color: rgb(163 163 163 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-400\/5 {
  --tw-shadow-color: rgb(163 163 163 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-400\/50 {
  --tw-shadow-color: rgb(163 163 163 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-400\/55 {
  --tw-shadow-color: rgb(163 163 163 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-400\/60 {
  --tw-shadow-color: rgb(163 163 163 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-400\/65 {
  --tw-shadow-color: rgb(163 163 163 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-400\/70 {
  --tw-shadow-color: rgb(163 163 163 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-400\/75 {
  --tw-shadow-color: rgb(163 163 163 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-400\/80 {
  --tw-shadow-color: rgb(163 163 163 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-400\/85 {
  --tw-shadow-color: rgb(163 163 163 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-400\/90 {
  --tw-shadow-color: rgb(163 163 163 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-400\/95 {
  --tw-shadow-color: rgb(163 163 163 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-50 {
  --tw-shadow-color: #fafafa;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-50\/0 {
  --tw-shadow-color: rgb(250 250 250 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-50\/10 {
  --tw-shadow-color: rgb(250 250 250 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-50\/100 {
  --tw-shadow-color: rgb(250 250 250 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-50\/15 {
  --tw-shadow-color: rgb(250 250 250 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-50\/20 {
  --tw-shadow-color: rgb(250 250 250 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-50\/25 {
  --tw-shadow-color: rgb(250 250 250 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-50\/30 {
  --tw-shadow-color: rgb(250 250 250 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-50\/35 {
  --tw-shadow-color: rgb(250 250 250 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-50\/40 {
  --tw-shadow-color: rgb(250 250 250 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-50\/45 {
  --tw-shadow-color: rgb(250 250 250 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-50\/5 {
  --tw-shadow-color: rgb(250 250 250 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-50\/50 {
  --tw-shadow-color: rgb(250 250 250 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-50\/55 {
  --tw-shadow-color: rgb(250 250 250 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-50\/60 {
  --tw-shadow-color: rgb(250 250 250 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-50\/65 {
  --tw-shadow-color: rgb(250 250 250 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-50\/70 {
  --tw-shadow-color: rgb(250 250 250 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-50\/75 {
  --tw-shadow-color: rgb(250 250 250 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-50\/80 {
  --tw-shadow-color: rgb(250 250 250 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-50\/85 {
  --tw-shadow-color: rgb(250 250 250 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-50\/90 {
  --tw-shadow-color: rgb(250 250 250 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-50\/95 {
  --tw-shadow-color: rgb(250 250 250 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-500 {
  --tw-shadow-color: #737373;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-500\/0 {
  --tw-shadow-color: rgb(115 115 115 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-500\/10 {
  --tw-shadow-color: rgb(115 115 115 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-500\/100 {
  --tw-shadow-color: rgb(115 115 115 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-500\/15 {
  --tw-shadow-color: rgb(115 115 115 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-500\/20 {
  --tw-shadow-color: rgb(115 115 115 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-500\/25 {
  --tw-shadow-color: rgb(115 115 115 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-500\/30 {
  --tw-shadow-color: rgb(115 115 115 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-500\/35 {
  --tw-shadow-color: rgb(115 115 115 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-500\/40 {
  --tw-shadow-color: rgb(115 115 115 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-500\/45 {
  --tw-shadow-color: rgb(115 115 115 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-500\/5 {
  --tw-shadow-color: rgb(115 115 115 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-500\/50 {
  --tw-shadow-color: rgb(115 115 115 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-500\/55 {
  --tw-shadow-color: rgb(115 115 115 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-500\/60 {
  --tw-shadow-color: rgb(115 115 115 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-500\/65 {
  --tw-shadow-color: rgb(115 115 115 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-500\/70 {
  --tw-shadow-color: rgb(115 115 115 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-500\/75 {
  --tw-shadow-color: rgb(115 115 115 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-500\/80 {
  --tw-shadow-color: rgb(115 115 115 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-500\/85 {
  --tw-shadow-color: rgb(115 115 115 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-500\/90 {
  --tw-shadow-color: rgb(115 115 115 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-500\/95 {
  --tw-shadow-color: rgb(115 115 115 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-600 {
  --tw-shadow-color: #525252;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-600\/0 {
  --tw-shadow-color: rgb(82 82 82 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-600\/10 {
  --tw-shadow-color: rgb(82 82 82 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-600\/100 {
  --tw-shadow-color: rgb(82 82 82 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-600\/15 {
  --tw-shadow-color: rgb(82 82 82 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-600\/20 {
  --tw-shadow-color: rgb(82 82 82 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-600\/25 {
  --tw-shadow-color: rgb(82 82 82 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-600\/30 {
  --tw-shadow-color: rgb(82 82 82 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-600\/35 {
  --tw-shadow-color: rgb(82 82 82 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-600\/40 {
  --tw-shadow-color: rgb(82 82 82 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-600\/45 {
  --tw-shadow-color: rgb(82 82 82 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-600\/5 {
  --tw-shadow-color: rgb(82 82 82 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-600\/50 {
  --tw-shadow-color: rgb(82 82 82 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-600\/55 {
  --tw-shadow-color: rgb(82 82 82 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-600\/60 {
  --tw-shadow-color: rgb(82 82 82 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-600\/65 {
  --tw-shadow-color: rgb(82 82 82 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-600\/70 {
  --tw-shadow-color: rgb(82 82 82 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-600\/75 {
  --tw-shadow-color: rgb(82 82 82 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-600\/80 {
  --tw-shadow-color: rgb(82 82 82 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-600\/85 {
  --tw-shadow-color: rgb(82 82 82 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-600\/90 {
  --tw-shadow-color: rgb(82 82 82 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-600\/95 {
  --tw-shadow-color: rgb(82 82 82 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-700 {
  --tw-shadow-color: #404040;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-700\/0 {
  --tw-shadow-color: rgb(64 64 64 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-700\/10 {
  --tw-shadow-color: rgb(64 64 64 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-700\/100 {
  --tw-shadow-color: rgb(64 64 64 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-700\/15 {
  --tw-shadow-color: rgb(64 64 64 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-700\/20 {
  --tw-shadow-color: rgb(64 64 64 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-700\/25 {
  --tw-shadow-color: rgb(64 64 64 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-700\/30 {
  --tw-shadow-color: rgb(64 64 64 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-700\/35 {
  --tw-shadow-color: rgb(64 64 64 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-700\/40 {
  --tw-shadow-color: rgb(64 64 64 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-700\/45 {
  --tw-shadow-color: rgb(64 64 64 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-700\/5 {
  --tw-shadow-color: rgb(64 64 64 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-700\/50 {
  --tw-shadow-color: rgb(64 64 64 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-700\/55 {
  --tw-shadow-color: rgb(64 64 64 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-700\/60 {
  --tw-shadow-color: rgb(64 64 64 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-700\/65 {
  --tw-shadow-color: rgb(64 64 64 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-700\/70 {
  --tw-shadow-color: rgb(64 64 64 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-700\/75 {
  --tw-shadow-color: rgb(64 64 64 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-700\/80 {
  --tw-shadow-color: rgb(64 64 64 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-700\/85 {
  --tw-shadow-color: rgb(64 64 64 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-700\/90 {
  --tw-shadow-color: rgb(64 64 64 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-700\/95 {
  --tw-shadow-color: rgb(64 64 64 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-800 {
  --tw-shadow-color: #262626;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-800\/0 {
  --tw-shadow-color: rgb(38 38 38 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-800\/10 {
  --tw-shadow-color: rgb(38 38 38 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-800\/100 {
  --tw-shadow-color: rgb(38 38 38 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-800\/15 {
  --tw-shadow-color: rgb(38 38 38 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-800\/20 {
  --tw-shadow-color: rgb(38 38 38 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-800\/25 {
  --tw-shadow-color: rgb(38 38 38 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-800\/30 {
  --tw-shadow-color: rgb(38 38 38 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-800\/35 {
  --tw-shadow-color: rgb(38 38 38 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-800\/40 {
  --tw-shadow-color: rgb(38 38 38 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-800\/45 {
  --tw-shadow-color: rgb(38 38 38 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-800\/5 {
  --tw-shadow-color: rgb(38 38 38 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-800\/50 {
  --tw-shadow-color: rgb(38 38 38 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-800\/55 {
  --tw-shadow-color: rgb(38 38 38 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-800\/60 {
  --tw-shadow-color: rgb(38 38 38 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-800\/65 {
  --tw-shadow-color: rgb(38 38 38 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-800\/70 {
  --tw-shadow-color: rgb(38 38 38 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-800\/75 {
  --tw-shadow-color: rgb(38 38 38 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-800\/80 {
  --tw-shadow-color: rgb(38 38 38 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-800\/85 {
  --tw-shadow-color: rgb(38 38 38 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-800\/90 {
  --tw-shadow-color: rgb(38 38 38 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-800\/95 {
  --tw-shadow-color: rgb(38 38 38 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-900 {
  --tw-shadow-color: #171717;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-900\/0 {
  --tw-shadow-color: rgb(23 23 23 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-900\/10 {
  --tw-shadow-color: rgb(23 23 23 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-900\/100 {
  --tw-shadow-color: rgb(23 23 23 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-900\/15 {
  --tw-shadow-color: rgb(23 23 23 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-900\/20 {
  --tw-shadow-color: rgb(23 23 23 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-900\/25 {
  --tw-shadow-color: rgb(23 23 23 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-900\/30 {
  --tw-shadow-color: rgb(23 23 23 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-900\/35 {
  --tw-shadow-color: rgb(23 23 23 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-900\/40 {
  --tw-shadow-color: rgb(23 23 23 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-900\/45 {
  --tw-shadow-color: rgb(23 23 23 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-900\/5 {
  --tw-shadow-color: rgb(23 23 23 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-900\/50 {
  --tw-shadow-color: rgb(23 23 23 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-900\/55 {
  --tw-shadow-color: rgb(23 23 23 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-900\/60 {
  --tw-shadow-color: rgb(23 23 23 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-900\/65 {
  --tw-shadow-color: rgb(23 23 23 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-900\/70 {
  --tw-shadow-color: rgb(23 23 23 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-900\/75 {
  --tw-shadow-color: rgb(23 23 23 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-900\/80 {
  --tw-shadow-color: rgb(23 23 23 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-900\/85 {
  --tw-shadow-color: rgb(23 23 23 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-900\/90 {
  --tw-shadow-color: rgb(23 23 23 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-900\/95 {
  --tw-shadow-color: rgb(23 23 23 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-950 {
  --tw-shadow-color: #0a0a0a;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-950\/0 {
  --tw-shadow-color: rgb(10 10 10 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-950\/10 {
  --tw-shadow-color: rgb(10 10 10 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-950\/100 {
  --tw-shadow-color: rgb(10 10 10 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-950\/15 {
  --tw-shadow-color: rgb(10 10 10 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-950\/20 {
  --tw-shadow-color: rgb(10 10 10 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-950\/25 {
  --tw-shadow-color: rgb(10 10 10 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-950\/30 {
  --tw-shadow-color: rgb(10 10 10 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-950\/35 {
  --tw-shadow-color: rgb(10 10 10 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-950\/40 {
  --tw-shadow-color: rgb(10 10 10 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-950\/45 {
  --tw-shadow-color: rgb(10 10 10 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-950\/5 {
  --tw-shadow-color: rgb(10 10 10 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-950\/50 {
  --tw-shadow-color: rgb(10 10 10 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-950\/55 {
  --tw-shadow-color: rgb(10 10 10 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-950\/60 {
  --tw-shadow-color: rgb(10 10 10 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-950\/65 {
  --tw-shadow-color: rgb(10 10 10 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-950\/70 {
  --tw-shadow-color: rgb(10 10 10 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-950\/75 {
  --tw-shadow-color: rgb(10 10 10 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-950\/80 {
  --tw-shadow-color: rgb(10 10 10 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-950\/85 {
  --tw-shadow-color: rgb(10 10 10 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-950\/90 {
  --tw-shadow-color: rgb(10 10 10 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gray-950\/95 {
  --tw-shadow-color: rgb(10 10 10 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-100 {
  --tw-shadow-color: #dcfce7;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-100\/0 {
  --tw-shadow-color: rgb(220 252 231 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-100\/10 {
  --tw-shadow-color: rgb(220 252 231 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-100\/100 {
  --tw-shadow-color: rgb(220 252 231 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-100\/15 {
  --tw-shadow-color: rgb(220 252 231 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-100\/20 {
  --tw-shadow-color: rgb(220 252 231 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-100\/25 {
  --tw-shadow-color: rgb(220 252 231 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-100\/30 {
  --tw-shadow-color: rgb(220 252 231 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-100\/35 {
  --tw-shadow-color: rgb(220 252 231 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-100\/40 {
  --tw-shadow-color: rgb(220 252 231 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-100\/45 {
  --tw-shadow-color: rgb(220 252 231 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-100\/5 {
  --tw-shadow-color: rgb(220 252 231 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-100\/50 {
  --tw-shadow-color: rgb(220 252 231 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-100\/55 {
  --tw-shadow-color: rgb(220 252 231 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-100\/60 {
  --tw-shadow-color: rgb(220 252 231 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-100\/65 {
  --tw-shadow-color: rgb(220 252 231 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-100\/70 {
  --tw-shadow-color: rgb(220 252 231 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-100\/75 {
  --tw-shadow-color: rgb(220 252 231 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-100\/80 {
  --tw-shadow-color: rgb(220 252 231 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-100\/85 {
  --tw-shadow-color: rgb(220 252 231 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-100\/90 {
  --tw-shadow-color: rgb(220 252 231 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-100\/95 {
  --tw-shadow-color: rgb(220 252 231 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-200 {
  --tw-shadow-color: #bbf7d0;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-200\/0 {
  --tw-shadow-color: rgb(187 247 208 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-200\/10 {
  --tw-shadow-color: rgb(187 247 208 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-200\/100 {
  --tw-shadow-color: rgb(187 247 208 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-200\/15 {
  --tw-shadow-color: rgb(187 247 208 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-200\/20 {
  --tw-shadow-color: rgb(187 247 208 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-200\/25 {
  --tw-shadow-color: rgb(187 247 208 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-200\/30 {
  --tw-shadow-color: rgb(187 247 208 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-200\/35 {
  --tw-shadow-color: rgb(187 247 208 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-200\/40 {
  --tw-shadow-color: rgb(187 247 208 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-200\/45 {
  --tw-shadow-color: rgb(187 247 208 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-200\/5 {
  --tw-shadow-color: rgb(187 247 208 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-200\/50 {
  --tw-shadow-color: rgb(187 247 208 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-200\/55 {
  --tw-shadow-color: rgb(187 247 208 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-200\/60 {
  --tw-shadow-color: rgb(187 247 208 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-200\/65 {
  --tw-shadow-color: rgb(187 247 208 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-200\/70 {
  --tw-shadow-color: rgb(187 247 208 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-200\/75 {
  --tw-shadow-color: rgb(187 247 208 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-200\/80 {
  --tw-shadow-color: rgb(187 247 208 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-200\/85 {
  --tw-shadow-color: rgb(187 247 208 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-200\/90 {
  --tw-shadow-color: rgb(187 247 208 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-200\/95 {
  --tw-shadow-color: rgb(187 247 208 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-300 {
  --tw-shadow-color: #86efac;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-300\/0 {
  --tw-shadow-color: rgb(134 239 172 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-300\/10 {
  --tw-shadow-color: rgb(134 239 172 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-300\/100 {
  --tw-shadow-color: rgb(134 239 172 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-300\/15 {
  --tw-shadow-color: rgb(134 239 172 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-300\/20 {
  --tw-shadow-color: rgb(134 239 172 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-300\/25 {
  --tw-shadow-color: rgb(134 239 172 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-300\/30 {
  --tw-shadow-color: rgb(134 239 172 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-300\/35 {
  --tw-shadow-color: rgb(134 239 172 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-300\/40 {
  --tw-shadow-color: rgb(134 239 172 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-300\/45 {
  --tw-shadow-color: rgb(134 239 172 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-300\/5 {
  --tw-shadow-color: rgb(134 239 172 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-300\/50 {
  --tw-shadow-color: rgb(134 239 172 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-300\/55 {
  --tw-shadow-color: rgb(134 239 172 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-300\/60 {
  --tw-shadow-color: rgb(134 239 172 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-300\/65 {
  --tw-shadow-color: rgb(134 239 172 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-300\/70 {
  --tw-shadow-color: rgb(134 239 172 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-300\/75 {
  --tw-shadow-color: rgb(134 239 172 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-300\/80 {
  --tw-shadow-color: rgb(134 239 172 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-300\/85 {
  --tw-shadow-color: rgb(134 239 172 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-300\/90 {
  --tw-shadow-color: rgb(134 239 172 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-300\/95 {
  --tw-shadow-color: rgb(134 239 172 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-400 {
  --tw-shadow-color: #4ade80;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-400\/0 {
  --tw-shadow-color: rgb(74 222 128 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-400\/10 {
  --tw-shadow-color: rgb(74 222 128 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-400\/100 {
  --tw-shadow-color: rgb(74 222 128 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-400\/15 {
  --tw-shadow-color: rgb(74 222 128 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-400\/20 {
  --tw-shadow-color: rgb(74 222 128 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-400\/25 {
  --tw-shadow-color: rgb(74 222 128 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-400\/30 {
  --tw-shadow-color: rgb(74 222 128 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-400\/35 {
  --tw-shadow-color: rgb(74 222 128 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-400\/40 {
  --tw-shadow-color: rgb(74 222 128 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-400\/45 {
  --tw-shadow-color: rgb(74 222 128 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-400\/5 {
  --tw-shadow-color: rgb(74 222 128 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-400\/50 {
  --tw-shadow-color: rgb(74 222 128 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-400\/55 {
  --tw-shadow-color: rgb(74 222 128 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-400\/60 {
  --tw-shadow-color: rgb(74 222 128 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-400\/65 {
  --tw-shadow-color: rgb(74 222 128 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-400\/70 {
  --tw-shadow-color: rgb(74 222 128 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-400\/75 {
  --tw-shadow-color: rgb(74 222 128 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-400\/80 {
  --tw-shadow-color: rgb(74 222 128 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-400\/85 {
  --tw-shadow-color: rgb(74 222 128 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-400\/90 {
  --tw-shadow-color: rgb(74 222 128 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-400\/95 {
  --tw-shadow-color: rgb(74 222 128 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-50 {
  --tw-shadow-color: #f0fdf4;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-50\/0 {
  --tw-shadow-color: rgb(240 253 244 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-50\/10 {
  --tw-shadow-color: rgb(240 253 244 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-50\/100 {
  --tw-shadow-color: rgb(240 253 244 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-50\/15 {
  --tw-shadow-color: rgb(240 253 244 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-50\/20 {
  --tw-shadow-color: rgb(240 253 244 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-50\/25 {
  --tw-shadow-color: rgb(240 253 244 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-50\/30 {
  --tw-shadow-color: rgb(240 253 244 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-50\/35 {
  --tw-shadow-color: rgb(240 253 244 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-50\/40 {
  --tw-shadow-color: rgb(240 253 244 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-50\/45 {
  --tw-shadow-color: rgb(240 253 244 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-50\/5 {
  --tw-shadow-color: rgb(240 253 244 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-50\/50 {
  --tw-shadow-color: rgb(240 253 244 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-50\/55 {
  --tw-shadow-color: rgb(240 253 244 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-50\/60 {
  --tw-shadow-color: rgb(240 253 244 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-50\/65 {
  --tw-shadow-color: rgb(240 253 244 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-50\/70 {
  --tw-shadow-color: rgb(240 253 244 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-50\/75 {
  --tw-shadow-color: rgb(240 253 244 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-50\/80 {
  --tw-shadow-color: rgb(240 253 244 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-50\/85 {
  --tw-shadow-color: rgb(240 253 244 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-50\/90 {
  --tw-shadow-color: rgb(240 253 244 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-50\/95 {
  --tw-shadow-color: rgb(240 253 244 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-500 {
  --tw-shadow-color: #22c55e;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-500\/0 {
  --tw-shadow-color: rgb(34 197 94 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-500\/10 {
  --tw-shadow-color: rgb(34 197 94 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-500\/100 {
  --tw-shadow-color: rgb(34 197 94 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-500\/15 {
  --tw-shadow-color: rgb(34 197 94 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-500\/20 {
  --tw-shadow-color: rgb(34 197 94 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-500\/25 {
  --tw-shadow-color: rgb(34 197 94 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-500\/30 {
  --tw-shadow-color: rgb(34 197 94 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-500\/35 {
  --tw-shadow-color: rgb(34 197 94 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-500\/40 {
  --tw-shadow-color: rgb(34 197 94 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-500\/45 {
  --tw-shadow-color: rgb(34 197 94 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-500\/5 {
  --tw-shadow-color: rgb(34 197 94 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-500\/50 {
  --tw-shadow-color: rgb(34 197 94 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-500\/55 {
  --tw-shadow-color: rgb(34 197 94 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-500\/60 {
  --tw-shadow-color: rgb(34 197 94 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-500\/65 {
  --tw-shadow-color: rgb(34 197 94 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-500\/70 {
  --tw-shadow-color: rgb(34 197 94 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-500\/75 {
  --tw-shadow-color: rgb(34 197 94 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-500\/80 {
  --tw-shadow-color: rgb(34 197 94 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-500\/85 {
  --tw-shadow-color: rgb(34 197 94 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-500\/90 {
  --tw-shadow-color: rgb(34 197 94 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-500\/95 {
  --tw-shadow-color: rgb(34 197 94 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-600 {
  --tw-shadow-color: #16a34a;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-600\/0 {
  --tw-shadow-color: rgb(22 163 74 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-600\/10 {
  --tw-shadow-color: rgb(22 163 74 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-600\/100 {
  --tw-shadow-color: rgb(22 163 74 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-600\/15 {
  --tw-shadow-color: rgb(22 163 74 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-600\/20 {
  --tw-shadow-color: rgb(22 163 74 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-600\/25 {
  --tw-shadow-color: rgb(22 163 74 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-600\/30 {
  --tw-shadow-color: rgb(22 163 74 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-600\/35 {
  --tw-shadow-color: rgb(22 163 74 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-600\/40 {
  --tw-shadow-color: rgb(22 163 74 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-600\/45 {
  --tw-shadow-color: rgb(22 163 74 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-600\/5 {
  --tw-shadow-color: rgb(22 163 74 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-600\/50 {
  --tw-shadow-color: rgb(22 163 74 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-600\/55 {
  --tw-shadow-color: rgb(22 163 74 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-600\/60 {
  --tw-shadow-color: rgb(22 163 74 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-600\/65 {
  --tw-shadow-color: rgb(22 163 74 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-600\/70 {
  --tw-shadow-color: rgb(22 163 74 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-600\/75 {
  --tw-shadow-color: rgb(22 163 74 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-600\/80 {
  --tw-shadow-color: rgb(22 163 74 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-600\/85 {
  --tw-shadow-color: rgb(22 163 74 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-600\/90 {
  --tw-shadow-color: rgb(22 163 74 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-600\/95 {
  --tw-shadow-color: rgb(22 163 74 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-700 {
  --tw-shadow-color: #15803d;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-700\/0 {
  --tw-shadow-color: rgb(21 128 61 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-700\/10 {
  --tw-shadow-color: rgb(21 128 61 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-700\/100 {
  --tw-shadow-color: rgb(21 128 61 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-700\/15 {
  --tw-shadow-color: rgb(21 128 61 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-700\/20 {
  --tw-shadow-color: rgb(21 128 61 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-700\/25 {
  --tw-shadow-color: rgb(21 128 61 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-700\/30 {
  --tw-shadow-color: rgb(21 128 61 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-700\/35 {
  --tw-shadow-color: rgb(21 128 61 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-700\/40 {
  --tw-shadow-color: rgb(21 128 61 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-700\/45 {
  --tw-shadow-color: rgb(21 128 61 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-700\/5 {
  --tw-shadow-color: rgb(21 128 61 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-700\/50 {
  --tw-shadow-color: rgb(21 128 61 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-700\/55 {
  --tw-shadow-color: rgb(21 128 61 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-700\/60 {
  --tw-shadow-color: rgb(21 128 61 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-700\/65 {
  --tw-shadow-color: rgb(21 128 61 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-700\/70 {
  --tw-shadow-color: rgb(21 128 61 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-700\/75 {
  --tw-shadow-color: rgb(21 128 61 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-700\/80 {
  --tw-shadow-color: rgb(21 128 61 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-700\/85 {
  --tw-shadow-color: rgb(21 128 61 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-700\/90 {
  --tw-shadow-color: rgb(21 128 61 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-700\/95 {
  --tw-shadow-color: rgb(21 128 61 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-800 {
  --tw-shadow-color: #166534;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-800\/0 {
  --tw-shadow-color: rgb(22 101 52 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-800\/10 {
  --tw-shadow-color: rgb(22 101 52 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-800\/100 {
  --tw-shadow-color: rgb(22 101 52 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-800\/15 {
  --tw-shadow-color: rgb(22 101 52 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-800\/20 {
  --tw-shadow-color: rgb(22 101 52 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-800\/25 {
  --tw-shadow-color: rgb(22 101 52 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-800\/30 {
  --tw-shadow-color: rgb(22 101 52 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-800\/35 {
  --tw-shadow-color: rgb(22 101 52 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-800\/40 {
  --tw-shadow-color: rgb(22 101 52 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-800\/45 {
  --tw-shadow-color: rgb(22 101 52 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-800\/5 {
  --tw-shadow-color: rgb(22 101 52 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-800\/50 {
  --tw-shadow-color: rgb(22 101 52 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-800\/55 {
  --tw-shadow-color: rgb(22 101 52 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-800\/60 {
  --tw-shadow-color: rgb(22 101 52 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-800\/65 {
  --tw-shadow-color: rgb(22 101 52 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-800\/70 {
  --tw-shadow-color: rgb(22 101 52 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-800\/75 {
  --tw-shadow-color: rgb(22 101 52 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-800\/80 {
  --tw-shadow-color: rgb(22 101 52 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-800\/85 {
  --tw-shadow-color: rgb(22 101 52 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-800\/90 {
  --tw-shadow-color: rgb(22 101 52 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-800\/95 {
  --tw-shadow-color: rgb(22 101 52 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-900 {
  --tw-shadow-color: #14532d;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-900\/0 {
  --tw-shadow-color: rgb(20 83 45 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-900\/10 {
  --tw-shadow-color: rgb(20 83 45 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-900\/100 {
  --tw-shadow-color: rgb(20 83 45 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-900\/15 {
  --tw-shadow-color: rgb(20 83 45 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-900\/20 {
  --tw-shadow-color: rgb(20 83 45 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-900\/25 {
  --tw-shadow-color: rgb(20 83 45 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-900\/30 {
  --tw-shadow-color: rgb(20 83 45 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-900\/35 {
  --tw-shadow-color: rgb(20 83 45 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-900\/40 {
  --tw-shadow-color: rgb(20 83 45 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-900\/45 {
  --tw-shadow-color: rgb(20 83 45 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-900\/5 {
  --tw-shadow-color: rgb(20 83 45 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-900\/50 {
  --tw-shadow-color: rgb(20 83 45 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-900\/55 {
  --tw-shadow-color: rgb(20 83 45 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-900\/60 {
  --tw-shadow-color: rgb(20 83 45 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-900\/65 {
  --tw-shadow-color: rgb(20 83 45 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-900\/70 {
  --tw-shadow-color: rgb(20 83 45 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-900\/75 {
  --tw-shadow-color: rgb(20 83 45 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-900\/80 {
  --tw-shadow-color: rgb(20 83 45 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-900\/85 {
  --tw-shadow-color: rgb(20 83 45 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-900\/90 {
  --tw-shadow-color: rgb(20 83 45 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-900\/95 {
  --tw-shadow-color: rgb(20 83 45 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-950 {
  --tw-shadow-color: #052e16;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-950\/0 {
  --tw-shadow-color: rgb(5 46 22 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-950\/10 {
  --tw-shadow-color: rgb(5 46 22 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-950\/100 {
  --tw-shadow-color: rgb(5 46 22 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-950\/15 {
  --tw-shadow-color: rgb(5 46 22 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-950\/20 {
  --tw-shadow-color: rgb(5 46 22 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-950\/25 {
  --tw-shadow-color: rgb(5 46 22 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-950\/30 {
  --tw-shadow-color: rgb(5 46 22 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-950\/35 {
  --tw-shadow-color: rgb(5 46 22 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-950\/40 {
  --tw-shadow-color: rgb(5 46 22 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-950\/45 {
  --tw-shadow-color: rgb(5 46 22 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-950\/5 {
  --tw-shadow-color: rgb(5 46 22 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-950\/50 {
  --tw-shadow-color: rgb(5 46 22 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-950\/55 {
  --tw-shadow-color: rgb(5 46 22 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-950\/60 {
  --tw-shadow-color: rgb(5 46 22 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-950\/65 {
  --tw-shadow-color: rgb(5 46 22 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-950\/70 {
  --tw-shadow-color: rgb(5 46 22 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-950\/75 {
  --tw-shadow-color: rgb(5 46 22 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-950\/80 {
  --tw-shadow-color: rgb(5 46 22 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-950\/85 {
  --tw-shadow-color: rgb(5 46 22 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-950\/90 {
  --tw-shadow-color: rgb(5 46 22 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-green-950\/95 {
  --tw-shadow-color: rgb(5 46 22 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-100 {
  --tw-shadow-color: #fee2e2;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-100\/0 {
  --tw-shadow-color: rgb(254 226 226 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-100\/10 {
  --tw-shadow-color: rgb(254 226 226 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-100\/100 {
  --tw-shadow-color: rgb(254 226 226 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-100\/15 {
  --tw-shadow-color: rgb(254 226 226 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-100\/20 {
  --tw-shadow-color: rgb(254 226 226 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-100\/25 {
  --tw-shadow-color: rgb(254 226 226 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-100\/30 {
  --tw-shadow-color: rgb(254 226 226 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-100\/35 {
  --tw-shadow-color: rgb(254 226 226 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-100\/40 {
  --tw-shadow-color: rgb(254 226 226 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-100\/45 {
  --tw-shadow-color: rgb(254 226 226 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-100\/5 {
  --tw-shadow-color: rgb(254 226 226 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-100\/50 {
  --tw-shadow-color: rgb(254 226 226 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-100\/55 {
  --tw-shadow-color: rgb(254 226 226 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-100\/60 {
  --tw-shadow-color: rgb(254 226 226 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-100\/65 {
  --tw-shadow-color: rgb(254 226 226 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-100\/70 {
  --tw-shadow-color: rgb(254 226 226 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-100\/75 {
  --tw-shadow-color: rgb(254 226 226 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-100\/80 {
  --tw-shadow-color: rgb(254 226 226 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-100\/85 {
  --tw-shadow-color: rgb(254 226 226 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-100\/90 {
  --tw-shadow-color: rgb(254 226 226 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-100\/95 {
  --tw-shadow-color: rgb(254 226 226 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-200 {
  --tw-shadow-color: #fecaca;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-200\/0 {
  --tw-shadow-color: rgb(254 202 202 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-200\/10 {
  --tw-shadow-color: rgb(254 202 202 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-200\/100 {
  --tw-shadow-color: rgb(254 202 202 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-200\/15 {
  --tw-shadow-color: rgb(254 202 202 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-200\/20 {
  --tw-shadow-color: rgb(254 202 202 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-200\/25 {
  --tw-shadow-color: rgb(254 202 202 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-200\/30 {
  --tw-shadow-color: rgb(254 202 202 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-200\/35 {
  --tw-shadow-color: rgb(254 202 202 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-200\/40 {
  --tw-shadow-color: rgb(254 202 202 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-200\/45 {
  --tw-shadow-color: rgb(254 202 202 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-200\/5 {
  --tw-shadow-color: rgb(254 202 202 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-200\/50 {
  --tw-shadow-color: rgb(254 202 202 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-200\/55 {
  --tw-shadow-color: rgb(254 202 202 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-200\/60 {
  --tw-shadow-color: rgb(254 202 202 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-200\/65 {
  --tw-shadow-color: rgb(254 202 202 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-200\/70 {
  --tw-shadow-color: rgb(254 202 202 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-200\/75 {
  --tw-shadow-color: rgb(254 202 202 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-200\/80 {
  --tw-shadow-color: rgb(254 202 202 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-200\/85 {
  --tw-shadow-color: rgb(254 202 202 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-200\/90 {
  --tw-shadow-color: rgb(254 202 202 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-200\/95 {
  --tw-shadow-color: rgb(254 202 202 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-300 {
  --tw-shadow-color: #fca5a5;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-300\/0 {
  --tw-shadow-color: rgb(252 165 165 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-300\/10 {
  --tw-shadow-color: rgb(252 165 165 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-300\/100 {
  --tw-shadow-color: rgb(252 165 165 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-300\/15 {
  --tw-shadow-color: rgb(252 165 165 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-300\/20 {
  --tw-shadow-color: rgb(252 165 165 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-300\/25 {
  --tw-shadow-color: rgb(252 165 165 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-300\/30 {
  --tw-shadow-color: rgb(252 165 165 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-300\/35 {
  --tw-shadow-color: rgb(252 165 165 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-300\/40 {
  --tw-shadow-color: rgb(252 165 165 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-300\/45 {
  --tw-shadow-color: rgb(252 165 165 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-300\/5 {
  --tw-shadow-color: rgb(252 165 165 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-300\/50 {
  --tw-shadow-color: rgb(252 165 165 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-300\/55 {
  --tw-shadow-color: rgb(252 165 165 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-300\/60 {
  --tw-shadow-color: rgb(252 165 165 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-300\/65 {
  --tw-shadow-color: rgb(252 165 165 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-300\/70 {
  --tw-shadow-color: rgb(252 165 165 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-300\/75 {
  --tw-shadow-color: rgb(252 165 165 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-300\/80 {
  --tw-shadow-color: rgb(252 165 165 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-300\/85 {
  --tw-shadow-color: rgb(252 165 165 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-300\/90 {
  --tw-shadow-color: rgb(252 165 165 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-300\/95 {
  --tw-shadow-color: rgb(252 165 165 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-400 {
  --tw-shadow-color: #f87171;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-400\/0 {
  --tw-shadow-color: rgb(248 113 113 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-400\/10 {
  --tw-shadow-color: rgb(248 113 113 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-400\/100 {
  --tw-shadow-color: rgb(248 113 113 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-400\/15 {
  --tw-shadow-color: rgb(248 113 113 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-400\/20 {
  --tw-shadow-color: rgb(248 113 113 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-400\/25 {
  --tw-shadow-color: rgb(248 113 113 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-400\/30 {
  --tw-shadow-color: rgb(248 113 113 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-400\/35 {
  --tw-shadow-color: rgb(248 113 113 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-400\/40 {
  --tw-shadow-color: rgb(248 113 113 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-400\/45 {
  --tw-shadow-color: rgb(248 113 113 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-400\/5 {
  --tw-shadow-color: rgb(248 113 113 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-400\/50 {
  --tw-shadow-color: rgb(248 113 113 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-400\/55 {
  --tw-shadow-color: rgb(248 113 113 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-400\/60 {
  --tw-shadow-color: rgb(248 113 113 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-400\/65 {
  --tw-shadow-color: rgb(248 113 113 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-400\/70 {
  --tw-shadow-color: rgb(248 113 113 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-400\/75 {
  --tw-shadow-color: rgb(248 113 113 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-400\/80 {
  --tw-shadow-color: rgb(248 113 113 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-400\/85 {
  --tw-shadow-color: rgb(248 113 113 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-400\/90 {
  --tw-shadow-color: rgb(248 113 113 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-400\/95 {
  --tw-shadow-color: rgb(248 113 113 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-50 {
  --tw-shadow-color: #fef2f2;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-50\/0 {
  --tw-shadow-color: rgb(254 242 242 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-50\/10 {
  --tw-shadow-color: rgb(254 242 242 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-50\/100 {
  --tw-shadow-color: rgb(254 242 242 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-50\/15 {
  --tw-shadow-color: rgb(254 242 242 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-50\/20 {
  --tw-shadow-color: rgb(254 242 242 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-50\/25 {
  --tw-shadow-color: rgb(254 242 242 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-50\/30 {
  --tw-shadow-color: rgb(254 242 242 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-50\/35 {
  --tw-shadow-color: rgb(254 242 242 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-50\/40 {
  --tw-shadow-color: rgb(254 242 242 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-50\/45 {
  --tw-shadow-color: rgb(254 242 242 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-50\/5 {
  --tw-shadow-color: rgb(254 242 242 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-50\/50 {
  --tw-shadow-color: rgb(254 242 242 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-50\/55 {
  --tw-shadow-color: rgb(254 242 242 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-50\/60 {
  --tw-shadow-color: rgb(254 242 242 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-50\/65 {
  --tw-shadow-color: rgb(254 242 242 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-50\/70 {
  --tw-shadow-color: rgb(254 242 242 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-50\/75 {
  --tw-shadow-color: rgb(254 242 242 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-50\/80 {
  --tw-shadow-color: rgb(254 242 242 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-50\/85 {
  --tw-shadow-color: rgb(254 242 242 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-50\/90 {
  --tw-shadow-color: rgb(254 242 242 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-50\/95 {
  --tw-shadow-color: rgb(254 242 242 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-500 {
  --tw-shadow-color: #ef4444;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-500\/0 {
  --tw-shadow-color: rgb(239 68 68 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-500\/10 {
  --tw-shadow-color: rgb(239 68 68 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-500\/100 {
  --tw-shadow-color: rgb(239 68 68 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-500\/15 {
  --tw-shadow-color: rgb(239 68 68 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-500\/20 {
  --tw-shadow-color: rgb(239 68 68 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-500\/25 {
  --tw-shadow-color: rgb(239 68 68 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-500\/30 {
  --tw-shadow-color: rgb(239 68 68 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-500\/35 {
  --tw-shadow-color: rgb(239 68 68 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-500\/40 {
  --tw-shadow-color: rgb(239 68 68 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-500\/45 {
  --tw-shadow-color: rgb(239 68 68 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-500\/5 {
  --tw-shadow-color: rgb(239 68 68 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-500\/50 {
  --tw-shadow-color: rgb(239 68 68 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-500\/55 {
  --tw-shadow-color: rgb(239 68 68 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-500\/60 {
  --tw-shadow-color: rgb(239 68 68 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-500\/65 {
  --tw-shadow-color: rgb(239 68 68 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-500\/70 {
  --tw-shadow-color: rgb(239 68 68 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-500\/75 {
  --tw-shadow-color: rgb(239 68 68 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-500\/80 {
  --tw-shadow-color: rgb(239 68 68 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-500\/85 {
  --tw-shadow-color: rgb(239 68 68 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-500\/90 {
  --tw-shadow-color: rgb(239 68 68 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-500\/95 {
  --tw-shadow-color: rgb(239 68 68 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-600 {
  --tw-shadow-color: #dc2626;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-600\/0 {
  --tw-shadow-color: rgb(220 38 38 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-600\/10 {
  --tw-shadow-color: rgb(220 38 38 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-600\/100 {
  --tw-shadow-color: rgb(220 38 38 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-600\/15 {
  --tw-shadow-color: rgb(220 38 38 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-600\/20 {
  --tw-shadow-color: rgb(220 38 38 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-600\/25 {
  --tw-shadow-color: rgb(220 38 38 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-600\/30 {
  --tw-shadow-color: rgb(220 38 38 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-600\/35 {
  --tw-shadow-color: rgb(220 38 38 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-600\/40 {
  --tw-shadow-color: rgb(220 38 38 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-600\/45 {
  --tw-shadow-color: rgb(220 38 38 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-600\/5 {
  --tw-shadow-color: rgb(220 38 38 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-600\/50 {
  --tw-shadow-color: rgb(220 38 38 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-600\/55 {
  --tw-shadow-color: rgb(220 38 38 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-600\/60 {
  --tw-shadow-color: rgb(220 38 38 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-600\/65 {
  --tw-shadow-color: rgb(220 38 38 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-600\/70 {
  --tw-shadow-color: rgb(220 38 38 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-600\/75 {
  --tw-shadow-color: rgb(220 38 38 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-600\/80 {
  --tw-shadow-color: rgb(220 38 38 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-600\/85 {
  --tw-shadow-color: rgb(220 38 38 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-600\/90 {
  --tw-shadow-color: rgb(220 38 38 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-600\/95 {
  --tw-shadow-color: rgb(220 38 38 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-700 {
  --tw-shadow-color: #b91c1c;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-700\/0 {
  --tw-shadow-color: rgb(185 28 28 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-700\/10 {
  --tw-shadow-color: rgb(185 28 28 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-700\/100 {
  --tw-shadow-color: rgb(185 28 28 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-700\/15 {
  --tw-shadow-color: rgb(185 28 28 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-700\/20 {
  --tw-shadow-color: rgb(185 28 28 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-700\/25 {
  --tw-shadow-color: rgb(185 28 28 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-700\/30 {
  --tw-shadow-color: rgb(185 28 28 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-700\/35 {
  --tw-shadow-color: rgb(185 28 28 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-700\/40 {
  --tw-shadow-color: rgb(185 28 28 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-700\/45 {
  --tw-shadow-color: rgb(185 28 28 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-700\/5 {
  --tw-shadow-color: rgb(185 28 28 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-700\/50 {
  --tw-shadow-color: rgb(185 28 28 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-700\/55 {
  --tw-shadow-color: rgb(185 28 28 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-700\/60 {
  --tw-shadow-color: rgb(185 28 28 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-700\/65 {
  --tw-shadow-color: rgb(185 28 28 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-700\/70 {
  --tw-shadow-color: rgb(185 28 28 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-700\/75 {
  --tw-shadow-color: rgb(185 28 28 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-700\/80 {
  --tw-shadow-color: rgb(185 28 28 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-700\/85 {
  --tw-shadow-color: rgb(185 28 28 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-700\/90 {
  --tw-shadow-color: rgb(185 28 28 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-700\/95 {
  --tw-shadow-color: rgb(185 28 28 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-800 {
  --tw-shadow-color: #991b1b;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-800\/0 {
  --tw-shadow-color: rgb(153 27 27 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-800\/10 {
  --tw-shadow-color: rgb(153 27 27 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-800\/100 {
  --tw-shadow-color: rgb(153 27 27 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-800\/15 {
  --tw-shadow-color: rgb(153 27 27 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-800\/20 {
  --tw-shadow-color: rgb(153 27 27 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-800\/25 {
  --tw-shadow-color: rgb(153 27 27 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-800\/30 {
  --tw-shadow-color: rgb(153 27 27 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-800\/35 {
  --tw-shadow-color: rgb(153 27 27 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-800\/40 {
  --tw-shadow-color: rgb(153 27 27 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-800\/45 {
  --tw-shadow-color: rgb(153 27 27 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-800\/5 {
  --tw-shadow-color: rgb(153 27 27 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-800\/50 {
  --tw-shadow-color: rgb(153 27 27 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-800\/55 {
  --tw-shadow-color: rgb(153 27 27 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-800\/60 {
  --tw-shadow-color: rgb(153 27 27 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-800\/65 {
  --tw-shadow-color: rgb(153 27 27 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-800\/70 {
  --tw-shadow-color: rgb(153 27 27 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-800\/75 {
  --tw-shadow-color: rgb(153 27 27 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-800\/80 {
  --tw-shadow-color: rgb(153 27 27 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-800\/85 {
  --tw-shadow-color: rgb(153 27 27 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-800\/90 {
  --tw-shadow-color: rgb(153 27 27 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-800\/95 {
  --tw-shadow-color: rgb(153 27 27 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-900 {
  --tw-shadow-color: #7f1d1d;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-900\/0 {
  --tw-shadow-color: rgb(127 29 29 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-900\/10 {
  --tw-shadow-color: rgb(127 29 29 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-900\/100 {
  --tw-shadow-color: rgb(127 29 29 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-900\/15 {
  --tw-shadow-color: rgb(127 29 29 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-900\/20 {
  --tw-shadow-color: rgb(127 29 29 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-900\/25 {
  --tw-shadow-color: rgb(127 29 29 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-900\/30 {
  --tw-shadow-color: rgb(127 29 29 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-900\/35 {
  --tw-shadow-color: rgb(127 29 29 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-900\/40 {
  --tw-shadow-color: rgb(127 29 29 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-900\/45 {
  --tw-shadow-color: rgb(127 29 29 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-900\/5 {
  --tw-shadow-color: rgb(127 29 29 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-900\/50 {
  --tw-shadow-color: rgb(127 29 29 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-900\/55 {
  --tw-shadow-color: rgb(127 29 29 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-900\/60 {
  --tw-shadow-color: rgb(127 29 29 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-900\/65 {
  --tw-shadow-color: rgb(127 29 29 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-900\/70 {
  --tw-shadow-color: rgb(127 29 29 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-900\/75 {
  --tw-shadow-color: rgb(127 29 29 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-900\/80 {
  --tw-shadow-color: rgb(127 29 29 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-900\/85 {
  --tw-shadow-color: rgb(127 29 29 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-900\/90 {
  --tw-shadow-color: rgb(127 29 29 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-900\/95 {
  --tw-shadow-color: rgb(127 29 29 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-950 {
  --tw-shadow-color: #450a0a;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-950\/0 {
  --tw-shadow-color: rgb(69 10 10 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-950\/10 {
  --tw-shadow-color: rgb(69 10 10 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-950\/100 {
  --tw-shadow-color: rgb(69 10 10 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-950\/15 {
  --tw-shadow-color: rgb(69 10 10 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-950\/20 {
  --tw-shadow-color: rgb(69 10 10 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-950\/25 {
  --tw-shadow-color: rgb(69 10 10 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-950\/30 {
  --tw-shadow-color: rgb(69 10 10 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-950\/35 {
  --tw-shadow-color: rgb(69 10 10 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-950\/40 {
  --tw-shadow-color: rgb(69 10 10 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-950\/45 {
  --tw-shadow-color: rgb(69 10 10 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-950\/5 {
  --tw-shadow-color: rgb(69 10 10 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-950\/50 {
  --tw-shadow-color: rgb(69 10 10 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-950\/55 {
  --tw-shadow-color: rgb(69 10 10 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-950\/60 {
  --tw-shadow-color: rgb(69 10 10 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-950\/65 {
  --tw-shadow-color: rgb(69 10 10 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-950\/70 {
  --tw-shadow-color: rgb(69 10 10 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-950\/75 {
  --tw-shadow-color: rgb(69 10 10 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-950\/80 {
  --tw-shadow-color: rgb(69 10 10 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-950\/85 {
  --tw-shadow-color: rgb(69 10 10 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-950\/90 {
  --tw-shadow-color: rgb(69 10 10 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-red-950\/95 {
  --tw-shadow-color: rgb(69 10 10 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-transparent {
  --tw-shadow-color: transparent;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-transparent\/0 {
  --tw-shadow-color: rgb(0 0 0 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-transparent\/10 {
  --tw-shadow-color: rgb(0 0 0 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-transparent\/100 {
  --tw-shadow-color: rgb(0 0 0 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-transparent\/15 {
  --tw-shadow-color: rgb(0 0 0 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-transparent\/20 {
  --tw-shadow-color: rgb(0 0 0 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-transparent\/25 {
  --tw-shadow-color: rgb(0 0 0 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-transparent\/30 {
  --tw-shadow-color: rgb(0 0 0 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-transparent\/35 {
  --tw-shadow-color: rgb(0 0 0 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-transparent\/40 {
  --tw-shadow-color: rgb(0 0 0 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-transparent\/45 {
  --tw-shadow-color: rgb(0 0 0 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-transparent\/5 {
  --tw-shadow-color: rgb(0 0 0 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-transparent\/50 {
  --tw-shadow-color: rgb(0 0 0 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-transparent\/55 {
  --tw-shadow-color: rgb(0 0 0 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-transparent\/60 {
  --tw-shadow-color: rgb(0 0 0 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-transparent\/65 {
  --tw-shadow-color: rgb(0 0 0 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-transparent\/70 {
  --tw-shadow-color: rgb(0 0 0 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-transparent\/75 {
  --tw-shadow-color: rgb(0 0 0 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-transparent\/80 {
  --tw-shadow-color: rgb(0 0 0 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-transparent\/85 {
  --tw-shadow-color: rgb(0 0 0 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-transparent\/90 {
  --tw-shadow-color: rgb(0 0 0 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-transparent\/95 {
  --tw-shadow-color: rgb(0 0 0 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-white {
  --tw-shadow-color: #fff;
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-white\/0 {
  --tw-shadow-color: rgb(255 255 255 / 0);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-white\/10 {
  --tw-shadow-color: rgb(255 255 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-white\/100 {
  --tw-shadow-color: rgb(255 255 255 / 1);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-white\/15 {
  --tw-shadow-color: rgb(255 255 255 / 0.15);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-white\/20 {
  --tw-shadow-color: rgb(255 255 255 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-white\/25 {
  --tw-shadow-color: rgb(255 255 255 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-white\/30 {
  --tw-shadow-color: rgb(255 255 255 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-white\/35 {
  --tw-shadow-color: rgb(255 255 255 / 0.35);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-white\/40 {
  --tw-shadow-color: rgb(255 255 255 / 0.4);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-white\/45 {
  --tw-shadow-color: rgb(255 255 255 / 0.45);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-white\/5 {
  --tw-shadow-color: rgb(255 255 255 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-white\/50 {
  --tw-shadow-color: rgb(255 255 255 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-white\/55 {
  --tw-shadow-color: rgb(255 255 255 / 0.55);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-white\/60 {
  --tw-shadow-color: rgb(255 255 255 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-white\/65 {
  --tw-shadow-color: rgb(255 255 255 / 0.65);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-white\/70 {
  --tw-shadow-color: rgb(255 255 255 / 0.7);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-white\/75 {
  --tw-shadow-color: rgb(255 255 255 / 0.75);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-white\/80 {
  --tw-shadow-color: rgb(255 255 255 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-white\/85 {
  --tw-shadow-color: rgb(255 255 255 / 0.85);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-white\/90 {
  --tw-shadow-color: rgb(255 255 255 / 0.9);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-white\/95 {
  --tw-shadow-color: rgb(255 255 255 / 0.95);
  --tw-shadow: var(--tw-shadow-colored);
}

.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.outline {
  outline-style: solid;
}

.outline-dashed {
  outline-style: dashed;
}

.outline-dotted {
  outline-style: dotted;
}

.outline-double {
  outline-style: double;
}

.outline-0 {
  outline-width: 0px;
}

.outline-1 {
  outline-width: 1px;
}

.outline-2 {
  outline-width: 2px;
}

.outline-4 {
  outline-width: 4px;
}

.outline-8 {
  outline-width: 8px;
}

.-outline-offset-0 {
  outline-offset: -0px;
}

.-outline-offset-1 {
  outline-offset: -1px;
}

.-outline-offset-2 {
  outline-offset: -2px;
}

.-outline-offset-4 {
  outline-offset: -4px;
}

.-outline-offset-8 {
  outline-offset: -8px;
}

.outline-offset-0 {
  outline-offset: 0px;
}

.outline-offset-1 {
  outline-offset: 1px;
}

.outline-offset-2 {
  outline-offset: 2px;
}

.outline-offset-4 {
  outline-offset: 4px;
}

.outline-offset-8 {
  outline-offset: 8px;
}

.outline-black {
  outline-color: #000;
}

.outline-black\/0 {
  outline-color: rgb(0 0 0 / 0);
}

.outline-black\/10 {
  outline-color: rgb(0 0 0 / 0.1);
}

.outline-black\/100 {
  outline-color: rgb(0 0 0 / 1);
}

.outline-black\/15 {
  outline-color: rgb(0 0 0 / 0.15);
}

.outline-black\/20 {
  outline-color: rgb(0 0 0 / 0.2);
}

.outline-black\/25 {
  outline-color: rgb(0 0 0 / 0.25);
}

.outline-black\/30 {
  outline-color: rgb(0 0 0 / 0.3);
}

.outline-black\/35 {
  outline-color: rgb(0 0 0 / 0.35);
}

.outline-black\/40 {
  outline-color: rgb(0 0 0 / 0.4);
}

.outline-black\/45 {
  outline-color: rgb(0 0 0 / 0.45);
}

.outline-black\/5 {
  outline-color: rgb(0 0 0 / 0.05);
}

.outline-black\/50 {
  outline-color: rgb(0 0 0 / 0.5);
}

.outline-black\/55 {
  outline-color: rgb(0 0 0 / 0.55);
}

.outline-black\/60 {
  outline-color: rgb(0 0 0 / 0.6);
}

.outline-black\/65 {
  outline-color: rgb(0 0 0 / 0.65);
}

.outline-black\/70 {
  outline-color: rgb(0 0 0 / 0.7);
}

.outline-black\/75 {
  outline-color: rgb(0 0 0 / 0.75);
}

.outline-black\/80 {
  outline-color: rgb(0 0 0 / 0.8);
}

.outline-black\/85 {
  outline-color: rgb(0 0 0 / 0.85);
}

.outline-black\/90 {
  outline-color: rgb(0 0 0 / 0.9);
}

.outline-black\/95 {
  outline-color: rgb(0 0 0 / 0.95);
}

.outline-blue-100 {
  outline-color: #dbeafe;
}

.outline-blue-100\/0 {
  outline-color: rgb(219 234 254 / 0);
}

.outline-blue-100\/10 {
  outline-color: rgb(219 234 254 / 0.1);
}

.outline-blue-100\/100 {
  outline-color: rgb(219 234 254 / 1);
}

.outline-blue-100\/15 {
  outline-color: rgb(219 234 254 / 0.15);
}

.outline-blue-100\/20 {
  outline-color: rgb(219 234 254 / 0.2);
}

.outline-blue-100\/25 {
  outline-color: rgb(219 234 254 / 0.25);
}

.outline-blue-100\/30 {
  outline-color: rgb(219 234 254 / 0.3);
}

.outline-blue-100\/35 {
  outline-color: rgb(219 234 254 / 0.35);
}

.outline-blue-100\/40 {
  outline-color: rgb(219 234 254 / 0.4);
}

.outline-blue-100\/45 {
  outline-color: rgb(219 234 254 / 0.45);
}

.outline-blue-100\/5 {
  outline-color: rgb(219 234 254 / 0.05);
}

.outline-blue-100\/50 {
  outline-color: rgb(219 234 254 / 0.5);
}

.outline-blue-100\/55 {
  outline-color: rgb(219 234 254 / 0.55);
}

.outline-blue-100\/60 {
  outline-color: rgb(219 234 254 / 0.6);
}

.outline-blue-100\/65 {
  outline-color: rgb(219 234 254 / 0.65);
}

.outline-blue-100\/70 {
  outline-color: rgb(219 234 254 / 0.7);
}

.outline-blue-100\/75 {
  outline-color: rgb(219 234 254 / 0.75);
}

.outline-blue-100\/80 {
  outline-color: rgb(219 234 254 / 0.8);
}

.outline-blue-100\/85 {
  outline-color: rgb(219 234 254 / 0.85);
}

.outline-blue-100\/90 {
  outline-color: rgb(219 234 254 / 0.9);
}

.outline-blue-100\/95 {
  outline-color: rgb(219 234 254 / 0.95);
}

.outline-blue-200 {
  outline-color: #bfdbfe;
}

.outline-blue-200\/0 {
  outline-color: rgb(191 219 254 / 0);
}

.outline-blue-200\/10 {
  outline-color: rgb(191 219 254 / 0.1);
}

.outline-blue-200\/100 {
  outline-color: rgb(191 219 254 / 1);
}

.outline-blue-200\/15 {
  outline-color: rgb(191 219 254 / 0.15);
}

.outline-blue-200\/20 {
  outline-color: rgb(191 219 254 / 0.2);
}

.outline-blue-200\/25 {
  outline-color: rgb(191 219 254 / 0.25);
}

.outline-blue-200\/30 {
  outline-color: rgb(191 219 254 / 0.3);
}

.outline-blue-200\/35 {
  outline-color: rgb(191 219 254 / 0.35);
}

.outline-blue-200\/40 {
  outline-color: rgb(191 219 254 / 0.4);
}

.outline-blue-200\/45 {
  outline-color: rgb(191 219 254 / 0.45);
}

.outline-blue-200\/5 {
  outline-color: rgb(191 219 254 / 0.05);
}

.outline-blue-200\/50 {
  outline-color: rgb(191 219 254 / 0.5);
}

.outline-blue-200\/55 {
  outline-color: rgb(191 219 254 / 0.55);
}

.outline-blue-200\/60 {
  outline-color: rgb(191 219 254 / 0.6);
}

.outline-blue-200\/65 {
  outline-color: rgb(191 219 254 / 0.65);
}

.outline-blue-200\/70 {
  outline-color: rgb(191 219 254 / 0.7);
}

.outline-blue-200\/75 {
  outline-color: rgb(191 219 254 / 0.75);
}

.outline-blue-200\/80 {
  outline-color: rgb(191 219 254 / 0.8);
}

.outline-blue-200\/85 {
  outline-color: rgb(191 219 254 / 0.85);
}

.outline-blue-200\/90 {
  outline-color: rgb(191 219 254 / 0.9);
}

.outline-blue-200\/95 {
  outline-color: rgb(191 219 254 / 0.95);
}

.outline-blue-300 {
  outline-color: #93c5fd;
}

.outline-blue-300\/0 {
  outline-color: rgb(147 197 253 / 0);
}

.outline-blue-300\/10 {
  outline-color: rgb(147 197 253 / 0.1);
}

.outline-blue-300\/100 {
  outline-color: rgb(147 197 253 / 1);
}

.outline-blue-300\/15 {
  outline-color: rgb(147 197 253 / 0.15);
}

.outline-blue-300\/20 {
  outline-color: rgb(147 197 253 / 0.2);
}

.outline-blue-300\/25 {
  outline-color: rgb(147 197 253 / 0.25);
}

.outline-blue-300\/30 {
  outline-color: rgb(147 197 253 / 0.3);
}

.outline-blue-300\/35 {
  outline-color: rgb(147 197 253 / 0.35);
}

.outline-blue-300\/40 {
  outline-color: rgb(147 197 253 / 0.4);
}

.outline-blue-300\/45 {
  outline-color: rgb(147 197 253 / 0.45);
}

.outline-blue-300\/5 {
  outline-color: rgb(147 197 253 / 0.05);
}

.outline-blue-300\/50 {
  outline-color: rgb(147 197 253 / 0.5);
}

.outline-blue-300\/55 {
  outline-color: rgb(147 197 253 / 0.55);
}

.outline-blue-300\/60 {
  outline-color: rgb(147 197 253 / 0.6);
}

.outline-blue-300\/65 {
  outline-color: rgb(147 197 253 / 0.65);
}

.outline-blue-300\/70 {
  outline-color: rgb(147 197 253 / 0.7);
}

.outline-blue-300\/75 {
  outline-color: rgb(147 197 253 / 0.75);
}

.outline-blue-300\/80 {
  outline-color: rgb(147 197 253 / 0.8);
}

.outline-blue-300\/85 {
  outline-color: rgb(147 197 253 / 0.85);
}

.outline-blue-300\/90 {
  outline-color: rgb(147 197 253 / 0.9);
}

.outline-blue-300\/95 {
  outline-color: rgb(147 197 253 / 0.95);
}

.outline-blue-400 {
  outline-color: #60a5fa;
}

.outline-blue-400\/0 {
  outline-color: rgb(96 165 250 / 0);
}

.outline-blue-400\/10 {
  outline-color: rgb(96 165 250 / 0.1);
}

.outline-blue-400\/100 {
  outline-color: rgb(96 165 250 / 1);
}

.outline-blue-400\/15 {
  outline-color: rgb(96 165 250 / 0.15);
}

.outline-blue-400\/20 {
  outline-color: rgb(96 165 250 / 0.2);
}

.outline-blue-400\/25 {
  outline-color: rgb(96 165 250 / 0.25);
}

.outline-blue-400\/30 {
  outline-color: rgb(96 165 250 / 0.3);
}

.outline-blue-400\/35 {
  outline-color: rgb(96 165 250 / 0.35);
}

.outline-blue-400\/40 {
  outline-color: rgb(96 165 250 / 0.4);
}

.outline-blue-400\/45 {
  outline-color: rgb(96 165 250 / 0.45);
}

.outline-blue-400\/5 {
  outline-color: rgb(96 165 250 / 0.05);
}

.outline-blue-400\/50 {
  outline-color: rgb(96 165 250 / 0.5);
}

.outline-blue-400\/55 {
  outline-color: rgb(96 165 250 / 0.55);
}

.outline-blue-400\/60 {
  outline-color: rgb(96 165 250 / 0.6);
}

.outline-blue-400\/65 {
  outline-color: rgb(96 165 250 / 0.65);
}

.outline-blue-400\/70 {
  outline-color: rgb(96 165 250 / 0.7);
}

.outline-blue-400\/75 {
  outline-color: rgb(96 165 250 / 0.75);
}

.outline-blue-400\/80 {
  outline-color: rgb(96 165 250 / 0.8);
}

.outline-blue-400\/85 {
  outline-color: rgb(96 165 250 / 0.85);
}

.outline-blue-400\/90 {
  outline-color: rgb(96 165 250 / 0.9);
}

.outline-blue-400\/95 {
  outline-color: rgb(96 165 250 / 0.95);
}

.outline-blue-50 {
  outline-color: #eff6ff;
}

.outline-blue-50\/0 {
  outline-color: rgb(239 246 255 / 0);
}

.outline-blue-50\/10 {
  outline-color: rgb(239 246 255 / 0.1);
}

.outline-blue-50\/100 {
  outline-color: rgb(239 246 255 / 1);
}

.outline-blue-50\/15 {
  outline-color: rgb(239 246 255 / 0.15);
}

.outline-blue-50\/20 {
  outline-color: rgb(239 246 255 / 0.2);
}

.outline-blue-50\/25 {
  outline-color: rgb(239 246 255 / 0.25);
}

.outline-blue-50\/30 {
  outline-color: rgb(239 246 255 / 0.3);
}

.outline-blue-50\/35 {
  outline-color: rgb(239 246 255 / 0.35);
}

.outline-blue-50\/40 {
  outline-color: rgb(239 246 255 / 0.4);
}

.outline-blue-50\/45 {
  outline-color: rgb(239 246 255 / 0.45);
}

.outline-blue-50\/5 {
  outline-color: rgb(239 246 255 / 0.05);
}

.outline-blue-50\/50 {
  outline-color: rgb(239 246 255 / 0.5);
}

.outline-blue-50\/55 {
  outline-color: rgb(239 246 255 / 0.55);
}

.outline-blue-50\/60 {
  outline-color: rgb(239 246 255 / 0.6);
}

.outline-blue-50\/65 {
  outline-color: rgb(239 246 255 / 0.65);
}

.outline-blue-50\/70 {
  outline-color: rgb(239 246 255 / 0.7);
}

.outline-blue-50\/75 {
  outline-color: rgb(239 246 255 / 0.75);
}

.outline-blue-50\/80 {
  outline-color: rgb(239 246 255 / 0.8);
}

.outline-blue-50\/85 {
  outline-color: rgb(239 246 255 / 0.85);
}

.outline-blue-50\/90 {
  outline-color: rgb(239 246 255 / 0.9);
}

.outline-blue-50\/95 {
  outline-color: rgb(239 246 255 / 0.95);
}

.outline-blue-500 {
  outline-color: #3b82f6;
}

.outline-blue-500\/0 {
  outline-color: rgb(59 130 246 / 0);
}

.outline-blue-500\/10 {
  outline-color: rgb(59 130 246 / 0.1);
}

.outline-blue-500\/100 {
  outline-color: rgb(59 130 246 / 1);
}

.outline-blue-500\/15 {
  outline-color: rgb(59 130 246 / 0.15);
}

.outline-blue-500\/20 {
  outline-color: rgb(59 130 246 / 0.2);
}

.outline-blue-500\/25 {
  outline-color: rgb(59 130 246 / 0.25);
}

.outline-blue-500\/30 {
  outline-color: rgb(59 130 246 / 0.3);
}

.outline-blue-500\/35 {
  outline-color: rgb(59 130 246 / 0.35);
}

.outline-blue-500\/40 {
  outline-color: rgb(59 130 246 / 0.4);
}

.outline-blue-500\/45 {
  outline-color: rgb(59 130 246 / 0.45);
}

.outline-blue-500\/5 {
  outline-color: rgb(59 130 246 / 0.05);
}

.outline-blue-500\/50 {
  outline-color: rgb(59 130 246 / 0.5);
}

.outline-blue-500\/55 {
  outline-color: rgb(59 130 246 / 0.55);
}

.outline-blue-500\/60 {
  outline-color: rgb(59 130 246 / 0.6);
}

.outline-blue-500\/65 {
  outline-color: rgb(59 130 246 / 0.65);
}

.outline-blue-500\/70 {
  outline-color: rgb(59 130 246 / 0.7);
}

.outline-blue-500\/75 {
  outline-color: rgb(59 130 246 / 0.75);
}

.outline-blue-500\/80 {
  outline-color: rgb(59 130 246 / 0.8);
}

.outline-blue-500\/85 {
  outline-color: rgb(59 130 246 / 0.85);
}

.outline-blue-500\/90 {
  outline-color: rgb(59 130 246 / 0.9);
}

.outline-blue-500\/95 {
  outline-color: rgb(59 130 246 / 0.95);
}

.outline-blue-600 {
  outline-color: #2563eb;
}

.outline-blue-600\/0 {
  outline-color: rgb(37 99 235 / 0);
}

.outline-blue-600\/10 {
  outline-color: rgb(37 99 235 / 0.1);
}

.outline-blue-600\/100 {
  outline-color: rgb(37 99 235 / 1);
}

.outline-blue-600\/15 {
  outline-color: rgb(37 99 235 / 0.15);
}

.outline-blue-600\/20 {
  outline-color: rgb(37 99 235 / 0.2);
}

.outline-blue-600\/25 {
  outline-color: rgb(37 99 235 / 0.25);
}

.outline-blue-600\/30 {
  outline-color: rgb(37 99 235 / 0.3);
}

.outline-blue-600\/35 {
  outline-color: rgb(37 99 235 / 0.35);
}

.outline-blue-600\/40 {
  outline-color: rgb(37 99 235 / 0.4);
}

.outline-blue-600\/45 {
  outline-color: rgb(37 99 235 / 0.45);
}

.outline-blue-600\/5 {
  outline-color: rgb(37 99 235 / 0.05);
}

.outline-blue-600\/50 {
  outline-color: rgb(37 99 235 / 0.5);
}

.outline-blue-600\/55 {
  outline-color: rgb(37 99 235 / 0.55);
}

.outline-blue-600\/60 {
  outline-color: rgb(37 99 235 / 0.6);
}

.outline-blue-600\/65 {
  outline-color: rgb(37 99 235 / 0.65);
}

.outline-blue-600\/70 {
  outline-color: rgb(37 99 235 / 0.7);
}

.outline-blue-600\/75 {
  outline-color: rgb(37 99 235 / 0.75);
}

.outline-blue-600\/80 {
  outline-color: rgb(37 99 235 / 0.8);
}

.outline-blue-600\/85 {
  outline-color: rgb(37 99 235 / 0.85);
}

.outline-blue-600\/90 {
  outline-color: rgb(37 99 235 / 0.9);
}

.outline-blue-600\/95 {
  outline-color: rgb(37 99 235 / 0.95);
}

.outline-blue-700 {
  outline-color: #1d4ed8;
}

.outline-blue-700\/0 {
  outline-color: rgb(29 78 216 / 0);
}

.outline-blue-700\/10 {
  outline-color: rgb(29 78 216 / 0.1);
}

.outline-blue-700\/100 {
  outline-color: rgb(29 78 216 / 1);
}

.outline-blue-700\/15 {
  outline-color: rgb(29 78 216 / 0.15);
}

.outline-blue-700\/20 {
  outline-color: rgb(29 78 216 / 0.2);
}

.outline-blue-700\/25 {
  outline-color: rgb(29 78 216 / 0.25);
}

.outline-blue-700\/30 {
  outline-color: rgb(29 78 216 / 0.3);
}

.outline-blue-700\/35 {
  outline-color: rgb(29 78 216 / 0.35);
}

.outline-blue-700\/40 {
  outline-color: rgb(29 78 216 / 0.4);
}

.outline-blue-700\/45 {
  outline-color: rgb(29 78 216 / 0.45);
}

.outline-blue-700\/5 {
  outline-color: rgb(29 78 216 / 0.05);
}

.outline-blue-700\/50 {
  outline-color: rgb(29 78 216 / 0.5);
}

.outline-blue-700\/55 {
  outline-color: rgb(29 78 216 / 0.55);
}

.outline-blue-700\/60 {
  outline-color: rgb(29 78 216 / 0.6);
}

.outline-blue-700\/65 {
  outline-color: rgb(29 78 216 / 0.65);
}

.outline-blue-700\/70 {
  outline-color: rgb(29 78 216 / 0.7);
}

.outline-blue-700\/75 {
  outline-color: rgb(29 78 216 / 0.75);
}

.outline-blue-700\/80 {
  outline-color: rgb(29 78 216 / 0.8);
}

.outline-blue-700\/85 {
  outline-color: rgb(29 78 216 / 0.85);
}

.outline-blue-700\/90 {
  outline-color: rgb(29 78 216 / 0.9);
}

.outline-blue-700\/95 {
  outline-color: rgb(29 78 216 / 0.95);
}

.outline-blue-800 {
  outline-color: #1e40af;
}

.outline-blue-800\/0 {
  outline-color: rgb(30 64 175 / 0);
}

.outline-blue-800\/10 {
  outline-color: rgb(30 64 175 / 0.1);
}

.outline-blue-800\/100 {
  outline-color: rgb(30 64 175 / 1);
}

.outline-blue-800\/15 {
  outline-color: rgb(30 64 175 / 0.15);
}

.outline-blue-800\/20 {
  outline-color: rgb(30 64 175 / 0.2);
}

.outline-blue-800\/25 {
  outline-color: rgb(30 64 175 / 0.25);
}

.outline-blue-800\/30 {
  outline-color: rgb(30 64 175 / 0.3);
}

.outline-blue-800\/35 {
  outline-color: rgb(30 64 175 / 0.35);
}

.outline-blue-800\/40 {
  outline-color: rgb(30 64 175 / 0.4);
}

.outline-blue-800\/45 {
  outline-color: rgb(30 64 175 / 0.45);
}

.outline-blue-800\/5 {
  outline-color: rgb(30 64 175 / 0.05);
}

.outline-blue-800\/50 {
  outline-color: rgb(30 64 175 / 0.5);
}

.outline-blue-800\/55 {
  outline-color: rgb(30 64 175 / 0.55);
}

.outline-blue-800\/60 {
  outline-color: rgb(30 64 175 / 0.6);
}

.outline-blue-800\/65 {
  outline-color: rgb(30 64 175 / 0.65);
}

.outline-blue-800\/70 {
  outline-color: rgb(30 64 175 / 0.7);
}

.outline-blue-800\/75 {
  outline-color: rgb(30 64 175 / 0.75);
}

.outline-blue-800\/80 {
  outline-color: rgb(30 64 175 / 0.8);
}

.outline-blue-800\/85 {
  outline-color: rgb(30 64 175 / 0.85);
}

.outline-blue-800\/90 {
  outline-color: rgb(30 64 175 / 0.9);
}

.outline-blue-800\/95 {
  outline-color: rgb(30 64 175 / 0.95);
}

.outline-blue-900 {
  outline-color: #1e3a8a;
}

.outline-blue-900\/0 {
  outline-color: rgb(30 58 138 / 0);
}

.outline-blue-900\/10 {
  outline-color: rgb(30 58 138 / 0.1);
}

.outline-blue-900\/100 {
  outline-color: rgb(30 58 138 / 1);
}

.outline-blue-900\/15 {
  outline-color: rgb(30 58 138 / 0.15);
}

.outline-blue-900\/20 {
  outline-color: rgb(30 58 138 / 0.2);
}

.outline-blue-900\/25 {
  outline-color: rgb(30 58 138 / 0.25);
}

.outline-blue-900\/30 {
  outline-color: rgb(30 58 138 / 0.3);
}

.outline-blue-900\/35 {
  outline-color: rgb(30 58 138 / 0.35);
}

.outline-blue-900\/40 {
  outline-color: rgb(30 58 138 / 0.4);
}

.outline-blue-900\/45 {
  outline-color: rgb(30 58 138 / 0.45);
}

.outline-blue-900\/5 {
  outline-color: rgb(30 58 138 / 0.05);
}

.outline-blue-900\/50 {
  outline-color: rgb(30 58 138 / 0.5);
}

.outline-blue-900\/55 {
  outline-color: rgb(30 58 138 / 0.55);
}

.outline-blue-900\/60 {
  outline-color: rgb(30 58 138 / 0.6);
}

.outline-blue-900\/65 {
  outline-color: rgb(30 58 138 / 0.65);
}

.outline-blue-900\/70 {
  outline-color: rgb(30 58 138 / 0.7);
}

.outline-blue-900\/75 {
  outline-color: rgb(30 58 138 / 0.75);
}

.outline-blue-900\/80 {
  outline-color: rgb(30 58 138 / 0.8);
}

.outline-blue-900\/85 {
  outline-color: rgb(30 58 138 / 0.85);
}

.outline-blue-900\/90 {
  outline-color: rgb(30 58 138 / 0.9);
}

.outline-blue-900\/95 {
  outline-color: rgb(30 58 138 / 0.95);
}

.outline-blue-950 {
  outline-color: #172554;
}

.outline-blue-950\/0 {
  outline-color: rgb(23 37 84 / 0);
}

.outline-blue-950\/10 {
  outline-color: rgb(23 37 84 / 0.1);
}

.outline-blue-950\/100 {
  outline-color: rgb(23 37 84 / 1);
}

.outline-blue-950\/15 {
  outline-color: rgb(23 37 84 / 0.15);
}

.outline-blue-950\/20 {
  outline-color: rgb(23 37 84 / 0.2);
}

.outline-blue-950\/25 {
  outline-color: rgb(23 37 84 / 0.25);
}

.outline-blue-950\/30 {
  outline-color: rgb(23 37 84 / 0.3);
}

.outline-blue-950\/35 {
  outline-color: rgb(23 37 84 / 0.35);
}

.outline-blue-950\/40 {
  outline-color: rgb(23 37 84 / 0.4);
}

.outline-blue-950\/45 {
  outline-color: rgb(23 37 84 / 0.45);
}

.outline-blue-950\/5 {
  outline-color: rgb(23 37 84 / 0.05);
}

.outline-blue-950\/50 {
  outline-color: rgb(23 37 84 / 0.5);
}

.outline-blue-950\/55 {
  outline-color: rgb(23 37 84 / 0.55);
}

.outline-blue-950\/60 {
  outline-color: rgb(23 37 84 / 0.6);
}

.outline-blue-950\/65 {
  outline-color: rgb(23 37 84 / 0.65);
}

.outline-blue-950\/70 {
  outline-color: rgb(23 37 84 / 0.7);
}

.outline-blue-950\/75 {
  outline-color: rgb(23 37 84 / 0.75);
}

.outline-blue-950\/80 {
  outline-color: rgb(23 37 84 / 0.8);
}

.outline-blue-950\/85 {
  outline-color: rgb(23 37 84 / 0.85);
}

.outline-blue-950\/90 {
  outline-color: rgb(23 37 84 / 0.9);
}

.outline-blue-950\/95 {
  outline-color: rgb(23 37 84 / 0.95);
}

.outline-current {
  outline-color: currentColor;
}

.outline-eva-blue {
  outline-color: #1A213E;
}

.outline-eva-blue-appt {
  outline-color: rgba(52, 137, 207);
}

.outline-eva-blue-appt\/0 {
  outline-color: rgba(52, 137, 207, 0);
}

.outline-eva-blue-appt\/10 {
  outline-color: rgba(52, 137, 207, 0.1);
}

.outline-eva-blue-appt\/100 {
  outline-color: rgba(52, 137, 207, 1);
}

.outline-eva-blue-appt\/15 {
  outline-color: rgba(52, 137, 207, 0.15);
}

.outline-eva-blue-appt\/20 {
  outline-color: rgba(52, 137, 207, 0.2);
}

.outline-eva-blue-appt\/25 {
  outline-color: rgba(52, 137, 207, 0.25);
}

.outline-eva-blue-appt\/30 {
  outline-color: rgba(52, 137, 207, 0.3);
}

.outline-eva-blue-appt\/35 {
  outline-color: rgba(52, 137, 207, 0.35);
}

.outline-eva-blue-appt\/40 {
  outline-color: rgba(52, 137, 207, 0.4);
}

.outline-eva-blue-appt\/45 {
  outline-color: rgba(52, 137, 207, 0.45);
}

.outline-eva-blue-appt\/5 {
  outline-color: rgba(52, 137, 207, 0.05);
}

.outline-eva-blue-appt\/50 {
  outline-color: rgba(52, 137, 207, 0.5);
}

.outline-eva-blue-appt\/55 {
  outline-color: rgba(52, 137, 207, 0.55);
}

.outline-eva-blue-appt\/60 {
  outline-color: rgba(52, 137, 207, 0.6);
}

.outline-eva-blue-appt\/65 {
  outline-color: rgba(52, 137, 207, 0.65);
}

.outline-eva-blue-appt\/70 {
  outline-color: rgba(52, 137, 207, 0.7);
}

.outline-eva-blue-appt\/75 {
  outline-color: rgba(52, 137, 207, 0.75);
}

.outline-eva-blue-appt\/80 {
  outline-color: rgba(52, 137, 207, 0.8);
}

.outline-eva-blue-appt\/85 {
  outline-color: rgba(52, 137, 207, 0.85);
}

.outline-eva-blue-appt\/90 {
  outline-color: rgba(52, 137, 207, 0.9);
}

.outline-eva-blue-appt\/95 {
  outline-color: rgba(52, 137, 207, 0.95);
}

.outline-eva-blue-gray {
  outline-color: #75798b;
}

.outline-eva-blue-gray\/0 {
  outline-color: rgb(117 121 139 / 0);
}

.outline-eva-blue-gray\/10 {
  outline-color: rgb(117 121 139 / 0.1);
}

.outline-eva-blue-gray\/100 {
  outline-color: rgb(117 121 139 / 1);
}

.outline-eva-blue-gray\/15 {
  outline-color: rgb(117 121 139 / 0.15);
}

.outline-eva-blue-gray\/20 {
  outline-color: rgb(117 121 139 / 0.2);
}

.outline-eva-blue-gray\/25 {
  outline-color: rgb(117 121 139 / 0.25);
}

.outline-eva-blue-gray\/30 {
  outline-color: rgb(117 121 139 / 0.3);
}

.outline-eva-blue-gray\/35 {
  outline-color: rgb(117 121 139 / 0.35);
}

.outline-eva-blue-gray\/40 {
  outline-color: rgb(117 121 139 / 0.4);
}

.outline-eva-blue-gray\/45 {
  outline-color: rgb(117 121 139 / 0.45);
}

.outline-eva-blue-gray\/5 {
  outline-color: rgb(117 121 139 / 0.05);
}

.outline-eva-blue-gray\/50 {
  outline-color: rgb(117 121 139 / 0.5);
}

.outline-eva-blue-gray\/55 {
  outline-color: rgb(117 121 139 / 0.55);
}

.outline-eva-blue-gray\/60 {
  outline-color: rgb(117 121 139 / 0.6);
}

.outline-eva-blue-gray\/65 {
  outline-color: rgb(117 121 139 / 0.65);
}

.outline-eva-blue-gray\/70 {
  outline-color: rgb(117 121 139 / 0.7);
}

.outline-eva-blue-gray\/75 {
  outline-color: rgb(117 121 139 / 0.75);
}

.outline-eva-blue-gray\/80 {
  outline-color: rgb(117 121 139 / 0.8);
}

.outline-eva-blue-gray\/85 {
  outline-color: rgb(117 121 139 / 0.85);
}

.outline-eva-blue-gray\/90 {
  outline-color: rgb(117 121 139 / 0.9);
}

.outline-eva-blue-gray\/95 {
  outline-color: rgb(117 121 139 / 0.95);
}

.outline-eva-blue-hv {
  outline-color: #0f121f;
}

.outline-eva-blue-hv\/0 {
  outline-color: rgb(15 18 31 / 0);
}

.outline-eva-blue-hv\/10 {
  outline-color: rgb(15 18 31 / 0.1);
}

.outline-eva-blue-hv\/100 {
  outline-color: rgb(15 18 31 / 1);
}

.outline-eva-blue-hv\/15 {
  outline-color: rgb(15 18 31 / 0.15);
}

.outline-eva-blue-hv\/20 {
  outline-color: rgb(15 18 31 / 0.2);
}

.outline-eva-blue-hv\/25 {
  outline-color: rgb(15 18 31 / 0.25);
}

.outline-eva-blue-hv\/30 {
  outline-color: rgb(15 18 31 / 0.3);
}

.outline-eva-blue-hv\/35 {
  outline-color: rgb(15 18 31 / 0.35);
}

.outline-eva-blue-hv\/40 {
  outline-color: rgb(15 18 31 / 0.4);
}

.outline-eva-blue-hv\/45 {
  outline-color: rgb(15 18 31 / 0.45);
}

.outline-eva-blue-hv\/5 {
  outline-color: rgb(15 18 31 / 0.05);
}

.outline-eva-blue-hv\/50 {
  outline-color: rgb(15 18 31 / 0.5);
}

.outline-eva-blue-hv\/55 {
  outline-color: rgb(15 18 31 / 0.55);
}

.outline-eva-blue-hv\/60 {
  outline-color: rgb(15 18 31 / 0.6);
}

.outline-eva-blue-hv\/65 {
  outline-color: rgb(15 18 31 / 0.65);
}

.outline-eva-blue-hv\/70 {
  outline-color: rgb(15 18 31 / 0.7);
}

.outline-eva-blue-hv\/75 {
  outline-color: rgb(15 18 31 / 0.75);
}

.outline-eva-blue-hv\/80 {
  outline-color: rgb(15 18 31 / 0.8);
}

.outline-eva-blue-hv\/85 {
  outline-color: rgb(15 18 31 / 0.85);
}

.outline-eva-blue-hv\/90 {
  outline-color: rgb(15 18 31 / 0.9);
}

.outline-eva-blue-hv\/95 {
  outline-color: rgb(15 18 31 / 0.95);
}

.outline-eva-blue-light {
  outline-color: #303851;
}

.outline-eva-blue-light-hv {
  outline-color: rgba(17,20,30,.3);
}

.outline-eva-blue-light-hv\/0 {
  outline-color: rgba(17, 20, 30, 0);
}

.outline-eva-blue-light-hv\/10 {
  outline-color: rgba(17, 20, 30, 0.1);
}

.outline-eva-blue-light-hv\/100 {
  outline-color: rgba(17, 20, 30, 1);
}

.outline-eva-blue-light-hv\/15 {
  outline-color: rgba(17, 20, 30, 0.15);
}

.outline-eva-blue-light-hv\/20 {
  outline-color: rgba(17, 20, 30, 0.2);
}

.outline-eva-blue-light-hv\/25 {
  outline-color: rgba(17, 20, 30, 0.25);
}

.outline-eva-blue-light-hv\/30 {
  outline-color: rgba(17, 20, 30, 0.3);
}

.outline-eva-blue-light-hv\/35 {
  outline-color: rgba(17, 20, 30, 0.35);
}

.outline-eva-blue-light-hv\/40 {
  outline-color: rgba(17, 20, 30, 0.4);
}

.outline-eva-blue-light-hv\/45 {
  outline-color: rgba(17, 20, 30, 0.45);
}

.outline-eva-blue-light-hv\/5 {
  outline-color: rgba(17, 20, 30, 0.05);
}

.outline-eva-blue-light-hv\/50 {
  outline-color: rgba(17, 20, 30, 0.5);
}

.outline-eva-blue-light-hv\/55 {
  outline-color: rgba(17, 20, 30, 0.55);
}

.outline-eva-blue-light-hv\/60 {
  outline-color: rgba(17, 20, 30, 0.6);
}

.outline-eva-blue-light-hv\/65 {
  outline-color: rgba(17, 20, 30, 0.65);
}

.outline-eva-blue-light-hv\/70 {
  outline-color: rgba(17, 20, 30, 0.7);
}

.outline-eva-blue-light-hv\/75 {
  outline-color: rgba(17, 20, 30, 0.75);
}

.outline-eva-blue-light-hv\/80 {
  outline-color: rgba(17, 20, 30, 0.8);
}

.outline-eva-blue-light-hv\/85 {
  outline-color: rgba(17, 20, 30, 0.85);
}

.outline-eva-blue-light-hv\/90 {
  outline-color: rgba(17, 20, 30, 0.9);
}

.outline-eva-blue-light-hv\/95 {
  outline-color: rgba(17, 20, 30, 0.95);
}

.outline-eva-blue-light\/0 {
  outline-color: rgb(48 56 81 / 0);
}

.outline-eva-blue-light\/10 {
  outline-color: rgb(48 56 81 / 0.1);
}

.outline-eva-blue-light\/100 {
  outline-color: rgb(48 56 81 / 1);
}

.outline-eva-blue-light\/15 {
  outline-color: rgb(48 56 81 / 0.15);
}

.outline-eva-blue-light\/20 {
  outline-color: rgb(48 56 81 / 0.2);
}

.outline-eva-blue-light\/25 {
  outline-color: rgb(48 56 81 / 0.25);
}

.outline-eva-blue-light\/30 {
  outline-color: rgb(48 56 81 / 0.3);
}

.outline-eva-blue-light\/35 {
  outline-color: rgb(48 56 81 / 0.35);
}

.outline-eva-blue-light\/40 {
  outline-color: rgb(48 56 81 / 0.4);
}

.outline-eva-blue-light\/45 {
  outline-color: rgb(48 56 81 / 0.45);
}

.outline-eva-blue-light\/5 {
  outline-color: rgb(48 56 81 / 0.05);
}

.outline-eva-blue-light\/50 {
  outline-color: rgb(48 56 81 / 0.5);
}

.outline-eva-blue-light\/55 {
  outline-color: rgb(48 56 81 / 0.55);
}

.outline-eva-blue-light\/60 {
  outline-color: rgb(48 56 81 / 0.6);
}

.outline-eva-blue-light\/65 {
  outline-color: rgb(48 56 81 / 0.65);
}

.outline-eva-blue-light\/70 {
  outline-color: rgb(48 56 81 / 0.7);
}

.outline-eva-blue-light\/75 {
  outline-color: rgb(48 56 81 / 0.75);
}

.outline-eva-blue-light\/80 {
  outline-color: rgb(48 56 81 / 0.8);
}

.outline-eva-blue-light\/85 {
  outline-color: rgb(48 56 81 / 0.85);
}

.outline-eva-blue-light\/90 {
  outline-color: rgb(48 56 81 / 0.9);
}

.outline-eva-blue-light\/95 {
  outline-color: rgb(48 56 81 / 0.95);
}

.outline-eva-blue\/0 {
  outline-color: rgb(26 33 62 / 0);
}

.outline-eva-blue\/10 {
  outline-color: rgb(26 33 62 / 0.1);
}

.outline-eva-blue\/100 {
  outline-color: rgb(26 33 62 / 1);
}

.outline-eva-blue\/15 {
  outline-color: rgb(26 33 62 / 0.15);
}

.outline-eva-blue\/20 {
  outline-color: rgb(26 33 62 / 0.2);
}

.outline-eva-blue\/25 {
  outline-color: rgb(26 33 62 / 0.25);
}

.outline-eva-blue\/30 {
  outline-color: rgb(26 33 62 / 0.3);
}

.outline-eva-blue\/35 {
  outline-color: rgb(26 33 62 / 0.35);
}

.outline-eva-blue\/40 {
  outline-color: rgb(26 33 62 / 0.4);
}

.outline-eva-blue\/45 {
  outline-color: rgb(26 33 62 / 0.45);
}

.outline-eva-blue\/5 {
  outline-color: rgb(26 33 62 / 0.05);
}

.outline-eva-blue\/50 {
  outline-color: rgb(26 33 62 / 0.5);
}

.outline-eva-blue\/55 {
  outline-color: rgb(26 33 62 / 0.55);
}

.outline-eva-blue\/60 {
  outline-color: rgb(26 33 62 / 0.6);
}

.outline-eva-blue\/65 {
  outline-color: rgb(26 33 62 / 0.65);
}

.outline-eva-blue\/70 {
  outline-color: rgb(26 33 62 / 0.7);
}

.outline-eva-blue\/75 {
  outline-color: rgb(26 33 62 / 0.75);
}

.outline-eva-blue\/80 {
  outline-color: rgb(26 33 62 / 0.8);
}

.outline-eva-blue\/85 {
  outline-color: rgb(26 33 62 / 0.85);
}

.outline-eva-blue\/90 {
  outline-color: rgb(26 33 62 / 0.9);
}

.outline-eva-blue\/95 {
  outline-color: rgb(26 33 62 / 0.95);
}

.outline-eva-brown-appt {
  outline-color: rgba(99, 93, 94, 1);
}

.outline-eva-brown-appt\/0 {
  outline-color: rgba(99, 93, 94, 0);
}

.outline-eva-brown-appt\/10 {
  outline-color: rgba(99, 93, 94, 0.1);
}

.outline-eva-brown-appt\/100 {
  outline-color: rgba(99, 93, 94, 1);
}

.outline-eva-brown-appt\/15 {
  outline-color: rgba(99, 93, 94, 0.15);
}

.outline-eva-brown-appt\/20 {
  outline-color: rgba(99, 93, 94, 0.2);
}

.outline-eva-brown-appt\/25 {
  outline-color: rgba(99, 93, 94, 0.25);
}

.outline-eva-brown-appt\/30 {
  outline-color: rgba(99, 93, 94, 0.3);
}

.outline-eva-brown-appt\/35 {
  outline-color: rgba(99, 93, 94, 0.35);
}

.outline-eva-brown-appt\/40 {
  outline-color: rgba(99, 93, 94, 0.4);
}

.outline-eva-brown-appt\/45 {
  outline-color: rgba(99, 93, 94, 0.45);
}

.outline-eva-brown-appt\/5 {
  outline-color: rgba(99, 93, 94, 0.05);
}

.outline-eva-brown-appt\/50 {
  outline-color: rgba(99, 93, 94, 0.5);
}

.outline-eva-brown-appt\/55 {
  outline-color: rgba(99, 93, 94, 0.55);
}

.outline-eva-brown-appt\/60 {
  outline-color: rgba(99, 93, 94, 0.6);
}

.outline-eva-brown-appt\/65 {
  outline-color: rgba(99, 93, 94, 0.65);
}

.outline-eva-brown-appt\/70 {
  outline-color: rgba(99, 93, 94, 0.7);
}

.outline-eva-brown-appt\/75 {
  outline-color: rgba(99, 93, 94, 0.75);
}

.outline-eva-brown-appt\/80 {
  outline-color: rgba(99, 93, 94, 0.8);
}

.outline-eva-brown-appt\/85 {
  outline-color: rgba(99, 93, 94, 0.85);
}

.outline-eva-brown-appt\/90 {
  outline-color: rgba(99, 93, 94, 0.9);
}

.outline-eva-brown-appt\/95 {
  outline-color: rgba(99, 93, 94, 0.95);
}

.outline-eva-dark-green-appt {
  outline-color: rgba(102, 188, 130, 1);
}

.outline-eva-dark-green-appt\/0 {
  outline-color: rgba(102, 188, 130, 0);
}

.outline-eva-dark-green-appt\/10 {
  outline-color: rgba(102, 188, 130, 0.1);
}

.outline-eva-dark-green-appt\/100 {
  outline-color: rgba(102, 188, 130, 1);
}

.outline-eva-dark-green-appt\/15 {
  outline-color: rgba(102, 188, 130, 0.15);
}

.outline-eva-dark-green-appt\/20 {
  outline-color: rgba(102, 188, 130, 0.2);
}

.outline-eva-dark-green-appt\/25 {
  outline-color: rgba(102, 188, 130, 0.25);
}

.outline-eva-dark-green-appt\/30 {
  outline-color: rgba(102, 188, 130, 0.3);
}

.outline-eva-dark-green-appt\/35 {
  outline-color: rgba(102, 188, 130, 0.35);
}

.outline-eva-dark-green-appt\/40 {
  outline-color: rgba(102, 188, 130, 0.4);
}

.outline-eva-dark-green-appt\/45 {
  outline-color: rgba(102, 188, 130, 0.45);
}

.outline-eva-dark-green-appt\/5 {
  outline-color: rgba(102, 188, 130, 0.05);
}

.outline-eva-dark-green-appt\/50 {
  outline-color: rgba(102, 188, 130, 0.5);
}

.outline-eva-dark-green-appt\/55 {
  outline-color: rgba(102, 188, 130, 0.55);
}

.outline-eva-dark-green-appt\/60 {
  outline-color: rgba(102, 188, 130, 0.6);
}

.outline-eva-dark-green-appt\/65 {
  outline-color: rgba(102, 188, 130, 0.65);
}

.outline-eva-dark-green-appt\/70 {
  outline-color: rgba(102, 188, 130, 0.7);
}

.outline-eva-dark-green-appt\/75 {
  outline-color: rgba(102, 188, 130, 0.75);
}

.outline-eva-dark-green-appt\/80 {
  outline-color: rgba(102, 188, 130, 0.8);
}

.outline-eva-dark-green-appt\/85 {
  outline-color: rgba(102, 188, 130, 0.85);
}

.outline-eva-dark-green-appt\/90 {
  outline-color: rgba(102, 188, 130, 0.9);
}

.outline-eva-dark-green-appt\/95 {
  outline-color: rgba(102, 188, 130, 0.95);
}

.outline-eva-dark-red-appt {
  outline-color: rgba(198, 102, 94, 1);
}

.outline-eva-dark-red-appt\/0 {
  outline-color: rgba(198, 102, 94, 0);
}

.outline-eva-dark-red-appt\/10 {
  outline-color: rgba(198, 102, 94, 0.1);
}

.outline-eva-dark-red-appt\/100 {
  outline-color: rgba(198, 102, 94, 1);
}

.outline-eva-dark-red-appt\/15 {
  outline-color: rgba(198, 102, 94, 0.15);
}

.outline-eva-dark-red-appt\/20 {
  outline-color: rgba(198, 102, 94, 0.2);
}

.outline-eva-dark-red-appt\/25 {
  outline-color: rgba(198, 102, 94, 0.25);
}

.outline-eva-dark-red-appt\/30 {
  outline-color: rgba(198, 102, 94, 0.3);
}

.outline-eva-dark-red-appt\/35 {
  outline-color: rgba(198, 102, 94, 0.35);
}

.outline-eva-dark-red-appt\/40 {
  outline-color: rgba(198, 102, 94, 0.4);
}

.outline-eva-dark-red-appt\/45 {
  outline-color: rgba(198, 102, 94, 0.45);
}

.outline-eva-dark-red-appt\/5 {
  outline-color: rgba(198, 102, 94, 0.05);
}

.outline-eva-dark-red-appt\/50 {
  outline-color: rgba(198, 102, 94, 0.5);
}

.outline-eva-dark-red-appt\/55 {
  outline-color: rgba(198, 102, 94, 0.55);
}

.outline-eva-dark-red-appt\/60 {
  outline-color: rgba(198, 102, 94, 0.6);
}

.outline-eva-dark-red-appt\/65 {
  outline-color: rgba(198, 102, 94, 0.65);
}

.outline-eva-dark-red-appt\/70 {
  outline-color: rgba(198, 102, 94, 0.7);
}

.outline-eva-dark-red-appt\/75 {
  outline-color: rgba(198, 102, 94, 0.75);
}

.outline-eva-dark-red-appt\/80 {
  outline-color: rgba(198, 102, 94, 0.8);
}

.outline-eva-dark-red-appt\/85 {
  outline-color: rgba(198, 102, 94, 0.85);
}

.outline-eva-dark-red-appt\/90 {
  outline-color: rgba(198, 102, 94, 0.9);
}

.outline-eva-dark-red-appt\/95 {
  outline-color: rgba(198, 102, 94, 0.95);
}

.outline-eva-green {
  outline-color: #49B5A8;
}

.outline-eva-green-appt {
  outline-color: rgba(128, 215, 109);
}

.outline-eva-green-appt\/0 {
  outline-color: rgba(128, 215, 109, 0);
}

.outline-eva-green-appt\/10 {
  outline-color: rgba(128, 215, 109, 0.1);
}

.outline-eva-green-appt\/100 {
  outline-color: rgba(128, 215, 109, 1);
}

.outline-eva-green-appt\/15 {
  outline-color: rgba(128, 215, 109, 0.15);
}

.outline-eva-green-appt\/20 {
  outline-color: rgba(128, 215, 109, 0.2);
}

.outline-eva-green-appt\/25 {
  outline-color: rgba(128, 215, 109, 0.25);
}

.outline-eva-green-appt\/30 {
  outline-color: rgba(128, 215, 109, 0.3);
}

.outline-eva-green-appt\/35 {
  outline-color: rgba(128, 215, 109, 0.35);
}

.outline-eva-green-appt\/40 {
  outline-color: rgba(128, 215, 109, 0.4);
}

.outline-eva-green-appt\/45 {
  outline-color: rgba(128, 215, 109, 0.45);
}

.outline-eva-green-appt\/5 {
  outline-color: rgba(128, 215, 109, 0.05);
}

.outline-eva-green-appt\/50 {
  outline-color: rgba(128, 215, 109, 0.5);
}

.outline-eva-green-appt\/55 {
  outline-color: rgba(128, 215, 109, 0.55);
}

.outline-eva-green-appt\/60 {
  outline-color: rgba(128, 215, 109, 0.6);
}

.outline-eva-green-appt\/65 {
  outline-color: rgba(128, 215, 109, 0.65);
}

.outline-eva-green-appt\/70 {
  outline-color: rgba(128, 215, 109, 0.7);
}

.outline-eva-green-appt\/75 {
  outline-color: rgba(128, 215, 109, 0.75);
}

.outline-eva-green-appt\/80 {
  outline-color: rgba(128, 215, 109, 0.8);
}

.outline-eva-green-appt\/85 {
  outline-color: rgba(128, 215, 109, 0.85);
}

.outline-eva-green-appt\/90 {
  outline-color: rgba(128, 215, 109, 0.9);
}

.outline-eva-green-appt\/95 {
  outline-color: rgba(128, 215, 109, 0.95);
}

.outline-eva-green-brown-appt {
  outline-color: rgba(197, 191, 140, 1);
}

.outline-eva-green-brown-appt\/0 {
  outline-color: rgba(197, 191, 140, 0);
}

.outline-eva-green-brown-appt\/10 {
  outline-color: rgba(197, 191, 140, 0.1);
}

.outline-eva-green-brown-appt\/100 {
  outline-color: rgba(197, 191, 140, 1);
}

.outline-eva-green-brown-appt\/15 {
  outline-color: rgba(197, 191, 140, 0.15);
}

.outline-eva-green-brown-appt\/20 {
  outline-color: rgba(197, 191, 140, 0.2);
}

.outline-eva-green-brown-appt\/25 {
  outline-color: rgba(197, 191, 140, 0.25);
}

.outline-eva-green-brown-appt\/30 {
  outline-color: rgba(197, 191, 140, 0.3);
}

.outline-eva-green-brown-appt\/35 {
  outline-color: rgba(197, 191, 140, 0.35);
}

.outline-eva-green-brown-appt\/40 {
  outline-color: rgba(197, 191, 140, 0.4);
}

.outline-eva-green-brown-appt\/45 {
  outline-color: rgba(197, 191, 140, 0.45);
}

.outline-eva-green-brown-appt\/5 {
  outline-color: rgba(197, 191, 140, 0.05);
}

.outline-eva-green-brown-appt\/50 {
  outline-color: rgba(197, 191, 140, 0.5);
}

.outline-eva-green-brown-appt\/55 {
  outline-color: rgba(197, 191, 140, 0.55);
}

.outline-eva-green-brown-appt\/60 {
  outline-color: rgba(197, 191, 140, 0.6);
}

.outline-eva-green-brown-appt\/65 {
  outline-color: rgba(197, 191, 140, 0.65);
}

.outline-eva-green-brown-appt\/70 {
  outline-color: rgba(197, 191, 140, 0.7);
}

.outline-eva-green-brown-appt\/75 {
  outline-color: rgba(197, 191, 140, 0.75);
}

.outline-eva-green-brown-appt\/80 {
  outline-color: rgba(197, 191, 140, 0.8);
}

.outline-eva-green-brown-appt\/85 {
  outline-color: rgba(197, 191, 140, 0.85);
}

.outline-eva-green-brown-appt\/90 {
  outline-color: rgba(197, 191, 140, 0.9);
}

.outline-eva-green-brown-appt\/95 {
  outline-color: rgba(197, 191, 140, 0.95);
}

.outline-eva-green-hv {
  outline-color: #3f9c90;
}

.outline-eva-green-hv\/0 {
  outline-color: rgb(63 156 144 / 0);
}

.outline-eva-green-hv\/10 {
  outline-color: rgb(63 156 144 / 0.1);
}

.outline-eva-green-hv\/100 {
  outline-color: rgb(63 156 144 / 1);
}

.outline-eva-green-hv\/15 {
  outline-color: rgb(63 156 144 / 0.15);
}

.outline-eva-green-hv\/20 {
  outline-color: rgb(63 156 144 / 0.2);
}

.outline-eva-green-hv\/25 {
  outline-color: rgb(63 156 144 / 0.25);
}

.outline-eva-green-hv\/30 {
  outline-color: rgb(63 156 144 / 0.3);
}

.outline-eva-green-hv\/35 {
  outline-color: rgb(63 156 144 / 0.35);
}

.outline-eva-green-hv\/40 {
  outline-color: rgb(63 156 144 / 0.4);
}

.outline-eva-green-hv\/45 {
  outline-color: rgb(63 156 144 / 0.45);
}

.outline-eva-green-hv\/5 {
  outline-color: rgb(63 156 144 / 0.05);
}

.outline-eva-green-hv\/50 {
  outline-color: rgb(63 156 144 / 0.5);
}

.outline-eva-green-hv\/55 {
  outline-color: rgb(63 156 144 / 0.55);
}

.outline-eva-green-hv\/60 {
  outline-color: rgb(63 156 144 / 0.6);
}

.outline-eva-green-hv\/65 {
  outline-color: rgb(63 156 144 / 0.65);
}

.outline-eva-green-hv\/70 {
  outline-color: rgb(63 156 144 / 0.7);
}

.outline-eva-green-hv\/75 {
  outline-color: rgb(63 156 144 / 0.75);
}

.outline-eva-green-hv\/80 {
  outline-color: rgb(63 156 144 / 0.8);
}

.outline-eva-green-hv\/85 {
  outline-color: rgb(63 156 144 / 0.85);
}

.outline-eva-green-hv\/90 {
  outline-color: rgb(63 156 144 / 0.9);
}

.outline-eva-green-hv\/95 {
  outline-color: rgb(63 156 144 / 0.95);
}

.outline-eva-green\/0 {
  outline-color: rgb(73 181 168 / 0);
}

.outline-eva-green\/10 {
  outline-color: rgb(73 181 168 / 0.1);
}

.outline-eva-green\/100 {
  outline-color: rgb(73 181 168 / 1);
}

.outline-eva-green\/15 {
  outline-color: rgb(73 181 168 / 0.15);
}

.outline-eva-green\/20 {
  outline-color: rgb(73 181 168 / 0.2);
}

.outline-eva-green\/25 {
  outline-color: rgb(73 181 168 / 0.25);
}

.outline-eva-green\/30 {
  outline-color: rgb(73 181 168 / 0.3);
}

.outline-eva-green\/35 {
  outline-color: rgb(73 181 168 / 0.35);
}

.outline-eva-green\/40 {
  outline-color: rgb(73 181 168 / 0.4);
}

.outline-eva-green\/45 {
  outline-color: rgb(73 181 168 / 0.45);
}

.outline-eva-green\/5 {
  outline-color: rgb(73 181 168 / 0.05);
}

.outline-eva-green\/50 {
  outline-color: rgb(73 181 168 / 0.5);
}

.outline-eva-green\/55 {
  outline-color: rgb(73 181 168 / 0.55);
}

.outline-eva-green\/60 {
  outline-color: rgb(73 181 168 / 0.6);
}

.outline-eva-green\/65 {
  outline-color: rgb(73 181 168 / 0.65);
}

.outline-eva-green\/70 {
  outline-color: rgb(73 181 168 / 0.7);
}

.outline-eva-green\/75 {
  outline-color: rgb(73 181 168 / 0.75);
}

.outline-eva-green\/80 {
  outline-color: rgb(73 181 168 / 0.8);
}

.outline-eva-green\/85 {
  outline-color: rgb(73 181 168 / 0.85);
}

.outline-eva-green\/90 {
  outline-color: rgb(73 181 168 / 0.9);
}

.outline-eva-green\/95 {
  outline-color: rgb(73 181 168 / 0.95);
}

.outline-eva-lavender-appt {
  outline-color: rgba(169, 124, 165, 1);
}

.outline-eva-lavender-appt\/0 {
  outline-color: rgba(169, 124, 165, 0);
}

.outline-eva-lavender-appt\/10 {
  outline-color: rgba(169, 124, 165, 0.1);
}

.outline-eva-lavender-appt\/100 {
  outline-color: rgba(169, 124, 165, 1);
}

.outline-eva-lavender-appt\/15 {
  outline-color: rgba(169, 124, 165, 0.15);
}

.outline-eva-lavender-appt\/20 {
  outline-color: rgba(169, 124, 165, 0.2);
}

.outline-eva-lavender-appt\/25 {
  outline-color: rgba(169, 124, 165, 0.25);
}

.outline-eva-lavender-appt\/30 {
  outline-color: rgba(169, 124, 165, 0.3);
}

.outline-eva-lavender-appt\/35 {
  outline-color: rgba(169, 124, 165, 0.35);
}

.outline-eva-lavender-appt\/40 {
  outline-color: rgba(169, 124, 165, 0.4);
}

.outline-eva-lavender-appt\/45 {
  outline-color: rgba(169, 124, 165, 0.45);
}

.outline-eva-lavender-appt\/5 {
  outline-color: rgba(169, 124, 165, 0.05);
}

.outline-eva-lavender-appt\/50 {
  outline-color: rgba(169, 124, 165, 0.5);
}

.outline-eva-lavender-appt\/55 {
  outline-color: rgba(169, 124, 165, 0.55);
}

.outline-eva-lavender-appt\/60 {
  outline-color: rgba(169, 124, 165, 0.6);
}

.outline-eva-lavender-appt\/65 {
  outline-color: rgba(169, 124, 165, 0.65);
}

.outline-eva-lavender-appt\/70 {
  outline-color: rgba(169, 124, 165, 0.7);
}

.outline-eva-lavender-appt\/75 {
  outline-color: rgba(169, 124, 165, 0.75);
}

.outline-eva-lavender-appt\/80 {
  outline-color: rgba(169, 124, 165, 0.8);
}

.outline-eva-lavender-appt\/85 {
  outline-color: rgba(169, 124, 165, 0.85);
}

.outline-eva-lavender-appt\/90 {
  outline-color: rgba(169, 124, 165, 0.9);
}

.outline-eva-lavender-appt\/95 {
  outline-color: rgba(169, 124, 165, 0.95);
}

.outline-eva-magenta-appt {
  outline-color: rgba(223, 91, 146, 1);
}

.outline-eva-magenta-appt\/0 {
  outline-color: rgba(223, 91, 146, 0);
}

.outline-eva-magenta-appt\/10 {
  outline-color: rgba(223, 91, 146, 0.1);
}

.outline-eva-magenta-appt\/100 {
  outline-color: rgba(223, 91, 146, 1);
}

.outline-eva-magenta-appt\/15 {
  outline-color: rgba(223, 91, 146, 0.15);
}

.outline-eva-magenta-appt\/20 {
  outline-color: rgba(223, 91, 146, 0.2);
}

.outline-eva-magenta-appt\/25 {
  outline-color: rgba(223, 91, 146, 0.25);
}

.outline-eva-magenta-appt\/30 {
  outline-color: rgba(223, 91, 146, 0.3);
}

.outline-eva-magenta-appt\/35 {
  outline-color: rgba(223, 91, 146, 0.35);
}

.outline-eva-magenta-appt\/40 {
  outline-color: rgba(223, 91, 146, 0.4);
}

.outline-eva-magenta-appt\/45 {
  outline-color: rgba(223, 91, 146, 0.45);
}

.outline-eva-magenta-appt\/5 {
  outline-color: rgba(223, 91, 146, 0.05);
}

.outline-eva-magenta-appt\/50 {
  outline-color: rgba(223, 91, 146, 0.5);
}

.outline-eva-magenta-appt\/55 {
  outline-color: rgba(223, 91, 146, 0.55);
}

.outline-eva-magenta-appt\/60 {
  outline-color: rgba(223, 91, 146, 0.6);
}

.outline-eva-magenta-appt\/65 {
  outline-color: rgba(223, 91, 146, 0.65);
}

.outline-eva-magenta-appt\/70 {
  outline-color: rgba(223, 91, 146, 0.7);
}

.outline-eva-magenta-appt\/75 {
  outline-color: rgba(223, 91, 146, 0.75);
}

.outline-eva-magenta-appt\/80 {
  outline-color: rgba(223, 91, 146, 0.8);
}

.outline-eva-magenta-appt\/85 {
  outline-color: rgba(223, 91, 146, 0.85);
}

.outline-eva-magenta-appt\/90 {
  outline-color: rgba(223, 91, 146, 0.9);
}

.outline-eva-magenta-appt\/95 {
  outline-color: rgba(223, 91, 146, 0.95);
}

.outline-eva-orange-appt {
  outline-color: rgba(232, 176, 99, 1);
}

.outline-eva-orange-appt\/0 {
  outline-color: rgba(232, 176, 99, 0);
}

.outline-eva-orange-appt\/10 {
  outline-color: rgba(232, 176, 99, 0.1);
}

.outline-eva-orange-appt\/100 {
  outline-color: rgba(232, 176, 99, 1);
}

.outline-eva-orange-appt\/15 {
  outline-color: rgba(232, 176, 99, 0.15);
}

.outline-eva-orange-appt\/20 {
  outline-color: rgba(232, 176, 99, 0.2);
}

.outline-eva-orange-appt\/25 {
  outline-color: rgba(232, 176, 99, 0.25);
}

.outline-eva-orange-appt\/30 {
  outline-color: rgba(232, 176, 99, 0.3);
}

.outline-eva-orange-appt\/35 {
  outline-color: rgba(232, 176, 99, 0.35);
}

.outline-eva-orange-appt\/40 {
  outline-color: rgba(232, 176, 99, 0.4);
}

.outline-eva-orange-appt\/45 {
  outline-color: rgba(232, 176, 99, 0.45);
}

.outline-eva-orange-appt\/5 {
  outline-color: rgba(232, 176, 99, 0.05);
}

.outline-eva-orange-appt\/50 {
  outline-color: rgba(232, 176, 99, 0.5);
}

.outline-eva-orange-appt\/55 {
  outline-color: rgba(232, 176, 99, 0.55);
}

.outline-eva-orange-appt\/60 {
  outline-color: rgba(232, 176, 99, 0.6);
}

.outline-eva-orange-appt\/65 {
  outline-color: rgba(232, 176, 99, 0.65);
}

.outline-eva-orange-appt\/70 {
  outline-color: rgba(232, 176, 99, 0.7);
}

.outline-eva-orange-appt\/75 {
  outline-color: rgba(232, 176, 99, 0.75);
}

.outline-eva-orange-appt\/80 {
  outline-color: rgba(232, 176, 99, 0.8);
}

.outline-eva-orange-appt\/85 {
  outline-color: rgba(232, 176, 99, 0.85);
}

.outline-eva-orange-appt\/90 {
  outline-color: rgba(232, 176, 99, 0.9);
}

.outline-eva-orange-appt\/95 {
  outline-color: rgba(232, 176, 99, 0.95);
}

.outline-eva-purple-appt {
  outline-color: rgba(125, 117, 164, 1);
}

.outline-eva-purple-appt\/0 {
  outline-color: rgba(125, 117, 164, 0);
}

.outline-eva-purple-appt\/10 {
  outline-color: rgba(125, 117, 164, 0.1);
}

.outline-eva-purple-appt\/100 {
  outline-color: rgba(125, 117, 164, 1);
}

.outline-eva-purple-appt\/15 {
  outline-color: rgba(125, 117, 164, 0.15);
}

.outline-eva-purple-appt\/20 {
  outline-color: rgba(125, 117, 164, 0.2);
}

.outline-eva-purple-appt\/25 {
  outline-color: rgba(125, 117, 164, 0.25);
}

.outline-eva-purple-appt\/30 {
  outline-color: rgba(125, 117, 164, 0.3);
}

.outline-eva-purple-appt\/35 {
  outline-color: rgba(125, 117, 164, 0.35);
}

.outline-eva-purple-appt\/40 {
  outline-color: rgba(125, 117, 164, 0.4);
}

.outline-eva-purple-appt\/45 {
  outline-color: rgba(125, 117, 164, 0.45);
}

.outline-eva-purple-appt\/5 {
  outline-color: rgba(125, 117, 164, 0.05);
}

.outline-eva-purple-appt\/50 {
  outline-color: rgba(125, 117, 164, 0.5);
}

.outline-eva-purple-appt\/55 {
  outline-color: rgba(125, 117, 164, 0.55);
}

.outline-eva-purple-appt\/60 {
  outline-color: rgba(125, 117, 164, 0.6);
}

.outline-eva-purple-appt\/65 {
  outline-color: rgba(125, 117, 164, 0.65);
}

.outline-eva-purple-appt\/70 {
  outline-color: rgba(125, 117, 164, 0.7);
}

.outline-eva-purple-appt\/75 {
  outline-color: rgba(125, 117, 164, 0.75);
}

.outline-eva-purple-appt\/80 {
  outline-color: rgba(125, 117, 164, 0.8);
}

.outline-eva-purple-appt\/85 {
  outline-color: rgba(125, 117, 164, 0.85);
}

.outline-eva-purple-appt\/90 {
  outline-color: rgba(125, 117, 164, 0.9);
}

.outline-eva-purple-appt\/95 {
  outline-color: rgba(125, 117, 164, 0.95);
}

.outline-eva-red {
  outline-color: #EA6565;
}

.outline-eva-red-appt {
  outline-color: rgba(243, 63, 77, 1);
}

.outline-eva-red-appt\/0 {
  outline-color: rgba(243, 63, 77, 0);
}

.outline-eva-red-appt\/10 {
  outline-color: rgba(243, 63, 77, 0.1);
}

.outline-eva-red-appt\/100 {
  outline-color: rgba(243, 63, 77, 1);
}

.outline-eva-red-appt\/15 {
  outline-color: rgba(243, 63, 77, 0.15);
}

.outline-eva-red-appt\/20 {
  outline-color: rgba(243, 63, 77, 0.2);
}

.outline-eva-red-appt\/25 {
  outline-color: rgba(243, 63, 77, 0.25);
}

.outline-eva-red-appt\/30 {
  outline-color: rgba(243, 63, 77, 0.3);
}

.outline-eva-red-appt\/35 {
  outline-color: rgba(243, 63, 77, 0.35);
}

.outline-eva-red-appt\/40 {
  outline-color: rgba(243, 63, 77, 0.4);
}

.outline-eva-red-appt\/45 {
  outline-color: rgba(243, 63, 77, 0.45);
}

.outline-eva-red-appt\/5 {
  outline-color: rgba(243, 63, 77, 0.05);
}

.outline-eva-red-appt\/50 {
  outline-color: rgba(243, 63, 77, 0.5);
}

.outline-eva-red-appt\/55 {
  outline-color: rgba(243, 63, 77, 0.55);
}

.outline-eva-red-appt\/60 {
  outline-color: rgba(243, 63, 77, 0.6);
}

.outline-eva-red-appt\/65 {
  outline-color: rgba(243, 63, 77, 0.65);
}

.outline-eva-red-appt\/70 {
  outline-color: rgba(243, 63, 77, 0.7);
}

.outline-eva-red-appt\/75 {
  outline-color: rgba(243, 63, 77, 0.75);
}

.outline-eva-red-appt\/80 {
  outline-color: rgba(243, 63, 77, 0.8);
}

.outline-eva-red-appt\/85 {
  outline-color: rgba(243, 63, 77, 0.85);
}

.outline-eva-red-appt\/90 {
  outline-color: rgba(243, 63, 77, 0.9);
}

.outline-eva-red-appt\/95 {
  outline-color: rgba(243, 63, 77, 0.95);
}

.outline-eva-red-orange-appt {
  outline-color: rgba(217, 154, 118, 1);
}

.outline-eva-red-orange-appt\/0 {
  outline-color: rgba(217, 154, 118, 0);
}

.outline-eva-red-orange-appt\/10 {
  outline-color: rgba(217, 154, 118, 0.1);
}

.outline-eva-red-orange-appt\/100 {
  outline-color: rgba(217, 154, 118, 1);
}

.outline-eva-red-orange-appt\/15 {
  outline-color: rgba(217, 154, 118, 0.15);
}

.outline-eva-red-orange-appt\/20 {
  outline-color: rgba(217, 154, 118, 0.2);
}

.outline-eva-red-orange-appt\/25 {
  outline-color: rgba(217, 154, 118, 0.25);
}

.outline-eva-red-orange-appt\/30 {
  outline-color: rgba(217, 154, 118, 0.3);
}

.outline-eva-red-orange-appt\/35 {
  outline-color: rgba(217, 154, 118, 0.35);
}

.outline-eva-red-orange-appt\/40 {
  outline-color: rgba(217, 154, 118, 0.4);
}

.outline-eva-red-orange-appt\/45 {
  outline-color: rgba(217, 154, 118, 0.45);
}

.outline-eva-red-orange-appt\/5 {
  outline-color: rgba(217, 154, 118, 0.05);
}

.outline-eva-red-orange-appt\/50 {
  outline-color: rgba(217, 154, 118, 0.5);
}

.outline-eva-red-orange-appt\/55 {
  outline-color: rgba(217, 154, 118, 0.55);
}

.outline-eva-red-orange-appt\/60 {
  outline-color: rgba(217, 154, 118, 0.6);
}

.outline-eva-red-orange-appt\/65 {
  outline-color: rgba(217, 154, 118, 0.65);
}

.outline-eva-red-orange-appt\/70 {
  outline-color: rgba(217, 154, 118, 0.7);
}

.outline-eva-red-orange-appt\/75 {
  outline-color: rgba(217, 154, 118, 0.75);
}

.outline-eva-red-orange-appt\/80 {
  outline-color: rgba(217, 154, 118, 0.8);
}

.outline-eva-red-orange-appt\/85 {
  outline-color: rgba(217, 154, 118, 0.85);
}

.outline-eva-red-orange-appt\/90 {
  outline-color: rgba(217, 154, 118, 0.9);
}

.outline-eva-red-orange-appt\/95 {
  outline-color: rgba(217, 154, 118, 0.95);
}

.outline-eva-red\/0 {
  outline-color: rgb(234 101 101 / 0);
}

.outline-eva-red\/10 {
  outline-color: rgb(234 101 101 / 0.1);
}

.outline-eva-red\/100 {
  outline-color: rgb(234 101 101 / 1);
}

.outline-eva-red\/15 {
  outline-color: rgb(234 101 101 / 0.15);
}

.outline-eva-red\/20 {
  outline-color: rgb(234 101 101 / 0.2);
}

.outline-eva-red\/25 {
  outline-color: rgb(234 101 101 / 0.25);
}

.outline-eva-red\/30 {
  outline-color: rgb(234 101 101 / 0.3);
}

.outline-eva-red\/35 {
  outline-color: rgb(234 101 101 / 0.35);
}

.outline-eva-red\/40 {
  outline-color: rgb(234 101 101 / 0.4);
}

.outline-eva-red\/45 {
  outline-color: rgb(234 101 101 / 0.45);
}

.outline-eva-red\/5 {
  outline-color: rgb(234 101 101 / 0.05);
}

.outline-eva-red\/50 {
  outline-color: rgb(234 101 101 / 0.5);
}

.outline-eva-red\/55 {
  outline-color: rgb(234 101 101 / 0.55);
}

.outline-eva-red\/60 {
  outline-color: rgb(234 101 101 / 0.6);
}

.outline-eva-red\/65 {
  outline-color: rgb(234 101 101 / 0.65);
}

.outline-eva-red\/70 {
  outline-color: rgb(234 101 101 / 0.7);
}

.outline-eva-red\/75 {
  outline-color: rgb(234 101 101 / 0.75);
}

.outline-eva-red\/80 {
  outline-color: rgb(234 101 101 / 0.8);
}

.outline-eva-red\/85 {
  outline-color: rgb(234 101 101 / 0.85);
}

.outline-eva-red\/90 {
  outline-color: rgb(234 101 101 / 0.9);
}

.outline-eva-red\/95 {
  outline-color: rgb(234 101 101 / 0.95);
}

.outline-eva-teal-appt {
  outline-color: rgba(22, 172, 151);
}

.outline-eva-teal-appt\/0 {
  outline-color: rgba(22, 172, 151, 0);
}

.outline-eva-teal-appt\/10 {
  outline-color: rgba(22, 172, 151, 0.1);
}

.outline-eva-teal-appt\/100 {
  outline-color: rgba(22, 172, 151, 1);
}

.outline-eva-teal-appt\/15 {
  outline-color: rgba(22, 172, 151, 0.15);
}

.outline-eva-teal-appt\/20 {
  outline-color: rgba(22, 172, 151, 0.2);
}

.outline-eva-teal-appt\/25 {
  outline-color: rgba(22, 172, 151, 0.25);
}

.outline-eva-teal-appt\/30 {
  outline-color: rgba(22, 172, 151, 0.3);
}

.outline-eva-teal-appt\/35 {
  outline-color: rgba(22, 172, 151, 0.35);
}

.outline-eva-teal-appt\/40 {
  outline-color: rgba(22, 172, 151, 0.4);
}

.outline-eva-teal-appt\/45 {
  outline-color: rgba(22, 172, 151, 0.45);
}

.outline-eva-teal-appt\/5 {
  outline-color: rgba(22, 172, 151, 0.05);
}

.outline-eva-teal-appt\/50 {
  outline-color: rgba(22, 172, 151, 0.5);
}

.outline-eva-teal-appt\/55 {
  outline-color: rgba(22, 172, 151, 0.55);
}

.outline-eva-teal-appt\/60 {
  outline-color: rgba(22, 172, 151, 0.6);
}

.outline-eva-teal-appt\/65 {
  outline-color: rgba(22, 172, 151, 0.65);
}

.outline-eva-teal-appt\/70 {
  outline-color: rgba(22, 172, 151, 0.7);
}

.outline-eva-teal-appt\/75 {
  outline-color: rgba(22, 172, 151, 0.75);
}

.outline-eva-teal-appt\/80 {
  outline-color: rgba(22, 172, 151, 0.8);
}

.outline-eva-teal-appt\/85 {
  outline-color: rgba(22, 172, 151, 0.85);
}

.outline-eva-teal-appt\/90 {
  outline-color: rgba(22, 172, 151, 0.9);
}

.outline-eva-teal-appt\/95 {
  outline-color: rgba(22, 172, 151, 0.95);
}

.outline-eva-yellow {
  outline-color: #E9B362;
}

.outline-eva-yellow-appt {
  outline-color: rgba(240, 226, 0, 1);
}

.outline-eva-yellow-appt\/0 {
  outline-color: rgba(240, 226, 0, 0);
}

.outline-eva-yellow-appt\/10 {
  outline-color: rgba(240, 226, 0, 0.1);
}

.outline-eva-yellow-appt\/100 {
  outline-color: rgba(240, 226, 0, 1);
}

.outline-eva-yellow-appt\/15 {
  outline-color: rgba(240, 226, 0, 0.15);
}

.outline-eva-yellow-appt\/20 {
  outline-color: rgba(240, 226, 0, 0.2);
}

.outline-eva-yellow-appt\/25 {
  outline-color: rgba(240, 226, 0, 0.25);
}

.outline-eva-yellow-appt\/30 {
  outline-color: rgba(240, 226, 0, 0.3);
}

.outline-eva-yellow-appt\/35 {
  outline-color: rgba(240, 226, 0, 0.35);
}

.outline-eva-yellow-appt\/40 {
  outline-color: rgba(240, 226, 0, 0.4);
}

.outline-eva-yellow-appt\/45 {
  outline-color: rgba(240, 226, 0, 0.45);
}

.outline-eva-yellow-appt\/5 {
  outline-color: rgba(240, 226, 0, 0.05);
}

.outline-eva-yellow-appt\/50 {
  outline-color: rgba(240, 226, 0, 0.5);
}

.outline-eva-yellow-appt\/55 {
  outline-color: rgba(240, 226, 0, 0.55);
}

.outline-eva-yellow-appt\/60 {
  outline-color: rgba(240, 226, 0, 0.6);
}

.outline-eva-yellow-appt\/65 {
  outline-color: rgba(240, 226, 0, 0.65);
}

.outline-eva-yellow-appt\/70 {
  outline-color: rgba(240, 226, 0, 0.7);
}

.outline-eva-yellow-appt\/75 {
  outline-color: rgba(240, 226, 0, 0.75);
}

.outline-eva-yellow-appt\/80 {
  outline-color: rgba(240, 226, 0, 0.8);
}

.outline-eva-yellow-appt\/85 {
  outline-color: rgba(240, 226, 0, 0.85);
}

.outline-eva-yellow-appt\/90 {
  outline-color: rgba(240, 226, 0, 0.9);
}

.outline-eva-yellow-appt\/95 {
  outline-color: rgba(240, 226, 0, 0.95);
}

.outline-eva-yellow\/0 {
  outline-color: rgb(233 179 98 / 0);
}

.outline-eva-yellow\/10 {
  outline-color: rgb(233 179 98 / 0.1);
}

.outline-eva-yellow\/100 {
  outline-color: rgb(233 179 98 / 1);
}

.outline-eva-yellow\/15 {
  outline-color: rgb(233 179 98 / 0.15);
}

.outline-eva-yellow\/20 {
  outline-color: rgb(233 179 98 / 0.2);
}

.outline-eva-yellow\/25 {
  outline-color: rgb(233 179 98 / 0.25);
}

.outline-eva-yellow\/30 {
  outline-color: rgb(233 179 98 / 0.3);
}

.outline-eva-yellow\/35 {
  outline-color: rgb(233 179 98 / 0.35);
}

.outline-eva-yellow\/40 {
  outline-color: rgb(233 179 98 / 0.4);
}

.outline-eva-yellow\/45 {
  outline-color: rgb(233 179 98 / 0.45);
}

.outline-eva-yellow\/5 {
  outline-color: rgb(233 179 98 / 0.05);
}

.outline-eva-yellow\/50 {
  outline-color: rgb(233 179 98 / 0.5);
}

.outline-eva-yellow\/55 {
  outline-color: rgb(233 179 98 / 0.55);
}

.outline-eva-yellow\/60 {
  outline-color: rgb(233 179 98 / 0.6);
}

.outline-eva-yellow\/65 {
  outline-color: rgb(233 179 98 / 0.65);
}

.outline-eva-yellow\/70 {
  outline-color: rgb(233 179 98 / 0.7);
}

.outline-eva-yellow\/75 {
  outline-color: rgb(233 179 98 / 0.75);
}

.outline-eva-yellow\/80 {
  outline-color: rgb(233 179 98 / 0.8);
}

.outline-eva-yellow\/85 {
  outline-color: rgb(233 179 98 / 0.85);
}

.outline-eva-yellow\/90 {
  outline-color: rgb(233 179 98 / 0.9);
}

.outline-eva-yellow\/95 {
  outline-color: rgb(233 179 98 / 0.95);
}

.outline-gray-100 {
  outline-color: #f5f5f5;
}

.outline-gray-100\/0 {
  outline-color: rgb(245 245 245 / 0);
}

.outline-gray-100\/10 {
  outline-color: rgb(245 245 245 / 0.1);
}

.outline-gray-100\/100 {
  outline-color: rgb(245 245 245 / 1);
}

.outline-gray-100\/15 {
  outline-color: rgb(245 245 245 / 0.15);
}

.outline-gray-100\/20 {
  outline-color: rgb(245 245 245 / 0.2);
}

.outline-gray-100\/25 {
  outline-color: rgb(245 245 245 / 0.25);
}

.outline-gray-100\/30 {
  outline-color: rgb(245 245 245 / 0.3);
}

.outline-gray-100\/35 {
  outline-color: rgb(245 245 245 / 0.35);
}

.outline-gray-100\/40 {
  outline-color: rgb(245 245 245 / 0.4);
}

.outline-gray-100\/45 {
  outline-color: rgb(245 245 245 / 0.45);
}

.outline-gray-100\/5 {
  outline-color: rgb(245 245 245 / 0.05);
}

.outline-gray-100\/50 {
  outline-color: rgb(245 245 245 / 0.5);
}

.outline-gray-100\/55 {
  outline-color: rgb(245 245 245 / 0.55);
}

.outline-gray-100\/60 {
  outline-color: rgb(245 245 245 / 0.6);
}

.outline-gray-100\/65 {
  outline-color: rgb(245 245 245 / 0.65);
}

.outline-gray-100\/70 {
  outline-color: rgb(245 245 245 / 0.7);
}

.outline-gray-100\/75 {
  outline-color: rgb(245 245 245 / 0.75);
}

.outline-gray-100\/80 {
  outline-color: rgb(245 245 245 / 0.8);
}

.outline-gray-100\/85 {
  outline-color: rgb(245 245 245 / 0.85);
}

.outline-gray-100\/90 {
  outline-color: rgb(245 245 245 / 0.9);
}

.outline-gray-100\/95 {
  outline-color: rgb(245 245 245 / 0.95);
}

.outline-gray-200 {
  outline-color: #e5e5e5;
}

.outline-gray-200\/0 {
  outline-color: rgb(229 229 229 / 0);
}

.outline-gray-200\/10 {
  outline-color: rgb(229 229 229 / 0.1);
}

.outline-gray-200\/100 {
  outline-color: rgb(229 229 229 / 1);
}

.outline-gray-200\/15 {
  outline-color: rgb(229 229 229 / 0.15);
}

.outline-gray-200\/20 {
  outline-color: rgb(229 229 229 / 0.2);
}

.outline-gray-200\/25 {
  outline-color: rgb(229 229 229 / 0.25);
}

.outline-gray-200\/30 {
  outline-color: rgb(229 229 229 / 0.3);
}

.outline-gray-200\/35 {
  outline-color: rgb(229 229 229 / 0.35);
}

.outline-gray-200\/40 {
  outline-color: rgb(229 229 229 / 0.4);
}

.outline-gray-200\/45 {
  outline-color: rgb(229 229 229 / 0.45);
}

.outline-gray-200\/5 {
  outline-color: rgb(229 229 229 / 0.05);
}

.outline-gray-200\/50 {
  outline-color: rgb(229 229 229 / 0.5);
}

.outline-gray-200\/55 {
  outline-color: rgb(229 229 229 / 0.55);
}

.outline-gray-200\/60 {
  outline-color: rgb(229 229 229 / 0.6);
}

.outline-gray-200\/65 {
  outline-color: rgb(229 229 229 / 0.65);
}

.outline-gray-200\/70 {
  outline-color: rgb(229 229 229 / 0.7);
}

.outline-gray-200\/75 {
  outline-color: rgb(229 229 229 / 0.75);
}

.outline-gray-200\/80 {
  outline-color: rgb(229 229 229 / 0.8);
}

.outline-gray-200\/85 {
  outline-color: rgb(229 229 229 / 0.85);
}

.outline-gray-200\/90 {
  outline-color: rgb(229 229 229 / 0.9);
}

.outline-gray-200\/95 {
  outline-color: rgb(229 229 229 / 0.95);
}

.outline-gray-300 {
  outline-color: #d4d4d4;
}

.outline-gray-300\/0 {
  outline-color: rgb(212 212 212 / 0);
}

.outline-gray-300\/10 {
  outline-color: rgb(212 212 212 / 0.1);
}

.outline-gray-300\/100 {
  outline-color: rgb(212 212 212 / 1);
}

.outline-gray-300\/15 {
  outline-color: rgb(212 212 212 / 0.15);
}

.outline-gray-300\/20 {
  outline-color: rgb(212 212 212 / 0.2);
}

.outline-gray-300\/25 {
  outline-color: rgb(212 212 212 / 0.25);
}

.outline-gray-300\/30 {
  outline-color: rgb(212 212 212 / 0.3);
}

.outline-gray-300\/35 {
  outline-color: rgb(212 212 212 / 0.35);
}

.outline-gray-300\/40 {
  outline-color: rgb(212 212 212 / 0.4);
}

.outline-gray-300\/45 {
  outline-color: rgb(212 212 212 / 0.45);
}

.outline-gray-300\/5 {
  outline-color: rgb(212 212 212 / 0.05);
}

.outline-gray-300\/50 {
  outline-color: rgb(212 212 212 / 0.5);
}

.outline-gray-300\/55 {
  outline-color: rgb(212 212 212 / 0.55);
}

.outline-gray-300\/60 {
  outline-color: rgb(212 212 212 / 0.6);
}

.outline-gray-300\/65 {
  outline-color: rgb(212 212 212 / 0.65);
}

.outline-gray-300\/70 {
  outline-color: rgb(212 212 212 / 0.7);
}

.outline-gray-300\/75 {
  outline-color: rgb(212 212 212 / 0.75);
}

.outline-gray-300\/80 {
  outline-color: rgb(212 212 212 / 0.8);
}

.outline-gray-300\/85 {
  outline-color: rgb(212 212 212 / 0.85);
}

.outline-gray-300\/90 {
  outline-color: rgb(212 212 212 / 0.9);
}

.outline-gray-300\/95 {
  outline-color: rgb(212 212 212 / 0.95);
}

.outline-gray-400 {
  outline-color: #a3a3a3;
}

.outline-gray-400\/0 {
  outline-color: rgb(163 163 163 / 0);
}

.outline-gray-400\/10 {
  outline-color: rgb(163 163 163 / 0.1);
}

.outline-gray-400\/100 {
  outline-color: rgb(163 163 163 / 1);
}

.outline-gray-400\/15 {
  outline-color: rgb(163 163 163 / 0.15);
}

.outline-gray-400\/20 {
  outline-color: rgb(163 163 163 / 0.2);
}

.outline-gray-400\/25 {
  outline-color: rgb(163 163 163 / 0.25);
}

.outline-gray-400\/30 {
  outline-color: rgb(163 163 163 / 0.3);
}

.outline-gray-400\/35 {
  outline-color: rgb(163 163 163 / 0.35);
}

.outline-gray-400\/40 {
  outline-color: rgb(163 163 163 / 0.4);
}

.outline-gray-400\/45 {
  outline-color: rgb(163 163 163 / 0.45);
}

.outline-gray-400\/5 {
  outline-color: rgb(163 163 163 / 0.05);
}

.outline-gray-400\/50 {
  outline-color: rgb(163 163 163 / 0.5);
}

.outline-gray-400\/55 {
  outline-color: rgb(163 163 163 / 0.55);
}

.outline-gray-400\/60 {
  outline-color: rgb(163 163 163 / 0.6);
}

.outline-gray-400\/65 {
  outline-color: rgb(163 163 163 / 0.65);
}

.outline-gray-400\/70 {
  outline-color: rgb(163 163 163 / 0.7);
}

.outline-gray-400\/75 {
  outline-color: rgb(163 163 163 / 0.75);
}

.outline-gray-400\/80 {
  outline-color: rgb(163 163 163 / 0.8);
}

.outline-gray-400\/85 {
  outline-color: rgb(163 163 163 / 0.85);
}

.outline-gray-400\/90 {
  outline-color: rgb(163 163 163 / 0.9);
}

.outline-gray-400\/95 {
  outline-color: rgb(163 163 163 / 0.95);
}

.outline-gray-50 {
  outline-color: #fafafa;
}

.outline-gray-50\/0 {
  outline-color: rgb(250 250 250 / 0);
}

.outline-gray-50\/10 {
  outline-color: rgb(250 250 250 / 0.1);
}

.outline-gray-50\/100 {
  outline-color: rgb(250 250 250 / 1);
}

.outline-gray-50\/15 {
  outline-color: rgb(250 250 250 / 0.15);
}

.outline-gray-50\/20 {
  outline-color: rgb(250 250 250 / 0.2);
}

.outline-gray-50\/25 {
  outline-color: rgb(250 250 250 / 0.25);
}

.outline-gray-50\/30 {
  outline-color: rgb(250 250 250 / 0.3);
}

.outline-gray-50\/35 {
  outline-color: rgb(250 250 250 / 0.35);
}

.outline-gray-50\/40 {
  outline-color: rgb(250 250 250 / 0.4);
}

.outline-gray-50\/45 {
  outline-color: rgb(250 250 250 / 0.45);
}

.outline-gray-50\/5 {
  outline-color: rgb(250 250 250 / 0.05);
}

.outline-gray-50\/50 {
  outline-color: rgb(250 250 250 / 0.5);
}

.outline-gray-50\/55 {
  outline-color: rgb(250 250 250 / 0.55);
}

.outline-gray-50\/60 {
  outline-color: rgb(250 250 250 / 0.6);
}

.outline-gray-50\/65 {
  outline-color: rgb(250 250 250 / 0.65);
}

.outline-gray-50\/70 {
  outline-color: rgb(250 250 250 / 0.7);
}

.outline-gray-50\/75 {
  outline-color: rgb(250 250 250 / 0.75);
}

.outline-gray-50\/80 {
  outline-color: rgb(250 250 250 / 0.8);
}

.outline-gray-50\/85 {
  outline-color: rgb(250 250 250 / 0.85);
}

.outline-gray-50\/90 {
  outline-color: rgb(250 250 250 / 0.9);
}

.outline-gray-50\/95 {
  outline-color: rgb(250 250 250 / 0.95);
}

.outline-gray-500 {
  outline-color: #737373;
}

.outline-gray-500\/0 {
  outline-color: rgb(115 115 115 / 0);
}

.outline-gray-500\/10 {
  outline-color: rgb(115 115 115 / 0.1);
}

.outline-gray-500\/100 {
  outline-color: rgb(115 115 115 / 1);
}

.outline-gray-500\/15 {
  outline-color: rgb(115 115 115 / 0.15);
}

.outline-gray-500\/20 {
  outline-color: rgb(115 115 115 / 0.2);
}

.outline-gray-500\/25 {
  outline-color: rgb(115 115 115 / 0.25);
}

.outline-gray-500\/30 {
  outline-color: rgb(115 115 115 / 0.3);
}

.outline-gray-500\/35 {
  outline-color: rgb(115 115 115 / 0.35);
}

.outline-gray-500\/40 {
  outline-color: rgb(115 115 115 / 0.4);
}

.outline-gray-500\/45 {
  outline-color: rgb(115 115 115 / 0.45);
}

.outline-gray-500\/5 {
  outline-color: rgb(115 115 115 / 0.05);
}

.outline-gray-500\/50 {
  outline-color: rgb(115 115 115 / 0.5);
}

.outline-gray-500\/55 {
  outline-color: rgb(115 115 115 / 0.55);
}

.outline-gray-500\/60 {
  outline-color: rgb(115 115 115 / 0.6);
}

.outline-gray-500\/65 {
  outline-color: rgb(115 115 115 / 0.65);
}

.outline-gray-500\/70 {
  outline-color: rgb(115 115 115 / 0.7);
}

.outline-gray-500\/75 {
  outline-color: rgb(115 115 115 / 0.75);
}

.outline-gray-500\/80 {
  outline-color: rgb(115 115 115 / 0.8);
}

.outline-gray-500\/85 {
  outline-color: rgb(115 115 115 / 0.85);
}

.outline-gray-500\/90 {
  outline-color: rgb(115 115 115 / 0.9);
}

.outline-gray-500\/95 {
  outline-color: rgb(115 115 115 / 0.95);
}

.outline-gray-600 {
  outline-color: #525252;
}

.outline-gray-600\/0 {
  outline-color: rgb(82 82 82 / 0);
}

.outline-gray-600\/10 {
  outline-color: rgb(82 82 82 / 0.1);
}

.outline-gray-600\/100 {
  outline-color: rgb(82 82 82 / 1);
}

.outline-gray-600\/15 {
  outline-color: rgb(82 82 82 / 0.15);
}

.outline-gray-600\/20 {
  outline-color: rgb(82 82 82 / 0.2);
}

.outline-gray-600\/25 {
  outline-color: rgb(82 82 82 / 0.25);
}

.outline-gray-600\/30 {
  outline-color: rgb(82 82 82 / 0.3);
}

.outline-gray-600\/35 {
  outline-color: rgb(82 82 82 / 0.35);
}

.outline-gray-600\/40 {
  outline-color: rgb(82 82 82 / 0.4);
}

.outline-gray-600\/45 {
  outline-color: rgb(82 82 82 / 0.45);
}

.outline-gray-600\/5 {
  outline-color: rgb(82 82 82 / 0.05);
}

.outline-gray-600\/50 {
  outline-color: rgb(82 82 82 / 0.5);
}

.outline-gray-600\/55 {
  outline-color: rgb(82 82 82 / 0.55);
}

.outline-gray-600\/60 {
  outline-color: rgb(82 82 82 / 0.6);
}

.outline-gray-600\/65 {
  outline-color: rgb(82 82 82 / 0.65);
}

.outline-gray-600\/70 {
  outline-color: rgb(82 82 82 / 0.7);
}

.outline-gray-600\/75 {
  outline-color: rgb(82 82 82 / 0.75);
}

.outline-gray-600\/80 {
  outline-color: rgb(82 82 82 / 0.8);
}

.outline-gray-600\/85 {
  outline-color: rgb(82 82 82 / 0.85);
}

.outline-gray-600\/90 {
  outline-color: rgb(82 82 82 / 0.9);
}

.outline-gray-600\/95 {
  outline-color: rgb(82 82 82 / 0.95);
}

.outline-gray-700 {
  outline-color: #404040;
}

.outline-gray-700\/0 {
  outline-color: rgb(64 64 64 / 0);
}

.outline-gray-700\/10 {
  outline-color: rgb(64 64 64 / 0.1);
}

.outline-gray-700\/100 {
  outline-color: rgb(64 64 64 / 1);
}

.outline-gray-700\/15 {
  outline-color: rgb(64 64 64 / 0.15);
}

.outline-gray-700\/20 {
  outline-color: rgb(64 64 64 / 0.2);
}

.outline-gray-700\/25 {
  outline-color: rgb(64 64 64 / 0.25);
}

.outline-gray-700\/30 {
  outline-color: rgb(64 64 64 / 0.3);
}

.outline-gray-700\/35 {
  outline-color: rgb(64 64 64 / 0.35);
}

.outline-gray-700\/40 {
  outline-color: rgb(64 64 64 / 0.4);
}

.outline-gray-700\/45 {
  outline-color: rgb(64 64 64 / 0.45);
}

.outline-gray-700\/5 {
  outline-color: rgb(64 64 64 / 0.05);
}

.outline-gray-700\/50 {
  outline-color: rgb(64 64 64 / 0.5);
}

.outline-gray-700\/55 {
  outline-color: rgb(64 64 64 / 0.55);
}

.outline-gray-700\/60 {
  outline-color: rgb(64 64 64 / 0.6);
}

.outline-gray-700\/65 {
  outline-color: rgb(64 64 64 / 0.65);
}

.outline-gray-700\/70 {
  outline-color: rgb(64 64 64 / 0.7);
}

.outline-gray-700\/75 {
  outline-color: rgb(64 64 64 / 0.75);
}

.outline-gray-700\/80 {
  outline-color: rgb(64 64 64 / 0.8);
}

.outline-gray-700\/85 {
  outline-color: rgb(64 64 64 / 0.85);
}

.outline-gray-700\/90 {
  outline-color: rgb(64 64 64 / 0.9);
}

.outline-gray-700\/95 {
  outline-color: rgb(64 64 64 / 0.95);
}

.outline-gray-800 {
  outline-color: #262626;
}

.outline-gray-800\/0 {
  outline-color: rgb(38 38 38 / 0);
}

.outline-gray-800\/10 {
  outline-color: rgb(38 38 38 / 0.1);
}

.outline-gray-800\/100 {
  outline-color: rgb(38 38 38 / 1);
}

.outline-gray-800\/15 {
  outline-color: rgb(38 38 38 / 0.15);
}

.outline-gray-800\/20 {
  outline-color: rgb(38 38 38 / 0.2);
}

.outline-gray-800\/25 {
  outline-color: rgb(38 38 38 / 0.25);
}

.outline-gray-800\/30 {
  outline-color: rgb(38 38 38 / 0.3);
}

.outline-gray-800\/35 {
  outline-color: rgb(38 38 38 / 0.35);
}

.outline-gray-800\/40 {
  outline-color: rgb(38 38 38 / 0.4);
}

.outline-gray-800\/45 {
  outline-color: rgb(38 38 38 / 0.45);
}

.outline-gray-800\/5 {
  outline-color: rgb(38 38 38 / 0.05);
}

.outline-gray-800\/50 {
  outline-color: rgb(38 38 38 / 0.5);
}

.outline-gray-800\/55 {
  outline-color: rgb(38 38 38 / 0.55);
}

.outline-gray-800\/60 {
  outline-color: rgb(38 38 38 / 0.6);
}

.outline-gray-800\/65 {
  outline-color: rgb(38 38 38 / 0.65);
}

.outline-gray-800\/70 {
  outline-color: rgb(38 38 38 / 0.7);
}

.outline-gray-800\/75 {
  outline-color: rgb(38 38 38 / 0.75);
}

.outline-gray-800\/80 {
  outline-color: rgb(38 38 38 / 0.8);
}

.outline-gray-800\/85 {
  outline-color: rgb(38 38 38 / 0.85);
}

.outline-gray-800\/90 {
  outline-color: rgb(38 38 38 / 0.9);
}

.outline-gray-800\/95 {
  outline-color: rgb(38 38 38 / 0.95);
}

.outline-gray-900 {
  outline-color: #171717;
}

.outline-gray-900\/0 {
  outline-color: rgb(23 23 23 / 0);
}

.outline-gray-900\/10 {
  outline-color: rgb(23 23 23 / 0.1);
}

.outline-gray-900\/100 {
  outline-color: rgb(23 23 23 / 1);
}

.outline-gray-900\/15 {
  outline-color: rgb(23 23 23 / 0.15);
}

.outline-gray-900\/20 {
  outline-color: rgb(23 23 23 / 0.2);
}

.outline-gray-900\/25 {
  outline-color: rgb(23 23 23 / 0.25);
}

.outline-gray-900\/30 {
  outline-color: rgb(23 23 23 / 0.3);
}

.outline-gray-900\/35 {
  outline-color: rgb(23 23 23 / 0.35);
}

.outline-gray-900\/40 {
  outline-color: rgb(23 23 23 / 0.4);
}

.outline-gray-900\/45 {
  outline-color: rgb(23 23 23 / 0.45);
}

.outline-gray-900\/5 {
  outline-color: rgb(23 23 23 / 0.05);
}

.outline-gray-900\/50 {
  outline-color: rgb(23 23 23 / 0.5);
}

.outline-gray-900\/55 {
  outline-color: rgb(23 23 23 / 0.55);
}

.outline-gray-900\/60 {
  outline-color: rgb(23 23 23 / 0.6);
}

.outline-gray-900\/65 {
  outline-color: rgb(23 23 23 / 0.65);
}

.outline-gray-900\/70 {
  outline-color: rgb(23 23 23 / 0.7);
}

.outline-gray-900\/75 {
  outline-color: rgb(23 23 23 / 0.75);
}

.outline-gray-900\/80 {
  outline-color: rgb(23 23 23 / 0.8);
}

.outline-gray-900\/85 {
  outline-color: rgb(23 23 23 / 0.85);
}

.outline-gray-900\/90 {
  outline-color: rgb(23 23 23 / 0.9);
}

.outline-gray-900\/95 {
  outline-color: rgb(23 23 23 / 0.95);
}

.outline-gray-950 {
  outline-color: #0a0a0a;
}

.outline-gray-950\/0 {
  outline-color: rgb(10 10 10 / 0);
}

.outline-gray-950\/10 {
  outline-color: rgb(10 10 10 / 0.1);
}

.outline-gray-950\/100 {
  outline-color: rgb(10 10 10 / 1);
}

.outline-gray-950\/15 {
  outline-color: rgb(10 10 10 / 0.15);
}

.outline-gray-950\/20 {
  outline-color: rgb(10 10 10 / 0.2);
}

.outline-gray-950\/25 {
  outline-color: rgb(10 10 10 / 0.25);
}

.outline-gray-950\/30 {
  outline-color: rgb(10 10 10 / 0.3);
}

.outline-gray-950\/35 {
  outline-color: rgb(10 10 10 / 0.35);
}

.outline-gray-950\/40 {
  outline-color: rgb(10 10 10 / 0.4);
}

.outline-gray-950\/45 {
  outline-color: rgb(10 10 10 / 0.45);
}

.outline-gray-950\/5 {
  outline-color: rgb(10 10 10 / 0.05);
}

.outline-gray-950\/50 {
  outline-color: rgb(10 10 10 / 0.5);
}

.outline-gray-950\/55 {
  outline-color: rgb(10 10 10 / 0.55);
}

.outline-gray-950\/60 {
  outline-color: rgb(10 10 10 / 0.6);
}

.outline-gray-950\/65 {
  outline-color: rgb(10 10 10 / 0.65);
}

.outline-gray-950\/70 {
  outline-color: rgb(10 10 10 / 0.7);
}

.outline-gray-950\/75 {
  outline-color: rgb(10 10 10 / 0.75);
}

.outline-gray-950\/80 {
  outline-color: rgb(10 10 10 / 0.8);
}

.outline-gray-950\/85 {
  outline-color: rgb(10 10 10 / 0.85);
}

.outline-gray-950\/90 {
  outline-color: rgb(10 10 10 / 0.9);
}

.outline-gray-950\/95 {
  outline-color: rgb(10 10 10 / 0.95);
}

.outline-green-100 {
  outline-color: #dcfce7;
}

.outline-green-100\/0 {
  outline-color: rgb(220 252 231 / 0);
}

.outline-green-100\/10 {
  outline-color: rgb(220 252 231 / 0.1);
}

.outline-green-100\/100 {
  outline-color: rgb(220 252 231 / 1);
}

.outline-green-100\/15 {
  outline-color: rgb(220 252 231 / 0.15);
}

.outline-green-100\/20 {
  outline-color: rgb(220 252 231 / 0.2);
}

.outline-green-100\/25 {
  outline-color: rgb(220 252 231 / 0.25);
}

.outline-green-100\/30 {
  outline-color: rgb(220 252 231 / 0.3);
}

.outline-green-100\/35 {
  outline-color: rgb(220 252 231 / 0.35);
}

.outline-green-100\/40 {
  outline-color: rgb(220 252 231 / 0.4);
}

.outline-green-100\/45 {
  outline-color: rgb(220 252 231 / 0.45);
}

.outline-green-100\/5 {
  outline-color: rgb(220 252 231 / 0.05);
}

.outline-green-100\/50 {
  outline-color: rgb(220 252 231 / 0.5);
}

.outline-green-100\/55 {
  outline-color: rgb(220 252 231 / 0.55);
}

.outline-green-100\/60 {
  outline-color: rgb(220 252 231 / 0.6);
}

.outline-green-100\/65 {
  outline-color: rgb(220 252 231 / 0.65);
}

.outline-green-100\/70 {
  outline-color: rgb(220 252 231 / 0.7);
}

.outline-green-100\/75 {
  outline-color: rgb(220 252 231 / 0.75);
}

.outline-green-100\/80 {
  outline-color: rgb(220 252 231 / 0.8);
}

.outline-green-100\/85 {
  outline-color: rgb(220 252 231 / 0.85);
}

.outline-green-100\/90 {
  outline-color: rgb(220 252 231 / 0.9);
}

.outline-green-100\/95 {
  outline-color: rgb(220 252 231 / 0.95);
}

.outline-green-200 {
  outline-color: #bbf7d0;
}

.outline-green-200\/0 {
  outline-color: rgb(187 247 208 / 0);
}

.outline-green-200\/10 {
  outline-color: rgb(187 247 208 / 0.1);
}

.outline-green-200\/100 {
  outline-color: rgb(187 247 208 / 1);
}

.outline-green-200\/15 {
  outline-color: rgb(187 247 208 / 0.15);
}

.outline-green-200\/20 {
  outline-color: rgb(187 247 208 / 0.2);
}

.outline-green-200\/25 {
  outline-color: rgb(187 247 208 / 0.25);
}

.outline-green-200\/30 {
  outline-color: rgb(187 247 208 / 0.3);
}

.outline-green-200\/35 {
  outline-color: rgb(187 247 208 / 0.35);
}

.outline-green-200\/40 {
  outline-color: rgb(187 247 208 / 0.4);
}

.outline-green-200\/45 {
  outline-color: rgb(187 247 208 / 0.45);
}

.outline-green-200\/5 {
  outline-color: rgb(187 247 208 / 0.05);
}

.outline-green-200\/50 {
  outline-color: rgb(187 247 208 / 0.5);
}

.outline-green-200\/55 {
  outline-color: rgb(187 247 208 / 0.55);
}

.outline-green-200\/60 {
  outline-color: rgb(187 247 208 / 0.6);
}

.outline-green-200\/65 {
  outline-color: rgb(187 247 208 / 0.65);
}

.outline-green-200\/70 {
  outline-color: rgb(187 247 208 / 0.7);
}

.outline-green-200\/75 {
  outline-color: rgb(187 247 208 / 0.75);
}

.outline-green-200\/80 {
  outline-color: rgb(187 247 208 / 0.8);
}

.outline-green-200\/85 {
  outline-color: rgb(187 247 208 / 0.85);
}

.outline-green-200\/90 {
  outline-color: rgb(187 247 208 / 0.9);
}

.outline-green-200\/95 {
  outline-color: rgb(187 247 208 / 0.95);
}

.outline-green-300 {
  outline-color: #86efac;
}

.outline-green-300\/0 {
  outline-color: rgb(134 239 172 / 0);
}

.outline-green-300\/10 {
  outline-color: rgb(134 239 172 / 0.1);
}

.outline-green-300\/100 {
  outline-color: rgb(134 239 172 / 1);
}

.outline-green-300\/15 {
  outline-color: rgb(134 239 172 / 0.15);
}

.outline-green-300\/20 {
  outline-color: rgb(134 239 172 / 0.2);
}

.outline-green-300\/25 {
  outline-color: rgb(134 239 172 / 0.25);
}

.outline-green-300\/30 {
  outline-color: rgb(134 239 172 / 0.3);
}

.outline-green-300\/35 {
  outline-color: rgb(134 239 172 / 0.35);
}

.outline-green-300\/40 {
  outline-color: rgb(134 239 172 / 0.4);
}

.outline-green-300\/45 {
  outline-color: rgb(134 239 172 / 0.45);
}

.outline-green-300\/5 {
  outline-color: rgb(134 239 172 / 0.05);
}

.outline-green-300\/50 {
  outline-color: rgb(134 239 172 / 0.5);
}

.outline-green-300\/55 {
  outline-color: rgb(134 239 172 / 0.55);
}

.outline-green-300\/60 {
  outline-color: rgb(134 239 172 / 0.6);
}

.outline-green-300\/65 {
  outline-color: rgb(134 239 172 / 0.65);
}

.outline-green-300\/70 {
  outline-color: rgb(134 239 172 / 0.7);
}

.outline-green-300\/75 {
  outline-color: rgb(134 239 172 / 0.75);
}

.outline-green-300\/80 {
  outline-color: rgb(134 239 172 / 0.8);
}

.outline-green-300\/85 {
  outline-color: rgb(134 239 172 / 0.85);
}

.outline-green-300\/90 {
  outline-color: rgb(134 239 172 / 0.9);
}

.outline-green-300\/95 {
  outline-color: rgb(134 239 172 / 0.95);
}

.outline-green-400 {
  outline-color: #4ade80;
}

.outline-green-400\/0 {
  outline-color: rgb(74 222 128 / 0);
}

.outline-green-400\/10 {
  outline-color: rgb(74 222 128 / 0.1);
}

.outline-green-400\/100 {
  outline-color: rgb(74 222 128 / 1);
}

.outline-green-400\/15 {
  outline-color: rgb(74 222 128 / 0.15);
}

.outline-green-400\/20 {
  outline-color: rgb(74 222 128 / 0.2);
}

.outline-green-400\/25 {
  outline-color: rgb(74 222 128 / 0.25);
}

.outline-green-400\/30 {
  outline-color: rgb(74 222 128 / 0.3);
}

.outline-green-400\/35 {
  outline-color: rgb(74 222 128 / 0.35);
}

.outline-green-400\/40 {
  outline-color: rgb(74 222 128 / 0.4);
}

.outline-green-400\/45 {
  outline-color: rgb(74 222 128 / 0.45);
}

.outline-green-400\/5 {
  outline-color: rgb(74 222 128 / 0.05);
}

.outline-green-400\/50 {
  outline-color: rgb(74 222 128 / 0.5);
}

.outline-green-400\/55 {
  outline-color: rgb(74 222 128 / 0.55);
}

.outline-green-400\/60 {
  outline-color: rgb(74 222 128 / 0.6);
}

.outline-green-400\/65 {
  outline-color: rgb(74 222 128 / 0.65);
}

.outline-green-400\/70 {
  outline-color: rgb(74 222 128 / 0.7);
}

.outline-green-400\/75 {
  outline-color: rgb(74 222 128 / 0.75);
}

.outline-green-400\/80 {
  outline-color: rgb(74 222 128 / 0.8);
}

.outline-green-400\/85 {
  outline-color: rgb(74 222 128 / 0.85);
}

.outline-green-400\/90 {
  outline-color: rgb(74 222 128 / 0.9);
}

.outline-green-400\/95 {
  outline-color: rgb(74 222 128 / 0.95);
}

.outline-green-50 {
  outline-color: #f0fdf4;
}

.outline-green-50\/0 {
  outline-color: rgb(240 253 244 / 0);
}

.outline-green-50\/10 {
  outline-color: rgb(240 253 244 / 0.1);
}

.outline-green-50\/100 {
  outline-color: rgb(240 253 244 / 1);
}

.outline-green-50\/15 {
  outline-color: rgb(240 253 244 / 0.15);
}

.outline-green-50\/20 {
  outline-color: rgb(240 253 244 / 0.2);
}

.outline-green-50\/25 {
  outline-color: rgb(240 253 244 / 0.25);
}

.outline-green-50\/30 {
  outline-color: rgb(240 253 244 / 0.3);
}

.outline-green-50\/35 {
  outline-color: rgb(240 253 244 / 0.35);
}

.outline-green-50\/40 {
  outline-color: rgb(240 253 244 / 0.4);
}

.outline-green-50\/45 {
  outline-color: rgb(240 253 244 / 0.45);
}

.outline-green-50\/5 {
  outline-color: rgb(240 253 244 / 0.05);
}

.outline-green-50\/50 {
  outline-color: rgb(240 253 244 / 0.5);
}

.outline-green-50\/55 {
  outline-color: rgb(240 253 244 / 0.55);
}

.outline-green-50\/60 {
  outline-color: rgb(240 253 244 / 0.6);
}

.outline-green-50\/65 {
  outline-color: rgb(240 253 244 / 0.65);
}

.outline-green-50\/70 {
  outline-color: rgb(240 253 244 / 0.7);
}

.outline-green-50\/75 {
  outline-color: rgb(240 253 244 / 0.75);
}

.outline-green-50\/80 {
  outline-color: rgb(240 253 244 / 0.8);
}

.outline-green-50\/85 {
  outline-color: rgb(240 253 244 / 0.85);
}

.outline-green-50\/90 {
  outline-color: rgb(240 253 244 / 0.9);
}

.outline-green-50\/95 {
  outline-color: rgb(240 253 244 / 0.95);
}

.outline-green-500 {
  outline-color: #22c55e;
}

.outline-green-500\/0 {
  outline-color: rgb(34 197 94 / 0);
}

.outline-green-500\/10 {
  outline-color: rgb(34 197 94 / 0.1);
}

.outline-green-500\/100 {
  outline-color: rgb(34 197 94 / 1);
}

.outline-green-500\/15 {
  outline-color: rgb(34 197 94 / 0.15);
}

.outline-green-500\/20 {
  outline-color: rgb(34 197 94 / 0.2);
}

.outline-green-500\/25 {
  outline-color: rgb(34 197 94 / 0.25);
}

.outline-green-500\/30 {
  outline-color: rgb(34 197 94 / 0.3);
}

.outline-green-500\/35 {
  outline-color: rgb(34 197 94 / 0.35);
}

.outline-green-500\/40 {
  outline-color: rgb(34 197 94 / 0.4);
}

.outline-green-500\/45 {
  outline-color: rgb(34 197 94 / 0.45);
}

.outline-green-500\/5 {
  outline-color: rgb(34 197 94 / 0.05);
}

.outline-green-500\/50 {
  outline-color: rgb(34 197 94 / 0.5);
}

.outline-green-500\/55 {
  outline-color: rgb(34 197 94 / 0.55);
}

.outline-green-500\/60 {
  outline-color: rgb(34 197 94 / 0.6);
}

.outline-green-500\/65 {
  outline-color: rgb(34 197 94 / 0.65);
}

.outline-green-500\/70 {
  outline-color: rgb(34 197 94 / 0.7);
}

.outline-green-500\/75 {
  outline-color: rgb(34 197 94 / 0.75);
}

.outline-green-500\/80 {
  outline-color: rgb(34 197 94 / 0.8);
}

.outline-green-500\/85 {
  outline-color: rgb(34 197 94 / 0.85);
}

.outline-green-500\/90 {
  outline-color: rgb(34 197 94 / 0.9);
}

.outline-green-500\/95 {
  outline-color: rgb(34 197 94 / 0.95);
}

.outline-green-600 {
  outline-color: #16a34a;
}

.outline-green-600\/0 {
  outline-color: rgb(22 163 74 / 0);
}

.outline-green-600\/10 {
  outline-color: rgb(22 163 74 / 0.1);
}

.outline-green-600\/100 {
  outline-color: rgb(22 163 74 / 1);
}

.outline-green-600\/15 {
  outline-color: rgb(22 163 74 / 0.15);
}

.outline-green-600\/20 {
  outline-color: rgb(22 163 74 / 0.2);
}

.outline-green-600\/25 {
  outline-color: rgb(22 163 74 / 0.25);
}

.outline-green-600\/30 {
  outline-color: rgb(22 163 74 / 0.3);
}

.outline-green-600\/35 {
  outline-color: rgb(22 163 74 / 0.35);
}

.outline-green-600\/40 {
  outline-color: rgb(22 163 74 / 0.4);
}

.outline-green-600\/45 {
  outline-color: rgb(22 163 74 / 0.45);
}

.outline-green-600\/5 {
  outline-color: rgb(22 163 74 / 0.05);
}

.outline-green-600\/50 {
  outline-color: rgb(22 163 74 / 0.5);
}

.outline-green-600\/55 {
  outline-color: rgb(22 163 74 / 0.55);
}

.outline-green-600\/60 {
  outline-color: rgb(22 163 74 / 0.6);
}

.outline-green-600\/65 {
  outline-color: rgb(22 163 74 / 0.65);
}

.outline-green-600\/70 {
  outline-color: rgb(22 163 74 / 0.7);
}

.outline-green-600\/75 {
  outline-color: rgb(22 163 74 / 0.75);
}

.outline-green-600\/80 {
  outline-color: rgb(22 163 74 / 0.8);
}

.outline-green-600\/85 {
  outline-color: rgb(22 163 74 / 0.85);
}

.outline-green-600\/90 {
  outline-color: rgb(22 163 74 / 0.9);
}

.outline-green-600\/95 {
  outline-color: rgb(22 163 74 / 0.95);
}

.outline-green-700 {
  outline-color: #15803d;
}

.outline-green-700\/0 {
  outline-color: rgb(21 128 61 / 0);
}

.outline-green-700\/10 {
  outline-color: rgb(21 128 61 / 0.1);
}

.outline-green-700\/100 {
  outline-color: rgb(21 128 61 / 1);
}

.outline-green-700\/15 {
  outline-color: rgb(21 128 61 / 0.15);
}

.outline-green-700\/20 {
  outline-color: rgb(21 128 61 / 0.2);
}

.outline-green-700\/25 {
  outline-color: rgb(21 128 61 / 0.25);
}

.outline-green-700\/30 {
  outline-color: rgb(21 128 61 / 0.3);
}

.outline-green-700\/35 {
  outline-color: rgb(21 128 61 / 0.35);
}

.outline-green-700\/40 {
  outline-color: rgb(21 128 61 / 0.4);
}

.outline-green-700\/45 {
  outline-color: rgb(21 128 61 / 0.45);
}

.outline-green-700\/5 {
  outline-color: rgb(21 128 61 / 0.05);
}

.outline-green-700\/50 {
  outline-color: rgb(21 128 61 / 0.5);
}

.outline-green-700\/55 {
  outline-color: rgb(21 128 61 / 0.55);
}

.outline-green-700\/60 {
  outline-color: rgb(21 128 61 / 0.6);
}

.outline-green-700\/65 {
  outline-color: rgb(21 128 61 / 0.65);
}

.outline-green-700\/70 {
  outline-color: rgb(21 128 61 / 0.7);
}

.outline-green-700\/75 {
  outline-color: rgb(21 128 61 / 0.75);
}

.outline-green-700\/80 {
  outline-color: rgb(21 128 61 / 0.8);
}

.outline-green-700\/85 {
  outline-color: rgb(21 128 61 / 0.85);
}

.outline-green-700\/90 {
  outline-color: rgb(21 128 61 / 0.9);
}

.outline-green-700\/95 {
  outline-color: rgb(21 128 61 / 0.95);
}

.outline-green-800 {
  outline-color: #166534;
}

.outline-green-800\/0 {
  outline-color: rgb(22 101 52 / 0);
}

.outline-green-800\/10 {
  outline-color: rgb(22 101 52 / 0.1);
}

.outline-green-800\/100 {
  outline-color: rgb(22 101 52 / 1);
}

.outline-green-800\/15 {
  outline-color: rgb(22 101 52 / 0.15);
}

.outline-green-800\/20 {
  outline-color: rgb(22 101 52 / 0.2);
}

.outline-green-800\/25 {
  outline-color: rgb(22 101 52 / 0.25);
}

.outline-green-800\/30 {
  outline-color: rgb(22 101 52 / 0.3);
}

.outline-green-800\/35 {
  outline-color: rgb(22 101 52 / 0.35);
}

.outline-green-800\/40 {
  outline-color: rgb(22 101 52 / 0.4);
}

.outline-green-800\/45 {
  outline-color: rgb(22 101 52 / 0.45);
}

.outline-green-800\/5 {
  outline-color: rgb(22 101 52 / 0.05);
}

.outline-green-800\/50 {
  outline-color: rgb(22 101 52 / 0.5);
}

.outline-green-800\/55 {
  outline-color: rgb(22 101 52 / 0.55);
}

.outline-green-800\/60 {
  outline-color: rgb(22 101 52 / 0.6);
}

.outline-green-800\/65 {
  outline-color: rgb(22 101 52 / 0.65);
}

.outline-green-800\/70 {
  outline-color: rgb(22 101 52 / 0.7);
}

.outline-green-800\/75 {
  outline-color: rgb(22 101 52 / 0.75);
}

.outline-green-800\/80 {
  outline-color: rgb(22 101 52 / 0.8);
}

.outline-green-800\/85 {
  outline-color: rgb(22 101 52 / 0.85);
}

.outline-green-800\/90 {
  outline-color: rgb(22 101 52 / 0.9);
}

.outline-green-800\/95 {
  outline-color: rgb(22 101 52 / 0.95);
}

.outline-green-900 {
  outline-color: #14532d;
}

.outline-green-900\/0 {
  outline-color: rgb(20 83 45 / 0);
}

.outline-green-900\/10 {
  outline-color: rgb(20 83 45 / 0.1);
}

.outline-green-900\/100 {
  outline-color: rgb(20 83 45 / 1);
}

.outline-green-900\/15 {
  outline-color: rgb(20 83 45 / 0.15);
}

.outline-green-900\/20 {
  outline-color: rgb(20 83 45 / 0.2);
}

.outline-green-900\/25 {
  outline-color: rgb(20 83 45 / 0.25);
}

.outline-green-900\/30 {
  outline-color: rgb(20 83 45 / 0.3);
}

.outline-green-900\/35 {
  outline-color: rgb(20 83 45 / 0.35);
}

.outline-green-900\/40 {
  outline-color: rgb(20 83 45 / 0.4);
}

.outline-green-900\/45 {
  outline-color: rgb(20 83 45 / 0.45);
}

.outline-green-900\/5 {
  outline-color: rgb(20 83 45 / 0.05);
}

.outline-green-900\/50 {
  outline-color: rgb(20 83 45 / 0.5);
}

.outline-green-900\/55 {
  outline-color: rgb(20 83 45 / 0.55);
}

.outline-green-900\/60 {
  outline-color: rgb(20 83 45 / 0.6);
}

.outline-green-900\/65 {
  outline-color: rgb(20 83 45 / 0.65);
}

.outline-green-900\/70 {
  outline-color: rgb(20 83 45 / 0.7);
}

.outline-green-900\/75 {
  outline-color: rgb(20 83 45 / 0.75);
}

.outline-green-900\/80 {
  outline-color: rgb(20 83 45 / 0.8);
}

.outline-green-900\/85 {
  outline-color: rgb(20 83 45 / 0.85);
}

.outline-green-900\/90 {
  outline-color: rgb(20 83 45 / 0.9);
}

.outline-green-900\/95 {
  outline-color: rgb(20 83 45 / 0.95);
}

.outline-green-950 {
  outline-color: #052e16;
}

.outline-green-950\/0 {
  outline-color: rgb(5 46 22 / 0);
}

.outline-green-950\/10 {
  outline-color: rgb(5 46 22 / 0.1);
}

.outline-green-950\/100 {
  outline-color: rgb(5 46 22 / 1);
}

.outline-green-950\/15 {
  outline-color: rgb(5 46 22 / 0.15);
}

.outline-green-950\/20 {
  outline-color: rgb(5 46 22 / 0.2);
}

.outline-green-950\/25 {
  outline-color: rgb(5 46 22 / 0.25);
}

.outline-green-950\/30 {
  outline-color: rgb(5 46 22 / 0.3);
}

.outline-green-950\/35 {
  outline-color: rgb(5 46 22 / 0.35);
}

.outline-green-950\/40 {
  outline-color: rgb(5 46 22 / 0.4);
}

.outline-green-950\/45 {
  outline-color: rgb(5 46 22 / 0.45);
}

.outline-green-950\/5 {
  outline-color: rgb(5 46 22 / 0.05);
}

.outline-green-950\/50 {
  outline-color: rgb(5 46 22 / 0.5);
}

.outline-green-950\/55 {
  outline-color: rgb(5 46 22 / 0.55);
}

.outline-green-950\/60 {
  outline-color: rgb(5 46 22 / 0.6);
}

.outline-green-950\/65 {
  outline-color: rgb(5 46 22 / 0.65);
}

.outline-green-950\/70 {
  outline-color: rgb(5 46 22 / 0.7);
}

.outline-green-950\/75 {
  outline-color: rgb(5 46 22 / 0.75);
}

.outline-green-950\/80 {
  outline-color: rgb(5 46 22 / 0.8);
}

.outline-green-950\/85 {
  outline-color: rgb(5 46 22 / 0.85);
}

.outline-green-950\/90 {
  outline-color: rgb(5 46 22 / 0.9);
}

.outline-green-950\/95 {
  outline-color: rgb(5 46 22 / 0.95);
}

.outline-red-100 {
  outline-color: #fee2e2;
}

.outline-red-100\/0 {
  outline-color: rgb(254 226 226 / 0);
}

.outline-red-100\/10 {
  outline-color: rgb(254 226 226 / 0.1);
}

.outline-red-100\/100 {
  outline-color: rgb(254 226 226 / 1);
}

.outline-red-100\/15 {
  outline-color: rgb(254 226 226 / 0.15);
}

.outline-red-100\/20 {
  outline-color: rgb(254 226 226 / 0.2);
}

.outline-red-100\/25 {
  outline-color: rgb(254 226 226 / 0.25);
}

.outline-red-100\/30 {
  outline-color: rgb(254 226 226 / 0.3);
}

.outline-red-100\/35 {
  outline-color: rgb(254 226 226 / 0.35);
}

.outline-red-100\/40 {
  outline-color: rgb(254 226 226 / 0.4);
}

.outline-red-100\/45 {
  outline-color: rgb(254 226 226 / 0.45);
}

.outline-red-100\/5 {
  outline-color: rgb(254 226 226 / 0.05);
}

.outline-red-100\/50 {
  outline-color: rgb(254 226 226 / 0.5);
}

.outline-red-100\/55 {
  outline-color: rgb(254 226 226 / 0.55);
}

.outline-red-100\/60 {
  outline-color: rgb(254 226 226 / 0.6);
}

.outline-red-100\/65 {
  outline-color: rgb(254 226 226 / 0.65);
}

.outline-red-100\/70 {
  outline-color: rgb(254 226 226 / 0.7);
}

.outline-red-100\/75 {
  outline-color: rgb(254 226 226 / 0.75);
}

.outline-red-100\/80 {
  outline-color: rgb(254 226 226 / 0.8);
}

.outline-red-100\/85 {
  outline-color: rgb(254 226 226 / 0.85);
}

.outline-red-100\/90 {
  outline-color: rgb(254 226 226 / 0.9);
}

.outline-red-100\/95 {
  outline-color: rgb(254 226 226 / 0.95);
}

.outline-red-200 {
  outline-color: #fecaca;
}

.outline-red-200\/0 {
  outline-color: rgb(254 202 202 / 0);
}

.outline-red-200\/10 {
  outline-color: rgb(254 202 202 / 0.1);
}

.outline-red-200\/100 {
  outline-color: rgb(254 202 202 / 1);
}

.outline-red-200\/15 {
  outline-color: rgb(254 202 202 / 0.15);
}

.outline-red-200\/20 {
  outline-color: rgb(254 202 202 / 0.2);
}

.outline-red-200\/25 {
  outline-color: rgb(254 202 202 / 0.25);
}

.outline-red-200\/30 {
  outline-color: rgb(254 202 202 / 0.3);
}

.outline-red-200\/35 {
  outline-color: rgb(254 202 202 / 0.35);
}

.outline-red-200\/40 {
  outline-color: rgb(254 202 202 / 0.4);
}

.outline-red-200\/45 {
  outline-color: rgb(254 202 202 / 0.45);
}

.outline-red-200\/5 {
  outline-color: rgb(254 202 202 / 0.05);
}

.outline-red-200\/50 {
  outline-color: rgb(254 202 202 / 0.5);
}

.outline-red-200\/55 {
  outline-color: rgb(254 202 202 / 0.55);
}

.outline-red-200\/60 {
  outline-color: rgb(254 202 202 / 0.6);
}

.outline-red-200\/65 {
  outline-color: rgb(254 202 202 / 0.65);
}

.outline-red-200\/70 {
  outline-color: rgb(254 202 202 / 0.7);
}

.outline-red-200\/75 {
  outline-color: rgb(254 202 202 / 0.75);
}

.outline-red-200\/80 {
  outline-color: rgb(254 202 202 / 0.8);
}

.outline-red-200\/85 {
  outline-color: rgb(254 202 202 / 0.85);
}

.outline-red-200\/90 {
  outline-color: rgb(254 202 202 / 0.9);
}

.outline-red-200\/95 {
  outline-color: rgb(254 202 202 / 0.95);
}

.outline-red-300 {
  outline-color: #fca5a5;
}

.outline-red-300\/0 {
  outline-color: rgb(252 165 165 / 0);
}

.outline-red-300\/10 {
  outline-color: rgb(252 165 165 / 0.1);
}

.outline-red-300\/100 {
  outline-color: rgb(252 165 165 / 1);
}

.outline-red-300\/15 {
  outline-color: rgb(252 165 165 / 0.15);
}

.outline-red-300\/20 {
  outline-color: rgb(252 165 165 / 0.2);
}

.outline-red-300\/25 {
  outline-color: rgb(252 165 165 / 0.25);
}

.outline-red-300\/30 {
  outline-color: rgb(252 165 165 / 0.3);
}

.outline-red-300\/35 {
  outline-color: rgb(252 165 165 / 0.35);
}

.outline-red-300\/40 {
  outline-color: rgb(252 165 165 / 0.4);
}

.outline-red-300\/45 {
  outline-color: rgb(252 165 165 / 0.45);
}

.outline-red-300\/5 {
  outline-color: rgb(252 165 165 / 0.05);
}

.outline-red-300\/50 {
  outline-color: rgb(252 165 165 / 0.5);
}

.outline-red-300\/55 {
  outline-color: rgb(252 165 165 / 0.55);
}

.outline-red-300\/60 {
  outline-color: rgb(252 165 165 / 0.6);
}

.outline-red-300\/65 {
  outline-color: rgb(252 165 165 / 0.65);
}

.outline-red-300\/70 {
  outline-color: rgb(252 165 165 / 0.7);
}

.outline-red-300\/75 {
  outline-color: rgb(252 165 165 / 0.75);
}

.outline-red-300\/80 {
  outline-color: rgb(252 165 165 / 0.8);
}

.outline-red-300\/85 {
  outline-color: rgb(252 165 165 / 0.85);
}

.outline-red-300\/90 {
  outline-color: rgb(252 165 165 / 0.9);
}

.outline-red-300\/95 {
  outline-color: rgb(252 165 165 / 0.95);
}

.outline-red-400 {
  outline-color: #f87171;
}

.outline-red-400\/0 {
  outline-color: rgb(248 113 113 / 0);
}

.outline-red-400\/10 {
  outline-color: rgb(248 113 113 / 0.1);
}

.outline-red-400\/100 {
  outline-color: rgb(248 113 113 / 1);
}

.outline-red-400\/15 {
  outline-color: rgb(248 113 113 / 0.15);
}

.outline-red-400\/20 {
  outline-color: rgb(248 113 113 / 0.2);
}

.outline-red-400\/25 {
  outline-color: rgb(248 113 113 / 0.25);
}

.outline-red-400\/30 {
  outline-color: rgb(248 113 113 / 0.3);
}

.outline-red-400\/35 {
  outline-color: rgb(248 113 113 / 0.35);
}

.outline-red-400\/40 {
  outline-color: rgb(248 113 113 / 0.4);
}

.outline-red-400\/45 {
  outline-color: rgb(248 113 113 / 0.45);
}

.outline-red-400\/5 {
  outline-color: rgb(248 113 113 / 0.05);
}

.outline-red-400\/50 {
  outline-color: rgb(248 113 113 / 0.5);
}

.outline-red-400\/55 {
  outline-color: rgb(248 113 113 / 0.55);
}

.outline-red-400\/60 {
  outline-color: rgb(248 113 113 / 0.6);
}

.outline-red-400\/65 {
  outline-color: rgb(248 113 113 / 0.65);
}

.outline-red-400\/70 {
  outline-color: rgb(248 113 113 / 0.7);
}

.outline-red-400\/75 {
  outline-color: rgb(248 113 113 / 0.75);
}

.outline-red-400\/80 {
  outline-color: rgb(248 113 113 / 0.8);
}

.outline-red-400\/85 {
  outline-color: rgb(248 113 113 / 0.85);
}

.outline-red-400\/90 {
  outline-color: rgb(248 113 113 / 0.9);
}

.outline-red-400\/95 {
  outline-color: rgb(248 113 113 / 0.95);
}

.outline-red-50 {
  outline-color: #fef2f2;
}

.outline-red-50\/0 {
  outline-color: rgb(254 242 242 / 0);
}

.outline-red-50\/10 {
  outline-color: rgb(254 242 242 / 0.1);
}

.outline-red-50\/100 {
  outline-color: rgb(254 242 242 / 1);
}

.outline-red-50\/15 {
  outline-color: rgb(254 242 242 / 0.15);
}

.outline-red-50\/20 {
  outline-color: rgb(254 242 242 / 0.2);
}

.outline-red-50\/25 {
  outline-color: rgb(254 242 242 / 0.25);
}

.outline-red-50\/30 {
  outline-color: rgb(254 242 242 / 0.3);
}

.outline-red-50\/35 {
  outline-color: rgb(254 242 242 / 0.35);
}

.outline-red-50\/40 {
  outline-color: rgb(254 242 242 / 0.4);
}

.outline-red-50\/45 {
  outline-color: rgb(254 242 242 / 0.45);
}

.outline-red-50\/5 {
  outline-color: rgb(254 242 242 / 0.05);
}

.outline-red-50\/50 {
  outline-color: rgb(254 242 242 / 0.5);
}

.outline-red-50\/55 {
  outline-color: rgb(254 242 242 / 0.55);
}

.outline-red-50\/60 {
  outline-color: rgb(254 242 242 / 0.6);
}

.outline-red-50\/65 {
  outline-color: rgb(254 242 242 / 0.65);
}

.outline-red-50\/70 {
  outline-color: rgb(254 242 242 / 0.7);
}

.outline-red-50\/75 {
  outline-color: rgb(254 242 242 / 0.75);
}

.outline-red-50\/80 {
  outline-color: rgb(254 242 242 / 0.8);
}

.outline-red-50\/85 {
  outline-color: rgb(254 242 242 / 0.85);
}

.outline-red-50\/90 {
  outline-color: rgb(254 242 242 / 0.9);
}

.outline-red-50\/95 {
  outline-color: rgb(254 242 242 / 0.95);
}

.outline-red-500 {
  outline-color: #ef4444;
}

.outline-red-500\/0 {
  outline-color: rgb(239 68 68 / 0);
}

.outline-red-500\/10 {
  outline-color: rgb(239 68 68 / 0.1);
}

.outline-red-500\/100 {
  outline-color: rgb(239 68 68 / 1);
}

.outline-red-500\/15 {
  outline-color: rgb(239 68 68 / 0.15);
}

.outline-red-500\/20 {
  outline-color: rgb(239 68 68 / 0.2);
}

.outline-red-500\/25 {
  outline-color: rgb(239 68 68 / 0.25);
}

.outline-red-500\/30 {
  outline-color: rgb(239 68 68 / 0.3);
}

.outline-red-500\/35 {
  outline-color: rgb(239 68 68 / 0.35);
}

.outline-red-500\/40 {
  outline-color: rgb(239 68 68 / 0.4);
}

.outline-red-500\/45 {
  outline-color: rgb(239 68 68 / 0.45);
}

.outline-red-500\/5 {
  outline-color: rgb(239 68 68 / 0.05);
}

.outline-red-500\/50 {
  outline-color: rgb(239 68 68 / 0.5);
}

.outline-red-500\/55 {
  outline-color: rgb(239 68 68 / 0.55);
}

.outline-red-500\/60 {
  outline-color: rgb(239 68 68 / 0.6);
}

.outline-red-500\/65 {
  outline-color: rgb(239 68 68 / 0.65);
}

.outline-red-500\/70 {
  outline-color: rgb(239 68 68 / 0.7);
}

.outline-red-500\/75 {
  outline-color: rgb(239 68 68 / 0.75);
}

.outline-red-500\/80 {
  outline-color: rgb(239 68 68 / 0.8);
}

.outline-red-500\/85 {
  outline-color: rgb(239 68 68 / 0.85);
}

.outline-red-500\/90 {
  outline-color: rgb(239 68 68 / 0.9);
}

.outline-red-500\/95 {
  outline-color: rgb(239 68 68 / 0.95);
}

.outline-red-600 {
  outline-color: #dc2626;
}

.outline-red-600\/0 {
  outline-color: rgb(220 38 38 / 0);
}

.outline-red-600\/10 {
  outline-color: rgb(220 38 38 / 0.1);
}

.outline-red-600\/100 {
  outline-color: rgb(220 38 38 / 1);
}

.outline-red-600\/15 {
  outline-color: rgb(220 38 38 / 0.15);
}

.outline-red-600\/20 {
  outline-color: rgb(220 38 38 / 0.2);
}

.outline-red-600\/25 {
  outline-color: rgb(220 38 38 / 0.25);
}

.outline-red-600\/30 {
  outline-color: rgb(220 38 38 / 0.3);
}

.outline-red-600\/35 {
  outline-color: rgb(220 38 38 / 0.35);
}

.outline-red-600\/40 {
  outline-color: rgb(220 38 38 / 0.4);
}

.outline-red-600\/45 {
  outline-color: rgb(220 38 38 / 0.45);
}

.outline-red-600\/5 {
  outline-color: rgb(220 38 38 / 0.05);
}

.outline-red-600\/50 {
  outline-color: rgb(220 38 38 / 0.5);
}

.outline-red-600\/55 {
  outline-color: rgb(220 38 38 / 0.55);
}

.outline-red-600\/60 {
  outline-color: rgb(220 38 38 / 0.6);
}

.outline-red-600\/65 {
  outline-color: rgb(220 38 38 / 0.65);
}

.outline-red-600\/70 {
  outline-color: rgb(220 38 38 / 0.7);
}

.outline-red-600\/75 {
  outline-color: rgb(220 38 38 / 0.75);
}

.outline-red-600\/80 {
  outline-color: rgb(220 38 38 / 0.8);
}

.outline-red-600\/85 {
  outline-color: rgb(220 38 38 / 0.85);
}

.outline-red-600\/90 {
  outline-color: rgb(220 38 38 / 0.9);
}

.outline-red-600\/95 {
  outline-color: rgb(220 38 38 / 0.95);
}

.outline-red-700 {
  outline-color: #b91c1c;
}

.outline-red-700\/0 {
  outline-color: rgb(185 28 28 / 0);
}

.outline-red-700\/10 {
  outline-color: rgb(185 28 28 / 0.1);
}

.outline-red-700\/100 {
  outline-color: rgb(185 28 28 / 1);
}

.outline-red-700\/15 {
  outline-color: rgb(185 28 28 / 0.15);
}

.outline-red-700\/20 {
  outline-color: rgb(185 28 28 / 0.2);
}

.outline-red-700\/25 {
  outline-color: rgb(185 28 28 / 0.25);
}

.outline-red-700\/30 {
  outline-color: rgb(185 28 28 / 0.3);
}

.outline-red-700\/35 {
  outline-color: rgb(185 28 28 / 0.35);
}

.outline-red-700\/40 {
  outline-color: rgb(185 28 28 / 0.4);
}

.outline-red-700\/45 {
  outline-color: rgb(185 28 28 / 0.45);
}

.outline-red-700\/5 {
  outline-color: rgb(185 28 28 / 0.05);
}

.outline-red-700\/50 {
  outline-color: rgb(185 28 28 / 0.5);
}

.outline-red-700\/55 {
  outline-color: rgb(185 28 28 / 0.55);
}

.outline-red-700\/60 {
  outline-color: rgb(185 28 28 / 0.6);
}

.outline-red-700\/65 {
  outline-color: rgb(185 28 28 / 0.65);
}

.outline-red-700\/70 {
  outline-color: rgb(185 28 28 / 0.7);
}

.outline-red-700\/75 {
  outline-color: rgb(185 28 28 / 0.75);
}

.outline-red-700\/80 {
  outline-color: rgb(185 28 28 / 0.8);
}

.outline-red-700\/85 {
  outline-color: rgb(185 28 28 / 0.85);
}

.outline-red-700\/90 {
  outline-color: rgb(185 28 28 / 0.9);
}

.outline-red-700\/95 {
  outline-color: rgb(185 28 28 / 0.95);
}

.outline-red-800 {
  outline-color: #991b1b;
}

.outline-red-800\/0 {
  outline-color: rgb(153 27 27 / 0);
}

.outline-red-800\/10 {
  outline-color: rgb(153 27 27 / 0.1);
}

.outline-red-800\/100 {
  outline-color: rgb(153 27 27 / 1);
}

.outline-red-800\/15 {
  outline-color: rgb(153 27 27 / 0.15);
}

.outline-red-800\/20 {
  outline-color: rgb(153 27 27 / 0.2);
}

.outline-red-800\/25 {
  outline-color: rgb(153 27 27 / 0.25);
}

.outline-red-800\/30 {
  outline-color: rgb(153 27 27 / 0.3);
}

.outline-red-800\/35 {
  outline-color: rgb(153 27 27 / 0.35);
}

.outline-red-800\/40 {
  outline-color: rgb(153 27 27 / 0.4);
}

.outline-red-800\/45 {
  outline-color: rgb(153 27 27 / 0.45);
}

.outline-red-800\/5 {
  outline-color: rgb(153 27 27 / 0.05);
}

.outline-red-800\/50 {
  outline-color: rgb(153 27 27 / 0.5);
}

.outline-red-800\/55 {
  outline-color: rgb(153 27 27 / 0.55);
}

.outline-red-800\/60 {
  outline-color: rgb(153 27 27 / 0.6);
}

.outline-red-800\/65 {
  outline-color: rgb(153 27 27 / 0.65);
}

.outline-red-800\/70 {
  outline-color: rgb(153 27 27 / 0.7);
}

.outline-red-800\/75 {
  outline-color: rgb(153 27 27 / 0.75);
}

.outline-red-800\/80 {
  outline-color: rgb(153 27 27 / 0.8);
}

.outline-red-800\/85 {
  outline-color: rgb(153 27 27 / 0.85);
}

.outline-red-800\/90 {
  outline-color: rgb(153 27 27 / 0.9);
}

.outline-red-800\/95 {
  outline-color: rgb(153 27 27 / 0.95);
}

.outline-red-900 {
  outline-color: #7f1d1d;
}

.outline-red-900\/0 {
  outline-color: rgb(127 29 29 / 0);
}

.outline-red-900\/10 {
  outline-color: rgb(127 29 29 / 0.1);
}

.outline-red-900\/100 {
  outline-color: rgb(127 29 29 / 1);
}

.outline-red-900\/15 {
  outline-color: rgb(127 29 29 / 0.15);
}

.outline-red-900\/20 {
  outline-color: rgb(127 29 29 / 0.2);
}

.outline-red-900\/25 {
  outline-color: rgb(127 29 29 / 0.25);
}

.outline-red-900\/30 {
  outline-color: rgb(127 29 29 / 0.3);
}

.outline-red-900\/35 {
  outline-color: rgb(127 29 29 / 0.35);
}

.outline-red-900\/40 {
  outline-color: rgb(127 29 29 / 0.4);
}

.outline-red-900\/45 {
  outline-color: rgb(127 29 29 / 0.45);
}

.outline-red-900\/5 {
  outline-color: rgb(127 29 29 / 0.05);
}

.outline-red-900\/50 {
  outline-color: rgb(127 29 29 / 0.5);
}

.outline-red-900\/55 {
  outline-color: rgb(127 29 29 / 0.55);
}

.outline-red-900\/60 {
  outline-color: rgb(127 29 29 / 0.6);
}

.outline-red-900\/65 {
  outline-color: rgb(127 29 29 / 0.65);
}

.outline-red-900\/70 {
  outline-color: rgb(127 29 29 / 0.7);
}

.outline-red-900\/75 {
  outline-color: rgb(127 29 29 / 0.75);
}

.outline-red-900\/80 {
  outline-color: rgb(127 29 29 / 0.8);
}

.outline-red-900\/85 {
  outline-color: rgb(127 29 29 / 0.85);
}

.outline-red-900\/90 {
  outline-color: rgb(127 29 29 / 0.9);
}

.outline-red-900\/95 {
  outline-color: rgb(127 29 29 / 0.95);
}

.outline-red-950 {
  outline-color: #450a0a;
}

.outline-red-950\/0 {
  outline-color: rgb(69 10 10 / 0);
}

.outline-red-950\/10 {
  outline-color: rgb(69 10 10 / 0.1);
}

.outline-red-950\/100 {
  outline-color: rgb(69 10 10 / 1);
}

.outline-red-950\/15 {
  outline-color: rgb(69 10 10 / 0.15);
}

.outline-red-950\/20 {
  outline-color: rgb(69 10 10 / 0.2);
}

.outline-red-950\/25 {
  outline-color: rgb(69 10 10 / 0.25);
}

.outline-red-950\/30 {
  outline-color: rgb(69 10 10 / 0.3);
}

.outline-red-950\/35 {
  outline-color: rgb(69 10 10 / 0.35);
}

.outline-red-950\/40 {
  outline-color: rgb(69 10 10 / 0.4);
}

.outline-red-950\/45 {
  outline-color: rgb(69 10 10 / 0.45);
}

.outline-red-950\/5 {
  outline-color: rgb(69 10 10 / 0.05);
}

.outline-red-950\/50 {
  outline-color: rgb(69 10 10 / 0.5);
}

.outline-red-950\/55 {
  outline-color: rgb(69 10 10 / 0.55);
}

.outline-red-950\/60 {
  outline-color: rgb(69 10 10 / 0.6);
}

.outline-red-950\/65 {
  outline-color: rgb(69 10 10 / 0.65);
}

.outline-red-950\/70 {
  outline-color: rgb(69 10 10 / 0.7);
}

.outline-red-950\/75 {
  outline-color: rgb(69 10 10 / 0.75);
}

.outline-red-950\/80 {
  outline-color: rgb(69 10 10 / 0.8);
}

.outline-red-950\/85 {
  outline-color: rgb(69 10 10 / 0.85);
}

.outline-red-950\/90 {
  outline-color: rgb(69 10 10 / 0.9);
}

.outline-red-950\/95 {
  outline-color: rgb(69 10 10 / 0.95);
}

.outline-transparent {
  outline-color: transparent;
}

.outline-transparent\/0 {
  outline-color: rgb(0 0 0 / 0);
}

.outline-transparent\/10 {
  outline-color: rgb(0 0 0 / 0.1);
}

.outline-transparent\/100 {
  outline-color: rgb(0 0 0 / 1);
}

.outline-transparent\/15 {
  outline-color: rgb(0 0 0 / 0.15);
}

.outline-transparent\/20 {
  outline-color: rgb(0 0 0 / 0.2);
}

.outline-transparent\/25 {
  outline-color: rgb(0 0 0 / 0.25);
}

.outline-transparent\/30 {
  outline-color: rgb(0 0 0 / 0.3);
}

.outline-transparent\/35 {
  outline-color: rgb(0 0 0 / 0.35);
}

.outline-transparent\/40 {
  outline-color: rgb(0 0 0 / 0.4);
}

.outline-transparent\/45 {
  outline-color: rgb(0 0 0 / 0.45);
}

.outline-transparent\/5 {
  outline-color: rgb(0 0 0 / 0.05);
}

.outline-transparent\/50 {
  outline-color: rgb(0 0 0 / 0.5);
}

.outline-transparent\/55 {
  outline-color: rgb(0 0 0 / 0.55);
}

.outline-transparent\/60 {
  outline-color: rgb(0 0 0 / 0.6);
}

.outline-transparent\/65 {
  outline-color: rgb(0 0 0 / 0.65);
}

.outline-transparent\/70 {
  outline-color: rgb(0 0 0 / 0.7);
}

.outline-transparent\/75 {
  outline-color: rgb(0 0 0 / 0.75);
}

.outline-transparent\/80 {
  outline-color: rgb(0 0 0 / 0.8);
}

.outline-transparent\/85 {
  outline-color: rgb(0 0 0 / 0.85);
}

.outline-transparent\/90 {
  outline-color: rgb(0 0 0 / 0.9);
}

.outline-transparent\/95 {
  outline-color: rgb(0 0 0 / 0.95);
}

.outline-white {
  outline-color: #fff;
}

.outline-white\/0 {
  outline-color: rgb(255 255 255 / 0);
}

.outline-white\/10 {
  outline-color: rgb(255 255 255 / 0.1);
}

.outline-white\/100 {
  outline-color: rgb(255 255 255 / 1);
}

.outline-white\/15 {
  outline-color: rgb(255 255 255 / 0.15);
}

.outline-white\/20 {
  outline-color: rgb(255 255 255 / 0.2);
}

.outline-white\/25 {
  outline-color: rgb(255 255 255 / 0.25);
}

.outline-white\/30 {
  outline-color: rgb(255 255 255 / 0.3);
}

.outline-white\/35 {
  outline-color: rgb(255 255 255 / 0.35);
}

.outline-white\/40 {
  outline-color: rgb(255 255 255 / 0.4);
}

.outline-white\/45 {
  outline-color: rgb(255 255 255 / 0.45);
}

.outline-white\/5 {
  outline-color: rgb(255 255 255 / 0.05);
}

.outline-white\/50 {
  outline-color: rgb(255 255 255 / 0.5);
}

.outline-white\/55 {
  outline-color: rgb(255 255 255 / 0.55);
}

.outline-white\/60 {
  outline-color: rgb(255 255 255 / 0.6);
}

.outline-white\/65 {
  outline-color: rgb(255 255 255 / 0.65);
}

.outline-white\/70 {
  outline-color: rgb(255 255 255 / 0.7);
}

.outline-white\/75 {
  outline-color: rgb(255 255 255 / 0.75);
}

.outline-white\/80 {
  outline-color: rgb(255 255 255 / 0.8);
}

.outline-white\/85 {
  outline-color: rgb(255 255 255 / 0.85);
}

.outline-white\/90 {
  outline-color: rgb(255 255 255 / 0.9);
}

.outline-white\/95 {
  outline-color: rgb(255 255 255 / 0.95);
}

.ring {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.ring-0 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.ring-1 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.ring-2 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.ring-4 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.ring-8 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.ring-inset {
  --tw-ring-inset: inset;
}

.ring-black {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity, 1));
}

.ring-black\/0 {
  --tw-ring-color: rgb(0 0 0 / 0);
}

.ring-black\/10 {
  --tw-ring-color: rgb(0 0 0 / 0.1);
}

.ring-black\/100 {
  --tw-ring-color: rgb(0 0 0 / 1);
}

.ring-black\/15 {
  --tw-ring-color: rgb(0 0 0 / 0.15);
}

.ring-black\/20 {
  --tw-ring-color: rgb(0 0 0 / 0.2);
}

.ring-black\/25 {
  --tw-ring-color: rgb(0 0 0 / 0.25);
}

.ring-black\/30 {
  --tw-ring-color: rgb(0 0 0 / 0.3);
}

.ring-black\/35 {
  --tw-ring-color: rgb(0 0 0 / 0.35);
}

.ring-black\/40 {
  --tw-ring-color: rgb(0 0 0 / 0.4);
}

.ring-black\/45 {
  --tw-ring-color: rgb(0 0 0 / 0.45);
}

.ring-black\/5 {
  --tw-ring-color: rgb(0 0 0 / 0.05);
}

.ring-black\/50 {
  --tw-ring-color: rgb(0 0 0 / 0.5);
}

.ring-black\/55 {
  --tw-ring-color: rgb(0 0 0 / 0.55);
}

.ring-black\/60 {
  --tw-ring-color: rgb(0 0 0 / 0.6);
}

.ring-black\/65 {
  --tw-ring-color: rgb(0 0 0 / 0.65);
}

.ring-black\/70 {
  --tw-ring-color: rgb(0 0 0 / 0.7);
}

.ring-black\/75 {
  --tw-ring-color: rgb(0 0 0 / 0.75);
}

.ring-black\/80 {
  --tw-ring-color: rgb(0 0 0 / 0.8);
}

.ring-black\/85 {
  --tw-ring-color: rgb(0 0 0 / 0.85);
}

.ring-black\/90 {
  --tw-ring-color: rgb(0 0 0 / 0.9);
}

.ring-black\/95 {
  --tw-ring-color: rgb(0 0 0 / 0.95);
}

.ring-blue-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(219 234 254 / var(--tw-ring-opacity, 1));
}

.ring-blue-100\/0 {
  --tw-ring-color: rgb(219 234 254 / 0);
}

.ring-blue-100\/10 {
  --tw-ring-color: rgb(219 234 254 / 0.1);
}

.ring-blue-100\/100 {
  --tw-ring-color: rgb(219 234 254 / 1);
}

.ring-blue-100\/15 {
  --tw-ring-color: rgb(219 234 254 / 0.15);
}

.ring-blue-100\/20 {
  --tw-ring-color: rgb(219 234 254 / 0.2);
}

.ring-blue-100\/25 {
  --tw-ring-color: rgb(219 234 254 / 0.25);
}

.ring-blue-100\/30 {
  --tw-ring-color: rgb(219 234 254 / 0.3);
}

.ring-blue-100\/35 {
  --tw-ring-color: rgb(219 234 254 / 0.35);
}

.ring-blue-100\/40 {
  --tw-ring-color: rgb(219 234 254 / 0.4);
}

.ring-blue-100\/45 {
  --tw-ring-color: rgb(219 234 254 / 0.45);
}

.ring-blue-100\/5 {
  --tw-ring-color: rgb(219 234 254 / 0.05);
}

.ring-blue-100\/50 {
  --tw-ring-color: rgb(219 234 254 / 0.5);
}

.ring-blue-100\/55 {
  --tw-ring-color: rgb(219 234 254 / 0.55);
}

.ring-blue-100\/60 {
  --tw-ring-color: rgb(219 234 254 / 0.6);
}

.ring-blue-100\/65 {
  --tw-ring-color: rgb(219 234 254 / 0.65);
}

.ring-blue-100\/70 {
  --tw-ring-color: rgb(219 234 254 / 0.7);
}

.ring-blue-100\/75 {
  --tw-ring-color: rgb(219 234 254 / 0.75);
}

.ring-blue-100\/80 {
  --tw-ring-color: rgb(219 234 254 / 0.8);
}

.ring-blue-100\/85 {
  --tw-ring-color: rgb(219 234 254 / 0.85);
}

.ring-blue-100\/90 {
  --tw-ring-color: rgb(219 234 254 / 0.9);
}

.ring-blue-100\/95 {
  --tw-ring-color: rgb(219 234 254 / 0.95);
}

.ring-blue-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(191 219 254 / var(--tw-ring-opacity, 1));
}

.ring-blue-200\/0 {
  --tw-ring-color: rgb(191 219 254 / 0);
}

.ring-blue-200\/10 {
  --tw-ring-color: rgb(191 219 254 / 0.1);
}

.ring-blue-200\/100 {
  --tw-ring-color: rgb(191 219 254 / 1);
}

.ring-blue-200\/15 {
  --tw-ring-color: rgb(191 219 254 / 0.15);
}

.ring-blue-200\/20 {
  --tw-ring-color: rgb(191 219 254 / 0.2);
}

.ring-blue-200\/25 {
  --tw-ring-color: rgb(191 219 254 / 0.25);
}

.ring-blue-200\/30 {
  --tw-ring-color: rgb(191 219 254 / 0.3);
}

.ring-blue-200\/35 {
  --tw-ring-color: rgb(191 219 254 / 0.35);
}

.ring-blue-200\/40 {
  --tw-ring-color: rgb(191 219 254 / 0.4);
}

.ring-blue-200\/45 {
  --tw-ring-color: rgb(191 219 254 / 0.45);
}

.ring-blue-200\/5 {
  --tw-ring-color: rgb(191 219 254 / 0.05);
}

.ring-blue-200\/50 {
  --tw-ring-color: rgb(191 219 254 / 0.5);
}

.ring-blue-200\/55 {
  --tw-ring-color: rgb(191 219 254 / 0.55);
}

.ring-blue-200\/60 {
  --tw-ring-color: rgb(191 219 254 / 0.6);
}

.ring-blue-200\/65 {
  --tw-ring-color: rgb(191 219 254 / 0.65);
}

.ring-blue-200\/70 {
  --tw-ring-color: rgb(191 219 254 / 0.7);
}

.ring-blue-200\/75 {
  --tw-ring-color: rgb(191 219 254 / 0.75);
}

.ring-blue-200\/80 {
  --tw-ring-color: rgb(191 219 254 / 0.8);
}

.ring-blue-200\/85 {
  --tw-ring-color: rgb(191 219 254 / 0.85);
}

.ring-blue-200\/90 {
  --tw-ring-color: rgb(191 219 254 / 0.9);
}

.ring-blue-200\/95 {
  --tw-ring-color: rgb(191 219 254 / 0.95);
}

.ring-blue-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(147 197 253 / var(--tw-ring-opacity, 1));
}

.ring-blue-300\/0 {
  --tw-ring-color: rgb(147 197 253 / 0);
}

.ring-blue-300\/10 {
  --tw-ring-color: rgb(147 197 253 / 0.1);
}

.ring-blue-300\/100 {
  --tw-ring-color: rgb(147 197 253 / 1);
}

.ring-blue-300\/15 {
  --tw-ring-color: rgb(147 197 253 / 0.15);
}

.ring-blue-300\/20 {
  --tw-ring-color: rgb(147 197 253 / 0.2);
}

.ring-blue-300\/25 {
  --tw-ring-color: rgb(147 197 253 / 0.25);
}

.ring-blue-300\/30 {
  --tw-ring-color: rgb(147 197 253 / 0.3);
}

.ring-blue-300\/35 {
  --tw-ring-color: rgb(147 197 253 / 0.35);
}

.ring-blue-300\/40 {
  --tw-ring-color: rgb(147 197 253 / 0.4);
}

.ring-blue-300\/45 {
  --tw-ring-color: rgb(147 197 253 / 0.45);
}

.ring-blue-300\/5 {
  --tw-ring-color: rgb(147 197 253 / 0.05);
}

.ring-blue-300\/50 {
  --tw-ring-color: rgb(147 197 253 / 0.5);
}

.ring-blue-300\/55 {
  --tw-ring-color: rgb(147 197 253 / 0.55);
}

.ring-blue-300\/60 {
  --tw-ring-color: rgb(147 197 253 / 0.6);
}

.ring-blue-300\/65 {
  --tw-ring-color: rgb(147 197 253 / 0.65);
}

.ring-blue-300\/70 {
  --tw-ring-color: rgb(147 197 253 / 0.7);
}

.ring-blue-300\/75 {
  --tw-ring-color: rgb(147 197 253 / 0.75);
}

.ring-blue-300\/80 {
  --tw-ring-color: rgb(147 197 253 / 0.8);
}

.ring-blue-300\/85 {
  --tw-ring-color: rgb(147 197 253 / 0.85);
}

.ring-blue-300\/90 {
  --tw-ring-color: rgb(147 197 253 / 0.9);
}

.ring-blue-300\/95 {
  --tw-ring-color: rgb(147 197 253 / 0.95);
}

.ring-blue-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(96 165 250 / var(--tw-ring-opacity, 1));
}

.ring-blue-400\/0 {
  --tw-ring-color: rgb(96 165 250 / 0);
}

.ring-blue-400\/10 {
  --tw-ring-color: rgb(96 165 250 / 0.1);
}

.ring-blue-400\/100 {
  --tw-ring-color: rgb(96 165 250 / 1);
}

.ring-blue-400\/15 {
  --tw-ring-color: rgb(96 165 250 / 0.15);
}

.ring-blue-400\/20 {
  --tw-ring-color: rgb(96 165 250 / 0.2);
}

.ring-blue-400\/25 {
  --tw-ring-color: rgb(96 165 250 / 0.25);
}

.ring-blue-400\/30 {
  --tw-ring-color: rgb(96 165 250 / 0.3);
}

.ring-blue-400\/35 {
  --tw-ring-color: rgb(96 165 250 / 0.35);
}

.ring-blue-400\/40 {
  --tw-ring-color: rgb(96 165 250 / 0.4);
}

.ring-blue-400\/45 {
  --tw-ring-color: rgb(96 165 250 / 0.45);
}

.ring-blue-400\/5 {
  --tw-ring-color: rgb(96 165 250 / 0.05);
}

.ring-blue-400\/50 {
  --tw-ring-color: rgb(96 165 250 / 0.5);
}

.ring-blue-400\/55 {
  --tw-ring-color: rgb(96 165 250 / 0.55);
}

.ring-blue-400\/60 {
  --tw-ring-color: rgb(96 165 250 / 0.6);
}

.ring-blue-400\/65 {
  --tw-ring-color: rgb(96 165 250 / 0.65);
}

.ring-blue-400\/70 {
  --tw-ring-color: rgb(96 165 250 / 0.7);
}

.ring-blue-400\/75 {
  --tw-ring-color: rgb(96 165 250 / 0.75);
}

.ring-blue-400\/80 {
  --tw-ring-color: rgb(96 165 250 / 0.8);
}

.ring-blue-400\/85 {
  --tw-ring-color: rgb(96 165 250 / 0.85);
}

.ring-blue-400\/90 {
  --tw-ring-color: rgb(96 165 250 / 0.9);
}

.ring-blue-400\/95 {
  --tw-ring-color: rgb(96 165 250 / 0.95);
}

.ring-blue-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(239 246 255 / var(--tw-ring-opacity, 1));
}

.ring-blue-50\/0 {
  --tw-ring-color: rgb(239 246 255 / 0);
}

.ring-blue-50\/10 {
  --tw-ring-color: rgb(239 246 255 / 0.1);
}

.ring-blue-50\/100 {
  --tw-ring-color: rgb(239 246 255 / 1);
}

.ring-blue-50\/15 {
  --tw-ring-color: rgb(239 246 255 / 0.15);
}

.ring-blue-50\/20 {
  --tw-ring-color: rgb(239 246 255 / 0.2);
}

.ring-blue-50\/25 {
  --tw-ring-color: rgb(239 246 255 / 0.25);
}

.ring-blue-50\/30 {
  --tw-ring-color: rgb(239 246 255 / 0.3);
}

.ring-blue-50\/35 {
  --tw-ring-color: rgb(239 246 255 / 0.35);
}

.ring-blue-50\/40 {
  --tw-ring-color: rgb(239 246 255 / 0.4);
}

.ring-blue-50\/45 {
  --tw-ring-color: rgb(239 246 255 / 0.45);
}

.ring-blue-50\/5 {
  --tw-ring-color: rgb(239 246 255 / 0.05);
}

.ring-blue-50\/50 {
  --tw-ring-color: rgb(239 246 255 / 0.5);
}

.ring-blue-50\/55 {
  --tw-ring-color: rgb(239 246 255 / 0.55);
}

.ring-blue-50\/60 {
  --tw-ring-color: rgb(239 246 255 / 0.6);
}

.ring-blue-50\/65 {
  --tw-ring-color: rgb(239 246 255 / 0.65);
}

.ring-blue-50\/70 {
  --tw-ring-color: rgb(239 246 255 / 0.7);
}

.ring-blue-50\/75 {
  --tw-ring-color: rgb(239 246 255 / 0.75);
}

.ring-blue-50\/80 {
  --tw-ring-color: rgb(239 246 255 / 0.8);
}

.ring-blue-50\/85 {
  --tw-ring-color: rgb(239 246 255 / 0.85);
}

.ring-blue-50\/90 {
  --tw-ring-color: rgb(239 246 255 / 0.9);
}

.ring-blue-50\/95 {
  --tw-ring-color: rgb(239 246 255 / 0.95);
}

.ring-blue-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
}

.ring-blue-500\/0 {
  --tw-ring-color: rgb(59 130 246 / 0);
}

.ring-blue-500\/10 {
  --tw-ring-color: rgb(59 130 246 / 0.1);
}

.ring-blue-500\/100 {
  --tw-ring-color: rgb(59 130 246 / 1);
}

.ring-blue-500\/15 {
  --tw-ring-color: rgb(59 130 246 / 0.15);
}

.ring-blue-500\/20 {
  --tw-ring-color: rgb(59 130 246 / 0.2);
}

.ring-blue-500\/25 {
  --tw-ring-color: rgb(59 130 246 / 0.25);
}

.ring-blue-500\/30 {
  --tw-ring-color: rgb(59 130 246 / 0.3);
}

.ring-blue-500\/35 {
  --tw-ring-color: rgb(59 130 246 / 0.35);
}

.ring-blue-500\/40 {
  --tw-ring-color: rgb(59 130 246 / 0.4);
}

.ring-blue-500\/45 {
  --tw-ring-color: rgb(59 130 246 / 0.45);
}

.ring-blue-500\/5 {
  --tw-ring-color: rgb(59 130 246 / 0.05);
}

.ring-blue-500\/50 {
  --tw-ring-color: rgb(59 130 246 / 0.5);
}

.ring-blue-500\/55 {
  --tw-ring-color: rgb(59 130 246 / 0.55);
}

.ring-blue-500\/60 {
  --tw-ring-color: rgb(59 130 246 / 0.6);
}

.ring-blue-500\/65 {
  --tw-ring-color: rgb(59 130 246 / 0.65);
}

.ring-blue-500\/70 {
  --tw-ring-color: rgb(59 130 246 / 0.7);
}

.ring-blue-500\/75 {
  --tw-ring-color: rgb(59 130 246 / 0.75);
}

.ring-blue-500\/80 {
  --tw-ring-color: rgb(59 130 246 / 0.8);
}

.ring-blue-500\/85 {
  --tw-ring-color: rgb(59 130 246 / 0.85);
}

.ring-blue-500\/90 {
  --tw-ring-color: rgb(59 130 246 / 0.9);
}

.ring-blue-500\/95 {
  --tw-ring-color: rgb(59 130 246 / 0.95);
}

.ring-blue-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity, 1));
}

.ring-blue-600\/0 {
  --tw-ring-color: rgb(37 99 235 / 0);
}

.ring-blue-600\/10 {
  --tw-ring-color: rgb(37 99 235 / 0.1);
}

.ring-blue-600\/100 {
  --tw-ring-color: rgb(37 99 235 / 1);
}

.ring-blue-600\/15 {
  --tw-ring-color: rgb(37 99 235 / 0.15);
}

.ring-blue-600\/20 {
  --tw-ring-color: rgb(37 99 235 / 0.2);
}

.ring-blue-600\/25 {
  --tw-ring-color: rgb(37 99 235 / 0.25);
}

.ring-blue-600\/30 {
  --tw-ring-color: rgb(37 99 235 / 0.3);
}

.ring-blue-600\/35 {
  --tw-ring-color: rgb(37 99 235 / 0.35);
}

.ring-blue-600\/40 {
  --tw-ring-color: rgb(37 99 235 / 0.4);
}

.ring-blue-600\/45 {
  --tw-ring-color: rgb(37 99 235 / 0.45);
}

.ring-blue-600\/5 {
  --tw-ring-color: rgb(37 99 235 / 0.05);
}

.ring-blue-600\/50 {
  --tw-ring-color: rgb(37 99 235 / 0.5);
}

.ring-blue-600\/55 {
  --tw-ring-color: rgb(37 99 235 / 0.55);
}

.ring-blue-600\/60 {
  --tw-ring-color: rgb(37 99 235 / 0.6);
}

.ring-blue-600\/65 {
  --tw-ring-color: rgb(37 99 235 / 0.65);
}

.ring-blue-600\/70 {
  --tw-ring-color: rgb(37 99 235 / 0.7);
}

.ring-blue-600\/75 {
  --tw-ring-color: rgb(37 99 235 / 0.75);
}

.ring-blue-600\/80 {
  --tw-ring-color: rgb(37 99 235 / 0.8);
}

.ring-blue-600\/85 {
  --tw-ring-color: rgb(37 99 235 / 0.85);
}

.ring-blue-600\/90 {
  --tw-ring-color: rgb(37 99 235 / 0.9);
}

.ring-blue-600\/95 {
  --tw-ring-color: rgb(37 99 235 / 0.95);
}

.ring-blue-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(29 78 216 / var(--tw-ring-opacity, 1));
}

.ring-blue-700\/0 {
  --tw-ring-color: rgb(29 78 216 / 0);
}

.ring-blue-700\/10 {
  --tw-ring-color: rgb(29 78 216 / 0.1);
}

.ring-blue-700\/100 {
  --tw-ring-color: rgb(29 78 216 / 1);
}

.ring-blue-700\/15 {
  --tw-ring-color: rgb(29 78 216 / 0.15);
}

.ring-blue-700\/20 {
  --tw-ring-color: rgb(29 78 216 / 0.2);
}

.ring-blue-700\/25 {
  --tw-ring-color: rgb(29 78 216 / 0.25);
}

.ring-blue-700\/30 {
  --tw-ring-color: rgb(29 78 216 / 0.3);
}

.ring-blue-700\/35 {
  --tw-ring-color: rgb(29 78 216 / 0.35);
}

.ring-blue-700\/40 {
  --tw-ring-color: rgb(29 78 216 / 0.4);
}

.ring-blue-700\/45 {
  --tw-ring-color: rgb(29 78 216 / 0.45);
}

.ring-blue-700\/5 {
  --tw-ring-color: rgb(29 78 216 / 0.05);
}

.ring-blue-700\/50 {
  --tw-ring-color: rgb(29 78 216 / 0.5);
}

.ring-blue-700\/55 {
  --tw-ring-color: rgb(29 78 216 / 0.55);
}

.ring-blue-700\/60 {
  --tw-ring-color: rgb(29 78 216 / 0.6);
}

.ring-blue-700\/65 {
  --tw-ring-color: rgb(29 78 216 / 0.65);
}

.ring-blue-700\/70 {
  --tw-ring-color: rgb(29 78 216 / 0.7);
}

.ring-blue-700\/75 {
  --tw-ring-color: rgb(29 78 216 / 0.75);
}

.ring-blue-700\/80 {
  --tw-ring-color: rgb(29 78 216 / 0.8);
}

.ring-blue-700\/85 {
  --tw-ring-color: rgb(29 78 216 / 0.85);
}

.ring-blue-700\/90 {
  --tw-ring-color: rgb(29 78 216 / 0.9);
}

.ring-blue-700\/95 {
  --tw-ring-color: rgb(29 78 216 / 0.95);
}

.ring-blue-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(30 64 175 / var(--tw-ring-opacity, 1));
}

.ring-blue-800\/0 {
  --tw-ring-color: rgb(30 64 175 / 0);
}

.ring-blue-800\/10 {
  --tw-ring-color: rgb(30 64 175 / 0.1);
}

.ring-blue-800\/100 {
  --tw-ring-color: rgb(30 64 175 / 1);
}

.ring-blue-800\/15 {
  --tw-ring-color: rgb(30 64 175 / 0.15);
}

.ring-blue-800\/20 {
  --tw-ring-color: rgb(30 64 175 / 0.2);
}

.ring-blue-800\/25 {
  --tw-ring-color: rgb(30 64 175 / 0.25);
}

.ring-blue-800\/30 {
  --tw-ring-color: rgb(30 64 175 / 0.3);
}

.ring-blue-800\/35 {
  --tw-ring-color: rgb(30 64 175 / 0.35);
}

.ring-blue-800\/40 {
  --tw-ring-color: rgb(30 64 175 / 0.4);
}

.ring-blue-800\/45 {
  --tw-ring-color: rgb(30 64 175 / 0.45);
}

.ring-blue-800\/5 {
  --tw-ring-color: rgb(30 64 175 / 0.05);
}

.ring-blue-800\/50 {
  --tw-ring-color: rgb(30 64 175 / 0.5);
}

.ring-blue-800\/55 {
  --tw-ring-color: rgb(30 64 175 / 0.55);
}

.ring-blue-800\/60 {
  --tw-ring-color: rgb(30 64 175 / 0.6);
}

.ring-blue-800\/65 {
  --tw-ring-color: rgb(30 64 175 / 0.65);
}

.ring-blue-800\/70 {
  --tw-ring-color: rgb(30 64 175 / 0.7);
}

.ring-blue-800\/75 {
  --tw-ring-color: rgb(30 64 175 / 0.75);
}

.ring-blue-800\/80 {
  --tw-ring-color: rgb(30 64 175 / 0.8);
}

.ring-blue-800\/85 {
  --tw-ring-color: rgb(30 64 175 / 0.85);
}

.ring-blue-800\/90 {
  --tw-ring-color: rgb(30 64 175 / 0.9);
}

.ring-blue-800\/95 {
  --tw-ring-color: rgb(30 64 175 / 0.95);
}

.ring-blue-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(30 58 138 / var(--tw-ring-opacity, 1));
}

.ring-blue-900\/0 {
  --tw-ring-color: rgb(30 58 138 / 0);
}

.ring-blue-900\/10 {
  --tw-ring-color: rgb(30 58 138 / 0.1);
}

.ring-blue-900\/100 {
  --tw-ring-color: rgb(30 58 138 / 1);
}

.ring-blue-900\/15 {
  --tw-ring-color: rgb(30 58 138 / 0.15);
}

.ring-blue-900\/20 {
  --tw-ring-color: rgb(30 58 138 / 0.2);
}

.ring-blue-900\/25 {
  --tw-ring-color: rgb(30 58 138 / 0.25);
}

.ring-blue-900\/30 {
  --tw-ring-color: rgb(30 58 138 / 0.3);
}

.ring-blue-900\/35 {
  --tw-ring-color: rgb(30 58 138 / 0.35);
}

.ring-blue-900\/40 {
  --tw-ring-color: rgb(30 58 138 / 0.4);
}

.ring-blue-900\/45 {
  --tw-ring-color: rgb(30 58 138 / 0.45);
}

.ring-blue-900\/5 {
  --tw-ring-color: rgb(30 58 138 / 0.05);
}

.ring-blue-900\/50 {
  --tw-ring-color: rgb(30 58 138 / 0.5);
}

.ring-blue-900\/55 {
  --tw-ring-color: rgb(30 58 138 / 0.55);
}

.ring-blue-900\/60 {
  --tw-ring-color: rgb(30 58 138 / 0.6);
}

.ring-blue-900\/65 {
  --tw-ring-color: rgb(30 58 138 / 0.65);
}

.ring-blue-900\/70 {
  --tw-ring-color: rgb(30 58 138 / 0.7);
}

.ring-blue-900\/75 {
  --tw-ring-color: rgb(30 58 138 / 0.75);
}

.ring-blue-900\/80 {
  --tw-ring-color: rgb(30 58 138 / 0.8);
}

.ring-blue-900\/85 {
  --tw-ring-color: rgb(30 58 138 / 0.85);
}

.ring-blue-900\/90 {
  --tw-ring-color: rgb(30 58 138 / 0.9);
}

.ring-blue-900\/95 {
  --tw-ring-color: rgb(30 58 138 / 0.95);
}

.ring-blue-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(23 37 84 / var(--tw-ring-opacity, 1));
}

.ring-blue-950\/0 {
  --tw-ring-color: rgb(23 37 84 / 0);
}

.ring-blue-950\/10 {
  --tw-ring-color: rgb(23 37 84 / 0.1);
}

.ring-blue-950\/100 {
  --tw-ring-color: rgb(23 37 84 / 1);
}

.ring-blue-950\/15 {
  --tw-ring-color: rgb(23 37 84 / 0.15);
}

.ring-blue-950\/20 {
  --tw-ring-color: rgb(23 37 84 / 0.2);
}

.ring-blue-950\/25 {
  --tw-ring-color: rgb(23 37 84 / 0.25);
}

.ring-blue-950\/30 {
  --tw-ring-color: rgb(23 37 84 / 0.3);
}

.ring-blue-950\/35 {
  --tw-ring-color: rgb(23 37 84 / 0.35);
}

.ring-blue-950\/40 {
  --tw-ring-color: rgb(23 37 84 / 0.4);
}

.ring-blue-950\/45 {
  --tw-ring-color: rgb(23 37 84 / 0.45);
}

.ring-blue-950\/5 {
  --tw-ring-color: rgb(23 37 84 / 0.05);
}

.ring-blue-950\/50 {
  --tw-ring-color: rgb(23 37 84 / 0.5);
}

.ring-blue-950\/55 {
  --tw-ring-color: rgb(23 37 84 / 0.55);
}

.ring-blue-950\/60 {
  --tw-ring-color: rgb(23 37 84 / 0.6);
}

.ring-blue-950\/65 {
  --tw-ring-color: rgb(23 37 84 / 0.65);
}

.ring-blue-950\/70 {
  --tw-ring-color: rgb(23 37 84 / 0.7);
}

.ring-blue-950\/75 {
  --tw-ring-color: rgb(23 37 84 / 0.75);
}

.ring-blue-950\/80 {
  --tw-ring-color: rgb(23 37 84 / 0.8);
}

.ring-blue-950\/85 {
  --tw-ring-color: rgb(23 37 84 / 0.85);
}

.ring-blue-950\/90 {
  --tw-ring-color: rgb(23 37 84 / 0.9);
}

.ring-blue-950\/95 {
  --tw-ring-color: rgb(23 37 84 / 0.95);
}

.ring-current {
  --tw-ring-color: currentColor;
}

.ring-eva-blue {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(26 33 62 / var(--tw-ring-opacity, 1));
}

.ring-eva-blue-appt {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(52, 137, 207, var(--tw-ring-opacity, 1));
}

.ring-eva-blue-appt\/0 {
  --tw-ring-color: rgba(52, 137, 207, 0);
}

.ring-eva-blue-appt\/10 {
  --tw-ring-color: rgba(52, 137, 207, 0.1);
}

.ring-eva-blue-appt\/100 {
  --tw-ring-color: rgba(52, 137, 207, 1);
}

.ring-eva-blue-appt\/15 {
  --tw-ring-color: rgba(52, 137, 207, 0.15);
}

.ring-eva-blue-appt\/20 {
  --tw-ring-color: rgba(52, 137, 207, 0.2);
}

.ring-eva-blue-appt\/25 {
  --tw-ring-color: rgba(52, 137, 207, 0.25);
}

.ring-eva-blue-appt\/30 {
  --tw-ring-color: rgba(52, 137, 207, 0.3);
}

.ring-eva-blue-appt\/35 {
  --tw-ring-color: rgba(52, 137, 207, 0.35);
}

.ring-eva-blue-appt\/40 {
  --tw-ring-color: rgba(52, 137, 207, 0.4);
}

.ring-eva-blue-appt\/45 {
  --tw-ring-color: rgba(52, 137, 207, 0.45);
}

.ring-eva-blue-appt\/5 {
  --tw-ring-color: rgba(52, 137, 207, 0.05);
}

.ring-eva-blue-appt\/50 {
  --tw-ring-color: rgba(52, 137, 207, 0.5);
}

.ring-eva-blue-appt\/55 {
  --tw-ring-color: rgba(52, 137, 207, 0.55);
}

.ring-eva-blue-appt\/60 {
  --tw-ring-color: rgba(52, 137, 207, 0.6);
}

.ring-eva-blue-appt\/65 {
  --tw-ring-color: rgba(52, 137, 207, 0.65);
}

.ring-eva-blue-appt\/70 {
  --tw-ring-color: rgba(52, 137, 207, 0.7);
}

.ring-eva-blue-appt\/75 {
  --tw-ring-color: rgba(52, 137, 207, 0.75);
}

.ring-eva-blue-appt\/80 {
  --tw-ring-color: rgba(52, 137, 207, 0.8);
}

.ring-eva-blue-appt\/85 {
  --tw-ring-color: rgba(52, 137, 207, 0.85);
}

.ring-eva-blue-appt\/90 {
  --tw-ring-color: rgba(52, 137, 207, 0.9);
}

.ring-eva-blue-appt\/95 {
  --tw-ring-color: rgba(52, 137, 207, 0.95);
}

.ring-eva-blue-gray {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(117 121 139 / var(--tw-ring-opacity, 1));
}

.ring-eva-blue-gray\/0 {
  --tw-ring-color: rgb(117 121 139 / 0);
}

.ring-eva-blue-gray\/10 {
  --tw-ring-color: rgb(117 121 139 / 0.1);
}

.ring-eva-blue-gray\/100 {
  --tw-ring-color: rgb(117 121 139 / 1);
}

.ring-eva-blue-gray\/15 {
  --tw-ring-color: rgb(117 121 139 / 0.15);
}

.ring-eva-blue-gray\/20 {
  --tw-ring-color: rgb(117 121 139 / 0.2);
}

.ring-eva-blue-gray\/25 {
  --tw-ring-color: rgb(117 121 139 / 0.25);
}

.ring-eva-blue-gray\/30 {
  --tw-ring-color: rgb(117 121 139 / 0.3);
}

.ring-eva-blue-gray\/35 {
  --tw-ring-color: rgb(117 121 139 / 0.35);
}

.ring-eva-blue-gray\/40 {
  --tw-ring-color: rgb(117 121 139 / 0.4);
}

.ring-eva-blue-gray\/45 {
  --tw-ring-color: rgb(117 121 139 / 0.45);
}

.ring-eva-blue-gray\/5 {
  --tw-ring-color: rgb(117 121 139 / 0.05);
}

.ring-eva-blue-gray\/50 {
  --tw-ring-color: rgb(117 121 139 / 0.5);
}

.ring-eva-blue-gray\/55 {
  --tw-ring-color: rgb(117 121 139 / 0.55);
}

.ring-eva-blue-gray\/60 {
  --tw-ring-color: rgb(117 121 139 / 0.6);
}

.ring-eva-blue-gray\/65 {
  --tw-ring-color: rgb(117 121 139 / 0.65);
}

.ring-eva-blue-gray\/70 {
  --tw-ring-color: rgb(117 121 139 / 0.7);
}

.ring-eva-blue-gray\/75 {
  --tw-ring-color: rgb(117 121 139 / 0.75);
}

.ring-eva-blue-gray\/80 {
  --tw-ring-color: rgb(117 121 139 / 0.8);
}

.ring-eva-blue-gray\/85 {
  --tw-ring-color: rgb(117 121 139 / 0.85);
}

.ring-eva-blue-gray\/90 {
  --tw-ring-color: rgb(117 121 139 / 0.9);
}

.ring-eva-blue-gray\/95 {
  --tw-ring-color: rgb(117 121 139 / 0.95);
}

.ring-eva-blue-hv {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(15 18 31 / var(--tw-ring-opacity, 1));
}

.ring-eva-blue-hv\/0 {
  --tw-ring-color: rgb(15 18 31 / 0);
}

.ring-eva-blue-hv\/10 {
  --tw-ring-color: rgb(15 18 31 / 0.1);
}

.ring-eva-blue-hv\/100 {
  --tw-ring-color: rgb(15 18 31 / 1);
}

.ring-eva-blue-hv\/15 {
  --tw-ring-color: rgb(15 18 31 / 0.15);
}

.ring-eva-blue-hv\/20 {
  --tw-ring-color: rgb(15 18 31 / 0.2);
}

.ring-eva-blue-hv\/25 {
  --tw-ring-color: rgb(15 18 31 / 0.25);
}

.ring-eva-blue-hv\/30 {
  --tw-ring-color: rgb(15 18 31 / 0.3);
}

.ring-eva-blue-hv\/35 {
  --tw-ring-color: rgb(15 18 31 / 0.35);
}

.ring-eva-blue-hv\/40 {
  --tw-ring-color: rgb(15 18 31 / 0.4);
}

.ring-eva-blue-hv\/45 {
  --tw-ring-color: rgb(15 18 31 / 0.45);
}

.ring-eva-blue-hv\/5 {
  --tw-ring-color: rgb(15 18 31 / 0.05);
}

.ring-eva-blue-hv\/50 {
  --tw-ring-color: rgb(15 18 31 / 0.5);
}

.ring-eva-blue-hv\/55 {
  --tw-ring-color: rgb(15 18 31 / 0.55);
}

.ring-eva-blue-hv\/60 {
  --tw-ring-color: rgb(15 18 31 / 0.6);
}

.ring-eva-blue-hv\/65 {
  --tw-ring-color: rgb(15 18 31 / 0.65);
}

.ring-eva-blue-hv\/70 {
  --tw-ring-color: rgb(15 18 31 / 0.7);
}

.ring-eva-blue-hv\/75 {
  --tw-ring-color: rgb(15 18 31 / 0.75);
}

.ring-eva-blue-hv\/80 {
  --tw-ring-color: rgb(15 18 31 / 0.8);
}

.ring-eva-blue-hv\/85 {
  --tw-ring-color: rgb(15 18 31 / 0.85);
}

.ring-eva-blue-hv\/90 {
  --tw-ring-color: rgb(15 18 31 / 0.9);
}

.ring-eva-blue-hv\/95 {
  --tw-ring-color: rgb(15 18 31 / 0.95);
}

.ring-eva-blue-light {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(48 56 81 / var(--tw-ring-opacity, 1));
}

.ring-eva-blue-light-hv {
  --tw-ring-color: rgba(17,20,30,.3);
}

.ring-eva-blue-light-hv\/0 {
  --tw-ring-color: rgba(17, 20, 30, 0);
}

.ring-eva-blue-light-hv\/10 {
  --tw-ring-color: rgba(17, 20, 30, 0.1);
}

.ring-eva-blue-light-hv\/100 {
  --tw-ring-color: rgba(17, 20, 30, 1);
}

.ring-eva-blue-light-hv\/15 {
  --tw-ring-color: rgba(17, 20, 30, 0.15);
}

.ring-eva-blue-light-hv\/20 {
  --tw-ring-color: rgba(17, 20, 30, 0.2);
}

.ring-eva-blue-light-hv\/25 {
  --tw-ring-color: rgba(17, 20, 30, 0.25);
}

.ring-eva-blue-light-hv\/30 {
  --tw-ring-color: rgba(17, 20, 30, 0.3);
}

.ring-eva-blue-light-hv\/35 {
  --tw-ring-color: rgba(17, 20, 30, 0.35);
}

.ring-eva-blue-light-hv\/40 {
  --tw-ring-color: rgba(17, 20, 30, 0.4);
}

.ring-eva-blue-light-hv\/45 {
  --tw-ring-color: rgba(17, 20, 30, 0.45);
}

.ring-eva-blue-light-hv\/5 {
  --tw-ring-color: rgba(17, 20, 30, 0.05);
}

.ring-eva-blue-light-hv\/50 {
  --tw-ring-color: rgba(17, 20, 30, 0.5);
}

.ring-eva-blue-light-hv\/55 {
  --tw-ring-color: rgba(17, 20, 30, 0.55);
}

.ring-eva-blue-light-hv\/60 {
  --tw-ring-color: rgba(17, 20, 30, 0.6);
}

.ring-eva-blue-light-hv\/65 {
  --tw-ring-color: rgba(17, 20, 30, 0.65);
}

.ring-eva-blue-light-hv\/70 {
  --tw-ring-color: rgba(17, 20, 30, 0.7);
}

.ring-eva-blue-light-hv\/75 {
  --tw-ring-color: rgba(17, 20, 30, 0.75);
}

.ring-eva-blue-light-hv\/80 {
  --tw-ring-color: rgba(17, 20, 30, 0.8);
}

.ring-eva-blue-light-hv\/85 {
  --tw-ring-color: rgba(17, 20, 30, 0.85);
}

.ring-eva-blue-light-hv\/90 {
  --tw-ring-color: rgba(17, 20, 30, 0.9);
}

.ring-eva-blue-light-hv\/95 {
  --tw-ring-color: rgba(17, 20, 30, 0.95);
}

.ring-eva-blue-light\/0 {
  --tw-ring-color: rgb(48 56 81 / 0);
}

.ring-eva-blue-light\/10 {
  --tw-ring-color: rgb(48 56 81 / 0.1);
}

.ring-eva-blue-light\/100 {
  --tw-ring-color: rgb(48 56 81 / 1);
}

.ring-eva-blue-light\/15 {
  --tw-ring-color: rgb(48 56 81 / 0.15);
}

.ring-eva-blue-light\/20 {
  --tw-ring-color: rgb(48 56 81 / 0.2);
}

.ring-eva-blue-light\/25 {
  --tw-ring-color: rgb(48 56 81 / 0.25);
}

.ring-eva-blue-light\/30 {
  --tw-ring-color: rgb(48 56 81 / 0.3);
}

.ring-eva-blue-light\/35 {
  --tw-ring-color: rgb(48 56 81 / 0.35);
}

.ring-eva-blue-light\/40 {
  --tw-ring-color: rgb(48 56 81 / 0.4);
}

.ring-eva-blue-light\/45 {
  --tw-ring-color: rgb(48 56 81 / 0.45);
}

.ring-eva-blue-light\/5 {
  --tw-ring-color: rgb(48 56 81 / 0.05);
}

.ring-eva-blue-light\/50 {
  --tw-ring-color: rgb(48 56 81 / 0.5);
}

.ring-eva-blue-light\/55 {
  --tw-ring-color: rgb(48 56 81 / 0.55);
}

.ring-eva-blue-light\/60 {
  --tw-ring-color: rgb(48 56 81 / 0.6);
}

.ring-eva-blue-light\/65 {
  --tw-ring-color: rgb(48 56 81 / 0.65);
}

.ring-eva-blue-light\/70 {
  --tw-ring-color: rgb(48 56 81 / 0.7);
}

.ring-eva-blue-light\/75 {
  --tw-ring-color: rgb(48 56 81 / 0.75);
}

.ring-eva-blue-light\/80 {
  --tw-ring-color: rgb(48 56 81 / 0.8);
}

.ring-eva-blue-light\/85 {
  --tw-ring-color: rgb(48 56 81 / 0.85);
}

.ring-eva-blue-light\/90 {
  --tw-ring-color: rgb(48 56 81 / 0.9);
}

.ring-eva-blue-light\/95 {
  --tw-ring-color: rgb(48 56 81 / 0.95);
}

.ring-eva-blue\/0 {
  --tw-ring-color: rgb(26 33 62 / 0);
}

.ring-eva-blue\/10 {
  --tw-ring-color: rgb(26 33 62 / 0.1);
}

.ring-eva-blue\/100 {
  --tw-ring-color: rgb(26 33 62 / 1);
}

.ring-eva-blue\/15 {
  --tw-ring-color: rgb(26 33 62 / 0.15);
}

.ring-eva-blue\/20 {
  --tw-ring-color: rgb(26 33 62 / 0.2);
}

.ring-eva-blue\/25 {
  --tw-ring-color: rgb(26 33 62 / 0.25);
}

.ring-eva-blue\/30 {
  --tw-ring-color: rgb(26 33 62 / 0.3);
}

.ring-eva-blue\/35 {
  --tw-ring-color: rgb(26 33 62 / 0.35);
}

.ring-eva-blue\/40 {
  --tw-ring-color: rgb(26 33 62 / 0.4);
}

.ring-eva-blue\/45 {
  --tw-ring-color: rgb(26 33 62 / 0.45);
}

.ring-eva-blue\/5 {
  --tw-ring-color: rgb(26 33 62 / 0.05);
}

.ring-eva-blue\/50 {
  --tw-ring-color: rgb(26 33 62 / 0.5);
}

.ring-eva-blue\/55 {
  --tw-ring-color: rgb(26 33 62 / 0.55);
}

.ring-eva-blue\/60 {
  --tw-ring-color: rgb(26 33 62 / 0.6);
}

.ring-eva-blue\/65 {
  --tw-ring-color: rgb(26 33 62 / 0.65);
}

.ring-eva-blue\/70 {
  --tw-ring-color: rgb(26 33 62 / 0.7);
}

.ring-eva-blue\/75 {
  --tw-ring-color: rgb(26 33 62 / 0.75);
}

.ring-eva-blue\/80 {
  --tw-ring-color: rgb(26 33 62 / 0.8);
}

.ring-eva-blue\/85 {
  --tw-ring-color: rgb(26 33 62 / 0.85);
}

.ring-eva-blue\/90 {
  --tw-ring-color: rgb(26 33 62 / 0.9);
}

.ring-eva-blue\/95 {
  --tw-ring-color: rgb(26 33 62 / 0.95);
}

.ring-eva-brown-appt {
  --tw-ring-color: rgba(99, 93, 94, 1);
}

.ring-eva-brown-appt\/0 {
  --tw-ring-color: rgba(99, 93, 94, 0);
}

.ring-eva-brown-appt\/10 {
  --tw-ring-color: rgba(99, 93, 94, 0.1);
}

.ring-eva-brown-appt\/100 {
  --tw-ring-color: rgba(99, 93, 94, 1);
}

.ring-eva-brown-appt\/15 {
  --tw-ring-color: rgba(99, 93, 94, 0.15);
}

.ring-eva-brown-appt\/20 {
  --tw-ring-color: rgba(99, 93, 94, 0.2);
}

.ring-eva-brown-appt\/25 {
  --tw-ring-color: rgba(99, 93, 94, 0.25);
}

.ring-eva-brown-appt\/30 {
  --tw-ring-color: rgba(99, 93, 94, 0.3);
}

.ring-eva-brown-appt\/35 {
  --tw-ring-color: rgba(99, 93, 94, 0.35);
}

.ring-eva-brown-appt\/40 {
  --tw-ring-color: rgba(99, 93, 94, 0.4);
}

.ring-eva-brown-appt\/45 {
  --tw-ring-color: rgba(99, 93, 94, 0.45);
}

.ring-eva-brown-appt\/5 {
  --tw-ring-color: rgba(99, 93, 94, 0.05);
}

.ring-eva-brown-appt\/50 {
  --tw-ring-color: rgba(99, 93, 94, 0.5);
}

.ring-eva-brown-appt\/55 {
  --tw-ring-color: rgba(99, 93, 94, 0.55);
}

.ring-eva-brown-appt\/60 {
  --tw-ring-color: rgba(99, 93, 94, 0.6);
}

.ring-eva-brown-appt\/65 {
  --tw-ring-color: rgba(99, 93, 94, 0.65);
}

.ring-eva-brown-appt\/70 {
  --tw-ring-color: rgba(99, 93, 94, 0.7);
}

.ring-eva-brown-appt\/75 {
  --tw-ring-color: rgba(99, 93, 94, 0.75);
}

.ring-eva-brown-appt\/80 {
  --tw-ring-color: rgba(99, 93, 94, 0.8);
}

.ring-eva-brown-appt\/85 {
  --tw-ring-color: rgba(99, 93, 94, 0.85);
}

.ring-eva-brown-appt\/90 {
  --tw-ring-color: rgba(99, 93, 94, 0.9);
}

.ring-eva-brown-appt\/95 {
  --tw-ring-color: rgba(99, 93, 94, 0.95);
}

.ring-eva-dark-green-appt {
  --tw-ring-color: rgba(102, 188, 130, 1);
}

.ring-eva-dark-green-appt\/0 {
  --tw-ring-color: rgba(102, 188, 130, 0);
}

.ring-eva-dark-green-appt\/10 {
  --tw-ring-color: rgba(102, 188, 130, 0.1);
}

.ring-eva-dark-green-appt\/100 {
  --tw-ring-color: rgba(102, 188, 130, 1);
}

.ring-eva-dark-green-appt\/15 {
  --tw-ring-color: rgba(102, 188, 130, 0.15);
}

.ring-eva-dark-green-appt\/20 {
  --tw-ring-color: rgba(102, 188, 130, 0.2);
}

.ring-eva-dark-green-appt\/25 {
  --tw-ring-color: rgba(102, 188, 130, 0.25);
}

.ring-eva-dark-green-appt\/30 {
  --tw-ring-color: rgba(102, 188, 130, 0.3);
}

.ring-eva-dark-green-appt\/35 {
  --tw-ring-color: rgba(102, 188, 130, 0.35);
}

.ring-eva-dark-green-appt\/40 {
  --tw-ring-color: rgba(102, 188, 130, 0.4);
}

.ring-eva-dark-green-appt\/45 {
  --tw-ring-color: rgba(102, 188, 130, 0.45);
}

.ring-eva-dark-green-appt\/5 {
  --tw-ring-color: rgba(102, 188, 130, 0.05);
}

.ring-eva-dark-green-appt\/50 {
  --tw-ring-color: rgba(102, 188, 130, 0.5);
}

.ring-eva-dark-green-appt\/55 {
  --tw-ring-color: rgba(102, 188, 130, 0.55);
}

.ring-eva-dark-green-appt\/60 {
  --tw-ring-color: rgba(102, 188, 130, 0.6);
}

.ring-eva-dark-green-appt\/65 {
  --tw-ring-color: rgba(102, 188, 130, 0.65);
}

.ring-eva-dark-green-appt\/70 {
  --tw-ring-color: rgba(102, 188, 130, 0.7);
}

.ring-eva-dark-green-appt\/75 {
  --tw-ring-color: rgba(102, 188, 130, 0.75);
}

.ring-eva-dark-green-appt\/80 {
  --tw-ring-color: rgba(102, 188, 130, 0.8);
}

.ring-eva-dark-green-appt\/85 {
  --tw-ring-color: rgba(102, 188, 130, 0.85);
}

.ring-eva-dark-green-appt\/90 {
  --tw-ring-color: rgba(102, 188, 130, 0.9);
}

.ring-eva-dark-green-appt\/95 {
  --tw-ring-color: rgba(102, 188, 130, 0.95);
}

.ring-eva-dark-red-appt {
  --tw-ring-color: rgba(198, 102, 94, 1);
}

.ring-eva-dark-red-appt\/0 {
  --tw-ring-color: rgba(198, 102, 94, 0);
}

.ring-eva-dark-red-appt\/10 {
  --tw-ring-color: rgba(198, 102, 94, 0.1);
}

.ring-eva-dark-red-appt\/100 {
  --tw-ring-color: rgba(198, 102, 94, 1);
}

.ring-eva-dark-red-appt\/15 {
  --tw-ring-color: rgba(198, 102, 94, 0.15);
}

.ring-eva-dark-red-appt\/20 {
  --tw-ring-color: rgba(198, 102, 94, 0.2);
}

.ring-eva-dark-red-appt\/25 {
  --tw-ring-color: rgba(198, 102, 94, 0.25);
}

.ring-eva-dark-red-appt\/30 {
  --tw-ring-color: rgba(198, 102, 94, 0.3);
}

.ring-eva-dark-red-appt\/35 {
  --tw-ring-color: rgba(198, 102, 94, 0.35);
}

.ring-eva-dark-red-appt\/40 {
  --tw-ring-color: rgba(198, 102, 94, 0.4);
}

.ring-eva-dark-red-appt\/45 {
  --tw-ring-color: rgba(198, 102, 94, 0.45);
}

.ring-eva-dark-red-appt\/5 {
  --tw-ring-color: rgba(198, 102, 94, 0.05);
}

.ring-eva-dark-red-appt\/50 {
  --tw-ring-color: rgba(198, 102, 94, 0.5);
}

.ring-eva-dark-red-appt\/55 {
  --tw-ring-color: rgba(198, 102, 94, 0.55);
}

.ring-eva-dark-red-appt\/60 {
  --tw-ring-color: rgba(198, 102, 94, 0.6);
}

.ring-eva-dark-red-appt\/65 {
  --tw-ring-color: rgba(198, 102, 94, 0.65);
}

.ring-eva-dark-red-appt\/70 {
  --tw-ring-color: rgba(198, 102, 94, 0.7);
}

.ring-eva-dark-red-appt\/75 {
  --tw-ring-color: rgba(198, 102, 94, 0.75);
}

.ring-eva-dark-red-appt\/80 {
  --tw-ring-color: rgba(198, 102, 94, 0.8);
}

.ring-eva-dark-red-appt\/85 {
  --tw-ring-color: rgba(198, 102, 94, 0.85);
}

.ring-eva-dark-red-appt\/90 {
  --tw-ring-color: rgba(198, 102, 94, 0.9);
}

.ring-eva-dark-red-appt\/95 {
  --tw-ring-color: rgba(198, 102, 94, 0.95);
}

.ring-eva-green {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(73 181 168 / var(--tw-ring-opacity, 1));
}

.ring-eva-green-appt {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(128, 215, 109, var(--tw-ring-opacity, 1));
}

.ring-eva-green-appt\/0 {
  --tw-ring-color: rgba(128, 215, 109, 0);
}

.ring-eva-green-appt\/10 {
  --tw-ring-color: rgba(128, 215, 109, 0.1);
}

.ring-eva-green-appt\/100 {
  --tw-ring-color: rgba(128, 215, 109, 1);
}

.ring-eva-green-appt\/15 {
  --tw-ring-color: rgba(128, 215, 109, 0.15);
}

.ring-eva-green-appt\/20 {
  --tw-ring-color: rgba(128, 215, 109, 0.2);
}

.ring-eva-green-appt\/25 {
  --tw-ring-color: rgba(128, 215, 109, 0.25);
}

.ring-eva-green-appt\/30 {
  --tw-ring-color: rgba(128, 215, 109, 0.3);
}

.ring-eva-green-appt\/35 {
  --tw-ring-color: rgba(128, 215, 109, 0.35);
}

.ring-eva-green-appt\/40 {
  --tw-ring-color: rgba(128, 215, 109, 0.4);
}

.ring-eva-green-appt\/45 {
  --tw-ring-color: rgba(128, 215, 109, 0.45);
}

.ring-eva-green-appt\/5 {
  --tw-ring-color: rgba(128, 215, 109, 0.05);
}

.ring-eva-green-appt\/50 {
  --tw-ring-color: rgba(128, 215, 109, 0.5);
}

.ring-eva-green-appt\/55 {
  --tw-ring-color: rgba(128, 215, 109, 0.55);
}

.ring-eva-green-appt\/60 {
  --tw-ring-color: rgba(128, 215, 109, 0.6);
}

.ring-eva-green-appt\/65 {
  --tw-ring-color: rgba(128, 215, 109, 0.65);
}

.ring-eva-green-appt\/70 {
  --tw-ring-color: rgba(128, 215, 109, 0.7);
}

.ring-eva-green-appt\/75 {
  --tw-ring-color: rgba(128, 215, 109, 0.75);
}

.ring-eva-green-appt\/80 {
  --tw-ring-color: rgba(128, 215, 109, 0.8);
}

.ring-eva-green-appt\/85 {
  --tw-ring-color: rgba(128, 215, 109, 0.85);
}

.ring-eva-green-appt\/90 {
  --tw-ring-color: rgba(128, 215, 109, 0.9);
}

.ring-eva-green-appt\/95 {
  --tw-ring-color: rgba(128, 215, 109, 0.95);
}

.ring-eva-green-brown-appt {
  --tw-ring-color: rgba(197, 191, 140, 1);
}

.ring-eva-green-brown-appt\/0 {
  --tw-ring-color: rgba(197, 191, 140, 0);
}

.ring-eva-green-brown-appt\/10 {
  --tw-ring-color: rgba(197, 191, 140, 0.1);
}

.ring-eva-green-brown-appt\/100 {
  --tw-ring-color: rgba(197, 191, 140, 1);
}

.ring-eva-green-brown-appt\/15 {
  --tw-ring-color: rgba(197, 191, 140, 0.15);
}

.ring-eva-green-brown-appt\/20 {
  --tw-ring-color: rgba(197, 191, 140, 0.2);
}

.ring-eva-green-brown-appt\/25 {
  --tw-ring-color: rgba(197, 191, 140, 0.25);
}

.ring-eva-green-brown-appt\/30 {
  --tw-ring-color: rgba(197, 191, 140, 0.3);
}

.ring-eva-green-brown-appt\/35 {
  --tw-ring-color: rgba(197, 191, 140, 0.35);
}

.ring-eva-green-brown-appt\/40 {
  --tw-ring-color: rgba(197, 191, 140, 0.4);
}

.ring-eva-green-brown-appt\/45 {
  --tw-ring-color: rgba(197, 191, 140, 0.45);
}

.ring-eva-green-brown-appt\/5 {
  --tw-ring-color: rgba(197, 191, 140, 0.05);
}

.ring-eva-green-brown-appt\/50 {
  --tw-ring-color: rgba(197, 191, 140, 0.5);
}

.ring-eva-green-brown-appt\/55 {
  --tw-ring-color: rgba(197, 191, 140, 0.55);
}

.ring-eva-green-brown-appt\/60 {
  --tw-ring-color: rgba(197, 191, 140, 0.6);
}

.ring-eva-green-brown-appt\/65 {
  --tw-ring-color: rgba(197, 191, 140, 0.65);
}

.ring-eva-green-brown-appt\/70 {
  --tw-ring-color: rgba(197, 191, 140, 0.7);
}

.ring-eva-green-brown-appt\/75 {
  --tw-ring-color: rgba(197, 191, 140, 0.75);
}

.ring-eva-green-brown-appt\/80 {
  --tw-ring-color: rgba(197, 191, 140, 0.8);
}

.ring-eva-green-brown-appt\/85 {
  --tw-ring-color: rgba(197, 191, 140, 0.85);
}

.ring-eva-green-brown-appt\/90 {
  --tw-ring-color: rgba(197, 191, 140, 0.9);
}

.ring-eva-green-brown-appt\/95 {
  --tw-ring-color: rgba(197, 191, 140, 0.95);
}

.ring-eva-green-hv {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(63 156 144 / var(--tw-ring-opacity, 1));
}

.ring-eva-green-hv\/0 {
  --tw-ring-color: rgb(63 156 144 / 0);
}

.ring-eva-green-hv\/10 {
  --tw-ring-color: rgb(63 156 144 / 0.1);
}

.ring-eva-green-hv\/100 {
  --tw-ring-color: rgb(63 156 144 / 1);
}

.ring-eva-green-hv\/15 {
  --tw-ring-color: rgb(63 156 144 / 0.15);
}

.ring-eva-green-hv\/20 {
  --tw-ring-color: rgb(63 156 144 / 0.2);
}

.ring-eva-green-hv\/25 {
  --tw-ring-color: rgb(63 156 144 / 0.25);
}

.ring-eva-green-hv\/30 {
  --tw-ring-color: rgb(63 156 144 / 0.3);
}

.ring-eva-green-hv\/35 {
  --tw-ring-color: rgb(63 156 144 / 0.35);
}

.ring-eva-green-hv\/40 {
  --tw-ring-color: rgb(63 156 144 / 0.4);
}

.ring-eva-green-hv\/45 {
  --tw-ring-color: rgb(63 156 144 / 0.45);
}

.ring-eva-green-hv\/5 {
  --tw-ring-color: rgb(63 156 144 / 0.05);
}

.ring-eva-green-hv\/50 {
  --tw-ring-color: rgb(63 156 144 / 0.5);
}

.ring-eva-green-hv\/55 {
  --tw-ring-color: rgb(63 156 144 / 0.55);
}

.ring-eva-green-hv\/60 {
  --tw-ring-color: rgb(63 156 144 / 0.6);
}

.ring-eva-green-hv\/65 {
  --tw-ring-color: rgb(63 156 144 / 0.65);
}

.ring-eva-green-hv\/70 {
  --tw-ring-color: rgb(63 156 144 / 0.7);
}

.ring-eva-green-hv\/75 {
  --tw-ring-color: rgb(63 156 144 / 0.75);
}

.ring-eva-green-hv\/80 {
  --tw-ring-color: rgb(63 156 144 / 0.8);
}

.ring-eva-green-hv\/85 {
  --tw-ring-color: rgb(63 156 144 / 0.85);
}

.ring-eva-green-hv\/90 {
  --tw-ring-color: rgb(63 156 144 / 0.9);
}

.ring-eva-green-hv\/95 {
  --tw-ring-color: rgb(63 156 144 / 0.95);
}

.ring-eva-green\/0 {
  --tw-ring-color: rgb(73 181 168 / 0);
}

.ring-eva-green\/10 {
  --tw-ring-color: rgb(73 181 168 / 0.1);
}

.ring-eva-green\/100 {
  --tw-ring-color: rgb(73 181 168 / 1);
}

.ring-eva-green\/15 {
  --tw-ring-color: rgb(73 181 168 / 0.15);
}

.ring-eva-green\/20 {
  --tw-ring-color: rgb(73 181 168 / 0.2);
}

.ring-eva-green\/25 {
  --tw-ring-color: rgb(73 181 168 / 0.25);
}

.ring-eva-green\/30 {
  --tw-ring-color: rgb(73 181 168 / 0.3);
}

.ring-eva-green\/35 {
  --tw-ring-color: rgb(73 181 168 / 0.35);
}

.ring-eva-green\/40 {
  --tw-ring-color: rgb(73 181 168 / 0.4);
}

.ring-eva-green\/45 {
  --tw-ring-color: rgb(73 181 168 / 0.45);
}

.ring-eva-green\/5 {
  --tw-ring-color: rgb(73 181 168 / 0.05);
}

.ring-eva-green\/50 {
  --tw-ring-color: rgb(73 181 168 / 0.5);
}

.ring-eva-green\/55 {
  --tw-ring-color: rgb(73 181 168 / 0.55);
}

.ring-eva-green\/60 {
  --tw-ring-color: rgb(73 181 168 / 0.6);
}

.ring-eva-green\/65 {
  --tw-ring-color: rgb(73 181 168 / 0.65);
}

.ring-eva-green\/70 {
  --tw-ring-color: rgb(73 181 168 / 0.7);
}

.ring-eva-green\/75 {
  --tw-ring-color: rgb(73 181 168 / 0.75);
}

.ring-eva-green\/80 {
  --tw-ring-color: rgb(73 181 168 / 0.8);
}

.ring-eva-green\/85 {
  --tw-ring-color: rgb(73 181 168 / 0.85);
}

.ring-eva-green\/90 {
  --tw-ring-color: rgb(73 181 168 / 0.9);
}

.ring-eva-green\/95 {
  --tw-ring-color: rgb(73 181 168 / 0.95);
}

.ring-eva-lavender-appt {
  --tw-ring-color: rgba(169, 124, 165, 1);
}

.ring-eva-lavender-appt\/0 {
  --tw-ring-color: rgba(169, 124, 165, 0);
}

.ring-eva-lavender-appt\/10 {
  --tw-ring-color: rgba(169, 124, 165, 0.1);
}

.ring-eva-lavender-appt\/100 {
  --tw-ring-color: rgba(169, 124, 165, 1);
}

.ring-eva-lavender-appt\/15 {
  --tw-ring-color: rgba(169, 124, 165, 0.15);
}

.ring-eva-lavender-appt\/20 {
  --tw-ring-color: rgba(169, 124, 165, 0.2);
}

.ring-eva-lavender-appt\/25 {
  --tw-ring-color: rgba(169, 124, 165, 0.25);
}

.ring-eva-lavender-appt\/30 {
  --tw-ring-color: rgba(169, 124, 165, 0.3);
}

.ring-eva-lavender-appt\/35 {
  --tw-ring-color: rgba(169, 124, 165, 0.35);
}

.ring-eva-lavender-appt\/40 {
  --tw-ring-color: rgba(169, 124, 165, 0.4);
}

.ring-eva-lavender-appt\/45 {
  --tw-ring-color: rgba(169, 124, 165, 0.45);
}

.ring-eva-lavender-appt\/5 {
  --tw-ring-color: rgba(169, 124, 165, 0.05);
}

.ring-eva-lavender-appt\/50 {
  --tw-ring-color: rgba(169, 124, 165, 0.5);
}

.ring-eva-lavender-appt\/55 {
  --tw-ring-color: rgba(169, 124, 165, 0.55);
}

.ring-eva-lavender-appt\/60 {
  --tw-ring-color: rgba(169, 124, 165, 0.6);
}

.ring-eva-lavender-appt\/65 {
  --tw-ring-color: rgba(169, 124, 165, 0.65);
}

.ring-eva-lavender-appt\/70 {
  --tw-ring-color: rgba(169, 124, 165, 0.7);
}

.ring-eva-lavender-appt\/75 {
  --tw-ring-color: rgba(169, 124, 165, 0.75);
}

.ring-eva-lavender-appt\/80 {
  --tw-ring-color: rgba(169, 124, 165, 0.8);
}

.ring-eva-lavender-appt\/85 {
  --tw-ring-color: rgba(169, 124, 165, 0.85);
}

.ring-eva-lavender-appt\/90 {
  --tw-ring-color: rgba(169, 124, 165, 0.9);
}

.ring-eva-lavender-appt\/95 {
  --tw-ring-color: rgba(169, 124, 165, 0.95);
}

.ring-eva-magenta-appt {
  --tw-ring-color: rgba(223, 91, 146, 1);
}

.ring-eva-magenta-appt\/0 {
  --tw-ring-color: rgba(223, 91, 146, 0);
}

.ring-eva-magenta-appt\/10 {
  --tw-ring-color: rgba(223, 91, 146, 0.1);
}

.ring-eva-magenta-appt\/100 {
  --tw-ring-color: rgba(223, 91, 146, 1);
}

.ring-eva-magenta-appt\/15 {
  --tw-ring-color: rgba(223, 91, 146, 0.15);
}

.ring-eva-magenta-appt\/20 {
  --tw-ring-color: rgba(223, 91, 146, 0.2);
}

.ring-eva-magenta-appt\/25 {
  --tw-ring-color: rgba(223, 91, 146, 0.25);
}

.ring-eva-magenta-appt\/30 {
  --tw-ring-color: rgba(223, 91, 146, 0.3);
}

.ring-eva-magenta-appt\/35 {
  --tw-ring-color: rgba(223, 91, 146, 0.35);
}

.ring-eva-magenta-appt\/40 {
  --tw-ring-color: rgba(223, 91, 146, 0.4);
}

.ring-eva-magenta-appt\/45 {
  --tw-ring-color: rgba(223, 91, 146, 0.45);
}

.ring-eva-magenta-appt\/5 {
  --tw-ring-color: rgba(223, 91, 146, 0.05);
}

.ring-eva-magenta-appt\/50 {
  --tw-ring-color: rgba(223, 91, 146, 0.5);
}

.ring-eva-magenta-appt\/55 {
  --tw-ring-color: rgba(223, 91, 146, 0.55);
}

.ring-eva-magenta-appt\/60 {
  --tw-ring-color: rgba(223, 91, 146, 0.6);
}

.ring-eva-magenta-appt\/65 {
  --tw-ring-color: rgba(223, 91, 146, 0.65);
}

.ring-eva-magenta-appt\/70 {
  --tw-ring-color: rgba(223, 91, 146, 0.7);
}

.ring-eva-magenta-appt\/75 {
  --tw-ring-color: rgba(223, 91, 146, 0.75);
}

.ring-eva-magenta-appt\/80 {
  --tw-ring-color: rgba(223, 91, 146, 0.8);
}

.ring-eva-magenta-appt\/85 {
  --tw-ring-color: rgba(223, 91, 146, 0.85);
}

.ring-eva-magenta-appt\/90 {
  --tw-ring-color: rgba(223, 91, 146, 0.9);
}

.ring-eva-magenta-appt\/95 {
  --tw-ring-color: rgba(223, 91, 146, 0.95);
}

.ring-eva-orange-appt {
  --tw-ring-color: rgba(232, 176, 99, 1);
}

.ring-eva-orange-appt\/0 {
  --tw-ring-color: rgba(232, 176, 99, 0);
}

.ring-eva-orange-appt\/10 {
  --tw-ring-color: rgba(232, 176, 99, 0.1);
}

.ring-eva-orange-appt\/100 {
  --tw-ring-color: rgba(232, 176, 99, 1);
}

.ring-eva-orange-appt\/15 {
  --tw-ring-color: rgba(232, 176, 99, 0.15);
}

.ring-eva-orange-appt\/20 {
  --tw-ring-color: rgba(232, 176, 99, 0.2);
}

.ring-eva-orange-appt\/25 {
  --tw-ring-color: rgba(232, 176, 99, 0.25);
}

.ring-eva-orange-appt\/30 {
  --tw-ring-color: rgba(232, 176, 99, 0.3);
}

.ring-eva-orange-appt\/35 {
  --tw-ring-color: rgba(232, 176, 99, 0.35);
}

.ring-eva-orange-appt\/40 {
  --tw-ring-color: rgba(232, 176, 99, 0.4);
}

.ring-eva-orange-appt\/45 {
  --tw-ring-color: rgba(232, 176, 99, 0.45);
}

.ring-eva-orange-appt\/5 {
  --tw-ring-color: rgba(232, 176, 99, 0.05);
}

.ring-eva-orange-appt\/50 {
  --tw-ring-color: rgba(232, 176, 99, 0.5);
}

.ring-eva-orange-appt\/55 {
  --tw-ring-color: rgba(232, 176, 99, 0.55);
}

.ring-eva-orange-appt\/60 {
  --tw-ring-color: rgba(232, 176, 99, 0.6);
}

.ring-eva-orange-appt\/65 {
  --tw-ring-color: rgba(232, 176, 99, 0.65);
}

.ring-eva-orange-appt\/70 {
  --tw-ring-color: rgba(232, 176, 99, 0.7);
}

.ring-eva-orange-appt\/75 {
  --tw-ring-color: rgba(232, 176, 99, 0.75);
}

.ring-eva-orange-appt\/80 {
  --tw-ring-color: rgba(232, 176, 99, 0.8);
}

.ring-eva-orange-appt\/85 {
  --tw-ring-color: rgba(232, 176, 99, 0.85);
}

.ring-eva-orange-appt\/90 {
  --tw-ring-color: rgba(232, 176, 99, 0.9);
}

.ring-eva-orange-appt\/95 {
  --tw-ring-color: rgba(232, 176, 99, 0.95);
}

.ring-eva-purple-appt {
  --tw-ring-color: rgba(125, 117, 164, 1);
}

.ring-eva-purple-appt\/0 {
  --tw-ring-color: rgba(125, 117, 164, 0);
}

.ring-eva-purple-appt\/10 {
  --tw-ring-color: rgba(125, 117, 164, 0.1);
}

.ring-eva-purple-appt\/100 {
  --tw-ring-color: rgba(125, 117, 164, 1);
}

.ring-eva-purple-appt\/15 {
  --tw-ring-color: rgba(125, 117, 164, 0.15);
}

.ring-eva-purple-appt\/20 {
  --tw-ring-color: rgba(125, 117, 164, 0.2);
}

.ring-eva-purple-appt\/25 {
  --tw-ring-color: rgba(125, 117, 164, 0.25);
}

.ring-eva-purple-appt\/30 {
  --tw-ring-color: rgba(125, 117, 164, 0.3);
}

.ring-eva-purple-appt\/35 {
  --tw-ring-color: rgba(125, 117, 164, 0.35);
}

.ring-eva-purple-appt\/40 {
  --tw-ring-color: rgba(125, 117, 164, 0.4);
}

.ring-eva-purple-appt\/45 {
  --tw-ring-color: rgba(125, 117, 164, 0.45);
}

.ring-eva-purple-appt\/5 {
  --tw-ring-color: rgba(125, 117, 164, 0.05);
}

.ring-eva-purple-appt\/50 {
  --tw-ring-color: rgba(125, 117, 164, 0.5);
}

.ring-eva-purple-appt\/55 {
  --tw-ring-color: rgba(125, 117, 164, 0.55);
}

.ring-eva-purple-appt\/60 {
  --tw-ring-color: rgba(125, 117, 164, 0.6);
}

.ring-eva-purple-appt\/65 {
  --tw-ring-color: rgba(125, 117, 164, 0.65);
}

.ring-eva-purple-appt\/70 {
  --tw-ring-color: rgba(125, 117, 164, 0.7);
}

.ring-eva-purple-appt\/75 {
  --tw-ring-color: rgba(125, 117, 164, 0.75);
}

.ring-eva-purple-appt\/80 {
  --tw-ring-color: rgba(125, 117, 164, 0.8);
}

.ring-eva-purple-appt\/85 {
  --tw-ring-color: rgba(125, 117, 164, 0.85);
}

.ring-eva-purple-appt\/90 {
  --tw-ring-color: rgba(125, 117, 164, 0.9);
}

.ring-eva-purple-appt\/95 {
  --tw-ring-color: rgba(125, 117, 164, 0.95);
}

.ring-eva-red {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(234 101 101 / var(--tw-ring-opacity, 1));
}

.ring-eva-red-appt {
  --tw-ring-color: rgba(243, 63, 77, 1);
}

.ring-eva-red-appt\/0 {
  --tw-ring-color: rgba(243, 63, 77, 0);
}

.ring-eva-red-appt\/10 {
  --tw-ring-color: rgba(243, 63, 77, 0.1);
}

.ring-eva-red-appt\/100 {
  --tw-ring-color: rgba(243, 63, 77, 1);
}

.ring-eva-red-appt\/15 {
  --tw-ring-color: rgba(243, 63, 77, 0.15);
}

.ring-eva-red-appt\/20 {
  --tw-ring-color: rgba(243, 63, 77, 0.2);
}

.ring-eva-red-appt\/25 {
  --tw-ring-color: rgba(243, 63, 77, 0.25);
}

.ring-eva-red-appt\/30 {
  --tw-ring-color: rgba(243, 63, 77, 0.3);
}

.ring-eva-red-appt\/35 {
  --tw-ring-color: rgba(243, 63, 77, 0.35);
}

.ring-eva-red-appt\/40 {
  --tw-ring-color: rgba(243, 63, 77, 0.4);
}

.ring-eva-red-appt\/45 {
  --tw-ring-color: rgba(243, 63, 77, 0.45);
}

.ring-eva-red-appt\/5 {
  --tw-ring-color: rgba(243, 63, 77, 0.05);
}

.ring-eva-red-appt\/50 {
  --tw-ring-color: rgba(243, 63, 77, 0.5);
}

.ring-eva-red-appt\/55 {
  --tw-ring-color: rgba(243, 63, 77, 0.55);
}

.ring-eva-red-appt\/60 {
  --tw-ring-color: rgba(243, 63, 77, 0.6);
}

.ring-eva-red-appt\/65 {
  --tw-ring-color: rgba(243, 63, 77, 0.65);
}

.ring-eva-red-appt\/70 {
  --tw-ring-color: rgba(243, 63, 77, 0.7);
}

.ring-eva-red-appt\/75 {
  --tw-ring-color: rgba(243, 63, 77, 0.75);
}

.ring-eva-red-appt\/80 {
  --tw-ring-color: rgba(243, 63, 77, 0.8);
}

.ring-eva-red-appt\/85 {
  --tw-ring-color: rgba(243, 63, 77, 0.85);
}

.ring-eva-red-appt\/90 {
  --tw-ring-color: rgba(243, 63, 77, 0.9);
}

.ring-eva-red-appt\/95 {
  --tw-ring-color: rgba(243, 63, 77, 0.95);
}

.ring-eva-red-orange-appt {
  --tw-ring-color: rgba(217, 154, 118, 1);
}

.ring-eva-red-orange-appt\/0 {
  --tw-ring-color: rgba(217, 154, 118, 0);
}

.ring-eva-red-orange-appt\/10 {
  --tw-ring-color: rgba(217, 154, 118, 0.1);
}

.ring-eva-red-orange-appt\/100 {
  --tw-ring-color: rgba(217, 154, 118, 1);
}

.ring-eva-red-orange-appt\/15 {
  --tw-ring-color: rgba(217, 154, 118, 0.15);
}

.ring-eva-red-orange-appt\/20 {
  --tw-ring-color: rgba(217, 154, 118, 0.2);
}

.ring-eva-red-orange-appt\/25 {
  --tw-ring-color: rgba(217, 154, 118, 0.25);
}

.ring-eva-red-orange-appt\/30 {
  --tw-ring-color: rgba(217, 154, 118, 0.3);
}

.ring-eva-red-orange-appt\/35 {
  --tw-ring-color: rgba(217, 154, 118, 0.35);
}

.ring-eva-red-orange-appt\/40 {
  --tw-ring-color: rgba(217, 154, 118, 0.4);
}

.ring-eva-red-orange-appt\/45 {
  --tw-ring-color: rgba(217, 154, 118, 0.45);
}

.ring-eva-red-orange-appt\/5 {
  --tw-ring-color: rgba(217, 154, 118, 0.05);
}

.ring-eva-red-orange-appt\/50 {
  --tw-ring-color: rgba(217, 154, 118, 0.5);
}

.ring-eva-red-orange-appt\/55 {
  --tw-ring-color: rgba(217, 154, 118, 0.55);
}

.ring-eva-red-orange-appt\/60 {
  --tw-ring-color: rgba(217, 154, 118, 0.6);
}

.ring-eva-red-orange-appt\/65 {
  --tw-ring-color: rgba(217, 154, 118, 0.65);
}

.ring-eva-red-orange-appt\/70 {
  --tw-ring-color: rgba(217, 154, 118, 0.7);
}

.ring-eva-red-orange-appt\/75 {
  --tw-ring-color: rgba(217, 154, 118, 0.75);
}

.ring-eva-red-orange-appt\/80 {
  --tw-ring-color: rgba(217, 154, 118, 0.8);
}

.ring-eva-red-orange-appt\/85 {
  --tw-ring-color: rgba(217, 154, 118, 0.85);
}

.ring-eva-red-orange-appt\/90 {
  --tw-ring-color: rgba(217, 154, 118, 0.9);
}

.ring-eva-red-orange-appt\/95 {
  --tw-ring-color: rgba(217, 154, 118, 0.95);
}

.ring-eva-red\/0 {
  --tw-ring-color: rgb(234 101 101 / 0);
}

.ring-eva-red\/10 {
  --tw-ring-color: rgb(234 101 101 / 0.1);
}

.ring-eva-red\/100 {
  --tw-ring-color: rgb(234 101 101 / 1);
}

.ring-eva-red\/15 {
  --tw-ring-color: rgb(234 101 101 / 0.15);
}

.ring-eva-red\/20 {
  --tw-ring-color: rgb(234 101 101 / 0.2);
}

.ring-eva-red\/25 {
  --tw-ring-color: rgb(234 101 101 / 0.25);
}

.ring-eva-red\/30 {
  --tw-ring-color: rgb(234 101 101 / 0.3);
}

.ring-eva-red\/35 {
  --tw-ring-color: rgb(234 101 101 / 0.35);
}

.ring-eva-red\/40 {
  --tw-ring-color: rgb(234 101 101 / 0.4);
}

.ring-eva-red\/45 {
  --tw-ring-color: rgb(234 101 101 / 0.45);
}

.ring-eva-red\/5 {
  --tw-ring-color: rgb(234 101 101 / 0.05);
}

.ring-eva-red\/50 {
  --tw-ring-color: rgb(234 101 101 / 0.5);
}

.ring-eva-red\/55 {
  --tw-ring-color: rgb(234 101 101 / 0.55);
}

.ring-eva-red\/60 {
  --tw-ring-color: rgb(234 101 101 / 0.6);
}

.ring-eva-red\/65 {
  --tw-ring-color: rgb(234 101 101 / 0.65);
}

.ring-eva-red\/70 {
  --tw-ring-color: rgb(234 101 101 / 0.7);
}

.ring-eva-red\/75 {
  --tw-ring-color: rgb(234 101 101 / 0.75);
}

.ring-eva-red\/80 {
  --tw-ring-color: rgb(234 101 101 / 0.8);
}

.ring-eva-red\/85 {
  --tw-ring-color: rgb(234 101 101 / 0.85);
}

.ring-eva-red\/90 {
  --tw-ring-color: rgb(234 101 101 / 0.9);
}

.ring-eva-red\/95 {
  --tw-ring-color: rgb(234 101 101 / 0.95);
}

.ring-eva-teal-appt {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(22, 172, 151, var(--tw-ring-opacity, 1));
}

.ring-eva-teal-appt\/0 {
  --tw-ring-color: rgba(22, 172, 151, 0);
}

.ring-eva-teal-appt\/10 {
  --tw-ring-color: rgba(22, 172, 151, 0.1);
}

.ring-eva-teal-appt\/100 {
  --tw-ring-color: rgba(22, 172, 151, 1);
}

.ring-eva-teal-appt\/15 {
  --tw-ring-color: rgba(22, 172, 151, 0.15);
}

.ring-eva-teal-appt\/20 {
  --tw-ring-color: rgba(22, 172, 151, 0.2);
}

.ring-eva-teal-appt\/25 {
  --tw-ring-color: rgba(22, 172, 151, 0.25);
}

.ring-eva-teal-appt\/30 {
  --tw-ring-color: rgba(22, 172, 151, 0.3);
}

.ring-eva-teal-appt\/35 {
  --tw-ring-color: rgba(22, 172, 151, 0.35);
}

.ring-eva-teal-appt\/40 {
  --tw-ring-color: rgba(22, 172, 151, 0.4);
}

.ring-eva-teal-appt\/45 {
  --tw-ring-color: rgba(22, 172, 151, 0.45);
}

.ring-eva-teal-appt\/5 {
  --tw-ring-color: rgba(22, 172, 151, 0.05);
}

.ring-eva-teal-appt\/50 {
  --tw-ring-color: rgba(22, 172, 151, 0.5);
}

.ring-eva-teal-appt\/55 {
  --tw-ring-color: rgba(22, 172, 151, 0.55);
}

.ring-eva-teal-appt\/60 {
  --tw-ring-color: rgba(22, 172, 151, 0.6);
}

.ring-eva-teal-appt\/65 {
  --tw-ring-color: rgba(22, 172, 151, 0.65);
}

.ring-eva-teal-appt\/70 {
  --tw-ring-color: rgba(22, 172, 151, 0.7);
}

.ring-eva-teal-appt\/75 {
  --tw-ring-color: rgba(22, 172, 151, 0.75);
}

.ring-eva-teal-appt\/80 {
  --tw-ring-color: rgba(22, 172, 151, 0.8);
}

.ring-eva-teal-appt\/85 {
  --tw-ring-color: rgba(22, 172, 151, 0.85);
}

.ring-eva-teal-appt\/90 {
  --tw-ring-color: rgba(22, 172, 151, 0.9);
}

.ring-eva-teal-appt\/95 {
  --tw-ring-color: rgba(22, 172, 151, 0.95);
}

.ring-eva-yellow {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(233 179 98 / var(--tw-ring-opacity, 1));
}

.ring-eva-yellow-appt {
  --tw-ring-color: rgba(240, 226, 0, 1);
}

.ring-eva-yellow-appt\/0 {
  --tw-ring-color: rgba(240, 226, 0, 0);
}

.ring-eva-yellow-appt\/10 {
  --tw-ring-color: rgba(240, 226, 0, 0.1);
}

.ring-eva-yellow-appt\/100 {
  --tw-ring-color: rgba(240, 226, 0, 1);
}

.ring-eva-yellow-appt\/15 {
  --tw-ring-color: rgba(240, 226, 0, 0.15);
}

.ring-eva-yellow-appt\/20 {
  --tw-ring-color: rgba(240, 226, 0, 0.2);
}

.ring-eva-yellow-appt\/25 {
  --tw-ring-color: rgba(240, 226, 0, 0.25);
}

.ring-eva-yellow-appt\/30 {
  --tw-ring-color: rgba(240, 226, 0, 0.3);
}

.ring-eva-yellow-appt\/35 {
  --tw-ring-color: rgba(240, 226, 0, 0.35);
}

.ring-eva-yellow-appt\/40 {
  --tw-ring-color: rgba(240, 226, 0, 0.4);
}

.ring-eva-yellow-appt\/45 {
  --tw-ring-color: rgba(240, 226, 0, 0.45);
}

.ring-eva-yellow-appt\/5 {
  --tw-ring-color: rgba(240, 226, 0, 0.05);
}

.ring-eva-yellow-appt\/50 {
  --tw-ring-color: rgba(240, 226, 0, 0.5);
}

.ring-eva-yellow-appt\/55 {
  --tw-ring-color: rgba(240, 226, 0, 0.55);
}

.ring-eva-yellow-appt\/60 {
  --tw-ring-color: rgba(240, 226, 0, 0.6);
}

.ring-eva-yellow-appt\/65 {
  --tw-ring-color: rgba(240, 226, 0, 0.65);
}

.ring-eva-yellow-appt\/70 {
  --tw-ring-color: rgba(240, 226, 0, 0.7);
}

.ring-eva-yellow-appt\/75 {
  --tw-ring-color: rgba(240, 226, 0, 0.75);
}

.ring-eva-yellow-appt\/80 {
  --tw-ring-color: rgba(240, 226, 0, 0.8);
}

.ring-eva-yellow-appt\/85 {
  --tw-ring-color: rgba(240, 226, 0, 0.85);
}

.ring-eva-yellow-appt\/90 {
  --tw-ring-color: rgba(240, 226, 0, 0.9);
}

.ring-eva-yellow-appt\/95 {
  --tw-ring-color: rgba(240, 226, 0, 0.95);
}

.ring-eva-yellow\/0 {
  --tw-ring-color: rgb(233 179 98 / 0);
}

.ring-eva-yellow\/10 {
  --tw-ring-color: rgb(233 179 98 / 0.1);
}

.ring-eva-yellow\/100 {
  --tw-ring-color: rgb(233 179 98 / 1);
}

.ring-eva-yellow\/15 {
  --tw-ring-color: rgb(233 179 98 / 0.15);
}

.ring-eva-yellow\/20 {
  --tw-ring-color: rgb(233 179 98 / 0.2);
}

.ring-eva-yellow\/25 {
  --tw-ring-color: rgb(233 179 98 / 0.25);
}

.ring-eva-yellow\/30 {
  --tw-ring-color: rgb(233 179 98 / 0.3);
}

.ring-eva-yellow\/35 {
  --tw-ring-color: rgb(233 179 98 / 0.35);
}

.ring-eva-yellow\/40 {
  --tw-ring-color: rgb(233 179 98 / 0.4);
}

.ring-eva-yellow\/45 {
  --tw-ring-color: rgb(233 179 98 / 0.45);
}

.ring-eva-yellow\/5 {
  --tw-ring-color: rgb(233 179 98 / 0.05);
}

.ring-eva-yellow\/50 {
  --tw-ring-color: rgb(233 179 98 / 0.5);
}

.ring-eva-yellow\/55 {
  --tw-ring-color: rgb(233 179 98 / 0.55);
}

.ring-eva-yellow\/60 {
  --tw-ring-color: rgb(233 179 98 / 0.6);
}

.ring-eva-yellow\/65 {
  --tw-ring-color: rgb(233 179 98 / 0.65);
}

.ring-eva-yellow\/70 {
  --tw-ring-color: rgb(233 179 98 / 0.7);
}

.ring-eva-yellow\/75 {
  --tw-ring-color: rgb(233 179 98 / 0.75);
}

.ring-eva-yellow\/80 {
  --tw-ring-color: rgb(233 179 98 / 0.8);
}

.ring-eva-yellow\/85 {
  --tw-ring-color: rgb(233 179 98 / 0.85);
}

.ring-eva-yellow\/90 {
  --tw-ring-color: rgb(233 179 98 / 0.9);
}

.ring-eva-yellow\/95 {
  --tw-ring-color: rgb(233 179 98 / 0.95);
}

.ring-gray-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(245 245 245 / var(--tw-ring-opacity, 1));
}

.ring-gray-100\/0 {
  --tw-ring-color: rgb(245 245 245 / 0);
}

.ring-gray-100\/10 {
  --tw-ring-color: rgb(245 245 245 / 0.1);
}

.ring-gray-100\/100 {
  --tw-ring-color: rgb(245 245 245 / 1);
}

.ring-gray-100\/15 {
  --tw-ring-color: rgb(245 245 245 / 0.15);
}

.ring-gray-100\/20 {
  --tw-ring-color: rgb(245 245 245 / 0.2);
}

.ring-gray-100\/25 {
  --tw-ring-color: rgb(245 245 245 / 0.25);
}

.ring-gray-100\/30 {
  --tw-ring-color: rgb(245 245 245 / 0.3);
}

.ring-gray-100\/35 {
  --tw-ring-color: rgb(245 245 245 / 0.35);
}

.ring-gray-100\/40 {
  --tw-ring-color: rgb(245 245 245 / 0.4);
}

.ring-gray-100\/45 {
  --tw-ring-color: rgb(245 245 245 / 0.45);
}

.ring-gray-100\/5 {
  --tw-ring-color: rgb(245 245 245 / 0.05);
}

.ring-gray-100\/50 {
  --tw-ring-color: rgb(245 245 245 / 0.5);
}

.ring-gray-100\/55 {
  --tw-ring-color: rgb(245 245 245 / 0.55);
}

.ring-gray-100\/60 {
  --tw-ring-color: rgb(245 245 245 / 0.6);
}

.ring-gray-100\/65 {
  --tw-ring-color: rgb(245 245 245 / 0.65);
}

.ring-gray-100\/70 {
  --tw-ring-color: rgb(245 245 245 / 0.7);
}

.ring-gray-100\/75 {
  --tw-ring-color: rgb(245 245 245 / 0.75);
}

.ring-gray-100\/80 {
  --tw-ring-color: rgb(245 245 245 / 0.8);
}

.ring-gray-100\/85 {
  --tw-ring-color: rgb(245 245 245 / 0.85);
}

.ring-gray-100\/90 {
  --tw-ring-color: rgb(245 245 245 / 0.9);
}

.ring-gray-100\/95 {
  --tw-ring-color: rgb(245 245 245 / 0.95);
}

.ring-gray-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(229 229 229 / var(--tw-ring-opacity, 1));
}

.ring-gray-200\/0 {
  --tw-ring-color: rgb(229 229 229 / 0);
}

.ring-gray-200\/10 {
  --tw-ring-color: rgb(229 229 229 / 0.1);
}

.ring-gray-200\/100 {
  --tw-ring-color: rgb(229 229 229 / 1);
}

.ring-gray-200\/15 {
  --tw-ring-color: rgb(229 229 229 / 0.15);
}

.ring-gray-200\/20 {
  --tw-ring-color: rgb(229 229 229 / 0.2);
}

.ring-gray-200\/25 {
  --tw-ring-color: rgb(229 229 229 / 0.25);
}

.ring-gray-200\/30 {
  --tw-ring-color: rgb(229 229 229 / 0.3);
}

.ring-gray-200\/35 {
  --tw-ring-color: rgb(229 229 229 / 0.35);
}

.ring-gray-200\/40 {
  --tw-ring-color: rgb(229 229 229 / 0.4);
}

.ring-gray-200\/45 {
  --tw-ring-color: rgb(229 229 229 / 0.45);
}

.ring-gray-200\/5 {
  --tw-ring-color: rgb(229 229 229 / 0.05);
}

.ring-gray-200\/50 {
  --tw-ring-color: rgb(229 229 229 / 0.5);
}

.ring-gray-200\/55 {
  --tw-ring-color: rgb(229 229 229 / 0.55);
}

.ring-gray-200\/60 {
  --tw-ring-color: rgb(229 229 229 / 0.6);
}

.ring-gray-200\/65 {
  --tw-ring-color: rgb(229 229 229 / 0.65);
}

.ring-gray-200\/70 {
  --tw-ring-color: rgb(229 229 229 / 0.7);
}

.ring-gray-200\/75 {
  --tw-ring-color: rgb(229 229 229 / 0.75);
}

.ring-gray-200\/80 {
  --tw-ring-color: rgb(229 229 229 / 0.8);
}

.ring-gray-200\/85 {
  --tw-ring-color: rgb(229 229 229 / 0.85);
}

.ring-gray-200\/90 {
  --tw-ring-color: rgb(229 229 229 / 0.9);
}

.ring-gray-200\/95 {
  --tw-ring-color: rgb(229 229 229 / 0.95);
}

.ring-gray-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(212 212 212 / var(--tw-ring-opacity, 1));
}

.ring-gray-300\/0 {
  --tw-ring-color: rgb(212 212 212 / 0);
}

.ring-gray-300\/10 {
  --tw-ring-color: rgb(212 212 212 / 0.1);
}

.ring-gray-300\/100 {
  --tw-ring-color: rgb(212 212 212 / 1);
}

.ring-gray-300\/15 {
  --tw-ring-color: rgb(212 212 212 / 0.15);
}

.ring-gray-300\/20 {
  --tw-ring-color: rgb(212 212 212 / 0.2);
}

.ring-gray-300\/25 {
  --tw-ring-color: rgb(212 212 212 / 0.25);
}

.ring-gray-300\/30 {
  --tw-ring-color: rgb(212 212 212 / 0.3);
}

.ring-gray-300\/35 {
  --tw-ring-color: rgb(212 212 212 / 0.35);
}

.ring-gray-300\/40 {
  --tw-ring-color: rgb(212 212 212 / 0.4);
}

.ring-gray-300\/45 {
  --tw-ring-color: rgb(212 212 212 / 0.45);
}

.ring-gray-300\/5 {
  --tw-ring-color: rgb(212 212 212 / 0.05);
}

.ring-gray-300\/50 {
  --tw-ring-color: rgb(212 212 212 / 0.5);
}

.ring-gray-300\/55 {
  --tw-ring-color: rgb(212 212 212 / 0.55);
}

.ring-gray-300\/60 {
  --tw-ring-color: rgb(212 212 212 / 0.6);
}

.ring-gray-300\/65 {
  --tw-ring-color: rgb(212 212 212 / 0.65);
}

.ring-gray-300\/70 {
  --tw-ring-color: rgb(212 212 212 / 0.7);
}

.ring-gray-300\/75 {
  --tw-ring-color: rgb(212 212 212 / 0.75);
}

.ring-gray-300\/80 {
  --tw-ring-color: rgb(212 212 212 / 0.8);
}

.ring-gray-300\/85 {
  --tw-ring-color: rgb(212 212 212 / 0.85);
}

.ring-gray-300\/90 {
  --tw-ring-color: rgb(212 212 212 / 0.9);
}

.ring-gray-300\/95 {
  --tw-ring-color: rgb(212 212 212 / 0.95);
}

.ring-gray-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(163 163 163 / var(--tw-ring-opacity, 1));
}

.ring-gray-400\/0 {
  --tw-ring-color: rgb(163 163 163 / 0);
}

.ring-gray-400\/10 {
  --tw-ring-color: rgb(163 163 163 / 0.1);
}

.ring-gray-400\/100 {
  --tw-ring-color: rgb(163 163 163 / 1);
}

.ring-gray-400\/15 {
  --tw-ring-color: rgb(163 163 163 / 0.15);
}

.ring-gray-400\/20 {
  --tw-ring-color: rgb(163 163 163 / 0.2);
}

.ring-gray-400\/25 {
  --tw-ring-color: rgb(163 163 163 / 0.25);
}

.ring-gray-400\/30 {
  --tw-ring-color: rgb(163 163 163 / 0.3);
}

.ring-gray-400\/35 {
  --tw-ring-color: rgb(163 163 163 / 0.35);
}

.ring-gray-400\/40 {
  --tw-ring-color: rgb(163 163 163 / 0.4);
}

.ring-gray-400\/45 {
  --tw-ring-color: rgb(163 163 163 / 0.45);
}

.ring-gray-400\/5 {
  --tw-ring-color: rgb(163 163 163 / 0.05);
}

.ring-gray-400\/50 {
  --tw-ring-color: rgb(163 163 163 / 0.5);
}

.ring-gray-400\/55 {
  --tw-ring-color: rgb(163 163 163 / 0.55);
}

.ring-gray-400\/60 {
  --tw-ring-color: rgb(163 163 163 / 0.6);
}

.ring-gray-400\/65 {
  --tw-ring-color: rgb(163 163 163 / 0.65);
}

.ring-gray-400\/70 {
  --tw-ring-color: rgb(163 163 163 / 0.7);
}

.ring-gray-400\/75 {
  --tw-ring-color: rgb(163 163 163 / 0.75);
}

.ring-gray-400\/80 {
  --tw-ring-color: rgb(163 163 163 / 0.8);
}

.ring-gray-400\/85 {
  --tw-ring-color: rgb(163 163 163 / 0.85);
}

.ring-gray-400\/90 {
  --tw-ring-color: rgb(163 163 163 / 0.9);
}

.ring-gray-400\/95 {
  --tw-ring-color: rgb(163 163 163 / 0.95);
}

.ring-gray-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(250 250 250 / var(--tw-ring-opacity, 1));
}

.ring-gray-50\/0 {
  --tw-ring-color: rgb(250 250 250 / 0);
}

.ring-gray-50\/10 {
  --tw-ring-color: rgb(250 250 250 / 0.1);
}

.ring-gray-50\/100 {
  --tw-ring-color: rgb(250 250 250 / 1);
}

.ring-gray-50\/15 {
  --tw-ring-color: rgb(250 250 250 / 0.15);
}

.ring-gray-50\/20 {
  --tw-ring-color: rgb(250 250 250 / 0.2);
}

.ring-gray-50\/25 {
  --tw-ring-color: rgb(250 250 250 / 0.25);
}

.ring-gray-50\/30 {
  --tw-ring-color: rgb(250 250 250 / 0.3);
}

.ring-gray-50\/35 {
  --tw-ring-color: rgb(250 250 250 / 0.35);
}

.ring-gray-50\/40 {
  --tw-ring-color: rgb(250 250 250 / 0.4);
}

.ring-gray-50\/45 {
  --tw-ring-color: rgb(250 250 250 / 0.45);
}

.ring-gray-50\/5 {
  --tw-ring-color: rgb(250 250 250 / 0.05);
}

.ring-gray-50\/50 {
  --tw-ring-color: rgb(250 250 250 / 0.5);
}

.ring-gray-50\/55 {
  --tw-ring-color: rgb(250 250 250 / 0.55);
}

.ring-gray-50\/60 {
  --tw-ring-color: rgb(250 250 250 / 0.6);
}

.ring-gray-50\/65 {
  --tw-ring-color: rgb(250 250 250 / 0.65);
}

.ring-gray-50\/70 {
  --tw-ring-color: rgb(250 250 250 / 0.7);
}

.ring-gray-50\/75 {
  --tw-ring-color: rgb(250 250 250 / 0.75);
}

.ring-gray-50\/80 {
  --tw-ring-color: rgb(250 250 250 / 0.8);
}

.ring-gray-50\/85 {
  --tw-ring-color: rgb(250 250 250 / 0.85);
}

.ring-gray-50\/90 {
  --tw-ring-color: rgb(250 250 250 / 0.9);
}

.ring-gray-50\/95 {
  --tw-ring-color: rgb(250 250 250 / 0.95);
}

.ring-gray-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(115 115 115 / var(--tw-ring-opacity, 1));
}

.ring-gray-500\/0 {
  --tw-ring-color: rgb(115 115 115 / 0);
}

.ring-gray-500\/10 {
  --tw-ring-color: rgb(115 115 115 / 0.1);
}

.ring-gray-500\/100 {
  --tw-ring-color: rgb(115 115 115 / 1);
}

.ring-gray-500\/15 {
  --tw-ring-color: rgb(115 115 115 / 0.15);
}

.ring-gray-500\/20 {
  --tw-ring-color: rgb(115 115 115 / 0.2);
}

.ring-gray-500\/25 {
  --tw-ring-color: rgb(115 115 115 / 0.25);
}

.ring-gray-500\/30 {
  --tw-ring-color: rgb(115 115 115 / 0.3);
}

.ring-gray-500\/35 {
  --tw-ring-color: rgb(115 115 115 / 0.35);
}

.ring-gray-500\/40 {
  --tw-ring-color: rgb(115 115 115 / 0.4);
}

.ring-gray-500\/45 {
  --tw-ring-color: rgb(115 115 115 / 0.45);
}

.ring-gray-500\/5 {
  --tw-ring-color: rgb(115 115 115 / 0.05);
}

.ring-gray-500\/50 {
  --tw-ring-color: rgb(115 115 115 / 0.5);
}

.ring-gray-500\/55 {
  --tw-ring-color: rgb(115 115 115 / 0.55);
}

.ring-gray-500\/60 {
  --tw-ring-color: rgb(115 115 115 / 0.6);
}

.ring-gray-500\/65 {
  --tw-ring-color: rgb(115 115 115 / 0.65);
}

.ring-gray-500\/70 {
  --tw-ring-color: rgb(115 115 115 / 0.7);
}

.ring-gray-500\/75 {
  --tw-ring-color: rgb(115 115 115 / 0.75);
}

.ring-gray-500\/80 {
  --tw-ring-color: rgb(115 115 115 / 0.8);
}

.ring-gray-500\/85 {
  --tw-ring-color: rgb(115 115 115 / 0.85);
}

.ring-gray-500\/90 {
  --tw-ring-color: rgb(115 115 115 / 0.9);
}

.ring-gray-500\/95 {
  --tw-ring-color: rgb(115 115 115 / 0.95);
}

.ring-gray-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(82 82 82 / var(--tw-ring-opacity, 1));
}

.ring-gray-600\/0 {
  --tw-ring-color: rgb(82 82 82 / 0);
}

.ring-gray-600\/10 {
  --tw-ring-color: rgb(82 82 82 / 0.1);
}

.ring-gray-600\/100 {
  --tw-ring-color: rgb(82 82 82 / 1);
}

.ring-gray-600\/15 {
  --tw-ring-color: rgb(82 82 82 / 0.15);
}

.ring-gray-600\/20 {
  --tw-ring-color: rgb(82 82 82 / 0.2);
}

.ring-gray-600\/25 {
  --tw-ring-color: rgb(82 82 82 / 0.25);
}

.ring-gray-600\/30 {
  --tw-ring-color: rgb(82 82 82 / 0.3);
}

.ring-gray-600\/35 {
  --tw-ring-color: rgb(82 82 82 / 0.35);
}

.ring-gray-600\/40 {
  --tw-ring-color: rgb(82 82 82 / 0.4);
}

.ring-gray-600\/45 {
  --tw-ring-color: rgb(82 82 82 / 0.45);
}

.ring-gray-600\/5 {
  --tw-ring-color: rgb(82 82 82 / 0.05);
}

.ring-gray-600\/50 {
  --tw-ring-color: rgb(82 82 82 / 0.5);
}

.ring-gray-600\/55 {
  --tw-ring-color: rgb(82 82 82 / 0.55);
}

.ring-gray-600\/60 {
  --tw-ring-color: rgb(82 82 82 / 0.6);
}

.ring-gray-600\/65 {
  --tw-ring-color: rgb(82 82 82 / 0.65);
}

.ring-gray-600\/70 {
  --tw-ring-color: rgb(82 82 82 / 0.7);
}

.ring-gray-600\/75 {
  --tw-ring-color: rgb(82 82 82 / 0.75);
}

.ring-gray-600\/80 {
  --tw-ring-color: rgb(82 82 82 / 0.8);
}

.ring-gray-600\/85 {
  --tw-ring-color: rgb(82 82 82 / 0.85);
}

.ring-gray-600\/90 {
  --tw-ring-color: rgb(82 82 82 / 0.9);
}

.ring-gray-600\/95 {
  --tw-ring-color: rgb(82 82 82 / 0.95);
}

.ring-gray-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(64 64 64 / var(--tw-ring-opacity, 1));
}

.ring-gray-700\/0 {
  --tw-ring-color: rgb(64 64 64 / 0);
}

.ring-gray-700\/10 {
  --tw-ring-color: rgb(64 64 64 / 0.1);
}

.ring-gray-700\/100 {
  --tw-ring-color: rgb(64 64 64 / 1);
}

.ring-gray-700\/15 {
  --tw-ring-color: rgb(64 64 64 / 0.15);
}

.ring-gray-700\/20 {
  --tw-ring-color: rgb(64 64 64 / 0.2);
}

.ring-gray-700\/25 {
  --tw-ring-color: rgb(64 64 64 / 0.25);
}

.ring-gray-700\/30 {
  --tw-ring-color: rgb(64 64 64 / 0.3);
}

.ring-gray-700\/35 {
  --tw-ring-color: rgb(64 64 64 / 0.35);
}

.ring-gray-700\/40 {
  --tw-ring-color: rgb(64 64 64 / 0.4);
}

.ring-gray-700\/45 {
  --tw-ring-color: rgb(64 64 64 / 0.45);
}

.ring-gray-700\/5 {
  --tw-ring-color: rgb(64 64 64 / 0.05);
}

.ring-gray-700\/50 {
  --tw-ring-color: rgb(64 64 64 / 0.5);
}

.ring-gray-700\/55 {
  --tw-ring-color: rgb(64 64 64 / 0.55);
}

.ring-gray-700\/60 {
  --tw-ring-color: rgb(64 64 64 / 0.6);
}

.ring-gray-700\/65 {
  --tw-ring-color: rgb(64 64 64 / 0.65);
}

.ring-gray-700\/70 {
  --tw-ring-color: rgb(64 64 64 / 0.7);
}

.ring-gray-700\/75 {
  --tw-ring-color: rgb(64 64 64 / 0.75);
}

.ring-gray-700\/80 {
  --tw-ring-color: rgb(64 64 64 / 0.8);
}

.ring-gray-700\/85 {
  --tw-ring-color: rgb(64 64 64 / 0.85);
}

.ring-gray-700\/90 {
  --tw-ring-color: rgb(64 64 64 / 0.9);
}

.ring-gray-700\/95 {
  --tw-ring-color: rgb(64 64 64 / 0.95);
}

.ring-gray-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(38 38 38 / var(--tw-ring-opacity, 1));
}

.ring-gray-800\/0 {
  --tw-ring-color: rgb(38 38 38 / 0);
}

.ring-gray-800\/10 {
  --tw-ring-color: rgb(38 38 38 / 0.1);
}

.ring-gray-800\/100 {
  --tw-ring-color: rgb(38 38 38 / 1);
}

.ring-gray-800\/15 {
  --tw-ring-color: rgb(38 38 38 / 0.15);
}

.ring-gray-800\/20 {
  --tw-ring-color: rgb(38 38 38 / 0.2);
}

.ring-gray-800\/25 {
  --tw-ring-color: rgb(38 38 38 / 0.25);
}

.ring-gray-800\/30 {
  --tw-ring-color: rgb(38 38 38 / 0.3);
}

.ring-gray-800\/35 {
  --tw-ring-color: rgb(38 38 38 / 0.35);
}

.ring-gray-800\/40 {
  --tw-ring-color: rgb(38 38 38 / 0.4);
}

.ring-gray-800\/45 {
  --tw-ring-color: rgb(38 38 38 / 0.45);
}

.ring-gray-800\/5 {
  --tw-ring-color: rgb(38 38 38 / 0.05);
}

.ring-gray-800\/50 {
  --tw-ring-color: rgb(38 38 38 / 0.5);
}

.ring-gray-800\/55 {
  --tw-ring-color: rgb(38 38 38 / 0.55);
}

.ring-gray-800\/60 {
  --tw-ring-color: rgb(38 38 38 / 0.6);
}

.ring-gray-800\/65 {
  --tw-ring-color: rgb(38 38 38 / 0.65);
}

.ring-gray-800\/70 {
  --tw-ring-color: rgb(38 38 38 / 0.7);
}

.ring-gray-800\/75 {
  --tw-ring-color: rgb(38 38 38 / 0.75);
}

.ring-gray-800\/80 {
  --tw-ring-color: rgb(38 38 38 / 0.8);
}

.ring-gray-800\/85 {
  --tw-ring-color: rgb(38 38 38 / 0.85);
}

.ring-gray-800\/90 {
  --tw-ring-color: rgb(38 38 38 / 0.9);
}

.ring-gray-800\/95 {
  --tw-ring-color: rgb(38 38 38 / 0.95);
}

.ring-gray-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(23 23 23 / var(--tw-ring-opacity, 1));
}

.ring-gray-900\/0 {
  --tw-ring-color: rgb(23 23 23 / 0);
}

.ring-gray-900\/10 {
  --tw-ring-color: rgb(23 23 23 / 0.1);
}

.ring-gray-900\/100 {
  --tw-ring-color: rgb(23 23 23 / 1);
}

.ring-gray-900\/15 {
  --tw-ring-color: rgb(23 23 23 / 0.15);
}

.ring-gray-900\/20 {
  --tw-ring-color: rgb(23 23 23 / 0.2);
}

.ring-gray-900\/25 {
  --tw-ring-color: rgb(23 23 23 / 0.25);
}

.ring-gray-900\/30 {
  --tw-ring-color: rgb(23 23 23 / 0.3);
}

.ring-gray-900\/35 {
  --tw-ring-color: rgb(23 23 23 / 0.35);
}

.ring-gray-900\/40 {
  --tw-ring-color: rgb(23 23 23 / 0.4);
}

.ring-gray-900\/45 {
  --tw-ring-color: rgb(23 23 23 / 0.45);
}

.ring-gray-900\/5 {
  --tw-ring-color: rgb(23 23 23 / 0.05);
}

.ring-gray-900\/50 {
  --tw-ring-color: rgb(23 23 23 / 0.5);
}

.ring-gray-900\/55 {
  --tw-ring-color: rgb(23 23 23 / 0.55);
}

.ring-gray-900\/60 {
  --tw-ring-color: rgb(23 23 23 / 0.6);
}

.ring-gray-900\/65 {
  --tw-ring-color: rgb(23 23 23 / 0.65);
}

.ring-gray-900\/70 {
  --tw-ring-color: rgb(23 23 23 / 0.7);
}

.ring-gray-900\/75 {
  --tw-ring-color: rgb(23 23 23 / 0.75);
}

.ring-gray-900\/80 {
  --tw-ring-color: rgb(23 23 23 / 0.8);
}

.ring-gray-900\/85 {
  --tw-ring-color: rgb(23 23 23 / 0.85);
}

.ring-gray-900\/90 {
  --tw-ring-color: rgb(23 23 23 / 0.9);
}

.ring-gray-900\/95 {
  --tw-ring-color: rgb(23 23 23 / 0.95);
}

.ring-gray-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(10 10 10 / var(--tw-ring-opacity, 1));
}

.ring-gray-950\/0 {
  --tw-ring-color: rgb(10 10 10 / 0);
}

.ring-gray-950\/10 {
  --tw-ring-color: rgb(10 10 10 / 0.1);
}

.ring-gray-950\/100 {
  --tw-ring-color: rgb(10 10 10 / 1);
}

.ring-gray-950\/15 {
  --tw-ring-color: rgb(10 10 10 / 0.15);
}

.ring-gray-950\/20 {
  --tw-ring-color: rgb(10 10 10 / 0.2);
}

.ring-gray-950\/25 {
  --tw-ring-color: rgb(10 10 10 / 0.25);
}

.ring-gray-950\/30 {
  --tw-ring-color: rgb(10 10 10 / 0.3);
}

.ring-gray-950\/35 {
  --tw-ring-color: rgb(10 10 10 / 0.35);
}

.ring-gray-950\/40 {
  --tw-ring-color: rgb(10 10 10 / 0.4);
}

.ring-gray-950\/45 {
  --tw-ring-color: rgb(10 10 10 / 0.45);
}

.ring-gray-950\/5 {
  --tw-ring-color: rgb(10 10 10 / 0.05);
}

.ring-gray-950\/50 {
  --tw-ring-color: rgb(10 10 10 / 0.5);
}

.ring-gray-950\/55 {
  --tw-ring-color: rgb(10 10 10 / 0.55);
}

.ring-gray-950\/60 {
  --tw-ring-color: rgb(10 10 10 / 0.6);
}

.ring-gray-950\/65 {
  --tw-ring-color: rgb(10 10 10 / 0.65);
}

.ring-gray-950\/70 {
  --tw-ring-color: rgb(10 10 10 / 0.7);
}

.ring-gray-950\/75 {
  --tw-ring-color: rgb(10 10 10 / 0.75);
}

.ring-gray-950\/80 {
  --tw-ring-color: rgb(10 10 10 / 0.8);
}

.ring-gray-950\/85 {
  --tw-ring-color: rgb(10 10 10 / 0.85);
}

.ring-gray-950\/90 {
  --tw-ring-color: rgb(10 10 10 / 0.9);
}

.ring-gray-950\/95 {
  --tw-ring-color: rgb(10 10 10 / 0.95);
}

.ring-green-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(220 252 231 / var(--tw-ring-opacity, 1));
}

.ring-green-100\/0 {
  --tw-ring-color: rgb(220 252 231 / 0);
}

.ring-green-100\/10 {
  --tw-ring-color: rgb(220 252 231 / 0.1);
}

.ring-green-100\/100 {
  --tw-ring-color: rgb(220 252 231 / 1);
}

.ring-green-100\/15 {
  --tw-ring-color: rgb(220 252 231 / 0.15);
}

.ring-green-100\/20 {
  --tw-ring-color: rgb(220 252 231 / 0.2);
}

.ring-green-100\/25 {
  --tw-ring-color: rgb(220 252 231 / 0.25);
}

.ring-green-100\/30 {
  --tw-ring-color: rgb(220 252 231 / 0.3);
}

.ring-green-100\/35 {
  --tw-ring-color: rgb(220 252 231 / 0.35);
}

.ring-green-100\/40 {
  --tw-ring-color: rgb(220 252 231 / 0.4);
}

.ring-green-100\/45 {
  --tw-ring-color: rgb(220 252 231 / 0.45);
}

.ring-green-100\/5 {
  --tw-ring-color: rgb(220 252 231 / 0.05);
}

.ring-green-100\/50 {
  --tw-ring-color: rgb(220 252 231 / 0.5);
}

.ring-green-100\/55 {
  --tw-ring-color: rgb(220 252 231 / 0.55);
}

.ring-green-100\/60 {
  --tw-ring-color: rgb(220 252 231 / 0.6);
}

.ring-green-100\/65 {
  --tw-ring-color: rgb(220 252 231 / 0.65);
}

.ring-green-100\/70 {
  --tw-ring-color: rgb(220 252 231 / 0.7);
}

.ring-green-100\/75 {
  --tw-ring-color: rgb(220 252 231 / 0.75);
}

.ring-green-100\/80 {
  --tw-ring-color: rgb(220 252 231 / 0.8);
}

.ring-green-100\/85 {
  --tw-ring-color: rgb(220 252 231 / 0.85);
}

.ring-green-100\/90 {
  --tw-ring-color: rgb(220 252 231 / 0.9);
}

.ring-green-100\/95 {
  --tw-ring-color: rgb(220 252 231 / 0.95);
}

.ring-green-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(187 247 208 / var(--tw-ring-opacity, 1));
}

.ring-green-200\/0 {
  --tw-ring-color: rgb(187 247 208 / 0);
}

.ring-green-200\/10 {
  --tw-ring-color: rgb(187 247 208 / 0.1);
}

.ring-green-200\/100 {
  --tw-ring-color: rgb(187 247 208 / 1);
}

.ring-green-200\/15 {
  --tw-ring-color: rgb(187 247 208 / 0.15);
}

.ring-green-200\/20 {
  --tw-ring-color: rgb(187 247 208 / 0.2);
}

.ring-green-200\/25 {
  --tw-ring-color: rgb(187 247 208 / 0.25);
}

.ring-green-200\/30 {
  --tw-ring-color: rgb(187 247 208 / 0.3);
}

.ring-green-200\/35 {
  --tw-ring-color: rgb(187 247 208 / 0.35);
}

.ring-green-200\/40 {
  --tw-ring-color: rgb(187 247 208 / 0.4);
}

.ring-green-200\/45 {
  --tw-ring-color: rgb(187 247 208 / 0.45);
}

.ring-green-200\/5 {
  --tw-ring-color: rgb(187 247 208 / 0.05);
}

.ring-green-200\/50 {
  --tw-ring-color: rgb(187 247 208 / 0.5);
}

.ring-green-200\/55 {
  --tw-ring-color: rgb(187 247 208 / 0.55);
}

.ring-green-200\/60 {
  --tw-ring-color: rgb(187 247 208 / 0.6);
}

.ring-green-200\/65 {
  --tw-ring-color: rgb(187 247 208 / 0.65);
}

.ring-green-200\/70 {
  --tw-ring-color: rgb(187 247 208 / 0.7);
}

.ring-green-200\/75 {
  --tw-ring-color: rgb(187 247 208 / 0.75);
}

.ring-green-200\/80 {
  --tw-ring-color: rgb(187 247 208 / 0.8);
}

.ring-green-200\/85 {
  --tw-ring-color: rgb(187 247 208 / 0.85);
}

.ring-green-200\/90 {
  --tw-ring-color: rgb(187 247 208 / 0.9);
}

.ring-green-200\/95 {
  --tw-ring-color: rgb(187 247 208 / 0.95);
}

.ring-green-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(134 239 172 / var(--tw-ring-opacity, 1));
}

.ring-green-300\/0 {
  --tw-ring-color: rgb(134 239 172 / 0);
}

.ring-green-300\/10 {
  --tw-ring-color: rgb(134 239 172 / 0.1);
}

.ring-green-300\/100 {
  --tw-ring-color: rgb(134 239 172 / 1);
}

.ring-green-300\/15 {
  --tw-ring-color: rgb(134 239 172 / 0.15);
}

.ring-green-300\/20 {
  --tw-ring-color: rgb(134 239 172 / 0.2);
}

.ring-green-300\/25 {
  --tw-ring-color: rgb(134 239 172 / 0.25);
}

.ring-green-300\/30 {
  --tw-ring-color: rgb(134 239 172 / 0.3);
}

.ring-green-300\/35 {
  --tw-ring-color: rgb(134 239 172 / 0.35);
}

.ring-green-300\/40 {
  --tw-ring-color: rgb(134 239 172 / 0.4);
}

.ring-green-300\/45 {
  --tw-ring-color: rgb(134 239 172 / 0.45);
}

.ring-green-300\/5 {
  --tw-ring-color: rgb(134 239 172 / 0.05);
}

.ring-green-300\/50 {
  --tw-ring-color: rgb(134 239 172 / 0.5);
}

.ring-green-300\/55 {
  --tw-ring-color: rgb(134 239 172 / 0.55);
}

.ring-green-300\/60 {
  --tw-ring-color: rgb(134 239 172 / 0.6);
}

.ring-green-300\/65 {
  --tw-ring-color: rgb(134 239 172 / 0.65);
}

.ring-green-300\/70 {
  --tw-ring-color: rgb(134 239 172 / 0.7);
}

.ring-green-300\/75 {
  --tw-ring-color: rgb(134 239 172 / 0.75);
}

.ring-green-300\/80 {
  --tw-ring-color: rgb(134 239 172 / 0.8);
}

.ring-green-300\/85 {
  --tw-ring-color: rgb(134 239 172 / 0.85);
}

.ring-green-300\/90 {
  --tw-ring-color: rgb(134 239 172 / 0.9);
}

.ring-green-300\/95 {
  --tw-ring-color: rgb(134 239 172 / 0.95);
}

.ring-green-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(74 222 128 / var(--tw-ring-opacity, 1));
}

.ring-green-400\/0 {
  --tw-ring-color: rgb(74 222 128 / 0);
}

.ring-green-400\/10 {
  --tw-ring-color: rgb(74 222 128 / 0.1);
}

.ring-green-400\/100 {
  --tw-ring-color: rgb(74 222 128 / 1);
}

.ring-green-400\/15 {
  --tw-ring-color: rgb(74 222 128 / 0.15);
}

.ring-green-400\/20 {
  --tw-ring-color: rgb(74 222 128 / 0.2);
}

.ring-green-400\/25 {
  --tw-ring-color: rgb(74 222 128 / 0.25);
}

.ring-green-400\/30 {
  --tw-ring-color: rgb(74 222 128 / 0.3);
}

.ring-green-400\/35 {
  --tw-ring-color: rgb(74 222 128 / 0.35);
}

.ring-green-400\/40 {
  --tw-ring-color: rgb(74 222 128 / 0.4);
}

.ring-green-400\/45 {
  --tw-ring-color: rgb(74 222 128 / 0.45);
}

.ring-green-400\/5 {
  --tw-ring-color: rgb(74 222 128 / 0.05);
}

.ring-green-400\/50 {
  --tw-ring-color: rgb(74 222 128 / 0.5);
}

.ring-green-400\/55 {
  --tw-ring-color: rgb(74 222 128 / 0.55);
}

.ring-green-400\/60 {
  --tw-ring-color: rgb(74 222 128 / 0.6);
}

.ring-green-400\/65 {
  --tw-ring-color: rgb(74 222 128 / 0.65);
}

.ring-green-400\/70 {
  --tw-ring-color: rgb(74 222 128 / 0.7);
}

.ring-green-400\/75 {
  --tw-ring-color: rgb(74 222 128 / 0.75);
}

.ring-green-400\/80 {
  --tw-ring-color: rgb(74 222 128 / 0.8);
}

.ring-green-400\/85 {
  --tw-ring-color: rgb(74 222 128 / 0.85);
}

.ring-green-400\/90 {
  --tw-ring-color: rgb(74 222 128 / 0.9);
}

.ring-green-400\/95 {
  --tw-ring-color: rgb(74 222 128 / 0.95);
}

.ring-green-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(240 253 244 / var(--tw-ring-opacity, 1));
}

.ring-green-50\/0 {
  --tw-ring-color: rgb(240 253 244 / 0);
}

.ring-green-50\/10 {
  --tw-ring-color: rgb(240 253 244 / 0.1);
}

.ring-green-50\/100 {
  --tw-ring-color: rgb(240 253 244 / 1);
}

.ring-green-50\/15 {
  --tw-ring-color: rgb(240 253 244 / 0.15);
}

.ring-green-50\/20 {
  --tw-ring-color: rgb(240 253 244 / 0.2);
}

.ring-green-50\/25 {
  --tw-ring-color: rgb(240 253 244 / 0.25);
}

.ring-green-50\/30 {
  --tw-ring-color: rgb(240 253 244 / 0.3);
}

.ring-green-50\/35 {
  --tw-ring-color: rgb(240 253 244 / 0.35);
}

.ring-green-50\/40 {
  --tw-ring-color: rgb(240 253 244 / 0.4);
}

.ring-green-50\/45 {
  --tw-ring-color: rgb(240 253 244 / 0.45);
}

.ring-green-50\/5 {
  --tw-ring-color: rgb(240 253 244 / 0.05);
}

.ring-green-50\/50 {
  --tw-ring-color: rgb(240 253 244 / 0.5);
}

.ring-green-50\/55 {
  --tw-ring-color: rgb(240 253 244 / 0.55);
}

.ring-green-50\/60 {
  --tw-ring-color: rgb(240 253 244 / 0.6);
}

.ring-green-50\/65 {
  --tw-ring-color: rgb(240 253 244 / 0.65);
}

.ring-green-50\/70 {
  --tw-ring-color: rgb(240 253 244 / 0.7);
}

.ring-green-50\/75 {
  --tw-ring-color: rgb(240 253 244 / 0.75);
}

.ring-green-50\/80 {
  --tw-ring-color: rgb(240 253 244 / 0.8);
}

.ring-green-50\/85 {
  --tw-ring-color: rgb(240 253 244 / 0.85);
}

.ring-green-50\/90 {
  --tw-ring-color: rgb(240 253 244 / 0.9);
}

.ring-green-50\/95 {
  --tw-ring-color: rgb(240 253 244 / 0.95);
}

.ring-green-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(34 197 94 / var(--tw-ring-opacity, 1));
}

.ring-green-500\/0 {
  --tw-ring-color: rgb(34 197 94 / 0);
}

.ring-green-500\/10 {
  --tw-ring-color: rgb(34 197 94 / 0.1);
}

.ring-green-500\/100 {
  --tw-ring-color: rgb(34 197 94 / 1);
}

.ring-green-500\/15 {
  --tw-ring-color: rgb(34 197 94 / 0.15);
}

.ring-green-500\/20 {
  --tw-ring-color: rgb(34 197 94 / 0.2);
}

.ring-green-500\/25 {
  --tw-ring-color: rgb(34 197 94 / 0.25);
}

.ring-green-500\/30 {
  --tw-ring-color: rgb(34 197 94 / 0.3);
}

.ring-green-500\/35 {
  --tw-ring-color: rgb(34 197 94 / 0.35);
}

.ring-green-500\/40 {
  --tw-ring-color: rgb(34 197 94 / 0.4);
}

.ring-green-500\/45 {
  --tw-ring-color: rgb(34 197 94 / 0.45);
}

.ring-green-500\/5 {
  --tw-ring-color: rgb(34 197 94 / 0.05);
}

.ring-green-500\/50 {
  --tw-ring-color: rgb(34 197 94 / 0.5);
}

.ring-green-500\/55 {
  --tw-ring-color: rgb(34 197 94 / 0.55);
}

.ring-green-500\/60 {
  --tw-ring-color: rgb(34 197 94 / 0.6);
}

.ring-green-500\/65 {
  --tw-ring-color: rgb(34 197 94 / 0.65);
}

.ring-green-500\/70 {
  --tw-ring-color: rgb(34 197 94 / 0.7);
}

.ring-green-500\/75 {
  --tw-ring-color: rgb(34 197 94 / 0.75);
}

.ring-green-500\/80 {
  --tw-ring-color: rgb(34 197 94 / 0.8);
}

.ring-green-500\/85 {
  --tw-ring-color: rgb(34 197 94 / 0.85);
}

.ring-green-500\/90 {
  --tw-ring-color: rgb(34 197 94 / 0.9);
}

.ring-green-500\/95 {
  --tw-ring-color: rgb(34 197 94 / 0.95);
}

.ring-green-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(22 163 74 / var(--tw-ring-opacity, 1));
}

.ring-green-600\/0 {
  --tw-ring-color: rgb(22 163 74 / 0);
}

.ring-green-600\/10 {
  --tw-ring-color: rgb(22 163 74 / 0.1);
}

.ring-green-600\/100 {
  --tw-ring-color: rgb(22 163 74 / 1);
}

.ring-green-600\/15 {
  --tw-ring-color: rgb(22 163 74 / 0.15);
}

.ring-green-600\/20 {
  --tw-ring-color: rgb(22 163 74 / 0.2);
}

.ring-green-600\/25 {
  --tw-ring-color: rgb(22 163 74 / 0.25);
}

.ring-green-600\/30 {
  --tw-ring-color: rgb(22 163 74 / 0.3);
}

.ring-green-600\/35 {
  --tw-ring-color: rgb(22 163 74 / 0.35);
}

.ring-green-600\/40 {
  --tw-ring-color: rgb(22 163 74 / 0.4);
}

.ring-green-600\/45 {
  --tw-ring-color: rgb(22 163 74 / 0.45);
}

.ring-green-600\/5 {
  --tw-ring-color: rgb(22 163 74 / 0.05);
}

.ring-green-600\/50 {
  --tw-ring-color: rgb(22 163 74 / 0.5);
}

.ring-green-600\/55 {
  --tw-ring-color: rgb(22 163 74 / 0.55);
}

.ring-green-600\/60 {
  --tw-ring-color: rgb(22 163 74 / 0.6);
}

.ring-green-600\/65 {
  --tw-ring-color: rgb(22 163 74 / 0.65);
}

.ring-green-600\/70 {
  --tw-ring-color: rgb(22 163 74 / 0.7);
}

.ring-green-600\/75 {
  --tw-ring-color: rgb(22 163 74 / 0.75);
}

.ring-green-600\/80 {
  --tw-ring-color: rgb(22 163 74 / 0.8);
}

.ring-green-600\/85 {
  --tw-ring-color: rgb(22 163 74 / 0.85);
}

.ring-green-600\/90 {
  --tw-ring-color: rgb(22 163 74 / 0.9);
}

.ring-green-600\/95 {
  --tw-ring-color: rgb(22 163 74 / 0.95);
}

.ring-green-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(21 128 61 / var(--tw-ring-opacity, 1));
}

.ring-green-700\/0 {
  --tw-ring-color: rgb(21 128 61 / 0);
}

.ring-green-700\/10 {
  --tw-ring-color: rgb(21 128 61 / 0.1);
}

.ring-green-700\/100 {
  --tw-ring-color: rgb(21 128 61 / 1);
}

.ring-green-700\/15 {
  --tw-ring-color: rgb(21 128 61 / 0.15);
}

.ring-green-700\/20 {
  --tw-ring-color: rgb(21 128 61 / 0.2);
}

.ring-green-700\/25 {
  --tw-ring-color: rgb(21 128 61 / 0.25);
}

.ring-green-700\/30 {
  --tw-ring-color: rgb(21 128 61 / 0.3);
}

.ring-green-700\/35 {
  --tw-ring-color: rgb(21 128 61 / 0.35);
}

.ring-green-700\/40 {
  --tw-ring-color: rgb(21 128 61 / 0.4);
}

.ring-green-700\/45 {
  --tw-ring-color: rgb(21 128 61 / 0.45);
}

.ring-green-700\/5 {
  --tw-ring-color: rgb(21 128 61 / 0.05);
}

.ring-green-700\/50 {
  --tw-ring-color: rgb(21 128 61 / 0.5);
}

.ring-green-700\/55 {
  --tw-ring-color: rgb(21 128 61 / 0.55);
}

.ring-green-700\/60 {
  --tw-ring-color: rgb(21 128 61 / 0.6);
}

.ring-green-700\/65 {
  --tw-ring-color: rgb(21 128 61 / 0.65);
}

.ring-green-700\/70 {
  --tw-ring-color: rgb(21 128 61 / 0.7);
}

.ring-green-700\/75 {
  --tw-ring-color: rgb(21 128 61 / 0.75);
}

.ring-green-700\/80 {
  --tw-ring-color: rgb(21 128 61 / 0.8);
}

.ring-green-700\/85 {
  --tw-ring-color: rgb(21 128 61 / 0.85);
}

.ring-green-700\/90 {
  --tw-ring-color: rgb(21 128 61 / 0.9);
}

.ring-green-700\/95 {
  --tw-ring-color: rgb(21 128 61 / 0.95);
}

.ring-green-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(22 101 52 / var(--tw-ring-opacity, 1));
}

.ring-green-800\/0 {
  --tw-ring-color: rgb(22 101 52 / 0);
}

.ring-green-800\/10 {
  --tw-ring-color: rgb(22 101 52 / 0.1);
}

.ring-green-800\/100 {
  --tw-ring-color: rgb(22 101 52 / 1);
}

.ring-green-800\/15 {
  --tw-ring-color: rgb(22 101 52 / 0.15);
}

.ring-green-800\/20 {
  --tw-ring-color: rgb(22 101 52 / 0.2);
}

.ring-green-800\/25 {
  --tw-ring-color: rgb(22 101 52 / 0.25);
}

.ring-green-800\/30 {
  --tw-ring-color: rgb(22 101 52 / 0.3);
}

.ring-green-800\/35 {
  --tw-ring-color: rgb(22 101 52 / 0.35);
}

.ring-green-800\/40 {
  --tw-ring-color: rgb(22 101 52 / 0.4);
}

.ring-green-800\/45 {
  --tw-ring-color: rgb(22 101 52 / 0.45);
}

.ring-green-800\/5 {
  --tw-ring-color: rgb(22 101 52 / 0.05);
}

.ring-green-800\/50 {
  --tw-ring-color: rgb(22 101 52 / 0.5);
}

.ring-green-800\/55 {
  --tw-ring-color: rgb(22 101 52 / 0.55);
}

.ring-green-800\/60 {
  --tw-ring-color: rgb(22 101 52 / 0.6);
}

.ring-green-800\/65 {
  --tw-ring-color: rgb(22 101 52 / 0.65);
}

.ring-green-800\/70 {
  --tw-ring-color: rgb(22 101 52 / 0.7);
}

.ring-green-800\/75 {
  --tw-ring-color: rgb(22 101 52 / 0.75);
}

.ring-green-800\/80 {
  --tw-ring-color: rgb(22 101 52 / 0.8);
}

.ring-green-800\/85 {
  --tw-ring-color: rgb(22 101 52 / 0.85);
}

.ring-green-800\/90 {
  --tw-ring-color: rgb(22 101 52 / 0.9);
}

.ring-green-800\/95 {
  --tw-ring-color: rgb(22 101 52 / 0.95);
}

.ring-green-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(20 83 45 / var(--tw-ring-opacity, 1));
}

.ring-green-900\/0 {
  --tw-ring-color: rgb(20 83 45 / 0);
}

.ring-green-900\/10 {
  --tw-ring-color: rgb(20 83 45 / 0.1);
}

.ring-green-900\/100 {
  --tw-ring-color: rgb(20 83 45 / 1);
}

.ring-green-900\/15 {
  --tw-ring-color: rgb(20 83 45 / 0.15);
}

.ring-green-900\/20 {
  --tw-ring-color: rgb(20 83 45 / 0.2);
}

.ring-green-900\/25 {
  --tw-ring-color: rgb(20 83 45 / 0.25);
}

.ring-green-900\/30 {
  --tw-ring-color: rgb(20 83 45 / 0.3);
}

.ring-green-900\/35 {
  --tw-ring-color: rgb(20 83 45 / 0.35);
}

.ring-green-900\/40 {
  --tw-ring-color: rgb(20 83 45 / 0.4);
}

.ring-green-900\/45 {
  --tw-ring-color: rgb(20 83 45 / 0.45);
}

.ring-green-900\/5 {
  --tw-ring-color: rgb(20 83 45 / 0.05);
}

.ring-green-900\/50 {
  --tw-ring-color: rgb(20 83 45 / 0.5);
}

.ring-green-900\/55 {
  --tw-ring-color: rgb(20 83 45 / 0.55);
}

.ring-green-900\/60 {
  --tw-ring-color: rgb(20 83 45 / 0.6);
}

.ring-green-900\/65 {
  --tw-ring-color: rgb(20 83 45 / 0.65);
}

.ring-green-900\/70 {
  --tw-ring-color: rgb(20 83 45 / 0.7);
}

.ring-green-900\/75 {
  --tw-ring-color: rgb(20 83 45 / 0.75);
}

.ring-green-900\/80 {
  --tw-ring-color: rgb(20 83 45 / 0.8);
}

.ring-green-900\/85 {
  --tw-ring-color: rgb(20 83 45 / 0.85);
}

.ring-green-900\/90 {
  --tw-ring-color: rgb(20 83 45 / 0.9);
}

.ring-green-900\/95 {
  --tw-ring-color: rgb(20 83 45 / 0.95);
}

.ring-green-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(5 46 22 / var(--tw-ring-opacity, 1));
}

.ring-green-950\/0 {
  --tw-ring-color: rgb(5 46 22 / 0);
}

.ring-green-950\/10 {
  --tw-ring-color: rgb(5 46 22 / 0.1);
}

.ring-green-950\/100 {
  --tw-ring-color: rgb(5 46 22 / 1);
}

.ring-green-950\/15 {
  --tw-ring-color: rgb(5 46 22 / 0.15);
}

.ring-green-950\/20 {
  --tw-ring-color: rgb(5 46 22 / 0.2);
}

.ring-green-950\/25 {
  --tw-ring-color: rgb(5 46 22 / 0.25);
}

.ring-green-950\/30 {
  --tw-ring-color: rgb(5 46 22 / 0.3);
}

.ring-green-950\/35 {
  --tw-ring-color: rgb(5 46 22 / 0.35);
}

.ring-green-950\/40 {
  --tw-ring-color: rgb(5 46 22 / 0.4);
}

.ring-green-950\/45 {
  --tw-ring-color: rgb(5 46 22 / 0.45);
}

.ring-green-950\/5 {
  --tw-ring-color: rgb(5 46 22 / 0.05);
}

.ring-green-950\/50 {
  --tw-ring-color: rgb(5 46 22 / 0.5);
}

.ring-green-950\/55 {
  --tw-ring-color: rgb(5 46 22 / 0.55);
}

.ring-green-950\/60 {
  --tw-ring-color: rgb(5 46 22 / 0.6);
}

.ring-green-950\/65 {
  --tw-ring-color: rgb(5 46 22 / 0.65);
}

.ring-green-950\/70 {
  --tw-ring-color: rgb(5 46 22 / 0.7);
}

.ring-green-950\/75 {
  --tw-ring-color: rgb(5 46 22 / 0.75);
}

.ring-green-950\/80 {
  --tw-ring-color: rgb(5 46 22 / 0.8);
}

.ring-green-950\/85 {
  --tw-ring-color: rgb(5 46 22 / 0.85);
}

.ring-green-950\/90 {
  --tw-ring-color: rgb(5 46 22 / 0.9);
}

.ring-green-950\/95 {
  --tw-ring-color: rgb(5 46 22 / 0.95);
}

.ring-red-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 226 226 / var(--tw-ring-opacity, 1));
}

.ring-red-100\/0 {
  --tw-ring-color: rgb(254 226 226 / 0);
}

.ring-red-100\/10 {
  --tw-ring-color: rgb(254 226 226 / 0.1);
}

.ring-red-100\/100 {
  --tw-ring-color: rgb(254 226 226 / 1);
}

.ring-red-100\/15 {
  --tw-ring-color: rgb(254 226 226 / 0.15);
}

.ring-red-100\/20 {
  --tw-ring-color: rgb(254 226 226 / 0.2);
}

.ring-red-100\/25 {
  --tw-ring-color: rgb(254 226 226 / 0.25);
}

.ring-red-100\/30 {
  --tw-ring-color: rgb(254 226 226 / 0.3);
}

.ring-red-100\/35 {
  --tw-ring-color: rgb(254 226 226 / 0.35);
}

.ring-red-100\/40 {
  --tw-ring-color: rgb(254 226 226 / 0.4);
}

.ring-red-100\/45 {
  --tw-ring-color: rgb(254 226 226 / 0.45);
}

.ring-red-100\/5 {
  --tw-ring-color: rgb(254 226 226 / 0.05);
}

.ring-red-100\/50 {
  --tw-ring-color: rgb(254 226 226 / 0.5);
}

.ring-red-100\/55 {
  --tw-ring-color: rgb(254 226 226 / 0.55);
}

.ring-red-100\/60 {
  --tw-ring-color: rgb(254 226 226 / 0.6);
}

.ring-red-100\/65 {
  --tw-ring-color: rgb(254 226 226 / 0.65);
}

.ring-red-100\/70 {
  --tw-ring-color: rgb(254 226 226 / 0.7);
}

.ring-red-100\/75 {
  --tw-ring-color: rgb(254 226 226 / 0.75);
}

.ring-red-100\/80 {
  --tw-ring-color: rgb(254 226 226 / 0.8);
}

.ring-red-100\/85 {
  --tw-ring-color: rgb(254 226 226 / 0.85);
}

.ring-red-100\/90 {
  --tw-ring-color: rgb(254 226 226 / 0.9);
}

.ring-red-100\/95 {
  --tw-ring-color: rgb(254 226 226 / 0.95);
}

.ring-red-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 202 202 / var(--tw-ring-opacity, 1));
}

.ring-red-200\/0 {
  --tw-ring-color: rgb(254 202 202 / 0);
}

.ring-red-200\/10 {
  --tw-ring-color: rgb(254 202 202 / 0.1);
}

.ring-red-200\/100 {
  --tw-ring-color: rgb(254 202 202 / 1);
}

.ring-red-200\/15 {
  --tw-ring-color: rgb(254 202 202 / 0.15);
}

.ring-red-200\/20 {
  --tw-ring-color: rgb(254 202 202 / 0.2);
}

.ring-red-200\/25 {
  --tw-ring-color: rgb(254 202 202 / 0.25);
}

.ring-red-200\/30 {
  --tw-ring-color: rgb(254 202 202 / 0.3);
}

.ring-red-200\/35 {
  --tw-ring-color: rgb(254 202 202 / 0.35);
}

.ring-red-200\/40 {
  --tw-ring-color: rgb(254 202 202 / 0.4);
}

.ring-red-200\/45 {
  --tw-ring-color: rgb(254 202 202 / 0.45);
}

.ring-red-200\/5 {
  --tw-ring-color: rgb(254 202 202 / 0.05);
}

.ring-red-200\/50 {
  --tw-ring-color: rgb(254 202 202 / 0.5);
}

.ring-red-200\/55 {
  --tw-ring-color: rgb(254 202 202 / 0.55);
}

.ring-red-200\/60 {
  --tw-ring-color: rgb(254 202 202 / 0.6);
}

.ring-red-200\/65 {
  --tw-ring-color: rgb(254 202 202 / 0.65);
}

.ring-red-200\/70 {
  --tw-ring-color: rgb(254 202 202 / 0.7);
}

.ring-red-200\/75 {
  --tw-ring-color: rgb(254 202 202 / 0.75);
}

.ring-red-200\/80 {
  --tw-ring-color: rgb(254 202 202 / 0.8);
}

.ring-red-200\/85 {
  --tw-ring-color: rgb(254 202 202 / 0.85);
}

.ring-red-200\/90 {
  --tw-ring-color: rgb(254 202 202 / 0.9);
}

.ring-red-200\/95 {
  --tw-ring-color: rgb(254 202 202 / 0.95);
}

.ring-red-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(252 165 165 / var(--tw-ring-opacity, 1));
}

.ring-red-300\/0 {
  --tw-ring-color: rgb(252 165 165 / 0);
}

.ring-red-300\/10 {
  --tw-ring-color: rgb(252 165 165 / 0.1);
}

.ring-red-300\/100 {
  --tw-ring-color: rgb(252 165 165 / 1);
}

.ring-red-300\/15 {
  --tw-ring-color: rgb(252 165 165 / 0.15);
}

.ring-red-300\/20 {
  --tw-ring-color: rgb(252 165 165 / 0.2);
}

.ring-red-300\/25 {
  --tw-ring-color: rgb(252 165 165 / 0.25);
}

.ring-red-300\/30 {
  --tw-ring-color: rgb(252 165 165 / 0.3);
}

.ring-red-300\/35 {
  --tw-ring-color: rgb(252 165 165 / 0.35);
}

.ring-red-300\/40 {
  --tw-ring-color: rgb(252 165 165 / 0.4);
}

.ring-red-300\/45 {
  --tw-ring-color: rgb(252 165 165 / 0.45);
}

.ring-red-300\/5 {
  --tw-ring-color: rgb(252 165 165 / 0.05);
}

.ring-red-300\/50 {
  --tw-ring-color: rgb(252 165 165 / 0.5);
}

.ring-red-300\/55 {
  --tw-ring-color: rgb(252 165 165 / 0.55);
}

.ring-red-300\/60 {
  --tw-ring-color: rgb(252 165 165 / 0.6);
}

.ring-red-300\/65 {
  --tw-ring-color: rgb(252 165 165 / 0.65);
}

.ring-red-300\/70 {
  --tw-ring-color: rgb(252 165 165 / 0.7);
}

.ring-red-300\/75 {
  --tw-ring-color: rgb(252 165 165 / 0.75);
}

.ring-red-300\/80 {
  --tw-ring-color: rgb(252 165 165 / 0.8);
}

.ring-red-300\/85 {
  --tw-ring-color: rgb(252 165 165 / 0.85);
}

.ring-red-300\/90 {
  --tw-ring-color: rgb(252 165 165 / 0.9);
}

.ring-red-300\/95 {
  --tw-ring-color: rgb(252 165 165 / 0.95);
}

.ring-red-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(248 113 113 / var(--tw-ring-opacity, 1));
}

.ring-red-400\/0 {
  --tw-ring-color: rgb(248 113 113 / 0);
}

.ring-red-400\/10 {
  --tw-ring-color: rgb(248 113 113 / 0.1);
}

.ring-red-400\/100 {
  --tw-ring-color: rgb(248 113 113 / 1);
}

.ring-red-400\/15 {
  --tw-ring-color: rgb(248 113 113 / 0.15);
}

.ring-red-400\/20 {
  --tw-ring-color: rgb(248 113 113 / 0.2);
}

.ring-red-400\/25 {
  --tw-ring-color: rgb(248 113 113 / 0.25);
}

.ring-red-400\/30 {
  --tw-ring-color: rgb(248 113 113 / 0.3);
}

.ring-red-400\/35 {
  --tw-ring-color: rgb(248 113 113 / 0.35);
}

.ring-red-400\/40 {
  --tw-ring-color: rgb(248 113 113 / 0.4);
}

.ring-red-400\/45 {
  --tw-ring-color: rgb(248 113 113 / 0.45);
}

.ring-red-400\/5 {
  --tw-ring-color: rgb(248 113 113 / 0.05);
}

.ring-red-400\/50 {
  --tw-ring-color: rgb(248 113 113 / 0.5);
}

.ring-red-400\/55 {
  --tw-ring-color: rgb(248 113 113 / 0.55);
}

.ring-red-400\/60 {
  --tw-ring-color: rgb(248 113 113 / 0.6);
}

.ring-red-400\/65 {
  --tw-ring-color: rgb(248 113 113 / 0.65);
}

.ring-red-400\/70 {
  --tw-ring-color: rgb(248 113 113 / 0.7);
}

.ring-red-400\/75 {
  --tw-ring-color: rgb(248 113 113 / 0.75);
}

.ring-red-400\/80 {
  --tw-ring-color: rgb(248 113 113 / 0.8);
}

.ring-red-400\/85 {
  --tw-ring-color: rgb(248 113 113 / 0.85);
}

.ring-red-400\/90 {
  --tw-ring-color: rgb(248 113 113 / 0.9);
}

.ring-red-400\/95 {
  --tw-ring-color: rgb(248 113 113 / 0.95);
}

.ring-red-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 242 242 / var(--tw-ring-opacity, 1));
}

.ring-red-50\/0 {
  --tw-ring-color: rgb(254 242 242 / 0);
}

.ring-red-50\/10 {
  --tw-ring-color: rgb(254 242 242 / 0.1);
}

.ring-red-50\/100 {
  --tw-ring-color: rgb(254 242 242 / 1);
}

.ring-red-50\/15 {
  --tw-ring-color: rgb(254 242 242 / 0.15);
}

.ring-red-50\/20 {
  --tw-ring-color: rgb(254 242 242 / 0.2);
}

.ring-red-50\/25 {
  --tw-ring-color: rgb(254 242 242 / 0.25);
}

.ring-red-50\/30 {
  --tw-ring-color: rgb(254 242 242 / 0.3);
}

.ring-red-50\/35 {
  --tw-ring-color: rgb(254 242 242 / 0.35);
}

.ring-red-50\/40 {
  --tw-ring-color: rgb(254 242 242 / 0.4);
}

.ring-red-50\/45 {
  --tw-ring-color: rgb(254 242 242 / 0.45);
}

.ring-red-50\/5 {
  --tw-ring-color: rgb(254 242 242 / 0.05);
}

.ring-red-50\/50 {
  --tw-ring-color: rgb(254 242 242 / 0.5);
}

.ring-red-50\/55 {
  --tw-ring-color: rgb(254 242 242 / 0.55);
}

.ring-red-50\/60 {
  --tw-ring-color: rgb(254 242 242 / 0.6);
}

.ring-red-50\/65 {
  --tw-ring-color: rgb(254 242 242 / 0.65);
}

.ring-red-50\/70 {
  --tw-ring-color: rgb(254 242 242 / 0.7);
}

.ring-red-50\/75 {
  --tw-ring-color: rgb(254 242 242 / 0.75);
}

.ring-red-50\/80 {
  --tw-ring-color: rgb(254 242 242 / 0.8);
}

.ring-red-50\/85 {
  --tw-ring-color: rgb(254 242 242 / 0.85);
}

.ring-red-50\/90 {
  --tw-ring-color: rgb(254 242 242 / 0.9);
}

.ring-red-50\/95 {
  --tw-ring-color: rgb(254 242 242 / 0.95);
}

.ring-red-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity, 1));
}

.ring-red-500\/0 {
  --tw-ring-color: rgb(239 68 68 / 0);
}

.ring-red-500\/10 {
  --tw-ring-color: rgb(239 68 68 / 0.1);
}

.ring-red-500\/100 {
  --tw-ring-color: rgb(239 68 68 / 1);
}

.ring-red-500\/15 {
  --tw-ring-color: rgb(239 68 68 / 0.15);
}

.ring-red-500\/20 {
  --tw-ring-color: rgb(239 68 68 / 0.2);
}

.ring-red-500\/25 {
  --tw-ring-color: rgb(239 68 68 / 0.25);
}

.ring-red-500\/30 {
  --tw-ring-color: rgb(239 68 68 / 0.3);
}

.ring-red-500\/35 {
  --tw-ring-color: rgb(239 68 68 / 0.35);
}

.ring-red-500\/40 {
  --tw-ring-color: rgb(239 68 68 / 0.4);
}

.ring-red-500\/45 {
  --tw-ring-color: rgb(239 68 68 / 0.45);
}

.ring-red-500\/5 {
  --tw-ring-color: rgb(239 68 68 / 0.05);
}

.ring-red-500\/50 {
  --tw-ring-color: rgb(239 68 68 / 0.5);
}

.ring-red-500\/55 {
  --tw-ring-color: rgb(239 68 68 / 0.55);
}

.ring-red-500\/60 {
  --tw-ring-color: rgb(239 68 68 / 0.6);
}

.ring-red-500\/65 {
  --tw-ring-color: rgb(239 68 68 / 0.65);
}

.ring-red-500\/70 {
  --tw-ring-color: rgb(239 68 68 / 0.7);
}

.ring-red-500\/75 {
  --tw-ring-color: rgb(239 68 68 / 0.75);
}

.ring-red-500\/80 {
  --tw-ring-color: rgb(239 68 68 / 0.8);
}

.ring-red-500\/85 {
  --tw-ring-color: rgb(239 68 68 / 0.85);
}

.ring-red-500\/90 {
  --tw-ring-color: rgb(239 68 68 / 0.9);
}

.ring-red-500\/95 {
  --tw-ring-color: rgb(239 68 68 / 0.95);
}

.ring-red-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity, 1));
}

.ring-red-600\/0 {
  --tw-ring-color: rgb(220 38 38 / 0);
}

.ring-red-600\/10 {
  --tw-ring-color: rgb(220 38 38 / 0.1);
}

.ring-red-600\/100 {
  --tw-ring-color: rgb(220 38 38 / 1);
}

.ring-red-600\/15 {
  --tw-ring-color: rgb(220 38 38 / 0.15);
}

.ring-red-600\/20 {
  --tw-ring-color: rgb(220 38 38 / 0.2);
}

.ring-red-600\/25 {
  --tw-ring-color: rgb(220 38 38 / 0.25);
}

.ring-red-600\/30 {
  --tw-ring-color: rgb(220 38 38 / 0.3);
}

.ring-red-600\/35 {
  --tw-ring-color: rgb(220 38 38 / 0.35);
}

.ring-red-600\/40 {
  --tw-ring-color: rgb(220 38 38 / 0.4);
}

.ring-red-600\/45 {
  --tw-ring-color: rgb(220 38 38 / 0.45);
}

.ring-red-600\/5 {
  --tw-ring-color: rgb(220 38 38 / 0.05);
}

.ring-red-600\/50 {
  --tw-ring-color: rgb(220 38 38 / 0.5);
}

.ring-red-600\/55 {
  --tw-ring-color: rgb(220 38 38 / 0.55);
}

.ring-red-600\/60 {
  --tw-ring-color: rgb(220 38 38 / 0.6);
}

.ring-red-600\/65 {
  --tw-ring-color: rgb(220 38 38 / 0.65);
}

.ring-red-600\/70 {
  --tw-ring-color: rgb(220 38 38 / 0.7);
}

.ring-red-600\/75 {
  --tw-ring-color: rgb(220 38 38 / 0.75);
}

.ring-red-600\/80 {
  --tw-ring-color: rgb(220 38 38 / 0.8);
}

.ring-red-600\/85 {
  --tw-ring-color: rgb(220 38 38 / 0.85);
}

.ring-red-600\/90 {
  --tw-ring-color: rgb(220 38 38 / 0.9);
}

.ring-red-600\/95 {
  --tw-ring-color: rgb(220 38 38 / 0.95);
}

.ring-red-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(185 28 28 / var(--tw-ring-opacity, 1));
}

.ring-red-700\/0 {
  --tw-ring-color: rgb(185 28 28 / 0);
}

.ring-red-700\/10 {
  --tw-ring-color: rgb(185 28 28 / 0.1);
}

.ring-red-700\/100 {
  --tw-ring-color: rgb(185 28 28 / 1);
}

.ring-red-700\/15 {
  --tw-ring-color: rgb(185 28 28 / 0.15);
}

.ring-red-700\/20 {
  --tw-ring-color: rgb(185 28 28 / 0.2);
}

.ring-red-700\/25 {
  --tw-ring-color: rgb(185 28 28 / 0.25);
}

.ring-red-700\/30 {
  --tw-ring-color: rgb(185 28 28 / 0.3);
}

.ring-red-700\/35 {
  --tw-ring-color: rgb(185 28 28 / 0.35);
}

.ring-red-700\/40 {
  --tw-ring-color: rgb(185 28 28 / 0.4);
}

.ring-red-700\/45 {
  --tw-ring-color: rgb(185 28 28 / 0.45);
}

.ring-red-700\/5 {
  --tw-ring-color: rgb(185 28 28 / 0.05);
}

.ring-red-700\/50 {
  --tw-ring-color: rgb(185 28 28 / 0.5);
}

.ring-red-700\/55 {
  --tw-ring-color: rgb(185 28 28 / 0.55);
}

.ring-red-700\/60 {
  --tw-ring-color: rgb(185 28 28 / 0.6);
}

.ring-red-700\/65 {
  --tw-ring-color: rgb(185 28 28 / 0.65);
}

.ring-red-700\/70 {
  --tw-ring-color: rgb(185 28 28 / 0.7);
}

.ring-red-700\/75 {
  --tw-ring-color: rgb(185 28 28 / 0.75);
}

.ring-red-700\/80 {
  --tw-ring-color: rgb(185 28 28 / 0.8);
}

.ring-red-700\/85 {
  --tw-ring-color: rgb(185 28 28 / 0.85);
}

.ring-red-700\/90 {
  --tw-ring-color: rgb(185 28 28 / 0.9);
}

.ring-red-700\/95 {
  --tw-ring-color: rgb(185 28 28 / 0.95);
}

.ring-red-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(153 27 27 / var(--tw-ring-opacity, 1));
}

.ring-red-800\/0 {
  --tw-ring-color: rgb(153 27 27 / 0);
}

.ring-red-800\/10 {
  --tw-ring-color: rgb(153 27 27 / 0.1);
}

.ring-red-800\/100 {
  --tw-ring-color: rgb(153 27 27 / 1);
}

.ring-red-800\/15 {
  --tw-ring-color: rgb(153 27 27 / 0.15);
}

.ring-red-800\/20 {
  --tw-ring-color: rgb(153 27 27 / 0.2);
}

.ring-red-800\/25 {
  --tw-ring-color: rgb(153 27 27 / 0.25);
}

.ring-red-800\/30 {
  --tw-ring-color: rgb(153 27 27 / 0.3);
}

.ring-red-800\/35 {
  --tw-ring-color: rgb(153 27 27 / 0.35);
}

.ring-red-800\/40 {
  --tw-ring-color: rgb(153 27 27 / 0.4);
}

.ring-red-800\/45 {
  --tw-ring-color: rgb(153 27 27 / 0.45);
}

.ring-red-800\/5 {
  --tw-ring-color: rgb(153 27 27 / 0.05);
}

.ring-red-800\/50 {
  --tw-ring-color: rgb(153 27 27 / 0.5);
}

.ring-red-800\/55 {
  --tw-ring-color: rgb(153 27 27 / 0.55);
}

.ring-red-800\/60 {
  --tw-ring-color: rgb(153 27 27 / 0.6);
}

.ring-red-800\/65 {
  --tw-ring-color: rgb(153 27 27 / 0.65);
}

.ring-red-800\/70 {
  --tw-ring-color: rgb(153 27 27 / 0.7);
}

.ring-red-800\/75 {
  --tw-ring-color: rgb(153 27 27 / 0.75);
}

.ring-red-800\/80 {
  --tw-ring-color: rgb(153 27 27 / 0.8);
}

.ring-red-800\/85 {
  --tw-ring-color: rgb(153 27 27 / 0.85);
}

.ring-red-800\/90 {
  --tw-ring-color: rgb(153 27 27 / 0.9);
}

.ring-red-800\/95 {
  --tw-ring-color: rgb(153 27 27 / 0.95);
}

.ring-red-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(127 29 29 / var(--tw-ring-opacity, 1));
}

.ring-red-900\/0 {
  --tw-ring-color: rgb(127 29 29 / 0);
}

.ring-red-900\/10 {
  --tw-ring-color: rgb(127 29 29 / 0.1);
}

.ring-red-900\/100 {
  --tw-ring-color: rgb(127 29 29 / 1);
}

.ring-red-900\/15 {
  --tw-ring-color: rgb(127 29 29 / 0.15);
}

.ring-red-900\/20 {
  --tw-ring-color: rgb(127 29 29 / 0.2);
}

.ring-red-900\/25 {
  --tw-ring-color: rgb(127 29 29 / 0.25);
}

.ring-red-900\/30 {
  --tw-ring-color: rgb(127 29 29 / 0.3);
}

.ring-red-900\/35 {
  --tw-ring-color: rgb(127 29 29 / 0.35);
}

.ring-red-900\/40 {
  --tw-ring-color: rgb(127 29 29 / 0.4);
}

.ring-red-900\/45 {
  --tw-ring-color: rgb(127 29 29 / 0.45);
}

.ring-red-900\/5 {
  --tw-ring-color: rgb(127 29 29 / 0.05);
}

.ring-red-900\/50 {
  --tw-ring-color: rgb(127 29 29 / 0.5);
}

.ring-red-900\/55 {
  --tw-ring-color: rgb(127 29 29 / 0.55);
}

.ring-red-900\/60 {
  --tw-ring-color: rgb(127 29 29 / 0.6);
}

.ring-red-900\/65 {
  --tw-ring-color: rgb(127 29 29 / 0.65);
}

.ring-red-900\/70 {
  --tw-ring-color: rgb(127 29 29 / 0.7);
}

.ring-red-900\/75 {
  --tw-ring-color: rgb(127 29 29 / 0.75);
}

.ring-red-900\/80 {
  --tw-ring-color: rgb(127 29 29 / 0.8);
}

.ring-red-900\/85 {
  --tw-ring-color: rgb(127 29 29 / 0.85);
}

.ring-red-900\/90 {
  --tw-ring-color: rgb(127 29 29 / 0.9);
}

.ring-red-900\/95 {
  --tw-ring-color: rgb(127 29 29 / 0.95);
}

.ring-red-950 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(69 10 10 / var(--tw-ring-opacity, 1));
}

.ring-red-950\/0 {
  --tw-ring-color: rgb(69 10 10 / 0);
}

.ring-red-950\/10 {
  --tw-ring-color: rgb(69 10 10 / 0.1);
}

.ring-red-950\/100 {
  --tw-ring-color: rgb(69 10 10 / 1);
}

.ring-red-950\/15 {
  --tw-ring-color: rgb(69 10 10 / 0.15);
}

.ring-red-950\/20 {
  --tw-ring-color: rgb(69 10 10 / 0.2);
}

.ring-red-950\/25 {
  --tw-ring-color: rgb(69 10 10 / 0.25);
}

.ring-red-950\/30 {
  --tw-ring-color: rgb(69 10 10 / 0.3);
}

.ring-red-950\/35 {
  --tw-ring-color: rgb(69 10 10 / 0.35);
}

.ring-red-950\/40 {
  --tw-ring-color: rgb(69 10 10 / 0.4);
}

.ring-red-950\/45 {
  --tw-ring-color: rgb(69 10 10 / 0.45);
}

.ring-red-950\/5 {
  --tw-ring-color: rgb(69 10 10 / 0.05);
}

.ring-red-950\/50 {
  --tw-ring-color: rgb(69 10 10 / 0.5);
}

.ring-red-950\/55 {
  --tw-ring-color: rgb(69 10 10 / 0.55);
}

.ring-red-950\/60 {
  --tw-ring-color: rgb(69 10 10 / 0.6);
}

.ring-red-950\/65 {
  --tw-ring-color: rgb(69 10 10 / 0.65);
}

.ring-red-950\/70 {
  --tw-ring-color: rgb(69 10 10 / 0.7);
}

.ring-red-950\/75 {
  --tw-ring-color: rgb(69 10 10 / 0.75);
}

.ring-red-950\/80 {
  --tw-ring-color: rgb(69 10 10 / 0.8);
}

.ring-red-950\/85 {
  --tw-ring-color: rgb(69 10 10 / 0.85);
}

.ring-red-950\/90 {
  --tw-ring-color: rgb(69 10 10 / 0.9);
}

.ring-red-950\/95 {
  --tw-ring-color: rgb(69 10 10 / 0.95);
}

.ring-transparent {
  --tw-ring-color: transparent;
}

.ring-transparent\/0 {
  --tw-ring-color: rgb(0 0 0 / 0);
}

.ring-transparent\/10 {
  --tw-ring-color: rgb(0 0 0 / 0.1);
}

.ring-transparent\/100 {
  --tw-ring-color: rgb(0 0 0 / 1);
}

.ring-transparent\/15 {
  --tw-ring-color: rgb(0 0 0 / 0.15);
}

.ring-transparent\/20 {
  --tw-ring-color: rgb(0 0 0 / 0.2);
}

.ring-transparent\/25 {
  --tw-ring-color: rgb(0 0 0 / 0.25);
}

.ring-transparent\/30 {
  --tw-ring-color: rgb(0 0 0 / 0.3);
}

.ring-transparent\/35 {
  --tw-ring-color: rgb(0 0 0 / 0.35);
}

.ring-transparent\/40 {
  --tw-ring-color: rgb(0 0 0 / 0.4);
}

.ring-transparent\/45 {
  --tw-ring-color: rgb(0 0 0 / 0.45);
}

.ring-transparent\/5 {
  --tw-ring-color: rgb(0 0 0 / 0.05);
}

.ring-transparent\/50 {
  --tw-ring-color: rgb(0 0 0 / 0.5);
}

.ring-transparent\/55 {
  --tw-ring-color: rgb(0 0 0 / 0.55);
}

.ring-transparent\/60 {
  --tw-ring-color: rgb(0 0 0 / 0.6);
}

.ring-transparent\/65 {
  --tw-ring-color: rgb(0 0 0 / 0.65);
}

.ring-transparent\/70 {
  --tw-ring-color: rgb(0 0 0 / 0.7);
}

.ring-transparent\/75 {
  --tw-ring-color: rgb(0 0 0 / 0.75);
}

.ring-transparent\/80 {
  --tw-ring-color: rgb(0 0 0 / 0.8);
}

.ring-transparent\/85 {
  --tw-ring-color: rgb(0 0 0 / 0.85);
}

.ring-transparent\/90 {
  --tw-ring-color: rgb(0 0 0 / 0.9);
}

.ring-transparent\/95 {
  --tw-ring-color: rgb(0 0 0 / 0.95);
}

.ring-white {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity, 1));
}

.ring-white\/0 {
  --tw-ring-color: rgb(255 255 255 / 0);
}

.ring-white\/10 {
  --tw-ring-color: rgb(255 255 255 / 0.1);
}

.ring-white\/100 {
  --tw-ring-color: rgb(255 255 255 / 1);
}

.ring-white\/15 {
  --tw-ring-color: rgb(255 255 255 / 0.15);
}

.ring-white\/20 {
  --tw-ring-color: rgb(255 255 255 / 0.2);
}

.ring-white\/25 {
  --tw-ring-color: rgb(255 255 255 / 0.25);
}

.ring-white\/30 {
  --tw-ring-color: rgb(255 255 255 / 0.3);
}

.ring-white\/35 {
  --tw-ring-color: rgb(255 255 255 / 0.35);
}

.ring-white\/40 {
  --tw-ring-color: rgb(255 255 255 / 0.4);
}

.ring-white\/45 {
  --tw-ring-color: rgb(255 255 255 / 0.45);
}

.ring-white\/5 {
  --tw-ring-color: rgb(255 255 255 / 0.05);
}

.ring-white\/50 {
  --tw-ring-color: rgb(255 255 255 / 0.5);
}

.ring-white\/55 {
  --tw-ring-color: rgb(255 255 255 / 0.55);
}

.ring-white\/60 {
  --tw-ring-color: rgb(255 255 255 / 0.6);
}

.ring-white\/65 {
  --tw-ring-color: rgb(255 255 255 / 0.65);
}

.ring-white\/70 {
  --tw-ring-color: rgb(255 255 255 / 0.7);
}

.ring-white\/75 {
  --tw-ring-color: rgb(255 255 255 / 0.75);
}

.ring-white\/80 {
  --tw-ring-color: rgb(255 255 255 / 0.8);
}

.ring-white\/85 {
  --tw-ring-color: rgb(255 255 255 / 0.85);
}

.ring-white\/90 {
  --tw-ring-color: rgb(255 255 255 / 0.9);
}

.ring-white\/95 {
  --tw-ring-color: rgb(255 255 255 / 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-black {
  --tw-ring-offset-color: #000;
}

.ring-offset-black\/0 {
  --tw-ring-offset-color: rgb(0 0 0 / 0);
}

.ring-offset-black\/10 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.1);
}

.ring-offset-black\/100 {
  --tw-ring-offset-color: rgb(0 0 0 / 1);
}

.ring-offset-black\/15 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.15);
}

.ring-offset-black\/20 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.2);
}

.ring-offset-black\/25 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.25);
}

.ring-offset-black\/30 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.3);
}

.ring-offset-black\/35 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.35);
}

.ring-offset-black\/40 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.4);
}

.ring-offset-black\/45 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.45);
}

.ring-offset-black\/5 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.05);
}

.ring-offset-black\/50 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.5);
}

.ring-offset-black\/55 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.55);
}

.ring-offset-black\/60 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.6);
}

.ring-offset-black\/65 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.65);
}

.ring-offset-black\/70 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.7);
}

.ring-offset-black\/75 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.75);
}

.ring-offset-black\/80 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.8);
}

.ring-offset-black\/85 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.85);
}

.ring-offset-black\/90 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.9);
}

.ring-offset-black\/95 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.95);
}

.ring-offset-blue-100 {
  --tw-ring-offset-color: #dbeafe;
}

.ring-offset-blue-100\/0 {
  --tw-ring-offset-color: rgb(219 234 254 / 0);
}

.ring-offset-blue-100\/10 {
  --tw-ring-offset-color: rgb(219 234 254 / 0.1);
}

.ring-offset-blue-100\/100 {
  --tw-ring-offset-color: rgb(219 234 254 / 1);
}

.ring-offset-blue-100\/15 {
  --tw-ring-offset-color: rgb(219 234 254 / 0.15);
}

.ring-offset-blue-100\/20 {
  --tw-ring-offset-color: rgb(219 234 254 / 0.2);
}

.ring-offset-blue-100\/25 {
  --tw-ring-offset-color: rgb(219 234 254 / 0.25);
}

.ring-offset-blue-100\/30 {
  --tw-ring-offset-color: rgb(219 234 254 / 0.3);
}

.ring-offset-blue-100\/35 {
  --tw-ring-offset-color: rgb(219 234 254 / 0.35);
}

.ring-offset-blue-100\/40 {
  --tw-ring-offset-color: rgb(219 234 254 / 0.4);
}

.ring-offset-blue-100\/45 {
  --tw-ring-offset-color: rgb(219 234 254 / 0.45);
}

.ring-offset-blue-100\/5 {
  --tw-ring-offset-color: rgb(219 234 254 / 0.05);
}

.ring-offset-blue-100\/50 {
  --tw-ring-offset-color: rgb(219 234 254 / 0.5);
}

.ring-offset-blue-100\/55 {
  --tw-ring-offset-color: rgb(219 234 254 / 0.55);
}

.ring-offset-blue-100\/60 {
  --tw-ring-offset-color: rgb(219 234 254 / 0.6);
}

.ring-offset-blue-100\/65 {
  --tw-ring-offset-color: rgb(219 234 254 / 0.65);
}

.ring-offset-blue-100\/70 {
  --tw-ring-offset-color: rgb(219 234 254 / 0.7);
}

.ring-offset-blue-100\/75 {
  --tw-ring-offset-color: rgb(219 234 254 / 0.75);
}

.ring-offset-blue-100\/80 {
  --tw-ring-offset-color: rgb(219 234 254 / 0.8);
}

.ring-offset-blue-100\/85 {
  --tw-ring-offset-color: rgb(219 234 254 / 0.85);
}

.ring-offset-blue-100\/90 {
  --tw-ring-offset-color: rgb(219 234 254 / 0.9);
}

.ring-offset-blue-100\/95 {
  --tw-ring-offset-color: rgb(219 234 254 / 0.95);
}

.ring-offset-blue-200 {
  --tw-ring-offset-color: #bfdbfe;
}

.ring-offset-blue-200\/0 {
  --tw-ring-offset-color: rgb(191 219 254 / 0);
}

.ring-offset-blue-200\/10 {
  --tw-ring-offset-color: rgb(191 219 254 / 0.1);
}

.ring-offset-blue-200\/100 {
  --tw-ring-offset-color: rgb(191 219 254 / 1);
}

.ring-offset-blue-200\/15 {
  --tw-ring-offset-color: rgb(191 219 254 / 0.15);
}

.ring-offset-blue-200\/20 {
  --tw-ring-offset-color: rgb(191 219 254 / 0.2);
}

.ring-offset-blue-200\/25 {
  --tw-ring-offset-color: rgb(191 219 254 / 0.25);
}

.ring-offset-blue-200\/30 {
  --tw-ring-offset-color: rgb(191 219 254 / 0.3);
}

.ring-offset-blue-200\/35 {
  --tw-ring-offset-color: rgb(191 219 254 / 0.35);
}

.ring-offset-blue-200\/40 {
  --tw-ring-offset-color: rgb(191 219 254 / 0.4);
}

.ring-offset-blue-200\/45 {
  --tw-ring-offset-color: rgb(191 219 254 / 0.45);
}

.ring-offset-blue-200\/5 {
  --tw-ring-offset-color: rgb(191 219 254 / 0.05);
}

.ring-offset-blue-200\/50 {
  --tw-ring-offset-color: rgb(191 219 254 / 0.5);
}

.ring-offset-blue-200\/55 {
  --tw-ring-offset-color: rgb(191 219 254 / 0.55);
}

.ring-offset-blue-200\/60 {
  --tw-ring-offset-color: rgb(191 219 254 / 0.6);
}

.ring-offset-blue-200\/65 {
  --tw-ring-offset-color: rgb(191 219 254 / 0.65);
}

.ring-offset-blue-200\/70 {
  --tw-ring-offset-color: rgb(191 219 254 / 0.7);
}

.ring-offset-blue-200\/75 {
  --tw-ring-offset-color: rgb(191 219 254 / 0.75);
}

.ring-offset-blue-200\/80 {
  --tw-ring-offset-color: rgb(191 219 254 / 0.8);
}

.ring-offset-blue-200\/85 {
  --tw-ring-offset-color: rgb(191 219 254 / 0.85);
}

.ring-offset-blue-200\/90 {
  --tw-ring-offset-color: rgb(191 219 254 / 0.9);
}

.ring-offset-blue-200\/95 {
  --tw-ring-offset-color: rgb(191 219 254 / 0.95);
}

.ring-offset-blue-300 {
  --tw-ring-offset-color: #93c5fd;
}

.ring-offset-blue-300\/0 {
  --tw-ring-offset-color: rgb(147 197 253 / 0);
}

.ring-offset-blue-300\/10 {
  --tw-ring-offset-color: rgb(147 197 253 / 0.1);
}

.ring-offset-blue-300\/100 {
  --tw-ring-offset-color: rgb(147 197 253 / 1);
}

.ring-offset-blue-300\/15 {
  --tw-ring-offset-color: rgb(147 197 253 / 0.15);
}

.ring-offset-blue-300\/20 {
  --tw-ring-offset-color: rgb(147 197 253 / 0.2);
}

.ring-offset-blue-300\/25 {
  --tw-ring-offset-color: rgb(147 197 253 / 0.25);
}

.ring-offset-blue-300\/30 {
  --tw-ring-offset-color: rgb(147 197 253 / 0.3);
}

.ring-offset-blue-300\/35 {
  --tw-ring-offset-color: rgb(147 197 253 / 0.35);
}

.ring-offset-blue-300\/40 {
  --tw-ring-offset-color: rgb(147 197 253 / 0.4);
}

.ring-offset-blue-300\/45 {
  --tw-ring-offset-color: rgb(147 197 253 / 0.45);
}

.ring-offset-blue-300\/5 {
  --tw-ring-offset-color: rgb(147 197 253 / 0.05);
}

.ring-offset-blue-300\/50 {
  --tw-ring-offset-color: rgb(147 197 253 / 0.5);
}

.ring-offset-blue-300\/55 {
  --tw-ring-offset-color: rgb(147 197 253 / 0.55);
}

.ring-offset-blue-300\/60 {
  --tw-ring-offset-color: rgb(147 197 253 / 0.6);
}

.ring-offset-blue-300\/65 {
  --tw-ring-offset-color: rgb(147 197 253 / 0.65);
}

.ring-offset-blue-300\/70 {
  --tw-ring-offset-color: rgb(147 197 253 / 0.7);
}

.ring-offset-blue-300\/75 {
  --tw-ring-offset-color: rgb(147 197 253 / 0.75);
}

.ring-offset-blue-300\/80 {
  --tw-ring-offset-color: rgb(147 197 253 / 0.8);
}

.ring-offset-blue-300\/85 {
  --tw-ring-offset-color: rgb(147 197 253 / 0.85);
}

.ring-offset-blue-300\/90 {
  --tw-ring-offset-color: rgb(147 197 253 / 0.9);
}

.ring-offset-blue-300\/95 {
  --tw-ring-offset-color: rgb(147 197 253 / 0.95);
}

.ring-offset-blue-400 {
  --tw-ring-offset-color: #60a5fa;
}

.ring-offset-blue-400\/0 {
  --tw-ring-offset-color: rgb(96 165 250 / 0);
}

.ring-offset-blue-400\/10 {
  --tw-ring-offset-color: rgb(96 165 250 / 0.1);
}

.ring-offset-blue-400\/100 {
  --tw-ring-offset-color: rgb(96 165 250 / 1);
}

.ring-offset-blue-400\/15 {
  --tw-ring-offset-color: rgb(96 165 250 / 0.15);
}

.ring-offset-blue-400\/20 {
  --tw-ring-offset-color: rgb(96 165 250 / 0.2);
}

.ring-offset-blue-400\/25 {
  --tw-ring-offset-color: rgb(96 165 250 / 0.25);
}

.ring-offset-blue-400\/30 {
  --tw-ring-offset-color: rgb(96 165 250 / 0.3);
}

.ring-offset-blue-400\/35 {
  --tw-ring-offset-color: rgb(96 165 250 / 0.35);
}

.ring-offset-blue-400\/40 {
  --tw-ring-offset-color: rgb(96 165 250 / 0.4);
}

.ring-offset-blue-400\/45 {
  --tw-ring-offset-color: rgb(96 165 250 / 0.45);
}

.ring-offset-blue-400\/5 {
  --tw-ring-offset-color: rgb(96 165 250 / 0.05);
}

.ring-offset-blue-400\/50 {
  --tw-ring-offset-color: rgb(96 165 250 / 0.5);
}

.ring-offset-blue-400\/55 {
  --tw-ring-offset-color: rgb(96 165 250 / 0.55);
}

.ring-offset-blue-400\/60 {
  --tw-ring-offset-color: rgb(96 165 250 / 0.6);
}

.ring-offset-blue-400\/65 {
  --tw-ring-offset-color: rgb(96 165 250 / 0.65);
}

.ring-offset-blue-400\/70 {
  --tw-ring-offset-color: rgb(96 165 250 / 0.7);
}

.ring-offset-blue-400\/75 {
  --tw-ring-offset-color: rgb(96 165 250 / 0.75);
}

.ring-offset-blue-400\/80 {
  --tw-ring-offset-color: rgb(96 165 250 / 0.8);
}

.ring-offset-blue-400\/85 {
  --tw-ring-offset-color: rgb(96 165 250 / 0.85);
}

.ring-offset-blue-400\/90 {
  --tw-ring-offset-color: rgb(96 165 250 / 0.9);
}

.ring-offset-blue-400\/95 {
  --tw-ring-offset-color: rgb(96 165 250 / 0.95);
}

.ring-offset-blue-50 {
  --tw-ring-offset-color: #eff6ff;
}

.ring-offset-blue-50\/0 {
  --tw-ring-offset-color: rgb(239 246 255 / 0);
}

.ring-offset-blue-50\/10 {
  --tw-ring-offset-color: rgb(239 246 255 / 0.1);
}

.ring-offset-blue-50\/100 {
  --tw-ring-offset-color: rgb(239 246 255 / 1);
}

.ring-offset-blue-50\/15 {
  --tw-ring-offset-color: rgb(239 246 255 / 0.15);
}

.ring-offset-blue-50\/20 {
  --tw-ring-offset-color: rgb(239 246 255 / 0.2);
}

.ring-offset-blue-50\/25 {
  --tw-ring-offset-color: rgb(239 246 255 / 0.25);
}

.ring-offset-blue-50\/30 {
  --tw-ring-offset-color: rgb(239 246 255 / 0.3);
}

.ring-offset-blue-50\/35 {
  --tw-ring-offset-color: rgb(239 246 255 / 0.35);
}

.ring-offset-blue-50\/40 {
  --tw-ring-offset-color: rgb(239 246 255 / 0.4);
}

.ring-offset-blue-50\/45 {
  --tw-ring-offset-color: rgb(239 246 255 / 0.45);
}

.ring-offset-blue-50\/5 {
  --tw-ring-offset-color: rgb(239 246 255 / 0.05);
}

.ring-offset-blue-50\/50 {
  --tw-ring-offset-color: rgb(239 246 255 / 0.5);
}

.ring-offset-blue-50\/55 {
  --tw-ring-offset-color: rgb(239 246 255 / 0.55);
}

.ring-offset-blue-50\/60 {
  --tw-ring-offset-color: rgb(239 246 255 / 0.6);
}

.ring-offset-blue-50\/65 {
  --tw-ring-offset-color: rgb(239 246 255 / 0.65);
}

.ring-offset-blue-50\/70 {
  --tw-ring-offset-color: rgb(239 246 255 / 0.7);
}

.ring-offset-blue-50\/75 {
  --tw-ring-offset-color: rgb(239 246 255 / 0.75);
}

.ring-offset-blue-50\/80 {
  --tw-ring-offset-color: rgb(239 246 255 / 0.8);
}

.ring-offset-blue-50\/85 {
  --tw-ring-offset-color: rgb(239 246 255 / 0.85);
}

.ring-offset-blue-50\/90 {
  --tw-ring-offset-color: rgb(239 246 255 / 0.9);
}

.ring-offset-blue-50\/95 {
  --tw-ring-offset-color: rgb(239 246 255 / 0.95);
}

.ring-offset-blue-500 {
  --tw-ring-offset-color: #3b82f6;
}

.ring-offset-blue-500\/0 {
  --tw-ring-offset-color: rgb(59 130 246 / 0);
}

.ring-offset-blue-500\/10 {
  --tw-ring-offset-color: rgb(59 130 246 / 0.1);
}

.ring-offset-blue-500\/100 {
  --tw-ring-offset-color: rgb(59 130 246 / 1);
}

.ring-offset-blue-500\/15 {
  --tw-ring-offset-color: rgb(59 130 246 / 0.15);
}

.ring-offset-blue-500\/20 {
  --tw-ring-offset-color: rgb(59 130 246 / 0.2);
}

.ring-offset-blue-500\/25 {
  --tw-ring-offset-color: rgb(59 130 246 / 0.25);
}

.ring-offset-blue-500\/30 {
  --tw-ring-offset-color: rgb(59 130 246 / 0.3);
}

.ring-offset-blue-500\/35 {
  --tw-ring-offset-color: rgb(59 130 246 / 0.35);
}

.ring-offset-blue-500\/40 {
  --tw-ring-offset-color: rgb(59 130 246 / 0.4);
}

.ring-offset-blue-500\/45 {
  --tw-ring-offset-color: rgb(59 130 246 / 0.45);
}

.ring-offset-blue-500\/5 {
  --tw-ring-offset-color: rgb(59 130 246 / 0.05);
}

.ring-offset-blue-500\/50 {
  --tw-ring-offset-color: rgb(59 130 246 / 0.5);
}

.ring-offset-blue-500\/55 {
  --tw-ring-offset-color: rgb(59 130 246 / 0.55);
}

.ring-offset-blue-500\/60 {
  --tw-ring-offset-color: rgb(59 130 246 / 0.6);
}

.ring-offset-blue-500\/65 {
  --tw-ring-offset-color: rgb(59 130 246 / 0.65);
}

.ring-offset-blue-500\/70 {
  --tw-ring-offset-color: rgb(59 130 246 / 0.7);
}

.ring-offset-blue-500\/75 {
  --tw-ring-offset-color: rgb(59 130 246 / 0.75);
}

.ring-offset-blue-500\/80 {
  --tw-ring-offset-color: rgb(59 130 246 / 0.8);
}

.ring-offset-blue-500\/85 {
  --tw-ring-offset-color: rgb(59 130 246 / 0.85);
}

.ring-offset-blue-500\/90 {
  --tw-ring-offset-color: rgb(59 130 246 / 0.9);
}

.ring-offset-blue-500\/95 {
  --tw-ring-offset-color: rgb(59 130 246 / 0.95);
}

.ring-offset-blue-600 {
  --tw-ring-offset-color: #2563eb;
}

.ring-offset-blue-600\/0 {
  --tw-ring-offset-color: rgb(37 99 235 / 0);
}

.ring-offset-blue-600\/10 {
  --tw-ring-offset-color: rgb(37 99 235 / 0.1);
}

.ring-offset-blue-600\/100 {
  --tw-ring-offset-color: rgb(37 99 235 / 1);
}

.ring-offset-blue-600\/15 {
  --tw-ring-offset-color: rgb(37 99 235 / 0.15);
}

.ring-offset-blue-600\/20 {
  --tw-ring-offset-color: rgb(37 99 235 / 0.2);
}

.ring-offset-blue-600\/25 {
  --tw-ring-offset-color: rgb(37 99 235 / 0.25);
}

.ring-offset-blue-600\/30 {
  --tw-ring-offset-color: rgb(37 99 235 / 0.3);
}

.ring-offset-blue-600\/35 {
  --tw-ring-offset-color: rgb(37 99 235 / 0.35);
}

.ring-offset-blue-600\/40 {
  --tw-ring-offset-color: rgb(37 99 235 / 0.4);
}

.ring-offset-blue-600\/45 {
  --tw-ring-offset-color: rgb(37 99 235 / 0.45);
}

.ring-offset-blue-600\/5 {
  --tw-ring-offset-color: rgb(37 99 235 / 0.05);
}

.ring-offset-blue-600\/50 {
  --tw-ring-offset-color: rgb(37 99 235 / 0.5);
}

.ring-offset-blue-600\/55 {
  --tw-ring-offset-color: rgb(37 99 235 / 0.55);
}

.ring-offset-blue-600\/60 {
  --tw-ring-offset-color: rgb(37 99 235 / 0.6);
}

.ring-offset-blue-600\/65 {
  --tw-ring-offset-color: rgb(37 99 235 / 0.65);
}

.ring-offset-blue-600\/70 {
  --tw-ring-offset-color: rgb(37 99 235 / 0.7);
}

.ring-offset-blue-600\/75 {
  --tw-ring-offset-color: rgb(37 99 235 / 0.75);
}

.ring-offset-blue-600\/80 {
  --tw-ring-offset-color: rgb(37 99 235 / 0.8);
}

.ring-offset-blue-600\/85 {
  --tw-ring-offset-color: rgb(37 99 235 / 0.85);
}

.ring-offset-blue-600\/90 {
  --tw-ring-offset-color: rgb(37 99 235 / 0.9);
}

.ring-offset-blue-600\/95 {
  --tw-ring-offset-color: rgb(37 99 235 / 0.95);
}

.ring-offset-blue-700 {
  --tw-ring-offset-color: #1d4ed8;
}

.ring-offset-blue-700\/0 {
  --tw-ring-offset-color: rgb(29 78 216 / 0);
}

.ring-offset-blue-700\/10 {
  --tw-ring-offset-color: rgb(29 78 216 / 0.1);
}

.ring-offset-blue-700\/100 {
  --tw-ring-offset-color: rgb(29 78 216 / 1);
}

.ring-offset-blue-700\/15 {
  --tw-ring-offset-color: rgb(29 78 216 / 0.15);
}

.ring-offset-blue-700\/20 {
  --tw-ring-offset-color: rgb(29 78 216 / 0.2);
}

.ring-offset-blue-700\/25 {
  --tw-ring-offset-color: rgb(29 78 216 / 0.25);
}

.ring-offset-blue-700\/30 {
  --tw-ring-offset-color: rgb(29 78 216 / 0.3);
}

.ring-offset-blue-700\/35 {
  --tw-ring-offset-color: rgb(29 78 216 / 0.35);
}

.ring-offset-blue-700\/40 {
  --tw-ring-offset-color: rgb(29 78 216 / 0.4);
}

.ring-offset-blue-700\/45 {
  --tw-ring-offset-color: rgb(29 78 216 / 0.45);
}

.ring-offset-blue-700\/5 {
  --tw-ring-offset-color: rgb(29 78 216 / 0.05);
}

.ring-offset-blue-700\/50 {
  --tw-ring-offset-color: rgb(29 78 216 / 0.5);
}

.ring-offset-blue-700\/55 {
  --tw-ring-offset-color: rgb(29 78 216 / 0.55);
}

.ring-offset-blue-700\/60 {
  --tw-ring-offset-color: rgb(29 78 216 / 0.6);
}

.ring-offset-blue-700\/65 {
  --tw-ring-offset-color: rgb(29 78 216 / 0.65);
}

.ring-offset-blue-700\/70 {
  --tw-ring-offset-color: rgb(29 78 216 / 0.7);
}

.ring-offset-blue-700\/75 {
  --tw-ring-offset-color: rgb(29 78 216 / 0.75);
}

.ring-offset-blue-700\/80 {
  --tw-ring-offset-color: rgb(29 78 216 / 0.8);
}

.ring-offset-blue-700\/85 {
  --tw-ring-offset-color: rgb(29 78 216 / 0.85);
}

.ring-offset-blue-700\/90 {
  --tw-ring-offset-color: rgb(29 78 216 / 0.9);
}

.ring-offset-blue-700\/95 {
  --tw-ring-offset-color: rgb(29 78 216 / 0.95);
}

.ring-offset-blue-800 {
  --tw-ring-offset-color: #1e40af;
}

.ring-offset-blue-800\/0 {
  --tw-ring-offset-color: rgb(30 64 175 / 0);
}

.ring-offset-blue-800\/10 {
  --tw-ring-offset-color: rgb(30 64 175 / 0.1);
}

.ring-offset-blue-800\/100 {
  --tw-ring-offset-color: rgb(30 64 175 / 1);
}

.ring-offset-blue-800\/15 {
  --tw-ring-offset-color: rgb(30 64 175 / 0.15);
}

.ring-offset-blue-800\/20 {
  --tw-ring-offset-color: rgb(30 64 175 / 0.2);
}

.ring-offset-blue-800\/25 {
  --tw-ring-offset-color: rgb(30 64 175 / 0.25);
}

.ring-offset-blue-800\/30 {
  --tw-ring-offset-color: rgb(30 64 175 / 0.3);
}

.ring-offset-blue-800\/35 {
  --tw-ring-offset-color: rgb(30 64 175 / 0.35);
}

.ring-offset-blue-800\/40 {
  --tw-ring-offset-color: rgb(30 64 175 / 0.4);
}

.ring-offset-blue-800\/45 {
  --tw-ring-offset-color: rgb(30 64 175 / 0.45);
}

.ring-offset-blue-800\/5 {
  --tw-ring-offset-color: rgb(30 64 175 / 0.05);
}

.ring-offset-blue-800\/50 {
  --tw-ring-offset-color: rgb(30 64 175 / 0.5);
}

.ring-offset-blue-800\/55 {
  --tw-ring-offset-color: rgb(30 64 175 / 0.55);
}

.ring-offset-blue-800\/60 {
  --tw-ring-offset-color: rgb(30 64 175 / 0.6);
}

.ring-offset-blue-800\/65 {
  --tw-ring-offset-color: rgb(30 64 175 / 0.65);
}

.ring-offset-blue-800\/70 {
  --tw-ring-offset-color: rgb(30 64 175 / 0.7);
}

.ring-offset-blue-800\/75 {
  --tw-ring-offset-color: rgb(30 64 175 / 0.75);
}

.ring-offset-blue-800\/80 {
  --tw-ring-offset-color: rgb(30 64 175 / 0.8);
}

.ring-offset-blue-800\/85 {
  --tw-ring-offset-color: rgb(30 64 175 / 0.85);
}

.ring-offset-blue-800\/90 {
  --tw-ring-offset-color: rgb(30 64 175 / 0.9);
}

.ring-offset-blue-800\/95 {
  --tw-ring-offset-color: rgb(30 64 175 / 0.95);
}

.ring-offset-blue-900 {
  --tw-ring-offset-color: #1e3a8a;
}

.ring-offset-blue-900\/0 {
  --tw-ring-offset-color: rgb(30 58 138 / 0);
}

.ring-offset-blue-900\/10 {
  --tw-ring-offset-color: rgb(30 58 138 / 0.1);
}

.ring-offset-blue-900\/100 {
  --tw-ring-offset-color: rgb(30 58 138 / 1);
}

.ring-offset-blue-900\/15 {
  --tw-ring-offset-color: rgb(30 58 138 / 0.15);
}

.ring-offset-blue-900\/20 {
  --tw-ring-offset-color: rgb(30 58 138 / 0.2);
}

.ring-offset-blue-900\/25 {
  --tw-ring-offset-color: rgb(30 58 138 / 0.25);
}

.ring-offset-blue-900\/30 {
  --tw-ring-offset-color: rgb(30 58 138 / 0.3);
}

.ring-offset-blue-900\/35 {
  --tw-ring-offset-color: rgb(30 58 138 / 0.35);
}

.ring-offset-blue-900\/40 {
  --tw-ring-offset-color: rgb(30 58 138 / 0.4);
}

.ring-offset-blue-900\/45 {
  --tw-ring-offset-color: rgb(30 58 138 / 0.45);
}

.ring-offset-blue-900\/5 {
  --tw-ring-offset-color: rgb(30 58 138 / 0.05);
}

.ring-offset-blue-900\/50 {
  --tw-ring-offset-color: rgb(30 58 138 / 0.5);
}

.ring-offset-blue-900\/55 {
  --tw-ring-offset-color: rgb(30 58 138 / 0.55);
}

.ring-offset-blue-900\/60 {
  --tw-ring-offset-color: rgb(30 58 138 / 0.6);
}

.ring-offset-blue-900\/65 {
  --tw-ring-offset-color: rgb(30 58 138 / 0.65);
}

.ring-offset-blue-900\/70 {
  --tw-ring-offset-color: rgb(30 58 138 / 0.7);
}

.ring-offset-blue-900\/75 {
  --tw-ring-offset-color: rgb(30 58 138 / 0.75);
}

.ring-offset-blue-900\/80 {
  --tw-ring-offset-color: rgb(30 58 138 / 0.8);
}

.ring-offset-blue-900\/85 {
  --tw-ring-offset-color: rgb(30 58 138 / 0.85);
}

.ring-offset-blue-900\/90 {
  --tw-ring-offset-color: rgb(30 58 138 / 0.9);
}

.ring-offset-blue-900\/95 {
  --tw-ring-offset-color: rgb(30 58 138 / 0.95);
}

.ring-offset-blue-950 {
  --tw-ring-offset-color: #172554;
}

.ring-offset-blue-950\/0 {
  --tw-ring-offset-color: rgb(23 37 84 / 0);
}

.ring-offset-blue-950\/10 {
  --tw-ring-offset-color: rgb(23 37 84 / 0.1);
}

.ring-offset-blue-950\/100 {
  --tw-ring-offset-color: rgb(23 37 84 / 1);
}

.ring-offset-blue-950\/15 {
  --tw-ring-offset-color: rgb(23 37 84 / 0.15);
}

.ring-offset-blue-950\/20 {
  --tw-ring-offset-color: rgb(23 37 84 / 0.2);
}

.ring-offset-blue-950\/25 {
  --tw-ring-offset-color: rgb(23 37 84 / 0.25);
}

.ring-offset-blue-950\/30 {
  --tw-ring-offset-color: rgb(23 37 84 / 0.3);
}

.ring-offset-blue-950\/35 {
  --tw-ring-offset-color: rgb(23 37 84 / 0.35);
}

.ring-offset-blue-950\/40 {
  --tw-ring-offset-color: rgb(23 37 84 / 0.4);
}

.ring-offset-blue-950\/45 {
  --tw-ring-offset-color: rgb(23 37 84 / 0.45);
}

.ring-offset-blue-950\/5 {
  --tw-ring-offset-color: rgb(23 37 84 / 0.05);
}

.ring-offset-blue-950\/50 {
  --tw-ring-offset-color: rgb(23 37 84 / 0.5);
}

.ring-offset-blue-950\/55 {
  --tw-ring-offset-color: rgb(23 37 84 / 0.55);
}

.ring-offset-blue-950\/60 {
  --tw-ring-offset-color: rgb(23 37 84 / 0.6);
}

.ring-offset-blue-950\/65 {
  --tw-ring-offset-color: rgb(23 37 84 / 0.65);
}

.ring-offset-blue-950\/70 {
  --tw-ring-offset-color: rgb(23 37 84 / 0.7);
}

.ring-offset-blue-950\/75 {
  --tw-ring-offset-color: rgb(23 37 84 / 0.75);
}

.ring-offset-blue-950\/80 {
  --tw-ring-offset-color: rgb(23 37 84 / 0.8);
}

.ring-offset-blue-950\/85 {
  --tw-ring-offset-color: rgb(23 37 84 / 0.85);
}

.ring-offset-blue-950\/90 {
  --tw-ring-offset-color: rgb(23 37 84 / 0.9);
}

.ring-offset-blue-950\/95 {
  --tw-ring-offset-color: rgb(23 37 84 / 0.95);
}

.ring-offset-current {
  --tw-ring-offset-color: currentColor;
}

.ring-offset-eva-blue {
  --tw-ring-offset-color: #1A213E;
}

.ring-offset-eva-blue-appt {
  --tw-ring-offset-color: rgba(52, 137, 207);
}

.ring-offset-eva-blue-appt\/0 {
  --tw-ring-offset-color: rgba(52, 137, 207, 0);
}

.ring-offset-eva-blue-appt\/10 {
  --tw-ring-offset-color: rgba(52, 137, 207, 0.1);
}

.ring-offset-eva-blue-appt\/100 {
  --tw-ring-offset-color: rgba(52, 137, 207, 1);
}

.ring-offset-eva-blue-appt\/15 {
  --tw-ring-offset-color: rgba(52, 137, 207, 0.15);
}

.ring-offset-eva-blue-appt\/20 {
  --tw-ring-offset-color: rgba(52, 137, 207, 0.2);
}

.ring-offset-eva-blue-appt\/25 {
  --tw-ring-offset-color: rgba(52, 137, 207, 0.25);
}

.ring-offset-eva-blue-appt\/30 {
  --tw-ring-offset-color: rgba(52, 137, 207, 0.3);
}

.ring-offset-eva-blue-appt\/35 {
  --tw-ring-offset-color: rgba(52, 137, 207, 0.35);
}

.ring-offset-eva-blue-appt\/40 {
  --tw-ring-offset-color: rgba(52, 137, 207, 0.4);
}

.ring-offset-eva-blue-appt\/45 {
  --tw-ring-offset-color: rgba(52, 137, 207, 0.45);
}

.ring-offset-eva-blue-appt\/5 {
  --tw-ring-offset-color: rgba(52, 137, 207, 0.05);
}

.ring-offset-eva-blue-appt\/50 {
  --tw-ring-offset-color: rgba(52, 137, 207, 0.5);
}

.ring-offset-eva-blue-appt\/55 {
  --tw-ring-offset-color: rgba(52, 137, 207, 0.55);
}

.ring-offset-eva-blue-appt\/60 {
  --tw-ring-offset-color: rgba(52, 137, 207, 0.6);
}

.ring-offset-eva-blue-appt\/65 {
  --tw-ring-offset-color: rgba(52, 137, 207, 0.65);
}

.ring-offset-eva-blue-appt\/70 {
  --tw-ring-offset-color: rgba(52, 137, 207, 0.7);
}

.ring-offset-eva-blue-appt\/75 {
  --tw-ring-offset-color: rgba(52, 137, 207, 0.75);
}

.ring-offset-eva-blue-appt\/80 {
  --tw-ring-offset-color: rgba(52, 137, 207, 0.8);
}

.ring-offset-eva-blue-appt\/85 {
  --tw-ring-offset-color: rgba(52, 137, 207, 0.85);
}

.ring-offset-eva-blue-appt\/90 {
  --tw-ring-offset-color: rgba(52, 137, 207, 0.9);
}

.ring-offset-eva-blue-appt\/95 {
  --tw-ring-offset-color: rgba(52, 137, 207, 0.95);
}

.ring-offset-eva-blue-gray {
  --tw-ring-offset-color: #75798b;
}

.ring-offset-eva-blue-gray\/0 {
  --tw-ring-offset-color: rgb(117 121 139 / 0);
}

.ring-offset-eva-blue-gray\/10 {
  --tw-ring-offset-color: rgb(117 121 139 / 0.1);
}

.ring-offset-eva-blue-gray\/100 {
  --tw-ring-offset-color: rgb(117 121 139 / 1);
}

.ring-offset-eva-blue-gray\/15 {
  --tw-ring-offset-color: rgb(117 121 139 / 0.15);
}

.ring-offset-eva-blue-gray\/20 {
  --tw-ring-offset-color: rgb(117 121 139 / 0.2);
}

.ring-offset-eva-blue-gray\/25 {
  --tw-ring-offset-color: rgb(117 121 139 / 0.25);
}

.ring-offset-eva-blue-gray\/30 {
  --tw-ring-offset-color: rgb(117 121 139 / 0.3);
}

.ring-offset-eva-blue-gray\/35 {
  --tw-ring-offset-color: rgb(117 121 139 / 0.35);
}

.ring-offset-eva-blue-gray\/40 {
  --tw-ring-offset-color: rgb(117 121 139 / 0.4);
}

.ring-offset-eva-blue-gray\/45 {
  --tw-ring-offset-color: rgb(117 121 139 / 0.45);
}

.ring-offset-eva-blue-gray\/5 {
  --tw-ring-offset-color: rgb(117 121 139 / 0.05);
}

.ring-offset-eva-blue-gray\/50 {
  --tw-ring-offset-color: rgb(117 121 139 / 0.5);
}

.ring-offset-eva-blue-gray\/55 {
  --tw-ring-offset-color: rgb(117 121 139 / 0.55);
}

.ring-offset-eva-blue-gray\/60 {
  --tw-ring-offset-color: rgb(117 121 139 / 0.6);
}

.ring-offset-eva-blue-gray\/65 {
  --tw-ring-offset-color: rgb(117 121 139 / 0.65);
}

.ring-offset-eva-blue-gray\/70 {
  --tw-ring-offset-color: rgb(117 121 139 / 0.7);
}

.ring-offset-eva-blue-gray\/75 {
  --tw-ring-offset-color: rgb(117 121 139 / 0.75);
}

.ring-offset-eva-blue-gray\/80 {
  --tw-ring-offset-color: rgb(117 121 139 / 0.8);
}

.ring-offset-eva-blue-gray\/85 {
  --tw-ring-offset-color: rgb(117 121 139 / 0.85);
}

.ring-offset-eva-blue-gray\/90 {
  --tw-ring-offset-color: rgb(117 121 139 / 0.9);
}

.ring-offset-eva-blue-gray\/95 {
  --tw-ring-offset-color: rgb(117 121 139 / 0.95);
}

.ring-offset-eva-blue-hv {
  --tw-ring-offset-color: #0f121f;
}

.ring-offset-eva-blue-hv\/0 {
  --tw-ring-offset-color: rgb(15 18 31 / 0);
}

.ring-offset-eva-blue-hv\/10 {
  --tw-ring-offset-color: rgb(15 18 31 / 0.1);
}

.ring-offset-eva-blue-hv\/100 {
  --tw-ring-offset-color: rgb(15 18 31 / 1);
}

.ring-offset-eva-blue-hv\/15 {
  --tw-ring-offset-color: rgb(15 18 31 / 0.15);
}

.ring-offset-eva-blue-hv\/20 {
  --tw-ring-offset-color: rgb(15 18 31 / 0.2);
}

.ring-offset-eva-blue-hv\/25 {
  --tw-ring-offset-color: rgb(15 18 31 / 0.25);
}

.ring-offset-eva-blue-hv\/30 {
  --tw-ring-offset-color: rgb(15 18 31 / 0.3);
}

.ring-offset-eva-blue-hv\/35 {
  --tw-ring-offset-color: rgb(15 18 31 / 0.35);
}

.ring-offset-eva-blue-hv\/40 {
  --tw-ring-offset-color: rgb(15 18 31 / 0.4);
}

.ring-offset-eva-blue-hv\/45 {
  --tw-ring-offset-color: rgb(15 18 31 / 0.45);
}

.ring-offset-eva-blue-hv\/5 {
  --tw-ring-offset-color: rgb(15 18 31 / 0.05);
}

.ring-offset-eva-blue-hv\/50 {
  --tw-ring-offset-color: rgb(15 18 31 / 0.5);
}

.ring-offset-eva-blue-hv\/55 {
  --tw-ring-offset-color: rgb(15 18 31 / 0.55);
}

.ring-offset-eva-blue-hv\/60 {
  --tw-ring-offset-color: rgb(15 18 31 / 0.6);
}

.ring-offset-eva-blue-hv\/65 {
  --tw-ring-offset-color: rgb(15 18 31 / 0.65);
}

.ring-offset-eva-blue-hv\/70 {
  --tw-ring-offset-color: rgb(15 18 31 / 0.7);
}

.ring-offset-eva-blue-hv\/75 {
  --tw-ring-offset-color: rgb(15 18 31 / 0.75);
}

.ring-offset-eva-blue-hv\/80 {
  --tw-ring-offset-color: rgb(15 18 31 / 0.8);
}

.ring-offset-eva-blue-hv\/85 {
  --tw-ring-offset-color: rgb(15 18 31 / 0.85);
}

.ring-offset-eva-blue-hv\/90 {
  --tw-ring-offset-color: rgb(15 18 31 / 0.9);
}

.ring-offset-eva-blue-hv\/95 {
  --tw-ring-offset-color: rgb(15 18 31 / 0.95);
}

.ring-offset-eva-blue-light {
  --tw-ring-offset-color: #303851;
}

.ring-offset-eva-blue-light-hv {
  --tw-ring-offset-color: rgba(17,20,30,.3);
}

.ring-offset-eva-blue-light-hv\/0 {
  --tw-ring-offset-color: rgba(17, 20, 30, 0);
}

.ring-offset-eva-blue-light-hv\/10 {
  --tw-ring-offset-color: rgba(17, 20, 30, 0.1);
}

.ring-offset-eva-blue-light-hv\/100 {
  --tw-ring-offset-color: rgba(17, 20, 30, 1);
}

.ring-offset-eva-blue-light-hv\/15 {
  --tw-ring-offset-color: rgba(17, 20, 30, 0.15);
}

.ring-offset-eva-blue-light-hv\/20 {
  --tw-ring-offset-color: rgba(17, 20, 30, 0.2);
}

.ring-offset-eva-blue-light-hv\/25 {
  --tw-ring-offset-color: rgba(17, 20, 30, 0.25);
}

.ring-offset-eva-blue-light-hv\/30 {
  --tw-ring-offset-color: rgba(17, 20, 30, 0.3);
}

.ring-offset-eva-blue-light-hv\/35 {
  --tw-ring-offset-color: rgba(17, 20, 30, 0.35);
}

.ring-offset-eva-blue-light-hv\/40 {
  --tw-ring-offset-color: rgba(17, 20, 30, 0.4);
}

.ring-offset-eva-blue-light-hv\/45 {
  --tw-ring-offset-color: rgba(17, 20, 30, 0.45);
}

.ring-offset-eva-blue-light-hv\/5 {
  --tw-ring-offset-color: rgba(17, 20, 30, 0.05);
}

.ring-offset-eva-blue-light-hv\/50 {
  --tw-ring-offset-color: rgba(17, 20, 30, 0.5);
}

.ring-offset-eva-blue-light-hv\/55 {
  --tw-ring-offset-color: rgba(17, 20, 30, 0.55);
}

.ring-offset-eva-blue-light-hv\/60 {
  --tw-ring-offset-color: rgba(17, 20, 30, 0.6);
}

.ring-offset-eva-blue-light-hv\/65 {
  --tw-ring-offset-color: rgba(17, 20, 30, 0.65);
}

.ring-offset-eva-blue-light-hv\/70 {
  --tw-ring-offset-color: rgba(17, 20, 30, 0.7);
}

.ring-offset-eva-blue-light-hv\/75 {
  --tw-ring-offset-color: rgba(17, 20, 30, 0.75);
}

.ring-offset-eva-blue-light-hv\/80 {
  --tw-ring-offset-color: rgba(17, 20, 30, 0.8);
}

.ring-offset-eva-blue-light-hv\/85 {
  --tw-ring-offset-color: rgba(17, 20, 30, 0.85);
}

.ring-offset-eva-blue-light-hv\/90 {
  --tw-ring-offset-color: rgba(17, 20, 30, 0.9);
}

.ring-offset-eva-blue-light-hv\/95 {
  --tw-ring-offset-color: rgba(17, 20, 30, 0.95);
}

.ring-offset-eva-blue-light\/0 {
  --tw-ring-offset-color: rgb(48 56 81 / 0);
}

.ring-offset-eva-blue-light\/10 {
  --tw-ring-offset-color: rgb(48 56 81 / 0.1);
}

.ring-offset-eva-blue-light\/100 {
  --tw-ring-offset-color: rgb(48 56 81 / 1);
}

.ring-offset-eva-blue-light\/15 {
  --tw-ring-offset-color: rgb(48 56 81 / 0.15);
}

.ring-offset-eva-blue-light\/20 {
  --tw-ring-offset-color: rgb(48 56 81 / 0.2);
}

.ring-offset-eva-blue-light\/25 {
  --tw-ring-offset-color: rgb(48 56 81 / 0.25);
}

.ring-offset-eva-blue-light\/30 {
  --tw-ring-offset-color: rgb(48 56 81 / 0.3);
}

.ring-offset-eva-blue-light\/35 {
  --tw-ring-offset-color: rgb(48 56 81 / 0.35);
}

.ring-offset-eva-blue-light\/40 {
  --tw-ring-offset-color: rgb(48 56 81 / 0.4);
}

.ring-offset-eva-blue-light\/45 {
  --tw-ring-offset-color: rgb(48 56 81 / 0.45);
}

.ring-offset-eva-blue-light\/5 {
  --tw-ring-offset-color: rgb(48 56 81 / 0.05);
}

.ring-offset-eva-blue-light\/50 {
  --tw-ring-offset-color: rgb(48 56 81 / 0.5);
}

.ring-offset-eva-blue-light\/55 {
  --tw-ring-offset-color: rgb(48 56 81 / 0.55);
}

.ring-offset-eva-blue-light\/60 {
  --tw-ring-offset-color: rgb(48 56 81 / 0.6);
}

.ring-offset-eva-blue-light\/65 {
  --tw-ring-offset-color: rgb(48 56 81 / 0.65);
}

.ring-offset-eva-blue-light\/70 {
  --tw-ring-offset-color: rgb(48 56 81 / 0.7);
}

.ring-offset-eva-blue-light\/75 {
  --tw-ring-offset-color: rgb(48 56 81 / 0.75);
}

.ring-offset-eva-blue-light\/80 {
  --tw-ring-offset-color: rgb(48 56 81 / 0.8);
}

.ring-offset-eva-blue-light\/85 {
  --tw-ring-offset-color: rgb(48 56 81 / 0.85);
}

.ring-offset-eva-blue-light\/90 {
  --tw-ring-offset-color: rgb(48 56 81 / 0.9);
}

.ring-offset-eva-blue-light\/95 {
  --tw-ring-offset-color: rgb(48 56 81 / 0.95);
}

.ring-offset-eva-blue\/0 {
  --tw-ring-offset-color: rgb(26 33 62 / 0);
}

.ring-offset-eva-blue\/10 {
  --tw-ring-offset-color: rgb(26 33 62 / 0.1);
}

.ring-offset-eva-blue\/100 {
  --tw-ring-offset-color: rgb(26 33 62 / 1);
}

.ring-offset-eva-blue\/15 {
  --tw-ring-offset-color: rgb(26 33 62 / 0.15);
}

.ring-offset-eva-blue\/20 {
  --tw-ring-offset-color: rgb(26 33 62 / 0.2);
}

.ring-offset-eva-blue\/25 {
  --tw-ring-offset-color: rgb(26 33 62 / 0.25);
}

.ring-offset-eva-blue\/30 {
  --tw-ring-offset-color: rgb(26 33 62 / 0.3);
}

.ring-offset-eva-blue\/35 {
  --tw-ring-offset-color: rgb(26 33 62 / 0.35);
}

.ring-offset-eva-blue\/40 {
  --tw-ring-offset-color: rgb(26 33 62 / 0.4);
}

.ring-offset-eva-blue\/45 {
  --tw-ring-offset-color: rgb(26 33 62 / 0.45);
}

.ring-offset-eva-blue\/5 {
  --tw-ring-offset-color: rgb(26 33 62 / 0.05);
}

.ring-offset-eva-blue\/50 {
  --tw-ring-offset-color: rgb(26 33 62 / 0.5);
}

.ring-offset-eva-blue\/55 {
  --tw-ring-offset-color: rgb(26 33 62 / 0.55);
}

.ring-offset-eva-blue\/60 {
  --tw-ring-offset-color: rgb(26 33 62 / 0.6);
}

.ring-offset-eva-blue\/65 {
  --tw-ring-offset-color: rgb(26 33 62 / 0.65);
}

.ring-offset-eva-blue\/70 {
  --tw-ring-offset-color: rgb(26 33 62 / 0.7);
}

.ring-offset-eva-blue\/75 {
  --tw-ring-offset-color: rgb(26 33 62 / 0.75);
}

.ring-offset-eva-blue\/80 {
  --tw-ring-offset-color: rgb(26 33 62 / 0.8);
}

.ring-offset-eva-blue\/85 {
  --tw-ring-offset-color: rgb(26 33 62 / 0.85);
}

.ring-offset-eva-blue\/90 {
  --tw-ring-offset-color: rgb(26 33 62 / 0.9);
}

.ring-offset-eva-blue\/95 {
  --tw-ring-offset-color: rgb(26 33 62 / 0.95);
}

.ring-offset-eva-brown-appt {
  --tw-ring-offset-color: rgba(99, 93, 94, 1);
}

.ring-offset-eva-brown-appt\/0 {
  --tw-ring-offset-color: rgba(99, 93, 94, 0);
}

.ring-offset-eva-brown-appt\/10 {
  --tw-ring-offset-color: rgba(99, 93, 94, 0.1);
}

.ring-offset-eva-brown-appt\/100 {
  --tw-ring-offset-color: rgba(99, 93, 94, 1);
}

.ring-offset-eva-brown-appt\/15 {
  --tw-ring-offset-color: rgba(99, 93, 94, 0.15);
}

.ring-offset-eva-brown-appt\/20 {
  --tw-ring-offset-color: rgba(99, 93, 94, 0.2);
}

.ring-offset-eva-brown-appt\/25 {
  --tw-ring-offset-color: rgba(99, 93, 94, 0.25);
}

.ring-offset-eva-brown-appt\/30 {
  --tw-ring-offset-color: rgba(99, 93, 94, 0.3);
}

.ring-offset-eva-brown-appt\/35 {
  --tw-ring-offset-color: rgba(99, 93, 94, 0.35);
}

.ring-offset-eva-brown-appt\/40 {
  --tw-ring-offset-color: rgba(99, 93, 94, 0.4);
}

.ring-offset-eva-brown-appt\/45 {
  --tw-ring-offset-color: rgba(99, 93, 94, 0.45);
}

.ring-offset-eva-brown-appt\/5 {
  --tw-ring-offset-color: rgba(99, 93, 94, 0.05);
}

.ring-offset-eva-brown-appt\/50 {
  --tw-ring-offset-color: rgba(99, 93, 94, 0.5);
}

.ring-offset-eva-brown-appt\/55 {
  --tw-ring-offset-color: rgba(99, 93, 94, 0.55);
}

.ring-offset-eva-brown-appt\/60 {
  --tw-ring-offset-color: rgba(99, 93, 94, 0.6);
}

.ring-offset-eva-brown-appt\/65 {
  --tw-ring-offset-color: rgba(99, 93, 94, 0.65);
}

.ring-offset-eva-brown-appt\/70 {
  --tw-ring-offset-color: rgba(99, 93, 94, 0.7);
}

.ring-offset-eva-brown-appt\/75 {
  --tw-ring-offset-color: rgba(99, 93, 94, 0.75);
}

.ring-offset-eva-brown-appt\/80 {
  --tw-ring-offset-color: rgba(99, 93, 94, 0.8);
}

.ring-offset-eva-brown-appt\/85 {
  --tw-ring-offset-color: rgba(99, 93, 94, 0.85);
}

.ring-offset-eva-brown-appt\/90 {
  --tw-ring-offset-color: rgba(99, 93, 94, 0.9);
}

.ring-offset-eva-brown-appt\/95 {
  --tw-ring-offset-color: rgba(99, 93, 94, 0.95);
}

.ring-offset-eva-dark-green-appt {
  --tw-ring-offset-color: rgba(102, 188, 130, 1);
}

.ring-offset-eva-dark-green-appt\/0 {
  --tw-ring-offset-color: rgba(102, 188, 130, 0);
}

.ring-offset-eva-dark-green-appt\/10 {
  --tw-ring-offset-color: rgba(102, 188, 130, 0.1);
}

.ring-offset-eva-dark-green-appt\/100 {
  --tw-ring-offset-color: rgba(102, 188, 130, 1);
}

.ring-offset-eva-dark-green-appt\/15 {
  --tw-ring-offset-color: rgba(102, 188, 130, 0.15);
}

.ring-offset-eva-dark-green-appt\/20 {
  --tw-ring-offset-color: rgba(102, 188, 130, 0.2);
}

.ring-offset-eva-dark-green-appt\/25 {
  --tw-ring-offset-color: rgba(102, 188, 130, 0.25);
}

.ring-offset-eva-dark-green-appt\/30 {
  --tw-ring-offset-color: rgba(102, 188, 130, 0.3);
}

.ring-offset-eva-dark-green-appt\/35 {
  --tw-ring-offset-color: rgba(102, 188, 130, 0.35);
}

.ring-offset-eva-dark-green-appt\/40 {
  --tw-ring-offset-color: rgba(102, 188, 130, 0.4);
}

.ring-offset-eva-dark-green-appt\/45 {
  --tw-ring-offset-color: rgba(102, 188, 130, 0.45);
}

.ring-offset-eva-dark-green-appt\/5 {
  --tw-ring-offset-color: rgba(102, 188, 130, 0.05);
}

.ring-offset-eva-dark-green-appt\/50 {
  --tw-ring-offset-color: rgba(102, 188, 130, 0.5);
}

.ring-offset-eva-dark-green-appt\/55 {
  --tw-ring-offset-color: rgba(102, 188, 130, 0.55);
}

.ring-offset-eva-dark-green-appt\/60 {
  --tw-ring-offset-color: rgba(102, 188, 130, 0.6);
}

.ring-offset-eva-dark-green-appt\/65 {
  --tw-ring-offset-color: rgba(102, 188, 130, 0.65);
}

.ring-offset-eva-dark-green-appt\/70 {
  --tw-ring-offset-color: rgba(102, 188, 130, 0.7);
}

.ring-offset-eva-dark-green-appt\/75 {
  --tw-ring-offset-color: rgba(102, 188, 130, 0.75);
}

.ring-offset-eva-dark-green-appt\/80 {
  --tw-ring-offset-color: rgba(102, 188, 130, 0.8);
}

.ring-offset-eva-dark-green-appt\/85 {
  --tw-ring-offset-color: rgba(102, 188, 130, 0.85);
}

.ring-offset-eva-dark-green-appt\/90 {
  --tw-ring-offset-color: rgba(102, 188, 130, 0.9);
}

.ring-offset-eva-dark-green-appt\/95 {
  --tw-ring-offset-color: rgba(102, 188, 130, 0.95);
}

.ring-offset-eva-dark-red-appt {
  --tw-ring-offset-color: rgba(198, 102, 94, 1);
}

.ring-offset-eva-dark-red-appt\/0 {
  --tw-ring-offset-color: rgba(198, 102, 94, 0);
}

.ring-offset-eva-dark-red-appt\/10 {
  --tw-ring-offset-color: rgba(198, 102, 94, 0.1);
}

.ring-offset-eva-dark-red-appt\/100 {
  --tw-ring-offset-color: rgba(198, 102, 94, 1);
}

.ring-offset-eva-dark-red-appt\/15 {
  --tw-ring-offset-color: rgba(198, 102, 94, 0.15);
}

.ring-offset-eva-dark-red-appt\/20 {
  --tw-ring-offset-color: rgba(198, 102, 94, 0.2);
}

.ring-offset-eva-dark-red-appt\/25 {
  --tw-ring-offset-color: rgba(198, 102, 94, 0.25);
}

.ring-offset-eva-dark-red-appt\/30 {
  --tw-ring-offset-color: rgba(198, 102, 94, 0.3);
}

.ring-offset-eva-dark-red-appt\/35 {
  --tw-ring-offset-color: rgba(198, 102, 94, 0.35);
}

.ring-offset-eva-dark-red-appt\/40 {
  --tw-ring-offset-color: rgba(198, 102, 94, 0.4);
}

.ring-offset-eva-dark-red-appt\/45 {
  --tw-ring-offset-color: rgba(198, 102, 94, 0.45);
}

.ring-offset-eva-dark-red-appt\/5 {
  --tw-ring-offset-color: rgba(198, 102, 94, 0.05);
}

.ring-offset-eva-dark-red-appt\/50 {
  --tw-ring-offset-color: rgba(198, 102, 94, 0.5);
}

.ring-offset-eva-dark-red-appt\/55 {
  --tw-ring-offset-color: rgba(198, 102, 94, 0.55);
}

.ring-offset-eva-dark-red-appt\/60 {
  --tw-ring-offset-color: rgba(198, 102, 94, 0.6);
}

.ring-offset-eva-dark-red-appt\/65 {
  --tw-ring-offset-color: rgba(198, 102, 94, 0.65);
}

.ring-offset-eva-dark-red-appt\/70 {
  --tw-ring-offset-color: rgba(198, 102, 94, 0.7);
}

.ring-offset-eva-dark-red-appt\/75 {
  --tw-ring-offset-color: rgba(198, 102, 94, 0.75);
}

.ring-offset-eva-dark-red-appt\/80 {
  --tw-ring-offset-color: rgba(198, 102, 94, 0.8);
}

.ring-offset-eva-dark-red-appt\/85 {
  --tw-ring-offset-color: rgba(198, 102, 94, 0.85);
}

.ring-offset-eva-dark-red-appt\/90 {
  --tw-ring-offset-color: rgba(198, 102, 94, 0.9);
}

.ring-offset-eva-dark-red-appt\/95 {
  --tw-ring-offset-color: rgba(198, 102, 94, 0.95);
}

.ring-offset-eva-green {
  --tw-ring-offset-color: #49B5A8;
}

.ring-offset-eva-green-appt {
  --tw-ring-offset-color: rgba(128, 215, 109);
}

.ring-offset-eva-green-appt\/0 {
  --tw-ring-offset-color: rgba(128, 215, 109, 0);
}

.ring-offset-eva-green-appt\/10 {
  --tw-ring-offset-color: rgba(128, 215, 109, 0.1);
}

.ring-offset-eva-green-appt\/100 {
  --tw-ring-offset-color: rgba(128, 215, 109, 1);
}

.ring-offset-eva-green-appt\/15 {
  --tw-ring-offset-color: rgba(128, 215, 109, 0.15);
}

.ring-offset-eva-green-appt\/20 {
  --tw-ring-offset-color: rgba(128, 215, 109, 0.2);
}

.ring-offset-eva-green-appt\/25 {
  --tw-ring-offset-color: rgba(128, 215, 109, 0.25);
}

.ring-offset-eva-green-appt\/30 {
  --tw-ring-offset-color: rgba(128, 215, 109, 0.3);
}

.ring-offset-eva-green-appt\/35 {
  --tw-ring-offset-color: rgba(128, 215, 109, 0.35);
}

.ring-offset-eva-green-appt\/40 {
  --tw-ring-offset-color: rgba(128, 215, 109, 0.4);
}

.ring-offset-eva-green-appt\/45 {
  --tw-ring-offset-color: rgba(128, 215, 109, 0.45);
}

.ring-offset-eva-green-appt\/5 {
  --tw-ring-offset-color: rgba(128, 215, 109, 0.05);
}

.ring-offset-eva-green-appt\/50 {
  --tw-ring-offset-color: rgba(128, 215, 109, 0.5);
}

.ring-offset-eva-green-appt\/55 {
  --tw-ring-offset-color: rgba(128, 215, 109, 0.55);
}

.ring-offset-eva-green-appt\/60 {
  --tw-ring-offset-color: rgba(128, 215, 109, 0.6);
}

.ring-offset-eva-green-appt\/65 {
  --tw-ring-offset-color: rgba(128, 215, 109, 0.65);
}

.ring-offset-eva-green-appt\/70 {
  --tw-ring-offset-color: rgba(128, 215, 109, 0.7);
}

.ring-offset-eva-green-appt\/75 {
  --tw-ring-offset-color: rgba(128, 215, 109, 0.75);
}

.ring-offset-eva-green-appt\/80 {
  --tw-ring-offset-color: rgba(128, 215, 109, 0.8);
}

.ring-offset-eva-green-appt\/85 {
  --tw-ring-offset-color: rgba(128, 215, 109, 0.85);
}

.ring-offset-eva-green-appt\/90 {
  --tw-ring-offset-color: rgba(128, 215, 109, 0.9);
}

.ring-offset-eva-green-appt\/95 {
  --tw-ring-offset-color: rgba(128, 215, 109, 0.95);
}

.ring-offset-eva-green-brown-appt {
  --tw-ring-offset-color: rgba(197, 191, 140, 1);
}

.ring-offset-eva-green-brown-appt\/0 {
  --tw-ring-offset-color: rgba(197, 191, 140, 0);
}

.ring-offset-eva-green-brown-appt\/10 {
  --tw-ring-offset-color: rgba(197, 191, 140, 0.1);
}

.ring-offset-eva-green-brown-appt\/100 {
  --tw-ring-offset-color: rgba(197, 191, 140, 1);
}

.ring-offset-eva-green-brown-appt\/15 {
  --tw-ring-offset-color: rgba(197, 191, 140, 0.15);
}

.ring-offset-eva-green-brown-appt\/20 {
  --tw-ring-offset-color: rgba(197, 191, 140, 0.2);
}

.ring-offset-eva-green-brown-appt\/25 {
  --tw-ring-offset-color: rgba(197, 191, 140, 0.25);
}

.ring-offset-eva-green-brown-appt\/30 {
  --tw-ring-offset-color: rgba(197, 191, 140, 0.3);
}

.ring-offset-eva-green-brown-appt\/35 {
  --tw-ring-offset-color: rgba(197, 191, 140, 0.35);
}

.ring-offset-eva-green-brown-appt\/40 {
  --tw-ring-offset-color: rgba(197, 191, 140, 0.4);
}

.ring-offset-eva-green-brown-appt\/45 {
  --tw-ring-offset-color: rgba(197, 191, 140, 0.45);
}

.ring-offset-eva-green-brown-appt\/5 {
  --tw-ring-offset-color: rgba(197, 191, 140, 0.05);
}

.ring-offset-eva-green-brown-appt\/50 {
  --tw-ring-offset-color: rgba(197, 191, 140, 0.5);
}

.ring-offset-eva-green-brown-appt\/55 {
  --tw-ring-offset-color: rgba(197, 191, 140, 0.55);
}

.ring-offset-eva-green-brown-appt\/60 {
  --tw-ring-offset-color: rgba(197, 191, 140, 0.6);
}

.ring-offset-eva-green-brown-appt\/65 {
  --tw-ring-offset-color: rgba(197, 191, 140, 0.65);
}

.ring-offset-eva-green-brown-appt\/70 {
  --tw-ring-offset-color: rgba(197, 191, 140, 0.7);
}

.ring-offset-eva-green-brown-appt\/75 {
  --tw-ring-offset-color: rgba(197, 191, 140, 0.75);
}

.ring-offset-eva-green-brown-appt\/80 {
  --tw-ring-offset-color: rgba(197, 191, 140, 0.8);
}

.ring-offset-eva-green-brown-appt\/85 {
  --tw-ring-offset-color: rgba(197, 191, 140, 0.85);
}

.ring-offset-eva-green-brown-appt\/90 {
  --tw-ring-offset-color: rgba(197, 191, 140, 0.9);
}

.ring-offset-eva-green-brown-appt\/95 {
  --tw-ring-offset-color: rgba(197, 191, 140, 0.95);
}

.ring-offset-eva-green-hv {
  --tw-ring-offset-color: #3f9c90;
}

.ring-offset-eva-green-hv\/0 {
  --tw-ring-offset-color: rgb(63 156 144 / 0);
}

.ring-offset-eva-green-hv\/10 {
  --tw-ring-offset-color: rgb(63 156 144 / 0.1);
}

.ring-offset-eva-green-hv\/100 {
  --tw-ring-offset-color: rgb(63 156 144 / 1);
}

.ring-offset-eva-green-hv\/15 {
  --tw-ring-offset-color: rgb(63 156 144 / 0.15);
}

.ring-offset-eva-green-hv\/20 {
  --tw-ring-offset-color: rgb(63 156 144 / 0.2);
}

.ring-offset-eva-green-hv\/25 {
  --tw-ring-offset-color: rgb(63 156 144 / 0.25);
}

.ring-offset-eva-green-hv\/30 {
  --tw-ring-offset-color: rgb(63 156 144 / 0.3);
}

.ring-offset-eva-green-hv\/35 {
  --tw-ring-offset-color: rgb(63 156 144 / 0.35);
}

.ring-offset-eva-green-hv\/40 {
  --tw-ring-offset-color: rgb(63 156 144 / 0.4);
}

.ring-offset-eva-green-hv\/45 {
  --tw-ring-offset-color: rgb(63 156 144 / 0.45);
}

.ring-offset-eva-green-hv\/5 {
  --tw-ring-offset-color: rgb(63 156 144 / 0.05);
}

.ring-offset-eva-green-hv\/50 {
  --tw-ring-offset-color: rgb(63 156 144 / 0.5);
}

.ring-offset-eva-green-hv\/55 {
  --tw-ring-offset-color: rgb(63 156 144 / 0.55);
}

.ring-offset-eva-green-hv\/60 {
  --tw-ring-offset-color: rgb(63 156 144 / 0.6);
}

.ring-offset-eva-green-hv\/65 {
  --tw-ring-offset-color: rgb(63 156 144 / 0.65);
}

.ring-offset-eva-green-hv\/70 {
  --tw-ring-offset-color: rgb(63 156 144 / 0.7);
}

.ring-offset-eva-green-hv\/75 {
  --tw-ring-offset-color: rgb(63 156 144 / 0.75);
}

.ring-offset-eva-green-hv\/80 {
  --tw-ring-offset-color: rgb(63 156 144 / 0.8);
}

.ring-offset-eva-green-hv\/85 {
  --tw-ring-offset-color: rgb(63 156 144 / 0.85);
}

.ring-offset-eva-green-hv\/90 {
  --tw-ring-offset-color: rgb(63 156 144 / 0.9);
}

.ring-offset-eva-green-hv\/95 {
  --tw-ring-offset-color: rgb(63 156 144 / 0.95);
}

.ring-offset-eva-green\/0 {
  --tw-ring-offset-color: rgb(73 181 168 / 0);
}

.ring-offset-eva-green\/10 {
  --tw-ring-offset-color: rgb(73 181 168 / 0.1);
}

.ring-offset-eva-green\/100 {
  --tw-ring-offset-color: rgb(73 181 168 / 1);
}

.ring-offset-eva-green\/15 {
  --tw-ring-offset-color: rgb(73 181 168 / 0.15);
}

.ring-offset-eva-green\/20 {
  --tw-ring-offset-color: rgb(73 181 168 / 0.2);
}

.ring-offset-eva-green\/25 {
  --tw-ring-offset-color: rgb(73 181 168 / 0.25);
}

.ring-offset-eva-green\/30 {
  --tw-ring-offset-color: rgb(73 181 168 / 0.3);
}

.ring-offset-eva-green\/35 {
  --tw-ring-offset-color: rgb(73 181 168 / 0.35);
}

.ring-offset-eva-green\/40 {
  --tw-ring-offset-color: rgb(73 181 168 / 0.4);
}

.ring-offset-eva-green\/45 {
  --tw-ring-offset-color: rgb(73 181 168 / 0.45);
}

.ring-offset-eva-green\/5 {
  --tw-ring-offset-color: rgb(73 181 168 / 0.05);
}

.ring-offset-eva-green\/50 {
  --tw-ring-offset-color: rgb(73 181 168 / 0.5);
}

.ring-offset-eva-green\/55 {
  --tw-ring-offset-color: rgb(73 181 168 / 0.55);
}

.ring-offset-eva-green\/60 {
  --tw-ring-offset-color: rgb(73 181 168 / 0.6);
}

.ring-offset-eva-green\/65 {
  --tw-ring-offset-color: rgb(73 181 168 / 0.65);
}

.ring-offset-eva-green\/70 {
  --tw-ring-offset-color: rgb(73 181 168 / 0.7);
}

.ring-offset-eva-green\/75 {
  --tw-ring-offset-color: rgb(73 181 168 / 0.75);
}

.ring-offset-eva-green\/80 {
  --tw-ring-offset-color: rgb(73 181 168 / 0.8);
}

.ring-offset-eva-green\/85 {
  --tw-ring-offset-color: rgb(73 181 168 / 0.85);
}

.ring-offset-eva-green\/90 {
  --tw-ring-offset-color: rgb(73 181 168 / 0.9);
}

.ring-offset-eva-green\/95 {
  --tw-ring-offset-color: rgb(73 181 168 / 0.95);
}

.ring-offset-eva-lavender-appt {
  --tw-ring-offset-color: rgba(169, 124, 165, 1);
}

.ring-offset-eva-lavender-appt\/0 {
  --tw-ring-offset-color: rgba(169, 124, 165, 0);
}

.ring-offset-eva-lavender-appt\/10 {
  --tw-ring-offset-color: rgba(169, 124, 165, 0.1);
}

.ring-offset-eva-lavender-appt\/100 {
  --tw-ring-offset-color: rgba(169, 124, 165, 1);
}

.ring-offset-eva-lavender-appt\/15 {
  --tw-ring-offset-color: rgba(169, 124, 165, 0.15);
}

.ring-offset-eva-lavender-appt\/20 {
  --tw-ring-offset-color: rgba(169, 124, 165, 0.2);
}

.ring-offset-eva-lavender-appt\/25 {
  --tw-ring-offset-color: rgba(169, 124, 165, 0.25);
}

.ring-offset-eva-lavender-appt\/30 {
  --tw-ring-offset-color: rgba(169, 124, 165, 0.3);
}

.ring-offset-eva-lavender-appt\/35 {
  --tw-ring-offset-color: rgba(169, 124, 165, 0.35);
}

.ring-offset-eva-lavender-appt\/40 {
  --tw-ring-offset-color: rgba(169, 124, 165, 0.4);
}

.ring-offset-eva-lavender-appt\/45 {
  --tw-ring-offset-color: rgba(169, 124, 165, 0.45);
}

.ring-offset-eva-lavender-appt\/5 {
  --tw-ring-offset-color: rgba(169, 124, 165, 0.05);
}

.ring-offset-eva-lavender-appt\/50 {
  --tw-ring-offset-color: rgba(169, 124, 165, 0.5);
}

.ring-offset-eva-lavender-appt\/55 {
  --tw-ring-offset-color: rgba(169, 124, 165, 0.55);
}

.ring-offset-eva-lavender-appt\/60 {
  --tw-ring-offset-color: rgba(169, 124, 165, 0.6);
}

.ring-offset-eva-lavender-appt\/65 {
  --tw-ring-offset-color: rgba(169, 124, 165, 0.65);
}

.ring-offset-eva-lavender-appt\/70 {
  --tw-ring-offset-color: rgba(169, 124, 165, 0.7);
}

.ring-offset-eva-lavender-appt\/75 {
  --tw-ring-offset-color: rgba(169, 124, 165, 0.75);
}

.ring-offset-eva-lavender-appt\/80 {
  --tw-ring-offset-color: rgba(169, 124, 165, 0.8);
}

.ring-offset-eva-lavender-appt\/85 {
  --tw-ring-offset-color: rgba(169, 124, 165, 0.85);
}

.ring-offset-eva-lavender-appt\/90 {
  --tw-ring-offset-color: rgba(169, 124, 165, 0.9);
}

.ring-offset-eva-lavender-appt\/95 {
  --tw-ring-offset-color: rgba(169, 124, 165, 0.95);
}

.ring-offset-eva-magenta-appt {
  --tw-ring-offset-color: rgba(223, 91, 146, 1);
}

.ring-offset-eva-magenta-appt\/0 {
  --tw-ring-offset-color: rgba(223, 91, 146, 0);
}

.ring-offset-eva-magenta-appt\/10 {
  --tw-ring-offset-color: rgba(223, 91, 146, 0.1);
}

.ring-offset-eva-magenta-appt\/100 {
  --tw-ring-offset-color: rgba(223, 91, 146, 1);
}

.ring-offset-eva-magenta-appt\/15 {
  --tw-ring-offset-color: rgba(223, 91, 146, 0.15);
}

.ring-offset-eva-magenta-appt\/20 {
  --tw-ring-offset-color: rgba(223, 91, 146, 0.2);
}

.ring-offset-eva-magenta-appt\/25 {
  --tw-ring-offset-color: rgba(223, 91, 146, 0.25);
}

.ring-offset-eva-magenta-appt\/30 {
  --tw-ring-offset-color: rgba(223, 91, 146, 0.3);
}

.ring-offset-eva-magenta-appt\/35 {
  --tw-ring-offset-color: rgba(223, 91, 146, 0.35);
}

.ring-offset-eva-magenta-appt\/40 {
  --tw-ring-offset-color: rgba(223, 91, 146, 0.4);
}

.ring-offset-eva-magenta-appt\/45 {
  --tw-ring-offset-color: rgba(223, 91, 146, 0.45);
}

.ring-offset-eva-magenta-appt\/5 {
  --tw-ring-offset-color: rgba(223, 91, 146, 0.05);
}

.ring-offset-eva-magenta-appt\/50 {
  --tw-ring-offset-color: rgba(223, 91, 146, 0.5);
}

.ring-offset-eva-magenta-appt\/55 {
  --tw-ring-offset-color: rgba(223, 91, 146, 0.55);
}

.ring-offset-eva-magenta-appt\/60 {
  --tw-ring-offset-color: rgba(223, 91, 146, 0.6);
}

.ring-offset-eva-magenta-appt\/65 {
  --tw-ring-offset-color: rgba(223, 91, 146, 0.65);
}

.ring-offset-eva-magenta-appt\/70 {
  --tw-ring-offset-color: rgba(223, 91, 146, 0.7);
}

.ring-offset-eva-magenta-appt\/75 {
  --tw-ring-offset-color: rgba(223, 91, 146, 0.75);
}

.ring-offset-eva-magenta-appt\/80 {
  --tw-ring-offset-color: rgba(223, 91, 146, 0.8);
}

.ring-offset-eva-magenta-appt\/85 {
  --tw-ring-offset-color: rgba(223, 91, 146, 0.85);
}

.ring-offset-eva-magenta-appt\/90 {
  --tw-ring-offset-color: rgba(223, 91, 146, 0.9);
}

.ring-offset-eva-magenta-appt\/95 {
  --tw-ring-offset-color: rgba(223, 91, 146, 0.95);
}

.ring-offset-eva-orange-appt {
  --tw-ring-offset-color: rgba(232, 176, 99, 1);
}

.ring-offset-eva-orange-appt\/0 {
  --tw-ring-offset-color: rgba(232, 176, 99, 0);
}

.ring-offset-eva-orange-appt\/10 {
  --tw-ring-offset-color: rgba(232, 176, 99, 0.1);
}

.ring-offset-eva-orange-appt\/100 {
  --tw-ring-offset-color: rgba(232, 176, 99, 1);
}

.ring-offset-eva-orange-appt\/15 {
  --tw-ring-offset-color: rgba(232, 176, 99, 0.15);
}

.ring-offset-eva-orange-appt\/20 {
  --tw-ring-offset-color: rgba(232, 176, 99, 0.2);
}

.ring-offset-eva-orange-appt\/25 {
  --tw-ring-offset-color: rgba(232, 176, 99, 0.25);
}

.ring-offset-eva-orange-appt\/30 {
  --tw-ring-offset-color: rgba(232, 176, 99, 0.3);
}

.ring-offset-eva-orange-appt\/35 {
  --tw-ring-offset-color: rgba(232, 176, 99, 0.35);
}

.ring-offset-eva-orange-appt\/40 {
  --tw-ring-offset-color: rgba(232, 176, 99, 0.4);
}

.ring-offset-eva-orange-appt\/45 {
  --tw-ring-offset-color: rgba(232, 176, 99, 0.45);
}

.ring-offset-eva-orange-appt\/5 {
  --tw-ring-offset-color: rgba(232, 176, 99, 0.05);
}

.ring-offset-eva-orange-appt\/50 {
  --tw-ring-offset-color: rgba(232, 176, 99, 0.5);
}

.ring-offset-eva-orange-appt\/55 {
  --tw-ring-offset-color: rgba(232, 176, 99, 0.55);
}

.ring-offset-eva-orange-appt\/60 {
  --tw-ring-offset-color: rgba(232, 176, 99, 0.6);
}

.ring-offset-eva-orange-appt\/65 {
  --tw-ring-offset-color: rgba(232, 176, 99, 0.65);
}

.ring-offset-eva-orange-appt\/70 {
  --tw-ring-offset-color: rgba(232, 176, 99, 0.7);
}

.ring-offset-eva-orange-appt\/75 {
  --tw-ring-offset-color: rgba(232, 176, 99, 0.75);
}

.ring-offset-eva-orange-appt\/80 {
  --tw-ring-offset-color: rgba(232, 176, 99, 0.8);
}

.ring-offset-eva-orange-appt\/85 {
  --tw-ring-offset-color: rgba(232, 176, 99, 0.85);
}

.ring-offset-eva-orange-appt\/90 {
  --tw-ring-offset-color: rgba(232, 176, 99, 0.9);
}

.ring-offset-eva-orange-appt\/95 {
  --tw-ring-offset-color: rgba(232, 176, 99, 0.95);
}

.ring-offset-eva-purple-appt {
  --tw-ring-offset-color: rgba(125, 117, 164, 1);
}

.ring-offset-eva-purple-appt\/0 {
  --tw-ring-offset-color: rgba(125, 117, 164, 0);
}

.ring-offset-eva-purple-appt\/10 {
  --tw-ring-offset-color: rgba(125, 117, 164, 0.1);
}

.ring-offset-eva-purple-appt\/100 {
  --tw-ring-offset-color: rgba(125, 117, 164, 1);
}

.ring-offset-eva-purple-appt\/15 {
  --tw-ring-offset-color: rgba(125, 117, 164, 0.15);
}

.ring-offset-eva-purple-appt\/20 {
  --tw-ring-offset-color: rgba(125, 117, 164, 0.2);
}

.ring-offset-eva-purple-appt\/25 {
  --tw-ring-offset-color: rgba(125, 117, 164, 0.25);
}

.ring-offset-eva-purple-appt\/30 {
  --tw-ring-offset-color: rgba(125, 117, 164, 0.3);
}

.ring-offset-eva-purple-appt\/35 {
  --tw-ring-offset-color: rgba(125, 117, 164, 0.35);
}

.ring-offset-eva-purple-appt\/40 {
  --tw-ring-offset-color: rgba(125, 117, 164, 0.4);
}

.ring-offset-eva-purple-appt\/45 {
  --tw-ring-offset-color: rgba(125, 117, 164, 0.45);
}

.ring-offset-eva-purple-appt\/5 {
  --tw-ring-offset-color: rgba(125, 117, 164, 0.05);
}

.ring-offset-eva-purple-appt\/50 {
  --tw-ring-offset-color: rgba(125, 117, 164, 0.5);
}

.ring-offset-eva-purple-appt\/55 {
  --tw-ring-offset-color: rgba(125, 117, 164, 0.55);
}

.ring-offset-eva-purple-appt\/60 {
  --tw-ring-offset-color: rgba(125, 117, 164, 0.6);
}

.ring-offset-eva-purple-appt\/65 {
  --tw-ring-offset-color: rgba(125, 117, 164, 0.65);
}

.ring-offset-eva-purple-appt\/70 {
  --tw-ring-offset-color: rgba(125, 117, 164, 0.7);
}

.ring-offset-eva-purple-appt\/75 {
  --tw-ring-offset-color: rgba(125, 117, 164, 0.75);
}

.ring-offset-eva-purple-appt\/80 {
  --tw-ring-offset-color: rgba(125, 117, 164, 0.8);
}

.ring-offset-eva-purple-appt\/85 {
  --tw-ring-offset-color: rgba(125, 117, 164, 0.85);
}

.ring-offset-eva-purple-appt\/90 {
  --tw-ring-offset-color: rgba(125, 117, 164, 0.9);
}

.ring-offset-eva-purple-appt\/95 {
  --tw-ring-offset-color: rgba(125, 117, 164, 0.95);
}

.ring-offset-eva-red {
  --tw-ring-offset-color: #EA6565;
}

.ring-offset-eva-red-appt {
  --tw-ring-offset-color: rgba(243, 63, 77, 1);
}

.ring-offset-eva-red-appt\/0 {
  --tw-ring-offset-color: rgba(243, 63, 77, 0);
}

.ring-offset-eva-red-appt\/10 {
  --tw-ring-offset-color: rgba(243, 63, 77, 0.1);
}

.ring-offset-eva-red-appt\/100 {
  --tw-ring-offset-color: rgba(243, 63, 77, 1);
}

.ring-offset-eva-red-appt\/15 {
  --tw-ring-offset-color: rgba(243, 63, 77, 0.15);
}

.ring-offset-eva-red-appt\/20 {
  --tw-ring-offset-color: rgba(243, 63, 77, 0.2);
}

.ring-offset-eva-red-appt\/25 {
  --tw-ring-offset-color: rgba(243, 63, 77, 0.25);
}

.ring-offset-eva-red-appt\/30 {
  --tw-ring-offset-color: rgba(243, 63, 77, 0.3);
}

.ring-offset-eva-red-appt\/35 {
  --tw-ring-offset-color: rgba(243, 63, 77, 0.35);
}

.ring-offset-eva-red-appt\/40 {
  --tw-ring-offset-color: rgba(243, 63, 77, 0.4);
}

.ring-offset-eva-red-appt\/45 {
  --tw-ring-offset-color: rgba(243, 63, 77, 0.45);
}

.ring-offset-eva-red-appt\/5 {
  --tw-ring-offset-color: rgba(243, 63, 77, 0.05);
}

.ring-offset-eva-red-appt\/50 {
  --tw-ring-offset-color: rgba(243, 63, 77, 0.5);
}

.ring-offset-eva-red-appt\/55 {
  --tw-ring-offset-color: rgba(243, 63, 77, 0.55);
}

.ring-offset-eva-red-appt\/60 {
  --tw-ring-offset-color: rgba(243, 63, 77, 0.6);
}

.ring-offset-eva-red-appt\/65 {
  --tw-ring-offset-color: rgba(243, 63, 77, 0.65);
}

.ring-offset-eva-red-appt\/70 {
  --tw-ring-offset-color: rgba(243, 63, 77, 0.7);
}

.ring-offset-eva-red-appt\/75 {
  --tw-ring-offset-color: rgba(243, 63, 77, 0.75);
}

.ring-offset-eva-red-appt\/80 {
  --tw-ring-offset-color: rgba(243, 63, 77, 0.8);
}

.ring-offset-eva-red-appt\/85 {
  --tw-ring-offset-color: rgba(243, 63, 77, 0.85);
}

.ring-offset-eva-red-appt\/90 {
  --tw-ring-offset-color: rgba(243, 63, 77, 0.9);
}

.ring-offset-eva-red-appt\/95 {
  --tw-ring-offset-color: rgba(243, 63, 77, 0.95);
}

.ring-offset-eva-red-orange-appt {
  --tw-ring-offset-color: rgba(217, 154, 118, 1);
}

.ring-offset-eva-red-orange-appt\/0 {
  --tw-ring-offset-color: rgba(217, 154, 118, 0);
}

.ring-offset-eva-red-orange-appt\/10 {
  --tw-ring-offset-color: rgba(217, 154, 118, 0.1);
}

.ring-offset-eva-red-orange-appt\/100 {
  --tw-ring-offset-color: rgba(217, 154, 118, 1);
}

.ring-offset-eva-red-orange-appt\/15 {
  --tw-ring-offset-color: rgba(217, 154, 118, 0.15);
}

.ring-offset-eva-red-orange-appt\/20 {
  --tw-ring-offset-color: rgba(217, 154, 118, 0.2);
}

.ring-offset-eva-red-orange-appt\/25 {
  --tw-ring-offset-color: rgba(217, 154, 118, 0.25);
}

.ring-offset-eva-red-orange-appt\/30 {
  --tw-ring-offset-color: rgba(217, 154, 118, 0.3);
}

.ring-offset-eva-red-orange-appt\/35 {
  --tw-ring-offset-color: rgba(217, 154, 118, 0.35);
}

.ring-offset-eva-red-orange-appt\/40 {
  --tw-ring-offset-color: rgba(217, 154, 118, 0.4);
}

.ring-offset-eva-red-orange-appt\/45 {
  --tw-ring-offset-color: rgba(217, 154, 118, 0.45);
}

.ring-offset-eva-red-orange-appt\/5 {
  --tw-ring-offset-color: rgba(217, 154, 118, 0.05);
}

.ring-offset-eva-red-orange-appt\/50 {
  --tw-ring-offset-color: rgba(217, 154, 118, 0.5);
}

.ring-offset-eva-red-orange-appt\/55 {
  --tw-ring-offset-color: rgba(217, 154, 118, 0.55);
}

.ring-offset-eva-red-orange-appt\/60 {
  --tw-ring-offset-color: rgba(217, 154, 118, 0.6);
}

.ring-offset-eva-red-orange-appt\/65 {
  --tw-ring-offset-color: rgba(217, 154, 118, 0.65);
}

.ring-offset-eva-red-orange-appt\/70 {
  --tw-ring-offset-color: rgba(217, 154, 118, 0.7);
}

.ring-offset-eva-red-orange-appt\/75 {
  --tw-ring-offset-color: rgba(217, 154, 118, 0.75);
}

.ring-offset-eva-red-orange-appt\/80 {
  --tw-ring-offset-color: rgba(217, 154, 118, 0.8);
}

.ring-offset-eva-red-orange-appt\/85 {
  --tw-ring-offset-color: rgba(217, 154, 118, 0.85);
}

.ring-offset-eva-red-orange-appt\/90 {
  --tw-ring-offset-color: rgba(217, 154, 118, 0.9);
}

.ring-offset-eva-red-orange-appt\/95 {
  --tw-ring-offset-color: rgba(217, 154, 118, 0.95);
}

.ring-offset-eva-red\/0 {
  --tw-ring-offset-color: rgb(234 101 101 / 0);
}

.ring-offset-eva-red\/10 {
  --tw-ring-offset-color: rgb(234 101 101 / 0.1);
}

.ring-offset-eva-red\/100 {
  --tw-ring-offset-color: rgb(234 101 101 / 1);
}

.ring-offset-eva-red\/15 {
  --tw-ring-offset-color: rgb(234 101 101 / 0.15);
}

.ring-offset-eva-red\/20 {
  --tw-ring-offset-color: rgb(234 101 101 / 0.2);
}

.ring-offset-eva-red\/25 {
  --tw-ring-offset-color: rgb(234 101 101 / 0.25);
}

.ring-offset-eva-red\/30 {
  --tw-ring-offset-color: rgb(234 101 101 / 0.3);
}

.ring-offset-eva-red\/35 {
  --tw-ring-offset-color: rgb(234 101 101 / 0.35);
}

.ring-offset-eva-red\/40 {
  --tw-ring-offset-color: rgb(234 101 101 / 0.4);
}

.ring-offset-eva-red\/45 {
  --tw-ring-offset-color: rgb(234 101 101 / 0.45);
}

.ring-offset-eva-red\/5 {
  --tw-ring-offset-color: rgb(234 101 101 / 0.05);
}

.ring-offset-eva-red\/50 {
  --tw-ring-offset-color: rgb(234 101 101 / 0.5);
}

.ring-offset-eva-red\/55 {
  --tw-ring-offset-color: rgb(234 101 101 / 0.55);
}

.ring-offset-eva-red\/60 {
  --tw-ring-offset-color: rgb(234 101 101 / 0.6);
}

.ring-offset-eva-red\/65 {
  --tw-ring-offset-color: rgb(234 101 101 / 0.65);
}

.ring-offset-eva-red\/70 {
  --tw-ring-offset-color: rgb(234 101 101 / 0.7);
}

.ring-offset-eva-red\/75 {
  --tw-ring-offset-color: rgb(234 101 101 / 0.75);
}

.ring-offset-eva-red\/80 {
  --tw-ring-offset-color: rgb(234 101 101 / 0.8);
}

.ring-offset-eva-red\/85 {
  --tw-ring-offset-color: rgb(234 101 101 / 0.85);
}

.ring-offset-eva-red\/90 {
  --tw-ring-offset-color: rgb(234 101 101 / 0.9);
}

.ring-offset-eva-red\/95 {
  --tw-ring-offset-color: rgb(234 101 101 / 0.95);
}

.ring-offset-eva-teal-appt {
  --tw-ring-offset-color: rgba(22, 172, 151);
}

.ring-offset-eva-teal-appt\/0 {
  --tw-ring-offset-color: rgba(22, 172, 151, 0);
}

.ring-offset-eva-teal-appt\/10 {
  --tw-ring-offset-color: rgba(22, 172, 151, 0.1);
}

.ring-offset-eva-teal-appt\/100 {
  --tw-ring-offset-color: rgba(22, 172, 151, 1);
}

.ring-offset-eva-teal-appt\/15 {
  --tw-ring-offset-color: rgba(22, 172, 151, 0.15);
}

.ring-offset-eva-teal-appt\/20 {
  --tw-ring-offset-color: rgba(22, 172, 151, 0.2);
}

.ring-offset-eva-teal-appt\/25 {
  --tw-ring-offset-color: rgba(22, 172, 151, 0.25);
}

.ring-offset-eva-teal-appt\/30 {
  --tw-ring-offset-color: rgba(22, 172, 151, 0.3);
}

.ring-offset-eva-teal-appt\/35 {
  --tw-ring-offset-color: rgba(22, 172, 151, 0.35);
}

.ring-offset-eva-teal-appt\/40 {
  --tw-ring-offset-color: rgba(22, 172, 151, 0.4);
}

.ring-offset-eva-teal-appt\/45 {
  --tw-ring-offset-color: rgba(22, 172, 151, 0.45);
}

.ring-offset-eva-teal-appt\/5 {
  --tw-ring-offset-color: rgba(22, 172, 151, 0.05);
}

.ring-offset-eva-teal-appt\/50 {
  --tw-ring-offset-color: rgba(22, 172, 151, 0.5);
}

.ring-offset-eva-teal-appt\/55 {
  --tw-ring-offset-color: rgba(22, 172, 151, 0.55);
}

.ring-offset-eva-teal-appt\/60 {
  --tw-ring-offset-color: rgba(22, 172, 151, 0.6);
}

.ring-offset-eva-teal-appt\/65 {
  --tw-ring-offset-color: rgba(22, 172, 151, 0.65);
}

.ring-offset-eva-teal-appt\/70 {
  --tw-ring-offset-color: rgba(22, 172, 151, 0.7);
}

.ring-offset-eva-teal-appt\/75 {
  --tw-ring-offset-color: rgba(22, 172, 151, 0.75);
}

.ring-offset-eva-teal-appt\/80 {
  --tw-ring-offset-color: rgba(22, 172, 151, 0.8);
}

.ring-offset-eva-teal-appt\/85 {
  --tw-ring-offset-color: rgba(22, 172, 151, 0.85);
}

.ring-offset-eva-teal-appt\/90 {
  --tw-ring-offset-color: rgba(22, 172, 151, 0.9);
}

.ring-offset-eva-teal-appt\/95 {
  --tw-ring-offset-color: rgba(22, 172, 151, 0.95);
}

.ring-offset-eva-yellow {
  --tw-ring-offset-color: #E9B362;
}

.ring-offset-eva-yellow-appt {
  --tw-ring-offset-color: rgba(240, 226, 0, 1);
}

.ring-offset-eva-yellow-appt\/0 {
  --tw-ring-offset-color: rgba(240, 226, 0, 0);
}

.ring-offset-eva-yellow-appt\/10 {
  --tw-ring-offset-color: rgba(240, 226, 0, 0.1);
}

.ring-offset-eva-yellow-appt\/100 {
  --tw-ring-offset-color: rgba(240, 226, 0, 1);
}

.ring-offset-eva-yellow-appt\/15 {
  --tw-ring-offset-color: rgba(240, 226, 0, 0.15);
}

.ring-offset-eva-yellow-appt\/20 {
  --tw-ring-offset-color: rgba(240, 226, 0, 0.2);
}

.ring-offset-eva-yellow-appt\/25 {
  --tw-ring-offset-color: rgba(240, 226, 0, 0.25);
}

.ring-offset-eva-yellow-appt\/30 {
  --tw-ring-offset-color: rgba(240, 226, 0, 0.3);
}

.ring-offset-eva-yellow-appt\/35 {
  --tw-ring-offset-color: rgba(240, 226, 0, 0.35);
}

.ring-offset-eva-yellow-appt\/40 {
  --tw-ring-offset-color: rgba(240, 226, 0, 0.4);
}

.ring-offset-eva-yellow-appt\/45 {
  --tw-ring-offset-color: rgba(240, 226, 0, 0.45);
}

.ring-offset-eva-yellow-appt\/5 {
  --tw-ring-offset-color: rgba(240, 226, 0, 0.05);
}

.ring-offset-eva-yellow-appt\/50 {
  --tw-ring-offset-color: rgba(240, 226, 0, 0.5);
}

.ring-offset-eva-yellow-appt\/55 {
  --tw-ring-offset-color: rgba(240, 226, 0, 0.55);
}

.ring-offset-eva-yellow-appt\/60 {
  --tw-ring-offset-color: rgba(240, 226, 0, 0.6);
}

.ring-offset-eva-yellow-appt\/65 {
  --tw-ring-offset-color: rgba(240, 226, 0, 0.65);
}

.ring-offset-eva-yellow-appt\/70 {
  --tw-ring-offset-color: rgba(240, 226, 0, 0.7);
}

.ring-offset-eva-yellow-appt\/75 {
  --tw-ring-offset-color: rgba(240, 226, 0, 0.75);
}

.ring-offset-eva-yellow-appt\/80 {
  --tw-ring-offset-color: rgba(240, 226, 0, 0.8);
}

.ring-offset-eva-yellow-appt\/85 {
  --tw-ring-offset-color: rgba(240, 226, 0, 0.85);
}

.ring-offset-eva-yellow-appt\/90 {
  --tw-ring-offset-color: rgba(240, 226, 0, 0.9);
}

.ring-offset-eva-yellow-appt\/95 {
  --tw-ring-offset-color: rgba(240, 226, 0, 0.95);
}

.ring-offset-eva-yellow\/0 {
  --tw-ring-offset-color: rgb(233 179 98 / 0);
}

.ring-offset-eva-yellow\/10 {
  --tw-ring-offset-color: rgb(233 179 98 / 0.1);
}

.ring-offset-eva-yellow\/100 {
  --tw-ring-offset-color: rgb(233 179 98 / 1);
}

.ring-offset-eva-yellow\/15 {
  --tw-ring-offset-color: rgb(233 179 98 / 0.15);
}

.ring-offset-eva-yellow\/20 {
  --tw-ring-offset-color: rgb(233 179 98 / 0.2);
}

.ring-offset-eva-yellow\/25 {
  --tw-ring-offset-color: rgb(233 179 98 / 0.25);
}

.ring-offset-eva-yellow\/30 {
  --tw-ring-offset-color: rgb(233 179 98 / 0.3);
}

.ring-offset-eva-yellow\/35 {
  --tw-ring-offset-color: rgb(233 179 98 / 0.35);
}

.ring-offset-eva-yellow\/40 {
  --tw-ring-offset-color: rgb(233 179 98 / 0.4);
}

.ring-offset-eva-yellow\/45 {
  --tw-ring-offset-color: rgb(233 179 98 / 0.45);
}

.ring-offset-eva-yellow\/5 {
  --tw-ring-offset-color: rgb(233 179 98 / 0.05);
}

.ring-offset-eva-yellow\/50 {
  --tw-ring-offset-color: rgb(233 179 98 / 0.5);
}

.ring-offset-eva-yellow\/55 {
  --tw-ring-offset-color: rgb(233 179 98 / 0.55);
}

.ring-offset-eva-yellow\/60 {
  --tw-ring-offset-color: rgb(233 179 98 / 0.6);
}

.ring-offset-eva-yellow\/65 {
  --tw-ring-offset-color: rgb(233 179 98 / 0.65);
}

.ring-offset-eva-yellow\/70 {
  --tw-ring-offset-color: rgb(233 179 98 / 0.7);
}

.ring-offset-eva-yellow\/75 {
  --tw-ring-offset-color: rgb(233 179 98 / 0.75);
}

.ring-offset-eva-yellow\/80 {
  --tw-ring-offset-color: rgb(233 179 98 / 0.8);
}

.ring-offset-eva-yellow\/85 {
  --tw-ring-offset-color: rgb(233 179 98 / 0.85);
}

.ring-offset-eva-yellow\/90 {
  --tw-ring-offset-color: rgb(233 179 98 / 0.9);
}

.ring-offset-eva-yellow\/95 {
  --tw-ring-offset-color: rgb(233 179 98 / 0.95);
}

.ring-offset-gray-100 {
  --tw-ring-offset-color: #f5f5f5;
}

.ring-offset-gray-100\/0 {
  --tw-ring-offset-color: rgb(245 245 245 / 0);
}

.ring-offset-gray-100\/10 {
  --tw-ring-offset-color: rgb(245 245 245 / 0.1);
}

.ring-offset-gray-100\/100 {
  --tw-ring-offset-color: rgb(245 245 245 / 1);
}

.ring-offset-gray-100\/15 {
  --tw-ring-offset-color: rgb(245 245 245 / 0.15);
}

.ring-offset-gray-100\/20 {
  --tw-ring-offset-color: rgb(245 245 245 / 0.2);
}

.ring-offset-gray-100\/25 {
  --tw-ring-offset-color: rgb(245 245 245 / 0.25);
}

.ring-offset-gray-100\/30 {
  --tw-ring-offset-color: rgb(245 245 245 / 0.3);
}

.ring-offset-gray-100\/35 {
  --tw-ring-offset-color: rgb(245 245 245 / 0.35);
}

.ring-offset-gray-100\/40 {
  --tw-ring-offset-color: rgb(245 245 245 / 0.4);
}

.ring-offset-gray-100\/45 {
  --tw-ring-offset-color: rgb(245 245 245 / 0.45);
}

.ring-offset-gray-100\/5 {
  --tw-ring-offset-color: rgb(245 245 245 / 0.05);
}

.ring-offset-gray-100\/50 {
  --tw-ring-offset-color: rgb(245 245 245 / 0.5);
}

.ring-offset-gray-100\/55 {
  --tw-ring-offset-color: rgb(245 245 245 / 0.55);
}

.ring-offset-gray-100\/60 {
  --tw-ring-offset-color: rgb(245 245 245 / 0.6);
}

.ring-offset-gray-100\/65 {
  --tw-ring-offset-color: rgb(245 245 245 / 0.65);
}

.ring-offset-gray-100\/70 {
  --tw-ring-offset-color: rgb(245 245 245 / 0.7);
}

.ring-offset-gray-100\/75 {
  --tw-ring-offset-color: rgb(245 245 245 / 0.75);
}

.ring-offset-gray-100\/80 {
  --tw-ring-offset-color: rgb(245 245 245 / 0.8);
}

.ring-offset-gray-100\/85 {
  --tw-ring-offset-color: rgb(245 245 245 / 0.85);
}

.ring-offset-gray-100\/90 {
  --tw-ring-offset-color: rgb(245 245 245 / 0.9);
}

.ring-offset-gray-100\/95 {
  --tw-ring-offset-color: rgb(245 245 245 / 0.95);
}

.ring-offset-gray-200 {
  --tw-ring-offset-color: #e5e5e5;
}

.ring-offset-gray-200\/0 {
  --tw-ring-offset-color: rgb(229 229 229 / 0);
}

.ring-offset-gray-200\/10 {
  --tw-ring-offset-color: rgb(229 229 229 / 0.1);
}

.ring-offset-gray-200\/100 {
  --tw-ring-offset-color: rgb(229 229 229 / 1);
}

.ring-offset-gray-200\/15 {
  --tw-ring-offset-color: rgb(229 229 229 / 0.15);
}

.ring-offset-gray-200\/20 {
  --tw-ring-offset-color: rgb(229 229 229 / 0.2);
}

.ring-offset-gray-200\/25 {
  --tw-ring-offset-color: rgb(229 229 229 / 0.25);
}

.ring-offset-gray-200\/30 {
  --tw-ring-offset-color: rgb(229 229 229 / 0.3);
}

.ring-offset-gray-200\/35 {
  --tw-ring-offset-color: rgb(229 229 229 / 0.35);
}

.ring-offset-gray-200\/40 {
  --tw-ring-offset-color: rgb(229 229 229 / 0.4);
}

.ring-offset-gray-200\/45 {
  --tw-ring-offset-color: rgb(229 229 229 / 0.45);
}

.ring-offset-gray-200\/5 {
  --tw-ring-offset-color: rgb(229 229 229 / 0.05);
}

.ring-offset-gray-200\/50 {
  --tw-ring-offset-color: rgb(229 229 229 / 0.5);
}

.ring-offset-gray-200\/55 {
  --tw-ring-offset-color: rgb(229 229 229 / 0.55);
}

.ring-offset-gray-200\/60 {
  --tw-ring-offset-color: rgb(229 229 229 / 0.6);
}

.ring-offset-gray-200\/65 {
  --tw-ring-offset-color: rgb(229 229 229 / 0.65);
}

.ring-offset-gray-200\/70 {
  --tw-ring-offset-color: rgb(229 229 229 / 0.7);
}

.ring-offset-gray-200\/75 {
  --tw-ring-offset-color: rgb(229 229 229 / 0.75);
}

.ring-offset-gray-200\/80 {
  --tw-ring-offset-color: rgb(229 229 229 / 0.8);
}

.ring-offset-gray-200\/85 {
  --tw-ring-offset-color: rgb(229 229 229 / 0.85);
}

.ring-offset-gray-200\/90 {
  --tw-ring-offset-color: rgb(229 229 229 / 0.9);
}

.ring-offset-gray-200\/95 {
  --tw-ring-offset-color: rgb(229 229 229 / 0.95);
}

.ring-offset-gray-300 {
  --tw-ring-offset-color: #d4d4d4;
}

.ring-offset-gray-300\/0 {
  --tw-ring-offset-color: rgb(212 212 212 / 0);
}

.ring-offset-gray-300\/10 {
  --tw-ring-offset-color: rgb(212 212 212 / 0.1);
}

.ring-offset-gray-300\/100 {
  --tw-ring-offset-color: rgb(212 212 212 / 1);
}

.ring-offset-gray-300\/15 {
  --tw-ring-offset-color: rgb(212 212 212 / 0.15);
}

.ring-offset-gray-300\/20 {
  --tw-ring-offset-color: rgb(212 212 212 / 0.2);
}

.ring-offset-gray-300\/25 {
  --tw-ring-offset-color: rgb(212 212 212 / 0.25);
}

.ring-offset-gray-300\/30 {
  --tw-ring-offset-color: rgb(212 212 212 / 0.3);
}

.ring-offset-gray-300\/35 {
  --tw-ring-offset-color: rgb(212 212 212 / 0.35);
}

.ring-offset-gray-300\/40 {
  --tw-ring-offset-color: rgb(212 212 212 / 0.4);
}

.ring-offset-gray-300\/45 {
  --tw-ring-offset-color: rgb(212 212 212 / 0.45);
}

.ring-offset-gray-300\/5 {
  --tw-ring-offset-color: rgb(212 212 212 / 0.05);
}

.ring-offset-gray-300\/50 {
  --tw-ring-offset-color: rgb(212 212 212 / 0.5);
}

.ring-offset-gray-300\/55 {
  --tw-ring-offset-color: rgb(212 212 212 / 0.55);
}

.ring-offset-gray-300\/60 {
  --tw-ring-offset-color: rgb(212 212 212 / 0.6);
}

.ring-offset-gray-300\/65 {
  --tw-ring-offset-color: rgb(212 212 212 / 0.65);
}

.ring-offset-gray-300\/70 {
  --tw-ring-offset-color: rgb(212 212 212 / 0.7);
}

.ring-offset-gray-300\/75 {
  --tw-ring-offset-color: rgb(212 212 212 / 0.75);
}

.ring-offset-gray-300\/80 {
  --tw-ring-offset-color: rgb(212 212 212 / 0.8);
}

.ring-offset-gray-300\/85 {
  --tw-ring-offset-color: rgb(212 212 212 / 0.85);
}

.ring-offset-gray-300\/90 {
  --tw-ring-offset-color: rgb(212 212 212 / 0.9);
}

.ring-offset-gray-300\/95 {
  --tw-ring-offset-color: rgb(212 212 212 / 0.95);
}

.ring-offset-gray-400 {
  --tw-ring-offset-color: #a3a3a3;
}

.ring-offset-gray-400\/0 {
  --tw-ring-offset-color: rgb(163 163 163 / 0);
}

.ring-offset-gray-400\/10 {
  --tw-ring-offset-color: rgb(163 163 163 / 0.1);
}

.ring-offset-gray-400\/100 {
  --tw-ring-offset-color: rgb(163 163 163 / 1);
}

.ring-offset-gray-400\/15 {
  --tw-ring-offset-color: rgb(163 163 163 / 0.15);
}

.ring-offset-gray-400\/20 {
  --tw-ring-offset-color: rgb(163 163 163 / 0.2);
}

.ring-offset-gray-400\/25 {
  --tw-ring-offset-color: rgb(163 163 163 / 0.25);
}

.ring-offset-gray-400\/30 {
  --tw-ring-offset-color: rgb(163 163 163 / 0.3);
}

.ring-offset-gray-400\/35 {
  --tw-ring-offset-color: rgb(163 163 163 / 0.35);
}

.ring-offset-gray-400\/40 {
  --tw-ring-offset-color: rgb(163 163 163 / 0.4);
}

.ring-offset-gray-400\/45 {
  --tw-ring-offset-color: rgb(163 163 163 / 0.45);
}

.ring-offset-gray-400\/5 {
  --tw-ring-offset-color: rgb(163 163 163 / 0.05);
}

.ring-offset-gray-400\/50 {
  --tw-ring-offset-color: rgb(163 163 163 / 0.5);
}

.ring-offset-gray-400\/55 {
  --tw-ring-offset-color: rgb(163 163 163 / 0.55);
}

.ring-offset-gray-400\/60 {
  --tw-ring-offset-color: rgb(163 163 163 / 0.6);
}

.ring-offset-gray-400\/65 {
  --tw-ring-offset-color: rgb(163 163 163 / 0.65);
}

.ring-offset-gray-400\/70 {
  --tw-ring-offset-color: rgb(163 163 163 / 0.7);
}

.ring-offset-gray-400\/75 {
  --tw-ring-offset-color: rgb(163 163 163 / 0.75);
}

.ring-offset-gray-400\/80 {
  --tw-ring-offset-color: rgb(163 163 163 / 0.8);
}

.ring-offset-gray-400\/85 {
  --tw-ring-offset-color: rgb(163 163 163 / 0.85);
}

.ring-offset-gray-400\/90 {
  --tw-ring-offset-color: rgb(163 163 163 / 0.9);
}

.ring-offset-gray-400\/95 {
  --tw-ring-offset-color: rgb(163 163 163 / 0.95);
}

.ring-offset-gray-50 {
  --tw-ring-offset-color: #fafafa;
}

.ring-offset-gray-50\/0 {
  --tw-ring-offset-color: rgb(250 250 250 / 0);
}

.ring-offset-gray-50\/10 {
  --tw-ring-offset-color: rgb(250 250 250 / 0.1);
}

.ring-offset-gray-50\/100 {
  --tw-ring-offset-color: rgb(250 250 250 / 1);
}

.ring-offset-gray-50\/15 {
  --tw-ring-offset-color: rgb(250 250 250 / 0.15);
}

.ring-offset-gray-50\/20 {
  --tw-ring-offset-color: rgb(250 250 250 / 0.2);
}

.ring-offset-gray-50\/25 {
  --tw-ring-offset-color: rgb(250 250 250 / 0.25);
}

.ring-offset-gray-50\/30 {
  --tw-ring-offset-color: rgb(250 250 250 / 0.3);
}

.ring-offset-gray-50\/35 {
  --tw-ring-offset-color: rgb(250 250 250 / 0.35);
}

.ring-offset-gray-50\/40 {
  --tw-ring-offset-color: rgb(250 250 250 / 0.4);
}

.ring-offset-gray-50\/45 {
  --tw-ring-offset-color: rgb(250 250 250 / 0.45);
}

.ring-offset-gray-50\/5 {
  --tw-ring-offset-color: rgb(250 250 250 / 0.05);
}

.ring-offset-gray-50\/50 {
  --tw-ring-offset-color: rgb(250 250 250 / 0.5);
}

.ring-offset-gray-50\/55 {
  --tw-ring-offset-color: rgb(250 250 250 / 0.55);
}

.ring-offset-gray-50\/60 {
  --tw-ring-offset-color: rgb(250 250 250 / 0.6);
}

.ring-offset-gray-50\/65 {
  --tw-ring-offset-color: rgb(250 250 250 / 0.65);
}

.ring-offset-gray-50\/70 {
  --tw-ring-offset-color: rgb(250 250 250 / 0.7);
}

.ring-offset-gray-50\/75 {
  --tw-ring-offset-color: rgb(250 250 250 / 0.75);
}

.ring-offset-gray-50\/80 {
  --tw-ring-offset-color: rgb(250 250 250 / 0.8);
}

.ring-offset-gray-50\/85 {
  --tw-ring-offset-color: rgb(250 250 250 / 0.85);
}

.ring-offset-gray-50\/90 {
  --tw-ring-offset-color: rgb(250 250 250 / 0.9);
}

.ring-offset-gray-50\/95 {
  --tw-ring-offset-color: rgb(250 250 250 / 0.95);
}

.ring-offset-gray-500 {
  --tw-ring-offset-color: #737373;
}

.ring-offset-gray-500\/0 {
  --tw-ring-offset-color: rgb(115 115 115 / 0);
}

.ring-offset-gray-500\/10 {
  --tw-ring-offset-color: rgb(115 115 115 / 0.1);
}

.ring-offset-gray-500\/100 {
  --tw-ring-offset-color: rgb(115 115 115 / 1);
}

.ring-offset-gray-500\/15 {
  --tw-ring-offset-color: rgb(115 115 115 / 0.15);
}

.ring-offset-gray-500\/20 {
  --tw-ring-offset-color: rgb(115 115 115 / 0.2);
}

.ring-offset-gray-500\/25 {
  --tw-ring-offset-color: rgb(115 115 115 / 0.25);
}

.ring-offset-gray-500\/30 {
  --tw-ring-offset-color: rgb(115 115 115 / 0.3);
}

.ring-offset-gray-500\/35 {
  --tw-ring-offset-color: rgb(115 115 115 / 0.35);
}

.ring-offset-gray-500\/40 {
  --tw-ring-offset-color: rgb(115 115 115 / 0.4);
}

.ring-offset-gray-500\/45 {
  --tw-ring-offset-color: rgb(115 115 115 / 0.45);
}

.ring-offset-gray-500\/5 {
  --tw-ring-offset-color: rgb(115 115 115 / 0.05);
}

.ring-offset-gray-500\/50 {
  --tw-ring-offset-color: rgb(115 115 115 / 0.5);
}

.ring-offset-gray-500\/55 {
  --tw-ring-offset-color: rgb(115 115 115 / 0.55);
}

.ring-offset-gray-500\/60 {
  --tw-ring-offset-color: rgb(115 115 115 / 0.6);
}

.ring-offset-gray-500\/65 {
  --tw-ring-offset-color: rgb(115 115 115 / 0.65);
}

.ring-offset-gray-500\/70 {
  --tw-ring-offset-color: rgb(115 115 115 / 0.7);
}

.ring-offset-gray-500\/75 {
  --tw-ring-offset-color: rgb(115 115 115 / 0.75);
}

.ring-offset-gray-500\/80 {
  --tw-ring-offset-color: rgb(115 115 115 / 0.8);
}

.ring-offset-gray-500\/85 {
  --tw-ring-offset-color: rgb(115 115 115 / 0.85);
}

.ring-offset-gray-500\/90 {
  --tw-ring-offset-color: rgb(115 115 115 / 0.9);
}

.ring-offset-gray-500\/95 {
  --tw-ring-offset-color: rgb(115 115 115 / 0.95);
}

.ring-offset-gray-600 {
  --tw-ring-offset-color: #525252;
}

.ring-offset-gray-600\/0 {
  --tw-ring-offset-color: rgb(82 82 82 / 0);
}

.ring-offset-gray-600\/10 {
  --tw-ring-offset-color: rgb(82 82 82 / 0.1);
}

.ring-offset-gray-600\/100 {
  --tw-ring-offset-color: rgb(82 82 82 / 1);
}

.ring-offset-gray-600\/15 {
  --tw-ring-offset-color: rgb(82 82 82 / 0.15);
}

.ring-offset-gray-600\/20 {
  --tw-ring-offset-color: rgb(82 82 82 / 0.2);
}

.ring-offset-gray-600\/25 {
  --tw-ring-offset-color: rgb(82 82 82 / 0.25);
}

.ring-offset-gray-600\/30 {
  --tw-ring-offset-color: rgb(82 82 82 / 0.3);
}

.ring-offset-gray-600\/35 {
  --tw-ring-offset-color: rgb(82 82 82 / 0.35);
}

.ring-offset-gray-600\/40 {
  --tw-ring-offset-color: rgb(82 82 82 / 0.4);
}

.ring-offset-gray-600\/45 {
  --tw-ring-offset-color: rgb(82 82 82 / 0.45);
}

.ring-offset-gray-600\/5 {
  --tw-ring-offset-color: rgb(82 82 82 / 0.05);
}

.ring-offset-gray-600\/50 {
  --tw-ring-offset-color: rgb(82 82 82 / 0.5);
}

.ring-offset-gray-600\/55 {
  --tw-ring-offset-color: rgb(82 82 82 / 0.55);
}

.ring-offset-gray-600\/60 {
  --tw-ring-offset-color: rgb(82 82 82 / 0.6);
}

.ring-offset-gray-600\/65 {
  --tw-ring-offset-color: rgb(82 82 82 / 0.65);
}

.ring-offset-gray-600\/70 {
  --tw-ring-offset-color: rgb(82 82 82 / 0.7);
}

.ring-offset-gray-600\/75 {
  --tw-ring-offset-color: rgb(82 82 82 / 0.75);
}

.ring-offset-gray-600\/80 {
  --tw-ring-offset-color: rgb(82 82 82 / 0.8);
}

.ring-offset-gray-600\/85 {
  --tw-ring-offset-color: rgb(82 82 82 / 0.85);
}

.ring-offset-gray-600\/90 {
  --tw-ring-offset-color: rgb(82 82 82 / 0.9);
}

.ring-offset-gray-600\/95 {
  --tw-ring-offset-color: rgb(82 82 82 / 0.95);
}

.ring-offset-gray-700 {
  --tw-ring-offset-color: #404040;
}

.ring-offset-gray-700\/0 {
  --tw-ring-offset-color: rgb(64 64 64 / 0);
}

.ring-offset-gray-700\/10 {
  --tw-ring-offset-color: rgb(64 64 64 / 0.1);
}

.ring-offset-gray-700\/100 {
  --tw-ring-offset-color: rgb(64 64 64 / 1);
}

.ring-offset-gray-700\/15 {
  --tw-ring-offset-color: rgb(64 64 64 / 0.15);
}

.ring-offset-gray-700\/20 {
  --tw-ring-offset-color: rgb(64 64 64 / 0.2);
}

.ring-offset-gray-700\/25 {
  --tw-ring-offset-color: rgb(64 64 64 / 0.25);
}

.ring-offset-gray-700\/30 {
  --tw-ring-offset-color: rgb(64 64 64 / 0.3);
}

.ring-offset-gray-700\/35 {
  --tw-ring-offset-color: rgb(64 64 64 / 0.35);
}

.ring-offset-gray-700\/40 {
  --tw-ring-offset-color: rgb(64 64 64 / 0.4);
}

.ring-offset-gray-700\/45 {
  --tw-ring-offset-color: rgb(64 64 64 / 0.45);
}

.ring-offset-gray-700\/5 {
  --tw-ring-offset-color: rgb(64 64 64 / 0.05);
}

.ring-offset-gray-700\/50 {
  --tw-ring-offset-color: rgb(64 64 64 / 0.5);
}

.ring-offset-gray-700\/55 {
  --tw-ring-offset-color: rgb(64 64 64 / 0.55);
}

.ring-offset-gray-700\/60 {
  --tw-ring-offset-color: rgb(64 64 64 / 0.6);
}

.ring-offset-gray-700\/65 {
  --tw-ring-offset-color: rgb(64 64 64 / 0.65);
}

.ring-offset-gray-700\/70 {
  --tw-ring-offset-color: rgb(64 64 64 / 0.7);
}

.ring-offset-gray-700\/75 {
  --tw-ring-offset-color: rgb(64 64 64 / 0.75);
}

.ring-offset-gray-700\/80 {
  --tw-ring-offset-color: rgb(64 64 64 / 0.8);
}

.ring-offset-gray-700\/85 {
  --tw-ring-offset-color: rgb(64 64 64 / 0.85);
}

.ring-offset-gray-700\/90 {
  --tw-ring-offset-color: rgb(64 64 64 / 0.9);
}

.ring-offset-gray-700\/95 {
  --tw-ring-offset-color: rgb(64 64 64 / 0.95);
}

.ring-offset-gray-800 {
  --tw-ring-offset-color: #262626;
}

.ring-offset-gray-800\/0 {
  --tw-ring-offset-color: rgb(38 38 38 / 0);
}

.ring-offset-gray-800\/10 {
  --tw-ring-offset-color: rgb(38 38 38 / 0.1);
}

.ring-offset-gray-800\/100 {
  --tw-ring-offset-color: rgb(38 38 38 / 1);
}

.ring-offset-gray-800\/15 {
  --tw-ring-offset-color: rgb(38 38 38 / 0.15);
}

.ring-offset-gray-800\/20 {
  --tw-ring-offset-color: rgb(38 38 38 / 0.2);
}

.ring-offset-gray-800\/25 {
  --tw-ring-offset-color: rgb(38 38 38 / 0.25);
}

.ring-offset-gray-800\/30 {
  --tw-ring-offset-color: rgb(38 38 38 / 0.3);
}

.ring-offset-gray-800\/35 {
  --tw-ring-offset-color: rgb(38 38 38 / 0.35);
}

.ring-offset-gray-800\/40 {
  --tw-ring-offset-color: rgb(38 38 38 / 0.4);
}

.ring-offset-gray-800\/45 {
  --tw-ring-offset-color: rgb(38 38 38 / 0.45);
}

.ring-offset-gray-800\/5 {
  --tw-ring-offset-color: rgb(38 38 38 / 0.05);
}

.ring-offset-gray-800\/50 {
  --tw-ring-offset-color: rgb(38 38 38 / 0.5);
}

.ring-offset-gray-800\/55 {
  --tw-ring-offset-color: rgb(38 38 38 / 0.55);
}

.ring-offset-gray-800\/60 {
  --tw-ring-offset-color: rgb(38 38 38 / 0.6);
}

.ring-offset-gray-800\/65 {
  --tw-ring-offset-color: rgb(38 38 38 / 0.65);
}

.ring-offset-gray-800\/70 {
  --tw-ring-offset-color: rgb(38 38 38 / 0.7);
}

.ring-offset-gray-800\/75 {
  --tw-ring-offset-color: rgb(38 38 38 / 0.75);
}

.ring-offset-gray-800\/80 {
  --tw-ring-offset-color: rgb(38 38 38 / 0.8);
}

.ring-offset-gray-800\/85 {
  --tw-ring-offset-color: rgb(38 38 38 / 0.85);
}

.ring-offset-gray-800\/90 {
  --tw-ring-offset-color: rgb(38 38 38 / 0.9);
}

.ring-offset-gray-800\/95 {
  --tw-ring-offset-color: rgb(38 38 38 / 0.95);
}

.ring-offset-gray-900 {
  --tw-ring-offset-color: #171717;
}

.ring-offset-gray-900\/0 {
  --tw-ring-offset-color: rgb(23 23 23 / 0);
}

.ring-offset-gray-900\/10 {
  --tw-ring-offset-color: rgb(23 23 23 / 0.1);
}

.ring-offset-gray-900\/100 {
  --tw-ring-offset-color: rgb(23 23 23 / 1);
}

.ring-offset-gray-900\/15 {
  --tw-ring-offset-color: rgb(23 23 23 / 0.15);
}

.ring-offset-gray-900\/20 {
  --tw-ring-offset-color: rgb(23 23 23 / 0.2);
}

.ring-offset-gray-900\/25 {
  --tw-ring-offset-color: rgb(23 23 23 / 0.25);
}

.ring-offset-gray-900\/30 {
  --tw-ring-offset-color: rgb(23 23 23 / 0.3);
}

.ring-offset-gray-900\/35 {
  --tw-ring-offset-color: rgb(23 23 23 / 0.35);
}

.ring-offset-gray-900\/40 {
  --tw-ring-offset-color: rgb(23 23 23 / 0.4);
}

.ring-offset-gray-900\/45 {
  --tw-ring-offset-color: rgb(23 23 23 / 0.45);
}

.ring-offset-gray-900\/5 {
  --tw-ring-offset-color: rgb(23 23 23 / 0.05);
}

.ring-offset-gray-900\/50 {
  --tw-ring-offset-color: rgb(23 23 23 / 0.5);
}

.ring-offset-gray-900\/55 {
  --tw-ring-offset-color: rgb(23 23 23 / 0.55);
}

.ring-offset-gray-900\/60 {
  --tw-ring-offset-color: rgb(23 23 23 / 0.6);
}

.ring-offset-gray-900\/65 {
  --tw-ring-offset-color: rgb(23 23 23 / 0.65);
}

.ring-offset-gray-900\/70 {
  --tw-ring-offset-color: rgb(23 23 23 / 0.7);
}

.ring-offset-gray-900\/75 {
  --tw-ring-offset-color: rgb(23 23 23 / 0.75);
}

.ring-offset-gray-900\/80 {
  --tw-ring-offset-color: rgb(23 23 23 / 0.8);
}

.ring-offset-gray-900\/85 {
  --tw-ring-offset-color: rgb(23 23 23 / 0.85);
}

.ring-offset-gray-900\/90 {
  --tw-ring-offset-color: rgb(23 23 23 / 0.9);
}

.ring-offset-gray-900\/95 {
  --tw-ring-offset-color: rgb(23 23 23 / 0.95);
}

.ring-offset-gray-950 {
  --tw-ring-offset-color: #0a0a0a;
}

.ring-offset-gray-950\/0 {
  --tw-ring-offset-color: rgb(10 10 10 / 0);
}

.ring-offset-gray-950\/10 {
  --tw-ring-offset-color: rgb(10 10 10 / 0.1);
}

.ring-offset-gray-950\/100 {
  --tw-ring-offset-color: rgb(10 10 10 / 1);
}

.ring-offset-gray-950\/15 {
  --tw-ring-offset-color: rgb(10 10 10 / 0.15);
}

.ring-offset-gray-950\/20 {
  --tw-ring-offset-color: rgb(10 10 10 / 0.2);
}

.ring-offset-gray-950\/25 {
  --tw-ring-offset-color: rgb(10 10 10 / 0.25);
}

.ring-offset-gray-950\/30 {
  --tw-ring-offset-color: rgb(10 10 10 / 0.3);
}

.ring-offset-gray-950\/35 {
  --tw-ring-offset-color: rgb(10 10 10 / 0.35);
}

.ring-offset-gray-950\/40 {
  --tw-ring-offset-color: rgb(10 10 10 / 0.4);
}

.ring-offset-gray-950\/45 {
  --tw-ring-offset-color: rgb(10 10 10 / 0.45);
}

.ring-offset-gray-950\/5 {
  --tw-ring-offset-color: rgb(10 10 10 / 0.05);
}

.ring-offset-gray-950\/50 {
  --tw-ring-offset-color: rgb(10 10 10 / 0.5);
}

.ring-offset-gray-950\/55 {
  --tw-ring-offset-color: rgb(10 10 10 / 0.55);
}

.ring-offset-gray-950\/60 {
  --tw-ring-offset-color: rgb(10 10 10 / 0.6);
}

.ring-offset-gray-950\/65 {
  --tw-ring-offset-color: rgb(10 10 10 / 0.65);
}

.ring-offset-gray-950\/70 {
  --tw-ring-offset-color: rgb(10 10 10 / 0.7);
}

.ring-offset-gray-950\/75 {
  --tw-ring-offset-color: rgb(10 10 10 / 0.75);
}

.ring-offset-gray-950\/80 {
  --tw-ring-offset-color: rgb(10 10 10 / 0.8);
}

.ring-offset-gray-950\/85 {
  --tw-ring-offset-color: rgb(10 10 10 / 0.85);
}

.ring-offset-gray-950\/90 {
  --tw-ring-offset-color: rgb(10 10 10 / 0.9);
}

.ring-offset-gray-950\/95 {
  --tw-ring-offset-color: rgb(10 10 10 / 0.95);
}

.ring-offset-green-100 {
  --tw-ring-offset-color: #dcfce7;
}

.ring-offset-green-100\/0 {
  --tw-ring-offset-color: rgb(220 252 231 / 0);
}

.ring-offset-green-100\/10 {
  --tw-ring-offset-color: rgb(220 252 231 / 0.1);
}

.ring-offset-green-100\/100 {
  --tw-ring-offset-color: rgb(220 252 231 / 1);
}

.ring-offset-green-100\/15 {
  --tw-ring-offset-color: rgb(220 252 231 / 0.15);
}

.ring-offset-green-100\/20 {
  --tw-ring-offset-color: rgb(220 252 231 / 0.2);
}

.ring-offset-green-100\/25 {
  --tw-ring-offset-color: rgb(220 252 231 / 0.25);
}

.ring-offset-green-100\/30 {
  --tw-ring-offset-color: rgb(220 252 231 / 0.3);
}

.ring-offset-green-100\/35 {
  --tw-ring-offset-color: rgb(220 252 231 / 0.35);
}

.ring-offset-green-100\/40 {
  --tw-ring-offset-color: rgb(220 252 231 / 0.4);
}

.ring-offset-green-100\/45 {
  --tw-ring-offset-color: rgb(220 252 231 / 0.45);
}

.ring-offset-green-100\/5 {
  --tw-ring-offset-color: rgb(220 252 231 / 0.05);
}

.ring-offset-green-100\/50 {
  --tw-ring-offset-color: rgb(220 252 231 / 0.5);
}

.ring-offset-green-100\/55 {
  --tw-ring-offset-color: rgb(220 252 231 / 0.55);
}

.ring-offset-green-100\/60 {
  --tw-ring-offset-color: rgb(220 252 231 / 0.6);
}

.ring-offset-green-100\/65 {
  --tw-ring-offset-color: rgb(220 252 231 / 0.65);
}

.ring-offset-green-100\/70 {
  --tw-ring-offset-color: rgb(220 252 231 / 0.7);
}

.ring-offset-green-100\/75 {
  --tw-ring-offset-color: rgb(220 252 231 / 0.75);
}

.ring-offset-green-100\/80 {
  --tw-ring-offset-color: rgb(220 252 231 / 0.8);
}

.ring-offset-green-100\/85 {
  --tw-ring-offset-color: rgb(220 252 231 / 0.85);
}

.ring-offset-green-100\/90 {
  --tw-ring-offset-color: rgb(220 252 231 / 0.9);
}

.ring-offset-green-100\/95 {
  --tw-ring-offset-color: rgb(220 252 231 / 0.95);
}

.ring-offset-green-200 {
  --tw-ring-offset-color: #bbf7d0;
}

.ring-offset-green-200\/0 {
  --tw-ring-offset-color: rgb(187 247 208 / 0);
}

.ring-offset-green-200\/10 {
  --tw-ring-offset-color: rgb(187 247 208 / 0.1);
}

.ring-offset-green-200\/100 {
  --tw-ring-offset-color: rgb(187 247 208 / 1);
}

.ring-offset-green-200\/15 {
  --tw-ring-offset-color: rgb(187 247 208 / 0.15);
}

.ring-offset-green-200\/20 {
  --tw-ring-offset-color: rgb(187 247 208 / 0.2);
}

.ring-offset-green-200\/25 {
  --tw-ring-offset-color: rgb(187 247 208 / 0.25);
}

.ring-offset-green-200\/30 {
  --tw-ring-offset-color: rgb(187 247 208 / 0.3);
}

.ring-offset-green-200\/35 {
  --tw-ring-offset-color: rgb(187 247 208 / 0.35);
}

.ring-offset-green-200\/40 {
  --tw-ring-offset-color: rgb(187 247 208 / 0.4);
}

.ring-offset-green-200\/45 {
  --tw-ring-offset-color: rgb(187 247 208 / 0.45);
}

.ring-offset-green-200\/5 {
  --tw-ring-offset-color: rgb(187 247 208 / 0.05);
}

.ring-offset-green-200\/50 {
  --tw-ring-offset-color: rgb(187 247 208 / 0.5);
}

.ring-offset-green-200\/55 {
  --tw-ring-offset-color: rgb(187 247 208 / 0.55);
}

.ring-offset-green-200\/60 {
  --tw-ring-offset-color: rgb(187 247 208 / 0.6);
}

.ring-offset-green-200\/65 {
  --tw-ring-offset-color: rgb(187 247 208 / 0.65);
}

.ring-offset-green-200\/70 {
  --tw-ring-offset-color: rgb(187 247 208 / 0.7);
}

.ring-offset-green-200\/75 {
  --tw-ring-offset-color: rgb(187 247 208 / 0.75);
}

.ring-offset-green-200\/80 {
  --tw-ring-offset-color: rgb(187 247 208 / 0.8);
}

.ring-offset-green-200\/85 {
  --tw-ring-offset-color: rgb(187 247 208 / 0.85);
}

.ring-offset-green-200\/90 {
  --tw-ring-offset-color: rgb(187 247 208 / 0.9);
}

.ring-offset-green-200\/95 {
  --tw-ring-offset-color: rgb(187 247 208 / 0.95);
}

.ring-offset-green-300 {
  --tw-ring-offset-color: #86efac;
}

.ring-offset-green-300\/0 {
  --tw-ring-offset-color: rgb(134 239 172 / 0);
}

.ring-offset-green-300\/10 {
  --tw-ring-offset-color: rgb(134 239 172 / 0.1);
}

.ring-offset-green-300\/100 {
  --tw-ring-offset-color: rgb(134 239 172 / 1);
}

.ring-offset-green-300\/15 {
  --tw-ring-offset-color: rgb(134 239 172 / 0.15);
}

.ring-offset-green-300\/20 {
  --tw-ring-offset-color: rgb(134 239 172 / 0.2);
}

.ring-offset-green-300\/25 {
  --tw-ring-offset-color: rgb(134 239 172 / 0.25);
}

.ring-offset-green-300\/30 {
  --tw-ring-offset-color: rgb(134 239 172 / 0.3);
}

.ring-offset-green-300\/35 {
  --tw-ring-offset-color: rgb(134 239 172 / 0.35);
}

.ring-offset-green-300\/40 {
  --tw-ring-offset-color: rgb(134 239 172 / 0.4);
}

.ring-offset-green-300\/45 {
  --tw-ring-offset-color: rgb(134 239 172 / 0.45);
}

.ring-offset-green-300\/5 {
  --tw-ring-offset-color: rgb(134 239 172 / 0.05);
}

.ring-offset-green-300\/50 {
  --tw-ring-offset-color: rgb(134 239 172 / 0.5);
}

.ring-offset-green-300\/55 {
  --tw-ring-offset-color: rgb(134 239 172 / 0.55);
}

.ring-offset-green-300\/60 {
  --tw-ring-offset-color: rgb(134 239 172 / 0.6);
}

.ring-offset-green-300\/65 {
  --tw-ring-offset-color: rgb(134 239 172 / 0.65);
}

.ring-offset-green-300\/70 {
  --tw-ring-offset-color: rgb(134 239 172 / 0.7);
}

.ring-offset-green-300\/75 {
  --tw-ring-offset-color: rgb(134 239 172 / 0.75);
}

.ring-offset-green-300\/80 {
  --tw-ring-offset-color: rgb(134 239 172 / 0.8);
}

.ring-offset-green-300\/85 {
  --tw-ring-offset-color: rgb(134 239 172 / 0.85);
}

.ring-offset-green-300\/90 {
  --tw-ring-offset-color: rgb(134 239 172 / 0.9);
}

.ring-offset-green-300\/95 {
  --tw-ring-offset-color: rgb(134 239 172 / 0.95);
}

.ring-offset-green-400 {
  --tw-ring-offset-color: #4ade80;
}

.ring-offset-green-400\/0 {
  --tw-ring-offset-color: rgb(74 222 128 / 0);
}

.ring-offset-green-400\/10 {
  --tw-ring-offset-color: rgb(74 222 128 / 0.1);
}

.ring-offset-green-400\/100 {
  --tw-ring-offset-color: rgb(74 222 128 / 1);
}

.ring-offset-green-400\/15 {
  --tw-ring-offset-color: rgb(74 222 128 / 0.15);
}

.ring-offset-green-400\/20 {
  --tw-ring-offset-color: rgb(74 222 128 / 0.2);
}

.ring-offset-green-400\/25 {
  --tw-ring-offset-color: rgb(74 222 128 / 0.25);
}

.ring-offset-green-400\/30 {
  --tw-ring-offset-color: rgb(74 222 128 / 0.3);
}

.ring-offset-green-400\/35 {
  --tw-ring-offset-color: rgb(74 222 128 / 0.35);
}

.ring-offset-green-400\/40 {
  --tw-ring-offset-color: rgb(74 222 128 / 0.4);
}

.ring-offset-green-400\/45 {
  --tw-ring-offset-color: rgb(74 222 128 / 0.45);
}

.ring-offset-green-400\/5 {
  --tw-ring-offset-color: rgb(74 222 128 / 0.05);
}

.ring-offset-green-400\/50 {
  --tw-ring-offset-color: rgb(74 222 128 / 0.5);
}

.ring-offset-green-400\/55 {
  --tw-ring-offset-color: rgb(74 222 128 / 0.55);
}

.ring-offset-green-400\/60 {
  --tw-ring-offset-color: rgb(74 222 128 / 0.6);
}

.ring-offset-green-400\/65 {
  --tw-ring-offset-color: rgb(74 222 128 / 0.65);
}

.ring-offset-green-400\/70 {
  --tw-ring-offset-color: rgb(74 222 128 / 0.7);
}

.ring-offset-green-400\/75 {
  --tw-ring-offset-color: rgb(74 222 128 / 0.75);
}

.ring-offset-green-400\/80 {
  --tw-ring-offset-color: rgb(74 222 128 / 0.8);
}

.ring-offset-green-400\/85 {
  --tw-ring-offset-color: rgb(74 222 128 / 0.85);
}

.ring-offset-green-400\/90 {
  --tw-ring-offset-color: rgb(74 222 128 / 0.9);
}

.ring-offset-green-400\/95 {
  --tw-ring-offset-color: rgb(74 222 128 / 0.95);
}

.ring-offset-green-50 {
  --tw-ring-offset-color: #f0fdf4;
}

.ring-offset-green-50\/0 {
  --tw-ring-offset-color: rgb(240 253 244 / 0);
}

.ring-offset-green-50\/10 {
  --tw-ring-offset-color: rgb(240 253 244 / 0.1);
}

.ring-offset-green-50\/100 {
  --tw-ring-offset-color: rgb(240 253 244 / 1);
}

.ring-offset-green-50\/15 {
  --tw-ring-offset-color: rgb(240 253 244 / 0.15);
}

.ring-offset-green-50\/20 {
  --tw-ring-offset-color: rgb(240 253 244 / 0.2);
}

.ring-offset-green-50\/25 {
  --tw-ring-offset-color: rgb(240 253 244 / 0.25);
}

.ring-offset-green-50\/30 {
  --tw-ring-offset-color: rgb(240 253 244 / 0.3);
}

.ring-offset-green-50\/35 {
  --tw-ring-offset-color: rgb(240 253 244 / 0.35);
}

.ring-offset-green-50\/40 {
  --tw-ring-offset-color: rgb(240 253 244 / 0.4);
}

.ring-offset-green-50\/45 {
  --tw-ring-offset-color: rgb(240 253 244 / 0.45);
}

.ring-offset-green-50\/5 {
  --tw-ring-offset-color: rgb(240 253 244 / 0.05);
}

.ring-offset-green-50\/50 {
  --tw-ring-offset-color: rgb(240 253 244 / 0.5);
}

.ring-offset-green-50\/55 {
  --tw-ring-offset-color: rgb(240 253 244 / 0.55);
}

.ring-offset-green-50\/60 {
  --tw-ring-offset-color: rgb(240 253 244 / 0.6);
}

.ring-offset-green-50\/65 {
  --tw-ring-offset-color: rgb(240 253 244 / 0.65);
}

.ring-offset-green-50\/70 {
  --tw-ring-offset-color: rgb(240 253 244 / 0.7);
}

.ring-offset-green-50\/75 {
  --tw-ring-offset-color: rgb(240 253 244 / 0.75);
}

.ring-offset-green-50\/80 {
  --tw-ring-offset-color: rgb(240 253 244 / 0.8);
}

.ring-offset-green-50\/85 {
  --tw-ring-offset-color: rgb(240 253 244 / 0.85);
}

.ring-offset-green-50\/90 {
  --tw-ring-offset-color: rgb(240 253 244 / 0.9);
}

.ring-offset-green-50\/95 {
  --tw-ring-offset-color: rgb(240 253 244 / 0.95);
}

.ring-offset-green-500 {
  --tw-ring-offset-color: #22c55e;
}

.ring-offset-green-500\/0 {
  --tw-ring-offset-color: rgb(34 197 94 / 0);
}

.ring-offset-green-500\/10 {
  --tw-ring-offset-color: rgb(34 197 94 / 0.1);
}

.ring-offset-green-500\/100 {
  --tw-ring-offset-color: rgb(34 197 94 / 1);
}

.ring-offset-green-500\/15 {
  --tw-ring-offset-color: rgb(34 197 94 / 0.15);
}

.ring-offset-green-500\/20 {
  --tw-ring-offset-color: rgb(34 197 94 / 0.2);
}

.ring-offset-green-500\/25 {
  --tw-ring-offset-color: rgb(34 197 94 / 0.25);
}

.ring-offset-green-500\/30 {
  --tw-ring-offset-color: rgb(34 197 94 / 0.3);
}

.ring-offset-green-500\/35 {
  --tw-ring-offset-color: rgb(34 197 94 / 0.35);
}

.ring-offset-green-500\/40 {
  --tw-ring-offset-color: rgb(34 197 94 / 0.4);
}

.ring-offset-green-500\/45 {
  --tw-ring-offset-color: rgb(34 197 94 / 0.45);
}

.ring-offset-green-500\/5 {
  --tw-ring-offset-color: rgb(34 197 94 / 0.05);
}

.ring-offset-green-500\/50 {
  --tw-ring-offset-color: rgb(34 197 94 / 0.5);
}

.ring-offset-green-500\/55 {
  --tw-ring-offset-color: rgb(34 197 94 / 0.55);
}

.ring-offset-green-500\/60 {
  --tw-ring-offset-color: rgb(34 197 94 / 0.6);
}

.ring-offset-green-500\/65 {
  --tw-ring-offset-color: rgb(34 197 94 / 0.65);
}

.ring-offset-green-500\/70 {
  --tw-ring-offset-color: rgb(34 197 94 / 0.7);
}

.ring-offset-green-500\/75 {
  --tw-ring-offset-color: rgb(34 197 94 / 0.75);
}

.ring-offset-green-500\/80 {
  --tw-ring-offset-color: rgb(34 197 94 / 0.8);
}

.ring-offset-green-500\/85 {
  --tw-ring-offset-color: rgb(34 197 94 / 0.85);
}

.ring-offset-green-500\/90 {
  --tw-ring-offset-color: rgb(34 197 94 / 0.9);
}

.ring-offset-green-500\/95 {
  --tw-ring-offset-color: rgb(34 197 94 / 0.95);
}

.ring-offset-green-600 {
  --tw-ring-offset-color: #16a34a;
}

.ring-offset-green-600\/0 {
  --tw-ring-offset-color: rgb(22 163 74 / 0);
}

.ring-offset-green-600\/10 {
  --tw-ring-offset-color: rgb(22 163 74 / 0.1);
}

.ring-offset-green-600\/100 {
  --tw-ring-offset-color: rgb(22 163 74 / 1);
}

.ring-offset-green-600\/15 {
  --tw-ring-offset-color: rgb(22 163 74 / 0.15);
}

.ring-offset-green-600\/20 {
  --tw-ring-offset-color: rgb(22 163 74 / 0.2);
}

.ring-offset-green-600\/25 {
  --tw-ring-offset-color: rgb(22 163 74 / 0.25);
}

.ring-offset-green-600\/30 {
  --tw-ring-offset-color: rgb(22 163 74 / 0.3);
}

.ring-offset-green-600\/35 {
  --tw-ring-offset-color: rgb(22 163 74 / 0.35);
}

.ring-offset-green-600\/40 {
  --tw-ring-offset-color: rgb(22 163 74 / 0.4);
}

.ring-offset-green-600\/45 {
  --tw-ring-offset-color: rgb(22 163 74 / 0.45);
}

.ring-offset-green-600\/5 {
  --tw-ring-offset-color: rgb(22 163 74 / 0.05);
}

.ring-offset-green-600\/50 {
  --tw-ring-offset-color: rgb(22 163 74 / 0.5);
}

.ring-offset-green-600\/55 {
  --tw-ring-offset-color: rgb(22 163 74 / 0.55);
}

.ring-offset-green-600\/60 {
  --tw-ring-offset-color: rgb(22 163 74 / 0.6);
}

.ring-offset-green-600\/65 {
  --tw-ring-offset-color: rgb(22 163 74 / 0.65);
}

.ring-offset-green-600\/70 {
  --tw-ring-offset-color: rgb(22 163 74 / 0.7);
}

.ring-offset-green-600\/75 {
  --tw-ring-offset-color: rgb(22 163 74 / 0.75);
}

.ring-offset-green-600\/80 {
  --tw-ring-offset-color: rgb(22 163 74 / 0.8);
}

.ring-offset-green-600\/85 {
  --tw-ring-offset-color: rgb(22 163 74 / 0.85);
}

.ring-offset-green-600\/90 {
  --tw-ring-offset-color: rgb(22 163 74 / 0.9);
}

.ring-offset-green-600\/95 {
  --tw-ring-offset-color: rgb(22 163 74 / 0.95);
}

.ring-offset-green-700 {
  --tw-ring-offset-color: #15803d;
}

.ring-offset-green-700\/0 {
  --tw-ring-offset-color: rgb(21 128 61 / 0);
}

.ring-offset-green-700\/10 {
  --tw-ring-offset-color: rgb(21 128 61 / 0.1);
}

.ring-offset-green-700\/100 {
  --tw-ring-offset-color: rgb(21 128 61 / 1);
}

.ring-offset-green-700\/15 {
  --tw-ring-offset-color: rgb(21 128 61 / 0.15);
}

.ring-offset-green-700\/20 {
  --tw-ring-offset-color: rgb(21 128 61 / 0.2);
}

.ring-offset-green-700\/25 {
  --tw-ring-offset-color: rgb(21 128 61 / 0.25);
}

.ring-offset-green-700\/30 {
  --tw-ring-offset-color: rgb(21 128 61 / 0.3);
}

.ring-offset-green-700\/35 {
  --tw-ring-offset-color: rgb(21 128 61 / 0.35);
}

.ring-offset-green-700\/40 {
  --tw-ring-offset-color: rgb(21 128 61 / 0.4);
}

.ring-offset-green-700\/45 {
  --tw-ring-offset-color: rgb(21 128 61 / 0.45);
}

.ring-offset-green-700\/5 {
  --tw-ring-offset-color: rgb(21 128 61 / 0.05);
}

.ring-offset-green-700\/50 {
  --tw-ring-offset-color: rgb(21 128 61 / 0.5);
}

.ring-offset-green-700\/55 {
  --tw-ring-offset-color: rgb(21 128 61 / 0.55);
}

.ring-offset-green-700\/60 {
  --tw-ring-offset-color: rgb(21 128 61 / 0.6);
}

.ring-offset-green-700\/65 {
  --tw-ring-offset-color: rgb(21 128 61 / 0.65);
}

.ring-offset-green-700\/70 {
  --tw-ring-offset-color: rgb(21 128 61 / 0.7);
}

.ring-offset-green-700\/75 {
  --tw-ring-offset-color: rgb(21 128 61 / 0.75);
}

.ring-offset-green-700\/80 {
  --tw-ring-offset-color: rgb(21 128 61 / 0.8);
}

.ring-offset-green-700\/85 {
  --tw-ring-offset-color: rgb(21 128 61 / 0.85);
}

.ring-offset-green-700\/90 {
  --tw-ring-offset-color: rgb(21 128 61 / 0.9);
}

.ring-offset-green-700\/95 {
  --tw-ring-offset-color: rgb(21 128 61 / 0.95);
}

.ring-offset-green-800 {
  --tw-ring-offset-color: #166534;
}

.ring-offset-green-800\/0 {
  --tw-ring-offset-color: rgb(22 101 52 / 0);
}

.ring-offset-green-800\/10 {
  --tw-ring-offset-color: rgb(22 101 52 / 0.1);
}

.ring-offset-green-800\/100 {
  --tw-ring-offset-color: rgb(22 101 52 / 1);
}

.ring-offset-green-800\/15 {
  --tw-ring-offset-color: rgb(22 101 52 / 0.15);
}

.ring-offset-green-800\/20 {
  --tw-ring-offset-color: rgb(22 101 52 / 0.2);
}

.ring-offset-green-800\/25 {
  --tw-ring-offset-color: rgb(22 101 52 / 0.25);
}

.ring-offset-green-800\/30 {
  --tw-ring-offset-color: rgb(22 101 52 / 0.3);
}

.ring-offset-green-800\/35 {
  --tw-ring-offset-color: rgb(22 101 52 / 0.35);
}

.ring-offset-green-800\/40 {
  --tw-ring-offset-color: rgb(22 101 52 / 0.4);
}

.ring-offset-green-800\/45 {
  --tw-ring-offset-color: rgb(22 101 52 / 0.45);
}

.ring-offset-green-800\/5 {
  --tw-ring-offset-color: rgb(22 101 52 / 0.05);
}

.ring-offset-green-800\/50 {
  --tw-ring-offset-color: rgb(22 101 52 / 0.5);
}

.ring-offset-green-800\/55 {
  --tw-ring-offset-color: rgb(22 101 52 / 0.55);
}

.ring-offset-green-800\/60 {
  --tw-ring-offset-color: rgb(22 101 52 / 0.6);
}

.ring-offset-green-800\/65 {
  --tw-ring-offset-color: rgb(22 101 52 / 0.65);
}

.ring-offset-green-800\/70 {
  --tw-ring-offset-color: rgb(22 101 52 / 0.7);
}

.ring-offset-green-800\/75 {
  --tw-ring-offset-color: rgb(22 101 52 / 0.75);
}

.ring-offset-green-800\/80 {
  --tw-ring-offset-color: rgb(22 101 52 / 0.8);
}

.ring-offset-green-800\/85 {
  --tw-ring-offset-color: rgb(22 101 52 / 0.85);
}

.ring-offset-green-800\/90 {
  --tw-ring-offset-color: rgb(22 101 52 / 0.9);
}

.ring-offset-green-800\/95 {
  --tw-ring-offset-color: rgb(22 101 52 / 0.95);
}

.ring-offset-green-900 {
  --tw-ring-offset-color: #14532d;
}

.ring-offset-green-900\/0 {
  --tw-ring-offset-color: rgb(20 83 45 / 0);
}

.ring-offset-green-900\/10 {
  --tw-ring-offset-color: rgb(20 83 45 / 0.1);
}

.ring-offset-green-900\/100 {
  --tw-ring-offset-color: rgb(20 83 45 / 1);
}

.ring-offset-green-900\/15 {
  --tw-ring-offset-color: rgb(20 83 45 / 0.15);
}

.ring-offset-green-900\/20 {
  --tw-ring-offset-color: rgb(20 83 45 / 0.2);
}

.ring-offset-green-900\/25 {
  --tw-ring-offset-color: rgb(20 83 45 / 0.25);
}

.ring-offset-green-900\/30 {
  --tw-ring-offset-color: rgb(20 83 45 / 0.3);
}

.ring-offset-green-900\/35 {
  --tw-ring-offset-color: rgb(20 83 45 / 0.35);
}

.ring-offset-green-900\/40 {
  --tw-ring-offset-color: rgb(20 83 45 / 0.4);
}

.ring-offset-green-900\/45 {
  --tw-ring-offset-color: rgb(20 83 45 / 0.45);
}

.ring-offset-green-900\/5 {
  --tw-ring-offset-color: rgb(20 83 45 / 0.05);
}

.ring-offset-green-900\/50 {
  --tw-ring-offset-color: rgb(20 83 45 / 0.5);
}

.ring-offset-green-900\/55 {
  --tw-ring-offset-color: rgb(20 83 45 / 0.55);
}

.ring-offset-green-900\/60 {
  --tw-ring-offset-color: rgb(20 83 45 / 0.6);
}

.ring-offset-green-900\/65 {
  --tw-ring-offset-color: rgb(20 83 45 / 0.65);
}

.ring-offset-green-900\/70 {
  --tw-ring-offset-color: rgb(20 83 45 / 0.7);
}

.ring-offset-green-900\/75 {
  --tw-ring-offset-color: rgb(20 83 45 / 0.75);
}

.ring-offset-green-900\/80 {
  --tw-ring-offset-color: rgb(20 83 45 / 0.8);
}

.ring-offset-green-900\/85 {
  --tw-ring-offset-color: rgb(20 83 45 / 0.85);
}

.ring-offset-green-900\/90 {
  --tw-ring-offset-color: rgb(20 83 45 / 0.9);
}

.ring-offset-green-900\/95 {
  --tw-ring-offset-color: rgb(20 83 45 / 0.95);
}

.ring-offset-green-950 {
  --tw-ring-offset-color: #052e16;
}

.ring-offset-green-950\/0 {
  --tw-ring-offset-color: rgb(5 46 22 / 0);
}

.ring-offset-green-950\/10 {
  --tw-ring-offset-color: rgb(5 46 22 / 0.1);
}

.ring-offset-green-950\/100 {
  --tw-ring-offset-color: rgb(5 46 22 / 1);
}

.ring-offset-green-950\/15 {
  --tw-ring-offset-color: rgb(5 46 22 / 0.15);
}

.ring-offset-green-950\/20 {
  --tw-ring-offset-color: rgb(5 46 22 / 0.2);
}

.ring-offset-green-950\/25 {
  --tw-ring-offset-color: rgb(5 46 22 / 0.25);
}

.ring-offset-green-950\/30 {
  --tw-ring-offset-color: rgb(5 46 22 / 0.3);
}

.ring-offset-green-950\/35 {
  --tw-ring-offset-color: rgb(5 46 22 / 0.35);
}

.ring-offset-green-950\/40 {
  --tw-ring-offset-color: rgb(5 46 22 / 0.4);
}

.ring-offset-green-950\/45 {
  --tw-ring-offset-color: rgb(5 46 22 / 0.45);
}

.ring-offset-green-950\/5 {
  --tw-ring-offset-color: rgb(5 46 22 / 0.05);
}

.ring-offset-green-950\/50 {
  --tw-ring-offset-color: rgb(5 46 22 / 0.5);
}

.ring-offset-green-950\/55 {
  --tw-ring-offset-color: rgb(5 46 22 / 0.55);
}

.ring-offset-green-950\/60 {
  --tw-ring-offset-color: rgb(5 46 22 / 0.6);
}

.ring-offset-green-950\/65 {
  --tw-ring-offset-color: rgb(5 46 22 / 0.65);
}

.ring-offset-green-950\/70 {
  --tw-ring-offset-color: rgb(5 46 22 / 0.7);
}

.ring-offset-green-950\/75 {
  --tw-ring-offset-color: rgb(5 46 22 / 0.75);
}

.ring-offset-green-950\/80 {
  --tw-ring-offset-color: rgb(5 46 22 / 0.8);
}

.ring-offset-green-950\/85 {
  --tw-ring-offset-color: rgb(5 46 22 / 0.85);
}

.ring-offset-green-950\/90 {
  --tw-ring-offset-color: rgb(5 46 22 / 0.9);
}

.ring-offset-green-950\/95 {
  --tw-ring-offset-color: rgb(5 46 22 / 0.95);
}

.ring-offset-red-100 {
  --tw-ring-offset-color: #fee2e2;
}

.ring-offset-red-100\/0 {
  --tw-ring-offset-color: rgb(254 226 226 / 0);
}

.ring-offset-red-100\/10 {
  --tw-ring-offset-color: rgb(254 226 226 / 0.1);
}

.ring-offset-red-100\/100 {
  --tw-ring-offset-color: rgb(254 226 226 / 1);
}

.ring-offset-red-100\/15 {
  --tw-ring-offset-color: rgb(254 226 226 / 0.15);
}

.ring-offset-red-100\/20 {
  --tw-ring-offset-color: rgb(254 226 226 / 0.2);
}

.ring-offset-red-100\/25 {
  --tw-ring-offset-color: rgb(254 226 226 / 0.25);
}

.ring-offset-red-100\/30 {
  --tw-ring-offset-color: rgb(254 226 226 / 0.3);
}

.ring-offset-red-100\/35 {
  --tw-ring-offset-color: rgb(254 226 226 / 0.35);
}

.ring-offset-red-100\/40 {
  --tw-ring-offset-color: rgb(254 226 226 / 0.4);
}

.ring-offset-red-100\/45 {
  --tw-ring-offset-color: rgb(254 226 226 / 0.45);
}

.ring-offset-red-100\/5 {
  --tw-ring-offset-color: rgb(254 226 226 / 0.05);
}

.ring-offset-red-100\/50 {
  --tw-ring-offset-color: rgb(254 226 226 / 0.5);
}

.ring-offset-red-100\/55 {
  --tw-ring-offset-color: rgb(254 226 226 / 0.55);
}

.ring-offset-red-100\/60 {
  --tw-ring-offset-color: rgb(254 226 226 / 0.6);
}

.ring-offset-red-100\/65 {
  --tw-ring-offset-color: rgb(254 226 226 / 0.65);
}

.ring-offset-red-100\/70 {
  --tw-ring-offset-color: rgb(254 226 226 / 0.7);
}

.ring-offset-red-100\/75 {
  --tw-ring-offset-color: rgb(254 226 226 / 0.75);
}

.ring-offset-red-100\/80 {
  --tw-ring-offset-color: rgb(254 226 226 / 0.8);
}

.ring-offset-red-100\/85 {
  --tw-ring-offset-color: rgb(254 226 226 / 0.85);
}

.ring-offset-red-100\/90 {
  --tw-ring-offset-color: rgb(254 226 226 / 0.9);
}

.ring-offset-red-100\/95 {
  --tw-ring-offset-color: rgb(254 226 226 / 0.95);
}

.ring-offset-red-200 {
  --tw-ring-offset-color: #fecaca;
}

.ring-offset-red-200\/0 {
  --tw-ring-offset-color: rgb(254 202 202 / 0);
}

.ring-offset-red-200\/10 {
  --tw-ring-offset-color: rgb(254 202 202 / 0.1);
}

.ring-offset-red-200\/100 {
  --tw-ring-offset-color: rgb(254 202 202 / 1);
}

.ring-offset-red-200\/15 {
  --tw-ring-offset-color: rgb(254 202 202 / 0.15);
}

.ring-offset-red-200\/20 {
  --tw-ring-offset-color: rgb(254 202 202 / 0.2);
}

.ring-offset-red-200\/25 {
  --tw-ring-offset-color: rgb(254 202 202 / 0.25);
}

.ring-offset-red-200\/30 {
  --tw-ring-offset-color: rgb(254 202 202 / 0.3);
}

.ring-offset-red-200\/35 {
  --tw-ring-offset-color: rgb(254 202 202 / 0.35);
}

.ring-offset-red-200\/40 {
  --tw-ring-offset-color: rgb(254 202 202 / 0.4);
}

.ring-offset-red-200\/45 {
  --tw-ring-offset-color: rgb(254 202 202 / 0.45);
}

.ring-offset-red-200\/5 {
  --tw-ring-offset-color: rgb(254 202 202 / 0.05);
}

.ring-offset-red-200\/50 {
  --tw-ring-offset-color: rgb(254 202 202 / 0.5);
}

.ring-offset-red-200\/55 {
  --tw-ring-offset-color: rgb(254 202 202 / 0.55);
}

.ring-offset-red-200\/60 {
  --tw-ring-offset-color: rgb(254 202 202 / 0.6);
}

.ring-offset-red-200\/65 {
  --tw-ring-offset-color: rgb(254 202 202 / 0.65);
}

.ring-offset-red-200\/70 {
  --tw-ring-offset-color: rgb(254 202 202 / 0.7);
}

.ring-offset-red-200\/75 {
  --tw-ring-offset-color: rgb(254 202 202 / 0.75);
}

.ring-offset-red-200\/80 {
  --tw-ring-offset-color: rgb(254 202 202 / 0.8);
}

.ring-offset-red-200\/85 {
  --tw-ring-offset-color: rgb(254 202 202 / 0.85);
}

.ring-offset-red-200\/90 {
  --tw-ring-offset-color: rgb(254 202 202 / 0.9);
}

.ring-offset-red-200\/95 {
  --tw-ring-offset-color: rgb(254 202 202 / 0.95);
}

.ring-offset-red-300 {
  --tw-ring-offset-color: #fca5a5;
}

.ring-offset-red-300\/0 {
  --tw-ring-offset-color: rgb(252 165 165 / 0);
}

.ring-offset-red-300\/10 {
  --tw-ring-offset-color: rgb(252 165 165 / 0.1);
}

.ring-offset-red-300\/100 {
  --tw-ring-offset-color: rgb(252 165 165 / 1);
}

.ring-offset-red-300\/15 {
  --tw-ring-offset-color: rgb(252 165 165 / 0.15);
}

.ring-offset-red-300\/20 {
  --tw-ring-offset-color: rgb(252 165 165 / 0.2);
}

.ring-offset-red-300\/25 {
  --tw-ring-offset-color: rgb(252 165 165 / 0.25);
}

.ring-offset-red-300\/30 {
  --tw-ring-offset-color: rgb(252 165 165 / 0.3);
}

.ring-offset-red-300\/35 {
  --tw-ring-offset-color: rgb(252 165 165 / 0.35);
}

.ring-offset-red-300\/40 {
  --tw-ring-offset-color: rgb(252 165 165 / 0.4);
}

.ring-offset-red-300\/45 {
  --tw-ring-offset-color: rgb(252 165 165 / 0.45);
}

.ring-offset-red-300\/5 {
  --tw-ring-offset-color: rgb(252 165 165 / 0.05);
}

.ring-offset-red-300\/50 {
  --tw-ring-offset-color: rgb(252 165 165 / 0.5);
}

.ring-offset-red-300\/55 {
  --tw-ring-offset-color: rgb(252 165 165 / 0.55);
}

.ring-offset-red-300\/60 {
  --tw-ring-offset-color: rgb(252 165 165 / 0.6);
}

.ring-offset-red-300\/65 {
  --tw-ring-offset-color: rgb(252 165 165 / 0.65);
}

.ring-offset-red-300\/70 {
  --tw-ring-offset-color: rgb(252 165 165 / 0.7);
}

.ring-offset-red-300\/75 {
  --tw-ring-offset-color: rgb(252 165 165 / 0.75);
}

.ring-offset-red-300\/80 {
  --tw-ring-offset-color: rgb(252 165 165 / 0.8);
}

.ring-offset-red-300\/85 {
  --tw-ring-offset-color: rgb(252 165 165 / 0.85);
}

.ring-offset-red-300\/90 {
  --tw-ring-offset-color: rgb(252 165 165 / 0.9);
}

.ring-offset-red-300\/95 {
  --tw-ring-offset-color: rgb(252 165 165 / 0.95);
}

.ring-offset-red-400 {
  --tw-ring-offset-color: #f87171;
}

.ring-offset-red-400\/0 {
  --tw-ring-offset-color: rgb(248 113 113 / 0);
}

.ring-offset-red-400\/10 {
  --tw-ring-offset-color: rgb(248 113 113 / 0.1);
}

.ring-offset-red-400\/100 {
  --tw-ring-offset-color: rgb(248 113 113 / 1);
}

.ring-offset-red-400\/15 {
  --tw-ring-offset-color: rgb(248 113 113 / 0.15);
}

.ring-offset-red-400\/20 {
  --tw-ring-offset-color: rgb(248 113 113 / 0.2);
}

.ring-offset-red-400\/25 {
  --tw-ring-offset-color: rgb(248 113 113 / 0.25);
}

.ring-offset-red-400\/30 {
  --tw-ring-offset-color: rgb(248 113 113 / 0.3);
}

.ring-offset-red-400\/35 {
  --tw-ring-offset-color: rgb(248 113 113 / 0.35);
}

.ring-offset-red-400\/40 {
  --tw-ring-offset-color: rgb(248 113 113 / 0.4);
}

.ring-offset-red-400\/45 {
  --tw-ring-offset-color: rgb(248 113 113 / 0.45);
}

.ring-offset-red-400\/5 {
  --tw-ring-offset-color: rgb(248 113 113 / 0.05);
}

.ring-offset-red-400\/50 {
  --tw-ring-offset-color: rgb(248 113 113 / 0.5);
}

.ring-offset-red-400\/55 {
  --tw-ring-offset-color: rgb(248 113 113 / 0.55);
}

.ring-offset-red-400\/60 {
  --tw-ring-offset-color: rgb(248 113 113 / 0.6);
}

.ring-offset-red-400\/65 {
  --tw-ring-offset-color: rgb(248 113 113 / 0.65);
}

.ring-offset-red-400\/70 {
  --tw-ring-offset-color: rgb(248 113 113 / 0.7);
}

.ring-offset-red-400\/75 {
  --tw-ring-offset-color: rgb(248 113 113 / 0.75);
}

.ring-offset-red-400\/80 {
  --tw-ring-offset-color: rgb(248 113 113 / 0.8);
}

.ring-offset-red-400\/85 {
  --tw-ring-offset-color: rgb(248 113 113 / 0.85);
}

.ring-offset-red-400\/90 {
  --tw-ring-offset-color: rgb(248 113 113 / 0.9);
}

.ring-offset-red-400\/95 {
  --tw-ring-offset-color: rgb(248 113 113 / 0.95);
}

.ring-offset-red-50 {
  --tw-ring-offset-color: #fef2f2;
}

.ring-offset-red-50\/0 {
  --tw-ring-offset-color: rgb(254 242 242 / 0);
}

.ring-offset-red-50\/10 {
  --tw-ring-offset-color: rgb(254 242 242 / 0.1);
}

.ring-offset-red-50\/100 {
  --tw-ring-offset-color: rgb(254 242 242 / 1);
}

.ring-offset-red-50\/15 {
  --tw-ring-offset-color: rgb(254 242 242 / 0.15);
}

.ring-offset-red-50\/20 {
  --tw-ring-offset-color: rgb(254 242 242 / 0.2);
}

.ring-offset-red-50\/25 {
  --tw-ring-offset-color: rgb(254 242 242 / 0.25);
}

.ring-offset-red-50\/30 {
  --tw-ring-offset-color: rgb(254 242 242 / 0.3);
}

.ring-offset-red-50\/35 {
  --tw-ring-offset-color: rgb(254 242 242 / 0.35);
}

.ring-offset-red-50\/40 {
  --tw-ring-offset-color: rgb(254 242 242 / 0.4);
}

.ring-offset-red-50\/45 {
  --tw-ring-offset-color: rgb(254 242 242 / 0.45);
}

.ring-offset-red-50\/5 {
  --tw-ring-offset-color: rgb(254 242 242 / 0.05);
}

.ring-offset-red-50\/50 {
  --tw-ring-offset-color: rgb(254 242 242 / 0.5);
}

.ring-offset-red-50\/55 {
  --tw-ring-offset-color: rgb(254 242 242 / 0.55);
}

.ring-offset-red-50\/60 {
  --tw-ring-offset-color: rgb(254 242 242 / 0.6);
}

.ring-offset-red-50\/65 {
  --tw-ring-offset-color: rgb(254 242 242 / 0.65);
}

.ring-offset-red-50\/70 {
  --tw-ring-offset-color: rgb(254 242 242 / 0.7);
}

.ring-offset-red-50\/75 {
  --tw-ring-offset-color: rgb(254 242 242 / 0.75);
}

.ring-offset-red-50\/80 {
  --tw-ring-offset-color: rgb(254 242 242 / 0.8);
}

.ring-offset-red-50\/85 {
  --tw-ring-offset-color: rgb(254 242 242 / 0.85);
}

.ring-offset-red-50\/90 {
  --tw-ring-offset-color: rgb(254 242 242 / 0.9);
}

.ring-offset-red-50\/95 {
  --tw-ring-offset-color: rgb(254 242 242 / 0.95);
}

.ring-offset-red-500 {
  --tw-ring-offset-color: #ef4444;
}

.ring-offset-red-500\/0 {
  --tw-ring-offset-color: rgb(239 68 68 / 0);
}

.ring-offset-red-500\/10 {
  --tw-ring-offset-color: rgb(239 68 68 / 0.1);
}

.ring-offset-red-500\/100 {
  --tw-ring-offset-color: rgb(239 68 68 / 1);
}

.ring-offset-red-500\/15 {
  --tw-ring-offset-color: rgb(239 68 68 / 0.15);
}

.ring-offset-red-500\/20 {
  --tw-ring-offset-color: rgb(239 68 68 / 0.2);
}

.ring-offset-red-500\/25 {
  --tw-ring-offset-color: rgb(239 68 68 / 0.25);
}

.ring-offset-red-500\/30 {
  --tw-ring-offset-color: rgb(239 68 68 / 0.3);
}

.ring-offset-red-500\/35 {
  --tw-ring-offset-color: rgb(239 68 68 / 0.35);
}

.ring-offset-red-500\/40 {
  --tw-ring-offset-color: rgb(239 68 68 / 0.4);
}

.ring-offset-red-500\/45 {
  --tw-ring-offset-color: rgb(239 68 68 / 0.45);
}

.ring-offset-red-500\/5 {
  --tw-ring-offset-color: rgb(239 68 68 / 0.05);
}

.ring-offset-red-500\/50 {
  --tw-ring-offset-color: rgb(239 68 68 / 0.5);
}

.ring-offset-red-500\/55 {
  --tw-ring-offset-color: rgb(239 68 68 / 0.55);
}

.ring-offset-red-500\/60 {
  --tw-ring-offset-color: rgb(239 68 68 / 0.6);
}

.ring-offset-red-500\/65 {
  --tw-ring-offset-color: rgb(239 68 68 / 0.65);
}

.ring-offset-red-500\/70 {
  --tw-ring-offset-color: rgb(239 68 68 / 0.7);
}

.ring-offset-red-500\/75 {
  --tw-ring-offset-color: rgb(239 68 68 / 0.75);
}

.ring-offset-red-500\/80 {
  --tw-ring-offset-color: rgb(239 68 68 / 0.8);
}

.ring-offset-red-500\/85 {
  --tw-ring-offset-color: rgb(239 68 68 / 0.85);
}

.ring-offset-red-500\/90 {
  --tw-ring-offset-color: rgb(239 68 68 / 0.9);
}

.ring-offset-red-500\/95 {
  --tw-ring-offset-color: rgb(239 68 68 / 0.95);
}

.ring-offset-red-600 {
  --tw-ring-offset-color: #dc2626;
}

.ring-offset-red-600\/0 {
  --tw-ring-offset-color: rgb(220 38 38 / 0);
}

.ring-offset-red-600\/10 {
  --tw-ring-offset-color: rgb(220 38 38 / 0.1);
}

.ring-offset-red-600\/100 {
  --tw-ring-offset-color: rgb(220 38 38 / 1);
}

.ring-offset-red-600\/15 {
  --tw-ring-offset-color: rgb(220 38 38 / 0.15);
}

.ring-offset-red-600\/20 {
  --tw-ring-offset-color: rgb(220 38 38 / 0.2);
}

.ring-offset-red-600\/25 {
  --tw-ring-offset-color: rgb(220 38 38 / 0.25);
}

.ring-offset-red-600\/30 {
  --tw-ring-offset-color: rgb(220 38 38 / 0.3);
}

.ring-offset-red-600\/35 {
  --tw-ring-offset-color: rgb(220 38 38 / 0.35);
}

.ring-offset-red-600\/40 {
  --tw-ring-offset-color: rgb(220 38 38 / 0.4);
}

.ring-offset-red-600\/45 {
  --tw-ring-offset-color: rgb(220 38 38 / 0.45);
}

.ring-offset-red-600\/5 {
  --tw-ring-offset-color: rgb(220 38 38 / 0.05);
}

.ring-offset-red-600\/50 {
  --tw-ring-offset-color: rgb(220 38 38 / 0.5);
}

.ring-offset-red-600\/55 {
  --tw-ring-offset-color: rgb(220 38 38 / 0.55);
}

.ring-offset-red-600\/60 {
  --tw-ring-offset-color: rgb(220 38 38 / 0.6);
}

.ring-offset-red-600\/65 {
  --tw-ring-offset-color: rgb(220 38 38 / 0.65);
}

.ring-offset-red-600\/70 {
  --tw-ring-offset-color: rgb(220 38 38 / 0.7);
}

.ring-offset-red-600\/75 {
  --tw-ring-offset-color: rgb(220 38 38 / 0.75);
}

.ring-offset-red-600\/80 {
  --tw-ring-offset-color: rgb(220 38 38 / 0.8);
}

.ring-offset-red-600\/85 {
  --tw-ring-offset-color: rgb(220 38 38 / 0.85);
}

.ring-offset-red-600\/90 {
  --tw-ring-offset-color: rgb(220 38 38 / 0.9);
}

.ring-offset-red-600\/95 {
  --tw-ring-offset-color: rgb(220 38 38 / 0.95);
}

.ring-offset-red-700 {
  --tw-ring-offset-color: #b91c1c;
}

.ring-offset-red-700\/0 {
  --tw-ring-offset-color: rgb(185 28 28 / 0);
}

.ring-offset-red-700\/10 {
  --tw-ring-offset-color: rgb(185 28 28 / 0.1);
}

.ring-offset-red-700\/100 {
  --tw-ring-offset-color: rgb(185 28 28 / 1);
}

.ring-offset-red-700\/15 {
  --tw-ring-offset-color: rgb(185 28 28 / 0.15);
}

.ring-offset-red-700\/20 {
  --tw-ring-offset-color: rgb(185 28 28 / 0.2);
}

.ring-offset-red-700\/25 {
  --tw-ring-offset-color: rgb(185 28 28 / 0.25);
}

.ring-offset-red-700\/30 {
  --tw-ring-offset-color: rgb(185 28 28 / 0.3);
}

.ring-offset-red-700\/35 {
  --tw-ring-offset-color: rgb(185 28 28 / 0.35);
}

.ring-offset-red-700\/40 {
  --tw-ring-offset-color: rgb(185 28 28 / 0.4);
}

.ring-offset-red-700\/45 {
  --tw-ring-offset-color: rgb(185 28 28 / 0.45);
}

.ring-offset-red-700\/5 {
  --tw-ring-offset-color: rgb(185 28 28 / 0.05);
}

.ring-offset-red-700\/50 {
  --tw-ring-offset-color: rgb(185 28 28 / 0.5);
}

.ring-offset-red-700\/55 {
  --tw-ring-offset-color: rgb(185 28 28 / 0.55);
}

.ring-offset-red-700\/60 {
  --tw-ring-offset-color: rgb(185 28 28 / 0.6);
}

.ring-offset-red-700\/65 {
  --tw-ring-offset-color: rgb(185 28 28 / 0.65);
}

.ring-offset-red-700\/70 {
  --tw-ring-offset-color: rgb(185 28 28 / 0.7);
}

.ring-offset-red-700\/75 {
  --tw-ring-offset-color: rgb(185 28 28 / 0.75);
}

.ring-offset-red-700\/80 {
  --tw-ring-offset-color: rgb(185 28 28 / 0.8);
}

.ring-offset-red-700\/85 {
  --tw-ring-offset-color: rgb(185 28 28 / 0.85);
}

.ring-offset-red-700\/90 {
  --tw-ring-offset-color: rgb(185 28 28 / 0.9);
}

.ring-offset-red-700\/95 {
  --tw-ring-offset-color: rgb(185 28 28 / 0.95);
}

.ring-offset-red-800 {
  --tw-ring-offset-color: #991b1b;
}

.ring-offset-red-800\/0 {
  --tw-ring-offset-color: rgb(153 27 27 / 0);
}

.ring-offset-red-800\/10 {
  --tw-ring-offset-color: rgb(153 27 27 / 0.1);
}

.ring-offset-red-800\/100 {
  --tw-ring-offset-color: rgb(153 27 27 / 1);
}

.ring-offset-red-800\/15 {
  --tw-ring-offset-color: rgb(153 27 27 / 0.15);
}

.ring-offset-red-800\/20 {
  --tw-ring-offset-color: rgb(153 27 27 / 0.2);
}

.ring-offset-red-800\/25 {
  --tw-ring-offset-color: rgb(153 27 27 / 0.25);
}

.ring-offset-red-800\/30 {
  --tw-ring-offset-color: rgb(153 27 27 / 0.3);
}

.ring-offset-red-800\/35 {
  --tw-ring-offset-color: rgb(153 27 27 / 0.35);
}

.ring-offset-red-800\/40 {
  --tw-ring-offset-color: rgb(153 27 27 / 0.4);
}

.ring-offset-red-800\/45 {
  --tw-ring-offset-color: rgb(153 27 27 / 0.45);
}

.ring-offset-red-800\/5 {
  --tw-ring-offset-color: rgb(153 27 27 / 0.05);
}

.ring-offset-red-800\/50 {
  --tw-ring-offset-color: rgb(153 27 27 / 0.5);
}

.ring-offset-red-800\/55 {
  --tw-ring-offset-color: rgb(153 27 27 / 0.55);
}

.ring-offset-red-800\/60 {
  --tw-ring-offset-color: rgb(153 27 27 / 0.6);
}

.ring-offset-red-800\/65 {
  --tw-ring-offset-color: rgb(153 27 27 / 0.65);
}

.ring-offset-red-800\/70 {
  --tw-ring-offset-color: rgb(153 27 27 / 0.7);
}

.ring-offset-red-800\/75 {
  --tw-ring-offset-color: rgb(153 27 27 / 0.75);
}

.ring-offset-red-800\/80 {
  --tw-ring-offset-color: rgb(153 27 27 / 0.8);
}

.ring-offset-red-800\/85 {
  --tw-ring-offset-color: rgb(153 27 27 / 0.85);
}

.ring-offset-red-800\/90 {
  --tw-ring-offset-color: rgb(153 27 27 / 0.9);
}

.ring-offset-red-800\/95 {
  --tw-ring-offset-color: rgb(153 27 27 / 0.95);
}

.ring-offset-red-900 {
  --tw-ring-offset-color: #7f1d1d;
}

.ring-offset-red-900\/0 {
  --tw-ring-offset-color: rgb(127 29 29 / 0);
}

.ring-offset-red-900\/10 {
  --tw-ring-offset-color: rgb(127 29 29 / 0.1);
}

.ring-offset-red-900\/100 {
  --tw-ring-offset-color: rgb(127 29 29 / 1);
}

.ring-offset-red-900\/15 {
  --tw-ring-offset-color: rgb(127 29 29 / 0.15);
}

.ring-offset-red-900\/20 {
  --tw-ring-offset-color: rgb(127 29 29 / 0.2);
}

.ring-offset-red-900\/25 {
  --tw-ring-offset-color: rgb(127 29 29 / 0.25);
}

.ring-offset-red-900\/30 {
  --tw-ring-offset-color: rgb(127 29 29 / 0.3);
}

.ring-offset-red-900\/35 {
  --tw-ring-offset-color: rgb(127 29 29 / 0.35);
}

.ring-offset-red-900\/40 {
  --tw-ring-offset-color: rgb(127 29 29 / 0.4);
}

.ring-offset-red-900\/45 {
  --tw-ring-offset-color: rgb(127 29 29 / 0.45);
}

.ring-offset-red-900\/5 {
  --tw-ring-offset-color: rgb(127 29 29 / 0.05);
}

.ring-offset-red-900\/50 {
  --tw-ring-offset-color: rgb(127 29 29 / 0.5);
}

.ring-offset-red-900\/55 {
  --tw-ring-offset-color: rgb(127 29 29 / 0.55);
}

.ring-offset-red-900\/60 {
  --tw-ring-offset-color: rgb(127 29 29 / 0.6);
}

.ring-offset-red-900\/65 {
  --tw-ring-offset-color: rgb(127 29 29 / 0.65);
}

.ring-offset-red-900\/70 {
  --tw-ring-offset-color: rgb(127 29 29 / 0.7);
}

.ring-offset-red-900\/75 {
  --tw-ring-offset-color: rgb(127 29 29 / 0.75);
}

.ring-offset-red-900\/80 {
  --tw-ring-offset-color: rgb(127 29 29 / 0.8);
}

.ring-offset-red-900\/85 {
  --tw-ring-offset-color: rgb(127 29 29 / 0.85);
}

.ring-offset-red-900\/90 {
  --tw-ring-offset-color: rgb(127 29 29 / 0.9);
}

.ring-offset-red-900\/95 {
  --tw-ring-offset-color: rgb(127 29 29 / 0.95);
}

.ring-offset-red-950 {
  --tw-ring-offset-color: #450a0a;
}

.ring-offset-red-950\/0 {
  --tw-ring-offset-color: rgb(69 10 10 / 0);
}

.ring-offset-red-950\/10 {
  --tw-ring-offset-color: rgb(69 10 10 / 0.1);
}

.ring-offset-red-950\/100 {
  --tw-ring-offset-color: rgb(69 10 10 / 1);
}

.ring-offset-red-950\/15 {
  --tw-ring-offset-color: rgb(69 10 10 / 0.15);
}

.ring-offset-red-950\/20 {
  --tw-ring-offset-color: rgb(69 10 10 / 0.2);
}

.ring-offset-red-950\/25 {
  --tw-ring-offset-color: rgb(69 10 10 / 0.25);
}

.ring-offset-red-950\/30 {
  --tw-ring-offset-color: rgb(69 10 10 / 0.3);
}

.ring-offset-red-950\/35 {
  --tw-ring-offset-color: rgb(69 10 10 / 0.35);
}

.ring-offset-red-950\/40 {
  --tw-ring-offset-color: rgb(69 10 10 / 0.4);
}

.ring-offset-red-950\/45 {
  --tw-ring-offset-color: rgb(69 10 10 / 0.45);
}

.ring-offset-red-950\/5 {
  --tw-ring-offset-color: rgb(69 10 10 / 0.05);
}

.ring-offset-red-950\/50 {
  --tw-ring-offset-color: rgb(69 10 10 / 0.5);
}

.ring-offset-red-950\/55 {
  --tw-ring-offset-color: rgb(69 10 10 / 0.55);
}

.ring-offset-red-950\/60 {
  --tw-ring-offset-color: rgb(69 10 10 / 0.6);
}

.ring-offset-red-950\/65 {
  --tw-ring-offset-color: rgb(69 10 10 / 0.65);
}

.ring-offset-red-950\/70 {
  --tw-ring-offset-color: rgb(69 10 10 / 0.7);
}

.ring-offset-red-950\/75 {
  --tw-ring-offset-color: rgb(69 10 10 / 0.75);
}

.ring-offset-red-950\/80 {
  --tw-ring-offset-color: rgb(69 10 10 / 0.8);
}

.ring-offset-red-950\/85 {
  --tw-ring-offset-color: rgb(69 10 10 / 0.85);
}

.ring-offset-red-950\/90 {
  --tw-ring-offset-color: rgb(69 10 10 / 0.9);
}

.ring-offset-red-950\/95 {
  --tw-ring-offset-color: rgb(69 10 10 / 0.95);
}

.ring-offset-transparent {
  --tw-ring-offset-color: transparent;
}

.ring-offset-transparent\/0 {
  --tw-ring-offset-color: rgb(0 0 0 / 0);
}

.ring-offset-transparent\/10 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.1);
}

.ring-offset-transparent\/100 {
  --tw-ring-offset-color: rgb(0 0 0 / 1);
}

.ring-offset-transparent\/15 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.15);
}

.ring-offset-transparent\/20 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.2);
}

.ring-offset-transparent\/25 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.25);
}

.ring-offset-transparent\/30 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.3);
}

.ring-offset-transparent\/35 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.35);
}

.ring-offset-transparent\/40 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.4);
}

.ring-offset-transparent\/45 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.45);
}

.ring-offset-transparent\/5 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.05);
}

.ring-offset-transparent\/50 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.5);
}

.ring-offset-transparent\/55 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.55);
}

.ring-offset-transparent\/60 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.6);
}

.ring-offset-transparent\/65 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.65);
}

.ring-offset-transparent\/70 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.7);
}

.ring-offset-transparent\/75 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.75);
}

.ring-offset-transparent\/80 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.8);
}

.ring-offset-transparent\/85 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.85);
}

.ring-offset-transparent\/90 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.9);
}

.ring-offset-transparent\/95 {
  --tw-ring-offset-color: rgb(0 0 0 / 0.95);
}

.ring-offset-white {
  --tw-ring-offset-color: #fff;
}

.ring-offset-white\/0 {
  --tw-ring-offset-color: rgb(255 255 255 / 0);
}

.ring-offset-white\/10 {
  --tw-ring-offset-color: rgb(255 255 255 / 0.1);
}

.ring-offset-white\/100 {
  --tw-ring-offset-color: rgb(255 255 255 / 1);
}

.ring-offset-white\/15 {
  --tw-ring-offset-color: rgb(255 255 255 / 0.15);
}

.ring-offset-white\/20 {
  --tw-ring-offset-color: rgb(255 255 255 / 0.2);
}

.ring-offset-white\/25 {
  --tw-ring-offset-color: rgb(255 255 255 / 0.25);
}

.ring-offset-white\/30 {
  --tw-ring-offset-color: rgb(255 255 255 / 0.3);
}

.ring-offset-white\/35 {
  --tw-ring-offset-color: rgb(255 255 255 / 0.35);
}

.ring-offset-white\/40 {
  --tw-ring-offset-color: rgb(255 255 255 / 0.4);
}

.ring-offset-white\/45 {
  --tw-ring-offset-color: rgb(255 255 255 / 0.45);
}

.ring-offset-white\/5 {
  --tw-ring-offset-color: rgb(255 255 255 / 0.05);
}

.ring-offset-white\/50 {
  --tw-ring-offset-color: rgb(255 255 255 / 0.5);
}

.ring-offset-white\/55 {
  --tw-ring-offset-color: rgb(255 255 255 / 0.55);
}

.ring-offset-white\/60 {
  --tw-ring-offset-color: rgb(255 255 255 / 0.6);
}

.ring-offset-white\/65 {
  --tw-ring-offset-color: rgb(255 255 255 / 0.65);
}

.ring-offset-white\/70 {
  --tw-ring-offset-color: rgb(255 255 255 / 0.7);
}

.ring-offset-white\/75 {
  --tw-ring-offset-color: rgb(255 255 255 / 0.75);
}

.ring-offset-white\/80 {
  --tw-ring-offset-color: rgb(255 255 255 / 0.8);
}

.ring-offset-white\/85 {
  --tw-ring-offset-color: rgb(255 255 255 / 0.85);
}

.ring-offset-white\/90 {
  --tw-ring-offset-color: rgb(255 255 255 / 0.9);
}

.ring-offset-white\/95 {
  --tw-ring-offset-color: rgb(255 255 255 / 0.95);
}

.blur {
  --tw-blur: blur(8px);
  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);
}

.blur-0 {
  --tw-blur: blur(0);
  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);
}

.blur-2xl {
  --tw-blur: blur(40px);
  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);
}

.blur-3xl {
  --tw-blur: blur(64px);
  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);
}

.blur-lg {
  --tw-blur: blur(16px);
  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);
}

.blur-md {
  --tw-blur: blur(12px);
  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);
}

.blur-none {
  --tw-blur:  ;
  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);
}

.blur-sm {
  --tw-blur: blur(4px);
  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);
}

.blur-xl {
  --tw-blur: blur(24px);
  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);
}

.brightness-0 {
  --tw-brightness: brightness(0);
  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);
}

.brightness-100 {
  --tw-brightness: brightness(1);
  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);
}

.brightness-105 {
  --tw-brightness: brightness(1.05);
  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);
}

.brightness-110 {
  --tw-brightness: brightness(1.1);
  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);
}

.brightness-125 {
  --tw-brightness: brightness(1.25);
  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);
}

.brightness-150 {
  --tw-brightness: brightness(1.5);
  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);
}

.brightness-200 {
  --tw-brightness: brightness(2);
  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);
}

.brightness-50 {
  --tw-brightness: brightness(.5);
  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);
}

.brightness-75 {
  --tw-brightness: brightness(.75);
  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);
}

.brightness-90 {
  --tw-brightness: brightness(.9);
  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);
}

.brightness-95 {
  --tw-brightness: brightness(.95);
  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);
}

.contrast-0 {
  --tw-contrast: contrast(0);
  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);
}

.contrast-100 {
  --tw-contrast: contrast(1);
  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);
}

.contrast-125 {
  --tw-contrast: contrast(1.25);
  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);
}

.contrast-150 {
  --tw-contrast: contrast(1.5);
  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);
}

.contrast-200 {
  --tw-contrast: contrast(2);
  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);
}

.contrast-50 {
  --tw-contrast: contrast(.5);
  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);
}

.contrast-75 {
  --tw-contrast: contrast(.75);
  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);
}

.drop-shadow {
  --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(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);
}

.drop-shadow-2xl {
  --tw-drop-shadow: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
  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);
}

.drop-shadow-lg {
  --tw-drop-shadow: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
  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);
}

.drop-shadow-md {
  --tw-drop-shadow: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(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);
}

.drop-shadow-none {
  --tw-drop-shadow: drop-shadow(0 0 #0000);
  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);
}

.drop-shadow-sm {
  --tw-drop-shadow: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05));
  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);
}

.drop-shadow-xl {
  --tw-drop-shadow: drop-shadow(0 20px 13px rgb(0 0 0 / 0.03)) drop-shadow(0 8px 5px rgb(0 0 0 / 0.08));
  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);
}

.grayscale {
  --tw-grayscale: grayscale(100%);
  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);
}

.grayscale-0 {
  --tw-grayscale: grayscale(0);
  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);
}

.-hue-rotate-0 {
  --tw-hue-rotate: hue-rotate(-0deg);
  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);
}

.-hue-rotate-15 {
  --tw-hue-rotate: hue-rotate(-15deg);
  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);
}

.-hue-rotate-180 {
  --tw-hue-rotate: hue-rotate(-180deg);
  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);
}

.-hue-rotate-30 {
  --tw-hue-rotate: hue-rotate(-30deg);
  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);
}

.-hue-rotate-60 {
  --tw-hue-rotate: hue-rotate(-60deg);
  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);
}

.-hue-rotate-90 {
  --tw-hue-rotate: hue-rotate(-90deg);
  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);
}

.hue-rotate-0 {
  --tw-hue-rotate: hue-rotate(0deg);
  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);
}

.hue-rotate-15 {
  --tw-hue-rotate: hue-rotate(15deg);
  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);
}

.hue-rotate-180 {
  --tw-hue-rotate: hue-rotate(180deg);
  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);
}

.hue-rotate-30 {
  --tw-hue-rotate: hue-rotate(30deg);
  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);
}

.hue-rotate-60 {
  --tw-hue-rotate: hue-rotate(60deg);
  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);
}

.hue-rotate-90 {
  --tw-hue-rotate: hue-rotate(90deg);
  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);
}

.invert {
  --tw-invert: invert(100%);
  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);
}

.invert-0 {
  --tw-invert: invert(0);
  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);
}

.saturate-0 {
  --tw-saturate: saturate(0);
  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);
}

.saturate-100 {
  --tw-saturate: saturate(1);
  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);
}

.saturate-150 {
  --tw-saturate: saturate(1.5);
  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);
}

.saturate-200 {
  --tw-saturate: saturate(2);
  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);
}

.saturate-50 {
  --tw-saturate: saturate(.5);
  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);
}

.sepia {
  --tw-sepia: sepia(100%);
  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);
}

.sepia-0 {
  --tw-sepia: sepia(0);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.filter-none {
  filter: none;
}

.backdrop-blur {
  --tw-backdrop-blur: blur(8px);
  -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: 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-blur-0 {
  --tw-backdrop-blur: blur(0);
  -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: 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-blur-2xl {
  --tw-backdrop-blur: blur(40px);
  -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: 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-blur-3xl {
  --tw-backdrop-blur: blur(64px);
  -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: 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-blur-lg {
  --tw-backdrop-blur: blur(16px);
  -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: 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-blur-md {
  --tw-backdrop-blur: blur(12px);
  -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: 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-blur-none {
  --tw-backdrop-blur:  ;
  -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: 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-blur-sm {
  --tw-backdrop-blur: blur(4px);
  -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: 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-blur-xl {
  --tw-backdrop-blur: blur(24px);
  -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: 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-brightness-0 {
  --tw-backdrop-brightness: brightness(0);
  -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: 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-brightness-100 {
  --tw-backdrop-brightness: brightness(1);
  -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: 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-brightness-105 {
  --tw-backdrop-brightness: brightness(1.05);
  -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: 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-brightness-110 {
  --tw-backdrop-brightness: brightness(1.1);
  -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: 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-brightness-125 {
  --tw-backdrop-brightness: brightness(1.25);
  -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: 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-brightness-150 {
  --tw-backdrop-brightness: brightness(1.5);
  -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: 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-brightness-200 {
  --tw-backdrop-brightness: brightness(2);
  -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: 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-brightness-50 {
  --tw-backdrop-brightness: brightness(.5);
  -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: 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-brightness-75 {
  --tw-backdrop-brightness: brightness(.75);
  -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: 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-brightness-90 {
  --tw-backdrop-brightness: brightness(.9);
  -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: 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-brightness-95 {
  --tw-backdrop-brightness: brightness(.95);
  -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: 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-contrast-0 {
  --tw-backdrop-contrast: contrast(0);
  -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: 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-contrast-100 {
  --tw-backdrop-contrast: contrast(1);
  -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: 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-contrast-125 {
  --tw-backdrop-contrast: contrast(1.25);
  -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: 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-contrast-150 {
  --tw-backdrop-contrast: contrast(1.5);
  -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: 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-contrast-200 {
  --tw-backdrop-contrast: contrast(2);
  -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: 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-contrast-50 {
  --tw-backdrop-contrast: contrast(.5);
  -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: 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-contrast-75 {
  --tw-backdrop-contrast: contrast(.75);
  -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: 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-grayscale {
  --tw-backdrop-grayscale: grayscale(100%);
  -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: 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-grayscale-0 {
  --tw-backdrop-grayscale: grayscale(0);
  -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: 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-hue-rotate-0 {
  --tw-backdrop-hue-rotate: hue-rotate(-0deg);
  -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: 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-hue-rotate-15 {
  --tw-backdrop-hue-rotate: hue-rotate(-15deg);
  -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: 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-hue-rotate-180 {
  --tw-backdrop-hue-rotate: hue-rotate(-180deg);
  -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: 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-hue-rotate-30 {
  --tw-backdrop-hue-rotate: hue-rotate(-30deg);
  -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: 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-hue-rotate-60 {
  --tw-backdrop-hue-rotate: hue-rotate(-60deg);
  -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: 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-hue-rotate-90 {
  --tw-backdrop-hue-rotate: hue-rotate(-90deg);
  -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: 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-hue-rotate-0 {
  --tw-backdrop-hue-rotate: hue-rotate(0deg);
  -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: 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-hue-rotate-15 {
  --tw-backdrop-hue-rotate: hue-rotate(15deg);
  -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: 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-hue-rotate-180 {
  --tw-backdrop-hue-rotate: hue-rotate(180deg);
  -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: 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-hue-rotate-30 {
  --tw-backdrop-hue-rotate: hue-rotate(30deg);
  -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: 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-hue-rotate-60 {
  --tw-backdrop-hue-rotate: hue-rotate(60deg);
  -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: 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-hue-rotate-90 {
  --tw-backdrop-hue-rotate: hue-rotate(90deg);
  -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: 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-invert {
  --tw-backdrop-invert: invert(100%);
  -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: 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-invert-0 {
  --tw-backdrop-invert: invert(0);
  -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: 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-opacity-0 {
  --tw-backdrop-opacity: opacity(0);
  -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: 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-opacity-10 {
  --tw-backdrop-opacity: opacity(0.1);
  -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: 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-opacity-100 {
  --tw-backdrop-opacity: opacity(1);
  -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: 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-opacity-15 {
  --tw-backdrop-opacity: opacity(0.15);
  -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: 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-opacity-20 {
  --tw-backdrop-opacity: opacity(0.2);
  -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: 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-opacity-25 {
  --tw-backdrop-opacity: opacity(0.25);
  -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: 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-opacity-30 {
  --tw-backdrop-opacity: opacity(0.3);
  -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: 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-opacity-35 {
  --tw-backdrop-opacity: opacity(0.35);
  -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: 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-opacity-40 {
  --tw-backdrop-opacity: opacity(0.4);
  -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: 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-opacity-45 {
  --tw-backdrop-opacity: opacity(0.45);
  -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: 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-opacity-5 {
  --tw-backdrop-opacity: opacity(0.05);
  -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: 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-opacity-50 {
  --tw-backdrop-opacity: opacity(0.5);
  -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: 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-opacity-55 {
  --tw-backdrop-opacity: opacity(0.55);
  -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: 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-opacity-60 {
  --tw-backdrop-opacity: opacity(0.6);
  -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: 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-opacity-65 {
  --tw-backdrop-opacity: opacity(0.65);
  -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: 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-opacity-70 {
  --tw-backdrop-opacity: opacity(0.7);
  -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: 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-opacity-75 {
  --tw-backdrop-opacity: opacity(0.75);
  -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: 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-opacity-80 {
  --tw-backdrop-opacity: opacity(0.8);
  -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: 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-opacity-85 {
  --tw-backdrop-opacity: opacity(0.85);
  -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: 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-opacity-90 {
  --tw-backdrop-opacity: opacity(0.9);
  -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: 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-opacity-95 {
  --tw-backdrop-opacity: opacity(0.95);
  -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: 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-saturate-0 {
  --tw-backdrop-saturate: saturate(0);
  -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: 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-saturate-100 {
  --tw-backdrop-saturate: saturate(1);
  -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: 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-saturate-150 {
  --tw-backdrop-saturate: saturate(1.5);
  -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: 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-saturate-200 {
  --tw-backdrop-saturate: saturate(2);
  -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: 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-saturate-50 {
  --tw-backdrop-saturate: saturate(.5);
  -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: 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-sepia {
  --tw-backdrop-sepia: sepia(100%);
  -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: 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-sepia-0 {
  --tw-backdrop-sepia: sepia(0);
  -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: 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 {
  -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: 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-none {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.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, 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-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, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-none {
  transition-property: none;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.delay-0 {
  transition-delay: 0s;
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-1000 {
  transition-delay: 1000ms;
}

.delay-150 {
  transition-delay: 150ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-500 {
  transition-delay: 500ms;
}

.delay-700 {
  transition-delay: 700ms;
}

.delay-75 {
  transition-delay: 75ms;
}

.duration-0 {
  transition-duration: 0s;
}

.duration-100 {
  transition-duration: 100ms;
}

.duration-1000 {
  transition-duration: 1000ms;
}

.duration-150 {
  transition-duration: 150ms;
}

.duration-200 {
  transition-duration: 200ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.duration-700 {
  transition-duration: 700ms;
}

.duration-75 {
  transition-duration: 75ms;
}

.ease-in {
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.ease-linear {
  transition-timing-function: linear;
}

.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.will-change-auto {
  will-change: auto;
}

.will-change-contents {
  will-change: contents;
}

.will-change-scroll {
  will-change: scroll-position;
}

.will-change-transform {
  will-change: transform;
}

.contain-none {
  contain: none;
}

.contain-content {
  contain: content;
}

.contain-strict {
  contain: strict;
}

.contain-size {
  --tw-contain-size: size;
  contain: var(--tw-contain-size) var(--tw-contain-layout) var(--tw-contain-paint) var(--tw-contain-style);
}

.contain-inline-size {
  --tw-contain-size: inline-size;
  contain: var(--tw-contain-size) var(--tw-contain-layout) var(--tw-contain-paint) var(--tw-contain-style);
}

.contain-layout {
  --tw-contain-layout: layout;
  contain: var(--tw-contain-size) var(--tw-contain-layout) var(--tw-contain-paint) var(--tw-contain-style);
}

.contain-paint {
  --tw-contain-paint: paint;
  contain: var(--tw-contain-size) var(--tw-contain-layout) var(--tw-contain-paint) var(--tw-contain-style);
}

.contain-style {
  --tw-contain-style: style;
  contain: var(--tw-contain-size) var(--tw-contain-layout) var(--tw-contain-paint) var(--tw-contain-style);
}

.content-none {
  --tw-content: none;
  content: var(--tw-content);
}

.forced-color-adjust-auto {
  forced-color-adjust: auto;
}

.forced-color-adjust-none {
  forced-color-adjust: none;
}

.even\:bg-gray-100:nth-child(even) {
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 245 / var(--tw-bg-opacity, 1));
}

.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(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:scale-110:hover {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.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));
}

.hover\:border:hover {
  border-width: 1px;
}

.hover\:border-2:hover {
  border-width: 2px;
}

.hover\:border-l-8:hover {
  border-left-width: 8px;
}

.hover\:border-eva-green:hover {
  --tw-border-opacity: 1;
  border-color: rgb(73 181 168 / var(--tw-border-opacity, 1));
}

.hover\:bg-eva-blue-hv:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(15 18 31 / var(--tw-bg-opacity, 1));
}

.hover\:bg-eva-green:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(73 181 168 / var(--tw-bg-opacity, 1));
}

.hover\:bg-eva-green-hv:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(63 156 144 / var(--tw-bg-opacity, 1));
}

.hover\:bg-eva-red:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(234 101 101 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(229 229 229 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
}

.hover\:bg-white:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.hover\:bg-opacity-20:hover {
  --tw-bg-opacity: 0.2;
}

.hover\:bg-opacity-70:hover {
  --tw-bg-opacity: 0.7;
}

.hover\:text-black:hover {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}

.hover\:text-eva-green-hv:hover {
  --tw-text-opacity: 1;
  color: rgb(63 156 144 / var(--tw-text-opacity, 1));
}

.hover\:text-eva-yellow:hover {
  --tw-text-opacity: 1;
  color: rgb(233 179 98 / var(--tw-text-opacity, 1));
}

.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.hover\:shadow-lg:hover {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(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: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:transition:hover {
  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, 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-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.hover\:transition-all:hover {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.focus\:border-none:focus {
  border-style: none;
}

.focus\:border-transparent:focus {
  border-color: transparent;
}

.focus\:border-t-transparent:focus {
  border-top-color: transparent;
}

.focus\:bg-white:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.focus\:text-gray-700:focus {
  --tw-text-opacity: 1;
  color: rgb(64 64 64 / var(--tw-text-opacity, 1));
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:outline-0:focus {
  outline-width: 0px;
}

.focus\:ring-0:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-transparent:focus {
  --tw-ring-color: transparent;
}

.disabled\:border-0:disabled {
  border-width: 0px;
}

.disabled\:bg-eva-green:disabled {
  --tw-bg-opacity: 1;
  background-color: rgb(73 181 168 / var(--tw-bg-opacity, 1));
}

@media (min-width: 640px) {
  .sm\:top-10 {
    top: 2.5rem;
  }

  .sm\:mt-10 {
    margin-top: 2.5rem;
  }

  .sm\:block {
    display: block;
  }

  .sm\:inline {
    display: inline;
  }

  .sm\:hidden {
    display: none;
  }

  .sm\:w-1\/6 {
    width: 16.666667%;
  }

  .sm\:w-11\/12 {
    width: 91.666667%;
  }

  .sm\:w-full {
    width: 100%;
  }

  .sm\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md\:relative {
    position: relative;
  }

  .md\:bottom-0 {
    bottom: 0px;
  }

  .md\:left-0 {
    left: 0px;
  }

  .md\:z-0 {
    z-index: 0;
  }

  .md\:mx-0\.5 {
    margin-left: 0.125rem;
    margin-right: 0.125rem;
  }

  .md\:mb-0 {
    margin-bottom: 0px;
  }

  .md\:mb-2 {
    margin-bottom: 0.5rem;
  }

  .md\:ml-0 {
    margin-left: 0px;
  }

  .md\:ml-10 {
    margin-left: 2.5rem;
  }

  .md\:ml-16 {
    margin-left: 4rem;
  }

  .md\:ml-4 {
    margin-left: 1rem;
  }

  .md\:ml-5 {
    margin-left: 1.25rem;
  }

  .md\:mr-0 {
    margin-right: 0px;
  }

  .md\:mt-0 {
    margin-top: 0px;
  }

  .md\:mt-40 {
    margin-top: 10rem;
  }

  .md\:mt-5 {
    margin-top: 1.25rem;
  }

  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:h-6 {
    height: 1.5rem;
  }

  .md\:h-screen {
    height: 100vh;
  }

  .md\:h-screen\/300 {
    height: calc(100vh - 300px);
  }

  .md\:h-screen\/375 {
    height: calc(100vh - 375px);
  }

  .md\:w-1\/3 {
    width: 33.333333%;
  }

  .md\:w-4\/12 {
    width: 33.333333%;
  }

  .md\:w-5\/12 {
    width: 41.666667%;
  }

  .md\:w-6 {
    width: 1.5rem;
  }

  .md\:w-80 {
    width: 20rem;
  }

  .md\:w-96 {
    width: 24rem;
  }

  .md\:min-w-0 {
    min-width: 0px;
  }

  .md\:max-w-lg {
    max-width: 32rem;
  }

  .md\:max-w-md {
    max-width: 28rem;
  }

  .md\:max-w-xs {
    max-width: 20rem;
  }

  .md\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:flex-col {
    flex-direction: column;
  }

  .md\:justify-start {
    justify-content: flex-start;
  }

  .md\:overflow-hidden {
    overflow: hidden;
  }

  .md\:overflow-x-hidden {
    overflow-x: hidden;
  }

  .md\:border-l-2 {
    border-left-width: 2px;
  }

  .md\:border-r-2 {
    border-right-width: 2px;
  }

  .md\:border-t-2 {
    border-top-width: 2px;
  }

  .md\:border-gray-100 {
    --tw-border-opacity: 1;
    border-color: rgb(245 245 245 / var(--tw-border-opacity, 1));
  }

  .md\:p-0 {
    padding: 0px;
  }

  .md\:p-10 {
    padding: 2.5rem;
  }

  .md\:p-6 {
    padding: 1.5rem;
  }

  .md\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .md\:pb-4 {
    padding-bottom: 1rem;
  }

  .md\:pl-0 {
    padding-left: 0px;
  }

  .md\:pl-5 {
    padding-left: 1.25rem;
  }

  .md\:pl-8 {
    padding-left: 2rem;
  }

  .md\:pr-0 {
    padding-right: 0px;
  }

  .md\:pr-5 {
    padding-right: 1.25rem;
  }

  .md\:pr-8 {
    padding-right: 2rem;
  }

  .md\:pt-0 {
    padding-top: 0px;
  }

  .md\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .md\:text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
  }

  .md\:shadow-none {
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }
}

@media (min-width: 1024px) {
  .lg\:left-10 {
    left: 2.5rem;
  }

  .lg\:right-10 {
    right: 2.5rem;
  }

  .lg\:mb-0 {
    margin-bottom: 0px;
  }

  .lg\:ml-16 {
    margin-left: 4rem;
  }

  .lg\:w-1\/4 {
    width: 25%;
  }

  .lg\:w-2\/5 {
    width: 40%;
  }

  .lg\:w-80 {
    width: 20rem;
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:justify-center {
    justify-content: center;
  }

  .lg\:p-16 {
    padding: 4rem;
  }

  .lg\:px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .lg\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .lg\:pb-5 {
    padding-bottom: 1.25rem;
  }

  .lg\:pb-96 {
    padding-bottom: 24rem;
  }

  .lg\:pl-32 {
    padding-left: 8rem;
  }

  .lg\:pr-20 {
    padding-right: 5rem;
  }

  .lg\:pt-28 {
    padding-top: 7rem;
  }

  .lg\:pt-5 {
    padding-top: 1.25rem;
  }

  .lg\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .lg\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1280px) {
  .xl\:w-96 {
    width: 24rem;
  }

  .xl\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xl\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1536px) {
  .\32xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}