.cl-container {
  width: 100%;
}

@media (min-width: 640px) {
  .cl-container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .cl-container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .cl-container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .cl-container {
    max-width: 1280px;
  }
}

#claw-wrapper {
  box-sizing: border-box;
}

#claw-wrapper *,
#claw-wrapper *:before,
#claw-wrapper *:after {
  box-sizing: border-box;
}

@font-face {
  font-family: 'Berlin Sans';

  src: url('/fonts/BerlinSansFB-Reg.woff2') format('woff2'), url('/fonts/BerlinSansFB-Reg.woff') format('woff');

  font-weight: normal;

  font-style: normal;
}

@font-face {
  font-family: 'Berlin Sans';

  src: url('/fonts/BerlinSansFBDemi-Bold.woff2') format('woff2'), url('/fonts/BerlinSansFBDemi-Bold.woff') format('woff');

  font-weight: 600;

  font-style: normal;
}

@font-face {
  font-family: 'Berlin Sans';

  src: url('/fonts/BerlinSansFB-Bold.woff2') format('woff2'), url('/fonts/BerlinSansFB-Bold.woff') format('woff');

  font-weight: 700;

  font-style: normal;
}

.cl-token-text-shadow {
  text-shadow: #ffffff 0 1px 0;
}

.cl-ui-btn-shadow {
  box-shadow: 0 5px 0 0 #c9c3b0;
}

.cl-ui-btn-shadow-lg {
  box-shadow: 0 8px 0 0 #c9c3b0;
}

.cl-ui-btn-shadow-active,
.cl-ui-btn-shadow:active,
.cl-ui-btn-shadow-lg:active {
  transform: translate(0, 4px);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

kbd {
  --bg-opacity: 1;
  background-color: #f3ecdc;
  background-color: rgba(243, 236, 220, var(--bg-opacity));
  display: inline-block;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 4px;
  padding-bottom: 4px;
  border-radius: 0.25rem;
  line-height: 1.5;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), inset 0px 0px 0px 2px #dacfa9;
  text-shadow: 0 1px 0 #fff;
  font-family: 'Arial';
  font-size: 10px;
}

.blink {
  animation-duration: 0.5s;
  animation-name: blink;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

.blink-5 {
  animation-iteration-count: 10;
  /* Two counts = 1 blink */
}

@keyframes blink {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.semiblink {
  animation-duration: 0.5s;
  animation-name: semiblink;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

@keyframes semiblink {
  from {
    opacity: 1;
  }

  to {
    opacity: 0.3;
  }
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  z-index: 50;
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 45s linear infinite;
}

.marquee-mobile-content {
  display: inline-block;
  padding-left: 100%;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.cl-space-y-0 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(0px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(0px * var(--space-y-reverse)) !important;
}

.cl-space-x-0 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(0px * var(--space-x-reverse)) !important;
  margin-left: calc(0px * calc(1 - var(--space-x-reverse))) !important;
}

.cl-space-y-1 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(4px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(4px * var(--space-y-reverse)) !important;
}

.cl-space-x-1 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(4px * var(--space-x-reverse)) !important;
  margin-left: calc(4px * calc(1 - var(--space-x-reverse))) !important;
}

.cl-space-y-2 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(8px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(8px * var(--space-y-reverse)) !important;
}

.cl-space-x-2 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(8px * var(--space-x-reverse)) !important;
  margin-left: calc(8px * calc(1 - var(--space-x-reverse))) !important;
}

.cl-space-y-3 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(12px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(12px * var(--space-y-reverse)) !important;
}

.cl-space-x-3 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(12px * var(--space-x-reverse)) !important;
  margin-left: calc(12px * calc(1 - var(--space-x-reverse))) !important;
}

.cl-space-y-4 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(16px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(16px * var(--space-y-reverse)) !important;
}

.cl-space-x-4 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(16px * var(--space-x-reverse)) !important;
  margin-left: calc(16px * calc(1 - var(--space-x-reverse))) !important;
}

.cl-space-y-5 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(20px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(20px * var(--space-y-reverse)) !important;
}

.cl-space-x-5 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(20px * var(--space-x-reverse)) !important;
  margin-left: calc(20px * calc(1 - var(--space-x-reverse))) !important;
}

.cl-space-y-6 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(24px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(24px * var(--space-y-reverse)) !important;
}

.cl-space-x-6 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(24px * var(--space-x-reverse)) !important;
  margin-left: calc(24px * calc(1 - var(--space-x-reverse))) !important;
}

.cl-space-y-8 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(32px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(32px * var(--space-y-reverse)) !important;
}

.cl-space-x-8 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(32px * var(--space-x-reverse)) !important;
  margin-left: calc(32px * calc(1 - var(--space-x-reverse))) !important;
}

.cl-space-y-10 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(40px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(40px * var(--space-y-reverse)) !important;
}

.cl-space-x-10 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(40px * var(--space-x-reverse)) !important;
  margin-left: calc(40px * calc(1 - var(--space-x-reverse))) !important;
}

.cl-space-y-12 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(48px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(48px * var(--space-y-reverse)) !important;
}

.cl-space-x-12 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(48px * var(--space-x-reverse)) !important;
  margin-left: calc(48px * calc(1 - var(--space-x-reverse))) !important;
}

.cl-space-y-16 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(64px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(64px * var(--space-y-reverse)) !important;
}

.cl-space-x-16 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(64px * var(--space-x-reverse)) !important;
  margin-left: calc(64px * calc(1 - var(--space-x-reverse))) !important;
}

.cl-space-y-20 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(80px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(80px * var(--space-y-reverse)) !important;
}

.cl-space-x-20 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(80px * var(--space-x-reverse)) !important;
  margin-left: calc(80px * calc(1 - var(--space-x-reverse))) !important;
}

.cl-space-y-24 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(96px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(96px * var(--space-y-reverse)) !important;
}

.cl-space-x-24 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(96px * var(--space-x-reverse)) !important;
  margin-left: calc(96px * calc(1 - var(--space-x-reverse))) !important;
}

.cl-space-y-26 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(100px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(100px * var(--space-y-reverse)) !important;
}

.cl-space-x-26 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(100px * var(--space-x-reverse)) !important;
  margin-left: calc(100px * calc(1 - var(--space-x-reverse))) !important;
}

.cl-space-y-28 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(110px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(110px * var(--space-y-reverse)) !important;
}

.cl-space-x-28 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(110px * var(--space-x-reverse)) !important;
  margin-left: calc(110px * calc(1 - var(--space-x-reverse))) !important;
}

.cl-space-y-32 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(128px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(128px * var(--space-y-reverse)) !important;
}

.cl-space-x-32 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(128px * var(--space-x-reverse)) !important;
  margin-left: calc(128px * calc(1 - var(--space-x-reverse))) !important;
}

.cl-space-y-40 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(160px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(160px * var(--space-y-reverse)) !important;
}

.cl-space-x-40 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(160px * var(--space-x-reverse)) !important;
  margin-left: calc(160px * calc(1 - var(--space-x-reverse))) !important;
}

.cl-space-y-48 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(192px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(192px * var(--space-y-reverse)) !important;
}

.cl-space-x-48 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(192px * var(--space-x-reverse)) !important;
  margin-left: calc(192px * calc(1 - var(--space-x-reverse))) !important;
}

.cl-space-y-56 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(224px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(224px * var(--space-y-reverse)) !important;
}

.cl-space-x-56 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(224px * var(--space-x-reverse)) !important;
  margin-left: calc(224px * calc(1 - var(--space-x-reverse))) !important;
}

.cl-space-y-64 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(256px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(256px * var(--space-y-reverse)) !important;
}

.cl-space-x-64 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(256px * var(--space-x-reverse)) !important;
  margin-left: calc(256px * calc(1 - var(--space-x-reverse))) !important;
}

.cl-space-y-px > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(1px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(1px * var(--space-y-reverse)) !important;
}

.cl-space-x-px > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(1px * var(--space-x-reverse)) !important;
  margin-left: calc(1px * calc(1 - var(--space-x-reverse))) !important;
}

.cl--space-y-1 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-4px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-4px * var(--space-y-reverse)) !important;
}

.cl--space-x-1 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-4px * var(--space-x-reverse)) !important;
  margin-left: calc(-4px * calc(1 - var(--space-x-reverse))) !important;
}

.cl--space-y-2 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-8px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-8px * var(--space-y-reverse)) !important;
}

.cl--space-x-2 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-8px * var(--space-x-reverse)) !important;
  margin-left: calc(-8px * calc(1 - var(--space-x-reverse))) !important;
}

.cl--space-y-3 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-12px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-12px * var(--space-y-reverse)) !important;
}

.cl--space-x-3 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-12px * var(--space-x-reverse)) !important;
  margin-left: calc(-12px * calc(1 - var(--space-x-reverse))) !important;
}

.cl--space-y-4 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-16px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-16px * var(--space-y-reverse)) !important;
}

.cl--space-x-4 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-16px * var(--space-x-reverse)) !important;
  margin-left: calc(-16px * calc(1 - var(--space-x-reverse))) !important;
}

.cl--space-y-5 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-20px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-20px * var(--space-y-reverse)) !important;
}

.cl--space-x-5 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-20px * var(--space-x-reverse)) !important;
  margin-left: calc(-20px * calc(1 - var(--space-x-reverse))) !important;
}

.cl--space-y-6 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-24px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-24px * var(--space-y-reverse)) !important;
}

.cl--space-x-6 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-24px * var(--space-x-reverse)) !important;
  margin-left: calc(-24px * calc(1 - var(--space-x-reverse))) !important;
}

.cl--space-y-8 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-32px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-32px * var(--space-y-reverse)) !important;
}

.cl--space-x-8 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-32px * var(--space-x-reverse)) !important;
  margin-left: calc(-32px * calc(1 - var(--space-x-reverse))) !important;
}

.cl--space-y-10 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-40px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-40px * var(--space-y-reverse)) !important;
}

.cl--space-x-10 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-40px * var(--space-x-reverse)) !important;
  margin-left: calc(-40px * calc(1 - var(--space-x-reverse))) !important;
}

.cl--space-y-12 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-48px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-48px * var(--space-y-reverse)) !important;
}

.cl--space-x-12 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-48px * var(--space-x-reverse)) !important;
  margin-left: calc(-48px * calc(1 - var(--space-x-reverse))) !important;
}

.cl--space-y-16 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-64px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-64px * var(--space-y-reverse)) !important;
}

.cl--space-x-16 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-64px * var(--space-x-reverse)) !important;
  margin-left: calc(-64px * calc(1 - var(--space-x-reverse))) !important;
}

.cl--space-y-20 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-80px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-80px * var(--space-y-reverse)) !important;
}

.cl--space-x-20 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-80px * var(--space-x-reverse)) !important;
  margin-left: calc(-80px * calc(1 - var(--space-x-reverse))) !important;
}

.cl--space-y-24 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-96px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-96px * var(--space-y-reverse)) !important;
}

.cl--space-x-24 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-96px * var(--space-x-reverse)) !important;
  margin-left: calc(-96px * calc(1 - var(--space-x-reverse))) !important;
}

.cl--space-y-26 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-100px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-100px * var(--space-y-reverse)) !important;
}

.cl--space-x-26 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-100px * var(--space-x-reverse)) !important;
  margin-left: calc(-100px * calc(1 - var(--space-x-reverse))) !important;
}

.cl--space-y-28 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-110px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-110px * var(--space-y-reverse)) !important;
}

.cl--space-x-28 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-110px * var(--space-x-reverse)) !important;
  margin-left: calc(-110px * calc(1 - var(--space-x-reverse))) !important;
}

.cl--space-y-32 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-128px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-128px * var(--space-y-reverse)) !important;
}

.cl--space-x-32 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-128px * var(--space-x-reverse)) !important;
  margin-left: calc(-128px * calc(1 - var(--space-x-reverse))) !important;
}

.cl--space-y-40 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-160px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-160px * var(--space-y-reverse)) !important;
}

.cl--space-x-40 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-160px * var(--space-x-reverse)) !important;
  margin-left: calc(-160px * calc(1 - var(--space-x-reverse))) !important;
}

.cl--space-y-48 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-192px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-192px * var(--space-y-reverse)) !important;
}

.cl--space-x-48 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-192px * var(--space-x-reverse)) !important;
  margin-left: calc(-192px * calc(1 - var(--space-x-reverse))) !important;
}

.cl--space-y-56 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-224px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-224px * var(--space-y-reverse)) !important;
}

.cl--space-x-56 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-224px * var(--space-x-reverse)) !important;
  margin-left: calc(-224px * calc(1 - var(--space-x-reverse))) !important;
}

.cl--space-y-64 > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-256px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-256px * var(--space-y-reverse)) !important;
}

.cl--space-x-64 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-256px * var(--space-x-reverse)) !important;
  margin-left: calc(-256px * calc(1 - var(--space-x-reverse))) !important;
}

.cl--space-y-px > :not(template) ~ :not(template) {
  --space-y-reverse: 0 !important;
  margin-top: calc(-1px * calc(1 - var(--space-y-reverse))) !important;
  margin-bottom: calc(-1px * var(--space-y-reverse)) !important;
}

.cl--space-x-px > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important;
  margin-right: calc(-1px * var(--space-x-reverse)) !important;
  margin-left: calc(-1px * calc(1 - var(--space-x-reverse))) !important;
}

.cl-space-y-reverse > :not(template) ~ :not(template) {
  --space-y-reverse: 1 !important;
}

.cl-space-x-reverse > :not(template) ~ :not(template) {
  --space-x-reverse: 1 !important;
}

.cl-divide-y-0 > :not(template) ~ :not(template) {
  --divide-y-reverse: 0 !important;
  border-top-width: calc(0px * calc(1 - var(--divide-y-reverse))) !important;
  border-bottom-width: calc(0px * var(--divide-y-reverse)) !important;
}

.cl-divide-x-0 > :not(template) ~ :not(template) {
  --divide-x-reverse: 0 !important;
  border-right-width: calc(0px * var(--divide-x-reverse)) !important;
  border-left-width: calc(0px * calc(1 - var(--divide-x-reverse))) !important;
}

.cl-divide-y-2 > :not(template) ~ :not(template) {
  --divide-y-reverse: 0 !important;
  border-top-width: calc(2px * calc(1 - var(--divide-y-reverse))) !important;
  border-bottom-width: calc(2px * var(--divide-y-reverse)) !important;
}

.cl-divide-x-2 > :not(template) ~ :not(template) {
  --divide-x-reverse: 0 !important;
  border-right-width: calc(2px * var(--divide-x-reverse)) !important;
  border-left-width: calc(2px * calc(1 - var(--divide-x-reverse))) !important;
}

.cl-divide-y-4 > :not(template) ~ :not(template) {
  --divide-y-reverse: 0 !important;
  border-top-width: calc(4px * calc(1 - var(--divide-y-reverse))) !important;
  border-bottom-width: calc(4px * var(--divide-y-reverse)) !important;
}

.cl-divide-x-4 > :not(template) ~ :not(template) {
  --divide-x-reverse: 0 !important;
  border-right-width: calc(4px * var(--divide-x-reverse)) !important;
  border-left-width: calc(4px * calc(1 - var(--divide-x-reverse))) !important;
}

.cl-divide-y-8 > :not(template) ~ :not(template) {
  --divide-y-reverse: 0 !important;
  border-top-width: calc(8px * calc(1 - var(--divide-y-reverse))) !important;
  border-bottom-width: calc(8px * var(--divide-y-reverse)) !important;
}

.cl-divide-x-8 > :not(template) ~ :not(template) {
  --divide-x-reverse: 0 !important;
  border-right-width: calc(8px * var(--divide-x-reverse)) !important;
  border-left-width: calc(8px * calc(1 - var(--divide-x-reverse))) !important;
}

.cl-divide-y-15 > :not(template) ~ :not(template) {
  --divide-y-reverse: 0 !important;
  border-top-width: calc(15px * calc(1 - var(--divide-y-reverse))) !important;
  border-bottom-width: calc(15px * var(--divide-y-reverse)) !important;
}

.cl-divide-x-15 > :not(template) ~ :not(template) {
  --divide-x-reverse: 0 !important;
  border-right-width: calc(15px * var(--divide-x-reverse)) !important;
  border-left-width: calc(15px * calc(1 - var(--divide-x-reverse))) !important;
}

.cl-divide-y > :not(template) ~ :not(template) {
  --divide-y-reverse: 0 !important;
  border-top-width: calc(1px * calc(1 - var(--divide-y-reverse))) !important;
  border-bottom-width: calc(1px * var(--divide-y-reverse)) !important;
}

.cl-divide-x > :not(template) ~ :not(template) {
  --divide-x-reverse: 0 !important;
  border-right-width: calc(1px * var(--divide-x-reverse)) !important;
  border-left-width: calc(1px * calc(1 - var(--divide-x-reverse))) !important;
}

.cl-divide-y-reverse > :not(template) ~ :not(template) {
  --divide-y-reverse: 1 !important;
}

.cl-divide-x-reverse > :not(template) ~ :not(template) {
  --divide-x-reverse: 1 !important;
}

.cl-divide-transparent > :not(template) ~ :not(template) {
  border-color: transparent !important;
}

.cl-divide-current > :not(template) ~ :not(template) {
  border-color: currentColor !important;
}

.cl-divide-black > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #000 !important;
  border-color: rgba(0, 0, 0, var(--divide-opacity)) !important;
}

.cl-divide-white > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #fff !important;
  border-color: rgba(255, 255, 255, var(--divide-opacity)) !important;
}

.cl-divide-gray-100 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #f7fafc !important;
  border-color: rgba(247, 250, 252, var(--divide-opacity)) !important;
}

.cl-divide-gray-200 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #edf2f7 !important;
  border-color: rgba(237, 242, 247, var(--divide-opacity)) !important;
}

.cl-divide-gray-300 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #e2e8f0 !important;
  border-color: rgba(226, 232, 240, var(--divide-opacity)) !important;
}

.cl-divide-gray-400 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #cbd5e0 !important;
  border-color: rgba(203, 213, 224, var(--divide-opacity)) !important;
}

.cl-divide-gray-500 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #a0aec0 !important;
  border-color: rgba(160, 174, 192, var(--divide-opacity)) !important;
}

.cl-divide-gray-600 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #718096 !important;
  border-color: rgba(113, 128, 150, var(--divide-opacity)) !important;
}

.cl-divide-gray-700 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #4a5568 !important;
  border-color: rgba(74, 85, 104, var(--divide-opacity)) !important;
}

.cl-divide-gray-800 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #2d3748 !important;
  border-color: rgba(45, 55, 72, var(--divide-opacity)) !important;
}

.cl-divide-gray-900 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #1a202c !important;
  border-color: rgba(26, 32, 44, var(--divide-opacity)) !important;
}

.cl-divide-red-100 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #fff5f5 !important;
  border-color: rgba(255, 245, 245, var(--divide-opacity)) !important;
}

.cl-divide-red-200 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #fed7d7 !important;
  border-color: rgba(254, 215, 215, var(--divide-opacity)) !important;
}

.cl-divide-red-300 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #feb2b2 !important;
  border-color: rgba(254, 178, 178, var(--divide-opacity)) !important;
}

.cl-divide-red-400 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #fc8181 !important;
  border-color: rgba(252, 129, 129, var(--divide-opacity)) !important;
}

.cl-divide-red-500 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #f56565 !important;
  border-color: rgba(245, 101, 101, var(--divide-opacity)) !important;
}

.cl-divide-red-600 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #e53e3e !important;
  border-color: rgba(229, 62, 62, var(--divide-opacity)) !important;
}

.cl-divide-red-700 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #c53030 !important;
  border-color: rgba(197, 48, 48, var(--divide-opacity)) !important;
}

.cl-divide-red-800 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #9b2c2c !important;
  border-color: rgba(155, 44, 44, var(--divide-opacity)) !important;
}

.cl-divide-red-900 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #742a2a !important;
  border-color: rgba(116, 42, 42, var(--divide-opacity)) !important;
}

.cl-divide-orange-100 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #fffaf0 !important;
  border-color: rgba(255, 250, 240, var(--divide-opacity)) !important;
}

.cl-divide-orange-200 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #feebc8 !important;
  border-color: rgba(254, 235, 200, var(--divide-opacity)) !important;
}

.cl-divide-orange-300 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #fbd38d !important;
  border-color: rgba(251, 211, 141, var(--divide-opacity)) !important;
}

.cl-divide-orange-400 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #f6ad55 !important;
  border-color: rgba(246, 173, 85, var(--divide-opacity)) !important;
}

.cl-divide-orange-500 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #ed8936 !important;
  border-color: rgba(237, 137, 54, var(--divide-opacity)) !important;
}

.cl-divide-orange-600 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #dd6b20 !important;
  border-color: rgba(221, 107, 32, var(--divide-opacity)) !important;
}

.cl-divide-orange-700 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #c05621 !important;
  border-color: rgba(192, 86, 33, var(--divide-opacity)) !important;
}

.cl-divide-orange-800 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #9c4221 !important;
  border-color: rgba(156, 66, 33, var(--divide-opacity)) !important;
}

.cl-divide-orange-900 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #7b341e !important;
  border-color: rgba(123, 52, 30, var(--divide-opacity)) !important;
}

.cl-divide-yellow-100 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #fffff0 !important;
  border-color: rgba(255, 255, 240, var(--divide-opacity)) !important;
}

.cl-divide-yellow-200 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #fefcbf !important;
  border-color: rgba(254, 252, 191, var(--divide-opacity)) !important;
}

.cl-divide-yellow-300 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #faf089 !important;
  border-color: rgba(250, 240, 137, var(--divide-opacity)) !important;
}

.cl-divide-yellow-400 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #f6e05e !important;
  border-color: rgba(246, 224, 94, var(--divide-opacity)) !important;
}

.cl-divide-yellow-500 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #ecc94b !important;
  border-color: rgba(236, 201, 75, var(--divide-opacity)) !important;
}

.cl-divide-yellow-600 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #d69e2e !important;
  border-color: rgba(214, 158, 46, var(--divide-opacity)) !important;
}

.cl-divide-yellow-700 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #b7791f !important;
  border-color: rgba(183, 121, 31, var(--divide-opacity)) !important;
}

.cl-divide-yellow-800 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #975a16 !important;
  border-color: rgba(151, 90, 22, var(--divide-opacity)) !important;
}

.cl-divide-yellow-900 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #744210 !important;
  border-color: rgba(116, 66, 16, var(--divide-opacity)) !important;
}

.cl-divide-green-100 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #f0fff4 !important;
  border-color: rgba(240, 255, 244, var(--divide-opacity)) !important;
}

.cl-divide-green-200 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #c6f6d5 !important;
  border-color: rgba(198, 246, 213, var(--divide-opacity)) !important;
}

.cl-divide-green-300 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #9ae6b4 !important;
  border-color: rgba(154, 230, 180, var(--divide-opacity)) !important;
}

.cl-divide-green-400 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #68d391 !important;
  border-color: rgba(104, 211, 145, var(--divide-opacity)) !important;
}

.cl-divide-green-500 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #48bb78 !important;
  border-color: rgba(72, 187, 120, var(--divide-opacity)) !important;
}

.cl-divide-green-600 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #38a169 !important;
  border-color: rgba(56, 161, 105, var(--divide-opacity)) !important;
}

.cl-divide-green-700 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #2f855a !important;
  border-color: rgba(47, 133, 90, var(--divide-opacity)) !important;
}

.cl-divide-green-800 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #276749 !important;
  border-color: rgba(39, 103, 73, var(--divide-opacity)) !important;
}

.cl-divide-green-900 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #22543d !important;
  border-color: rgba(34, 84, 61, var(--divide-opacity)) !important;
}

.cl-divide-teal-100 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #e6fffa !important;
  border-color: rgba(230, 255, 250, var(--divide-opacity)) !important;
}

.cl-divide-teal-200 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #b2f5ea !important;
  border-color: rgba(178, 245, 234, var(--divide-opacity)) !important;
}

.cl-divide-teal-300 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #81e6d9 !important;
  border-color: rgba(129, 230, 217, var(--divide-opacity)) !important;
}

.cl-divide-teal-400 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #4fd1c5 !important;
  border-color: rgba(79, 209, 197, var(--divide-opacity)) !important;
}

.cl-divide-teal-500 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #38b2ac !important;
  border-color: rgba(56, 178, 172, var(--divide-opacity)) !important;
}

.cl-divide-teal-600 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #319795 !important;
  border-color: rgba(49, 151, 149, var(--divide-opacity)) !important;
}

.cl-divide-teal-700 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #2c7a7b !important;
  border-color: rgba(44, 122, 123, var(--divide-opacity)) !important;
}

.cl-divide-teal-800 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #285e61 !important;
  border-color: rgba(40, 94, 97, var(--divide-opacity)) !important;
}

.cl-divide-teal-900 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #234e52 !important;
  border-color: rgba(35, 78, 82, var(--divide-opacity)) !important;
}

.cl-divide-blue-100 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #ebf8ff !important;
  border-color: rgba(235, 248, 255, var(--divide-opacity)) !important;
}

.cl-divide-blue-200 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #bee3f8 !important;
  border-color: rgba(190, 227, 248, var(--divide-opacity)) !important;
}

.cl-divide-blue-300 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #90cdf4 !important;
  border-color: rgba(144, 205, 244, var(--divide-opacity)) !important;
}

.cl-divide-blue-400 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #63b3ed !important;
  border-color: rgba(99, 179, 237, var(--divide-opacity)) !important;
}

.cl-divide-blue-500 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #4299e1 !important;
  border-color: rgba(66, 153, 225, var(--divide-opacity)) !important;
}

.cl-divide-blue-600 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #3182ce !important;
  border-color: rgba(49, 130, 206, var(--divide-opacity)) !important;
}

.cl-divide-blue-700 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #2b6cb0 !important;
  border-color: rgba(43, 108, 176, var(--divide-opacity)) !important;
}

.cl-divide-blue-800 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #2c5282 !important;
  border-color: rgba(44, 82, 130, var(--divide-opacity)) !important;
}

.cl-divide-blue-900 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #2a4365 !important;
  border-color: rgba(42, 67, 101, var(--divide-opacity)) !important;
}

.cl-divide-indigo-100 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #ebf4ff !important;
  border-color: rgba(235, 244, 255, var(--divide-opacity)) !important;
}

.cl-divide-indigo-200 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #c3dafe !important;
  border-color: rgba(195, 218, 254, var(--divide-opacity)) !important;
}

.cl-divide-indigo-300 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #a3bffa !important;
  border-color: rgba(163, 191, 250, var(--divide-opacity)) !important;
}

.cl-divide-indigo-400 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #7f9cf5 !important;
  border-color: rgba(127, 156, 245, var(--divide-opacity)) !important;
}

.cl-divide-indigo-500 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #667eea !important;
  border-color: rgba(102, 126, 234, var(--divide-opacity)) !important;
}

.cl-divide-indigo-600 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #5a67d8 !important;
  border-color: rgba(90, 103, 216, var(--divide-opacity)) !important;
}

.cl-divide-indigo-700 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #4c51bf !important;
  border-color: rgba(76, 81, 191, var(--divide-opacity)) !important;
}

.cl-divide-indigo-800 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #434190 !important;
  border-color: rgba(67, 65, 144, var(--divide-opacity)) !important;
}

.cl-divide-indigo-900 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #3c366b !important;
  border-color: rgba(60, 54, 107, var(--divide-opacity)) !important;
}

.cl-divide-purple-100 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #faf5ff !important;
  border-color: rgba(250, 245, 255, var(--divide-opacity)) !important;
}

.cl-divide-purple-200 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #e9d8fd !important;
  border-color: rgba(233, 216, 253, var(--divide-opacity)) !important;
}

.cl-divide-purple-300 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #d6bcfa !important;
  border-color: rgba(214, 188, 250, var(--divide-opacity)) !important;
}

.cl-divide-purple-400 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #b794f4 !important;
  border-color: rgba(183, 148, 244, var(--divide-opacity)) !important;
}

.cl-divide-purple-500 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #9f7aea !important;
  border-color: rgba(159, 122, 234, var(--divide-opacity)) !important;
}

.cl-divide-purple-600 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #805ad5 !important;
  border-color: rgba(128, 90, 213, var(--divide-opacity)) !important;
}

.cl-divide-purple-700 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #6b46c1 !important;
  border-color: rgba(107, 70, 193, var(--divide-opacity)) !important;
}

.cl-divide-purple-800 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #553c9a !important;
  border-color: rgba(85, 60, 154, var(--divide-opacity)) !important;
}

.cl-divide-purple-900 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #44337a !important;
  border-color: rgba(68, 51, 122, var(--divide-opacity)) !important;
}

.cl-divide-pink-100 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #fff5f7 !important;
  border-color: rgba(255, 245, 247, var(--divide-opacity)) !important;
}

.cl-divide-pink-200 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #fed7e2 !important;
  border-color: rgba(254, 215, 226, var(--divide-opacity)) !important;
}

.cl-divide-pink-300 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #fbb6ce !important;
  border-color: rgba(251, 182, 206, var(--divide-opacity)) !important;
}

.cl-divide-pink-400 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #f687b3 !important;
  border-color: rgba(246, 135, 179, var(--divide-opacity)) !important;
}

.cl-divide-pink-500 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #ed64a6 !important;
  border-color: rgba(237, 100, 166, var(--divide-opacity)) !important;
}

.cl-divide-pink-600 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #d53f8c !important;
  border-color: rgba(213, 63, 140, var(--divide-opacity)) !important;
}

.cl-divide-pink-700 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #b83280 !important;
  border-color: rgba(184, 50, 128, var(--divide-opacity)) !important;
}

.cl-divide-pink-800 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #97266d !important;
  border-color: rgba(151, 38, 109, var(--divide-opacity)) !important;
}

.cl-divide-pink-900 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #702459 !important;
  border-color: rgba(112, 36, 89, var(--divide-opacity)) !important;
}

.cl-divide-ui-gray-100 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #f1f1f1 !important;
  border-color: rgba(241, 241, 241, var(--divide-opacity)) !important;
}

.cl-divide-ui-brown-100 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #f3ecdc !important;
  border-color: rgba(243, 236, 220, var(--divide-opacity)) !important;
}

.cl-divide-ui-brown-200 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #e8e0c9 !important;
  border-color: rgba(232, 224, 201, var(--divide-opacity)) !important;
}

.cl-divide-ui-brown-300 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #d0c095 !important;
  border-color: rgba(208, 192, 149, var(--divide-opacity)) !important;
}

.cl-divide-ui-brown-700 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #bd6005 !important;
  border-color: rgba(189, 96, 5, var(--divide-opacity)) !important;
}

.cl-divide-ui-green-300 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #aac74c !important;
  border-color: rgba(170, 199, 76, var(--divide-opacity)) !important;
}

.cl-divide-ui-green-400 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #71893e !important;
  border-color: rgba(113, 137, 62, var(--divide-opacity)) !important;
}

.cl-divide-ui-orange-500 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #e27212 !important;
  border-color: rgba(226, 114, 18, var(--divide-opacity)) !important;
}

.cl-divide-facebook > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #3b5998 !important;
  border-color: rgba(59, 89, 152, var(--divide-opacity)) !important;
}

.cl-divide-twitter > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #00acee !important;
  border-color: rgba(0, 172, 238, var(--divide-opacity)) !important;
}

.cl-divide-twitch > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #6441a5 !important;
  border-color: rgba(100, 65, 165, var(--divide-opacity)) !important;
}

.cl-divide-youtube > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
  border-color: #FF0000 !important;
  border-color: rgba(255, 0, 0, var(--divide-opacity)) !important;
}

.cl-divide-solid > :not(template) ~ :not(template) {
  border-style: solid !important;
}

.cl-divide-dashed > :not(template) ~ :not(template) {
  border-style: dashed !important;
}

.cl-divide-dotted > :not(template) ~ :not(template) {
  border-style: dotted !important;
}

.cl-divide-double > :not(template) ~ :not(template) {
  border-style: double !important;
}

.cl-divide-none > :not(template) ~ :not(template) {
  border-style: none !important;
}

.cl-divide-opacity-0 > :not(template) ~ :not(template) {
  --divide-opacity: 0 !important;
}

.cl-divide-opacity-25 > :not(template) ~ :not(template) {
  --divide-opacity: 0.25 !important;
}

.cl-divide-opacity-50 > :not(template) ~ :not(template) {
  --divide-opacity: 0.5 !important;
}

.cl-divide-opacity-75 > :not(template) ~ :not(template) {
  --divide-opacity: 0.75 !important;
}

.cl-divide-opacity-100 > :not(template) ~ :not(template) {
  --divide-opacity: 1 !important;
}

.cl-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border-width: 0 !important;
}

.cl-not-sr-only {
  position: static !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}

.focus\:cl-sr-only:focus {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border-width: 0 !important;
}

.focus\:cl-not-sr-only:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}

.cl-appearance-none {
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
}

.cl-bg-fixed {
  background-attachment: fixed !important;
}

.cl-bg-local {
  background-attachment: local !important;
}

.cl-bg-scroll {
  background-attachment: scroll !important;
}

.cl-bg-clip-border {
  background-clip: border-box !important;
}

.cl-bg-clip-padding {
  background-clip: padding-box !important;
}

.cl-bg-clip-content {
  background-clip: content-box !important;
}

.cl-bg-clip-text {
  -webkit-background-clip: text !important;
          background-clip: text !important;
}

.cl-bg-transparent {
  background-color: transparent !important;
}

.cl-bg-current {
  background-color: currentColor !important;
}

.cl-bg-black {
  --bg-opacity: 1 !important;
  background-color: #000 !important;
  background-color: rgba(0, 0, 0, var(--bg-opacity)) !important;
}

.cl-bg-white {
  --bg-opacity: 1 !important;
  background-color: #fff !important;
  background-color: rgba(255, 255, 255, var(--bg-opacity)) !important;
}

.cl-bg-gray-100 {
  --bg-opacity: 1 !important;
  background-color: #f7fafc !important;
  background-color: rgba(247, 250, 252, var(--bg-opacity)) !important;
}

.cl-bg-gray-200 {
  --bg-opacity: 1 !important;
  background-color: #edf2f7 !important;
  background-color: rgba(237, 242, 247, var(--bg-opacity)) !important;
}

.cl-bg-gray-300 {
  --bg-opacity: 1 !important;
  background-color: #e2e8f0 !important;
  background-color: rgba(226, 232, 240, var(--bg-opacity)) !important;
}

.cl-bg-gray-400 {
  --bg-opacity: 1 !important;
  background-color: #cbd5e0 !important;
  background-color: rgba(203, 213, 224, var(--bg-opacity)) !important;
}

.cl-bg-gray-500 {
  --bg-opacity: 1 !important;
  background-color: #a0aec0 !important;
  background-color: rgba(160, 174, 192, var(--bg-opacity)) !important;
}

.cl-bg-gray-600 {
  --bg-opacity: 1 !important;
  background-color: #718096 !important;
  background-color: rgba(113, 128, 150, var(--bg-opacity)) !important;
}

.cl-bg-gray-700 {
  --bg-opacity: 1 !important;
  background-color: #4a5568 !important;
  background-color: rgba(74, 85, 104, var(--bg-opacity)) !important;
}

.cl-bg-gray-800 {
  --bg-opacity: 1 !important;
  background-color: #2d3748 !important;
  background-color: rgba(45, 55, 72, var(--bg-opacity)) !important;
}

.cl-bg-gray-900 {
  --bg-opacity: 1 !important;
  background-color: #1a202c !important;
  background-color: rgba(26, 32, 44, var(--bg-opacity)) !important;
}

.cl-bg-red-100 {
  --bg-opacity: 1 !important;
  background-color: #fff5f5 !important;
  background-color: rgba(255, 245, 245, var(--bg-opacity)) !important;
}

.cl-bg-red-200 {
  --bg-opacity: 1 !important;
  background-color: #fed7d7 !important;
  background-color: rgba(254, 215, 215, var(--bg-opacity)) !important;
}

.cl-bg-red-300 {
  --bg-opacity: 1 !important;
  background-color: #feb2b2 !important;
  background-color: rgba(254, 178, 178, var(--bg-opacity)) !important;
}

.cl-bg-red-400 {
  --bg-opacity: 1 !important;
  background-color: #fc8181 !important;
  background-color: rgba(252, 129, 129, var(--bg-opacity)) !important;
}

.cl-bg-red-500 {
  --bg-opacity: 1 !important;
  background-color: #f56565 !important;
  background-color: rgba(245, 101, 101, var(--bg-opacity)) !important;
}

.cl-bg-red-600 {
  --bg-opacity: 1 !important;
  background-color: #e53e3e !important;
  background-color: rgba(229, 62, 62, var(--bg-opacity)) !important;
}

.cl-bg-red-700 {
  --bg-opacity: 1 !important;
  background-color: #c53030 !important;
  background-color: rgba(197, 48, 48, var(--bg-opacity)) !important;
}

.cl-bg-red-800 {
  --bg-opacity: 1 !important;
  background-color: #9b2c2c !important;
  background-color: rgba(155, 44, 44, var(--bg-opacity)) !important;
}

.cl-bg-red-900 {
  --bg-opacity: 1 !important;
  background-color: #742a2a !important;
  background-color: rgba(116, 42, 42, var(--bg-opacity)) !important;
}

.cl-bg-orange-100 {
  --bg-opacity: 1 !important;
  background-color: #fffaf0 !important;
  background-color: rgba(255, 250, 240, var(--bg-opacity)) !important;
}

.cl-bg-orange-200 {
  --bg-opacity: 1 !important;
  background-color: #feebc8 !important;
  background-color: rgba(254, 235, 200, var(--bg-opacity)) !important;
}

.cl-bg-orange-300 {
  --bg-opacity: 1 !important;
  background-color: #fbd38d !important;
  background-color: rgba(251, 211, 141, var(--bg-opacity)) !important;
}

.cl-bg-orange-400 {
  --bg-opacity: 1 !important;
  background-color: #f6ad55 !important;
  background-color: rgba(246, 173, 85, var(--bg-opacity)) !important;
}

.cl-bg-orange-500 {
  --bg-opacity: 1 !important;
  background-color: #ed8936 !important;
  background-color: rgba(237, 137, 54, var(--bg-opacity)) !important;
}

.cl-bg-orange-600 {
  --bg-opacity: 1 !important;
  background-color: #dd6b20 !important;
  background-color: rgba(221, 107, 32, var(--bg-opacity)) !important;
}

.cl-bg-orange-700 {
  --bg-opacity: 1 !important;
  background-color: #c05621 !important;
  background-color: rgba(192, 86, 33, var(--bg-opacity)) !important;
}

.cl-bg-orange-800 {
  --bg-opacity: 1 !important;
  background-color: #9c4221 !important;
  background-color: rgba(156, 66, 33, var(--bg-opacity)) !important;
}

.cl-bg-orange-900 {
  --bg-opacity: 1 !important;
  background-color: #7b341e !important;
  background-color: rgba(123, 52, 30, var(--bg-opacity)) !important;
}

.cl-bg-yellow-100 {
  --bg-opacity: 1 !important;
  background-color: #fffff0 !important;
  background-color: rgba(255, 255, 240, var(--bg-opacity)) !important;
}

.cl-bg-yellow-200 {
  --bg-opacity: 1 !important;
  background-color: #fefcbf !important;
  background-color: rgba(254, 252, 191, var(--bg-opacity)) !important;
}

.cl-bg-yellow-300 {
  --bg-opacity: 1 !important;
  background-color: #faf089 !important;
  background-color: rgba(250, 240, 137, var(--bg-opacity)) !important;
}

.cl-bg-yellow-400 {
  --bg-opacity: 1 !important;
  background-color: #f6e05e !important;
  background-color: rgba(246, 224, 94, var(--bg-opacity)) !important;
}

.cl-bg-yellow-500 {
  --bg-opacity: 1 !important;
  background-color: #ecc94b !important;
  background-color: rgba(236, 201, 75, var(--bg-opacity)) !important;
}

.cl-bg-yellow-600 {
  --bg-opacity: 1 !important;
  background-color: #d69e2e !important;
  background-color: rgba(214, 158, 46, var(--bg-opacity)) !important;
}

.cl-bg-yellow-700 {
  --bg-opacity: 1 !important;
  background-color: #b7791f !important;
  background-color: rgba(183, 121, 31, var(--bg-opacity)) !important;
}

.cl-bg-yellow-800 {
  --bg-opacity: 1 !important;
  background-color: #975a16 !important;
  background-color: rgba(151, 90, 22, var(--bg-opacity)) !important;
}

.cl-bg-yellow-900 {
  --bg-opacity: 1 !important;
  background-color: #744210 !important;
  background-color: rgba(116, 66, 16, var(--bg-opacity)) !important;
}

.cl-bg-green-100 {
  --bg-opacity: 1 !important;
  background-color: #f0fff4 !important;
  background-color: rgba(240, 255, 244, var(--bg-opacity)) !important;
}

.cl-bg-green-200 {
  --bg-opacity: 1 !important;
  background-color: #c6f6d5 !important;
  background-color: rgba(198, 246, 213, var(--bg-opacity)) !important;
}

.cl-bg-green-300 {
  --bg-opacity: 1 !important;
  background-color: #9ae6b4 !important;
  background-color: rgba(154, 230, 180, var(--bg-opacity)) !important;
}

.cl-bg-green-400 {
  --bg-opacity: 1 !important;
  background-color: #68d391 !important;
  background-color: rgba(104, 211, 145, var(--bg-opacity)) !important;
}

.cl-bg-green-500 {
  --bg-opacity: 1 !important;
  background-color: #48bb78 !important;
  background-color: rgba(72, 187, 120, var(--bg-opacity)) !important;
}

.cl-bg-green-600 {
  --bg-opacity: 1 !important;
  background-color: #38a169 !important;
  background-color: rgba(56, 161, 105, var(--bg-opacity)) !important;
}

.cl-bg-green-700 {
  --bg-opacity: 1 !important;
  background-color: #2f855a !important;
  background-color: rgba(47, 133, 90, var(--bg-opacity)) !important;
}

.cl-bg-green-800 {
  --bg-opacity: 1 !important;
  background-color: #276749 !important;
  background-color: rgba(39, 103, 73, var(--bg-opacity)) !important;
}

.cl-bg-green-900 {
  --bg-opacity: 1 !important;
  background-color: #22543d !important;
  background-color: rgba(34, 84, 61, var(--bg-opacity)) !important;
}

.cl-bg-teal-100 {
  --bg-opacity: 1 !important;
  background-color: #e6fffa !important;
  background-color: rgba(230, 255, 250, var(--bg-opacity)) !important;
}

.cl-bg-teal-200 {
  --bg-opacity: 1 !important;
  background-color: #b2f5ea !important;
  background-color: rgba(178, 245, 234, var(--bg-opacity)) !important;
}

.cl-bg-teal-300 {
  --bg-opacity: 1 !important;
  background-color: #81e6d9 !important;
  background-color: rgba(129, 230, 217, var(--bg-opacity)) !important;
}

.cl-bg-teal-400 {
  --bg-opacity: 1 !important;
  background-color: #4fd1c5 !important;
  background-color: rgba(79, 209, 197, var(--bg-opacity)) !important;
}

.cl-bg-teal-500 {
  --bg-opacity: 1 !important;
  background-color: #38b2ac !important;
  background-color: rgba(56, 178, 172, var(--bg-opacity)) !important;
}

.cl-bg-teal-600 {
  --bg-opacity: 1 !important;
  background-color: #319795 !important;
  background-color: rgba(49, 151, 149, var(--bg-opacity)) !important;
}

.cl-bg-teal-700 {
  --bg-opacity: 1 !important;
  background-color: #2c7a7b !important;
  background-color: rgba(44, 122, 123, var(--bg-opacity)) !important;
}

.cl-bg-teal-800 {
  --bg-opacity: 1 !important;
  background-color: #285e61 !important;
  background-color: rgba(40, 94, 97, var(--bg-opacity)) !important;
}

.cl-bg-teal-900 {
  --bg-opacity: 1 !important;
  background-color: #234e52 !important;
  background-color: rgba(35, 78, 82, var(--bg-opacity)) !important;
}

.cl-bg-blue-100 {
  --bg-opacity: 1 !important;
  background-color: #ebf8ff !important;
  background-color: rgba(235, 248, 255, var(--bg-opacity)) !important;
}

.cl-bg-blue-200 {
  --bg-opacity: 1 !important;
  background-color: #bee3f8 !important;
  background-color: rgba(190, 227, 248, var(--bg-opacity)) !important;
}

.cl-bg-blue-300 {
  --bg-opacity: 1 !important;
  background-color: #90cdf4 !important;
  background-color: rgba(144, 205, 244, var(--bg-opacity)) !important;
}

.cl-bg-blue-400 {
  --bg-opacity: 1 !important;
  background-color: #63b3ed !important;
  background-color: rgba(99, 179, 237, var(--bg-opacity)) !important;
}

.cl-bg-blue-500 {
  --bg-opacity: 1 !important;
  background-color: #4299e1 !important;
  background-color: rgba(66, 153, 225, var(--bg-opacity)) !important;
}

.cl-bg-blue-600 {
  --bg-opacity: 1 !important;
  background-color: #3182ce !important;
  background-color: rgba(49, 130, 206, var(--bg-opacity)) !important;
}

.cl-bg-blue-700 {
  --bg-opacity: 1 !important;
  background-color: #2b6cb0 !important;
  background-color: rgba(43, 108, 176, var(--bg-opacity)) !important;
}

.cl-bg-blue-800 {
  --bg-opacity: 1 !important;
  background-color: #2c5282 !important;
  background-color: rgba(44, 82, 130, var(--bg-opacity)) !important;
}

.cl-bg-blue-900 {
  --bg-opacity: 1 !important;
  background-color: #2a4365 !important;
  background-color: rgba(42, 67, 101, var(--bg-opacity)) !important;
}

.cl-bg-indigo-100 {
  --bg-opacity: 1 !important;
  background-color: #ebf4ff !important;
  background-color: rgba(235, 244, 255, var(--bg-opacity)) !important;
}

.cl-bg-indigo-200 {
  --bg-opacity: 1 !important;
  background-color: #c3dafe !important;
  background-color: rgba(195, 218, 254, var(--bg-opacity)) !important;
}

.cl-bg-indigo-300 {
  --bg-opacity: 1 !important;
  background-color: #a3bffa !important;
  background-color: rgba(163, 191, 250, var(--bg-opacity)) !important;
}

.cl-bg-indigo-400 {
  --bg-opacity: 1 !important;
  background-color: #7f9cf5 !important;
  background-color: rgba(127, 156, 245, var(--bg-opacity)) !important;
}

.cl-bg-indigo-500 {
  --bg-opacity: 1 !important;
  background-color: #667eea !important;
  background-color: rgba(102, 126, 234, var(--bg-opacity)) !important;
}

.cl-bg-indigo-600 {
  --bg-opacity: 1 !important;
  background-color: #5a67d8 !important;
  background-color: rgba(90, 103, 216, var(--bg-opacity)) !important;
}

.cl-bg-indigo-700 {
  --bg-opacity: 1 !important;
  background-color: #4c51bf !important;
  background-color: rgba(76, 81, 191, var(--bg-opacity)) !important;
}

.cl-bg-indigo-800 {
  --bg-opacity: 1 !important;
  background-color: #434190 !important;
  background-color: rgba(67, 65, 144, var(--bg-opacity)) !important;
}

.cl-bg-indigo-900 {
  --bg-opacity: 1 !important;
  background-color: #3c366b !important;
  background-color: rgba(60, 54, 107, var(--bg-opacity)) !important;
}

.cl-bg-purple-100 {
  --bg-opacity: 1 !important;
  background-color: #faf5ff !important;
  background-color: rgba(250, 245, 255, var(--bg-opacity)) !important;
}

.cl-bg-purple-200 {
  --bg-opacity: 1 !important;
  background-color: #e9d8fd !important;
  background-color: rgba(233, 216, 253, var(--bg-opacity)) !important;
}

.cl-bg-purple-300 {
  --bg-opacity: 1 !important;
  background-color: #d6bcfa !important;
  background-color: rgba(214, 188, 250, var(--bg-opacity)) !important;
}

.cl-bg-purple-400 {
  --bg-opacity: 1 !important;
  background-color: #b794f4 !important;
  background-color: rgba(183, 148, 244, var(--bg-opacity)) !important;
}

.cl-bg-purple-500 {
  --bg-opacity: 1 !important;
  background-color: #9f7aea !important;
  background-color: rgba(159, 122, 234, var(--bg-opacity)) !important;
}

.cl-bg-purple-600 {
  --bg-opacity: 1 !important;
  background-color: #805ad5 !important;
  background-color: rgba(128, 90, 213, var(--bg-opacity)) !important;
}

.cl-bg-purple-700 {
  --bg-opacity: 1 !important;
  background-color: #6b46c1 !important;
  background-color: rgba(107, 70, 193, var(--bg-opacity)) !important;
}

.cl-bg-purple-800 {
  --bg-opacity: 1 !important;
  background-color: #553c9a !important;
  background-color: rgba(85, 60, 154, var(--bg-opacity)) !important;
}

.cl-bg-purple-900 {
  --bg-opacity: 1 !important;
  background-color: #44337a !important;
  background-color: rgba(68, 51, 122, var(--bg-opacity)) !important;
}

.cl-bg-pink-100 {
  --bg-opacity: 1 !important;
  background-color: #fff5f7 !important;
  background-color: rgba(255, 245, 247, var(--bg-opacity)) !important;
}

.cl-bg-pink-200 {
  --bg-opacity: 1 !important;
  background-color: #fed7e2 !important;
  background-color: rgba(254, 215, 226, var(--bg-opacity)) !important;
}

.cl-bg-pink-300 {
  --bg-opacity: 1 !important;
  background-color: #fbb6ce !important;
  background-color: rgba(251, 182, 206, var(--bg-opacity)) !important;
}

.cl-bg-pink-400 {
  --bg-opacity: 1 !important;
  background-color: #f687b3 !important;
  background-color: rgba(246, 135, 179, var(--bg-opacity)) !important;
}

.cl-bg-pink-500 {
  --bg-opacity: 1 !important;
  background-color: #ed64a6 !important;
  background-color: rgba(237, 100, 166, var(--bg-opacity)) !important;
}

.cl-bg-pink-600 {
  --bg-opacity: 1 !important;
  background-color: #d53f8c !important;
  background-color: rgba(213, 63, 140, var(--bg-opacity)) !important;
}

.cl-bg-pink-700 {
  --bg-opacity: 1 !important;
  background-color: #b83280 !important;
  background-color: rgba(184, 50, 128, var(--bg-opacity)) !important;
}

.cl-bg-pink-800 {
  --bg-opacity: 1 !important;
  background-color: #97266d !important;
  background-color: rgba(151, 38, 109, var(--bg-opacity)) !important;
}

.cl-bg-pink-900 {
  --bg-opacity: 1 !important;
  background-color: #702459 !important;
  background-color: rgba(112, 36, 89, var(--bg-opacity)) !important;
}

.cl-bg-ui-gray-100 {
  --bg-opacity: 1 !important;
  background-color: #f1f1f1 !important;
  background-color: rgba(241, 241, 241, var(--bg-opacity)) !important;
}

.cl-bg-ui-brown-100 {
  --bg-opacity: 1 !important;
  background-color: #f3ecdc !important;
  background-color: rgba(243, 236, 220, var(--bg-opacity)) !important;
}

.cl-bg-ui-brown-200 {
  --bg-opacity: 1 !important;
  background-color: #e8e0c9 !important;
  background-color: rgba(232, 224, 201, var(--bg-opacity)) !important;
}

.cl-bg-ui-brown-300 {
  --bg-opacity: 1 !important;
  background-color: #d0c095 !important;
  background-color: rgba(208, 192, 149, var(--bg-opacity)) !important;
}

.cl-bg-ui-brown-700 {
  --bg-opacity: 1 !important;
  background-color: #bd6005 !important;
  background-color: rgba(189, 96, 5, var(--bg-opacity)) !important;
}

.cl-bg-ui-green-300 {
  --bg-opacity: 1 !important;
  background-color: #aac74c !important;
  background-color: rgba(170, 199, 76, var(--bg-opacity)) !important;
}

.cl-bg-ui-green-400 {
  --bg-opacity: 1 !important;
  background-color: #71893e !important;
  background-color: rgba(113, 137, 62, var(--bg-opacity)) !important;
}

.cl-bg-ui-orange-500 {
  --bg-opacity: 1 !important;
  background-color: #e27212 !important;
  background-color: rgba(226, 114, 18, var(--bg-opacity)) !important;
}

.cl-bg-facebook {
  --bg-opacity: 1 !important;
  background-color: #3b5998 !important;
  background-color: rgba(59, 89, 152, var(--bg-opacity)) !important;
}

.cl-bg-twitter {
  --bg-opacity: 1 !important;
  background-color: #00acee !important;
  background-color: rgba(0, 172, 238, var(--bg-opacity)) !important;
}

.cl-bg-twitch {
  --bg-opacity: 1 !important;
  background-color: #6441a5 !important;
  background-color: rgba(100, 65, 165, var(--bg-opacity)) !important;
}

.cl-bg-youtube {
  --bg-opacity: 1 !important;
  background-color: #FF0000 !important;
  background-color: rgba(255, 0, 0, var(--bg-opacity)) !important;
}

.hover\:cl-bg-transparent:hover {
  background-color: transparent !important;
}

.hover\:cl-bg-current:hover {
  background-color: currentColor !important;
}

.hover\:cl-bg-black:hover {
  --bg-opacity: 1 !important;
  background-color: #000 !important;
  background-color: rgba(0, 0, 0, var(--bg-opacity)) !important;
}

.hover\:cl-bg-white:hover {
  --bg-opacity: 1 !important;
  background-color: #fff !important;
  background-color: rgba(255, 255, 255, var(--bg-opacity)) !important;
}

.hover\:cl-bg-gray-100:hover {
  --bg-opacity: 1 !important;
  background-color: #f7fafc !important;
  background-color: rgba(247, 250, 252, var(--bg-opacity)) !important;
}

.hover\:cl-bg-gray-200:hover {
  --bg-opacity: 1 !important;
  background-color: #edf2f7 !important;
  background-color: rgba(237, 242, 247, var(--bg-opacity)) !important;
}

.hover\:cl-bg-gray-300:hover {
  --bg-opacity: 1 !important;
  background-color: #e2e8f0 !important;
  background-color: rgba(226, 232, 240, var(--bg-opacity)) !important;
}

.hover\:cl-bg-gray-400:hover {
  --bg-opacity: 1 !important;
  background-color: #cbd5e0 !important;
  background-color: rgba(203, 213, 224, var(--bg-opacity)) !important;
}

.hover\:cl-bg-gray-500:hover {
  --bg-opacity: 1 !important;
  background-color: #a0aec0 !important;
  background-color: rgba(160, 174, 192, var(--bg-opacity)) !important;
}

.hover\:cl-bg-gray-600:hover {
  --bg-opacity: 1 !important;
  background-color: #718096 !important;
  background-color: rgba(113, 128, 150, var(--bg-opacity)) !important;
}

.hover\:cl-bg-gray-700:hover {
  --bg-opacity: 1 !important;
  background-color: #4a5568 !important;
  background-color: rgba(74, 85, 104, var(--bg-opacity)) !important;
}

.hover\:cl-bg-gray-800:hover {
  --bg-opacity: 1 !important;
  background-color: #2d3748 !important;
  background-color: rgba(45, 55, 72, var(--bg-opacity)) !important;
}

.hover\:cl-bg-gray-900:hover {
  --bg-opacity: 1 !important;
  background-color: #1a202c !important;
  background-color: rgba(26, 32, 44, var(--bg-opacity)) !important;
}

.hover\:cl-bg-red-100:hover {
  --bg-opacity: 1 !important;
  background-color: #fff5f5 !important;
  background-color: rgba(255, 245, 245, var(--bg-opacity)) !important;
}

.hover\:cl-bg-red-200:hover {
  --bg-opacity: 1 !important;
  background-color: #fed7d7 !important;
  background-color: rgba(254, 215, 215, var(--bg-opacity)) !important;
}

.hover\:cl-bg-red-300:hover {
  --bg-opacity: 1 !important;
  background-color: #feb2b2 !important;
  background-color: rgba(254, 178, 178, var(--bg-opacity)) !important;
}

.hover\:cl-bg-red-400:hover {
  --bg-opacity: 1 !important;
  background-color: #fc8181 !important;
  background-color: rgba(252, 129, 129, var(--bg-opacity)) !important;
}

.hover\:cl-bg-red-500:hover {
  --bg-opacity: 1 !important;
  background-color: #f56565 !important;
  background-color: rgba(245, 101, 101, var(--bg-opacity)) !important;
}

.hover\:cl-bg-red-600:hover {
  --bg-opacity: 1 !important;
  background-color: #e53e3e !important;
  background-color: rgba(229, 62, 62, var(--bg-opacity)) !important;
}

.hover\:cl-bg-red-700:hover {
  --bg-opacity: 1 !important;
  background-color: #c53030 !important;
  background-color: rgba(197, 48, 48, var(--bg-opacity)) !important;
}

.hover\:cl-bg-red-800:hover {
  --bg-opacity: 1 !important;
  background-color: #9b2c2c !important;
  background-color: rgba(155, 44, 44, var(--bg-opacity)) !important;
}

.hover\:cl-bg-red-900:hover {
  --bg-opacity: 1 !important;
  background-color: #742a2a !important;
  background-color: rgba(116, 42, 42, var(--bg-opacity)) !important;
}

.hover\:cl-bg-orange-100:hover {
  --bg-opacity: 1 !important;
  background-color: #fffaf0 !important;
  background-color: rgba(255, 250, 240, var(--bg-opacity)) !important;
}

.hover\:cl-bg-orange-200:hover {
  --bg-opacity: 1 !important;
  background-color: #feebc8 !important;
  background-color: rgba(254, 235, 200, var(--bg-opacity)) !important;
}

.hover\:cl-bg-orange-300:hover {
  --bg-opacity: 1 !important;
  background-color: #fbd38d !important;
  background-color: rgba(251, 211, 141, var(--bg-opacity)) !important;
}

.hover\:cl-bg-orange-400:hover {
  --bg-opacity: 1 !important;
  background-color: #f6ad55 !important;
  background-color: rgba(246, 173, 85, var(--bg-opacity)) !important;
}

.hover\:cl-bg-orange-500:hover {
  --bg-opacity: 1 !important;
  background-color: #ed8936 !important;
  background-color: rgba(237, 137, 54, var(--bg-opacity)) !important;
}

.hover\:cl-bg-orange-600:hover {
  --bg-opacity: 1 !important;
  background-color: #dd6b20 !important;
  background-color: rgba(221, 107, 32, var(--bg-opacity)) !important;
}

.hover\:cl-bg-orange-700:hover {
  --bg-opacity: 1 !important;
  background-color: #c05621 !important;
  background-color: rgba(192, 86, 33, var(--bg-opacity)) !important;
}

.hover\:cl-bg-orange-800:hover {
  --bg-opacity: 1 !important;
  background-color: #9c4221 !important;
  background-color: rgba(156, 66, 33, var(--bg-opacity)) !important;
}

.hover\:cl-bg-orange-900:hover {
  --bg-opacity: 1 !important;
  background-color: #7b341e !important;
  background-color: rgba(123, 52, 30, var(--bg-opacity)) !important;
}

.hover\:cl-bg-yellow-100:hover {
  --bg-opacity: 1 !important;
  background-color: #fffff0 !important;
  background-color: rgba(255, 255, 240, var(--bg-opacity)) !important;
}

.hover\:cl-bg-yellow-200:hover {
  --bg-opacity: 1 !important;
  background-color: #fefcbf !important;
  background-color: rgba(254, 252, 191, var(--bg-opacity)) !important;
}

.hover\:cl-bg-yellow-300:hover {
  --bg-opacity: 1 !important;
  background-color: #faf089 !important;
  background-color: rgba(250, 240, 137, var(--bg-opacity)) !important;
}

.hover\:cl-bg-yellow-400:hover {
  --bg-opacity: 1 !important;
  background-color: #f6e05e !important;
  background-color: rgba(246, 224, 94, var(--bg-opacity)) !important;
}

.hover\:cl-bg-yellow-500:hover {
  --bg-opacity: 1 !important;
  background-color: #ecc94b !important;
  background-color: rgba(236, 201, 75, var(--bg-opacity)) !important;
}

.hover\:cl-bg-yellow-600:hover {
  --bg-opacity: 1 !important;
  background-color: #d69e2e !important;
  background-color: rgba(214, 158, 46, var(--bg-opacity)) !important;
}

.hover\:cl-bg-yellow-700:hover {
  --bg-opacity: 1 !important;
  background-color: #b7791f !important;
  background-color: rgba(183, 121, 31, var(--bg-opacity)) !important;
}

.hover\:cl-bg-yellow-800:hover {
  --bg-opacity: 1 !important;
  background-color: #975a16 !important;
  background-color: rgba(151, 90, 22, var(--bg-opacity)) !important;
}

.hover\:cl-bg-yellow-900:hover {
  --bg-opacity: 1 !important;
  background-color: #744210 !important;
  background-color: rgba(116, 66, 16, var(--bg-opacity)) !important;
}

.hover\:cl-bg-green-100:hover {
  --bg-opacity: 1 !important;
  background-color: #f0fff4 !important;
  background-color: rgba(240, 255, 244, var(--bg-opacity)) !important;
}

.hover\:cl-bg-green-200:hover {
  --bg-opacity: 1 !important;
  background-color: #c6f6d5 !important;
  background-color: rgba(198, 246, 213, var(--bg-opacity)) !important;
}

.hover\:cl-bg-green-300:hover {
  --bg-opacity: 1 !important;
  background-color: #9ae6b4 !important;
  background-color: rgba(154, 230, 180, var(--bg-opacity)) !important;
}

.hover\:cl-bg-green-400:hover {
  --bg-opacity: 1 !important;
  background-color: #68d391 !important;
  background-color: rgba(104, 211, 145, var(--bg-opacity)) !important;
}

.hover\:cl-bg-green-500:hover {
  --bg-opacity: 1 !important;
  background-color: #48bb78 !important;
  background-color: rgba(72, 187, 120, var(--bg-opacity)) !important;
}

.hover\:cl-bg-green-600:hover {
  --bg-opacity: 1 !important;
  background-color: #38a169 !important;
  background-color: rgba(56, 161, 105, var(--bg-opacity)) !important;
}

.hover\:cl-bg-green-700:hover {
  --bg-opacity: 1 !important;
  background-color: #2f855a !important;
  background-color: rgba(47, 133, 90, var(--bg-opacity)) !important;
}

.hover\:cl-bg-green-800:hover {
  --bg-opacity: 1 !important;
  background-color: #276749 !important;
  background-color: rgba(39, 103, 73, var(--bg-opacity)) !important;
}

.hover\:cl-bg-green-900:hover {
  --bg-opacity: 1 !important;
  background-color: #22543d !important;
  background-color: rgba(34, 84, 61, var(--bg-opacity)) !important;
}

.hover\:cl-bg-teal-100:hover {
  --bg-opacity: 1 !important;
  background-color: #e6fffa !important;
  background-color: rgba(230, 255, 250, var(--bg-opacity)) !important;
}

.hover\:cl-bg-teal-200:hover {
  --bg-opacity: 1 !important;
  background-color: #b2f5ea !important;
  background-color: rgba(178, 245, 234, var(--bg-opacity)) !important;
}

.hover\:cl-bg-teal-300:hover {
  --bg-opacity: 1 !important;
  background-color: #81e6d9 !important;
  background-color: rgba(129, 230, 217, var(--bg-opacity)) !important;
}

.hover\:cl-bg-teal-400:hover {
  --bg-opacity: 1 !important;
  background-color: #4fd1c5 !important;
  background-color: rgba(79, 209, 197, var(--bg-opacity)) !important;
}

.hover\:cl-bg-teal-500:hover {
  --bg-opacity: 1 !important;
  background-color: #38b2ac !important;
  background-color: rgba(56, 178, 172, var(--bg-opacity)) !important;
}

.hover\:cl-bg-teal-600:hover {
  --bg-opacity: 1 !important;
  background-color: #319795 !important;
  background-color: rgba(49, 151, 149, var(--bg-opacity)) !important;
}

.hover\:cl-bg-teal-700:hover {
  --bg-opacity: 1 !important;
  background-color: #2c7a7b !important;
  background-color: rgba(44, 122, 123, var(--bg-opacity)) !important;
}

.hover\:cl-bg-teal-800:hover {
  --bg-opacity: 1 !important;
  background-color: #285e61 !important;
  background-color: rgba(40, 94, 97, var(--bg-opacity)) !important;
}

.hover\:cl-bg-teal-900:hover {
  --bg-opacity: 1 !important;
  background-color: #234e52 !important;
  background-color: rgba(35, 78, 82, var(--bg-opacity)) !important;
}

.hover\:cl-bg-blue-100:hover {
  --bg-opacity: 1 !important;
  background-color: #ebf8ff !important;
  background-color: rgba(235, 248, 255, var(--bg-opacity)) !important;
}

.hover\:cl-bg-blue-200:hover {
  --bg-opacity: 1 !important;
  background-color: #bee3f8 !important;
  background-color: rgba(190, 227, 248, var(--bg-opacity)) !important;
}

.hover\:cl-bg-blue-300:hover {
  --bg-opacity: 1 !important;
  background-color: #90cdf4 !important;
  background-color: rgba(144, 205, 244, var(--bg-opacity)) !important;
}

.hover\:cl-bg-blue-400:hover {
  --bg-opacity: 1 !important;
  background-color: #63b3ed !important;
  background-color: rgba(99, 179, 237, var(--bg-opacity)) !important;
}

.hover\:cl-bg-blue-500:hover {
  --bg-opacity: 1 !important;
  background-color: #4299e1 !important;
  background-color: rgba(66, 153, 225, var(--bg-opacity)) !important;
}

.hover\:cl-bg-blue-600:hover {
  --bg-opacity: 1 !important;
  background-color: #3182ce !important;
  background-color: rgba(49, 130, 206, var(--bg-opacity)) !important;
}

.hover\:cl-bg-blue-700:hover {
  --bg-opacity: 1 !important;
  background-color: #2b6cb0 !important;
  background-color: rgba(43, 108, 176, var(--bg-opacity)) !important;
}

.hover\:cl-bg-blue-800:hover {
  --bg-opacity: 1 !important;
  background-color: #2c5282 !important;
  background-color: rgba(44, 82, 130, var(--bg-opacity)) !important;
}

.hover\:cl-bg-blue-900:hover {
  --bg-opacity: 1 !important;
  background-color: #2a4365 !important;
  background-color: rgba(42, 67, 101, var(--bg-opacity)) !important;
}

.hover\:cl-bg-indigo-100:hover {
  --bg-opacity: 1 !important;
  background-color: #ebf4ff !important;
  background-color: rgba(235, 244, 255, var(--bg-opacity)) !important;
}

.hover\:cl-bg-indigo-200:hover {
  --bg-opacity: 1 !important;
  background-color: #c3dafe !important;
  background-color: rgba(195, 218, 254, var(--bg-opacity)) !important;
}

.hover\:cl-bg-indigo-300:hover {
  --bg-opacity: 1 !important;
  background-color: #a3bffa !important;
  background-color: rgba(163, 191, 250, var(--bg-opacity)) !important;
}

.hover\:cl-bg-indigo-400:hover {
  --bg-opacity: 1 !important;
  background-color: #7f9cf5 !important;
  background-color: rgba(127, 156, 245, var(--bg-opacity)) !important;
}

.hover\:cl-bg-indigo-500:hover {
  --bg-opacity: 1 !important;
  background-color: #667eea !important;
  background-color: rgba(102, 126, 234, var(--bg-opacity)) !important;
}

.hover\:cl-bg-indigo-600:hover {
  --bg-opacity: 1 !important;
  background-color: #5a67d8 !important;
  background-color: rgba(90, 103, 216, var(--bg-opacity)) !important;
}

.hover\:cl-bg-indigo-700:hover {
  --bg-opacity: 1 !important;
  background-color: #4c51bf !important;
  background-color: rgba(76, 81, 191, var(--bg-opacity)) !important;
}

.hover\:cl-bg-indigo-800:hover {
  --bg-opacity: 1 !important;
  background-color: #434190 !important;
  background-color: rgba(67, 65, 144, var(--bg-opacity)) !important;
}

.hover\:cl-bg-indigo-900:hover {
  --bg-opacity: 1 !important;
  background-color: #3c366b !important;
  background-color: rgba(60, 54, 107, var(--bg-opacity)) !important;
}

.hover\:cl-bg-purple-100:hover {
  --bg-opacity: 1 !important;
  background-color: #faf5ff !important;
  background-color: rgba(250, 245, 255, var(--bg-opacity)) !important;
}

.hover\:cl-bg-purple-200:hover {
  --bg-opacity: 1 !important;
  background-color: #e9d8fd !important;
  background-color: rgba(233, 216, 253, var(--bg-opacity)) !important;
}

.hover\:cl-bg-purple-300:hover {
  --bg-opacity: 1 !important;
  background-color: #d6bcfa !important;
  background-color: rgba(214, 188, 250, var(--bg-opacity)) !important;
}

.hover\:cl-bg-purple-400:hover {
  --bg-opacity: 1 !important;
  background-color: #b794f4 !important;
  background-color: rgba(183, 148, 244, var(--bg-opacity)) !important;
}

.hover\:cl-bg-purple-500:hover {
  --bg-opacity: 1 !important;
  background-color: #9f7aea !important;
  background-color: rgba(159, 122, 234, var(--bg-opacity)) !important;
}

.hover\:cl-bg-purple-600:hover {
  --bg-opacity: 1 !important;
  background-color: #805ad5 !important;
  background-color: rgba(128, 90, 213, var(--bg-opacity)) !important;
}

.hover\:cl-bg-purple-700:hover {
  --bg-opacity: 1 !important;
  background-color: #6b46c1 !important;
  background-color: rgba(107, 70, 193, var(--bg-opacity)) !important;
}

.hover\:cl-bg-purple-800:hover {
  --bg-opacity: 1 !important;
  background-color: #553c9a !important;
  background-color: rgba(85, 60, 154, var(--bg-opacity)) !important;
}

.hover\:cl-bg-purple-900:hover {
  --bg-opacity: 1 !important;
  background-color: #44337a !important;
  background-color: rgba(68, 51, 122, var(--bg-opacity)) !important;
}

.hover\:cl-bg-pink-100:hover {
  --bg-opacity: 1 !important;
  background-color: #fff5f7 !important;
  background-color: rgba(255, 245, 247, var(--bg-opacity)) !important;
}

.hover\:cl-bg-pink-200:hover {
  --bg-opacity: 1 !important;
  background-color: #fed7e2 !important;
  background-color: rgba(254, 215, 226, var(--bg-opacity)) !important;
}

.hover\:cl-bg-pink-300:hover {
  --bg-opacity: 1 !important;
  background-color: #fbb6ce !important;
  background-color: rgba(251, 182, 206, var(--bg-opacity)) !important;
}

.hover\:cl-bg-pink-400:hover {
  --bg-opacity: 1 !important;
  background-color: #f687b3 !important;
  background-color: rgba(246, 135, 179, var(--bg-opacity)) !important;
}

.hover\:cl-bg-pink-500:hover {
  --bg-opacity: 1 !important;
  background-color: #ed64a6 !important;
  background-color: rgba(237, 100, 166, var(--bg-opacity)) !important;
}

.hover\:cl-bg-pink-600:hover {
  --bg-opacity: 1 !important;
  background-color: #d53f8c !important;
  background-color: rgba(213, 63, 140, var(--bg-opacity)) !important;
}

.hover\:cl-bg-pink-700:hover {
  --bg-opacity: 1 !important;
  background-color: #b83280 !important;
  background-color: rgba(184, 50, 128, var(--bg-opacity)) !important;
}

.hover\:cl-bg-pink-800:hover {
  --bg-opacity: 1 !important;
  background-color: #97266d !important;
  background-color: rgba(151, 38, 109, var(--bg-opacity)) !important;
}

.hover\:cl-bg-pink-900:hover {
  --bg-opacity: 1 !important;
  background-color: #702459 !important;
  background-color: rgba(112, 36, 89, var(--bg-opacity)) !important;
}

.hover\:cl-bg-ui-gray-100:hover {
  --bg-opacity: 1 !important;
  background-color: #f1f1f1 !important;
  background-color: rgba(241, 241, 241, var(--bg-opacity)) !important;
}

.hover\:cl-bg-ui-brown-100:hover {
  --bg-opacity: 1 !important;
  background-color: #f3ecdc !important;
  background-color: rgba(243, 236, 220, var(--bg-opacity)) !important;
}

.hover\:cl-bg-ui-brown-200:hover {
  --bg-opacity: 1 !important;
  background-color: #e8e0c9 !important;
  background-color: rgba(232, 224, 201, var(--bg-opacity)) !important;
}

.hover\:cl-bg-ui-brown-300:hover {
  --bg-opacity: 1 !important;
  background-color: #d0c095 !important;
  background-color: rgba(208, 192, 149, var(--bg-opacity)) !important;
}

.hover\:cl-bg-ui-brown-700:hover {
  --bg-opacity: 1 !important;
  background-color: #bd6005 !important;
  background-color: rgba(189, 96, 5, var(--bg-opacity)) !important;
}

.hover\:cl-bg-ui-green-300:hover {
  --bg-opacity: 1 !important;
  background-color: #aac74c !important;
  background-color: rgba(170, 199, 76, var(--bg-opacity)) !important;
}

.hover\:cl-bg-ui-green-400:hover {
  --bg-opacity: 1 !important;
  background-color: #71893e !important;
  background-color: rgba(113, 137, 62, var(--bg-opacity)) !important;
}

.hover\:cl-bg-ui-orange-500:hover {
  --bg-opacity: 1 !important;
  background-color: #e27212 !important;
  background-color: rgba(226, 114, 18, var(--bg-opacity)) !important;
}

.hover\:cl-bg-facebook:hover {
  --bg-opacity: 1 !important;
  background-color: #3b5998 !important;
  background-color: rgba(59, 89, 152, var(--bg-opacity)) !important;
}

.hover\:cl-bg-twitter:hover {
  --bg-opacity: 1 !important;
  background-color: #00acee !important;
  background-color: rgba(0, 172, 238, var(--bg-opacity)) !important;
}

.hover\:cl-bg-twitch:hover {
  --bg-opacity: 1 !important;
  background-color: #6441a5 !important;
  background-color: rgba(100, 65, 165, var(--bg-opacity)) !important;
}

.hover\:cl-bg-youtube:hover {
  --bg-opacity: 1 !important;
  background-color: #FF0000 !important;
  background-color: rgba(255, 0, 0, var(--bg-opacity)) !important;
}

.focus\:cl-bg-transparent:focus {
  background-color: transparent !important;
}

.focus\:cl-bg-current:focus {
  background-color: currentColor !important;
}

.focus\:cl-bg-black:focus {
  --bg-opacity: 1 !important;
  background-color: #000 !important;
  background-color: rgba(0, 0, 0, var(--bg-opacity)) !important;
}

.focus\:cl-bg-white:focus {
  --bg-opacity: 1 !important;
  background-color: #fff !important;
  background-color: rgba(255, 255, 255, var(--bg-opacity)) !important;
}

.focus\:cl-bg-gray-100:focus {
  --bg-opacity: 1 !important;
  background-color: #f7fafc !important;
  background-color: rgba(247, 250, 252, var(--bg-opacity)) !important;
}

.focus\:cl-bg-gray-200:focus {
  --bg-opacity: 1 !important;
  background-color: #edf2f7 !important;
  background-color: rgba(237, 242, 247, var(--bg-opacity)) !important;
}

.focus\:cl-bg-gray-300:focus {
  --bg-opacity: 1 !important;
  background-color: #e2e8f0 !important;
  background-color: rgba(226, 232, 240, var(--bg-opacity)) !important;
}

.focus\:cl-bg-gray-400:focus {
  --bg-opacity: 1 !important;
  background-color: #cbd5e0 !important;
  background-color: rgba(203, 213, 224, var(--bg-opacity)) !important;
}

.focus\:cl-bg-gray-500:focus {
  --bg-opacity: 1 !important;
  background-color: #a0aec0 !important;
  background-color: rgba(160, 174, 192, var(--bg-opacity)) !important;
}

.focus\:cl-bg-gray-600:focus {
  --bg-opacity: 1 !important;
  background-color: #718096 !important;
  background-color: rgba(113, 128, 150, var(--bg-opacity)) !important;
}

.focus\:cl-bg-gray-700:focus {
  --bg-opacity: 1 !important;
  background-color: #4a5568 !important;
  background-color: rgba(74, 85, 104, var(--bg-opacity)) !important;
}

.focus\:cl-bg-gray-800:focus {
  --bg-opacity: 1 !important;
  background-color: #2d3748 !important;
  background-color: rgba(45, 55, 72, var(--bg-opacity)) !important;
}

.focus\:cl-bg-gray-900:focus {
  --bg-opacity: 1 !important;
  background-color: #1a202c !important;
  background-color: rgba(26, 32, 44, var(--bg-opacity)) !important;
}

.focus\:cl-bg-red-100:focus {
  --bg-opacity: 1 !important;
  background-color: #fff5f5 !important;
  background-color: rgba(255, 245, 245, var(--bg-opacity)) !important;
}

.focus\:cl-bg-red-200:focus {
  --bg-opacity: 1 !important;
  background-color: #fed7d7 !important;
  background-color: rgba(254, 215, 215, var(--bg-opacity)) !important;
}

.focus\:cl-bg-red-300:focus {
  --bg-opacity: 1 !important;
  background-color: #feb2b2 !important;
  background-color: rgba(254, 178, 178, var(--bg-opacity)) !important;
}

.focus\:cl-bg-red-400:focus {
  --bg-opacity: 1 !important;
  background-color: #fc8181 !important;
  background-color: rgba(252, 129, 129, var(--bg-opacity)) !important;
}

.focus\:cl-bg-red-500:focus {
  --bg-opacity: 1 !important;
  background-color: #f56565 !important;
  background-color: rgba(245, 101, 101, var(--bg-opacity)) !important;
}

.focus\:cl-bg-red-600:focus {
  --bg-opacity: 1 !important;
  background-color: #e53e3e !important;
  background-color: rgba(229, 62, 62, var(--bg-opacity)) !important;
}

.focus\:cl-bg-red-700:focus {
  --bg-opacity: 1 !important;
  background-color: #c53030 !important;
  background-color: rgba(197, 48, 48, var(--bg-opacity)) !important;
}

.focus\:cl-bg-red-800:focus {
  --bg-opacity: 1 !important;
  background-color: #9b2c2c !important;
  background-color: rgba(155, 44, 44, var(--bg-opacity)) !important;
}

.focus\:cl-bg-red-900:focus {
  --bg-opacity: 1 !important;
  background-color: #742a2a !important;
  background-color: rgba(116, 42, 42, var(--bg-opacity)) !important;
}

.focus\:cl-bg-orange-100:focus {
  --bg-opacity: 1 !important;
  background-color: #fffaf0 !important;
  background-color: rgba(255, 250, 240, var(--bg-opacity)) !important;
}

.focus\:cl-bg-orange-200:focus {
  --bg-opacity: 1 !important;
  background-color: #feebc8 !important;
  background-color: rgba(254, 235, 200, var(--bg-opacity)) !important;
}

.focus\:cl-bg-orange-300:focus {
  --bg-opacity: 1 !important;
  background-color: #fbd38d !important;
  background-color: rgba(251, 211, 141, var(--bg-opacity)) !important;
}

.focus\:cl-bg-orange-400:focus {
  --bg-opacity: 1 !important;
  background-color: #f6ad55 !important;
  background-color: rgba(246, 173, 85, var(--bg-opacity)) !important;
}

.focus\:cl-bg-orange-500:focus {
  --bg-opacity: 1 !important;
  background-color: #ed8936 !important;
  background-color: rgba(237, 137, 54, var(--bg-opacity)) !important;
}

.focus\:cl-bg-orange-600:focus {
  --bg-opacity: 1 !important;
  background-color: #dd6b20 !important;
  background-color: rgba(221, 107, 32, var(--bg-opacity)) !important;
}

.focus\:cl-bg-orange-700:focus {
  --bg-opacity: 1 !important;
  background-color: #c05621 !important;
  background-color: rgba(192, 86, 33, var(--bg-opacity)) !important;
}

.focus\:cl-bg-orange-800:focus {
  --bg-opacity: 1 !important;
  background-color: #9c4221 !important;
  background-color: rgba(156, 66, 33, var(--bg-opacity)) !important;
}

.focus\:cl-bg-orange-900:focus {
  --bg-opacity: 1 !important;
  background-color: #7b341e !important;
  background-color: rgba(123, 52, 30, var(--bg-opacity)) !important;
}

.focus\:cl-bg-yellow-100:focus {
  --bg-opacity: 1 !important;
  background-color: #fffff0 !important;
  background-color: rgba(255, 255, 240, var(--bg-opacity)) !important;
}

.focus\:cl-bg-yellow-200:focus {
  --bg-opacity: 1 !important;
  background-color: #fefcbf !important;
  background-color: rgba(254, 252, 191, var(--bg-opacity)) !important;
}

.focus\:cl-bg-yellow-300:focus {
  --bg-opacity: 1 !important;
  background-color: #faf089 !important;
  background-color: rgba(250, 240, 137, var(--bg-opacity)) !important;
}

.focus\:cl-bg-yellow-400:focus {
  --bg-opacity: 1 !important;
  background-color: #f6e05e !important;
  background-color: rgba(246, 224, 94, var(--bg-opacity)) !important;
}

.focus\:cl-bg-yellow-500:focus {
  --bg-opacity: 1 !important;
  background-color: #ecc94b !important;
  background-color: rgba(236, 201, 75, var(--bg-opacity)) !important;
}

.focus\:cl-bg-yellow-600:focus {
  --bg-opacity: 1 !important;
  background-color: #d69e2e !important;
  background-color: rgba(214, 158, 46, var(--bg-opacity)) !important;
}

.focus\:cl-bg-yellow-700:focus {
  --bg-opacity: 1 !important;
  background-color: #b7791f !important;
  background-color: rgba(183, 121, 31, var(--bg-opacity)) !important;
}

.focus\:cl-bg-yellow-800:focus {
  --bg-opacity: 1 !important;
  background-color: #975a16 !important;
  background-color: rgba(151, 90, 22, var(--bg-opacity)) !important;
}

.focus\:cl-bg-yellow-900:focus {
  --bg-opacity: 1 !important;
  background-color: #744210 !important;
  background-color: rgba(116, 66, 16, var(--bg-opacity)) !important;
}

.focus\:cl-bg-green-100:focus {
  --bg-opacity: 1 !important;
  background-color: #f0fff4 !important;
  background-color: rgba(240, 255, 244, var(--bg-opacity)) !important;
}

.focus\:cl-bg-green-200:focus {
  --bg-opacity: 1 !important;
  background-color: #c6f6d5 !important;
  background-color: rgba(198, 246, 213, var(--bg-opacity)) !important;
}

.focus\:cl-bg-green-300:focus {
  --bg-opacity: 1 !important;
  background-color: #9ae6b4 !important;
  background-color: rgba(154, 230, 180, var(--bg-opacity)) !important;
}

.focus\:cl-bg-green-400:focus {
  --bg-opacity: 1 !important;
  background-color: #68d391 !important;
  background-color: rgba(104, 211, 145, var(--bg-opacity)) !important;
}

.focus\:cl-bg-green-500:focus {
  --bg-opacity: 1 !important;
  background-color: #48bb78 !important;
  background-color: rgba(72, 187, 120, var(--bg-opacity)) !important;
}

.focus\:cl-bg-green-600:focus {
  --bg-opacity: 1 !important;
  background-color: #38a169 !important;
  background-color: rgba(56, 161, 105, var(--bg-opacity)) !important;
}

.focus\:cl-bg-green-700:focus {
  --bg-opacity: 1 !important;
  background-color: #2f855a !important;
  background-color: rgba(47, 133, 90, var(--bg-opacity)) !important;
}

.focus\:cl-bg-green-800:focus {
  --bg-opacity: 1 !important;
  background-color: #276749 !important;
  background-color: rgba(39, 103, 73, var(--bg-opacity)) !important;
}

.focus\:cl-bg-green-900:focus {
  --bg-opacity: 1 !important;
  background-color: #22543d !important;
  background-color: rgba(34, 84, 61, var(--bg-opacity)) !important;
}

.focus\:cl-bg-teal-100:focus {
  --bg-opacity: 1 !important;
  background-color: #e6fffa !important;
  background-color: rgba(230, 255, 250, var(--bg-opacity)) !important;
}

.focus\:cl-bg-teal-200:focus {
  --bg-opacity: 1 !important;
  background-color: #b2f5ea !important;
  background-color: rgba(178, 245, 234, var(--bg-opacity)) !important;
}

.focus\:cl-bg-teal-300:focus {
  --bg-opacity: 1 !important;
  background-color: #81e6d9 !important;
  background-color: rgba(129, 230, 217, var(--bg-opacity)) !important;
}

.focus\:cl-bg-teal-400:focus {
  --bg-opacity: 1 !important;
  background-color: #4fd1c5 !important;
  background-color: rgba(79, 209, 197, var(--bg-opacity)) !important;
}

.focus\:cl-bg-teal-500:focus {
  --bg-opacity: 1 !important;
  background-color: #38b2ac !important;
  background-color: rgba(56, 178, 172, var(--bg-opacity)) !important;
}

.focus\:cl-bg-teal-600:focus {
  --bg-opacity: 1 !important;
  background-color: #319795 !important;
  background-color: rgba(49, 151, 149, var(--bg-opacity)) !important;
}

.focus\:cl-bg-teal-700:focus {
  --bg-opacity: 1 !important;
  background-color: #2c7a7b !important;
  background-color: rgba(44, 122, 123, var(--bg-opacity)) !important;
}

.focus\:cl-bg-teal-800:focus {
  --bg-opacity: 1 !important;
  background-color: #285e61 !important;
  background-color: rgba(40, 94, 97, var(--bg-opacity)) !important;
}

.focus\:cl-bg-teal-900:focus {
  --bg-opacity: 1 !important;
  background-color: #234e52 !important;
  background-color: rgba(35, 78, 82, var(--bg-opacity)) !important;
}

.focus\:cl-bg-blue-100:focus {
  --bg-opacity: 1 !important;
  background-color: #ebf8ff !important;
  background-color: rgba(235, 248, 255, var(--bg-opacity)) !important;
}

.focus\:cl-bg-blue-200:focus {
  --bg-opacity: 1 !important;
  background-color: #bee3f8 !important;
  background-color: rgba(190, 227, 248, var(--bg-opacity)) !important;
}

.focus\:cl-bg-blue-300:focus {
  --bg-opacity: 1 !important;
  background-color: #90cdf4 !important;
  background-color: rgba(144, 205, 244, var(--bg-opacity)) !important;
}

.focus\:cl-bg-blue-400:focus {
  --bg-opacity: 1 !important;
  background-color: #63b3ed !important;
  background-color: rgba(99, 179, 237, var(--bg-opacity)) !important;
}

.focus\:cl-bg-blue-500:focus {
  --bg-opacity: 1 !important;
  background-color: #4299e1 !important;
  background-color: rgba(66, 153, 225, var(--bg-opacity)) !important;
}

.focus\:cl-bg-blue-600:focus {
  --bg-opacity: 1 !important;
  background-color: #3182ce !important;
  background-color: rgba(49, 130, 206, var(--bg-opacity)) !important;
}

.focus\:cl-bg-blue-700:focus {
  --bg-opacity: 1 !important;
  background-color: #2b6cb0 !important;
  background-color: rgba(43, 108, 176, var(--bg-opacity)) !important;
}

.focus\:cl-bg-blue-800:focus {
  --bg-opacity: 1 !important;
  background-color: #2c5282 !important;
  background-color: rgba(44, 82, 130, var(--bg-opacity)) !important;
}

.focus\:cl-bg-blue-900:focus {
  --bg-opacity: 1 !important;
  background-color: #2a4365 !important;
  background-color: rgba(42, 67, 101, var(--bg-opacity)) !important;
}

.focus\:cl-bg-indigo-100:focus {
  --bg-opacity: 1 !important;
  background-color: #ebf4ff !important;
  background-color: rgba(235, 244, 255, var(--bg-opacity)) !important;
}

.focus\:cl-bg-indigo-200:focus {
  --bg-opacity: 1 !important;
  background-color: #c3dafe !important;
  background-color: rgba(195, 218, 254, var(--bg-opacity)) !important;
}

.focus\:cl-bg-indigo-300:focus {
  --bg-opacity: 1 !important;
  background-color: #a3bffa !important;
  background-color: rgba(163, 191, 250, var(--bg-opacity)) !important;
}

.focus\:cl-bg-indigo-400:focus {
  --bg-opacity: 1 !important;
  background-color: #7f9cf5 !important;
  background-color: rgba(127, 156, 245, var(--bg-opacity)) !important;
}

.focus\:cl-bg-indigo-500:focus {
  --bg-opacity: 1 !important;
  background-color: #667eea !important;
  background-color: rgba(102, 126, 234, var(--bg-opacity)) !important;
}

.focus\:cl-bg-indigo-600:focus {
  --bg-opacity: 1 !important;
  background-color: #5a67d8 !important;
  background-color: rgba(90, 103, 216, var(--bg-opacity)) !important;
}

.focus\:cl-bg-indigo-700:focus {
  --bg-opacity: 1 !important;
  background-color: #4c51bf !important;
  background-color: rgba(76, 81, 191, var(--bg-opacity)) !important;
}

.focus\:cl-bg-indigo-800:focus {
  --bg-opacity: 1 !important;
  background-color: #434190 !important;
  background-color: rgba(67, 65, 144, var(--bg-opacity)) !important;
}

.focus\:cl-bg-indigo-900:focus {
  --bg-opacity: 1 !important;
  background-color: #3c366b !important;
  background-color: rgba(60, 54, 107, var(--bg-opacity)) !important;
}

.focus\:cl-bg-purple-100:focus {
  --bg-opacity: 1 !important;
  background-color: #faf5ff !important;
  background-color: rgba(250, 245, 255, var(--bg-opacity)) !important;
}

.focus\:cl-bg-purple-200:focus {
  --bg-opacity: 1 !important;
  background-color: #e9d8fd !important;
  background-color: rgba(233, 216, 253, var(--bg-opacity)) !important;
}

.focus\:cl-bg-purple-300:focus {
  --bg-opacity: 1 !important;
  background-color: #d6bcfa !important;
  background-color: rgba(214, 188, 250, var(--bg-opacity)) !important;
}

.focus\:cl-bg-purple-400:focus {
  --bg-opacity: 1 !important;
  background-color: #b794f4 !important;
  background-color: rgba(183, 148, 244, var(--bg-opacity)) !important;
}

.focus\:cl-bg-purple-500:focus {
  --bg-opacity: 1 !important;
  background-color: #9f7aea !important;
  background-color: rgba(159, 122, 234, var(--bg-opacity)) !important;
}

.focus\:cl-bg-purple-600:focus {
  --bg-opacity: 1 !important;
  background-color: #805ad5 !important;
  background-color: rgba(128, 90, 213, var(--bg-opacity)) !important;
}

.focus\:cl-bg-purple-700:focus {
  --bg-opacity: 1 !important;
  background-color: #6b46c1 !important;
  background-color: rgba(107, 70, 193, var(--bg-opacity)) !important;
}

.focus\:cl-bg-purple-800:focus {
  --bg-opacity: 1 !important;
  background-color: #553c9a !important;
  background-color: rgba(85, 60, 154, var(--bg-opacity)) !important;
}

.focus\:cl-bg-purple-900:focus {
  --bg-opacity: 1 !important;
  background-color: #44337a !important;
  background-color: rgba(68, 51, 122, var(--bg-opacity)) !important;
}

.focus\:cl-bg-pink-100:focus {
  --bg-opacity: 1 !important;
  background-color: #fff5f7 !important;
  background-color: rgba(255, 245, 247, var(--bg-opacity)) !important;
}

.focus\:cl-bg-pink-200:focus {
  --bg-opacity: 1 !important;
  background-color: #fed7e2 !important;
  background-color: rgba(254, 215, 226, var(--bg-opacity)) !important;
}

.focus\:cl-bg-pink-300:focus {
  --bg-opacity: 1 !important;
  background-color: #fbb6ce !important;
  background-color: rgba(251, 182, 206, var(--bg-opacity)) !important;
}

.focus\:cl-bg-pink-400:focus {
  --bg-opacity: 1 !important;
  background-color: #f687b3 !important;
  background-color: rgba(246, 135, 179, var(--bg-opacity)) !important;
}

.focus\:cl-bg-pink-500:focus {
  --bg-opacity: 1 !important;
  background-color: #ed64a6 !important;
  background-color: rgba(237, 100, 166, var(--bg-opacity)) !important;
}

.focus\:cl-bg-pink-600:focus {
  --bg-opacity: 1 !important;
  background-color: #d53f8c !important;
  background-color: rgba(213, 63, 140, var(--bg-opacity)) !important;
}

.focus\:cl-bg-pink-700:focus {
  --bg-opacity: 1 !important;
  background-color: #b83280 !important;
  background-color: rgba(184, 50, 128, var(--bg-opacity)) !important;
}

.focus\:cl-bg-pink-800:focus {
  --bg-opacity: 1 !important;
  background-color: #97266d !important;
  background-color: rgba(151, 38, 109, var(--bg-opacity)) !important;
}

.focus\:cl-bg-pink-900:focus {
  --bg-opacity: 1 !important;
  background-color: #702459 !important;
  background-color: rgba(112, 36, 89, var(--bg-opacity)) !important;
}

.focus\:cl-bg-ui-gray-100:focus {
  --bg-opacity: 1 !important;
  background-color: #f1f1f1 !important;
  background-color: rgba(241, 241, 241, var(--bg-opacity)) !important;
}

.focus\:cl-bg-ui-brown-100:focus {
  --bg-opacity: 1 !important;
  background-color: #f3ecdc !important;
  background-color: rgba(243, 236, 220, var(--bg-opacity)) !important;
}

.focus\:cl-bg-ui-brown-200:focus {
  --bg-opacity: 1 !important;
  background-color: #e8e0c9 !important;
  background-color: rgba(232, 224, 201, var(--bg-opacity)) !important;
}

.focus\:cl-bg-ui-brown-300:focus {
  --bg-opacity: 1 !important;
  background-color: #d0c095 !important;
  background-color: rgba(208, 192, 149, var(--bg-opacity)) !important;
}

.focus\:cl-bg-ui-brown-700:focus {
  --bg-opacity: 1 !important;
  background-color: #bd6005 !important;
  background-color: rgba(189, 96, 5, var(--bg-opacity)) !important;
}

.focus\:cl-bg-ui-green-300:focus {
  --bg-opacity: 1 !important;
  background-color: #aac74c !important;
  background-color: rgba(170, 199, 76, var(--bg-opacity)) !important;
}

.focus\:cl-bg-ui-green-400:focus {
  --bg-opacity: 1 !important;
  background-color: #71893e !important;
  background-color: rgba(113, 137, 62, var(--bg-opacity)) !important;
}

.focus\:cl-bg-ui-orange-500:focus {
  --bg-opacity: 1 !important;
  background-color: #e27212 !important;
  background-color: rgba(226, 114, 18, var(--bg-opacity)) !important;
}

.focus\:cl-bg-facebook:focus {
  --bg-opacity: 1 !important;
  background-color: #3b5998 !important;
  background-color: rgba(59, 89, 152, var(--bg-opacity)) !important;
}

.focus\:cl-bg-twitter:focus {
  --bg-opacity: 1 !important;
  background-color: #00acee !important;
  background-color: rgba(0, 172, 238, var(--bg-opacity)) !important;
}

.focus\:cl-bg-twitch:focus {
  --bg-opacity: 1 !important;
  background-color: #6441a5 !important;
  background-color: rgba(100, 65, 165, var(--bg-opacity)) !important;
}

.focus\:cl-bg-youtube:focus {
  --bg-opacity: 1 !important;
  background-color: #FF0000 !important;
  background-color: rgba(255, 0, 0, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-transparent {
  background-color: transparent !important;
}

.cl-group:hover .group-hover\:cl-bg-current {
  background-color: currentColor !important;
}

.cl-group:hover .group-hover\:cl-bg-black {
  --bg-opacity: 1 !important;
  background-color: #000 !important;
  background-color: rgba(0, 0, 0, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-white {
  --bg-opacity: 1 !important;
  background-color: #fff !important;
  background-color: rgba(255, 255, 255, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-gray-100 {
  --bg-opacity: 1 !important;
  background-color: #f7fafc !important;
  background-color: rgba(247, 250, 252, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-gray-200 {
  --bg-opacity: 1 !important;
  background-color: #edf2f7 !important;
  background-color: rgba(237, 242, 247, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-gray-300 {
  --bg-opacity: 1 !important;
  background-color: #e2e8f0 !important;
  background-color: rgba(226, 232, 240, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-gray-400 {
  --bg-opacity: 1 !important;
  background-color: #cbd5e0 !important;
  background-color: rgba(203, 213, 224, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-gray-500 {
  --bg-opacity: 1 !important;
  background-color: #a0aec0 !important;
  background-color: rgba(160, 174, 192, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-gray-600 {
  --bg-opacity: 1 !important;
  background-color: #718096 !important;
  background-color: rgba(113, 128, 150, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-gray-700 {
  --bg-opacity: 1 !important;
  background-color: #4a5568 !important;
  background-color: rgba(74, 85, 104, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-gray-800 {
  --bg-opacity: 1 !important;
  background-color: #2d3748 !important;
  background-color: rgba(45, 55, 72, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-gray-900 {
  --bg-opacity: 1 !important;
  background-color: #1a202c !important;
  background-color: rgba(26, 32, 44, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-red-100 {
  --bg-opacity: 1 !important;
  background-color: #fff5f5 !important;
  background-color: rgba(255, 245, 245, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-red-200 {
  --bg-opacity: 1 !important;
  background-color: #fed7d7 !important;
  background-color: rgba(254, 215, 215, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-red-300 {
  --bg-opacity: 1 !important;
  background-color: #feb2b2 !important;
  background-color: rgba(254, 178, 178, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-red-400 {
  --bg-opacity: 1 !important;
  background-color: #fc8181 !important;
  background-color: rgba(252, 129, 129, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-red-500 {
  --bg-opacity: 1 !important;
  background-color: #f56565 !important;
  background-color: rgba(245, 101, 101, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-red-600 {
  --bg-opacity: 1 !important;
  background-color: #e53e3e !important;
  background-color: rgba(229, 62, 62, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-red-700 {
  --bg-opacity: 1 !important;
  background-color: #c53030 !important;
  background-color: rgba(197, 48, 48, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-red-800 {
  --bg-opacity: 1 !important;
  background-color: #9b2c2c !important;
  background-color: rgba(155, 44, 44, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-red-900 {
  --bg-opacity: 1 !important;
  background-color: #742a2a !important;
  background-color: rgba(116, 42, 42, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-orange-100 {
  --bg-opacity: 1 !important;
  background-color: #fffaf0 !important;
  background-color: rgba(255, 250, 240, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-orange-200 {
  --bg-opacity: 1 !important;
  background-color: #feebc8 !important;
  background-color: rgba(254, 235, 200, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-orange-300 {
  --bg-opacity: 1 !important;
  background-color: #fbd38d !important;
  background-color: rgba(251, 211, 141, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-orange-400 {
  --bg-opacity: 1 !important;
  background-color: #f6ad55 !important;
  background-color: rgba(246, 173, 85, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-orange-500 {
  --bg-opacity: 1 !important;
  background-color: #ed8936 !important;
  background-color: rgba(237, 137, 54, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-orange-600 {
  --bg-opacity: 1 !important;
  background-color: #dd6b20 !important;
  background-color: rgba(221, 107, 32, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-orange-700 {
  --bg-opacity: 1 !important;
  background-color: #c05621 !important;
  background-color: rgba(192, 86, 33, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-orange-800 {
  --bg-opacity: 1 !important;
  background-color: #9c4221 !important;
  background-color: rgba(156, 66, 33, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-orange-900 {
  --bg-opacity: 1 !important;
  background-color: #7b341e !important;
  background-color: rgba(123, 52, 30, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-yellow-100 {
  --bg-opacity: 1 !important;
  background-color: #fffff0 !important;
  background-color: rgba(255, 255, 240, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-yellow-200 {
  --bg-opacity: 1 !important;
  background-color: #fefcbf !important;
  background-color: rgba(254, 252, 191, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-yellow-300 {
  --bg-opacity: 1 !important;
  background-color: #faf089 !important;
  background-color: rgba(250, 240, 137, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-yellow-400 {
  --bg-opacity: 1 !important;
  background-color: #f6e05e !important;
  background-color: rgba(246, 224, 94, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-yellow-500 {
  --bg-opacity: 1 !important;
  background-color: #ecc94b !important;
  background-color: rgba(236, 201, 75, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-yellow-600 {
  --bg-opacity: 1 !important;
  background-color: #d69e2e !important;
  background-color: rgba(214, 158, 46, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-yellow-700 {
  --bg-opacity: 1 !important;
  background-color: #b7791f !important;
  background-color: rgba(183, 121, 31, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-yellow-800 {
  --bg-opacity: 1 !important;
  background-color: #975a16 !important;
  background-color: rgba(151, 90, 22, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-yellow-900 {
  --bg-opacity: 1 !important;
  background-color: #744210 !important;
  background-color: rgba(116, 66, 16, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-green-100 {
  --bg-opacity: 1 !important;
  background-color: #f0fff4 !important;
  background-color: rgba(240, 255, 244, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-green-200 {
  --bg-opacity: 1 !important;
  background-color: #c6f6d5 !important;
  background-color: rgba(198, 246, 213, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-green-300 {
  --bg-opacity: 1 !important;
  background-color: #9ae6b4 !important;
  background-color: rgba(154, 230, 180, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-green-400 {
  --bg-opacity: 1 !important;
  background-color: #68d391 !important;
  background-color: rgba(104, 211, 145, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-green-500 {
  --bg-opacity: 1 !important;
  background-color: #48bb78 !important;
  background-color: rgba(72, 187, 120, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-green-600 {
  --bg-opacity: 1 !important;
  background-color: #38a169 !important;
  background-color: rgba(56, 161, 105, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-green-700 {
  --bg-opacity: 1 !important;
  background-color: #2f855a !important;
  background-color: rgba(47, 133, 90, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-green-800 {
  --bg-opacity: 1 !important;
  background-color: #276749 !important;
  background-color: rgba(39, 103, 73, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-green-900 {
  --bg-opacity: 1 !important;
  background-color: #22543d !important;
  background-color: rgba(34, 84, 61, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-teal-100 {
  --bg-opacity: 1 !important;
  background-color: #e6fffa !important;
  background-color: rgba(230, 255, 250, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-teal-200 {
  --bg-opacity: 1 !important;
  background-color: #b2f5ea !important;
  background-color: rgba(178, 245, 234, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-teal-300 {
  --bg-opacity: 1 !important;
  background-color: #81e6d9 !important;
  background-color: rgba(129, 230, 217, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-teal-400 {
  --bg-opacity: 1 !important;
  background-color: #4fd1c5 !important;
  background-color: rgba(79, 209, 197, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-teal-500 {
  --bg-opacity: 1 !important;
  background-color: #38b2ac !important;
  background-color: rgba(56, 178, 172, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-teal-600 {
  --bg-opacity: 1 !important;
  background-color: #319795 !important;
  background-color: rgba(49, 151, 149, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-teal-700 {
  --bg-opacity: 1 !important;
  background-color: #2c7a7b !important;
  background-color: rgba(44, 122, 123, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-teal-800 {
  --bg-opacity: 1 !important;
  background-color: #285e61 !important;
  background-color: rgba(40, 94, 97, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-teal-900 {
  --bg-opacity: 1 !important;
  background-color: #234e52 !important;
  background-color: rgba(35, 78, 82, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-blue-100 {
  --bg-opacity: 1 !important;
  background-color: #ebf8ff !important;
  background-color: rgba(235, 248, 255, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-blue-200 {
  --bg-opacity: 1 !important;
  background-color: #bee3f8 !important;
  background-color: rgba(190, 227, 248, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-blue-300 {
  --bg-opacity: 1 !important;
  background-color: #90cdf4 !important;
  background-color: rgba(144, 205, 244, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-blue-400 {
  --bg-opacity: 1 !important;
  background-color: #63b3ed !important;
  background-color: rgba(99, 179, 237, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-blue-500 {
  --bg-opacity: 1 !important;
  background-color: #4299e1 !important;
  background-color: rgba(66, 153, 225, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-blue-600 {
  --bg-opacity: 1 !important;
  background-color: #3182ce !important;
  background-color: rgba(49, 130, 206, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-blue-700 {
  --bg-opacity: 1 !important;
  background-color: #2b6cb0 !important;
  background-color: rgba(43, 108, 176, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-blue-800 {
  --bg-opacity: 1 !important;
  background-color: #2c5282 !important;
  background-color: rgba(44, 82, 130, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-blue-900 {
  --bg-opacity: 1 !important;
  background-color: #2a4365 !important;
  background-color: rgba(42, 67, 101, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-indigo-100 {
  --bg-opacity: 1 !important;
  background-color: #ebf4ff !important;
  background-color: rgba(235, 244, 255, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-indigo-200 {
  --bg-opacity: 1 !important;
  background-color: #c3dafe !important;
  background-color: rgba(195, 218, 254, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-indigo-300 {
  --bg-opacity: 1 !important;
  background-color: #a3bffa !important;
  background-color: rgba(163, 191, 250, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-indigo-400 {
  --bg-opacity: 1 !important;
  background-color: #7f9cf5 !important;
  background-color: rgba(127, 156, 245, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-indigo-500 {
  --bg-opacity: 1 !important;
  background-color: #667eea !important;
  background-color: rgba(102, 126, 234, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-indigo-600 {
  --bg-opacity: 1 !important;
  background-color: #5a67d8 !important;
  background-color: rgba(90, 103, 216, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-indigo-700 {
  --bg-opacity: 1 !important;
  background-color: #4c51bf !important;
  background-color: rgba(76, 81, 191, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-indigo-800 {
  --bg-opacity: 1 !important;
  background-color: #434190 !important;
  background-color: rgba(67, 65, 144, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-indigo-900 {
  --bg-opacity: 1 !important;
  background-color: #3c366b !important;
  background-color: rgba(60, 54, 107, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-purple-100 {
  --bg-opacity: 1 !important;
  background-color: #faf5ff !important;
  background-color: rgba(250, 245, 255, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-purple-200 {
  --bg-opacity: 1 !important;
  background-color: #e9d8fd !important;
  background-color: rgba(233, 216, 253, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-purple-300 {
  --bg-opacity: 1 !important;
  background-color: #d6bcfa !important;
  background-color: rgba(214, 188, 250, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-purple-400 {
  --bg-opacity: 1 !important;
  background-color: #b794f4 !important;
  background-color: rgba(183, 148, 244, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-purple-500 {
  --bg-opacity: 1 !important;
  background-color: #9f7aea !important;
  background-color: rgba(159, 122, 234, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-purple-600 {
  --bg-opacity: 1 !important;
  background-color: #805ad5 !important;
  background-color: rgba(128, 90, 213, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-purple-700 {
  --bg-opacity: 1 !important;
  background-color: #6b46c1 !important;
  background-color: rgba(107, 70, 193, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-purple-800 {
  --bg-opacity: 1 !important;
  background-color: #553c9a !important;
  background-color: rgba(85, 60, 154, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-purple-900 {
  --bg-opacity: 1 !important;
  background-color: #44337a !important;
  background-color: rgba(68, 51, 122, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-pink-100 {
  --bg-opacity: 1 !important;
  background-color: #fff5f7 !important;
  background-color: rgba(255, 245, 247, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-pink-200 {
  --bg-opacity: 1 !important;
  background-color: #fed7e2 !important;
  background-color: rgba(254, 215, 226, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-pink-300 {
  --bg-opacity: 1 !important;
  background-color: #fbb6ce !important;
  background-color: rgba(251, 182, 206, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-pink-400 {
  --bg-opacity: 1 !important;
  background-color: #f687b3 !important;
  background-color: rgba(246, 135, 179, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-pink-500 {
  --bg-opacity: 1 !important;
  background-color: #ed64a6 !important;
  background-color: rgba(237, 100, 166, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-pink-600 {
  --bg-opacity: 1 !important;
  background-color: #d53f8c !important;
  background-color: rgba(213, 63, 140, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-pink-700 {
  --bg-opacity: 1 !important;
  background-color: #b83280 !important;
  background-color: rgba(184, 50, 128, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-pink-800 {
  --bg-opacity: 1 !important;
  background-color: #97266d !important;
  background-color: rgba(151, 38, 109, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-pink-900 {
  --bg-opacity: 1 !important;
  background-color: #702459 !important;
  background-color: rgba(112, 36, 89, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-ui-gray-100 {
  --bg-opacity: 1 !important;
  background-color: #f1f1f1 !important;
  background-color: rgba(241, 241, 241, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-ui-brown-100 {
  --bg-opacity: 1 !important;
  background-color: #f3ecdc !important;
  background-color: rgba(243, 236, 220, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-ui-brown-200 {
  --bg-opacity: 1 !important;
  background-color: #e8e0c9 !important;
  background-color: rgba(232, 224, 201, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-ui-brown-300 {
  --bg-opacity: 1 !important;
  background-color: #d0c095 !important;
  background-color: rgba(208, 192, 149, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-ui-brown-700 {
  --bg-opacity: 1 !important;
  background-color: #bd6005 !important;
  background-color: rgba(189, 96, 5, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-ui-green-300 {
  --bg-opacity: 1 !important;
  background-color: #aac74c !important;
  background-color: rgba(170, 199, 76, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-ui-green-400 {
  --bg-opacity: 1 !important;
  background-color: #71893e !important;
  background-color: rgba(113, 137, 62, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-ui-orange-500 {
  --bg-opacity: 1 !important;
  background-color: #e27212 !important;
  background-color: rgba(226, 114, 18, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-facebook {
  --bg-opacity: 1 !important;
  background-color: #3b5998 !important;
  background-color: rgba(59, 89, 152, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-twitter {
  --bg-opacity: 1 !important;
  background-color: #00acee !important;
  background-color: rgba(0, 172, 238, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-twitch {
  --bg-opacity: 1 !important;
  background-color: #6441a5 !important;
  background-color: rgba(100, 65, 165, var(--bg-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-bg-youtube {
  --bg-opacity: 1 !important;
  background-color: #FF0000 !important;
  background-color: rgba(255, 0, 0, var(--bg-opacity)) !important;
}

.cl-bg-none {
  background-image: none !important;
}

.cl-bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--gradient-color-stops)) !important;
}

.cl-bg-gradient-to-tr {
  background-image: linear-gradient(to top right, var(--gradient-color-stops)) !important;
}

.cl-bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--gradient-color-stops)) !important;
}

.cl-bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--gradient-color-stops)) !important;
}

.cl-bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--gradient-color-stops)) !important;
}

.cl-bg-gradient-to-bl {
  background-image: linear-gradient(to bottom left, var(--gradient-color-stops)) !important;
}

.cl-bg-gradient-to-l {
  background-image: linear-gradient(to left, var(--gradient-color-stops)) !important;
}

.cl-bg-gradient-to-tl {
  background-image: linear-gradient(to top left, var(--gradient-color-stops)) !important;
}

.cl-from-transparent {
  --gradient-from-color: transparent !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
}

.cl-from-current {
  --gradient-from-color: currentColor !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
}

.cl-from-black {
  --gradient-from-color: #000 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
}

.cl-from-white {
  --gradient-from-color: #fff !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
}

.cl-from-gray-100 {
  --gradient-from-color: #f7fafc !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 250, 252, 0)) !important;
}

.cl-from-gray-200 {
  --gradient-from-color: #edf2f7 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 242, 247, 0)) !important;
}

.cl-from-gray-300 {
  --gradient-from-color: #e2e8f0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 232, 240, 0)) !important;
}

.cl-from-gray-400 {
  --gradient-from-color: #cbd5e0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(203, 213, 224, 0)) !important;
}

.cl-from-gray-500 {
  --gradient-from-color: #a0aec0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 174, 192, 0)) !important;
}

.cl-from-gray-600 {
  --gradient-from-color: #718096 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(113, 128, 150, 0)) !important;
}

.cl-from-gray-700 {
  --gradient-from-color: #4a5568 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 85, 104, 0)) !important;
}

.cl-from-gray-800 {
  --gradient-from-color: #2d3748 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(45, 55, 72, 0)) !important;
}

.cl-from-gray-900 {
  --gradient-from-color: #1a202c !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 32, 44, 0)) !important;
}

.cl-from-red-100 {
  --gradient-from-color: #fff5f5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 245, 245, 0)) !important;
}

.cl-from-red-200 {
  --gradient-from-color: #fed7d7 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 215, 215, 0)) !important;
}

.cl-from-red-300 {
  --gradient-from-color: #feb2b2 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 178, 178, 0)) !important;
}

.cl-from-red-400 {
  --gradient-from-color: #fc8181 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(252, 129, 129, 0)) !important;
}

.cl-from-red-500 {
  --gradient-from-color: #f56565 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(245, 101, 101, 0)) !important;
}

.cl-from-red-600 {
  --gradient-from-color: #e53e3e !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(229, 62, 62, 0)) !important;
}

.cl-from-red-700 {
  --gradient-from-color: #c53030 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(197, 48, 48, 0)) !important;
}

.cl-from-red-800 {
  --gradient-from-color: #9b2c2c !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(155, 44, 44, 0)) !important;
}

.cl-from-red-900 {
  --gradient-from-color: #742a2a !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(116, 42, 42, 0)) !important;
}

.cl-from-orange-100 {
  --gradient-from-color: #fffaf0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 240, 0)) !important;
}

.cl-from-orange-200 {
  --gradient-from-color: #feebc8 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 235, 200, 0)) !important;
}

.cl-from-orange-300 {
  --gradient-from-color: #fbd38d !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 211, 141, 0)) !important;
}

.cl-from-orange-400 {
  --gradient-from-color: #f6ad55 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 173, 85, 0)) !important;
}

.cl-from-orange-500 {
  --gradient-from-color: #ed8936 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 137, 54, 0)) !important;
}

.cl-from-orange-600 {
  --gradient-from-color: #dd6b20 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(221, 107, 32, 0)) !important;
}

.cl-from-orange-700 {
  --gradient-from-color: #c05621 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(192, 86, 33, 0)) !important;
}

.cl-from-orange-800 {
  --gradient-from-color: #9c4221 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 66, 33, 0)) !important;
}

.cl-from-orange-900 {
  --gradient-from-color: #7b341e !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(123, 52, 30, 0)) !important;
}

.cl-from-yellow-100 {
  --gradient-from-color: #fffff0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 240, 0)) !important;
}

.cl-from-yellow-200 {
  --gradient-from-color: #fefcbf !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 252, 191, 0)) !important;
}

.cl-from-yellow-300 {
  --gradient-from-color: #faf089 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 240, 137, 0)) !important;
}

.cl-from-yellow-400 {
  --gradient-from-color: #f6e05e !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 224, 94, 0)) !important;
}

.cl-from-yellow-500 {
  --gradient-from-color: #ecc94b !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 201, 75, 0)) !important;
}

.cl-from-yellow-600 {
  --gradient-from-color: #d69e2e !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(214, 158, 46, 0)) !important;
}

.cl-from-yellow-700 {
  --gradient-from-color: #b7791f !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(183, 121, 31, 0)) !important;
}

.cl-from-yellow-800 {
  --gradient-from-color: #975a16 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(151, 90, 22, 0)) !important;
}

.cl-from-yellow-900 {
  --gradient-from-color: #744210 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(116, 66, 16, 0)) !important;
}

.cl-from-green-100 {
  --gradient-from-color: #f0fff4 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(240, 255, 244, 0)) !important;
}

.cl-from-green-200 {
  --gradient-from-color: #c6f6d5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(198, 246, 213, 0)) !important;
}

.cl-from-green-300 {
  --gradient-from-color: #9ae6b4 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 230, 180, 0)) !important;
}

.cl-from-green-400 {
  --gradient-from-color: #68d391 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(104, 211, 145, 0)) !important;
}

.cl-from-green-500 {
  --gradient-from-color: #48bb78 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(72, 187, 120, 0)) !important;
}

.cl-from-green-600 {
  --gradient-from-color: #38a169 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(56, 161, 105, 0)) !important;
}

.cl-from-green-700 {
  --gradient-from-color: #2f855a !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(47, 133, 90, 0)) !important;
}

.cl-from-green-800 {
  --gradient-from-color: #276749 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(39, 103, 73, 0)) !important;
}

.cl-from-green-900 {
  --gradient-from-color: #22543d !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(34, 84, 61, 0)) !important;
}

.cl-from-teal-100 {
  --gradient-from-color: #e6fffa !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 255, 250, 0)) !important;
}

.cl-from-teal-200 {
  --gradient-from-color: #b2f5ea !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(178, 245, 234, 0)) !important;
}

.cl-from-teal-300 {
  --gradient-from-color: #81e6d9 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(129, 230, 217, 0)) !important;
}

.cl-from-teal-400 {
  --gradient-from-color: #4fd1c5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(79, 209, 197, 0)) !important;
}

.cl-from-teal-500 {
  --gradient-from-color: #38b2ac !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(56, 178, 172, 0)) !important;
}

.cl-from-teal-600 {
  --gradient-from-color: #319795 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(49, 151, 149, 0)) !important;
}

.cl-from-teal-700 {
  --gradient-from-color: #2c7a7b !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(44, 122, 123, 0)) !important;
}

.cl-from-teal-800 {
  --gradient-from-color: #285e61 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(40, 94, 97, 0)) !important;
}

.cl-from-teal-900 {
  --gradient-from-color: #234e52 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(35, 78, 82, 0)) !important;
}

.cl-from-blue-100 {
  --gradient-from-color: #ebf8ff !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(235, 248, 255, 0)) !important;
}

.cl-from-blue-200 {
  --gradient-from-color: #bee3f8 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(190, 227, 248, 0)) !important;
}

.cl-from-blue-300 {
  --gradient-from-color: #90cdf4 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 205, 244, 0)) !important;
}

.cl-from-blue-400 {
  --gradient-from-color: #63b3ed !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(99, 179, 237, 0)) !important;
}

.cl-from-blue-500 {
  --gradient-from-color: #4299e1 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 153, 225, 0)) !important;
}

.cl-from-blue-600 {
  --gradient-from-color: #3182ce !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(49, 130, 206, 0)) !important;
}

.cl-from-blue-700 {
  --gradient-from-color: #2b6cb0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(43, 108, 176, 0)) !important;
}

.cl-from-blue-800 {
  --gradient-from-color: #2c5282 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(44, 82, 130, 0)) !important;
}

.cl-from-blue-900 {
  --gradient-from-color: #2a4365 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(42, 67, 101, 0)) !important;
}

.cl-from-indigo-100 {
  --gradient-from-color: #ebf4ff !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(235, 244, 255, 0)) !important;
}

.cl-from-indigo-200 {
  --gradient-from-color: #c3dafe !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(195, 218, 254, 0)) !important;
}

.cl-from-indigo-300 {
  --gradient-from-color: #a3bffa !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(163, 191, 250, 0)) !important;
}

.cl-from-indigo-400 {
  --gradient-from-color: #7f9cf5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(127, 156, 245, 0)) !important;
}

.cl-from-indigo-500 {
  --gradient-from-color: #667eea !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 126, 234, 0)) !important;
}

.cl-from-indigo-600 {
  --gradient-from-color: #5a67d8 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 103, 216, 0)) !important;
}

.cl-from-indigo-700 {
  --gradient-from-color: #4c51bf !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(76, 81, 191, 0)) !important;
}

.cl-from-indigo-800 {
  --gradient-from-color: #434190 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(67, 65, 144, 0)) !important;
}

.cl-from-indigo-900 {
  --gradient-from-color: #3c366b !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(60, 54, 107, 0)) !important;
}

.cl-from-purple-100 {
  --gradient-from-color: #faf5ff !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 245, 255, 0)) !important;
}

.cl-from-purple-200 {
  --gradient-from-color: #e9d8fd !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(233, 216, 253, 0)) !important;
}

.cl-from-purple-300 {
  --gradient-from-color: #d6bcfa !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(214, 188, 250, 0)) !important;
}

.cl-from-purple-400 {
  --gradient-from-color: #b794f4 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(183, 148, 244, 0)) !important;
}

.cl-from-purple-500 {
  --gradient-from-color: #9f7aea !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(159, 122, 234, 0)) !important;
}

.cl-from-purple-600 {
  --gradient-from-color: #805ad5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(128, 90, 213, 0)) !important;
}

.cl-from-purple-700 {
  --gradient-from-color: #6b46c1 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(107, 70, 193, 0)) !important;
}

.cl-from-purple-800 {
  --gradient-from-color: #553c9a !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(85, 60, 154, 0)) !important;
}

.cl-from-purple-900 {
  --gradient-from-color: #44337a !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(68, 51, 122, 0)) !important;
}

.cl-from-pink-100 {
  --gradient-from-color: #fff5f7 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 245, 247, 0)) !important;
}

.cl-from-pink-200 {
  --gradient-from-color: #fed7e2 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 215, 226, 0)) !important;
}

.cl-from-pink-300 {
  --gradient-from-color: #fbb6ce !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 182, 206, 0)) !important;
}

.cl-from-pink-400 {
  --gradient-from-color: #f687b3 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 135, 179, 0)) !important;
}

.cl-from-pink-500 {
  --gradient-from-color: #ed64a6 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 100, 166, 0)) !important;
}

.cl-from-pink-600 {
  --gradient-from-color: #d53f8c !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(213, 63, 140, 0)) !important;
}

.cl-from-pink-700 {
  --gradient-from-color: #b83280 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(184, 50, 128, 0)) !important;
}

.cl-from-pink-800 {
  --gradient-from-color: #97266d !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(151, 38, 109, 0)) !important;
}

.cl-from-pink-900 {
  --gradient-from-color: #702459 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(112, 36, 89, 0)) !important;
}

.cl-from-ui-gray-100 {
  --gradient-from-color: #f1f1f1 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(241, 241, 241, 0)) !important;
}

.cl-from-ui-brown-100 {
  --gradient-from-color: #f3ecdc !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(243, 236, 220, 0)) !important;
}

.cl-from-ui-brown-200 {
  --gradient-from-color: #e8e0c9 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(232, 224, 201, 0)) !important;
}

.cl-from-ui-brown-300 {
  --gradient-from-color: #d0c095 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(208, 192, 149, 0)) !important;
}

.cl-from-ui-brown-700 {
  --gradient-from-color: #bd6005 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(189, 96, 5, 0)) !important;
}

.cl-from-ui-green-300 {
  --gradient-from-color: #aac74c !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(170, 199, 76, 0)) !important;
}

.cl-from-ui-green-400 {
  --gradient-from-color: #71893e !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(113, 137, 62, 0)) !important;
}

.cl-from-ui-orange-500 {
  --gradient-from-color: #e27212 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 114, 18, 0)) !important;
}

.cl-from-facebook {
  --gradient-from-color: #3b5998 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(59, 89, 152, 0)) !important;
}

.cl-from-twitter {
  --gradient-from-color: #00acee !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 172, 238, 0)) !important;
}

.cl-from-twitch {
  --gradient-from-color: #6441a5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 65, 165, 0)) !important;
}

.cl-from-youtube {
  --gradient-from-color: #FF0000 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 0, 0, 0)) !important;
}

.cl-via-transparent {
  --gradient-via-color: transparent !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
}

.cl-via-current {
  --gradient-via-color: currentColor !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
}

.cl-via-black {
  --gradient-via-color: #000 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
}

.cl-via-white {
  --gradient-via-color: #fff !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
}

.cl-via-gray-100 {
  --gradient-via-color: #f7fafc !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 250, 252, 0)) !important;
}

.cl-via-gray-200 {
  --gradient-via-color: #edf2f7 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 242, 247, 0)) !important;
}

.cl-via-gray-300 {
  --gradient-via-color: #e2e8f0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 232, 240, 0)) !important;
}

.cl-via-gray-400 {
  --gradient-via-color: #cbd5e0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(203, 213, 224, 0)) !important;
}

.cl-via-gray-500 {
  --gradient-via-color: #a0aec0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 174, 192, 0)) !important;
}

.cl-via-gray-600 {
  --gradient-via-color: #718096 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(113, 128, 150, 0)) !important;
}

.cl-via-gray-700 {
  --gradient-via-color: #4a5568 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 85, 104, 0)) !important;
}

.cl-via-gray-800 {
  --gradient-via-color: #2d3748 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(45, 55, 72, 0)) !important;
}

.cl-via-gray-900 {
  --gradient-via-color: #1a202c !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 32, 44, 0)) !important;
}

.cl-via-red-100 {
  --gradient-via-color: #fff5f5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 245, 245, 0)) !important;
}

.cl-via-red-200 {
  --gradient-via-color: #fed7d7 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 215, 215, 0)) !important;
}

.cl-via-red-300 {
  --gradient-via-color: #feb2b2 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 178, 178, 0)) !important;
}

.cl-via-red-400 {
  --gradient-via-color: #fc8181 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(252, 129, 129, 0)) !important;
}

.cl-via-red-500 {
  --gradient-via-color: #f56565 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(245, 101, 101, 0)) !important;
}

.cl-via-red-600 {
  --gradient-via-color: #e53e3e !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(229, 62, 62, 0)) !important;
}

.cl-via-red-700 {
  --gradient-via-color: #c53030 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(197, 48, 48, 0)) !important;
}

.cl-via-red-800 {
  --gradient-via-color: #9b2c2c !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(155, 44, 44, 0)) !important;
}

.cl-via-red-900 {
  --gradient-via-color: #742a2a !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(116, 42, 42, 0)) !important;
}

.cl-via-orange-100 {
  --gradient-via-color: #fffaf0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 240, 0)) !important;
}

.cl-via-orange-200 {
  --gradient-via-color: #feebc8 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 235, 200, 0)) !important;
}

.cl-via-orange-300 {
  --gradient-via-color: #fbd38d !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 211, 141, 0)) !important;
}

.cl-via-orange-400 {
  --gradient-via-color: #f6ad55 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 173, 85, 0)) !important;
}

.cl-via-orange-500 {
  --gradient-via-color: #ed8936 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 137, 54, 0)) !important;
}

.cl-via-orange-600 {
  --gradient-via-color: #dd6b20 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(221, 107, 32, 0)) !important;
}

.cl-via-orange-700 {
  --gradient-via-color: #c05621 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(192, 86, 33, 0)) !important;
}

.cl-via-orange-800 {
  --gradient-via-color: #9c4221 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 66, 33, 0)) !important;
}

.cl-via-orange-900 {
  --gradient-via-color: #7b341e !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(123, 52, 30, 0)) !important;
}

.cl-via-yellow-100 {
  --gradient-via-color: #fffff0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 240, 0)) !important;
}

.cl-via-yellow-200 {
  --gradient-via-color: #fefcbf !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 252, 191, 0)) !important;
}

.cl-via-yellow-300 {
  --gradient-via-color: #faf089 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 240, 137, 0)) !important;
}

.cl-via-yellow-400 {
  --gradient-via-color: #f6e05e !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 224, 94, 0)) !important;
}

.cl-via-yellow-500 {
  --gradient-via-color: #ecc94b !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 201, 75, 0)) !important;
}

.cl-via-yellow-600 {
  --gradient-via-color: #d69e2e !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(214, 158, 46, 0)) !important;
}

.cl-via-yellow-700 {
  --gradient-via-color: #b7791f !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(183, 121, 31, 0)) !important;
}

.cl-via-yellow-800 {
  --gradient-via-color: #975a16 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(151, 90, 22, 0)) !important;
}

.cl-via-yellow-900 {
  --gradient-via-color: #744210 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(116, 66, 16, 0)) !important;
}

.cl-via-green-100 {
  --gradient-via-color: #f0fff4 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(240, 255, 244, 0)) !important;
}

.cl-via-green-200 {
  --gradient-via-color: #c6f6d5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(198, 246, 213, 0)) !important;
}

.cl-via-green-300 {
  --gradient-via-color: #9ae6b4 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 230, 180, 0)) !important;
}

.cl-via-green-400 {
  --gradient-via-color: #68d391 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(104, 211, 145, 0)) !important;
}

.cl-via-green-500 {
  --gradient-via-color: #48bb78 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(72, 187, 120, 0)) !important;
}

.cl-via-green-600 {
  --gradient-via-color: #38a169 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(56, 161, 105, 0)) !important;
}

.cl-via-green-700 {
  --gradient-via-color: #2f855a !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(47, 133, 90, 0)) !important;
}

.cl-via-green-800 {
  --gradient-via-color: #276749 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(39, 103, 73, 0)) !important;
}

.cl-via-green-900 {
  --gradient-via-color: #22543d !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(34, 84, 61, 0)) !important;
}

.cl-via-teal-100 {
  --gradient-via-color: #e6fffa !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 255, 250, 0)) !important;
}

.cl-via-teal-200 {
  --gradient-via-color: #b2f5ea !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(178, 245, 234, 0)) !important;
}

.cl-via-teal-300 {
  --gradient-via-color: #81e6d9 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(129, 230, 217, 0)) !important;
}

.cl-via-teal-400 {
  --gradient-via-color: #4fd1c5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(79, 209, 197, 0)) !important;
}

.cl-via-teal-500 {
  --gradient-via-color: #38b2ac !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(56, 178, 172, 0)) !important;
}

.cl-via-teal-600 {
  --gradient-via-color: #319795 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(49, 151, 149, 0)) !important;
}

.cl-via-teal-700 {
  --gradient-via-color: #2c7a7b !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(44, 122, 123, 0)) !important;
}

.cl-via-teal-800 {
  --gradient-via-color: #285e61 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(40, 94, 97, 0)) !important;
}

.cl-via-teal-900 {
  --gradient-via-color: #234e52 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(35, 78, 82, 0)) !important;
}

.cl-via-blue-100 {
  --gradient-via-color: #ebf8ff !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(235, 248, 255, 0)) !important;
}

.cl-via-blue-200 {
  --gradient-via-color: #bee3f8 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(190, 227, 248, 0)) !important;
}

.cl-via-blue-300 {
  --gradient-via-color: #90cdf4 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 205, 244, 0)) !important;
}

.cl-via-blue-400 {
  --gradient-via-color: #63b3ed !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(99, 179, 237, 0)) !important;
}

.cl-via-blue-500 {
  --gradient-via-color: #4299e1 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 153, 225, 0)) !important;
}

.cl-via-blue-600 {
  --gradient-via-color: #3182ce !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(49, 130, 206, 0)) !important;
}

.cl-via-blue-700 {
  --gradient-via-color: #2b6cb0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(43, 108, 176, 0)) !important;
}

.cl-via-blue-800 {
  --gradient-via-color: #2c5282 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(44, 82, 130, 0)) !important;
}

.cl-via-blue-900 {
  --gradient-via-color: #2a4365 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(42, 67, 101, 0)) !important;
}

.cl-via-indigo-100 {
  --gradient-via-color: #ebf4ff !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(235, 244, 255, 0)) !important;
}

.cl-via-indigo-200 {
  --gradient-via-color: #c3dafe !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(195, 218, 254, 0)) !important;
}

.cl-via-indigo-300 {
  --gradient-via-color: #a3bffa !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(163, 191, 250, 0)) !important;
}

.cl-via-indigo-400 {
  --gradient-via-color: #7f9cf5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(127, 156, 245, 0)) !important;
}

.cl-via-indigo-500 {
  --gradient-via-color: #667eea !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 126, 234, 0)) !important;
}

.cl-via-indigo-600 {
  --gradient-via-color: #5a67d8 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 103, 216, 0)) !important;
}

.cl-via-indigo-700 {
  --gradient-via-color: #4c51bf !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(76, 81, 191, 0)) !important;
}

.cl-via-indigo-800 {
  --gradient-via-color: #434190 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(67, 65, 144, 0)) !important;
}

.cl-via-indigo-900 {
  --gradient-via-color: #3c366b !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(60, 54, 107, 0)) !important;
}

.cl-via-purple-100 {
  --gradient-via-color: #faf5ff !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 245, 255, 0)) !important;
}

.cl-via-purple-200 {
  --gradient-via-color: #e9d8fd !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(233, 216, 253, 0)) !important;
}

.cl-via-purple-300 {
  --gradient-via-color: #d6bcfa !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(214, 188, 250, 0)) !important;
}

.cl-via-purple-400 {
  --gradient-via-color: #b794f4 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(183, 148, 244, 0)) !important;
}

.cl-via-purple-500 {
  --gradient-via-color: #9f7aea !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(159, 122, 234, 0)) !important;
}

.cl-via-purple-600 {
  --gradient-via-color: #805ad5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(128, 90, 213, 0)) !important;
}

.cl-via-purple-700 {
  --gradient-via-color: #6b46c1 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(107, 70, 193, 0)) !important;
}

.cl-via-purple-800 {
  --gradient-via-color: #553c9a !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(85, 60, 154, 0)) !important;
}

.cl-via-purple-900 {
  --gradient-via-color: #44337a !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(68, 51, 122, 0)) !important;
}

.cl-via-pink-100 {
  --gradient-via-color: #fff5f7 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 245, 247, 0)) !important;
}

.cl-via-pink-200 {
  --gradient-via-color: #fed7e2 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 215, 226, 0)) !important;
}

.cl-via-pink-300 {
  --gradient-via-color: #fbb6ce !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 182, 206, 0)) !important;
}

.cl-via-pink-400 {
  --gradient-via-color: #f687b3 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 135, 179, 0)) !important;
}

.cl-via-pink-500 {
  --gradient-via-color: #ed64a6 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 100, 166, 0)) !important;
}

.cl-via-pink-600 {
  --gradient-via-color: #d53f8c !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(213, 63, 140, 0)) !important;
}

.cl-via-pink-700 {
  --gradient-via-color: #b83280 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(184, 50, 128, 0)) !important;
}

.cl-via-pink-800 {
  --gradient-via-color: #97266d !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(151, 38, 109, 0)) !important;
}

.cl-via-pink-900 {
  --gradient-via-color: #702459 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(112, 36, 89, 0)) !important;
}

.cl-via-ui-gray-100 {
  --gradient-via-color: #f1f1f1 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(241, 241, 241, 0)) !important;
}

.cl-via-ui-brown-100 {
  --gradient-via-color: #f3ecdc !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(243, 236, 220, 0)) !important;
}

.cl-via-ui-brown-200 {
  --gradient-via-color: #e8e0c9 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(232, 224, 201, 0)) !important;
}

.cl-via-ui-brown-300 {
  --gradient-via-color: #d0c095 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(208, 192, 149, 0)) !important;
}

.cl-via-ui-brown-700 {
  --gradient-via-color: #bd6005 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(189, 96, 5, 0)) !important;
}

.cl-via-ui-green-300 {
  --gradient-via-color: #aac74c !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(170, 199, 76, 0)) !important;
}

.cl-via-ui-green-400 {
  --gradient-via-color: #71893e !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(113, 137, 62, 0)) !important;
}

.cl-via-ui-orange-500 {
  --gradient-via-color: #e27212 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 114, 18, 0)) !important;
}

.cl-via-facebook {
  --gradient-via-color: #3b5998 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(59, 89, 152, 0)) !important;
}

.cl-via-twitter {
  --gradient-via-color: #00acee !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 172, 238, 0)) !important;
}

.cl-via-twitch {
  --gradient-via-color: #6441a5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 65, 165, 0)) !important;
}

.cl-via-youtube {
  --gradient-via-color: #FF0000 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 0, 0, 0)) !important;
}

.cl-to-transparent {
  --gradient-to-color: transparent !important;
}

.cl-to-current {
  --gradient-to-color: currentColor !important;
}

.cl-to-black {
  --gradient-to-color: #000 !important;
}

.cl-to-white {
  --gradient-to-color: #fff !important;
}

.cl-to-gray-100 {
  --gradient-to-color: #f7fafc !important;
}

.cl-to-gray-200 {
  --gradient-to-color: #edf2f7 !important;
}

.cl-to-gray-300 {
  --gradient-to-color: #e2e8f0 !important;
}

.cl-to-gray-400 {
  --gradient-to-color: #cbd5e0 !important;
}

.cl-to-gray-500 {
  --gradient-to-color: #a0aec0 !important;
}

.cl-to-gray-600 {
  --gradient-to-color: #718096 !important;
}

.cl-to-gray-700 {
  --gradient-to-color: #4a5568 !important;
}

.cl-to-gray-800 {
  --gradient-to-color: #2d3748 !important;
}

.cl-to-gray-900 {
  --gradient-to-color: #1a202c !important;
}

.cl-to-red-100 {
  --gradient-to-color: #fff5f5 !important;
}

.cl-to-red-200 {
  --gradient-to-color: #fed7d7 !important;
}

.cl-to-red-300 {
  --gradient-to-color: #feb2b2 !important;
}

.cl-to-red-400 {
  --gradient-to-color: #fc8181 !important;
}

.cl-to-red-500 {
  --gradient-to-color: #f56565 !important;
}

.cl-to-red-600 {
  --gradient-to-color: #e53e3e !important;
}

.cl-to-red-700 {
  --gradient-to-color: #c53030 !important;
}

.cl-to-red-800 {
  --gradient-to-color: #9b2c2c !important;
}

.cl-to-red-900 {
  --gradient-to-color: #742a2a !important;
}

.cl-to-orange-100 {
  --gradient-to-color: #fffaf0 !important;
}

.cl-to-orange-200 {
  --gradient-to-color: #feebc8 !important;
}

.cl-to-orange-300 {
  --gradient-to-color: #fbd38d !important;
}

.cl-to-orange-400 {
  --gradient-to-color: #f6ad55 !important;
}

.cl-to-orange-500 {
  --gradient-to-color: #ed8936 !important;
}

.cl-to-orange-600 {
  --gradient-to-color: #dd6b20 !important;
}

.cl-to-orange-700 {
  --gradient-to-color: #c05621 !important;
}

.cl-to-orange-800 {
  --gradient-to-color: #9c4221 !important;
}

.cl-to-orange-900 {
  --gradient-to-color: #7b341e !important;
}

.cl-to-yellow-100 {
  --gradient-to-color: #fffff0 !important;
}

.cl-to-yellow-200 {
  --gradient-to-color: #fefcbf !important;
}

.cl-to-yellow-300 {
  --gradient-to-color: #faf089 !important;
}

.cl-to-yellow-400 {
  --gradient-to-color: #f6e05e !important;
}

.cl-to-yellow-500 {
  --gradient-to-color: #ecc94b !important;
}

.cl-to-yellow-600 {
  --gradient-to-color: #d69e2e !important;
}

.cl-to-yellow-700 {
  --gradient-to-color: #b7791f !important;
}

.cl-to-yellow-800 {
  --gradient-to-color: #975a16 !important;
}

.cl-to-yellow-900 {
  --gradient-to-color: #744210 !important;
}

.cl-to-green-100 {
  --gradient-to-color: #f0fff4 !important;
}

.cl-to-green-200 {
  --gradient-to-color: #c6f6d5 !important;
}

.cl-to-green-300 {
  --gradient-to-color: #9ae6b4 !important;
}

.cl-to-green-400 {
  --gradient-to-color: #68d391 !important;
}

.cl-to-green-500 {
  --gradient-to-color: #48bb78 !important;
}

.cl-to-green-600 {
  --gradient-to-color: #38a169 !important;
}

.cl-to-green-700 {
  --gradient-to-color: #2f855a !important;
}

.cl-to-green-800 {
  --gradient-to-color: #276749 !important;
}

.cl-to-green-900 {
  --gradient-to-color: #22543d !important;
}

.cl-to-teal-100 {
  --gradient-to-color: #e6fffa !important;
}

.cl-to-teal-200 {
  --gradient-to-color: #b2f5ea !important;
}

.cl-to-teal-300 {
  --gradient-to-color: #81e6d9 !important;
}

.cl-to-teal-400 {
  --gradient-to-color: #4fd1c5 !important;
}

.cl-to-teal-500 {
  --gradient-to-color: #38b2ac !important;
}

.cl-to-teal-600 {
  --gradient-to-color: #319795 !important;
}

.cl-to-teal-700 {
  --gradient-to-color: #2c7a7b !important;
}

.cl-to-teal-800 {
  --gradient-to-color: #285e61 !important;
}

.cl-to-teal-900 {
  --gradient-to-color: #234e52 !important;
}

.cl-to-blue-100 {
  --gradient-to-color: #ebf8ff !important;
}

.cl-to-blue-200 {
  --gradient-to-color: #bee3f8 !important;
}

.cl-to-blue-300 {
  --gradient-to-color: #90cdf4 !important;
}

.cl-to-blue-400 {
  --gradient-to-color: #63b3ed !important;
}

.cl-to-blue-500 {
  --gradient-to-color: #4299e1 !important;
}

.cl-to-blue-600 {
  --gradient-to-color: #3182ce !important;
}

.cl-to-blue-700 {
  --gradient-to-color: #2b6cb0 !important;
}

.cl-to-blue-800 {
  --gradient-to-color: #2c5282 !important;
}

.cl-to-blue-900 {
  --gradient-to-color: #2a4365 !important;
}

.cl-to-indigo-100 {
  --gradient-to-color: #ebf4ff !important;
}

.cl-to-indigo-200 {
  --gradient-to-color: #c3dafe !important;
}

.cl-to-indigo-300 {
  --gradient-to-color: #a3bffa !important;
}

.cl-to-indigo-400 {
  --gradient-to-color: #7f9cf5 !important;
}

.cl-to-indigo-500 {
  --gradient-to-color: #667eea !important;
}

.cl-to-indigo-600 {
  --gradient-to-color: #5a67d8 !important;
}

.cl-to-indigo-700 {
  --gradient-to-color: #4c51bf !important;
}

.cl-to-indigo-800 {
  --gradient-to-color: #434190 !important;
}

.cl-to-indigo-900 {
  --gradient-to-color: #3c366b !important;
}

.cl-to-purple-100 {
  --gradient-to-color: #faf5ff !important;
}

.cl-to-purple-200 {
  --gradient-to-color: #e9d8fd !important;
}

.cl-to-purple-300 {
  --gradient-to-color: #d6bcfa !important;
}

.cl-to-purple-400 {
  --gradient-to-color: #b794f4 !important;
}

.cl-to-purple-500 {
  --gradient-to-color: #9f7aea !important;
}

.cl-to-purple-600 {
  --gradient-to-color: #805ad5 !important;
}

.cl-to-purple-700 {
  --gradient-to-color: #6b46c1 !important;
}

.cl-to-purple-800 {
  --gradient-to-color: #553c9a !important;
}

.cl-to-purple-900 {
  --gradient-to-color: #44337a !important;
}

.cl-to-pink-100 {
  --gradient-to-color: #fff5f7 !important;
}

.cl-to-pink-200 {
  --gradient-to-color: #fed7e2 !important;
}

.cl-to-pink-300 {
  --gradient-to-color: #fbb6ce !important;
}

.cl-to-pink-400 {
  --gradient-to-color: #f687b3 !important;
}

.cl-to-pink-500 {
  --gradient-to-color: #ed64a6 !important;
}

.cl-to-pink-600 {
  --gradient-to-color: #d53f8c !important;
}

.cl-to-pink-700 {
  --gradient-to-color: #b83280 !important;
}

.cl-to-pink-800 {
  --gradient-to-color: #97266d !important;
}

.cl-to-pink-900 {
  --gradient-to-color: #702459 !important;
}

.cl-to-ui-gray-100 {
  --gradient-to-color: #f1f1f1 !important;
}

.cl-to-ui-brown-100 {
  --gradient-to-color: #f3ecdc !important;
}

.cl-to-ui-brown-200 {
  --gradient-to-color: #e8e0c9 !important;
}

.cl-to-ui-brown-300 {
  --gradient-to-color: #d0c095 !important;
}

.cl-to-ui-brown-700 {
  --gradient-to-color: #bd6005 !important;
}

.cl-to-ui-green-300 {
  --gradient-to-color: #aac74c !important;
}

.cl-to-ui-green-400 {
  --gradient-to-color: #71893e !important;
}

.cl-to-ui-orange-500 {
  --gradient-to-color: #e27212 !important;
}

.cl-to-facebook {
  --gradient-to-color: #3b5998 !important;
}

.cl-to-twitter {
  --gradient-to-color: #00acee !important;
}

.cl-to-twitch {
  --gradient-to-color: #6441a5 !important;
}

.cl-to-youtube {
  --gradient-to-color: #FF0000 !important;
}

.hover\:cl-from-transparent:hover {
  --gradient-from-color: transparent !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
}

.hover\:cl-from-current:hover {
  --gradient-from-color: currentColor !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
}

.hover\:cl-from-black:hover {
  --gradient-from-color: #000 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
}

.hover\:cl-from-white:hover {
  --gradient-from-color: #fff !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
}

.hover\:cl-from-gray-100:hover {
  --gradient-from-color: #f7fafc !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 250, 252, 0)) !important;
}

.hover\:cl-from-gray-200:hover {
  --gradient-from-color: #edf2f7 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 242, 247, 0)) !important;
}

.hover\:cl-from-gray-300:hover {
  --gradient-from-color: #e2e8f0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 232, 240, 0)) !important;
}

.hover\:cl-from-gray-400:hover {
  --gradient-from-color: #cbd5e0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(203, 213, 224, 0)) !important;
}

.hover\:cl-from-gray-500:hover {
  --gradient-from-color: #a0aec0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 174, 192, 0)) !important;
}

.hover\:cl-from-gray-600:hover {
  --gradient-from-color: #718096 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(113, 128, 150, 0)) !important;
}

.hover\:cl-from-gray-700:hover {
  --gradient-from-color: #4a5568 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 85, 104, 0)) !important;
}

.hover\:cl-from-gray-800:hover {
  --gradient-from-color: #2d3748 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(45, 55, 72, 0)) !important;
}

.hover\:cl-from-gray-900:hover {
  --gradient-from-color: #1a202c !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 32, 44, 0)) !important;
}

.hover\:cl-from-red-100:hover {
  --gradient-from-color: #fff5f5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 245, 245, 0)) !important;
}

.hover\:cl-from-red-200:hover {
  --gradient-from-color: #fed7d7 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 215, 215, 0)) !important;
}

.hover\:cl-from-red-300:hover {
  --gradient-from-color: #feb2b2 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 178, 178, 0)) !important;
}

.hover\:cl-from-red-400:hover {
  --gradient-from-color: #fc8181 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(252, 129, 129, 0)) !important;
}

.hover\:cl-from-red-500:hover {
  --gradient-from-color: #f56565 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(245, 101, 101, 0)) !important;
}

.hover\:cl-from-red-600:hover {
  --gradient-from-color: #e53e3e !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(229, 62, 62, 0)) !important;
}

.hover\:cl-from-red-700:hover {
  --gradient-from-color: #c53030 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(197, 48, 48, 0)) !important;
}

.hover\:cl-from-red-800:hover {
  --gradient-from-color: #9b2c2c !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(155, 44, 44, 0)) !important;
}

.hover\:cl-from-red-900:hover {
  --gradient-from-color: #742a2a !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(116, 42, 42, 0)) !important;
}

.hover\:cl-from-orange-100:hover {
  --gradient-from-color: #fffaf0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 240, 0)) !important;
}

.hover\:cl-from-orange-200:hover {
  --gradient-from-color: #feebc8 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 235, 200, 0)) !important;
}

.hover\:cl-from-orange-300:hover {
  --gradient-from-color: #fbd38d !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 211, 141, 0)) !important;
}

.hover\:cl-from-orange-400:hover {
  --gradient-from-color: #f6ad55 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 173, 85, 0)) !important;
}

.hover\:cl-from-orange-500:hover {
  --gradient-from-color: #ed8936 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 137, 54, 0)) !important;
}

.hover\:cl-from-orange-600:hover {
  --gradient-from-color: #dd6b20 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(221, 107, 32, 0)) !important;
}

.hover\:cl-from-orange-700:hover {
  --gradient-from-color: #c05621 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(192, 86, 33, 0)) !important;
}

.hover\:cl-from-orange-800:hover {
  --gradient-from-color: #9c4221 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 66, 33, 0)) !important;
}

.hover\:cl-from-orange-900:hover {
  --gradient-from-color: #7b341e !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(123, 52, 30, 0)) !important;
}

.hover\:cl-from-yellow-100:hover {
  --gradient-from-color: #fffff0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 240, 0)) !important;
}

.hover\:cl-from-yellow-200:hover {
  --gradient-from-color: #fefcbf !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 252, 191, 0)) !important;
}

.hover\:cl-from-yellow-300:hover {
  --gradient-from-color: #faf089 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 240, 137, 0)) !important;
}

.hover\:cl-from-yellow-400:hover {
  --gradient-from-color: #f6e05e !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 224, 94, 0)) !important;
}

.hover\:cl-from-yellow-500:hover {
  --gradient-from-color: #ecc94b !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 201, 75, 0)) !important;
}

.hover\:cl-from-yellow-600:hover {
  --gradient-from-color: #d69e2e !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(214, 158, 46, 0)) !important;
}

.hover\:cl-from-yellow-700:hover {
  --gradient-from-color: #b7791f !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(183, 121, 31, 0)) !important;
}

.hover\:cl-from-yellow-800:hover {
  --gradient-from-color: #975a16 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(151, 90, 22, 0)) !important;
}

.hover\:cl-from-yellow-900:hover {
  --gradient-from-color: #744210 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(116, 66, 16, 0)) !important;
}

.hover\:cl-from-green-100:hover {
  --gradient-from-color: #f0fff4 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(240, 255, 244, 0)) !important;
}

.hover\:cl-from-green-200:hover {
  --gradient-from-color: #c6f6d5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(198, 246, 213, 0)) !important;
}

.hover\:cl-from-green-300:hover {
  --gradient-from-color: #9ae6b4 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 230, 180, 0)) !important;
}

.hover\:cl-from-green-400:hover {
  --gradient-from-color: #68d391 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(104, 211, 145, 0)) !important;
}

.hover\:cl-from-green-500:hover {
  --gradient-from-color: #48bb78 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(72, 187, 120, 0)) !important;
}

.hover\:cl-from-green-600:hover {
  --gradient-from-color: #38a169 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(56, 161, 105, 0)) !important;
}

.hover\:cl-from-green-700:hover {
  --gradient-from-color: #2f855a !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(47, 133, 90, 0)) !important;
}

.hover\:cl-from-green-800:hover {
  --gradient-from-color: #276749 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(39, 103, 73, 0)) !important;
}

.hover\:cl-from-green-900:hover {
  --gradient-from-color: #22543d !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(34, 84, 61, 0)) !important;
}

.hover\:cl-from-teal-100:hover {
  --gradient-from-color: #e6fffa !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 255, 250, 0)) !important;
}

.hover\:cl-from-teal-200:hover {
  --gradient-from-color: #b2f5ea !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(178, 245, 234, 0)) !important;
}

.hover\:cl-from-teal-300:hover {
  --gradient-from-color: #81e6d9 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(129, 230, 217, 0)) !important;
}

.hover\:cl-from-teal-400:hover {
  --gradient-from-color: #4fd1c5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(79, 209, 197, 0)) !important;
}

.hover\:cl-from-teal-500:hover {
  --gradient-from-color: #38b2ac !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(56, 178, 172, 0)) !important;
}

.hover\:cl-from-teal-600:hover {
  --gradient-from-color: #319795 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(49, 151, 149, 0)) !important;
}

.hover\:cl-from-teal-700:hover {
  --gradient-from-color: #2c7a7b !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(44, 122, 123, 0)) !important;
}

.hover\:cl-from-teal-800:hover {
  --gradient-from-color: #285e61 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(40, 94, 97, 0)) !important;
}

.hover\:cl-from-teal-900:hover {
  --gradient-from-color: #234e52 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(35, 78, 82, 0)) !important;
}

.hover\:cl-from-blue-100:hover {
  --gradient-from-color: #ebf8ff !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(235, 248, 255, 0)) !important;
}

.hover\:cl-from-blue-200:hover {
  --gradient-from-color: #bee3f8 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(190, 227, 248, 0)) !important;
}

.hover\:cl-from-blue-300:hover {
  --gradient-from-color: #90cdf4 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 205, 244, 0)) !important;
}

.hover\:cl-from-blue-400:hover {
  --gradient-from-color: #63b3ed !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(99, 179, 237, 0)) !important;
}

.hover\:cl-from-blue-500:hover {
  --gradient-from-color: #4299e1 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 153, 225, 0)) !important;
}

.hover\:cl-from-blue-600:hover {
  --gradient-from-color: #3182ce !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(49, 130, 206, 0)) !important;
}

.hover\:cl-from-blue-700:hover {
  --gradient-from-color: #2b6cb0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(43, 108, 176, 0)) !important;
}

.hover\:cl-from-blue-800:hover {
  --gradient-from-color: #2c5282 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(44, 82, 130, 0)) !important;
}

.hover\:cl-from-blue-900:hover {
  --gradient-from-color: #2a4365 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(42, 67, 101, 0)) !important;
}

.hover\:cl-from-indigo-100:hover {
  --gradient-from-color: #ebf4ff !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(235, 244, 255, 0)) !important;
}

.hover\:cl-from-indigo-200:hover {
  --gradient-from-color: #c3dafe !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(195, 218, 254, 0)) !important;
}

.hover\:cl-from-indigo-300:hover {
  --gradient-from-color: #a3bffa !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(163, 191, 250, 0)) !important;
}

.hover\:cl-from-indigo-400:hover {
  --gradient-from-color: #7f9cf5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(127, 156, 245, 0)) !important;
}

.hover\:cl-from-indigo-500:hover {
  --gradient-from-color: #667eea !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 126, 234, 0)) !important;
}

.hover\:cl-from-indigo-600:hover {
  --gradient-from-color: #5a67d8 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 103, 216, 0)) !important;
}

.hover\:cl-from-indigo-700:hover {
  --gradient-from-color: #4c51bf !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(76, 81, 191, 0)) !important;
}

.hover\:cl-from-indigo-800:hover {
  --gradient-from-color: #434190 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(67, 65, 144, 0)) !important;
}

.hover\:cl-from-indigo-900:hover {
  --gradient-from-color: #3c366b !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(60, 54, 107, 0)) !important;
}

.hover\:cl-from-purple-100:hover {
  --gradient-from-color: #faf5ff !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 245, 255, 0)) !important;
}

.hover\:cl-from-purple-200:hover {
  --gradient-from-color: #e9d8fd !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(233, 216, 253, 0)) !important;
}

.hover\:cl-from-purple-300:hover {
  --gradient-from-color: #d6bcfa !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(214, 188, 250, 0)) !important;
}

.hover\:cl-from-purple-400:hover {
  --gradient-from-color: #b794f4 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(183, 148, 244, 0)) !important;
}

.hover\:cl-from-purple-500:hover {
  --gradient-from-color: #9f7aea !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(159, 122, 234, 0)) !important;
}

.hover\:cl-from-purple-600:hover {
  --gradient-from-color: #805ad5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(128, 90, 213, 0)) !important;
}

.hover\:cl-from-purple-700:hover {
  --gradient-from-color: #6b46c1 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(107, 70, 193, 0)) !important;
}

.hover\:cl-from-purple-800:hover {
  --gradient-from-color: #553c9a !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(85, 60, 154, 0)) !important;
}

.hover\:cl-from-purple-900:hover {
  --gradient-from-color: #44337a !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(68, 51, 122, 0)) !important;
}

.hover\:cl-from-pink-100:hover {
  --gradient-from-color: #fff5f7 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 245, 247, 0)) !important;
}

.hover\:cl-from-pink-200:hover {
  --gradient-from-color: #fed7e2 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 215, 226, 0)) !important;
}

.hover\:cl-from-pink-300:hover {
  --gradient-from-color: #fbb6ce !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 182, 206, 0)) !important;
}

.hover\:cl-from-pink-400:hover {
  --gradient-from-color: #f687b3 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 135, 179, 0)) !important;
}

.hover\:cl-from-pink-500:hover {
  --gradient-from-color: #ed64a6 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 100, 166, 0)) !important;
}

.hover\:cl-from-pink-600:hover {
  --gradient-from-color: #d53f8c !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(213, 63, 140, 0)) !important;
}

.hover\:cl-from-pink-700:hover {
  --gradient-from-color: #b83280 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(184, 50, 128, 0)) !important;
}

.hover\:cl-from-pink-800:hover {
  --gradient-from-color: #97266d !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(151, 38, 109, 0)) !important;
}

.hover\:cl-from-pink-900:hover {
  --gradient-from-color: #702459 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(112, 36, 89, 0)) !important;
}

.hover\:cl-from-ui-gray-100:hover {
  --gradient-from-color: #f1f1f1 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(241, 241, 241, 0)) !important;
}

.hover\:cl-from-ui-brown-100:hover {
  --gradient-from-color: #f3ecdc !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(243, 236, 220, 0)) !important;
}

.hover\:cl-from-ui-brown-200:hover {
  --gradient-from-color: #e8e0c9 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(232, 224, 201, 0)) !important;
}

.hover\:cl-from-ui-brown-300:hover {
  --gradient-from-color: #d0c095 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(208, 192, 149, 0)) !important;
}

.hover\:cl-from-ui-brown-700:hover {
  --gradient-from-color: #bd6005 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(189, 96, 5, 0)) !important;
}

.hover\:cl-from-ui-green-300:hover {
  --gradient-from-color: #aac74c !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(170, 199, 76, 0)) !important;
}

.hover\:cl-from-ui-green-400:hover {
  --gradient-from-color: #71893e !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(113, 137, 62, 0)) !important;
}

.hover\:cl-from-ui-orange-500:hover {
  --gradient-from-color: #e27212 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 114, 18, 0)) !important;
}

.hover\:cl-from-facebook:hover {
  --gradient-from-color: #3b5998 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(59, 89, 152, 0)) !important;
}

.hover\:cl-from-twitter:hover {
  --gradient-from-color: #00acee !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 172, 238, 0)) !important;
}

.hover\:cl-from-twitch:hover {
  --gradient-from-color: #6441a5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 65, 165, 0)) !important;
}

.hover\:cl-from-youtube:hover {
  --gradient-from-color: #FF0000 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 0, 0, 0)) !important;
}

.hover\:cl-via-transparent:hover {
  --gradient-via-color: transparent !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
}

.hover\:cl-via-current:hover {
  --gradient-via-color: currentColor !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
}

.hover\:cl-via-black:hover {
  --gradient-via-color: #000 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
}

.hover\:cl-via-white:hover {
  --gradient-via-color: #fff !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
}

.hover\:cl-via-gray-100:hover {
  --gradient-via-color: #f7fafc !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 250, 252, 0)) !important;
}

.hover\:cl-via-gray-200:hover {
  --gradient-via-color: #edf2f7 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 242, 247, 0)) !important;
}

.hover\:cl-via-gray-300:hover {
  --gradient-via-color: #e2e8f0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 232, 240, 0)) !important;
}

.hover\:cl-via-gray-400:hover {
  --gradient-via-color: #cbd5e0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(203, 213, 224, 0)) !important;
}

.hover\:cl-via-gray-500:hover {
  --gradient-via-color: #a0aec0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 174, 192, 0)) !important;
}

.hover\:cl-via-gray-600:hover {
  --gradient-via-color: #718096 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(113, 128, 150, 0)) !important;
}

.hover\:cl-via-gray-700:hover {
  --gradient-via-color: #4a5568 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 85, 104, 0)) !important;
}

.hover\:cl-via-gray-800:hover {
  --gradient-via-color: #2d3748 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(45, 55, 72, 0)) !important;
}

.hover\:cl-via-gray-900:hover {
  --gradient-via-color: #1a202c !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 32, 44, 0)) !important;
}

.hover\:cl-via-red-100:hover {
  --gradient-via-color: #fff5f5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 245, 245, 0)) !important;
}

.hover\:cl-via-red-200:hover {
  --gradient-via-color: #fed7d7 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 215, 215, 0)) !important;
}

.hover\:cl-via-red-300:hover {
  --gradient-via-color: #feb2b2 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 178, 178, 0)) !important;
}

.hover\:cl-via-red-400:hover {
  --gradient-via-color: #fc8181 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(252, 129, 129, 0)) !important;
}

.hover\:cl-via-red-500:hover {
  --gradient-via-color: #f56565 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(245, 101, 101, 0)) !important;
}

.hover\:cl-via-red-600:hover {
  --gradient-via-color: #e53e3e !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(229, 62, 62, 0)) !important;
}

.hover\:cl-via-red-700:hover {
  --gradient-via-color: #c53030 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(197, 48, 48, 0)) !important;
}

.hover\:cl-via-red-800:hover {
  --gradient-via-color: #9b2c2c !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(155, 44, 44, 0)) !important;
}

.hover\:cl-via-red-900:hover {
  --gradient-via-color: #742a2a !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(116, 42, 42, 0)) !important;
}

.hover\:cl-via-orange-100:hover {
  --gradient-via-color: #fffaf0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 240, 0)) !important;
}

.hover\:cl-via-orange-200:hover {
  --gradient-via-color: #feebc8 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 235, 200, 0)) !important;
}

.hover\:cl-via-orange-300:hover {
  --gradient-via-color: #fbd38d !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 211, 141, 0)) !important;
}

.hover\:cl-via-orange-400:hover {
  --gradient-via-color: #f6ad55 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 173, 85, 0)) !important;
}

.hover\:cl-via-orange-500:hover {
  --gradient-via-color: #ed8936 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 137, 54, 0)) !important;
}

.hover\:cl-via-orange-600:hover {
  --gradient-via-color: #dd6b20 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(221, 107, 32, 0)) !important;
}

.hover\:cl-via-orange-700:hover {
  --gradient-via-color: #c05621 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(192, 86, 33, 0)) !important;
}

.hover\:cl-via-orange-800:hover {
  --gradient-via-color: #9c4221 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 66, 33, 0)) !important;
}

.hover\:cl-via-orange-900:hover {
  --gradient-via-color: #7b341e !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(123, 52, 30, 0)) !important;
}

.hover\:cl-via-yellow-100:hover {
  --gradient-via-color: #fffff0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 240, 0)) !important;
}

.hover\:cl-via-yellow-200:hover {
  --gradient-via-color: #fefcbf !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 252, 191, 0)) !important;
}

.hover\:cl-via-yellow-300:hover {
  --gradient-via-color: #faf089 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 240, 137, 0)) !important;
}

.hover\:cl-via-yellow-400:hover {
  --gradient-via-color: #f6e05e !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 224, 94, 0)) !important;
}

.hover\:cl-via-yellow-500:hover {
  --gradient-via-color: #ecc94b !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 201, 75, 0)) !important;
}

.hover\:cl-via-yellow-600:hover {
  --gradient-via-color: #d69e2e !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(214, 158, 46, 0)) !important;
}

.hover\:cl-via-yellow-700:hover {
  --gradient-via-color: #b7791f !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(183, 121, 31, 0)) !important;
}

.hover\:cl-via-yellow-800:hover {
  --gradient-via-color: #975a16 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(151, 90, 22, 0)) !important;
}

.hover\:cl-via-yellow-900:hover {
  --gradient-via-color: #744210 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(116, 66, 16, 0)) !important;
}

.hover\:cl-via-green-100:hover {
  --gradient-via-color: #f0fff4 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(240, 255, 244, 0)) !important;
}

.hover\:cl-via-green-200:hover {
  --gradient-via-color: #c6f6d5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(198, 246, 213, 0)) !important;
}

.hover\:cl-via-green-300:hover {
  --gradient-via-color: #9ae6b4 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 230, 180, 0)) !important;
}

.hover\:cl-via-green-400:hover {
  --gradient-via-color: #68d391 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(104, 211, 145, 0)) !important;
}

.hover\:cl-via-green-500:hover {
  --gradient-via-color: #48bb78 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(72, 187, 120, 0)) !important;
}

.hover\:cl-via-green-600:hover {
  --gradient-via-color: #38a169 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(56, 161, 105, 0)) !important;
}

.hover\:cl-via-green-700:hover {
  --gradient-via-color: #2f855a !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(47, 133, 90, 0)) !important;
}

.hover\:cl-via-green-800:hover {
  --gradient-via-color: #276749 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(39, 103, 73, 0)) !important;
}

.hover\:cl-via-green-900:hover {
  --gradient-via-color: #22543d !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(34, 84, 61, 0)) !important;
}

.hover\:cl-via-teal-100:hover {
  --gradient-via-color: #e6fffa !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 255, 250, 0)) !important;
}

.hover\:cl-via-teal-200:hover {
  --gradient-via-color: #b2f5ea !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(178, 245, 234, 0)) !important;
}

.hover\:cl-via-teal-300:hover {
  --gradient-via-color: #81e6d9 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(129, 230, 217, 0)) !important;
}

.hover\:cl-via-teal-400:hover {
  --gradient-via-color: #4fd1c5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(79, 209, 197, 0)) !important;
}

.hover\:cl-via-teal-500:hover {
  --gradient-via-color: #38b2ac !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(56, 178, 172, 0)) !important;
}

.hover\:cl-via-teal-600:hover {
  --gradient-via-color: #319795 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(49, 151, 149, 0)) !important;
}

.hover\:cl-via-teal-700:hover {
  --gradient-via-color: #2c7a7b !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(44, 122, 123, 0)) !important;
}

.hover\:cl-via-teal-800:hover {
  --gradient-via-color: #285e61 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(40, 94, 97, 0)) !important;
}

.hover\:cl-via-teal-900:hover {
  --gradient-via-color: #234e52 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(35, 78, 82, 0)) !important;
}

.hover\:cl-via-blue-100:hover {
  --gradient-via-color: #ebf8ff !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(235, 248, 255, 0)) !important;
}

.hover\:cl-via-blue-200:hover {
  --gradient-via-color: #bee3f8 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(190, 227, 248, 0)) !important;
}

.hover\:cl-via-blue-300:hover {
  --gradient-via-color: #90cdf4 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 205, 244, 0)) !important;
}

.hover\:cl-via-blue-400:hover {
  --gradient-via-color: #63b3ed !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(99, 179, 237, 0)) !important;
}

.hover\:cl-via-blue-500:hover {
  --gradient-via-color: #4299e1 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 153, 225, 0)) !important;
}

.hover\:cl-via-blue-600:hover {
  --gradient-via-color: #3182ce !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(49, 130, 206, 0)) !important;
}

.hover\:cl-via-blue-700:hover {
  --gradient-via-color: #2b6cb0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(43, 108, 176, 0)) !important;
}

.hover\:cl-via-blue-800:hover {
  --gradient-via-color: #2c5282 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(44, 82, 130, 0)) !important;
}

.hover\:cl-via-blue-900:hover {
  --gradient-via-color: #2a4365 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(42, 67, 101, 0)) !important;
}

.hover\:cl-via-indigo-100:hover {
  --gradient-via-color: #ebf4ff !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(235, 244, 255, 0)) !important;
}

.hover\:cl-via-indigo-200:hover {
  --gradient-via-color: #c3dafe !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(195, 218, 254, 0)) !important;
}

.hover\:cl-via-indigo-300:hover {
  --gradient-via-color: #a3bffa !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(163, 191, 250, 0)) !important;
}

.hover\:cl-via-indigo-400:hover {
  --gradient-via-color: #7f9cf5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(127, 156, 245, 0)) !important;
}

.hover\:cl-via-indigo-500:hover {
  --gradient-via-color: #667eea !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 126, 234, 0)) !important;
}

.hover\:cl-via-indigo-600:hover {
  --gradient-via-color: #5a67d8 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 103, 216, 0)) !important;
}

.hover\:cl-via-indigo-700:hover {
  --gradient-via-color: #4c51bf !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(76, 81, 191, 0)) !important;
}

.hover\:cl-via-indigo-800:hover {
  --gradient-via-color: #434190 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(67, 65, 144, 0)) !important;
}

.hover\:cl-via-indigo-900:hover {
  --gradient-via-color: #3c366b !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(60, 54, 107, 0)) !important;
}

.hover\:cl-via-purple-100:hover {
  --gradient-via-color: #faf5ff !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 245, 255, 0)) !important;
}

.hover\:cl-via-purple-200:hover {
  --gradient-via-color: #e9d8fd !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(233, 216, 253, 0)) !important;
}

.hover\:cl-via-purple-300:hover {
  --gradient-via-color: #d6bcfa !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(214, 188, 250, 0)) !important;
}

.hover\:cl-via-purple-400:hover {
  --gradient-via-color: #b794f4 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(183, 148, 244, 0)) !important;
}

.hover\:cl-via-purple-500:hover {
  --gradient-via-color: #9f7aea !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(159, 122, 234, 0)) !important;
}

.hover\:cl-via-purple-600:hover {
  --gradient-via-color: #805ad5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(128, 90, 213, 0)) !important;
}

.hover\:cl-via-purple-700:hover {
  --gradient-via-color: #6b46c1 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(107, 70, 193, 0)) !important;
}

.hover\:cl-via-purple-800:hover {
  --gradient-via-color: #553c9a !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(85, 60, 154, 0)) !important;
}

.hover\:cl-via-purple-900:hover {
  --gradient-via-color: #44337a !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(68, 51, 122, 0)) !important;
}

.hover\:cl-via-pink-100:hover {
  --gradient-via-color: #fff5f7 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 245, 247, 0)) !important;
}

.hover\:cl-via-pink-200:hover {
  --gradient-via-color: #fed7e2 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 215, 226, 0)) !important;
}

.hover\:cl-via-pink-300:hover {
  --gradient-via-color: #fbb6ce !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 182, 206, 0)) !important;
}

.hover\:cl-via-pink-400:hover {
  --gradient-via-color: #f687b3 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 135, 179, 0)) !important;
}

.hover\:cl-via-pink-500:hover {
  --gradient-via-color: #ed64a6 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 100, 166, 0)) !important;
}

.hover\:cl-via-pink-600:hover {
  --gradient-via-color: #d53f8c !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(213, 63, 140, 0)) !important;
}

.hover\:cl-via-pink-700:hover {
  --gradient-via-color: #b83280 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(184, 50, 128, 0)) !important;
}

.hover\:cl-via-pink-800:hover {
  --gradient-via-color: #97266d !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(151, 38, 109, 0)) !important;
}

.hover\:cl-via-pink-900:hover {
  --gradient-via-color: #702459 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(112, 36, 89, 0)) !important;
}

.hover\:cl-via-ui-gray-100:hover {
  --gradient-via-color: #f1f1f1 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(241, 241, 241, 0)) !important;
}

.hover\:cl-via-ui-brown-100:hover {
  --gradient-via-color: #f3ecdc !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(243, 236, 220, 0)) !important;
}

.hover\:cl-via-ui-brown-200:hover {
  --gradient-via-color: #e8e0c9 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(232, 224, 201, 0)) !important;
}

.hover\:cl-via-ui-brown-300:hover {
  --gradient-via-color: #d0c095 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(208, 192, 149, 0)) !important;
}

.hover\:cl-via-ui-brown-700:hover {
  --gradient-via-color: #bd6005 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(189, 96, 5, 0)) !important;
}

.hover\:cl-via-ui-green-300:hover {
  --gradient-via-color: #aac74c !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(170, 199, 76, 0)) !important;
}

.hover\:cl-via-ui-green-400:hover {
  --gradient-via-color: #71893e !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(113, 137, 62, 0)) !important;
}

.hover\:cl-via-ui-orange-500:hover {
  --gradient-via-color: #e27212 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 114, 18, 0)) !important;
}

.hover\:cl-via-facebook:hover {
  --gradient-via-color: #3b5998 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(59, 89, 152, 0)) !important;
}

.hover\:cl-via-twitter:hover {
  --gradient-via-color: #00acee !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 172, 238, 0)) !important;
}

.hover\:cl-via-twitch:hover {
  --gradient-via-color: #6441a5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 65, 165, 0)) !important;
}

.hover\:cl-via-youtube:hover {
  --gradient-via-color: #FF0000 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 0, 0, 0)) !important;
}

.hover\:cl-to-transparent:hover {
  --gradient-to-color: transparent !important;
}

.hover\:cl-to-current:hover {
  --gradient-to-color: currentColor !important;
}

.hover\:cl-to-black:hover {
  --gradient-to-color: #000 !important;
}

.hover\:cl-to-white:hover {
  --gradient-to-color: #fff !important;
}

.hover\:cl-to-gray-100:hover {
  --gradient-to-color: #f7fafc !important;
}

.hover\:cl-to-gray-200:hover {
  --gradient-to-color: #edf2f7 !important;
}

.hover\:cl-to-gray-300:hover {
  --gradient-to-color: #e2e8f0 !important;
}

.hover\:cl-to-gray-400:hover {
  --gradient-to-color: #cbd5e0 !important;
}

.hover\:cl-to-gray-500:hover {
  --gradient-to-color: #a0aec0 !important;
}

.hover\:cl-to-gray-600:hover {
  --gradient-to-color: #718096 !important;
}

.hover\:cl-to-gray-700:hover {
  --gradient-to-color: #4a5568 !important;
}

.hover\:cl-to-gray-800:hover {
  --gradient-to-color: #2d3748 !important;
}

.hover\:cl-to-gray-900:hover {
  --gradient-to-color: #1a202c !important;
}

.hover\:cl-to-red-100:hover {
  --gradient-to-color: #fff5f5 !important;
}

.hover\:cl-to-red-200:hover {
  --gradient-to-color: #fed7d7 !important;
}

.hover\:cl-to-red-300:hover {
  --gradient-to-color: #feb2b2 !important;
}

.hover\:cl-to-red-400:hover {
  --gradient-to-color: #fc8181 !important;
}

.hover\:cl-to-red-500:hover {
  --gradient-to-color: #f56565 !important;
}

.hover\:cl-to-red-600:hover {
  --gradient-to-color: #e53e3e !important;
}

.hover\:cl-to-red-700:hover {
  --gradient-to-color: #c53030 !important;
}

.hover\:cl-to-red-800:hover {
  --gradient-to-color: #9b2c2c !important;
}

.hover\:cl-to-red-900:hover {
  --gradient-to-color: #742a2a !important;
}

.hover\:cl-to-orange-100:hover {
  --gradient-to-color: #fffaf0 !important;
}

.hover\:cl-to-orange-200:hover {
  --gradient-to-color: #feebc8 !important;
}

.hover\:cl-to-orange-300:hover {
  --gradient-to-color: #fbd38d !important;
}

.hover\:cl-to-orange-400:hover {
  --gradient-to-color: #f6ad55 !important;
}

.hover\:cl-to-orange-500:hover {
  --gradient-to-color: #ed8936 !important;
}

.hover\:cl-to-orange-600:hover {
  --gradient-to-color: #dd6b20 !important;
}

.hover\:cl-to-orange-700:hover {
  --gradient-to-color: #c05621 !important;
}

.hover\:cl-to-orange-800:hover {
  --gradient-to-color: #9c4221 !important;
}

.hover\:cl-to-orange-900:hover {
  --gradient-to-color: #7b341e !important;
}

.hover\:cl-to-yellow-100:hover {
  --gradient-to-color: #fffff0 !important;
}

.hover\:cl-to-yellow-200:hover {
  --gradient-to-color: #fefcbf !important;
}

.hover\:cl-to-yellow-300:hover {
  --gradient-to-color: #faf089 !important;
}

.hover\:cl-to-yellow-400:hover {
  --gradient-to-color: #f6e05e !important;
}

.hover\:cl-to-yellow-500:hover {
  --gradient-to-color: #ecc94b !important;
}

.hover\:cl-to-yellow-600:hover {
  --gradient-to-color: #d69e2e !important;
}

.hover\:cl-to-yellow-700:hover {
  --gradient-to-color: #b7791f !important;
}

.hover\:cl-to-yellow-800:hover {
  --gradient-to-color: #975a16 !important;
}

.hover\:cl-to-yellow-900:hover {
  --gradient-to-color: #744210 !important;
}

.hover\:cl-to-green-100:hover {
  --gradient-to-color: #f0fff4 !important;
}

.hover\:cl-to-green-200:hover {
  --gradient-to-color: #c6f6d5 !important;
}

.hover\:cl-to-green-300:hover {
  --gradient-to-color: #9ae6b4 !important;
}

.hover\:cl-to-green-400:hover {
  --gradient-to-color: #68d391 !important;
}

.hover\:cl-to-green-500:hover {
  --gradient-to-color: #48bb78 !important;
}

.hover\:cl-to-green-600:hover {
  --gradient-to-color: #38a169 !important;
}

.hover\:cl-to-green-700:hover {
  --gradient-to-color: #2f855a !important;
}

.hover\:cl-to-green-800:hover {
  --gradient-to-color: #276749 !important;
}

.hover\:cl-to-green-900:hover {
  --gradient-to-color: #22543d !important;
}

.hover\:cl-to-teal-100:hover {
  --gradient-to-color: #e6fffa !important;
}

.hover\:cl-to-teal-200:hover {
  --gradient-to-color: #b2f5ea !important;
}

.hover\:cl-to-teal-300:hover {
  --gradient-to-color: #81e6d9 !important;
}

.hover\:cl-to-teal-400:hover {
  --gradient-to-color: #4fd1c5 !important;
}

.hover\:cl-to-teal-500:hover {
  --gradient-to-color: #38b2ac !important;
}

.hover\:cl-to-teal-600:hover {
  --gradient-to-color: #319795 !important;
}

.hover\:cl-to-teal-700:hover {
  --gradient-to-color: #2c7a7b !important;
}

.hover\:cl-to-teal-800:hover {
  --gradient-to-color: #285e61 !important;
}

.hover\:cl-to-teal-900:hover {
  --gradient-to-color: #234e52 !important;
}

.hover\:cl-to-blue-100:hover {
  --gradient-to-color: #ebf8ff !important;
}

.hover\:cl-to-blue-200:hover {
  --gradient-to-color: #bee3f8 !important;
}

.hover\:cl-to-blue-300:hover {
  --gradient-to-color: #90cdf4 !important;
}

.hover\:cl-to-blue-400:hover {
  --gradient-to-color: #63b3ed !important;
}

.hover\:cl-to-blue-500:hover {
  --gradient-to-color: #4299e1 !important;
}

.hover\:cl-to-blue-600:hover {
  --gradient-to-color: #3182ce !important;
}

.hover\:cl-to-blue-700:hover {
  --gradient-to-color: #2b6cb0 !important;
}

.hover\:cl-to-blue-800:hover {
  --gradient-to-color: #2c5282 !important;
}

.hover\:cl-to-blue-900:hover {
  --gradient-to-color: #2a4365 !important;
}

.hover\:cl-to-indigo-100:hover {
  --gradient-to-color: #ebf4ff !important;
}

.hover\:cl-to-indigo-200:hover {
  --gradient-to-color: #c3dafe !important;
}

.hover\:cl-to-indigo-300:hover {
  --gradient-to-color: #a3bffa !important;
}

.hover\:cl-to-indigo-400:hover {
  --gradient-to-color: #7f9cf5 !important;
}

.hover\:cl-to-indigo-500:hover {
  --gradient-to-color: #667eea !important;
}

.hover\:cl-to-indigo-600:hover {
  --gradient-to-color: #5a67d8 !important;
}

.hover\:cl-to-indigo-700:hover {
  --gradient-to-color: #4c51bf !important;
}

.hover\:cl-to-indigo-800:hover {
  --gradient-to-color: #434190 !important;
}

.hover\:cl-to-indigo-900:hover {
  --gradient-to-color: #3c366b !important;
}

.hover\:cl-to-purple-100:hover {
  --gradient-to-color: #faf5ff !important;
}

.hover\:cl-to-purple-200:hover {
  --gradient-to-color: #e9d8fd !important;
}

.hover\:cl-to-purple-300:hover {
  --gradient-to-color: #d6bcfa !important;
}

.hover\:cl-to-purple-400:hover {
  --gradient-to-color: #b794f4 !important;
}

.hover\:cl-to-purple-500:hover {
  --gradient-to-color: #9f7aea !important;
}

.hover\:cl-to-purple-600:hover {
  --gradient-to-color: #805ad5 !important;
}

.hover\:cl-to-purple-700:hover {
  --gradient-to-color: #6b46c1 !important;
}

.hover\:cl-to-purple-800:hover {
  --gradient-to-color: #553c9a !important;
}

.hover\:cl-to-purple-900:hover {
  --gradient-to-color: #44337a !important;
}

.hover\:cl-to-pink-100:hover {
  --gradient-to-color: #fff5f7 !important;
}

.hover\:cl-to-pink-200:hover {
  --gradient-to-color: #fed7e2 !important;
}

.hover\:cl-to-pink-300:hover {
  --gradient-to-color: #fbb6ce !important;
}

.hover\:cl-to-pink-400:hover {
  --gradient-to-color: #f687b3 !important;
}

.hover\:cl-to-pink-500:hover {
  --gradient-to-color: #ed64a6 !important;
}

.hover\:cl-to-pink-600:hover {
  --gradient-to-color: #d53f8c !important;
}

.hover\:cl-to-pink-700:hover {
  --gradient-to-color: #b83280 !important;
}

.hover\:cl-to-pink-800:hover {
  --gradient-to-color: #97266d !important;
}

.hover\:cl-to-pink-900:hover {
  --gradient-to-color: #702459 !important;
}

.hover\:cl-to-ui-gray-100:hover {
  --gradient-to-color: #f1f1f1 !important;
}

.hover\:cl-to-ui-brown-100:hover {
  --gradient-to-color: #f3ecdc !important;
}

.hover\:cl-to-ui-brown-200:hover {
  --gradient-to-color: #e8e0c9 !important;
}

.hover\:cl-to-ui-brown-300:hover {
  --gradient-to-color: #d0c095 !important;
}

.hover\:cl-to-ui-brown-700:hover {
  --gradient-to-color: #bd6005 !important;
}

.hover\:cl-to-ui-green-300:hover {
  --gradient-to-color: #aac74c !important;
}

.hover\:cl-to-ui-green-400:hover {
  --gradient-to-color: #71893e !important;
}

.hover\:cl-to-ui-orange-500:hover {
  --gradient-to-color: #e27212 !important;
}

.hover\:cl-to-facebook:hover {
  --gradient-to-color: #3b5998 !important;
}

.hover\:cl-to-twitter:hover {
  --gradient-to-color: #00acee !important;
}

.hover\:cl-to-twitch:hover {
  --gradient-to-color: #6441a5 !important;
}

.hover\:cl-to-youtube:hover {
  --gradient-to-color: #FF0000 !important;
}

.focus\:cl-from-transparent:focus {
  --gradient-from-color: transparent !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
}

.focus\:cl-from-current:focus {
  --gradient-from-color: currentColor !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
}

.focus\:cl-from-black:focus {
  --gradient-from-color: #000 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
}

.focus\:cl-from-white:focus {
  --gradient-from-color: #fff !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
}

.focus\:cl-from-gray-100:focus {
  --gradient-from-color: #f7fafc !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 250, 252, 0)) !important;
}

.focus\:cl-from-gray-200:focus {
  --gradient-from-color: #edf2f7 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 242, 247, 0)) !important;
}

.focus\:cl-from-gray-300:focus {
  --gradient-from-color: #e2e8f0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 232, 240, 0)) !important;
}

.focus\:cl-from-gray-400:focus {
  --gradient-from-color: #cbd5e0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(203, 213, 224, 0)) !important;
}

.focus\:cl-from-gray-500:focus {
  --gradient-from-color: #a0aec0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 174, 192, 0)) !important;
}

.focus\:cl-from-gray-600:focus {
  --gradient-from-color: #718096 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(113, 128, 150, 0)) !important;
}

.focus\:cl-from-gray-700:focus {
  --gradient-from-color: #4a5568 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 85, 104, 0)) !important;
}

.focus\:cl-from-gray-800:focus {
  --gradient-from-color: #2d3748 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(45, 55, 72, 0)) !important;
}

.focus\:cl-from-gray-900:focus {
  --gradient-from-color: #1a202c !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 32, 44, 0)) !important;
}

.focus\:cl-from-red-100:focus {
  --gradient-from-color: #fff5f5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 245, 245, 0)) !important;
}

.focus\:cl-from-red-200:focus {
  --gradient-from-color: #fed7d7 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 215, 215, 0)) !important;
}

.focus\:cl-from-red-300:focus {
  --gradient-from-color: #feb2b2 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 178, 178, 0)) !important;
}

.focus\:cl-from-red-400:focus {
  --gradient-from-color: #fc8181 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(252, 129, 129, 0)) !important;
}

.focus\:cl-from-red-500:focus {
  --gradient-from-color: #f56565 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(245, 101, 101, 0)) !important;
}

.focus\:cl-from-red-600:focus {
  --gradient-from-color: #e53e3e !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(229, 62, 62, 0)) !important;
}

.focus\:cl-from-red-700:focus {
  --gradient-from-color: #c53030 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(197, 48, 48, 0)) !important;
}

.focus\:cl-from-red-800:focus {
  --gradient-from-color: #9b2c2c !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(155, 44, 44, 0)) !important;
}

.focus\:cl-from-red-900:focus {
  --gradient-from-color: #742a2a !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(116, 42, 42, 0)) !important;
}

.focus\:cl-from-orange-100:focus {
  --gradient-from-color: #fffaf0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 240, 0)) !important;
}

.focus\:cl-from-orange-200:focus {
  --gradient-from-color: #feebc8 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 235, 200, 0)) !important;
}

.focus\:cl-from-orange-300:focus {
  --gradient-from-color: #fbd38d !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 211, 141, 0)) !important;
}

.focus\:cl-from-orange-400:focus {
  --gradient-from-color: #f6ad55 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 173, 85, 0)) !important;
}

.focus\:cl-from-orange-500:focus {
  --gradient-from-color: #ed8936 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 137, 54, 0)) !important;
}

.focus\:cl-from-orange-600:focus {
  --gradient-from-color: #dd6b20 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(221, 107, 32, 0)) !important;
}

.focus\:cl-from-orange-700:focus {
  --gradient-from-color: #c05621 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(192, 86, 33, 0)) !important;
}

.focus\:cl-from-orange-800:focus {
  --gradient-from-color: #9c4221 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 66, 33, 0)) !important;
}

.focus\:cl-from-orange-900:focus {
  --gradient-from-color: #7b341e !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(123, 52, 30, 0)) !important;
}

.focus\:cl-from-yellow-100:focus {
  --gradient-from-color: #fffff0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 240, 0)) !important;
}

.focus\:cl-from-yellow-200:focus {
  --gradient-from-color: #fefcbf !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 252, 191, 0)) !important;
}

.focus\:cl-from-yellow-300:focus {
  --gradient-from-color: #faf089 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 240, 137, 0)) !important;
}

.focus\:cl-from-yellow-400:focus {
  --gradient-from-color: #f6e05e !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 224, 94, 0)) !important;
}

.focus\:cl-from-yellow-500:focus {
  --gradient-from-color: #ecc94b !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 201, 75, 0)) !important;
}

.focus\:cl-from-yellow-600:focus {
  --gradient-from-color: #d69e2e !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(214, 158, 46, 0)) !important;
}

.focus\:cl-from-yellow-700:focus {
  --gradient-from-color: #b7791f !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(183, 121, 31, 0)) !important;
}

.focus\:cl-from-yellow-800:focus {
  --gradient-from-color: #975a16 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(151, 90, 22, 0)) !important;
}

.focus\:cl-from-yellow-900:focus {
  --gradient-from-color: #744210 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(116, 66, 16, 0)) !important;
}

.focus\:cl-from-green-100:focus {
  --gradient-from-color: #f0fff4 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(240, 255, 244, 0)) !important;
}

.focus\:cl-from-green-200:focus {
  --gradient-from-color: #c6f6d5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(198, 246, 213, 0)) !important;
}

.focus\:cl-from-green-300:focus {
  --gradient-from-color: #9ae6b4 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 230, 180, 0)) !important;
}

.focus\:cl-from-green-400:focus {
  --gradient-from-color: #68d391 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(104, 211, 145, 0)) !important;
}

.focus\:cl-from-green-500:focus {
  --gradient-from-color: #48bb78 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(72, 187, 120, 0)) !important;
}

.focus\:cl-from-green-600:focus {
  --gradient-from-color: #38a169 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(56, 161, 105, 0)) !important;
}

.focus\:cl-from-green-700:focus {
  --gradient-from-color: #2f855a !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(47, 133, 90, 0)) !important;
}

.focus\:cl-from-green-800:focus {
  --gradient-from-color: #276749 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(39, 103, 73, 0)) !important;
}

.focus\:cl-from-green-900:focus {
  --gradient-from-color: #22543d !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(34, 84, 61, 0)) !important;
}

.focus\:cl-from-teal-100:focus {
  --gradient-from-color: #e6fffa !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 255, 250, 0)) !important;
}

.focus\:cl-from-teal-200:focus {
  --gradient-from-color: #b2f5ea !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(178, 245, 234, 0)) !important;
}

.focus\:cl-from-teal-300:focus {
  --gradient-from-color: #81e6d9 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(129, 230, 217, 0)) !important;
}

.focus\:cl-from-teal-400:focus {
  --gradient-from-color: #4fd1c5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(79, 209, 197, 0)) !important;
}

.focus\:cl-from-teal-500:focus {
  --gradient-from-color: #38b2ac !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(56, 178, 172, 0)) !important;
}

.focus\:cl-from-teal-600:focus {
  --gradient-from-color: #319795 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(49, 151, 149, 0)) !important;
}

.focus\:cl-from-teal-700:focus {
  --gradient-from-color: #2c7a7b !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(44, 122, 123, 0)) !important;
}

.focus\:cl-from-teal-800:focus {
  --gradient-from-color: #285e61 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(40, 94, 97, 0)) !important;
}

.focus\:cl-from-teal-900:focus {
  --gradient-from-color: #234e52 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(35, 78, 82, 0)) !important;
}

.focus\:cl-from-blue-100:focus {
  --gradient-from-color: #ebf8ff !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(235, 248, 255, 0)) !important;
}

.focus\:cl-from-blue-200:focus {
  --gradient-from-color: #bee3f8 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(190, 227, 248, 0)) !important;
}

.focus\:cl-from-blue-300:focus {
  --gradient-from-color: #90cdf4 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 205, 244, 0)) !important;
}

.focus\:cl-from-blue-400:focus {
  --gradient-from-color: #63b3ed !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(99, 179, 237, 0)) !important;
}

.focus\:cl-from-blue-500:focus {
  --gradient-from-color: #4299e1 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 153, 225, 0)) !important;
}

.focus\:cl-from-blue-600:focus {
  --gradient-from-color: #3182ce !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(49, 130, 206, 0)) !important;
}

.focus\:cl-from-blue-700:focus {
  --gradient-from-color: #2b6cb0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(43, 108, 176, 0)) !important;
}

.focus\:cl-from-blue-800:focus {
  --gradient-from-color: #2c5282 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(44, 82, 130, 0)) !important;
}

.focus\:cl-from-blue-900:focus {
  --gradient-from-color: #2a4365 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(42, 67, 101, 0)) !important;
}

.focus\:cl-from-indigo-100:focus {
  --gradient-from-color: #ebf4ff !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(235, 244, 255, 0)) !important;
}

.focus\:cl-from-indigo-200:focus {
  --gradient-from-color: #c3dafe !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(195, 218, 254, 0)) !important;
}

.focus\:cl-from-indigo-300:focus {
  --gradient-from-color: #a3bffa !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(163, 191, 250, 0)) !important;
}

.focus\:cl-from-indigo-400:focus {
  --gradient-from-color: #7f9cf5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(127, 156, 245, 0)) !important;
}

.focus\:cl-from-indigo-500:focus {
  --gradient-from-color: #667eea !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 126, 234, 0)) !important;
}

.focus\:cl-from-indigo-600:focus {
  --gradient-from-color: #5a67d8 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 103, 216, 0)) !important;
}

.focus\:cl-from-indigo-700:focus {
  --gradient-from-color: #4c51bf !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(76, 81, 191, 0)) !important;
}

.focus\:cl-from-indigo-800:focus {
  --gradient-from-color: #434190 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(67, 65, 144, 0)) !important;
}

.focus\:cl-from-indigo-900:focus {
  --gradient-from-color: #3c366b !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(60, 54, 107, 0)) !important;
}

.focus\:cl-from-purple-100:focus {
  --gradient-from-color: #faf5ff !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 245, 255, 0)) !important;
}

.focus\:cl-from-purple-200:focus {
  --gradient-from-color: #e9d8fd !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(233, 216, 253, 0)) !important;
}

.focus\:cl-from-purple-300:focus {
  --gradient-from-color: #d6bcfa !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(214, 188, 250, 0)) !important;
}

.focus\:cl-from-purple-400:focus {
  --gradient-from-color: #b794f4 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(183, 148, 244, 0)) !important;
}

.focus\:cl-from-purple-500:focus {
  --gradient-from-color: #9f7aea !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(159, 122, 234, 0)) !important;
}

.focus\:cl-from-purple-600:focus {
  --gradient-from-color: #805ad5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(128, 90, 213, 0)) !important;
}

.focus\:cl-from-purple-700:focus {
  --gradient-from-color: #6b46c1 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(107, 70, 193, 0)) !important;
}

.focus\:cl-from-purple-800:focus {
  --gradient-from-color: #553c9a !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(85, 60, 154, 0)) !important;
}

.focus\:cl-from-purple-900:focus {
  --gradient-from-color: #44337a !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(68, 51, 122, 0)) !important;
}

.focus\:cl-from-pink-100:focus {
  --gradient-from-color: #fff5f7 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 245, 247, 0)) !important;
}

.focus\:cl-from-pink-200:focus {
  --gradient-from-color: #fed7e2 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 215, 226, 0)) !important;
}

.focus\:cl-from-pink-300:focus {
  --gradient-from-color: #fbb6ce !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 182, 206, 0)) !important;
}

.focus\:cl-from-pink-400:focus {
  --gradient-from-color: #f687b3 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 135, 179, 0)) !important;
}

.focus\:cl-from-pink-500:focus {
  --gradient-from-color: #ed64a6 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 100, 166, 0)) !important;
}

.focus\:cl-from-pink-600:focus {
  --gradient-from-color: #d53f8c !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(213, 63, 140, 0)) !important;
}

.focus\:cl-from-pink-700:focus {
  --gradient-from-color: #b83280 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(184, 50, 128, 0)) !important;
}

.focus\:cl-from-pink-800:focus {
  --gradient-from-color: #97266d !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(151, 38, 109, 0)) !important;
}

.focus\:cl-from-pink-900:focus {
  --gradient-from-color: #702459 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(112, 36, 89, 0)) !important;
}

.focus\:cl-from-ui-gray-100:focus {
  --gradient-from-color: #f1f1f1 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(241, 241, 241, 0)) !important;
}

.focus\:cl-from-ui-brown-100:focus {
  --gradient-from-color: #f3ecdc !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(243, 236, 220, 0)) !important;
}

.focus\:cl-from-ui-brown-200:focus {
  --gradient-from-color: #e8e0c9 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(232, 224, 201, 0)) !important;
}

.focus\:cl-from-ui-brown-300:focus {
  --gradient-from-color: #d0c095 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(208, 192, 149, 0)) !important;
}

.focus\:cl-from-ui-brown-700:focus {
  --gradient-from-color: #bd6005 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(189, 96, 5, 0)) !important;
}

.focus\:cl-from-ui-green-300:focus {
  --gradient-from-color: #aac74c !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(170, 199, 76, 0)) !important;
}

.focus\:cl-from-ui-green-400:focus {
  --gradient-from-color: #71893e !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(113, 137, 62, 0)) !important;
}

.focus\:cl-from-ui-orange-500:focus {
  --gradient-from-color: #e27212 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 114, 18, 0)) !important;
}

.focus\:cl-from-facebook:focus {
  --gradient-from-color: #3b5998 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(59, 89, 152, 0)) !important;
}

.focus\:cl-from-twitter:focus {
  --gradient-from-color: #00acee !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 172, 238, 0)) !important;
}

.focus\:cl-from-twitch:focus {
  --gradient-from-color: #6441a5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 65, 165, 0)) !important;
}

.focus\:cl-from-youtube:focus {
  --gradient-from-color: #FF0000 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 0, 0, 0)) !important;
}

.focus\:cl-via-transparent:focus {
  --gradient-via-color: transparent !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
}

.focus\:cl-via-current:focus {
  --gradient-via-color: currentColor !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
}

.focus\:cl-via-black:focus {
  --gradient-via-color: #000 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
}

.focus\:cl-via-white:focus {
  --gradient-via-color: #fff !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
}

.focus\:cl-via-gray-100:focus {
  --gradient-via-color: #f7fafc !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 250, 252, 0)) !important;
}

.focus\:cl-via-gray-200:focus {
  --gradient-via-color: #edf2f7 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 242, 247, 0)) !important;
}

.focus\:cl-via-gray-300:focus {
  --gradient-via-color: #e2e8f0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 232, 240, 0)) !important;
}

.focus\:cl-via-gray-400:focus {
  --gradient-via-color: #cbd5e0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(203, 213, 224, 0)) !important;
}

.focus\:cl-via-gray-500:focus {
  --gradient-via-color: #a0aec0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 174, 192, 0)) !important;
}

.focus\:cl-via-gray-600:focus {
  --gradient-via-color: #718096 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(113, 128, 150, 0)) !important;
}

.focus\:cl-via-gray-700:focus {
  --gradient-via-color: #4a5568 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 85, 104, 0)) !important;
}

.focus\:cl-via-gray-800:focus {
  --gradient-via-color: #2d3748 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(45, 55, 72, 0)) !important;
}

.focus\:cl-via-gray-900:focus {
  --gradient-via-color: #1a202c !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 32, 44, 0)) !important;
}

.focus\:cl-via-red-100:focus {
  --gradient-via-color: #fff5f5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 245, 245, 0)) !important;
}

.focus\:cl-via-red-200:focus {
  --gradient-via-color: #fed7d7 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 215, 215, 0)) !important;
}

.focus\:cl-via-red-300:focus {
  --gradient-via-color: #feb2b2 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 178, 178, 0)) !important;
}

.focus\:cl-via-red-400:focus {
  --gradient-via-color: #fc8181 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(252, 129, 129, 0)) !important;
}

.focus\:cl-via-red-500:focus {
  --gradient-via-color: #f56565 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(245, 101, 101, 0)) !important;
}

.focus\:cl-via-red-600:focus {
  --gradient-via-color: #e53e3e !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(229, 62, 62, 0)) !important;
}

.focus\:cl-via-red-700:focus {
  --gradient-via-color: #c53030 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(197, 48, 48, 0)) !important;
}

.focus\:cl-via-red-800:focus {
  --gradient-via-color: #9b2c2c !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(155, 44, 44, 0)) !important;
}

.focus\:cl-via-red-900:focus {
  --gradient-via-color: #742a2a !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(116, 42, 42, 0)) !important;
}

.focus\:cl-via-orange-100:focus {
  --gradient-via-color: #fffaf0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 240, 0)) !important;
}

.focus\:cl-via-orange-200:focus {
  --gradient-via-color: #feebc8 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 235, 200, 0)) !important;
}

.focus\:cl-via-orange-300:focus {
  --gradient-via-color: #fbd38d !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 211, 141, 0)) !important;
}

.focus\:cl-via-orange-400:focus {
  --gradient-via-color: #f6ad55 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 173, 85, 0)) !important;
}

.focus\:cl-via-orange-500:focus {
  --gradient-via-color: #ed8936 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 137, 54, 0)) !important;
}

.focus\:cl-via-orange-600:focus {
  --gradient-via-color: #dd6b20 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(221, 107, 32, 0)) !important;
}

.focus\:cl-via-orange-700:focus {
  --gradient-via-color: #c05621 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(192, 86, 33, 0)) !important;
}

.focus\:cl-via-orange-800:focus {
  --gradient-via-color: #9c4221 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 66, 33, 0)) !important;
}

.focus\:cl-via-orange-900:focus {
  --gradient-via-color: #7b341e !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(123, 52, 30, 0)) !important;
}

.focus\:cl-via-yellow-100:focus {
  --gradient-via-color: #fffff0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 240, 0)) !important;
}

.focus\:cl-via-yellow-200:focus {
  --gradient-via-color: #fefcbf !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 252, 191, 0)) !important;
}

.focus\:cl-via-yellow-300:focus {
  --gradient-via-color: #faf089 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 240, 137, 0)) !important;
}

.focus\:cl-via-yellow-400:focus {
  --gradient-via-color: #f6e05e !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 224, 94, 0)) !important;
}

.focus\:cl-via-yellow-500:focus {
  --gradient-via-color: #ecc94b !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 201, 75, 0)) !important;
}

.focus\:cl-via-yellow-600:focus {
  --gradient-via-color: #d69e2e !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(214, 158, 46, 0)) !important;
}

.focus\:cl-via-yellow-700:focus {
  --gradient-via-color: #b7791f !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(183, 121, 31, 0)) !important;
}

.focus\:cl-via-yellow-800:focus {
  --gradient-via-color: #975a16 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(151, 90, 22, 0)) !important;
}

.focus\:cl-via-yellow-900:focus {
  --gradient-via-color: #744210 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(116, 66, 16, 0)) !important;
}

.focus\:cl-via-green-100:focus {
  --gradient-via-color: #f0fff4 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(240, 255, 244, 0)) !important;
}

.focus\:cl-via-green-200:focus {
  --gradient-via-color: #c6f6d5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(198, 246, 213, 0)) !important;
}

.focus\:cl-via-green-300:focus {
  --gradient-via-color: #9ae6b4 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 230, 180, 0)) !important;
}

.focus\:cl-via-green-400:focus {
  --gradient-via-color: #68d391 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(104, 211, 145, 0)) !important;
}

.focus\:cl-via-green-500:focus {
  --gradient-via-color: #48bb78 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(72, 187, 120, 0)) !important;
}

.focus\:cl-via-green-600:focus {
  --gradient-via-color: #38a169 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(56, 161, 105, 0)) !important;
}

.focus\:cl-via-green-700:focus {
  --gradient-via-color: #2f855a !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(47, 133, 90, 0)) !important;
}

.focus\:cl-via-green-800:focus {
  --gradient-via-color: #276749 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(39, 103, 73, 0)) !important;
}

.focus\:cl-via-green-900:focus {
  --gradient-via-color: #22543d !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(34, 84, 61, 0)) !important;
}

.focus\:cl-via-teal-100:focus {
  --gradient-via-color: #e6fffa !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 255, 250, 0)) !important;
}

.focus\:cl-via-teal-200:focus {
  --gradient-via-color: #b2f5ea !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(178, 245, 234, 0)) !important;
}

.focus\:cl-via-teal-300:focus {
  --gradient-via-color: #81e6d9 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(129, 230, 217, 0)) !important;
}

.focus\:cl-via-teal-400:focus {
  --gradient-via-color: #4fd1c5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(79, 209, 197, 0)) !important;
}

.focus\:cl-via-teal-500:focus {
  --gradient-via-color: #38b2ac !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(56, 178, 172, 0)) !important;
}

.focus\:cl-via-teal-600:focus {
  --gradient-via-color: #319795 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(49, 151, 149, 0)) !important;
}

.focus\:cl-via-teal-700:focus {
  --gradient-via-color: #2c7a7b !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(44, 122, 123, 0)) !important;
}

.focus\:cl-via-teal-800:focus {
  --gradient-via-color: #285e61 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(40, 94, 97, 0)) !important;
}

.focus\:cl-via-teal-900:focus {
  --gradient-via-color: #234e52 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(35, 78, 82, 0)) !important;
}

.focus\:cl-via-blue-100:focus {
  --gradient-via-color: #ebf8ff !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(235, 248, 255, 0)) !important;
}

.focus\:cl-via-blue-200:focus {
  --gradient-via-color: #bee3f8 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(190, 227, 248, 0)) !important;
}

.focus\:cl-via-blue-300:focus {
  --gradient-via-color: #90cdf4 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 205, 244, 0)) !important;
}

.focus\:cl-via-blue-400:focus {
  --gradient-via-color: #63b3ed !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(99, 179, 237, 0)) !important;
}

.focus\:cl-via-blue-500:focus {
  --gradient-via-color: #4299e1 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 153, 225, 0)) !important;
}

.focus\:cl-via-blue-600:focus {
  --gradient-via-color: #3182ce !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(49, 130, 206, 0)) !important;
}

.focus\:cl-via-blue-700:focus {
  --gradient-via-color: #2b6cb0 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(43, 108, 176, 0)) !important;
}

.focus\:cl-via-blue-800:focus {
  --gradient-via-color: #2c5282 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(44, 82, 130, 0)) !important;
}

.focus\:cl-via-blue-900:focus {
  --gradient-via-color: #2a4365 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(42, 67, 101, 0)) !important;
}

.focus\:cl-via-indigo-100:focus {
  --gradient-via-color: #ebf4ff !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(235, 244, 255, 0)) !important;
}

.focus\:cl-via-indigo-200:focus {
  --gradient-via-color: #c3dafe !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(195, 218, 254, 0)) !important;
}

.focus\:cl-via-indigo-300:focus {
  --gradient-via-color: #a3bffa !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(163, 191, 250, 0)) !important;
}

.focus\:cl-via-indigo-400:focus {
  --gradient-via-color: #7f9cf5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(127, 156, 245, 0)) !important;
}

.focus\:cl-via-indigo-500:focus {
  --gradient-via-color: #667eea !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 126, 234, 0)) !important;
}

.focus\:cl-via-indigo-600:focus {
  --gradient-via-color: #5a67d8 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 103, 216, 0)) !important;
}

.focus\:cl-via-indigo-700:focus {
  --gradient-via-color: #4c51bf !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(76, 81, 191, 0)) !important;
}

.focus\:cl-via-indigo-800:focus {
  --gradient-via-color: #434190 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(67, 65, 144, 0)) !important;
}

.focus\:cl-via-indigo-900:focus {
  --gradient-via-color: #3c366b !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(60, 54, 107, 0)) !important;
}

.focus\:cl-via-purple-100:focus {
  --gradient-via-color: #faf5ff !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 245, 255, 0)) !important;
}

.focus\:cl-via-purple-200:focus {
  --gradient-via-color: #e9d8fd !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(233, 216, 253, 0)) !important;
}

.focus\:cl-via-purple-300:focus {
  --gradient-via-color: #d6bcfa !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(214, 188, 250, 0)) !important;
}

.focus\:cl-via-purple-400:focus {
  --gradient-via-color: #b794f4 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(183, 148, 244, 0)) !important;
}

.focus\:cl-via-purple-500:focus {
  --gradient-via-color: #9f7aea !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(159, 122, 234, 0)) !important;
}

.focus\:cl-via-purple-600:focus {
  --gradient-via-color: #805ad5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(128, 90, 213, 0)) !important;
}

.focus\:cl-via-purple-700:focus {
  --gradient-via-color: #6b46c1 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(107, 70, 193, 0)) !important;
}

.focus\:cl-via-purple-800:focus {
  --gradient-via-color: #553c9a !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(85, 60, 154, 0)) !important;
}

.focus\:cl-via-purple-900:focus {
  --gradient-via-color: #44337a !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(68, 51, 122, 0)) !important;
}

.focus\:cl-via-pink-100:focus {
  --gradient-via-color: #fff5f7 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 245, 247, 0)) !important;
}

.focus\:cl-via-pink-200:focus {
  --gradient-via-color: #fed7e2 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 215, 226, 0)) !important;
}

.focus\:cl-via-pink-300:focus {
  --gradient-via-color: #fbb6ce !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 182, 206, 0)) !important;
}

.focus\:cl-via-pink-400:focus {
  --gradient-via-color: #f687b3 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 135, 179, 0)) !important;
}

.focus\:cl-via-pink-500:focus {
  --gradient-via-color: #ed64a6 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 100, 166, 0)) !important;
}

.focus\:cl-via-pink-600:focus {
  --gradient-via-color: #d53f8c !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(213, 63, 140, 0)) !important;
}

.focus\:cl-via-pink-700:focus {
  --gradient-via-color: #b83280 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(184, 50, 128, 0)) !important;
}

.focus\:cl-via-pink-800:focus {
  --gradient-via-color: #97266d !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(151, 38, 109, 0)) !important;
}

.focus\:cl-via-pink-900:focus {
  --gradient-via-color: #702459 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(112, 36, 89, 0)) !important;
}

.focus\:cl-via-ui-gray-100:focus {
  --gradient-via-color: #f1f1f1 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(241, 241, 241, 0)) !important;
}

.focus\:cl-via-ui-brown-100:focus {
  --gradient-via-color: #f3ecdc !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(243, 236, 220, 0)) !important;
}

.focus\:cl-via-ui-brown-200:focus {
  --gradient-via-color: #e8e0c9 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(232, 224, 201, 0)) !important;
}

.focus\:cl-via-ui-brown-300:focus {
  --gradient-via-color: #d0c095 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(208, 192, 149, 0)) !important;
}

.focus\:cl-via-ui-brown-700:focus {
  --gradient-via-color: #bd6005 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(189, 96, 5, 0)) !important;
}

.focus\:cl-via-ui-green-300:focus {
  --gradient-via-color: #aac74c !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(170, 199, 76, 0)) !important;
}

.focus\:cl-via-ui-green-400:focus {
  --gradient-via-color: #71893e !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(113, 137, 62, 0)) !important;
}

.focus\:cl-via-ui-orange-500:focus {
  --gradient-via-color: #e27212 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 114, 18, 0)) !important;
}

.focus\:cl-via-facebook:focus {
  --gradient-via-color: #3b5998 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(59, 89, 152, 0)) !important;
}

.focus\:cl-via-twitter:focus {
  --gradient-via-color: #00acee !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 172, 238, 0)) !important;
}

.focus\:cl-via-twitch:focus {
  --gradient-via-color: #6441a5 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 65, 165, 0)) !important;
}

.focus\:cl-via-youtube:focus {
  --gradient-via-color: #FF0000 !important;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 0, 0, 0)) !important;
}

.focus\:cl-to-transparent:focus {
  --gradient-to-color: transparent !important;
}

.focus\:cl-to-current:focus {
  --gradient-to-color: currentColor !important;
}

.focus\:cl-to-black:focus {
  --gradient-to-color: #000 !important;
}

.focus\:cl-to-white:focus {
  --gradient-to-color: #fff !important;
}

.focus\:cl-to-gray-100:focus {
  --gradient-to-color: #f7fafc !important;
}

.focus\:cl-to-gray-200:focus {
  --gradient-to-color: #edf2f7 !important;
}

.focus\:cl-to-gray-300:focus {
  --gradient-to-color: #e2e8f0 !important;
}

.focus\:cl-to-gray-400:focus {
  --gradient-to-color: #cbd5e0 !important;
}

.focus\:cl-to-gray-500:focus {
  --gradient-to-color: #a0aec0 !important;
}

.focus\:cl-to-gray-600:focus {
  --gradient-to-color: #718096 !important;
}

.focus\:cl-to-gray-700:focus {
  --gradient-to-color: #4a5568 !important;
}

.focus\:cl-to-gray-800:focus {
  --gradient-to-color: #2d3748 !important;
}

.focus\:cl-to-gray-900:focus {
  --gradient-to-color: #1a202c !important;
}

.focus\:cl-to-red-100:focus {
  --gradient-to-color: #fff5f5 !important;
}

.focus\:cl-to-red-200:focus {
  --gradient-to-color: #fed7d7 !important;
}

.focus\:cl-to-red-300:focus {
  --gradient-to-color: #feb2b2 !important;
}

.focus\:cl-to-red-400:focus {
  --gradient-to-color: #fc8181 !important;
}

.focus\:cl-to-red-500:focus {
  --gradient-to-color: #f56565 !important;
}

.focus\:cl-to-red-600:focus {
  --gradient-to-color: #e53e3e !important;
}

.focus\:cl-to-red-700:focus {
  --gradient-to-color: #c53030 !important;
}

.focus\:cl-to-red-800:focus {
  --gradient-to-color: #9b2c2c !important;
}

.focus\:cl-to-red-900:focus {
  --gradient-to-color: #742a2a !important;
}

.focus\:cl-to-orange-100:focus {
  --gradient-to-color: #fffaf0 !important;
}

.focus\:cl-to-orange-200:focus {
  --gradient-to-color: #feebc8 !important;
}

.focus\:cl-to-orange-300:focus {
  --gradient-to-color: #fbd38d !important;
}

.focus\:cl-to-orange-400:focus {
  --gradient-to-color: #f6ad55 !important;
}

.focus\:cl-to-orange-500:focus {
  --gradient-to-color: #ed8936 !important;
}

.focus\:cl-to-orange-600:focus {
  --gradient-to-color: #dd6b20 !important;
}

.focus\:cl-to-orange-700:focus {
  --gradient-to-color: #c05621 !important;
}

.focus\:cl-to-orange-800:focus {
  --gradient-to-color: #9c4221 !important;
}

.focus\:cl-to-orange-900:focus {
  --gradient-to-color: #7b341e !important;
}

.focus\:cl-to-yellow-100:focus {
  --gradient-to-color: #fffff0 !important;
}

.focus\:cl-to-yellow-200:focus {
  --gradient-to-color: #fefcbf !important;
}

.focus\:cl-to-yellow-300:focus {
  --gradient-to-color: #faf089 !important;
}

.focus\:cl-to-yellow-400:focus {
  --gradient-to-color: #f6e05e !important;
}

.focus\:cl-to-yellow-500:focus {
  --gradient-to-color: #ecc94b !important;
}

.focus\:cl-to-yellow-600:focus {
  --gradient-to-color: #d69e2e !important;
}

.focus\:cl-to-yellow-700:focus {
  --gradient-to-color: #b7791f !important;
}

.focus\:cl-to-yellow-800:focus {
  --gradient-to-color: #975a16 !important;
}

.focus\:cl-to-yellow-900:focus {
  --gradient-to-color: #744210 !important;
}

.focus\:cl-to-green-100:focus {
  --gradient-to-color: #f0fff4 !important;
}

.focus\:cl-to-green-200:focus {
  --gradient-to-color: #c6f6d5 !important;
}

.focus\:cl-to-green-300:focus {
  --gradient-to-color: #9ae6b4 !important;
}

.focus\:cl-to-green-400:focus {
  --gradient-to-color: #68d391 !important;
}

.focus\:cl-to-green-500:focus {
  --gradient-to-color: #48bb78 !important;
}

.focus\:cl-to-green-600:focus {
  --gradient-to-color: #38a169 !important;
}

.focus\:cl-to-green-700:focus {
  --gradient-to-color: #2f855a !important;
}

.focus\:cl-to-green-800:focus {
  --gradient-to-color: #276749 !important;
}

.focus\:cl-to-green-900:focus {
  --gradient-to-color: #22543d !important;
}

.focus\:cl-to-teal-100:focus {
  --gradient-to-color: #e6fffa !important;
}

.focus\:cl-to-teal-200:focus {
  --gradient-to-color: #b2f5ea !important;
}

.focus\:cl-to-teal-300:focus {
  --gradient-to-color: #81e6d9 !important;
}

.focus\:cl-to-teal-400:focus {
  --gradient-to-color: #4fd1c5 !important;
}

.focus\:cl-to-teal-500:focus {
  --gradient-to-color: #38b2ac !important;
}

.focus\:cl-to-teal-600:focus {
  --gradient-to-color: #319795 !important;
}

.focus\:cl-to-teal-700:focus {
  --gradient-to-color: #2c7a7b !important;
}

.focus\:cl-to-teal-800:focus {
  --gradient-to-color: #285e61 !important;
}

.focus\:cl-to-teal-900:focus {
  --gradient-to-color: #234e52 !important;
}

.focus\:cl-to-blue-100:focus {
  --gradient-to-color: #ebf8ff !important;
}

.focus\:cl-to-blue-200:focus {
  --gradient-to-color: #bee3f8 !important;
}

.focus\:cl-to-blue-300:focus {
  --gradient-to-color: #90cdf4 !important;
}

.focus\:cl-to-blue-400:focus {
  --gradient-to-color: #63b3ed !important;
}

.focus\:cl-to-blue-500:focus {
  --gradient-to-color: #4299e1 !important;
}

.focus\:cl-to-blue-600:focus {
  --gradient-to-color: #3182ce !important;
}

.focus\:cl-to-blue-700:focus {
  --gradient-to-color: #2b6cb0 !important;
}

.focus\:cl-to-blue-800:focus {
  --gradient-to-color: #2c5282 !important;
}

.focus\:cl-to-blue-900:focus {
  --gradient-to-color: #2a4365 !important;
}

.focus\:cl-to-indigo-100:focus {
  --gradient-to-color: #ebf4ff !important;
}

.focus\:cl-to-indigo-200:focus {
  --gradient-to-color: #c3dafe !important;
}

.focus\:cl-to-indigo-300:focus {
  --gradient-to-color: #a3bffa !important;
}

.focus\:cl-to-indigo-400:focus {
  --gradient-to-color: #7f9cf5 !important;
}

.focus\:cl-to-indigo-500:focus {
  --gradient-to-color: #667eea !important;
}

.focus\:cl-to-indigo-600:focus {
  --gradient-to-color: #5a67d8 !important;
}

.focus\:cl-to-indigo-700:focus {
  --gradient-to-color: #4c51bf !important;
}

.focus\:cl-to-indigo-800:focus {
  --gradient-to-color: #434190 !important;
}

.focus\:cl-to-indigo-900:focus {
  --gradient-to-color: #3c366b !important;
}

.focus\:cl-to-purple-100:focus {
  --gradient-to-color: #faf5ff !important;
}

.focus\:cl-to-purple-200:focus {
  --gradient-to-color: #e9d8fd !important;
}

.focus\:cl-to-purple-300:focus {
  --gradient-to-color: #d6bcfa !important;
}

.focus\:cl-to-purple-400:focus {
  --gradient-to-color: #b794f4 !important;
}

.focus\:cl-to-purple-500:focus {
  --gradient-to-color: #9f7aea !important;
}

.focus\:cl-to-purple-600:focus {
  --gradient-to-color: #805ad5 !important;
}

.focus\:cl-to-purple-700:focus {
  --gradient-to-color: #6b46c1 !important;
}

.focus\:cl-to-purple-800:focus {
  --gradient-to-color: #553c9a !important;
}

.focus\:cl-to-purple-900:focus {
  --gradient-to-color: #44337a !important;
}

.focus\:cl-to-pink-100:focus {
  --gradient-to-color: #fff5f7 !important;
}

.focus\:cl-to-pink-200:focus {
  --gradient-to-color: #fed7e2 !important;
}

.focus\:cl-to-pink-300:focus {
  --gradient-to-color: #fbb6ce !important;
}

.focus\:cl-to-pink-400:focus {
  --gradient-to-color: #f687b3 !important;
}

.focus\:cl-to-pink-500:focus {
  --gradient-to-color: #ed64a6 !important;
}

.focus\:cl-to-pink-600:focus {
  --gradient-to-color: #d53f8c !important;
}

.focus\:cl-to-pink-700:focus {
  --gradient-to-color: #b83280 !important;
}

.focus\:cl-to-pink-800:focus {
  --gradient-to-color: #97266d !important;
}

.focus\:cl-to-pink-900:focus {
  --gradient-to-color: #702459 !important;
}

.focus\:cl-to-ui-gray-100:focus {
  --gradient-to-color: #f1f1f1 !important;
}

.focus\:cl-to-ui-brown-100:focus {
  --gradient-to-color: #f3ecdc !important;
}

.focus\:cl-to-ui-brown-200:focus {
  --gradient-to-color: #e8e0c9 !important;
}

.focus\:cl-to-ui-brown-300:focus {
  --gradient-to-color: #d0c095 !important;
}

.focus\:cl-to-ui-brown-700:focus {
  --gradient-to-color: #bd6005 !important;
}

.focus\:cl-to-ui-green-300:focus {
  --gradient-to-color: #aac74c !important;
}

.focus\:cl-to-ui-green-400:focus {
  --gradient-to-color: #71893e !important;
}

.focus\:cl-to-ui-orange-500:focus {
  --gradient-to-color: #e27212 !important;
}

.focus\:cl-to-facebook:focus {
  --gradient-to-color: #3b5998 !important;
}

.focus\:cl-to-twitter:focus {
  --gradient-to-color: #00acee !important;
}

.focus\:cl-to-twitch:focus {
  --gradient-to-color: #6441a5 !important;
}

.focus\:cl-to-youtube:focus {
  --gradient-to-color: #FF0000 !important;
}

.cl-bg-opacity-0 {
  --bg-opacity: 0 !important;
}

.cl-bg-opacity-25 {
  --bg-opacity: 0.25 !important;
}

.cl-bg-opacity-50 {
  --bg-opacity: 0.5 !important;
}

.cl-bg-opacity-75 {
  --bg-opacity: 0.75 !important;
}

.cl-bg-opacity-100 {
  --bg-opacity: 1 !important;
}

.hover\:cl-bg-opacity-0:hover {
  --bg-opacity: 0 !important;
}

.hover\:cl-bg-opacity-25:hover {
  --bg-opacity: 0.25 !important;
}

.hover\:cl-bg-opacity-50:hover {
  --bg-opacity: 0.5 !important;
}

.hover\:cl-bg-opacity-75:hover {
  --bg-opacity: 0.75 !important;
}

.hover\:cl-bg-opacity-100:hover {
  --bg-opacity: 1 !important;
}

.focus\:cl-bg-opacity-0:focus {
  --bg-opacity: 0 !important;
}

.focus\:cl-bg-opacity-25:focus {
  --bg-opacity: 0.25 !important;
}

.focus\:cl-bg-opacity-50:focus {
  --bg-opacity: 0.5 !important;
}

.focus\:cl-bg-opacity-75:focus {
  --bg-opacity: 0.75 !important;
}

.focus\:cl-bg-opacity-100:focus {
  --bg-opacity: 1 !important;
}

.cl-bg-bottom {
  background-position: bottom !important;
}

.cl-bg-center {
  background-position: center !important;
}

.cl-bg-left {
  background-position: left !important;
}

.cl-bg-left-bottom {
  background-position: left bottom !important;
}

.cl-bg-left-top {
  background-position: left top !important;
}

.cl-bg-right {
  background-position: right !important;
}

.cl-bg-right-bottom {
  background-position: right bottom !important;
}

.cl-bg-right-top {
  background-position: right top !important;
}

.cl-bg-top {
  background-position: top !important;
}

.cl-bg-repeat {
  background-repeat: repeat !important;
}

.cl-bg-no-repeat {
  background-repeat: no-repeat !important;
}

.cl-bg-repeat-x {
  background-repeat: repeat-x !important;
}

.cl-bg-repeat-y {
  background-repeat: repeat-y !important;
}

.cl-bg-repeat-round {
  background-repeat: round !important;
}

.cl-bg-repeat-space {
  background-repeat: space !important;
}

.cl-bg-auto {
  background-size: auto !important;
}

.cl-bg-cover {
  background-size: cover !important;
}

.cl-bg-contain {
  background-size: contain !important;
}

.cl-border-collapse {
  border-collapse: collapse !important;
}

.cl-border-separate {
  border-collapse: separate !important;
}

.cl-border-transparent {
  border-color: transparent !important;
}

.cl-border-current {
  border-color: currentColor !important;
}

.cl-border-black {
  --border-opacity: 1 !important;
  border-color: #000 !important;
  border-color: rgba(0, 0, 0, var(--border-opacity)) !important;
}

.cl-border-white {
  --border-opacity: 1 !important;
  border-color: #fff !important;
  border-color: rgba(255, 255, 255, var(--border-opacity)) !important;
}

.cl-border-gray-100 {
  --border-opacity: 1 !important;
  border-color: #f7fafc !important;
  border-color: rgba(247, 250, 252, var(--border-opacity)) !important;
}

.cl-border-gray-200 {
  --border-opacity: 1 !important;
  border-color: #edf2f7 !important;
  border-color: rgba(237, 242, 247, var(--border-opacity)) !important;
}

.cl-border-gray-300 {
  --border-opacity: 1 !important;
  border-color: #e2e8f0 !important;
  border-color: rgba(226, 232, 240, var(--border-opacity)) !important;
}

.cl-border-gray-400 {
  --border-opacity: 1 !important;
  border-color: #cbd5e0 !important;
  border-color: rgba(203, 213, 224, var(--border-opacity)) !important;
}

.cl-border-gray-500 {
  --border-opacity: 1 !important;
  border-color: #a0aec0 !important;
  border-color: rgba(160, 174, 192, var(--border-opacity)) !important;
}

.cl-border-gray-600 {
  --border-opacity: 1 !important;
  border-color: #718096 !important;
  border-color: rgba(113, 128, 150, var(--border-opacity)) !important;
}

.cl-border-gray-700 {
  --border-opacity: 1 !important;
  border-color: #4a5568 !important;
  border-color: rgba(74, 85, 104, var(--border-opacity)) !important;
}

.cl-border-gray-800 {
  --border-opacity: 1 !important;
  border-color: #2d3748 !important;
  border-color: rgba(45, 55, 72, var(--border-opacity)) !important;
}

.cl-border-gray-900 {
  --border-opacity: 1 !important;
  border-color: #1a202c !important;
  border-color: rgba(26, 32, 44, var(--border-opacity)) !important;
}

.cl-border-red-100 {
  --border-opacity: 1 !important;
  border-color: #fff5f5 !important;
  border-color: rgba(255, 245, 245, var(--border-opacity)) !important;
}

.cl-border-red-200 {
  --border-opacity: 1 !important;
  border-color: #fed7d7 !important;
  border-color: rgba(254, 215, 215, var(--border-opacity)) !important;
}

.cl-border-red-300 {
  --border-opacity: 1 !important;
  border-color: #feb2b2 !important;
  border-color: rgba(254, 178, 178, var(--border-opacity)) !important;
}

.cl-border-red-400 {
  --border-opacity: 1 !important;
  border-color: #fc8181 !important;
  border-color: rgba(252, 129, 129, var(--border-opacity)) !important;
}

.cl-border-red-500 {
  --border-opacity: 1 !important;
  border-color: #f56565 !important;
  border-color: rgba(245, 101, 101, var(--border-opacity)) !important;
}

.cl-border-red-600 {
  --border-opacity: 1 !important;
  border-color: #e53e3e !important;
  border-color: rgba(229, 62, 62, var(--border-opacity)) !important;
}

.cl-border-red-700 {
  --border-opacity: 1 !important;
  border-color: #c53030 !important;
  border-color: rgba(197, 48, 48, var(--border-opacity)) !important;
}

.cl-border-red-800 {
  --border-opacity: 1 !important;
  border-color: #9b2c2c !important;
  border-color: rgba(155, 44, 44, var(--border-opacity)) !important;
}

.cl-border-red-900 {
  --border-opacity: 1 !important;
  border-color: #742a2a !important;
  border-color: rgba(116, 42, 42, var(--border-opacity)) !important;
}

.cl-border-orange-100 {
  --border-opacity: 1 !important;
  border-color: #fffaf0 !important;
  border-color: rgba(255, 250, 240, var(--border-opacity)) !important;
}

.cl-border-orange-200 {
  --border-opacity: 1 !important;
  border-color: #feebc8 !important;
  border-color: rgba(254, 235, 200, var(--border-opacity)) !important;
}

.cl-border-orange-300 {
  --border-opacity: 1 !important;
  border-color: #fbd38d !important;
  border-color: rgba(251, 211, 141, var(--border-opacity)) !important;
}

.cl-border-orange-400 {
  --border-opacity: 1 !important;
  border-color: #f6ad55 !important;
  border-color: rgba(246, 173, 85, var(--border-opacity)) !important;
}

.cl-border-orange-500 {
  --border-opacity: 1 !important;
  border-color: #ed8936 !important;
  border-color: rgba(237, 137, 54, var(--border-opacity)) !important;
}

.cl-border-orange-600 {
  --border-opacity: 1 !important;
  border-color: #dd6b20 !important;
  border-color: rgba(221, 107, 32, var(--border-opacity)) !important;
}

.cl-border-orange-700 {
  --border-opacity: 1 !important;
  border-color: #c05621 !important;
  border-color: rgba(192, 86, 33, var(--border-opacity)) !important;
}

.cl-border-orange-800 {
  --border-opacity: 1 !important;
  border-color: #9c4221 !important;
  border-color: rgba(156, 66, 33, var(--border-opacity)) !important;
}

.cl-border-orange-900 {
  --border-opacity: 1 !important;
  border-color: #7b341e !important;
  border-color: rgba(123, 52, 30, var(--border-opacity)) !important;
}

.cl-border-yellow-100 {
  --border-opacity: 1 !important;
  border-color: #fffff0 !important;
  border-color: rgba(255, 255, 240, var(--border-opacity)) !important;
}

.cl-border-yellow-200 {
  --border-opacity: 1 !important;
  border-color: #fefcbf !important;
  border-color: rgba(254, 252, 191, var(--border-opacity)) !important;
}

.cl-border-yellow-300 {
  --border-opacity: 1 !important;
  border-color: #faf089 !important;
  border-color: rgba(250, 240, 137, var(--border-opacity)) !important;
}

.cl-border-yellow-400 {
  --border-opacity: 1 !important;
  border-color: #f6e05e !important;
  border-color: rgba(246, 224, 94, var(--border-opacity)) !important;
}

.cl-border-yellow-500 {
  --border-opacity: 1 !important;
  border-color: #ecc94b !important;
  border-color: rgba(236, 201, 75, var(--border-opacity)) !important;
}

.cl-border-yellow-600 {
  --border-opacity: 1 !important;
  border-color: #d69e2e !important;
  border-color: rgba(214, 158, 46, var(--border-opacity)) !important;
}

.cl-border-yellow-700 {
  --border-opacity: 1 !important;
  border-color: #b7791f !important;
  border-color: rgba(183, 121, 31, var(--border-opacity)) !important;
}

.cl-border-yellow-800 {
  --border-opacity: 1 !important;
  border-color: #975a16 !important;
  border-color: rgba(151, 90, 22, var(--border-opacity)) !important;
}

.cl-border-yellow-900 {
  --border-opacity: 1 !important;
  border-color: #744210 !important;
  border-color: rgba(116, 66, 16, var(--border-opacity)) !important;
}

.cl-border-green-100 {
  --border-opacity: 1 !important;
  border-color: #f0fff4 !important;
  border-color: rgba(240, 255, 244, var(--border-opacity)) !important;
}

.cl-border-green-200 {
  --border-opacity: 1 !important;
  border-color: #c6f6d5 !important;
  border-color: rgba(198, 246, 213, var(--border-opacity)) !important;
}

.cl-border-green-300 {
  --border-opacity: 1 !important;
  border-color: #9ae6b4 !important;
  border-color: rgba(154, 230, 180, var(--border-opacity)) !important;
}

.cl-border-green-400 {
  --border-opacity: 1 !important;
  border-color: #68d391 !important;
  border-color: rgba(104, 211, 145, var(--border-opacity)) !important;
}

.cl-border-green-500 {
  --border-opacity: 1 !important;
  border-color: #48bb78 !important;
  border-color: rgba(72, 187, 120, var(--border-opacity)) !important;
}

.cl-border-green-600 {
  --border-opacity: 1 !important;
  border-color: #38a169 !important;
  border-color: rgba(56, 161, 105, var(--border-opacity)) !important;
}

.cl-border-green-700 {
  --border-opacity: 1 !important;
  border-color: #2f855a !important;
  border-color: rgba(47, 133, 90, var(--border-opacity)) !important;
}

.cl-border-green-800 {
  --border-opacity: 1 !important;
  border-color: #276749 !important;
  border-color: rgba(39, 103, 73, var(--border-opacity)) !important;
}

.cl-border-green-900 {
  --border-opacity: 1 !important;
  border-color: #22543d !important;
  border-color: rgba(34, 84, 61, var(--border-opacity)) !important;
}

.cl-border-teal-100 {
  --border-opacity: 1 !important;
  border-color: #e6fffa !important;
  border-color: rgba(230, 255, 250, var(--border-opacity)) !important;
}

.cl-border-teal-200 {
  --border-opacity: 1 !important;
  border-color: #b2f5ea !important;
  border-color: rgba(178, 245, 234, var(--border-opacity)) !important;
}

.cl-border-teal-300 {
  --border-opacity: 1 !important;
  border-color: #81e6d9 !important;
  border-color: rgba(129, 230, 217, var(--border-opacity)) !important;
}

.cl-border-teal-400 {
  --border-opacity: 1 !important;
  border-color: #4fd1c5 !important;
  border-color: rgba(79, 209, 197, var(--border-opacity)) !important;
}

.cl-border-teal-500 {
  --border-opacity: 1 !important;
  border-color: #38b2ac !important;
  border-color: rgba(56, 178, 172, var(--border-opacity)) !important;
}

.cl-border-teal-600 {
  --border-opacity: 1 !important;
  border-color: #319795 !important;
  border-color: rgba(49, 151, 149, var(--border-opacity)) !important;
}

.cl-border-teal-700 {
  --border-opacity: 1 !important;
  border-color: #2c7a7b !important;
  border-color: rgba(44, 122, 123, var(--border-opacity)) !important;
}

.cl-border-teal-800 {
  --border-opacity: 1 !important;
  border-color: #285e61 !important;
  border-color: rgba(40, 94, 97, var(--border-opacity)) !important;
}

.cl-border-teal-900 {
  --border-opacity: 1 !important;
  border-color: #234e52 !important;
  border-color: rgba(35, 78, 82, var(--border-opacity)) !important;
}

.cl-border-blue-100 {
  --border-opacity: 1 !important;
  border-color: #ebf8ff !important;
  border-color: rgba(235, 248, 255, var(--border-opacity)) !important;
}

.cl-border-blue-200 {
  --border-opacity: 1 !important;
  border-color: #bee3f8 !important;
  border-color: rgba(190, 227, 248, var(--border-opacity)) !important;
}

.cl-border-blue-300 {
  --border-opacity: 1 !important;
  border-color: #90cdf4 !important;
  border-color: rgba(144, 205, 244, var(--border-opacity)) !important;
}

.cl-border-blue-400 {
  --border-opacity: 1 !important;
  border-color: #63b3ed !important;
  border-color: rgba(99, 179, 237, var(--border-opacity)) !important;
}

.cl-border-blue-500 {
  --border-opacity: 1 !important;
  border-color: #4299e1 !important;
  border-color: rgba(66, 153, 225, var(--border-opacity)) !important;
}

.cl-border-blue-600 {
  --border-opacity: 1 !important;
  border-color: #3182ce !important;
  border-color: rgba(49, 130, 206, var(--border-opacity)) !important;
}

.cl-border-blue-700 {
  --border-opacity: 1 !important;
  border-color: #2b6cb0 !important;
  border-color: rgba(43, 108, 176, var(--border-opacity)) !important;
}

.cl-border-blue-800 {
  --border-opacity: 1 !important;
  border-color: #2c5282 !important;
  border-color: rgba(44, 82, 130, var(--border-opacity)) !important;
}

.cl-border-blue-900 {
  --border-opacity: 1 !important;
  border-color: #2a4365 !important;
  border-color: rgba(42, 67, 101, var(--border-opacity)) !important;
}

.cl-border-indigo-100 {
  --border-opacity: 1 !important;
  border-color: #ebf4ff !important;
  border-color: rgba(235, 244, 255, var(--border-opacity)) !important;
}

.cl-border-indigo-200 {
  --border-opacity: 1 !important;
  border-color: #c3dafe !important;
  border-color: rgba(195, 218, 254, var(--border-opacity)) !important;
}

.cl-border-indigo-300 {
  --border-opacity: 1 !important;
  border-color: #a3bffa !important;
  border-color: rgba(163, 191, 250, var(--border-opacity)) !important;
}

.cl-border-indigo-400 {
  --border-opacity: 1 !important;
  border-color: #7f9cf5 !important;
  border-color: rgba(127, 156, 245, var(--border-opacity)) !important;
}

.cl-border-indigo-500 {
  --border-opacity: 1 !important;
  border-color: #667eea !important;
  border-color: rgba(102, 126, 234, var(--border-opacity)) !important;
}

.cl-border-indigo-600 {
  --border-opacity: 1 !important;
  border-color: #5a67d8 !important;
  border-color: rgba(90, 103, 216, var(--border-opacity)) !important;
}

.cl-border-indigo-700 {
  --border-opacity: 1 !important;
  border-color: #4c51bf !important;
  border-color: rgba(76, 81, 191, var(--border-opacity)) !important;
}

.cl-border-indigo-800 {
  --border-opacity: 1 !important;
  border-color: #434190 !important;
  border-color: rgba(67, 65, 144, var(--border-opacity)) !important;
}

.cl-border-indigo-900 {
  --border-opacity: 1 !important;
  border-color: #3c366b !important;
  border-color: rgba(60, 54, 107, var(--border-opacity)) !important;
}

.cl-border-purple-100 {
  --border-opacity: 1 !important;
  border-color: #faf5ff !important;
  border-color: rgba(250, 245, 255, var(--border-opacity)) !important;
}

.cl-border-purple-200 {
  --border-opacity: 1 !important;
  border-color: #e9d8fd !important;
  border-color: rgba(233, 216, 253, var(--border-opacity)) !important;
}

.cl-border-purple-300 {
  --border-opacity: 1 !important;
  border-color: #d6bcfa !important;
  border-color: rgba(214, 188, 250, var(--border-opacity)) !important;
}

.cl-border-purple-400 {
  --border-opacity: 1 !important;
  border-color: #b794f4 !important;
  border-color: rgba(183, 148, 244, var(--border-opacity)) !important;
}

.cl-border-purple-500 {
  --border-opacity: 1 !important;
  border-color: #9f7aea !important;
  border-color: rgba(159, 122, 234, var(--border-opacity)) !important;
}

.cl-border-purple-600 {
  --border-opacity: 1 !important;
  border-color: #805ad5 !important;
  border-color: rgba(128, 90, 213, var(--border-opacity)) !important;
}

.cl-border-purple-700 {
  --border-opacity: 1 !important;
  border-color: #6b46c1 !important;
  border-color: rgba(107, 70, 193, var(--border-opacity)) !important;
}

.cl-border-purple-800 {
  --border-opacity: 1 !important;
  border-color: #553c9a !important;
  border-color: rgba(85, 60, 154, var(--border-opacity)) !important;
}

.cl-border-purple-900 {
  --border-opacity: 1 !important;
  border-color: #44337a !important;
  border-color: rgba(68, 51, 122, var(--border-opacity)) !important;
}

.cl-border-pink-100 {
  --border-opacity: 1 !important;
  border-color: #fff5f7 !important;
  border-color: rgba(255, 245, 247, var(--border-opacity)) !important;
}

.cl-border-pink-200 {
  --border-opacity: 1 !important;
  border-color: #fed7e2 !important;
  border-color: rgba(254, 215, 226, var(--border-opacity)) !important;
}

.cl-border-pink-300 {
  --border-opacity: 1 !important;
  border-color: #fbb6ce !important;
  border-color: rgba(251, 182, 206, var(--border-opacity)) !important;
}

.cl-border-pink-400 {
  --border-opacity: 1 !important;
  border-color: #f687b3 !important;
  border-color: rgba(246, 135, 179, var(--border-opacity)) !important;
}

.cl-border-pink-500 {
  --border-opacity: 1 !important;
  border-color: #ed64a6 !important;
  border-color: rgba(237, 100, 166, var(--border-opacity)) !important;
}

.cl-border-pink-600 {
  --border-opacity: 1 !important;
  border-color: #d53f8c !important;
  border-color: rgba(213, 63, 140, var(--border-opacity)) !important;
}

.cl-border-pink-700 {
  --border-opacity: 1 !important;
  border-color: #b83280 !important;
  border-color: rgba(184, 50, 128, var(--border-opacity)) !important;
}

.cl-border-pink-800 {
  --border-opacity: 1 !important;
  border-color: #97266d !important;
  border-color: rgba(151, 38, 109, var(--border-opacity)) !important;
}

.cl-border-pink-900 {
  --border-opacity: 1 !important;
  border-color: #702459 !important;
  border-color: rgba(112, 36, 89, var(--border-opacity)) !important;
}

.cl-border-ui-gray-100 {
  --border-opacity: 1 !important;
  border-color: #f1f1f1 !important;
  border-color: rgba(241, 241, 241, var(--border-opacity)) !important;
}

.cl-border-ui-brown-100 {
  --border-opacity: 1 !important;
  border-color: #f3ecdc !important;
  border-color: rgba(243, 236, 220, var(--border-opacity)) !important;
}

.cl-border-ui-brown-200 {
  --border-opacity: 1 !important;
  border-color: #e8e0c9 !important;
  border-color: rgba(232, 224, 201, var(--border-opacity)) !important;
}

.cl-border-ui-brown-300 {
  --border-opacity: 1 !important;
  border-color: #d0c095 !important;
  border-color: rgba(208, 192, 149, var(--border-opacity)) !important;
}

.cl-border-ui-brown-700 {
  --border-opacity: 1 !important;
  border-color: #bd6005 !important;
  border-color: rgba(189, 96, 5, var(--border-opacity)) !important;
}

.cl-border-ui-green-300 {
  --border-opacity: 1 !important;
  border-color: #aac74c !important;
  border-color: rgba(170, 199, 76, var(--border-opacity)) !important;
}

.cl-border-ui-green-400 {
  --border-opacity: 1 !important;
  border-color: #71893e !important;
  border-color: rgba(113, 137, 62, var(--border-opacity)) !important;
}

.cl-border-ui-orange-500 {
  --border-opacity: 1 !important;
  border-color: #e27212 !important;
  border-color: rgba(226, 114, 18, var(--border-opacity)) !important;
}

.cl-border-facebook {
  --border-opacity: 1 !important;
  border-color: #3b5998 !important;
  border-color: rgba(59, 89, 152, var(--border-opacity)) !important;
}

.cl-border-twitter {
  --border-opacity: 1 !important;
  border-color: #00acee !important;
  border-color: rgba(0, 172, 238, var(--border-opacity)) !important;
}

.cl-border-twitch {
  --border-opacity: 1 !important;
  border-color: #6441a5 !important;
  border-color: rgba(100, 65, 165, var(--border-opacity)) !important;
}

.cl-border-youtube {
  --border-opacity: 1 !important;
  border-color: #FF0000 !important;
  border-color: rgba(255, 0, 0, var(--border-opacity)) !important;
}

.hover\:cl-border-transparent:hover {
  border-color: transparent !important;
}

.hover\:cl-border-current:hover {
  border-color: currentColor !important;
}

.hover\:cl-border-black:hover {
  --border-opacity: 1 !important;
  border-color: #000 !important;
  border-color: rgba(0, 0, 0, var(--border-opacity)) !important;
}

.hover\:cl-border-white:hover {
  --border-opacity: 1 !important;
  border-color: #fff !important;
  border-color: rgba(255, 255, 255, var(--border-opacity)) !important;
}

.hover\:cl-border-gray-100:hover {
  --border-opacity: 1 !important;
  border-color: #f7fafc !important;
  border-color: rgba(247, 250, 252, var(--border-opacity)) !important;
}

.hover\:cl-border-gray-200:hover {
  --border-opacity: 1 !important;
  border-color: #edf2f7 !important;
  border-color: rgba(237, 242, 247, var(--border-opacity)) !important;
}

.hover\:cl-border-gray-300:hover {
  --border-opacity: 1 !important;
  border-color: #e2e8f0 !important;
  border-color: rgba(226, 232, 240, var(--border-opacity)) !important;
}

.hover\:cl-border-gray-400:hover {
  --border-opacity: 1 !important;
  border-color: #cbd5e0 !important;
  border-color: rgba(203, 213, 224, var(--border-opacity)) !important;
}

.hover\:cl-border-gray-500:hover {
  --border-opacity: 1 !important;
  border-color: #a0aec0 !important;
  border-color: rgba(160, 174, 192, var(--border-opacity)) !important;
}

.hover\:cl-border-gray-600:hover {
  --border-opacity: 1 !important;
  border-color: #718096 !important;
  border-color: rgba(113, 128, 150, var(--border-opacity)) !important;
}

.hover\:cl-border-gray-700:hover {
  --border-opacity: 1 !important;
  border-color: #4a5568 !important;
  border-color: rgba(74, 85, 104, var(--border-opacity)) !important;
}

.hover\:cl-border-gray-800:hover {
  --border-opacity: 1 !important;
  border-color: #2d3748 !important;
  border-color: rgba(45, 55, 72, var(--border-opacity)) !important;
}

.hover\:cl-border-gray-900:hover {
  --border-opacity: 1 !important;
  border-color: #1a202c !important;
  border-color: rgba(26, 32, 44, var(--border-opacity)) !important;
}

.hover\:cl-border-red-100:hover {
  --border-opacity: 1 !important;
  border-color: #fff5f5 !important;
  border-color: rgba(255, 245, 245, var(--border-opacity)) !important;
}

.hover\:cl-border-red-200:hover {
  --border-opacity: 1 !important;
  border-color: #fed7d7 !important;
  border-color: rgba(254, 215, 215, var(--border-opacity)) !important;
}

.hover\:cl-border-red-300:hover {
  --border-opacity: 1 !important;
  border-color: #feb2b2 !important;
  border-color: rgba(254, 178, 178, var(--border-opacity)) !important;
}

.hover\:cl-border-red-400:hover {
  --border-opacity: 1 !important;
  border-color: #fc8181 !important;
  border-color: rgba(252, 129, 129, var(--border-opacity)) !important;
}

.hover\:cl-border-red-500:hover {
  --border-opacity: 1 !important;
  border-color: #f56565 !important;
  border-color: rgba(245, 101, 101, var(--border-opacity)) !important;
}

.hover\:cl-border-red-600:hover {
  --border-opacity: 1 !important;
  border-color: #e53e3e !important;
  border-color: rgba(229, 62, 62, var(--border-opacity)) !important;
}

.hover\:cl-border-red-700:hover {
  --border-opacity: 1 !important;
  border-color: #c53030 !important;
  border-color: rgba(197, 48, 48, var(--border-opacity)) !important;
}

.hover\:cl-border-red-800:hover {
  --border-opacity: 1 !important;
  border-color: #9b2c2c !important;
  border-color: rgba(155, 44, 44, var(--border-opacity)) !important;
}

.hover\:cl-border-red-900:hover {
  --border-opacity: 1 !important;
  border-color: #742a2a !important;
  border-color: rgba(116, 42, 42, var(--border-opacity)) !important;
}

.hover\:cl-border-orange-100:hover {
  --border-opacity: 1 !important;
  border-color: #fffaf0 !important;
  border-color: rgba(255, 250, 240, var(--border-opacity)) !important;
}

.hover\:cl-border-orange-200:hover {
  --border-opacity: 1 !important;
  border-color: #feebc8 !important;
  border-color: rgba(254, 235, 200, var(--border-opacity)) !important;
}

.hover\:cl-border-orange-300:hover {
  --border-opacity: 1 !important;
  border-color: #fbd38d !important;
  border-color: rgba(251, 211, 141, var(--border-opacity)) !important;
}

.hover\:cl-border-orange-400:hover {
  --border-opacity: 1 !important;
  border-color: #f6ad55 !important;
  border-color: rgba(246, 173, 85, var(--border-opacity)) !important;
}

.hover\:cl-border-orange-500:hover {
  --border-opacity: 1 !important;
  border-color: #ed8936 !important;
  border-color: rgba(237, 137, 54, var(--border-opacity)) !important;
}

.hover\:cl-border-orange-600:hover {
  --border-opacity: 1 !important;
  border-color: #dd6b20 !important;
  border-color: rgba(221, 107, 32, var(--border-opacity)) !important;
}

.hover\:cl-border-orange-700:hover {
  --border-opacity: 1 !important;
  border-color: #c05621 !important;
  border-color: rgba(192, 86, 33, var(--border-opacity)) !important;
}

.hover\:cl-border-orange-800:hover {
  --border-opacity: 1 !important;
  border-color: #9c4221 !important;
  border-color: rgba(156, 66, 33, var(--border-opacity)) !important;
}

.hover\:cl-border-orange-900:hover {
  --border-opacity: 1 !important;
  border-color: #7b341e !important;
  border-color: rgba(123, 52, 30, var(--border-opacity)) !important;
}

.hover\:cl-border-yellow-100:hover {
  --border-opacity: 1 !important;
  border-color: #fffff0 !important;
  border-color: rgba(255, 255, 240, var(--border-opacity)) !important;
}

.hover\:cl-border-yellow-200:hover {
  --border-opacity: 1 !important;
  border-color: #fefcbf !important;
  border-color: rgba(254, 252, 191, var(--border-opacity)) !important;
}

.hover\:cl-border-yellow-300:hover {
  --border-opacity: 1 !important;
  border-color: #faf089 !important;
  border-color: rgba(250, 240, 137, var(--border-opacity)) !important;
}

.hover\:cl-border-yellow-400:hover {
  --border-opacity: 1 !important;
  border-color: #f6e05e !important;
  border-color: rgba(246, 224, 94, var(--border-opacity)) !important;
}

.hover\:cl-border-yellow-500:hover {
  --border-opacity: 1 !important;
  border-color: #ecc94b !important;
  border-color: rgba(236, 201, 75, var(--border-opacity)) !important;
}

.hover\:cl-border-yellow-600:hover {
  --border-opacity: 1 !important;
  border-color: #d69e2e !important;
  border-color: rgba(214, 158, 46, var(--border-opacity)) !important;
}

.hover\:cl-border-yellow-700:hover {
  --border-opacity: 1 !important;
  border-color: #b7791f !important;
  border-color: rgba(183, 121, 31, var(--border-opacity)) !important;
}

.hover\:cl-border-yellow-800:hover {
  --border-opacity: 1 !important;
  border-color: #975a16 !important;
  border-color: rgba(151, 90, 22, var(--border-opacity)) !important;
}

.hover\:cl-border-yellow-900:hover {
  --border-opacity: 1 !important;
  border-color: #744210 !important;
  border-color: rgba(116, 66, 16, var(--border-opacity)) !important;
}

.hover\:cl-border-green-100:hover {
  --border-opacity: 1 !important;
  border-color: #f0fff4 !important;
  border-color: rgba(240, 255, 244, var(--border-opacity)) !important;
}

.hover\:cl-border-green-200:hover {
  --border-opacity: 1 !important;
  border-color: #c6f6d5 !important;
  border-color: rgba(198, 246, 213, var(--border-opacity)) !important;
}

.hover\:cl-border-green-300:hover {
  --border-opacity: 1 !important;
  border-color: #9ae6b4 !important;
  border-color: rgba(154, 230, 180, var(--border-opacity)) !important;
}

.hover\:cl-border-green-400:hover {
  --border-opacity: 1 !important;
  border-color: #68d391 !important;
  border-color: rgba(104, 211, 145, var(--border-opacity)) !important;
}

.hover\:cl-border-green-500:hover {
  --border-opacity: 1 !important;
  border-color: #48bb78 !important;
  border-color: rgba(72, 187, 120, var(--border-opacity)) !important;
}

.hover\:cl-border-green-600:hover {
  --border-opacity: 1 !important;
  border-color: #38a169 !important;
  border-color: rgba(56, 161, 105, var(--border-opacity)) !important;
}

.hover\:cl-border-green-700:hover {
  --border-opacity: 1 !important;
  border-color: #2f855a !important;
  border-color: rgba(47, 133, 90, var(--border-opacity)) !important;
}

.hover\:cl-border-green-800:hover {
  --border-opacity: 1 !important;
  border-color: #276749 !important;
  border-color: rgba(39, 103, 73, var(--border-opacity)) !important;
}

.hover\:cl-border-green-900:hover {
  --border-opacity: 1 !important;
  border-color: #22543d !important;
  border-color: rgba(34, 84, 61, var(--border-opacity)) !important;
}

.hover\:cl-border-teal-100:hover {
  --border-opacity: 1 !important;
  border-color: #e6fffa !important;
  border-color: rgba(230, 255, 250, var(--border-opacity)) !important;
}

.hover\:cl-border-teal-200:hover {
  --border-opacity: 1 !important;
  border-color: #b2f5ea !important;
  border-color: rgba(178, 245, 234, var(--border-opacity)) !important;
}

.hover\:cl-border-teal-300:hover {
  --border-opacity: 1 !important;
  border-color: #81e6d9 !important;
  border-color: rgba(129, 230, 217, var(--border-opacity)) !important;
}

.hover\:cl-border-teal-400:hover {
  --border-opacity: 1 !important;
  border-color: #4fd1c5 !important;
  border-color: rgba(79, 209, 197, var(--border-opacity)) !important;
}

.hover\:cl-border-teal-500:hover {
  --border-opacity: 1 !important;
  border-color: #38b2ac !important;
  border-color: rgba(56, 178, 172, var(--border-opacity)) !important;
}

.hover\:cl-border-teal-600:hover {
  --border-opacity: 1 !important;
  border-color: #319795 !important;
  border-color: rgba(49, 151, 149, var(--border-opacity)) !important;
}

.hover\:cl-border-teal-700:hover {
  --border-opacity: 1 !important;
  border-color: #2c7a7b !important;
  border-color: rgba(44, 122, 123, var(--border-opacity)) !important;
}

.hover\:cl-border-teal-800:hover {
  --border-opacity: 1 !important;
  border-color: #285e61 !important;
  border-color: rgba(40, 94, 97, var(--border-opacity)) !important;
}

.hover\:cl-border-teal-900:hover {
  --border-opacity: 1 !important;
  border-color: #234e52 !important;
  border-color: rgba(35, 78, 82, var(--border-opacity)) !important;
}

.hover\:cl-border-blue-100:hover {
  --border-opacity: 1 !important;
  border-color: #ebf8ff !important;
  border-color: rgba(235, 248, 255, var(--border-opacity)) !important;
}

.hover\:cl-border-blue-200:hover {
  --border-opacity: 1 !important;
  border-color: #bee3f8 !important;
  border-color: rgba(190, 227, 248, var(--border-opacity)) !important;
}

.hover\:cl-border-blue-300:hover {
  --border-opacity: 1 !important;
  border-color: #90cdf4 !important;
  border-color: rgba(144, 205, 244, var(--border-opacity)) !important;
}

.hover\:cl-border-blue-400:hover {
  --border-opacity: 1 !important;
  border-color: #63b3ed !important;
  border-color: rgba(99, 179, 237, var(--border-opacity)) !important;
}

.hover\:cl-border-blue-500:hover {
  --border-opacity: 1 !important;
  border-color: #4299e1 !important;
  border-color: rgba(66, 153, 225, var(--border-opacity)) !important;
}

.hover\:cl-border-blue-600:hover {
  --border-opacity: 1 !important;
  border-color: #3182ce !important;
  border-color: rgba(49, 130, 206, var(--border-opacity)) !important;
}

.hover\:cl-border-blue-700:hover {
  --border-opacity: 1 !important;
  border-color: #2b6cb0 !important;
  border-color: rgba(43, 108, 176, var(--border-opacity)) !important;
}

.hover\:cl-border-blue-800:hover {
  --border-opacity: 1 !important;
  border-color: #2c5282 !important;
  border-color: rgba(44, 82, 130, var(--border-opacity)) !important;
}

.hover\:cl-border-blue-900:hover {
  --border-opacity: 1 !important;
  border-color: #2a4365 !important;
  border-color: rgba(42, 67, 101, var(--border-opacity)) !important;
}

.hover\:cl-border-indigo-100:hover {
  --border-opacity: 1 !important;
  border-color: #ebf4ff !important;
  border-color: rgba(235, 244, 255, var(--border-opacity)) !important;
}

.hover\:cl-border-indigo-200:hover {
  --border-opacity: 1 !important;
  border-color: #c3dafe !important;
  border-color: rgba(195, 218, 254, var(--border-opacity)) !important;
}

.hover\:cl-border-indigo-300:hover {
  --border-opacity: 1 !important;
  border-color: #a3bffa !important;
  border-color: rgba(163, 191, 250, var(--border-opacity)) !important;
}

.hover\:cl-border-indigo-400:hover {
  --border-opacity: 1 !important;
  border-color: #7f9cf5 !important;
  border-color: rgba(127, 156, 245, var(--border-opacity)) !important;
}

.hover\:cl-border-indigo-500:hover {
  --border-opacity: 1 !important;
  border-color: #667eea !important;
  border-color: rgba(102, 126, 234, var(--border-opacity)) !important;
}

.hover\:cl-border-indigo-600:hover {
  --border-opacity: 1 !important;
  border-color: #5a67d8 !important;
  border-color: rgba(90, 103, 216, var(--border-opacity)) !important;
}

.hover\:cl-border-indigo-700:hover {
  --border-opacity: 1 !important;
  border-color: #4c51bf !important;
  border-color: rgba(76, 81, 191, var(--border-opacity)) !important;
}

.hover\:cl-border-indigo-800:hover {
  --border-opacity: 1 !important;
  border-color: #434190 !important;
  border-color: rgba(67, 65, 144, var(--border-opacity)) !important;
}

.hover\:cl-border-indigo-900:hover {
  --border-opacity: 1 !important;
  border-color: #3c366b !important;
  border-color: rgba(60, 54, 107, var(--border-opacity)) !important;
}

.hover\:cl-border-purple-100:hover {
  --border-opacity: 1 !important;
  border-color: #faf5ff !important;
  border-color: rgba(250, 245, 255, var(--border-opacity)) !important;
}

.hover\:cl-border-purple-200:hover {
  --border-opacity: 1 !important;
  border-color: #e9d8fd !important;
  border-color: rgba(233, 216, 253, var(--border-opacity)) !important;
}

.hover\:cl-border-purple-300:hover {
  --border-opacity: 1 !important;
  border-color: #d6bcfa !important;
  border-color: rgba(214, 188, 250, var(--border-opacity)) !important;
}

.hover\:cl-border-purple-400:hover {
  --border-opacity: 1 !important;
  border-color: #b794f4 !important;
  border-color: rgba(183, 148, 244, var(--border-opacity)) !important;
}

.hover\:cl-border-purple-500:hover {
  --border-opacity: 1 !important;
  border-color: #9f7aea !important;
  border-color: rgba(159, 122, 234, var(--border-opacity)) !important;
}

.hover\:cl-border-purple-600:hover {
  --border-opacity: 1 !important;
  border-color: #805ad5 !important;
  border-color: rgba(128, 90, 213, var(--border-opacity)) !important;
}

.hover\:cl-border-purple-700:hover {
  --border-opacity: 1 !important;
  border-color: #6b46c1 !important;
  border-color: rgba(107, 70, 193, var(--border-opacity)) !important;
}

.hover\:cl-border-purple-800:hover {
  --border-opacity: 1 !important;
  border-color: #553c9a !important;
  border-color: rgba(85, 60, 154, var(--border-opacity)) !important;
}

.hover\:cl-border-purple-900:hover {
  --border-opacity: 1 !important;
  border-color: #44337a !important;
  border-color: rgba(68, 51, 122, var(--border-opacity)) !important;
}

.hover\:cl-border-pink-100:hover {
  --border-opacity: 1 !important;
  border-color: #fff5f7 !important;
  border-color: rgba(255, 245, 247, var(--border-opacity)) !important;
}

.hover\:cl-border-pink-200:hover {
  --border-opacity: 1 !important;
  border-color: #fed7e2 !important;
  border-color: rgba(254, 215, 226, var(--border-opacity)) !important;
}

.hover\:cl-border-pink-300:hover {
  --border-opacity: 1 !important;
  border-color: #fbb6ce !important;
  border-color: rgba(251, 182, 206, var(--border-opacity)) !important;
}

.hover\:cl-border-pink-400:hover {
  --border-opacity: 1 !important;
  border-color: #f687b3 !important;
  border-color: rgba(246, 135, 179, var(--border-opacity)) !important;
}

.hover\:cl-border-pink-500:hover {
  --border-opacity: 1 !important;
  border-color: #ed64a6 !important;
  border-color: rgba(237, 100, 166, var(--border-opacity)) !important;
}

.hover\:cl-border-pink-600:hover {
  --border-opacity: 1 !important;
  border-color: #d53f8c !important;
  border-color: rgba(213, 63, 140, var(--border-opacity)) !important;
}

.hover\:cl-border-pink-700:hover {
  --border-opacity: 1 !important;
  border-color: #b83280 !important;
  border-color: rgba(184, 50, 128, var(--border-opacity)) !important;
}

.hover\:cl-border-pink-800:hover {
  --border-opacity: 1 !important;
  border-color: #97266d !important;
  border-color: rgba(151, 38, 109, var(--border-opacity)) !important;
}

.hover\:cl-border-pink-900:hover {
  --border-opacity: 1 !important;
  border-color: #702459 !important;
  border-color: rgba(112, 36, 89, var(--border-opacity)) !important;
}

.hover\:cl-border-ui-gray-100:hover {
  --border-opacity: 1 !important;
  border-color: #f1f1f1 !important;
  border-color: rgba(241, 241, 241, var(--border-opacity)) !important;
}

.hover\:cl-border-ui-brown-100:hover {
  --border-opacity: 1 !important;
  border-color: #f3ecdc !important;
  border-color: rgba(243, 236, 220, var(--border-opacity)) !important;
}

.hover\:cl-border-ui-brown-200:hover {
  --border-opacity: 1 !important;
  border-color: #e8e0c9 !important;
  border-color: rgba(232, 224, 201, var(--border-opacity)) !important;
}

.hover\:cl-border-ui-brown-300:hover {
  --border-opacity: 1 !important;
  border-color: #d0c095 !important;
  border-color: rgba(208, 192, 149, var(--border-opacity)) !important;
}

.hover\:cl-border-ui-brown-700:hover {
  --border-opacity: 1 !important;
  border-color: #bd6005 !important;
  border-color: rgba(189, 96, 5, var(--border-opacity)) !important;
}

.hover\:cl-border-ui-green-300:hover {
  --border-opacity: 1 !important;
  border-color: #aac74c !important;
  border-color: rgba(170, 199, 76, var(--border-opacity)) !important;
}

.hover\:cl-border-ui-green-400:hover {
  --border-opacity: 1 !important;
  border-color: #71893e !important;
  border-color: rgba(113, 137, 62, var(--border-opacity)) !important;
}

.hover\:cl-border-ui-orange-500:hover {
  --border-opacity: 1 !important;
  border-color: #e27212 !important;
  border-color: rgba(226, 114, 18, var(--border-opacity)) !important;
}

.hover\:cl-border-facebook:hover {
  --border-opacity: 1 !important;
  border-color: #3b5998 !important;
  border-color: rgba(59, 89, 152, var(--border-opacity)) !important;
}

.hover\:cl-border-twitter:hover {
  --border-opacity: 1 !important;
  border-color: #00acee !important;
  border-color: rgba(0, 172, 238, var(--border-opacity)) !important;
}

.hover\:cl-border-twitch:hover {
  --border-opacity: 1 !important;
  border-color: #6441a5 !important;
  border-color: rgba(100, 65, 165, var(--border-opacity)) !important;
}

.hover\:cl-border-youtube:hover {
  --border-opacity: 1 !important;
  border-color: #FF0000 !important;
  border-color: rgba(255, 0, 0, var(--border-opacity)) !important;
}

.focus\:cl-border-transparent:focus {
  border-color: transparent !important;
}

.focus\:cl-border-current:focus {
  border-color: currentColor !important;
}

.focus\:cl-border-black:focus {
  --border-opacity: 1 !important;
  border-color: #000 !important;
  border-color: rgba(0, 0, 0, var(--border-opacity)) !important;
}

.focus\:cl-border-white:focus {
  --border-opacity: 1 !important;
  border-color: #fff !important;
  border-color: rgba(255, 255, 255, var(--border-opacity)) !important;
}

.focus\:cl-border-gray-100:focus {
  --border-opacity: 1 !important;
  border-color: #f7fafc !important;
  border-color: rgba(247, 250, 252, var(--border-opacity)) !important;
}

.focus\:cl-border-gray-200:focus {
  --border-opacity: 1 !important;
  border-color: #edf2f7 !important;
  border-color: rgba(237, 242, 247, var(--border-opacity)) !important;
}

.focus\:cl-border-gray-300:focus {
  --border-opacity: 1 !important;
  border-color: #e2e8f0 !important;
  border-color: rgba(226, 232, 240, var(--border-opacity)) !important;
}

.focus\:cl-border-gray-400:focus {
  --border-opacity: 1 !important;
  border-color: #cbd5e0 !important;
  border-color: rgba(203, 213, 224, var(--border-opacity)) !important;
}

.focus\:cl-border-gray-500:focus {
  --border-opacity: 1 !important;
  border-color: #a0aec0 !important;
  border-color: rgba(160, 174, 192, var(--border-opacity)) !important;
}

.focus\:cl-border-gray-600:focus {
  --border-opacity: 1 !important;
  border-color: #718096 !important;
  border-color: rgba(113, 128, 150, var(--border-opacity)) !important;
}

.focus\:cl-border-gray-700:focus {
  --border-opacity: 1 !important;
  border-color: #4a5568 !important;
  border-color: rgba(74, 85, 104, var(--border-opacity)) !important;
}

.focus\:cl-border-gray-800:focus {
  --border-opacity: 1 !important;
  border-color: #2d3748 !important;
  border-color: rgba(45, 55, 72, var(--border-opacity)) !important;
}

.focus\:cl-border-gray-900:focus {
  --border-opacity: 1 !important;
  border-color: #1a202c !important;
  border-color: rgba(26, 32, 44, var(--border-opacity)) !important;
}

.focus\:cl-border-red-100:focus {
  --border-opacity: 1 !important;
  border-color: #fff5f5 !important;
  border-color: rgba(255, 245, 245, var(--border-opacity)) !important;
}

.focus\:cl-border-red-200:focus {
  --border-opacity: 1 !important;
  border-color: #fed7d7 !important;
  border-color: rgba(254, 215, 215, var(--border-opacity)) !important;
}

.focus\:cl-border-red-300:focus {
  --border-opacity: 1 !important;
  border-color: #feb2b2 !important;
  border-color: rgba(254, 178, 178, var(--border-opacity)) !important;
}

.focus\:cl-border-red-400:focus {
  --border-opacity: 1 !important;
  border-color: #fc8181 !important;
  border-color: rgba(252, 129, 129, var(--border-opacity)) !important;
}

.focus\:cl-border-red-500:focus {
  --border-opacity: 1 !important;
  border-color: #f56565 !important;
  border-color: rgba(245, 101, 101, var(--border-opacity)) !important;
}

.focus\:cl-border-red-600:focus {
  --border-opacity: 1 !important;
  border-color: #e53e3e !important;
  border-color: rgba(229, 62, 62, var(--border-opacity)) !important;
}

.focus\:cl-border-red-700:focus {
  --border-opacity: 1 !important;
  border-color: #c53030 !important;
  border-color: rgba(197, 48, 48, var(--border-opacity)) !important;
}

.focus\:cl-border-red-800:focus {
  --border-opacity: 1 !important;
  border-color: #9b2c2c !important;
  border-color: rgba(155, 44, 44, var(--border-opacity)) !important;
}

.focus\:cl-border-red-900:focus {
  --border-opacity: 1 !important;
  border-color: #742a2a !important;
  border-color: rgba(116, 42, 42, var(--border-opacity)) !important;
}

.focus\:cl-border-orange-100:focus {
  --border-opacity: 1 !important;
  border-color: #fffaf0 !important;
  border-color: rgba(255, 250, 240, var(--border-opacity)) !important;
}

.focus\:cl-border-orange-200:focus {
  --border-opacity: 1 !important;
  border-color: #feebc8 !important;
  border-color: rgba(254, 235, 200, var(--border-opacity)) !important;
}

.focus\:cl-border-orange-300:focus {
  --border-opacity: 1 !important;
  border-color: #fbd38d !important;
  border-color: rgba(251, 211, 141, var(--border-opacity)) !important;
}

.focus\:cl-border-orange-400:focus {
  --border-opacity: 1 !important;
  border-color: #f6ad55 !important;
  border-color: rgba(246, 173, 85, var(--border-opacity)) !important;
}

.focus\:cl-border-orange-500:focus {
  --border-opacity: 1 !important;
  border-color: #ed8936 !important;
  border-color: rgba(237, 137, 54, var(--border-opacity)) !important;
}

.focus\:cl-border-orange-600:focus {
  --border-opacity: 1 !important;
  border-color: #dd6b20 !important;
  border-color: rgba(221, 107, 32, var(--border-opacity)) !important;
}

.focus\:cl-border-orange-700:focus {
  --border-opacity: 1 !important;
  border-color: #c05621 !important;
  border-color: rgba(192, 86, 33, var(--border-opacity)) !important;
}

.focus\:cl-border-orange-800:focus {
  --border-opacity: 1 !important;
  border-color: #9c4221 !important;
  border-color: rgba(156, 66, 33, var(--border-opacity)) !important;
}

.focus\:cl-border-orange-900:focus {
  --border-opacity: 1 !important;
  border-color: #7b341e !important;
  border-color: rgba(123, 52, 30, var(--border-opacity)) !important;
}

.focus\:cl-border-yellow-100:focus {
  --border-opacity: 1 !important;
  border-color: #fffff0 !important;
  border-color: rgba(255, 255, 240, var(--border-opacity)) !important;
}

.focus\:cl-border-yellow-200:focus {
  --border-opacity: 1 !important;
  border-color: #fefcbf !important;
  border-color: rgba(254, 252, 191, var(--border-opacity)) !important;
}

.focus\:cl-border-yellow-300:focus {
  --border-opacity: 1 !important;
  border-color: #faf089 !important;
  border-color: rgba(250, 240, 137, var(--border-opacity)) !important;
}

.focus\:cl-border-yellow-400:focus {
  --border-opacity: 1 !important;
  border-color: #f6e05e !important;
  border-color: rgba(246, 224, 94, var(--border-opacity)) !important;
}

.focus\:cl-border-yellow-500:focus {
  --border-opacity: 1 !important;
  border-color: #ecc94b !important;
  border-color: rgba(236, 201, 75, var(--border-opacity)) !important;
}

.focus\:cl-border-yellow-600:focus {
  --border-opacity: 1 !important;
  border-color: #d69e2e !important;
  border-color: rgba(214, 158, 46, var(--border-opacity)) !important;
}

.focus\:cl-border-yellow-700:focus {
  --border-opacity: 1 !important;
  border-color: #b7791f !important;
  border-color: rgba(183, 121, 31, var(--border-opacity)) !important;
}

.focus\:cl-border-yellow-800:focus {
  --border-opacity: 1 !important;
  border-color: #975a16 !important;
  border-color: rgba(151, 90, 22, var(--border-opacity)) !important;
}

.focus\:cl-border-yellow-900:focus {
  --border-opacity: 1 !important;
  border-color: #744210 !important;
  border-color: rgba(116, 66, 16, var(--border-opacity)) !important;
}

.focus\:cl-border-green-100:focus {
  --border-opacity: 1 !important;
  border-color: #f0fff4 !important;
  border-color: rgba(240, 255, 244, var(--border-opacity)) !important;
}

.focus\:cl-border-green-200:focus {
  --border-opacity: 1 !important;
  border-color: #c6f6d5 !important;
  border-color: rgba(198, 246, 213, var(--border-opacity)) !important;
}

.focus\:cl-border-green-300:focus {
  --border-opacity: 1 !important;
  border-color: #9ae6b4 !important;
  border-color: rgba(154, 230, 180, var(--border-opacity)) !important;
}

.focus\:cl-border-green-400:focus {
  --border-opacity: 1 !important;
  border-color: #68d391 !important;
  border-color: rgba(104, 211, 145, var(--border-opacity)) !important;
}

.focus\:cl-border-green-500:focus {
  --border-opacity: 1 !important;
  border-color: #48bb78 !important;
  border-color: rgba(72, 187, 120, var(--border-opacity)) !important;
}

.focus\:cl-border-green-600:focus {
  --border-opacity: 1 !important;
  border-color: #38a169 !important;
  border-color: rgba(56, 161, 105, var(--border-opacity)) !important;
}

.focus\:cl-border-green-700:focus {
  --border-opacity: 1 !important;
  border-color: #2f855a !important;
  border-color: rgba(47, 133, 90, var(--border-opacity)) !important;
}

.focus\:cl-border-green-800:focus {
  --border-opacity: 1 !important;
  border-color: #276749 !important;
  border-color: rgba(39, 103, 73, var(--border-opacity)) !important;
}

.focus\:cl-border-green-900:focus {
  --border-opacity: 1 !important;
  border-color: #22543d !important;
  border-color: rgba(34, 84, 61, var(--border-opacity)) !important;
}

.focus\:cl-border-teal-100:focus {
  --border-opacity: 1 !important;
  border-color: #e6fffa !important;
  border-color: rgba(230, 255, 250, var(--border-opacity)) !important;
}

.focus\:cl-border-teal-200:focus {
  --border-opacity: 1 !important;
  border-color: #b2f5ea !important;
  border-color: rgba(178, 245, 234, var(--border-opacity)) !important;
}

.focus\:cl-border-teal-300:focus {
  --border-opacity: 1 !important;
  border-color: #81e6d9 !important;
  border-color: rgba(129, 230, 217, var(--border-opacity)) !important;
}

.focus\:cl-border-teal-400:focus {
  --border-opacity: 1 !important;
  border-color: #4fd1c5 !important;
  border-color: rgba(79, 209, 197, var(--border-opacity)) !important;
}

.focus\:cl-border-teal-500:focus {
  --border-opacity: 1 !important;
  border-color: #38b2ac !important;
  border-color: rgba(56, 178, 172, var(--border-opacity)) !important;
}

.focus\:cl-border-teal-600:focus {
  --border-opacity: 1 !important;
  border-color: #319795 !important;
  border-color: rgba(49, 151, 149, var(--border-opacity)) !important;
}

.focus\:cl-border-teal-700:focus {
  --border-opacity: 1 !important;
  border-color: #2c7a7b !important;
  border-color: rgba(44, 122, 123, var(--border-opacity)) !important;
}

.focus\:cl-border-teal-800:focus {
  --border-opacity: 1 !important;
  border-color: #285e61 !important;
  border-color: rgba(40, 94, 97, var(--border-opacity)) !important;
}

.focus\:cl-border-teal-900:focus {
  --border-opacity: 1 !important;
  border-color: #234e52 !important;
  border-color: rgba(35, 78, 82, var(--border-opacity)) !important;
}

.focus\:cl-border-blue-100:focus {
  --border-opacity: 1 !important;
  border-color: #ebf8ff !important;
  border-color: rgba(235, 248, 255, var(--border-opacity)) !important;
}

.focus\:cl-border-blue-200:focus {
  --border-opacity: 1 !important;
  border-color: #bee3f8 !important;
  border-color: rgba(190, 227, 248, var(--border-opacity)) !important;
}

.focus\:cl-border-blue-300:focus {
  --border-opacity: 1 !important;
  border-color: #90cdf4 !important;
  border-color: rgba(144, 205, 244, var(--border-opacity)) !important;
}

.focus\:cl-border-blue-400:focus {
  --border-opacity: 1 !important;
  border-color: #63b3ed !important;
  border-color: rgba(99, 179, 237, var(--border-opacity)) !important;
}

.focus\:cl-border-blue-500:focus {
  --border-opacity: 1 !important;
  border-color: #4299e1 !important;
  border-color: rgba(66, 153, 225, var(--border-opacity)) !important;
}

.focus\:cl-border-blue-600:focus {
  --border-opacity: 1 !important;
  border-color: #3182ce !important;
  border-color: rgba(49, 130, 206, var(--border-opacity)) !important;
}

.focus\:cl-border-blue-700:focus {
  --border-opacity: 1 !important;
  border-color: #2b6cb0 !important;
  border-color: rgba(43, 108, 176, var(--border-opacity)) !important;
}

.focus\:cl-border-blue-800:focus {
  --border-opacity: 1 !important;
  border-color: #2c5282 !important;
  border-color: rgba(44, 82, 130, var(--border-opacity)) !important;
}

.focus\:cl-border-blue-900:focus {
  --border-opacity: 1 !important;
  border-color: #2a4365 !important;
  border-color: rgba(42, 67, 101, var(--border-opacity)) !important;
}

.focus\:cl-border-indigo-100:focus {
  --border-opacity: 1 !important;
  border-color: #ebf4ff !important;
  border-color: rgba(235, 244, 255, var(--border-opacity)) !important;
}

.focus\:cl-border-indigo-200:focus {
  --border-opacity: 1 !important;
  border-color: #c3dafe !important;
  border-color: rgba(195, 218, 254, var(--border-opacity)) !important;
}

.focus\:cl-border-indigo-300:focus {
  --border-opacity: 1 !important;
  border-color: #a3bffa !important;
  border-color: rgba(163, 191, 250, var(--border-opacity)) !important;
}

.focus\:cl-border-indigo-400:focus {
  --border-opacity: 1 !important;
  border-color: #7f9cf5 !important;
  border-color: rgba(127, 156, 245, var(--border-opacity)) !important;
}

.focus\:cl-border-indigo-500:focus {
  --border-opacity: 1 !important;
  border-color: #667eea !important;
  border-color: rgba(102, 126, 234, var(--border-opacity)) !important;
}

.focus\:cl-border-indigo-600:focus {
  --border-opacity: 1 !important;
  border-color: #5a67d8 !important;
  border-color: rgba(90, 103, 216, var(--border-opacity)) !important;
}

.focus\:cl-border-indigo-700:focus {
  --border-opacity: 1 !important;
  border-color: #4c51bf !important;
  border-color: rgba(76, 81, 191, var(--border-opacity)) !important;
}

.focus\:cl-border-indigo-800:focus {
  --border-opacity: 1 !important;
  border-color: #434190 !important;
  border-color: rgba(67, 65, 144, var(--border-opacity)) !important;
}

.focus\:cl-border-indigo-900:focus {
  --border-opacity: 1 !important;
  border-color: #3c366b !important;
  border-color: rgba(60, 54, 107, var(--border-opacity)) !important;
}

.focus\:cl-border-purple-100:focus {
  --border-opacity: 1 !important;
  border-color: #faf5ff !important;
  border-color: rgba(250, 245, 255, var(--border-opacity)) !important;
}

.focus\:cl-border-purple-200:focus {
  --border-opacity: 1 !important;
  border-color: #e9d8fd !important;
  border-color: rgba(233, 216, 253, var(--border-opacity)) !important;
}

.focus\:cl-border-purple-300:focus {
  --border-opacity: 1 !important;
  border-color: #d6bcfa !important;
  border-color: rgba(214, 188, 250, var(--border-opacity)) !important;
}

.focus\:cl-border-purple-400:focus {
  --border-opacity: 1 !important;
  border-color: #b794f4 !important;
  border-color: rgba(183, 148, 244, var(--border-opacity)) !important;
}

.focus\:cl-border-purple-500:focus {
  --border-opacity: 1 !important;
  border-color: #9f7aea !important;
  border-color: rgba(159, 122, 234, var(--border-opacity)) !important;
}

.focus\:cl-border-purple-600:focus {
  --border-opacity: 1 !important;
  border-color: #805ad5 !important;
  border-color: rgba(128, 90, 213, var(--border-opacity)) !important;
}

.focus\:cl-border-purple-700:focus {
  --border-opacity: 1 !important;
  border-color: #6b46c1 !important;
  border-color: rgba(107, 70, 193, var(--border-opacity)) !important;
}

.focus\:cl-border-purple-800:focus {
  --border-opacity: 1 !important;
  border-color: #553c9a !important;
  border-color: rgba(85, 60, 154, var(--border-opacity)) !important;
}

.focus\:cl-border-purple-900:focus {
  --border-opacity: 1 !important;
  border-color: #44337a !important;
  border-color: rgba(68, 51, 122, var(--border-opacity)) !important;
}

.focus\:cl-border-pink-100:focus {
  --border-opacity: 1 !important;
  border-color: #fff5f7 !important;
  border-color: rgba(255, 245, 247, var(--border-opacity)) !important;
}

.focus\:cl-border-pink-200:focus {
  --border-opacity: 1 !important;
  border-color: #fed7e2 !important;
  border-color: rgba(254, 215, 226, var(--border-opacity)) !important;
}

.focus\:cl-border-pink-300:focus {
  --border-opacity: 1 !important;
  border-color: #fbb6ce !important;
  border-color: rgba(251, 182, 206, var(--border-opacity)) !important;
}

.focus\:cl-border-pink-400:focus {
  --border-opacity: 1 !important;
  border-color: #f687b3 !important;
  border-color: rgba(246, 135, 179, var(--border-opacity)) !important;
}

.focus\:cl-border-pink-500:focus {
  --border-opacity: 1 !important;
  border-color: #ed64a6 !important;
  border-color: rgba(237, 100, 166, var(--border-opacity)) !important;
}

.focus\:cl-border-pink-600:focus {
  --border-opacity: 1 !important;
  border-color: #d53f8c !important;
  border-color: rgba(213, 63, 140, var(--border-opacity)) !important;
}

.focus\:cl-border-pink-700:focus {
  --border-opacity: 1 !important;
  border-color: #b83280 !important;
  border-color: rgba(184, 50, 128, var(--border-opacity)) !important;
}

.focus\:cl-border-pink-800:focus {
  --border-opacity: 1 !important;
  border-color: #97266d !important;
  border-color: rgba(151, 38, 109, var(--border-opacity)) !important;
}

.focus\:cl-border-pink-900:focus {
  --border-opacity: 1 !important;
  border-color: #702459 !important;
  border-color: rgba(112, 36, 89, var(--border-opacity)) !important;
}

.focus\:cl-border-ui-gray-100:focus {
  --border-opacity: 1 !important;
  border-color: #f1f1f1 !important;
  border-color: rgba(241, 241, 241, var(--border-opacity)) !important;
}

.focus\:cl-border-ui-brown-100:focus {
  --border-opacity: 1 !important;
  border-color: #f3ecdc !important;
  border-color: rgba(243, 236, 220, var(--border-opacity)) !important;
}

.focus\:cl-border-ui-brown-200:focus {
  --border-opacity: 1 !important;
  border-color: #e8e0c9 !important;
  border-color: rgba(232, 224, 201, var(--border-opacity)) !important;
}

.focus\:cl-border-ui-brown-300:focus {
  --border-opacity: 1 !important;
  border-color: #d0c095 !important;
  border-color: rgba(208, 192, 149, var(--border-opacity)) !important;
}

.focus\:cl-border-ui-brown-700:focus {
  --border-opacity: 1 !important;
  border-color: #bd6005 !important;
  border-color: rgba(189, 96, 5, var(--border-opacity)) !important;
}

.focus\:cl-border-ui-green-300:focus {
  --border-opacity: 1 !important;
  border-color: #aac74c !important;
  border-color: rgba(170, 199, 76, var(--border-opacity)) !important;
}

.focus\:cl-border-ui-green-400:focus {
  --border-opacity: 1 !important;
  border-color: #71893e !important;
  border-color: rgba(113, 137, 62, var(--border-opacity)) !important;
}

.focus\:cl-border-ui-orange-500:focus {
  --border-opacity: 1 !important;
  border-color: #e27212 !important;
  border-color: rgba(226, 114, 18, var(--border-opacity)) !important;
}

.focus\:cl-border-facebook:focus {
  --border-opacity: 1 !important;
  border-color: #3b5998 !important;
  border-color: rgba(59, 89, 152, var(--border-opacity)) !important;
}

.focus\:cl-border-twitter:focus {
  --border-opacity: 1 !important;
  border-color: #00acee !important;
  border-color: rgba(0, 172, 238, var(--border-opacity)) !important;
}

.focus\:cl-border-twitch:focus {
  --border-opacity: 1 !important;
  border-color: #6441a5 !important;
  border-color: rgba(100, 65, 165, var(--border-opacity)) !important;
}

.focus\:cl-border-youtube:focus {
  --border-opacity: 1 !important;
  border-color: #FF0000 !important;
  border-color: rgba(255, 0, 0, var(--border-opacity)) !important;
}

.cl-border-opacity-0 {
  --border-opacity: 0 !important;
}

.cl-border-opacity-25 {
  --border-opacity: 0.25 !important;
}

.cl-border-opacity-50 {
  --border-opacity: 0.5 !important;
}

.cl-border-opacity-75 {
  --border-opacity: 0.75 !important;
}

.cl-border-opacity-100 {
  --border-opacity: 1 !important;
}

.hover\:cl-border-opacity-0:hover {
  --border-opacity: 0 !important;
}

.hover\:cl-border-opacity-25:hover {
  --border-opacity: 0.25 !important;
}

.hover\:cl-border-opacity-50:hover {
  --border-opacity: 0.5 !important;
}

.hover\:cl-border-opacity-75:hover {
  --border-opacity: 0.75 !important;
}

.hover\:cl-border-opacity-100:hover {
  --border-opacity: 1 !important;
}

.focus\:cl-border-opacity-0:focus {
  --border-opacity: 0 !important;
}

.focus\:cl-border-opacity-25:focus {
  --border-opacity: 0.25 !important;
}

.focus\:cl-border-opacity-50:focus {
  --border-opacity: 0.5 !important;
}

.focus\:cl-border-opacity-75:focus {
  --border-opacity: 0.75 !important;
}

.focus\:cl-border-opacity-100:focus {
  --border-opacity: 1 !important;
}

.cl-rounded-none {
  border-radius: 0 !important;
}

.cl-rounded-sm {
  border-radius: 0.125rem !important;
}

.cl-rounded {
  border-radius: 0.25rem !important;
}

.cl-rounded-md {
  border-radius: 0.375rem !important;
}

.cl-rounded-lg {
  border-radius: 0.5rem !important;
}

.cl-rounded-xl {
  border-radius: 0.75rem !important;
}

.cl-rounded-2xl {
  border-radius: 1rem !important;
}

.cl-rounded-3xl {
  border-radius: 1.5rem !important;
}

.cl-rounded-full {
  border-radius: 9999px !important;
}

.cl-rounded-t-none {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.cl-rounded-r-none {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.cl-rounded-b-none {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.cl-rounded-l-none {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.cl-rounded-t-sm {
  border-top-left-radius: 0.125rem !important;
  border-top-right-radius: 0.125rem !important;
}

.cl-rounded-r-sm {
  border-top-right-radius: 0.125rem !important;
  border-bottom-right-radius: 0.125rem !important;
}

.cl-rounded-b-sm {
  border-bottom-right-radius: 0.125rem !important;
  border-bottom-left-radius: 0.125rem !important;
}

.cl-rounded-l-sm {
  border-top-left-radius: 0.125rem !important;
  border-bottom-left-radius: 0.125rem !important;
}

.cl-rounded-t {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.cl-rounded-r {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.cl-rounded-b {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.cl-rounded-l {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.cl-rounded-t-md {
  border-top-left-radius: 0.375rem !important;
  border-top-right-radius: 0.375rem !important;
}

.cl-rounded-r-md {
  border-top-right-radius: 0.375rem !important;
  border-bottom-right-radius: 0.375rem !important;
}

.cl-rounded-b-md {
  border-bottom-right-radius: 0.375rem !important;
  border-bottom-left-radius: 0.375rem !important;
}

.cl-rounded-l-md {
  border-top-left-radius: 0.375rem !important;
  border-bottom-left-radius: 0.375rem !important;
}

.cl-rounded-t-lg {
  border-top-left-radius: 0.5rem !important;
  border-top-right-radius: 0.5rem !important;
}

.cl-rounded-r-lg {
  border-top-right-radius: 0.5rem !important;
  border-bottom-right-radius: 0.5rem !important;
}

.cl-rounded-b-lg {
  border-bottom-right-radius: 0.5rem !important;
  border-bottom-left-radius: 0.5rem !important;
}

.cl-rounded-l-lg {
  border-top-left-radius: 0.5rem !important;
  border-bottom-left-radius: 0.5rem !important;
}

.cl-rounded-t-xl {
  border-top-left-radius: 0.75rem !important;
  border-top-right-radius: 0.75rem !important;
}

.cl-rounded-r-xl {
  border-top-right-radius: 0.75rem !important;
  border-bottom-right-radius: 0.75rem !important;
}

.cl-rounded-b-xl {
  border-bottom-right-radius: 0.75rem !important;
  border-bottom-left-radius: 0.75rem !important;
}

.cl-rounded-l-xl {
  border-top-left-radius: 0.75rem !important;
  border-bottom-left-radius: 0.75rem !important;
}

.cl-rounded-t-2xl {
  border-top-left-radius: 1rem !important;
  border-top-right-radius: 1rem !important;
}

.cl-rounded-r-2xl {
  border-top-right-radius: 1rem !important;
  border-bottom-right-radius: 1rem !important;
}

.cl-rounded-b-2xl {
  border-bottom-right-radius: 1rem !important;
  border-bottom-left-radius: 1rem !important;
}

.cl-rounded-l-2xl {
  border-top-left-radius: 1rem !important;
  border-bottom-left-radius: 1rem !important;
}

.cl-rounded-t-3xl {
  border-top-left-radius: 1.5rem !important;
  border-top-right-radius: 1.5rem !important;
}

.cl-rounded-r-3xl {
  border-top-right-radius: 1.5rem !important;
  border-bottom-right-radius: 1.5rem !important;
}

.cl-rounded-b-3xl {
  border-bottom-right-radius: 1.5rem !important;
  border-bottom-left-radius: 1.5rem !important;
}

.cl-rounded-l-3xl {
  border-top-left-radius: 1.5rem !important;
  border-bottom-left-radius: 1.5rem !important;
}

.cl-rounded-t-full {
  border-top-left-radius: 9999px !important;
  border-top-right-radius: 9999px !important;
}

.cl-rounded-r-full {
  border-top-right-radius: 9999px !important;
  border-bottom-right-radius: 9999px !important;
}

.cl-rounded-b-full {
  border-bottom-right-radius: 9999px !important;
  border-bottom-left-radius: 9999px !important;
}

.cl-rounded-l-full {
  border-top-left-radius: 9999px !important;
  border-bottom-left-radius: 9999px !important;
}

.cl-rounded-tl-none {
  border-top-left-radius: 0 !important;
}

.cl-rounded-tr-none {
  border-top-right-radius: 0 !important;
}

.cl-rounded-br-none {
  border-bottom-right-radius: 0 !important;
}

.cl-rounded-bl-none {
  border-bottom-left-radius: 0 !important;
}

.cl-rounded-tl-sm {
  border-top-left-radius: 0.125rem !important;
}

.cl-rounded-tr-sm {
  border-top-right-radius: 0.125rem !important;
}

.cl-rounded-br-sm {
  border-bottom-right-radius: 0.125rem !important;
}

.cl-rounded-bl-sm {
  border-bottom-left-radius: 0.125rem !important;
}

.cl-rounded-tl {
  border-top-left-radius: 0.25rem !important;
}

.cl-rounded-tr {
  border-top-right-radius: 0.25rem !important;
}

.cl-rounded-br {
  border-bottom-right-radius: 0.25rem !important;
}

.cl-rounded-bl {
  border-bottom-left-radius: 0.25rem !important;
}

.cl-rounded-tl-md {
  border-top-left-radius: 0.375rem !important;
}

.cl-rounded-tr-md {
  border-top-right-radius: 0.375rem !important;
}

.cl-rounded-br-md {
  border-bottom-right-radius: 0.375rem !important;
}

.cl-rounded-bl-md {
  border-bottom-left-radius: 0.375rem !important;
}

.cl-rounded-tl-lg {
  border-top-left-radius: 0.5rem !important;
}

.cl-rounded-tr-lg {
  border-top-right-radius: 0.5rem !important;
}

.cl-rounded-br-lg {
  border-bottom-right-radius: 0.5rem !important;
}

.cl-rounded-bl-lg {
  border-bottom-left-radius: 0.5rem !important;
}

.cl-rounded-tl-xl {
  border-top-left-radius: 0.75rem !important;
}

.cl-rounded-tr-xl {
  border-top-right-radius: 0.75rem !important;
}

.cl-rounded-br-xl {
  border-bottom-right-radius: 0.75rem !important;
}

.cl-rounded-bl-xl {
  border-bottom-left-radius: 0.75rem !important;
}

.cl-rounded-tl-2xl {
  border-top-left-radius: 1rem !important;
}

.cl-rounded-tr-2xl {
  border-top-right-radius: 1rem !important;
}

.cl-rounded-br-2xl {
  border-bottom-right-radius: 1rem !important;
}

.cl-rounded-bl-2xl {
  border-bottom-left-radius: 1rem !important;
}

.cl-rounded-tl-3xl {
  border-top-left-radius: 1.5rem !important;
}

.cl-rounded-tr-3xl {
  border-top-right-radius: 1.5rem !important;
}

.cl-rounded-br-3xl {
  border-bottom-right-radius: 1.5rem !important;
}

.cl-rounded-bl-3xl {
  border-bottom-left-radius: 1.5rem !important;
}

.cl-rounded-tl-full {
  border-top-left-radius: 9999px !important;
}

.cl-rounded-tr-full {
  border-top-right-radius: 9999px !important;
}

.cl-rounded-br-full {
  border-bottom-right-radius: 9999px !important;
}

.cl-rounded-bl-full {
  border-bottom-left-radius: 9999px !important;
}

.cl-border-solid {
  border-style: solid !important;
}

.cl-border-dashed {
  border-style: dashed !important;
}

.cl-border-dotted {
  border-style: dotted !important;
}

.cl-border-double {
  border-style: double !important;
}

.cl-border-none {
  border-style: none !important;
}

.cl-border-0 {
  border-width: 0 !important;
}

.cl-border-2 {
  border-width: 2px !important;
}

.cl-border-4 {
  border-width: 4px !important;
}

.cl-border-8 {
  border-width: 8px !important;
}

.cl-border-15 {
  border-width: 15px !important;
}

.cl-border {
  border-width: 1px !important;
}

.cl-border-t-0 {
  border-top-width: 0 !important;
}

.cl-border-r-0 {
  border-right-width: 0 !important;
}

.cl-border-b-0 {
  border-bottom-width: 0 !important;
}

.cl-border-l-0 {
  border-left-width: 0 !important;
}

.cl-border-t-2 {
  border-top-width: 2px !important;
}

.cl-border-r-2 {
  border-right-width: 2px !important;
}

.cl-border-b-2 {
  border-bottom-width: 2px !important;
}

.cl-border-l-2 {
  border-left-width: 2px !important;
}

.cl-border-t-4 {
  border-top-width: 4px !important;
}

.cl-border-r-4 {
  border-right-width: 4px !important;
}

.cl-border-b-4 {
  border-bottom-width: 4px !important;
}

.cl-border-l-4 {
  border-left-width: 4px !important;
}

.cl-border-t-8 {
  border-top-width: 8px !important;
}

.cl-border-r-8 {
  border-right-width: 8px !important;
}

.cl-border-b-8 {
  border-bottom-width: 8px !important;
}

.cl-border-l-8 {
  border-left-width: 8px !important;
}

.cl-border-t-15 {
  border-top-width: 15px !important;
}

.cl-border-r-15 {
  border-right-width: 15px !important;
}

.cl-border-b-15 {
  border-bottom-width: 15px !important;
}

.cl-border-l-15 {
  border-left-width: 15px !important;
}

.cl-border-t {
  border-top-width: 1px !important;
}

.cl-border-r {
  border-right-width: 1px !important;
}

.cl-border-b {
  border-bottom-width: 1px !important;
}

.cl-border-l {
  border-left-width: 1px !important;
}

.cl-box-border {
  box-sizing: border-box !important;
}

.cl-box-content {
  box-sizing: content-box !important;
}

.cl-cursor-auto {
  cursor: auto !important;
}

.cl-cursor-default {
  cursor: default !important;
}

.cl-cursor-pointer {
  cursor: pointer !important;
}

.cl-cursor-wait {
  cursor: wait !important;
}

.cl-cursor-text {
  cursor: text !important;
}

.cl-cursor-move {
  cursor: move !important;
}

.cl-cursor-not-allowed {
  cursor: not-allowed !important;
}

.cl-block {
  display: block !important;
}

.cl-inline-block {
  display: inline-block !important;
}

.cl-inline {
  display: inline !important;
}

.cl-flex {
  display: flex !important;
}

.cl-inline-flex {
  display: inline-flex !important;
}

.cl-table {
  display: table !important;
}

.cl-table-caption {
  display: table-caption !important;
}

.cl-table-cell {
  display: table-cell !important;
}

.cl-table-column {
  display: table-column !important;
}

.cl-table-column-group {
  display: table-column-group !important;
}

.cl-table-footer-group {
  display: table-footer-group !important;
}

.cl-table-header-group {
  display: table-header-group !important;
}

.cl-table-row-group {
  display: table-row-group !important;
}

.cl-table-row {
  display: table-row !important;
}

.cl-flow-root {
  display: flow-root !important;
}

.cl-grid {
  display: grid !important;
}

.cl-inline-grid {
  display: inline-grid !important;
}

.cl-contents {
  display: contents !important;
}

.cl-hidden {
  display: none !important;
}

.cl-flex-row {
  flex-direction: row !important;
}

.cl-flex-row-reverse {
  flex-direction: row-reverse !important;
}

.cl-flex-col {
  flex-direction: column !important;
}

.cl-flex-col-reverse {
  flex-direction: column-reverse !important;
}

.cl-flex-wrap {
  flex-wrap: wrap !important;
}

.cl-flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.cl-flex-no-wrap {
  flex-wrap: nowrap !important;
}

.cl-place-items-auto {
  place-items: auto !important;
}

.cl-place-items-start {
  place-items: start !important;
}

.cl-place-items-end {
  place-items: end !important;
}

.cl-place-items-center {
  place-items: center !important;
}

.cl-place-items-stretch {
  place-items: stretch !important;
}

.cl-place-content-center {
  place-content: center !important;
}

.cl-place-content-start {
  place-content: start !important;
}

.cl-place-content-end {
  place-content: end !important;
}

.cl-place-content-between {
  place-content: space-between !important;
}

.cl-place-content-around {
  place-content: space-around !important;
}

.cl-place-content-evenly {
  place-content: space-evenly !important;
}

.cl-place-content-stretch {
  place-content: stretch !important;
}

.cl-place-self-auto {
  place-self: auto !important;
}

.cl-place-self-start {
  place-self: start !important;
}

.cl-place-self-end {
  place-self: end !important;
}

.cl-place-self-center {
  place-self: center !important;
}

.cl-place-self-stretch {
  place-self: stretch !important;
}

.cl-items-start {
  align-items: flex-start !important;
}

.cl-items-end {
  align-items: flex-end !important;
}

.cl-items-center {
  align-items: center !important;
}

.cl-items-baseline {
  align-items: baseline !important;
}

.cl-items-stretch {
  align-items: stretch !important;
}

.cl-content-center {
  align-content: center !important;
}

.cl-content-start {
  align-content: flex-start !important;
}

.cl-content-end {
  align-content: flex-end !important;
}

.cl-content-between {
  align-content: space-between !important;
}

.cl-content-around {
  align-content: space-around !important;
}

.cl-content-evenly {
  align-content: space-evenly !important;
}

.cl-self-auto {
  align-self: auto !important;
}

.cl-self-start {
  align-self: flex-start !important;
}

.cl-self-end {
  align-self: flex-end !important;
}

.cl-self-center {
  align-self: center !important;
}

.cl-self-stretch {
  align-self: stretch !important;
}

.cl-justify-items-auto {
  justify-items: auto !important;
}

.cl-justify-items-start {
  justify-items: start !important;
}

.cl-justify-items-end {
  justify-items: end !important;
}

.cl-justify-items-center {
  justify-items: center !important;
}

.cl-justify-items-stretch {
  justify-items: stretch !important;
}

.cl-justify-start {
  justify-content: flex-start !important;
}

.cl-justify-end {
  justify-content: flex-end !important;
}

.cl-justify-center {
  justify-content: center !important;
}

.cl-justify-between {
  justify-content: space-between !important;
}

.cl-justify-around {
  justify-content: space-around !important;
}

.cl-justify-evenly {
  justify-content: space-evenly !important;
}

.cl-justify-self-auto {
  justify-self: auto !important;
}

.cl-justify-self-start {
  justify-self: start !important;
}

.cl-justify-self-end {
  justify-self: end !important;
}

.cl-justify-self-center {
  justify-self: center !important;
}

.cl-justify-self-stretch {
  justify-self: stretch !important;
}

.cl-flex-1 {
  flex: 1 1 0% !important;
}

.cl-flex-auto {
  flex: 1 1 auto !important;
}

.cl-flex-initial {
  flex: 0 1 auto !important;
}

.cl-flex-none {
  flex: none !important;
}

.cl-flex-grow-0 {
  flex-grow: 0 !important;
}

.cl-flex-grow {
  flex-grow: 1 !important;
}

.cl-flex-shrink-0 {
  flex-shrink: 0 !important;
}

.cl-flex-shrink {
  flex-shrink: 1 !important;
}

.cl-order-1 {
  order: 1 !important;
}

.cl-order-2 {
  order: 2 !important;
}

.cl-order-3 {
  order: 3 !important;
}

.cl-order-4 {
  order: 4 !important;
}

.cl-order-5 {
  order: 5 !important;
}

.cl-order-6 {
  order: 6 !important;
}

.cl-order-7 {
  order: 7 !important;
}

.cl-order-8 {
  order: 8 !important;
}

.cl-order-9 {
  order: 9 !important;
}

.cl-order-10 {
  order: 10 !important;
}

.cl-order-11 {
  order: 11 !important;
}

.cl-order-12 {
  order: 12 !important;
}

.cl-order-first {
  order: -9999 !important;
}

.cl-order-last {
  order: 9999 !important;
}

.cl-order-none {
  order: 0 !important;
}

.cl-float-right {
  float: right !important;
}

.cl-float-left {
  float: left !important;
}

.cl-float-none {
  float: none !important;
}

.cl-clearfix:after {
  content: "" !important;
  display: table !important;
  clear: both !important;
}

.cl-clear-left {
  clear: left !important;
}

.cl-clear-right {
  clear: right !important;
}

.cl-clear-both {
  clear: both !important;
}

.cl-clear-none {
  clear: none !important;
}

.cl-font-sans {
  font-family: Lato, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.cl-font-serif {
  font-family: Georgia, Cambria, "Times New Roman", Times, serif !important;
}

.cl-font-mono {
  font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.cl-font-heading {
  font-family: Corben, cursive, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.cl-font-hairline {
  font-weight: 100 !important;
}

.cl-font-thin {
  font-weight: 200 !important;
}

.cl-font-light {
  font-weight: 300 !important;
}

.cl-font-normal {
  font-weight: 400 !important;
}

.cl-font-medium {
  font-weight: 500 !important;
}

.cl-font-semibold {
  font-weight: 600 !important;
}

.cl-font-bold {
  font-weight: 700 !important;
}

.cl-font-extrabold {
  font-weight: 800 !important;
}

.cl-font-black {
  font-weight: 900 !important;
}

.hover\:cl-font-hairline:hover {
  font-weight: 100 !important;
}

.hover\:cl-font-thin:hover {
  font-weight: 200 !important;
}

.hover\:cl-font-light:hover {
  font-weight: 300 !important;
}

.hover\:cl-font-normal:hover {
  font-weight: 400 !important;
}

.hover\:cl-font-medium:hover {
  font-weight: 500 !important;
}

.hover\:cl-font-semibold:hover {
  font-weight: 600 !important;
}

.hover\:cl-font-bold:hover {
  font-weight: 700 !important;
}

.hover\:cl-font-extrabold:hover {
  font-weight: 800 !important;
}

.hover\:cl-font-black:hover {
  font-weight: 900 !important;
}

.focus\:cl-font-hairline:focus {
  font-weight: 100 !important;
}

.focus\:cl-font-thin:focus {
  font-weight: 200 !important;
}

.focus\:cl-font-light:focus {
  font-weight: 300 !important;
}

.focus\:cl-font-normal:focus {
  font-weight: 400 !important;
}

.focus\:cl-font-medium:focus {
  font-weight: 500 !important;
}

.focus\:cl-font-semibold:focus {
  font-weight: 600 !important;
}

.focus\:cl-font-bold:focus {
  font-weight: 700 !important;
}

.focus\:cl-font-extrabold:focus {
  font-weight: 800 !important;
}

.focus\:cl-font-black:focus {
  font-weight: 900 !important;
}

.cl-h-0 {
  height: 0 !important;
}

.cl-h-1 {
  height: 4px !important;
}

.cl-h-2 {
  height: 8px !important;
}

.cl-h-3 {
  height: 12px !important;
}

.cl-h-4 {
  height: 16px !important;
}

.cl-h-5 {
  height: 20px !important;
}

.cl-h-6 {
  height: 24px !important;
}

.cl-h-8 {
  height: 32px !important;
}

.cl-h-10 {
  height: 40px !important;
}

.cl-h-12 {
  height: 48px !important;
}

.cl-h-16 {
  height: 64px !important;
}

.cl-h-20 {
  height: 80px !important;
}

.cl-h-24 {
  height: 96px !important;
}

.cl-h-26 {
  height: 100px !important;
}

.cl-h-28 {
  height: 110px !important;
}

.cl-h-32 {
  height: 128px !important;
}

.cl-h-40 {
  height: 160px !important;
}

.cl-h-48 {
  height: 192px !important;
}

.cl-h-56 {
  height: 224px !important;
}

.cl-h-64 {
  height: 256px !important;
}

.cl-h-auto {
  height: auto !important;
}

.cl-h-px {
  height: 1px !important;
}

.cl-h-full {
  height: 100% !important;
}

.cl-h-screen {
  height: 100vh !important;
}

.cl-h-1\/2 {
  height: 50% !important;
}

.cl-h-1\/3 {
  height: 33.333333% !important;
}

.cl-h-2\/3 {
  height: 66.666667% !important;
}

.cl-h-1\/4 {
  height: 25% !important;
}

.cl-h-2\/4 {
  height: 50% !important;
}

.cl-h-3\/4 {
  height: 75% !important;
}

.cl-h-1\/5 {
  height: 20% !important;
}

.cl-h-2\/5 {
  height: 40% !important;
}

.cl-h-3\/5 {
  height: 60% !important;
}

.cl-h-4\/5 {
  height: 80% !important;
}

.cl-h-1\/6 {
  height: 16.666667% !important;
}

.cl-h-2\/6 {
  height: 33.333333% !important;
}

.cl-h-3\/6 {
  height: 50% !important;
}

.cl-h-4\/6 {
  height: 66.666667% !important;
}

.cl-h-5\/6 {
  height: 83.333333% !important;
}

.cl-h-1\/12 {
  height: 8.333333% !important;
}

.cl-h-2\/12 {
  height: 16.666667% !important;
}

.cl-h-3\/12 {
  height: 25% !important;
}

.cl-h-4\/12 {
  height: 33.333333% !important;
}

.cl-h-5\/12 {
  height: 41.666667% !important;
}

.cl-h-6\/12 {
  height: 50% !important;
}

.cl-h-7\/12 {
  height: 58.333333% !important;
}

.cl-h-8\/12 {
  height: 66.666667% !important;
}

.cl-h-9\/12 {
  height: 75% !important;
}

.cl-h-10\/12 {
  height: 83.333333% !important;
}

.cl-h-11\/12 {
  height: 91.666667% !important;
}

.cl-text-xxs {
  font-size: 10px !important;
}

.cl-text-xs {
  font-size: 12px !important;
}

.cl-text-sm {
  font-size: 14px !important;
}

.cl-text-base {
  font-size: 16px !important;
}

.cl-text-lg {
  font-size: 18px !important;
}

.cl-text-xl {
  font-size: 20px !important;
}

.cl-text-2xl {
  font-size: 24px !important;
}

.cl-text-3xl {
  font-size: 30px !important;
}

.cl-text-4xl {
  font-size: 36px !important;
}

.cl-text-5xl {
  font-size: 48px !important;
}

.cl-text-6xl {
  font-size: 64px !important;
}

.cl-leading-3 {
  line-height: .75rem !important;
}

.cl-leading-4 {
  line-height: 1rem !important;
}

.cl-leading-5 {
  line-height: 1.25rem !important;
}

.cl-leading-6 {
  line-height: 1.5rem !important;
}

.cl-leading-7 {
  line-height: 1.75rem !important;
}

.cl-leading-8 {
  line-height: 2rem !important;
}

.cl-leading-9 {
  line-height: 2.25rem !important;
}

.cl-leading-10 {
  line-height: 2.5rem !important;
}

.cl-leading-none {
  line-height: 1 !important;
}

.cl-leading-tight {
  line-height: 1.25 !important;
}

.cl-leading-snug {
  line-height: 1.375 !important;
}

.cl-leading-normal {
  line-height: 1.5 !important;
}

.cl-leading-relaxed {
  line-height: 1.625 !important;
}

.cl-leading-loose {
  line-height: 2 !important;
}

.cl-list-inside {
  list-style-position: inside !important;
}

.cl-list-outside {
  list-style-position: outside !important;
}

.cl-list-none {
  list-style-type: none !important;
}

.cl-list-disc {
  list-style-type: disc !important;
}

.cl-list-decimal {
  list-style-type: decimal !important;
}

.cl-m-0 {
  margin: 0 !important;
}

.cl-m-1 {
  margin: 4px !important;
}

.cl-m-2 {
  margin: 8px !important;
}

.cl-m-3 {
  margin: 12px !important;
}

.cl-m-4 {
  margin: 16px !important;
}

.cl-m-5 {
  margin: 20px !important;
}

.cl-m-6 {
  margin: 24px !important;
}

.cl-m-8 {
  margin: 32px !important;
}

.cl-m-10 {
  margin: 40px !important;
}

.cl-m-12 {
  margin: 48px !important;
}

.cl-m-16 {
  margin: 64px !important;
}

.cl-m-20 {
  margin: 80px !important;
}

.cl-m-24 {
  margin: 96px !important;
}

.cl-m-26 {
  margin: 100px !important;
}

.cl-m-28 {
  margin: 110px !important;
}

.cl-m-32 {
  margin: 128px !important;
}

.cl-m-40 {
  margin: 160px !important;
}

.cl-m-48 {
  margin: 192px !important;
}

.cl-m-56 {
  margin: 224px !important;
}

.cl-m-64 {
  margin: 256px !important;
}

.cl-m-auto {
  margin: auto !important;
}

.cl-m-px {
  margin: 1px !important;
}

.cl--m-1 {
  margin: -4px !important;
}

.cl--m-2 {
  margin: -8px !important;
}

.cl--m-3 {
  margin: -12px !important;
}

.cl--m-4 {
  margin: -16px !important;
}

.cl--m-5 {
  margin: -20px !important;
}

.cl--m-6 {
  margin: -24px !important;
}

.cl--m-8 {
  margin: -32px !important;
}

.cl--m-10 {
  margin: -40px !important;
}

.cl--m-12 {
  margin: -48px !important;
}

.cl--m-16 {
  margin: -64px !important;
}

.cl--m-20 {
  margin: -80px !important;
}

.cl--m-24 {
  margin: -96px !important;
}

.cl--m-26 {
  margin: -100px !important;
}

.cl--m-28 {
  margin: -110px !important;
}

.cl--m-32 {
  margin: -128px !important;
}

.cl--m-40 {
  margin: -160px !important;
}

.cl--m-48 {
  margin: -192px !important;
}

.cl--m-56 {
  margin: -224px !important;
}

.cl--m-64 {
  margin: -256px !important;
}

.cl--m-px {
  margin: -1px !important;
}

.cl-my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.cl-mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.cl-my-1 {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

.cl-mx-1 {
  margin-left: 4px !important;
  margin-right: 4px !important;
}

.cl-my-2 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.cl-mx-2 {
  margin-left: 8px !important;
  margin-right: 8px !important;
}

.cl-my-3 {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

.cl-mx-3 {
  margin-left: 12px !important;
  margin-right: 12px !important;
}

.cl-my-4 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.cl-mx-4 {
  margin-left: 16px !important;
  margin-right: 16px !important;
}

.cl-my-5 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.cl-mx-5 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

.cl-my-6 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.cl-mx-6 {
  margin-left: 24px !important;
  margin-right: 24px !important;
}

.cl-my-8 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.cl-mx-8 {
  margin-left: 32px !important;
  margin-right: 32px !important;
}

.cl-my-10 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.cl-mx-10 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}

.cl-my-12 {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

.cl-mx-12 {
  margin-left: 48px !important;
  margin-right: 48px !important;
}

.cl-my-16 {
  margin-top: 64px !important;
  margin-bottom: 64px !important;
}

.cl-mx-16 {
  margin-left: 64px !important;
  margin-right: 64px !important;
}

.cl-my-20 {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
}

.cl-mx-20 {
  margin-left: 80px !important;
  margin-right: 80px !important;
}

.cl-my-24 {
  margin-top: 96px !important;
  margin-bottom: 96px !important;
}

.cl-mx-24 {
  margin-left: 96px !important;
  margin-right: 96px !important;
}

.cl-my-26 {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}

.cl-mx-26 {
  margin-left: 100px !important;
  margin-right: 100px !important;
}

.cl-my-28 {
  margin-top: 110px !important;
  margin-bottom: 110px !important;
}

.cl-mx-28 {
  margin-left: 110px !important;
  margin-right: 110px !important;
}

.cl-my-32 {
  margin-top: 128px !important;
  margin-bottom: 128px !important;
}

.cl-mx-32 {
  margin-left: 128px !important;
  margin-right: 128px !important;
}

.cl-my-40 {
  margin-top: 160px !important;
  margin-bottom: 160px !important;
}

.cl-mx-40 {
  margin-left: 160px !important;
  margin-right: 160px !important;
}

.cl-my-48 {
  margin-top: 192px !important;
  margin-bottom: 192px !important;
}

.cl-mx-48 {
  margin-left: 192px !important;
  margin-right: 192px !important;
}

.cl-my-56 {
  margin-top: 224px !important;
  margin-bottom: 224px !important;
}

.cl-mx-56 {
  margin-left: 224px !important;
  margin-right: 224px !important;
}

.cl-my-64 {
  margin-top: 256px !important;
  margin-bottom: 256px !important;
}

.cl-mx-64 {
  margin-left: 256px !important;
  margin-right: 256px !important;
}

.cl-my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.cl-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

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

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

.cl--my-1 {
  margin-top: -4px !important;
  margin-bottom: -4px !important;
}

.cl--mx-1 {
  margin-left: -4px !important;
  margin-right: -4px !important;
}

.cl--my-2 {
  margin-top: -8px !important;
  margin-bottom: -8px !important;
}

.cl--mx-2 {
  margin-left: -8px !important;
  margin-right: -8px !important;
}

.cl--my-3 {
  margin-top: -12px !important;
  margin-bottom: -12px !important;
}

.cl--mx-3 {
  margin-left: -12px !important;
  margin-right: -12px !important;
}

.cl--my-4 {
  margin-top: -16px !important;
  margin-bottom: -16px !important;
}

.cl--mx-4 {
  margin-left: -16px !important;
  margin-right: -16px !important;
}

.cl--my-5 {
  margin-top: -20px !important;
  margin-bottom: -20px !important;
}

.cl--mx-5 {
  margin-left: -20px !important;
  margin-right: -20px !important;
}

.cl--my-6 {
  margin-top: -24px !important;
  margin-bottom: -24px !important;
}

.cl--mx-6 {
  margin-left: -24px !important;
  margin-right: -24px !important;
}

.cl--my-8 {
  margin-top: -32px !important;
  margin-bottom: -32px !important;
}

.cl--mx-8 {
  margin-left: -32px !important;
  margin-right: -32px !important;
}

.cl--my-10 {
  margin-top: -40px !important;
  margin-bottom: -40px !important;
}

.cl--mx-10 {
  margin-left: -40px !important;
  margin-right: -40px !important;
}

.cl--my-12 {
  margin-top: -48px !important;
  margin-bottom: -48px !important;
}

.cl--mx-12 {
  margin-left: -48px !important;
  margin-right: -48px !important;
}

.cl--my-16 {
  margin-top: -64px !important;
  margin-bottom: -64px !important;
}

.cl--mx-16 {
  margin-left: -64px !important;
  margin-right: -64px !important;
}

.cl--my-20 {
  margin-top: -80px !important;
  margin-bottom: -80px !important;
}

.cl--mx-20 {
  margin-left: -80px !important;
  margin-right: -80px !important;
}

.cl--my-24 {
  margin-top: -96px !important;
  margin-bottom: -96px !important;
}

.cl--mx-24 {
  margin-left: -96px !important;
  margin-right: -96px !important;
}

.cl--my-26 {
  margin-top: -100px !important;
  margin-bottom: -100px !important;
}

.cl--mx-26 {
  margin-left: -100px !important;
  margin-right: -100px !important;
}

.cl--my-28 {
  margin-top: -110px !important;
  margin-bottom: -110px !important;
}

.cl--mx-28 {
  margin-left: -110px !important;
  margin-right: -110px !important;
}

.cl--my-32 {
  margin-top: -128px !important;
  margin-bottom: -128px !important;
}

.cl--mx-32 {
  margin-left: -128px !important;
  margin-right: -128px !important;
}

.cl--my-40 {
  margin-top: -160px !important;
  margin-bottom: -160px !important;
}

.cl--mx-40 {
  margin-left: -160px !important;
  margin-right: -160px !important;
}

.cl--my-48 {
  margin-top: -192px !important;
  margin-bottom: -192px !important;
}

.cl--mx-48 {
  margin-left: -192px !important;
  margin-right: -192px !important;
}

.cl--my-56 {
  margin-top: -224px !important;
  margin-bottom: -224px !important;
}

.cl--mx-56 {
  margin-left: -224px !important;
  margin-right: -224px !important;
}

.cl--my-64 {
  margin-top: -256px !important;
  margin-bottom: -256px !important;
}

.cl--mx-64 {
  margin-left: -256px !important;
  margin-right: -256px !important;
}

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

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

.cl-mt-0 {
  margin-top: 0 !important;
}

.cl-mr-0 {
  margin-right: 0 !important;
}

.cl-mb-0 {
  margin-bottom: 0 !important;
}

.cl-ml-0 {
  margin-left: 0 !important;
}

.cl-mt-1 {
  margin-top: 4px !important;
}

.cl-mr-1 {
  margin-right: 4px !important;
}

.cl-mb-1 {
  margin-bottom: 4px !important;
}

.cl-ml-1 {
  margin-left: 4px !important;
}

.cl-mt-2 {
  margin-top: 8px !important;
}

.cl-mr-2 {
  margin-right: 8px !important;
}

.cl-mb-2 {
  margin-bottom: 8px !important;
}

.cl-ml-2 {
  margin-left: 8px !important;
}

.cl-mt-3 {
  margin-top: 12px !important;
}

.cl-mr-3 {
  margin-right: 12px !important;
}

.cl-mb-3 {
  margin-bottom: 12px !important;
}

.cl-ml-3 {
  margin-left: 12px !important;
}

.cl-mt-4 {
  margin-top: 16px !important;
}

.cl-mr-4 {
  margin-right: 16px !important;
}

.cl-mb-4 {
  margin-bottom: 16px !important;
}

.cl-ml-4 {
  margin-left: 16px !important;
}

.cl-mt-5 {
  margin-top: 20px !important;
}

.cl-mr-5 {
  margin-right: 20px !important;
}

.cl-mb-5 {
  margin-bottom: 20px !important;
}

.cl-ml-5 {
  margin-left: 20px !important;
}

.cl-mt-6 {
  margin-top: 24px !important;
}

.cl-mr-6 {
  margin-right: 24px !important;
}

.cl-mb-6 {
  margin-bottom: 24px !important;
}

.cl-ml-6 {
  margin-left: 24px !important;
}

.cl-mt-8 {
  margin-top: 32px !important;
}

.cl-mr-8 {
  margin-right: 32px !important;
}

.cl-mb-8 {
  margin-bottom: 32px !important;
}

.cl-ml-8 {
  margin-left: 32px !important;
}

.cl-mt-10 {
  margin-top: 40px !important;
}

.cl-mr-10 {
  margin-right: 40px !important;
}

.cl-mb-10 {
  margin-bottom: 40px !important;
}

.cl-ml-10 {
  margin-left: 40px !important;
}

.cl-mt-12 {
  margin-top: 48px !important;
}

.cl-mr-12 {
  margin-right: 48px !important;
}

.cl-mb-12 {
  margin-bottom: 48px !important;
}

.cl-ml-12 {
  margin-left: 48px !important;
}

.cl-mt-16 {
  margin-top: 64px !important;
}

.cl-mr-16 {
  margin-right: 64px !important;
}

.cl-mb-16 {
  margin-bottom: 64px !important;
}

.cl-ml-16 {
  margin-left: 64px !important;
}

.cl-mt-20 {
  margin-top: 80px !important;
}

.cl-mr-20 {
  margin-right: 80px !important;
}

.cl-mb-20 {
  margin-bottom: 80px !important;
}

.cl-ml-20 {
  margin-left: 80px !important;
}

.cl-mt-24 {
  margin-top: 96px !important;
}

.cl-mr-24 {
  margin-right: 96px !important;
}

.cl-mb-24 {
  margin-bottom: 96px !important;
}

.cl-ml-24 {
  margin-left: 96px !important;
}

.cl-mt-26 {
  margin-top: 100px !important;
}

.cl-mr-26 {
  margin-right: 100px !important;
}

.cl-mb-26 {
  margin-bottom: 100px !important;
}

.cl-ml-26 {
  margin-left: 100px !important;
}

.cl-mt-28 {
  margin-top: 110px !important;
}

.cl-mr-28 {
  margin-right: 110px !important;
}

.cl-mb-28 {
  margin-bottom: 110px !important;
}

.cl-ml-28 {
  margin-left: 110px !important;
}

.cl-mt-32 {
  margin-top: 128px !important;
}

.cl-mr-32 {
  margin-right: 128px !important;
}

.cl-mb-32 {
  margin-bottom: 128px !important;
}

.cl-ml-32 {
  margin-left: 128px !important;
}

.cl-mt-40 {
  margin-top: 160px !important;
}

.cl-mr-40 {
  margin-right: 160px !important;
}

.cl-mb-40 {
  margin-bottom: 160px !important;
}

.cl-ml-40 {
  margin-left: 160px !important;
}

.cl-mt-48 {
  margin-top: 192px !important;
}

.cl-mr-48 {
  margin-right: 192px !important;
}

.cl-mb-48 {
  margin-bottom: 192px !important;
}

.cl-ml-48 {
  margin-left: 192px !important;
}

.cl-mt-56 {
  margin-top: 224px !important;
}

.cl-mr-56 {
  margin-right: 224px !important;
}

.cl-mb-56 {
  margin-bottom: 224px !important;
}

.cl-ml-56 {
  margin-left: 224px !important;
}

.cl-mt-64 {
  margin-top: 256px !important;
}

.cl-mr-64 {
  margin-right: 256px !important;
}

.cl-mb-64 {
  margin-bottom: 256px !important;
}

.cl-ml-64 {
  margin-left: 256px !important;
}

.cl-mt-auto {
  margin-top: auto !important;
}

.cl-mr-auto {
  margin-right: auto !important;
}

.cl-mb-auto {
  margin-bottom: auto !important;
}

.cl-ml-auto {
  margin-left: auto !important;
}

.cl-mt-px {
  margin-top: 1px !important;
}

.cl-mr-px {
  margin-right: 1px !important;
}

.cl-mb-px {
  margin-bottom: 1px !important;
}

.cl-ml-px {
  margin-left: 1px !important;
}

.cl--mt-1 {
  margin-top: -4px !important;
}

.cl--mr-1 {
  margin-right: -4px !important;
}

.cl--mb-1 {
  margin-bottom: -4px !important;
}

.cl--ml-1 {
  margin-left: -4px !important;
}

.cl--mt-2 {
  margin-top: -8px !important;
}

.cl--mr-2 {
  margin-right: -8px !important;
}

.cl--mb-2 {
  margin-bottom: -8px !important;
}

.cl--ml-2 {
  margin-left: -8px !important;
}

.cl--mt-3 {
  margin-top: -12px !important;
}

.cl--mr-3 {
  margin-right: -12px !important;
}

.cl--mb-3 {
  margin-bottom: -12px !important;
}

.cl--ml-3 {
  margin-left: -12px !important;
}

.cl--mt-4 {
  margin-top: -16px !important;
}

.cl--mr-4 {
  margin-right: -16px !important;
}

.cl--mb-4 {
  margin-bottom: -16px !important;
}

.cl--ml-4 {
  margin-left: -16px !important;
}

.cl--mt-5 {
  margin-top: -20px !important;
}

.cl--mr-5 {
  margin-right: -20px !important;
}

.cl--mb-5 {
  margin-bottom: -20px !important;
}

.cl--ml-5 {
  margin-left: -20px !important;
}

.cl--mt-6 {
  margin-top: -24px !important;
}

.cl--mr-6 {
  margin-right: -24px !important;
}

.cl--mb-6 {
  margin-bottom: -24px !important;
}

.cl--ml-6 {
  margin-left: -24px !important;
}

.cl--mt-8 {
  margin-top: -32px !important;
}

.cl--mr-8 {
  margin-right: -32px !important;
}

.cl--mb-8 {
  margin-bottom: -32px !important;
}

.cl--ml-8 {
  margin-left: -32px !important;
}

.cl--mt-10 {
  margin-top: -40px !important;
}

.cl--mr-10 {
  margin-right: -40px !important;
}

.cl--mb-10 {
  margin-bottom: -40px !important;
}

.cl--ml-10 {
  margin-left: -40px !important;
}

.cl--mt-12 {
  margin-top: -48px !important;
}

.cl--mr-12 {
  margin-right: -48px !important;
}

.cl--mb-12 {
  margin-bottom: -48px !important;
}

.cl--ml-12 {
  margin-left: -48px !important;
}

.cl--mt-16 {
  margin-top: -64px !important;
}

.cl--mr-16 {
  margin-right: -64px !important;
}

.cl--mb-16 {
  margin-bottom: -64px !important;
}

.cl--ml-16 {
  margin-left: -64px !important;
}

.cl--mt-20 {
  margin-top: -80px !important;
}

.cl--mr-20 {
  margin-right: -80px !important;
}

.cl--mb-20 {
  margin-bottom: -80px !important;
}

.cl--ml-20 {
  margin-left: -80px !important;
}

.cl--mt-24 {
  margin-top: -96px !important;
}

.cl--mr-24 {
  margin-right: -96px !important;
}

.cl--mb-24 {
  margin-bottom: -96px !important;
}

.cl--ml-24 {
  margin-left: -96px !important;
}

.cl--mt-26 {
  margin-top: -100px !important;
}

.cl--mr-26 {
  margin-right: -100px !important;
}

.cl--mb-26 {
  margin-bottom: -100px !important;
}

.cl--ml-26 {
  margin-left: -100px !important;
}

.cl--mt-28 {
  margin-top: -110px !important;
}

.cl--mr-28 {
  margin-right: -110px !important;
}

.cl--mb-28 {
  margin-bottom: -110px !important;
}

.cl--ml-28 {
  margin-left: -110px !important;
}

.cl--mt-32 {
  margin-top: -128px !important;
}

.cl--mr-32 {
  margin-right: -128px !important;
}

.cl--mb-32 {
  margin-bottom: -128px !important;
}

.cl--ml-32 {
  margin-left: -128px !important;
}

.cl--mt-40 {
  margin-top: -160px !important;
}

.cl--mr-40 {
  margin-right: -160px !important;
}

.cl--mb-40 {
  margin-bottom: -160px !important;
}

.cl--ml-40 {
  margin-left: -160px !important;
}

.cl--mt-48 {
  margin-top: -192px !important;
}

.cl--mr-48 {
  margin-right: -192px !important;
}

.cl--mb-48 {
  margin-bottom: -192px !important;
}

.cl--ml-48 {
  margin-left: -192px !important;
}

.cl--mt-56 {
  margin-top: -224px !important;
}

.cl--mr-56 {
  margin-right: -224px !important;
}

.cl--mb-56 {
  margin-bottom: -224px !important;
}

.cl--ml-56 {
  margin-left: -224px !important;
}

.cl--mt-64 {
  margin-top: -256px !important;
}

.cl--mr-64 {
  margin-right: -256px !important;
}

.cl--mb-64 {
  margin-bottom: -256px !important;
}

.cl--ml-64 {
  margin-left: -256px !important;
}

.cl--mt-px {
  margin-top: -1px !important;
}

.cl--mr-px {
  margin-right: -1px !important;
}

.cl--mb-px {
  margin-bottom: -1px !important;
}

.cl--ml-px {
  margin-left: -1px !important;
}

.active\:cl-m-0:active {
  margin: 0 !important;
}

.active\:cl-m-1:active {
  margin: 4px !important;
}

.active\:cl-m-2:active {
  margin: 8px !important;
}

.active\:cl-m-3:active {
  margin: 12px !important;
}

.active\:cl-m-4:active {
  margin: 16px !important;
}

.active\:cl-m-5:active {
  margin: 20px !important;
}

.active\:cl-m-6:active {
  margin: 24px !important;
}

.active\:cl-m-8:active {
  margin: 32px !important;
}

.active\:cl-m-10:active {
  margin: 40px !important;
}

.active\:cl-m-12:active {
  margin: 48px !important;
}

.active\:cl-m-16:active {
  margin: 64px !important;
}

.active\:cl-m-20:active {
  margin: 80px !important;
}

.active\:cl-m-24:active {
  margin: 96px !important;
}

.active\:cl-m-26:active {
  margin: 100px !important;
}

.active\:cl-m-28:active {
  margin: 110px !important;
}

.active\:cl-m-32:active {
  margin: 128px !important;
}

.active\:cl-m-40:active {
  margin: 160px !important;
}

.active\:cl-m-48:active {
  margin: 192px !important;
}

.active\:cl-m-56:active {
  margin: 224px !important;
}

.active\:cl-m-64:active {
  margin: 256px !important;
}

.active\:cl-m-auto:active {
  margin: auto !important;
}

.active\:cl-m-px:active {
  margin: 1px !important;
}

.active\:cl--m-1:active {
  margin: -4px !important;
}

.active\:cl--m-2:active {
  margin: -8px !important;
}

.active\:cl--m-3:active {
  margin: -12px !important;
}

.active\:cl--m-4:active {
  margin: -16px !important;
}

.active\:cl--m-5:active {
  margin: -20px !important;
}

.active\:cl--m-6:active {
  margin: -24px !important;
}

.active\:cl--m-8:active {
  margin: -32px !important;
}

.active\:cl--m-10:active {
  margin: -40px !important;
}

.active\:cl--m-12:active {
  margin: -48px !important;
}

.active\:cl--m-16:active {
  margin: -64px !important;
}

.active\:cl--m-20:active {
  margin: -80px !important;
}

.active\:cl--m-24:active {
  margin: -96px !important;
}

.active\:cl--m-26:active {
  margin: -100px !important;
}

.active\:cl--m-28:active {
  margin: -110px !important;
}

.active\:cl--m-32:active {
  margin: -128px !important;
}

.active\:cl--m-40:active {
  margin: -160px !important;
}

.active\:cl--m-48:active {
  margin: -192px !important;
}

.active\:cl--m-56:active {
  margin: -224px !important;
}

.active\:cl--m-64:active {
  margin: -256px !important;
}

.active\:cl--m-px:active {
  margin: -1px !important;
}

.active\:cl-my-0:active {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.active\:cl-mx-0:active {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.active\:cl-my-1:active {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

.active\:cl-mx-1:active {
  margin-left: 4px !important;
  margin-right: 4px !important;
}

.active\:cl-my-2:active {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.active\:cl-mx-2:active {
  margin-left: 8px !important;
  margin-right: 8px !important;
}

.active\:cl-my-3:active {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

.active\:cl-mx-3:active {
  margin-left: 12px !important;
  margin-right: 12px !important;
}

.active\:cl-my-4:active {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.active\:cl-mx-4:active {
  margin-left: 16px !important;
  margin-right: 16px !important;
}

.active\:cl-my-5:active {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.active\:cl-mx-5:active {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

.active\:cl-my-6:active {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.active\:cl-mx-6:active {
  margin-left: 24px !important;
  margin-right: 24px !important;
}

.active\:cl-my-8:active {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.active\:cl-mx-8:active {
  margin-left: 32px !important;
  margin-right: 32px !important;
}

.active\:cl-my-10:active {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.active\:cl-mx-10:active {
  margin-left: 40px !important;
  margin-right: 40px !important;
}

.active\:cl-my-12:active {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

.active\:cl-mx-12:active {
  margin-left: 48px !important;
  margin-right: 48px !important;
}

.active\:cl-my-16:active {
  margin-top: 64px !important;
  margin-bottom: 64px !important;
}

.active\:cl-mx-16:active {
  margin-left: 64px !important;
  margin-right: 64px !important;
}

.active\:cl-my-20:active {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
}

.active\:cl-mx-20:active {
  margin-left: 80px !important;
  margin-right: 80px !important;
}

.active\:cl-my-24:active {
  margin-top: 96px !important;
  margin-bottom: 96px !important;
}

.active\:cl-mx-24:active {
  margin-left: 96px !important;
  margin-right: 96px !important;
}

.active\:cl-my-26:active {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}

.active\:cl-mx-26:active {
  margin-left: 100px !important;
  margin-right: 100px !important;
}

.active\:cl-my-28:active {
  margin-top: 110px !important;
  margin-bottom: 110px !important;
}

.active\:cl-mx-28:active {
  margin-left: 110px !important;
  margin-right: 110px !important;
}

.active\:cl-my-32:active {
  margin-top: 128px !important;
  margin-bottom: 128px !important;
}

.active\:cl-mx-32:active {
  margin-left: 128px !important;
  margin-right: 128px !important;
}

.active\:cl-my-40:active {
  margin-top: 160px !important;
  margin-bottom: 160px !important;
}

.active\:cl-mx-40:active {
  margin-left: 160px !important;
  margin-right: 160px !important;
}

.active\:cl-my-48:active {
  margin-top: 192px !important;
  margin-bottom: 192px !important;
}

.active\:cl-mx-48:active {
  margin-left: 192px !important;
  margin-right: 192px !important;
}

.active\:cl-my-56:active {
  margin-top: 224px !important;
  margin-bottom: 224px !important;
}

.active\:cl-mx-56:active {
  margin-left: 224px !important;
  margin-right: 224px !important;
}

.active\:cl-my-64:active {
  margin-top: 256px !important;
  margin-bottom: 256px !important;
}

.active\:cl-mx-64:active {
  margin-left: 256px !important;
  margin-right: 256px !important;
}

.active\:cl-my-auto:active {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.active\:cl-mx-auto:active {
  margin-left: auto !important;
  margin-right: auto !important;
}

.active\:cl-my-px:active {
  margin-top: 1px !important;
  margin-bottom: 1px !important;
}

.active\:cl-mx-px:active {
  margin-left: 1px !important;
  margin-right: 1px !important;
}

.active\:cl--my-1:active {
  margin-top: -4px !important;
  margin-bottom: -4px !important;
}

.active\:cl--mx-1:active {
  margin-left: -4px !important;
  margin-right: -4px !important;
}

.active\:cl--my-2:active {
  margin-top: -8px !important;
  margin-bottom: -8px !important;
}

.active\:cl--mx-2:active {
  margin-left: -8px !important;
  margin-right: -8px !important;
}

.active\:cl--my-3:active {
  margin-top: -12px !important;
  margin-bottom: -12px !important;
}

.active\:cl--mx-3:active {
  margin-left: -12px !important;
  margin-right: -12px !important;
}

.active\:cl--my-4:active {
  margin-top: -16px !important;
  margin-bottom: -16px !important;
}

.active\:cl--mx-4:active {
  margin-left: -16px !important;
  margin-right: -16px !important;
}

.active\:cl--my-5:active {
  margin-top: -20px !important;
  margin-bottom: -20px !important;
}

.active\:cl--mx-5:active {
  margin-left: -20px !important;
  margin-right: -20px !important;
}

.active\:cl--my-6:active {
  margin-top: -24px !important;
  margin-bottom: -24px !important;
}

.active\:cl--mx-6:active {
  margin-left: -24px !important;
  margin-right: -24px !important;
}

.active\:cl--my-8:active {
  margin-top: -32px !important;
  margin-bottom: -32px !important;
}

.active\:cl--mx-8:active {
  margin-left: -32px !important;
  margin-right: -32px !important;
}

.active\:cl--my-10:active {
  margin-top: -40px !important;
  margin-bottom: -40px !important;
}

.active\:cl--mx-10:active {
  margin-left: -40px !important;
  margin-right: -40px !important;
}

.active\:cl--my-12:active {
  margin-top: -48px !important;
  margin-bottom: -48px !important;
}

.active\:cl--mx-12:active {
  margin-left: -48px !important;
  margin-right: -48px !important;
}

.active\:cl--my-16:active {
  margin-top: -64px !important;
  margin-bottom: -64px !important;
}

.active\:cl--mx-16:active {
  margin-left: -64px !important;
  margin-right: -64px !important;
}

.active\:cl--my-20:active {
  margin-top: -80px !important;
  margin-bottom: -80px !important;
}

.active\:cl--mx-20:active {
  margin-left: -80px !important;
  margin-right: -80px !important;
}

.active\:cl--my-24:active {
  margin-top: -96px !important;
  margin-bottom: -96px !important;
}

.active\:cl--mx-24:active {
  margin-left: -96px !important;
  margin-right: -96px !important;
}

.active\:cl--my-26:active {
  margin-top: -100px !important;
  margin-bottom: -100px !important;
}

.active\:cl--mx-26:active {
  margin-left: -100px !important;
  margin-right: -100px !important;
}

.active\:cl--my-28:active {
  margin-top: -110px !important;
  margin-bottom: -110px !important;
}

.active\:cl--mx-28:active {
  margin-left: -110px !important;
  margin-right: -110px !important;
}

.active\:cl--my-32:active {
  margin-top: -128px !important;
  margin-bottom: -128px !important;
}

.active\:cl--mx-32:active {
  margin-left: -128px !important;
  margin-right: -128px !important;
}

.active\:cl--my-40:active {
  margin-top: -160px !important;
  margin-bottom: -160px !important;
}

.active\:cl--mx-40:active {
  margin-left: -160px !important;
  margin-right: -160px !important;
}

.active\:cl--my-48:active {
  margin-top: -192px !important;
  margin-bottom: -192px !important;
}

.active\:cl--mx-48:active {
  margin-left: -192px !important;
  margin-right: -192px !important;
}

.active\:cl--my-56:active {
  margin-top: -224px !important;
  margin-bottom: -224px !important;
}

.active\:cl--mx-56:active {
  margin-left: -224px !important;
  margin-right: -224px !important;
}

.active\:cl--my-64:active {
  margin-top: -256px !important;
  margin-bottom: -256px !important;
}

.active\:cl--mx-64:active {
  margin-left: -256px !important;
  margin-right: -256px !important;
}

.active\:cl--my-px:active {
  margin-top: -1px !important;
  margin-bottom: -1px !important;
}

.active\:cl--mx-px:active {
  margin-left: -1px !important;
  margin-right: -1px !important;
}

.active\:cl-mt-0:active {
  margin-top: 0 !important;
}

.active\:cl-mr-0:active {
  margin-right: 0 !important;
}

.active\:cl-mb-0:active {
  margin-bottom: 0 !important;
}

.active\:cl-ml-0:active {
  margin-left: 0 !important;
}

.active\:cl-mt-1:active {
  margin-top: 4px !important;
}

.active\:cl-mr-1:active {
  margin-right: 4px !important;
}

.active\:cl-mb-1:active {
  margin-bottom: 4px !important;
}

.active\:cl-ml-1:active {
  margin-left: 4px !important;
}

.active\:cl-mt-2:active {
  margin-top: 8px !important;
}

.active\:cl-mr-2:active {
  margin-right: 8px !important;
}

.active\:cl-mb-2:active {
  margin-bottom: 8px !important;
}

.active\:cl-ml-2:active {
  margin-left: 8px !important;
}

.active\:cl-mt-3:active {
  margin-top: 12px !important;
}

.active\:cl-mr-3:active {
  margin-right: 12px !important;
}

.active\:cl-mb-3:active {
  margin-bottom: 12px !important;
}

.active\:cl-ml-3:active {
  margin-left: 12px !important;
}

.active\:cl-mt-4:active {
  margin-top: 16px !important;
}

.active\:cl-mr-4:active {
  margin-right: 16px !important;
}

.active\:cl-mb-4:active {
  margin-bottom: 16px !important;
}

.active\:cl-ml-4:active {
  margin-left: 16px !important;
}

.active\:cl-mt-5:active {
  margin-top: 20px !important;
}

.active\:cl-mr-5:active {
  margin-right: 20px !important;
}

.active\:cl-mb-5:active {
  margin-bottom: 20px !important;
}

.active\:cl-ml-5:active {
  margin-left: 20px !important;
}

.active\:cl-mt-6:active {
  margin-top: 24px !important;
}

.active\:cl-mr-6:active {
  margin-right: 24px !important;
}

.active\:cl-mb-6:active {
  margin-bottom: 24px !important;
}

.active\:cl-ml-6:active {
  margin-left: 24px !important;
}

.active\:cl-mt-8:active {
  margin-top: 32px !important;
}

.active\:cl-mr-8:active {
  margin-right: 32px !important;
}

.active\:cl-mb-8:active {
  margin-bottom: 32px !important;
}

.active\:cl-ml-8:active {
  margin-left: 32px !important;
}

.active\:cl-mt-10:active {
  margin-top: 40px !important;
}

.active\:cl-mr-10:active {
  margin-right: 40px !important;
}

.active\:cl-mb-10:active {
  margin-bottom: 40px !important;
}

.active\:cl-ml-10:active {
  margin-left: 40px !important;
}

.active\:cl-mt-12:active {
  margin-top: 48px !important;
}

.active\:cl-mr-12:active {
  margin-right: 48px !important;
}

.active\:cl-mb-12:active {
  margin-bottom: 48px !important;
}

.active\:cl-ml-12:active {
  margin-left: 48px !important;
}

.active\:cl-mt-16:active {
  margin-top: 64px !important;
}

.active\:cl-mr-16:active {
  margin-right: 64px !important;
}

.active\:cl-mb-16:active {
  margin-bottom: 64px !important;
}

.active\:cl-ml-16:active {
  margin-left: 64px !important;
}

.active\:cl-mt-20:active {
  margin-top: 80px !important;
}

.active\:cl-mr-20:active {
  margin-right: 80px !important;
}

.active\:cl-mb-20:active {
  margin-bottom: 80px !important;
}

.active\:cl-ml-20:active {
  margin-left: 80px !important;
}

.active\:cl-mt-24:active {
  margin-top: 96px !important;
}

.active\:cl-mr-24:active {
  margin-right: 96px !important;
}

.active\:cl-mb-24:active {
  margin-bottom: 96px !important;
}

.active\:cl-ml-24:active {
  margin-left: 96px !important;
}

.active\:cl-mt-26:active {
  margin-top: 100px !important;
}

.active\:cl-mr-26:active {
  margin-right: 100px !important;
}

.active\:cl-mb-26:active {
  margin-bottom: 100px !important;
}

.active\:cl-ml-26:active {
  margin-left: 100px !important;
}

.active\:cl-mt-28:active {
  margin-top: 110px !important;
}

.active\:cl-mr-28:active {
  margin-right: 110px !important;
}

.active\:cl-mb-28:active {
  margin-bottom: 110px !important;
}

.active\:cl-ml-28:active {
  margin-left: 110px !important;
}

.active\:cl-mt-32:active {
  margin-top: 128px !important;
}

.active\:cl-mr-32:active {
  margin-right: 128px !important;
}

.active\:cl-mb-32:active {
  margin-bottom: 128px !important;
}

.active\:cl-ml-32:active {
  margin-left: 128px !important;
}

.active\:cl-mt-40:active {
  margin-top: 160px !important;
}

.active\:cl-mr-40:active {
  margin-right: 160px !important;
}

.active\:cl-mb-40:active {
  margin-bottom: 160px !important;
}

.active\:cl-ml-40:active {
  margin-left: 160px !important;
}

.active\:cl-mt-48:active {
  margin-top: 192px !important;
}

.active\:cl-mr-48:active {
  margin-right: 192px !important;
}

.active\:cl-mb-48:active {
  margin-bottom: 192px !important;
}

.active\:cl-ml-48:active {
  margin-left: 192px !important;
}

.active\:cl-mt-56:active {
  margin-top: 224px !important;
}

.active\:cl-mr-56:active {
  margin-right: 224px !important;
}

.active\:cl-mb-56:active {
  margin-bottom: 224px !important;
}

.active\:cl-ml-56:active {
  margin-left: 224px !important;
}

.active\:cl-mt-64:active {
  margin-top: 256px !important;
}

.active\:cl-mr-64:active {
  margin-right: 256px !important;
}

.active\:cl-mb-64:active {
  margin-bottom: 256px !important;
}

.active\:cl-ml-64:active {
  margin-left: 256px !important;
}

.active\:cl-mt-auto:active {
  margin-top: auto !important;
}

.active\:cl-mr-auto:active {
  margin-right: auto !important;
}

.active\:cl-mb-auto:active {
  margin-bottom: auto !important;
}

.active\:cl-ml-auto:active {
  margin-left: auto !important;
}

.active\:cl-mt-px:active {
  margin-top: 1px !important;
}

.active\:cl-mr-px:active {
  margin-right: 1px !important;
}

.active\:cl-mb-px:active {
  margin-bottom: 1px !important;
}

.active\:cl-ml-px:active {
  margin-left: 1px !important;
}

.active\:cl--mt-1:active {
  margin-top: -4px !important;
}

.active\:cl--mr-1:active {
  margin-right: -4px !important;
}

.active\:cl--mb-1:active {
  margin-bottom: -4px !important;
}

.active\:cl--ml-1:active {
  margin-left: -4px !important;
}

.active\:cl--mt-2:active {
  margin-top: -8px !important;
}

.active\:cl--mr-2:active {
  margin-right: -8px !important;
}

.active\:cl--mb-2:active {
  margin-bottom: -8px !important;
}

.active\:cl--ml-2:active {
  margin-left: -8px !important;
}

.active\:cl--mt-3:active {
  margin-top: -12px !important;
}

.active\:cl--mr-3:active {
  margin-right: -12px !important;
}

.active\:cl--mb-3:active {
  margin-bottom: -12px !important;
}

.active\:cl--ml-3:active {
  margin-left: -12px !important;
}

.active\:cl--mt-4:active {
  margin-top: -16px !important;
}

.active\:cl--mr-4:active {
  margin-right: -16px !important;
}

.active\:cl--mb-4:active {
  margin-bottom: -16px !important;
}

.active\:cl--ml-4:active {
  margin-left: -16px !important;
}

.active\:cl--mt-5:active {
  margin-top: -20px !important;
}

.active\:cl--mr-5:active {
  margin-right: -20px !important;
}

.active\:cl--mb-5:active {
  margin-bottom: -20px !important;
}

.active\:cl--ml-5:active {
  margin-left: -20px !important;
}

.active\:cl--mt-6:active {
  margin-top: -24px !important;
}

.active\:cl--mr-6:active {
  margin-right: -24px !important;
}

.active\:cl--mb-6:active {
  margin-bottom: -24px !important;
}

.active\:cl--ml-6:active {
  margin-left: -24px !important;
}

.active\:cl--mt-8:active {
  margin-top: -32px !important;
}

.active\:cl--mr-8:active {
  margin-right: -32px !important;
}

.active\:cl--mb-8:active {
  margin-bottom: -32px !important;
}

.active\:cl--ml-8:active {
  margin-left: -32px !important;
}

.active\:cl--mt-10:active {
  margin-top: -40px !important;
}

.active\:cl--mr-10:active {
  margin-right: -40px !important;
}

.active\:cl--mb-10:active {
  margin-bottom: -40px !important;
}

.active\:cl--ml-10:active {
  margin-left: -40px !important;
}

.active\:cl--mt-12:active {
  margin-top: -48px !important;
}

.active\:cl--mr-12:active {
  margin-right: -48px !important;
}

.active\:cl--mb-12:active {
  margin-bottom: -48px !important;
}

.active\:cl--ml-12:active {
  margin-left: -48px !important;
}

.active\:cl--mt-16:active {
  margin-top: -64px !important;
}

.active\:cl--mr-16:active {
  margin-right: -64px !important;
}

.active\:cl--mb-16:active {
  margin-bottom: -64px !important;
}

.active\:cl--ml-16:active {
  margin-left: -64px !important;
}

.active\:cl--mt-20:active {
  margin-top: -80px !important;
}

.active\:cl--mr-20:active {
  margin-right: -80px !important;
}

.active\:cl--mb-20:active {
  margin-bottom: -80px !important;
}

.active\:cl--ml-20:active {
  margin-left: -80px !important;
}

.active\:cl--mt-24:active {
  margin-top: -96px !important;
}

.active\:cl--mr-24:active {
  margin-right: -96px !important;
}

.active\:cl--mb-24:active {
  margin-bottom: -96px !important;
}

.active\:cl--ml-24:active {
  margin-left: -96px !important;
}

.active\:cl--mt-26:active {
  margin-top: -100px !important;
}

.active\:cl--mr-26:active {
  margin-right: -100px !important;
}

.active\:cl--mb-26:active {
  margin-bottom: -100px !important;
}

.active\:cl--ml-26:active {
  margin-left: -100px !important;
}

.active\:cl--mt-28:active {
  margin-top: -110px !important;
}

.active\:cl--mr-28:active {
  margin-right: -110px !important;
}

.active\:cl--mb-28:active {
  margin-bottom: -110px !important;
}

.active\:cl--ml-28:active {
  margin-left: -110px !important;
}

.active\:cl--mt-32:active {
  margin-top: -128px !important;
}

.active\:cl--mr-32:active {
  margin-right: -128px !important;
}

.active\:cl--mb-32:active {
  margin-bottom: -128px !important;
}

.active\:cl--ml-32:active {
  margin-left: -128px !important;
}

.active\:cl--mt-40:active {
  margin-top: -160px !important;
}

.active\:cl--mr-40:active {
  margin-right: -160px !important;
}

.active\:cl--mb-40:active {
  margin-bottom: -160px !important;
}

.active\:cl--ml-40:active {
  margin-left: -160px !important;
}

.active\:cl--mt-48:active {
  margin-top: -192px !important;
}

.active\:cl--mr-48:active {
  margin-right: -192px !important;
}

.active\:cl--mb-48:active {
  margin-bottom: -192px !important;
}

.active\:cl--ml-48:active {
  margin-left: -192px !important;
}

.active\:cl--mt-56:active {
  margin-top: -224px !important;
}

.active\:cl--mr-56:active {
  margin-right: -224px !important;
}

.active\:cl--mb-56:active {
  margin-bottom: -224px !important;
}

.active\:cl--ml-56:active {
  margin-left: -224px !important;
}

.active\:cl--mt-64:active {
  margin-top: -256px !important;
}

.active\:cl--mr-64:active {
  margin-right: -256px !important;
}

.active\:cl--mb-64:active {
  margin-bottom: -256px !important;
}

.active\:cl--ml-64:active {
  margin-left: -256px !important;
}

.active\:cl--mt-px:active {
  margin-top: -1px !important;
}

.active\:cl--mr-px:active {
  margin-right: -1px !important;
}

.active\:cl--mb-px:active {
  margin-bottom: -1px !important;
}

.active\:cl--ml-px:active {
  margin-left: -1px !important;
}

.cl-max-h-full {
  max-height: 100% !important;
}

.cl-max-h-screen {
  max-height: 100vh !important;
}

.cl-max-w-none {
  max-width: none !important;
}

.cl-max-w-xs {
  max-width: 20rem !important;
}

.cl-max-w-sm {
  max-width: 24rem !important;
}

.cl-max-w-md {
  max-width: 28rem !important;
}

.cl-max-w-lg {
  max-width: 32rem !important;
}

.cl-max-w-xl {
  max-width: 36rem !important;
}

.cl-max-w-2xl {
  max-width: 42rem !important;
}

.cl-max-w-3xl {
  max-width: 48rem !important;
}

.cl-max-w-4xl {
  max-width: 56rem !important;
}

.cl-max-w-5xl {
  max-width: 64rem !important;
}

.cl-max-w-6xl {
  max-width: 72rem !important;
}

.cl-max-w-full {
  max-width: 100% !important;
}

.cl-max-w-screen-sm {
  max-width: 640px !important;
}

.cl-max-w-screen-md {
  max-width: 768px !important;
}

.cl-max-w-screen-lg {
  max-width: 1024px !important;
}

.cl-max-w-screen-xl {
  max-width: 1280px !important;
}

.cl-min-h-0 {
  min-height: 0 !important;
}

.cl-min-h-full {
  min-height: 100% !important;
}

.cl-min-h-screen {
  min-height: 100vh !important;
}

.cl-min-w-0 {
  min-width: 0 !important;
}

.cl-min-w-full {
  min-width: 100% !important;
}

.cl-object-contain {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

.cl-object-cover {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.cl-object-fill {
  -o-object-fit: fill !important;
     object-fit: fill !important;
}

.cl-object-none {
  -o-object-fit: none !important;
     object-fit: none !important;
}

.cl-object-scale-down {
  -o-object-fit: scale-down !important;
     object-fit: scale-down !important;
}

.cl-object-bottom {
  -o-object-position: bottom !important;
     object-position: bottom !important;
}

.cl-object-center {
  -o-object-position: center !important;
     object-position: center !important;
}

.cl-object-left {
  -o-object-position: left !important;
     object-position: left !important;
}

.cl-object-left-bottom {
  -o-object-position: left bottom !important;
     object-position: left bottom !important;
}

.cl-object-left-top {
  -o-object-position: left top !important;
     object-position: left top !important;
}

.cl-object-right {
  -o-object-position: right !important;
     object-position: right !important;
}

.cl-object-right-bottom {
  -o-object-position: right bottom !important;
     object-position: right bottom !important;
}

.cl-object-right-top {
  -o-object-position: right top !important;
     object-position: right top !important;
}

.cl-object-top {
  -o-object-position: top !important;
     object-position: top !important;
}

.cl-opacity-0 {
  opacity: 0 !important;
}

.cl-opacity-25 {
  opacity: 0.25 !important;
}

.cl-opacity-50 {
  opacity: 0.5 !important;
}

.cl-opacity-75 {
  opacity: 0.75 !important;
}

.cl-opacity-100 {
  opacity: 1 !important;
}

.hover\:cl-opacity-0:hover {
  opacity: 0 !important;
}

.hover\:cl-opacity-25:hover {
  opacity: 0.25 !important;
}

.hover\:cl-opacity-50:hover {
  opacity: 0.5 !important;
}

.hover\:cl-opacity-75:hover {
  opacity: 0.75 !important;
}

.hover\:cl-opacity-100:hover {
  opacity: 1 !important;
}

.focus\:cl-opacity-0:focus {
  opacity: 0 !important;
}

.focus\:cl-opacity-25:focus {
  opacity: 0.25 !important;
}

.focus\:cl-opacity-50:focus {
  opacity: 0.5 !important;
}

.focus\:cl-opacity-75:focus {
  opacity: 0.75 !important;
}

.focus\:cl-opacity-100:focus {
  opacity: 1 !important;
}

.cl-outline-none {
  outline: 2px solid transparent !important;
  outline-offset: 2px !important;
}

.cl-outline-white {
  outline: 2px dotted white !important;
  outline-offset: 2px !important;
}

.cl-outline-black {
  outline: 2px dotted black !important;
  outline-offset: 2px !important;
}

.focus\:cl-outline-none:focus {
  outline: 2px solid transparent !important;
  outline-offset: 2px !important;
}

.focus\:cl-outline-white:focus {
  outline: 2px dotted white !important;
  outline-offset: 2px !important;
}

.focus\:cl-outline-black:focus {
  outline: 2px dotted black !important;
  outline-offset: 2px !important;
}

.cl-overflow-auto {
  overflow: auto !important;
}

.cl-overflow-hidden {
  overflow: hidden !important;
}

.cl-overflow-visible {
  overflow: visible !important;
}

.cl-overflow-scroll {
  overflow: scroll !important;
}

.cl-overflow-x-auto {
  overflow-x: auto !important;
}

.cl-overflow-y-auto {
  overflow-y: auto !important;
}

.cl-overflow-x-hidden {
  overflow-x: hidden !important;
}

.cl-overflow-y-hidden {
  overflow-y: hidden !important;
}

.cl-overflow-x-visible {
  overflow-x: visible !important;
}

.cl-overflow-y-visible {
  overflow-y: visible !important;
}

.cl-overflow-x-scroll {
  overflow-x: scroll !important;
}

.cl-overflow-y-scroll {
  overflow-y: scroll !important;
}

.cl-scrolling-touch {
  -webkit-overflow-scrolling: touch !important;
}

.cl-scrolling-auto {
  -webkit-overflow-scrolling: auto !important;
}

.cl-overscroll-auto {
  overscroll-behavior: auto !important;
}

.cl-overscroll-contain {
  overscroll-behavior: contain !important;
}

.cl-overscroll-none {
  overscroll-behavior: none !important;
}

.cl-overscroll-y-auto {
  overscroll-behavior-y: auto !important;
}

.cl-overscroll-y-contain {
  overscroll-behavior-y: contain !important;
}

.cl-overscroll-y-none {
  overscroll-behavior-y: none !important;
}

.cl-overscroll-x-auto {
  overscroll-behavior-x: auto !important;
}

.cl-overscroll-x-contain {
  overscroll-behavior-x: contain !important;
}

.cl-overscroll-x-none {
  overscroll-behavior-x: none !important;
}

.cl-p-0 {
  padding: 0 !important;
}

.cl-p-1 {
  padding: 4px !important;
}

.cl-p-2 {
  padding: 8px !important;
}

.cl-p-3 {
  padding: 12px !important;
}

.cl-p-4 {
  padding: 16px !important;
}

.cl-p-5 {
  padding: 20px !important;
}

.cl-p-6 {
  padding: 24px !important;
}

.cl-p-8 {
  padding: 32px !important;
}

.cl-p-10 {
  padding: 40px !important;
}

.cl-p-12 {
  padding: 48px !important;
}

.cl-p-16 {
  padding: 64px !important;
}

.cl-p-20 {
  padding: 80px !important;
}

.cl-p-24 {
  padding: 96px !important;
}

.cl-p-26 {
  padding: 100px !important;
}

.cl-p-28 {
  padding: 110px !important;
}

.cl-p-32 {
  padding: 128px !important;
}

.cl-p-40 {
  padding: 160px !important;
}

.cl-p-48 {
  padding: 192px !important;
}

.cl-p-56 {
  padding: 224px !important;
}

.cl-p-64 {
  padding: 256px !important;
}

.cl-p-px {
  padding: 1px !important;
}

.cl-py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.cl-px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.cl-py-1 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.cl-px-1 {
  padding-left: 4px !important;
  padding-right: 4px !important;
}

.cl-py-2 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.cl-px-2 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.cl-py-3 {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.cl-px-3 {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

.cl-py-4 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.cl-px-4 {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.cl-py-5 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.cl-px-5 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.cl-py-6 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.cl-px-6 {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.cl-py-8 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.cl-px-8 {
  padding-left: 32px !important;
  padding-right: 32px !important;
}

.cl-py-10 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.cl-px-10 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.cl-py-12 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.cl-px-12 {
  padding-left: 48px !important;
  padding-right: 48px !important;
}

.cl-py-16 {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

.cl-px-16 {
  padding-left: 64px !important;
  padding-right: 64px !important;
}

.cl-py-20 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.cl-px-20 {
  padding-left: 80px !important;
  padding-right: 80px !important;
}

.cl-py-24 {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
}

.cl-px-24 {
  padding-left: 96px !important;
  padding-right: 96px !important;
}

.cl-py-26 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.cl-px-26 {
  padding-left: 100px !important;
  padding-right: 100px !important;
}

.cl-py-28 {
  padding-top: 110px !important;
  padding-bottom: 110px !important;
}

.cl-px-28 {
  padding-left: 110px !important;
  padding-right: 110px !important;
}

.cl-py-32 {
  padding-top: 128px !important;
  padding-bottom: 128px !important;
}

.cl-px-32 {
  padding-left: 128px !important;
  padding-right: 128px !important;
}

.cl-py-40 {
  padding-top: 160px !important;
  padding-bottom: 160px !important;
}

.cl-px-40 {
  padding-left: 160px !important;
  padding-right: 160px !important;
}

.cl-py-48 {
  padding-top: 192px !important;
  padding-bottom: 192px !important;
}

.cl-px-48 {
  padding-left: 192px !important;
  padding-right: 192px !important;
}

.cl-py-56 {
  padding-top: 224px !important;
  padding-bottom: 224px !important;
}

.cl-px-56 {
  padding-left: 224px !important;
  padding-right: 224px !important;
}

.cl-py-64 {
  padding-top: 256px !important;
  padding-bottom: 256px !important;
}

.cl-px-64 {
  padding-left: 256px !important;
  padding-right: 256px !important;
}

.cl-py-px {
  padding-top: 1px !important;
  padding-bottom: 1px !important;
}

.cl-px-px {
  padding-left: 1px !important;
  padding-right: 1px !important;
}

.cl-pt-0 {
  padding-top: 0 !important;
}

.cl-pr-0 {
  padding-right: 0 !important;
}

.cl-pb-0 {
  padding-bottom: 0 !important;
}

.cl-pl-0 {
  padding-left: 0 !important;
}

.cl-pt-1 {
  padding-top: 4px !important;
}

.cl-pr-1 {
  padding-right: 4px !important;
}

.cl-pb-1 {
  padding-bottom: 4px !important;
}

.cl-pl-1 {
  padding-left: 4px !important;
}

.cl-pt-2 {
  padding-top: 8px !important;
}

.cl-pr-2 {
  padding-right: 8px !important;
}

.cl-pb-2 {
  padding-bottom: 8px !important;
}

.cl-pl-2 {
  padding-left: 8px !important;
}

.cl-pt-3 {
  padding-top: 12px !important;
}

.cl-pr-3 {
  padding-right: 12px !important;
}

.cl-pb-3 {
  padding-bottom: 12px !important;
}

.cl-pl-3 {
  padding-left: 12px !important;
}

.cl-pt-4 {
  padding-top: 16px !important;
}

.cl-pr-4 {
  padding-right: 16px !important;
}

.cl-pb-4 {
  padding-bottom: 16px !important;
}

.cl-pl-4 {
  padding-left: 16px !important;
}

.cl-pt-5 {
  padding-top: 20px !important;
}

.cl-pr-5 {
  padding-right: 20px !important;
}

.cl-pb-5 {
  padding-bottom: 20px !important;
}

.cl-pl-5 {
  padding-left: 20px !important;
}

.cl-pt-6 {
  padding-top: 24px !important;
}

.cl-pr-6 {
  padding-right: 24px !important;
}

.cl-pb-6 {
  padding-bottom: 24px !important;
}

.cl-pl-6 {
  padding-left: 24px !important;
}

.cl-pt-8 {
  padding-top: 32px !important;
}

.cl-pr-8 {
  padding-right: 32px !important;
}

.cl-pb-8 {
  padding-bottom: 32px !important;
}

.cl-pl-8 {
  padding-left: 32px !important;
}

.cl-pt-10 {
  padding-top: 40px !important;
}

.cl-pr-10 {
  padding-right: 40px !important;
}

.cl-pb-10 {
  padding-bottom: 40px !important;
}

.cl-pl-10 {
  padding-left: 40px !important;
}

.cl-pt-12 {
  padding-top: 48px !important;
}

.cl-pr-12 {
  padding-right: 48px !important;
}

.cl-pb-12 {
  padding-bottom: 48px !important;
}

.cl-pl-12 {
  padding-left: 48px !important;
}

.cl-pt-16 {
  padding-top: 64px !important;
}

.cl-pr-16 {
  padding-right: 64px !important;
}

.cl-pb-16 {
  padding-bottom: 64px !important;
}

.cl-pl-16 {
  padding-left: 64px !important;
}

.cl-pt-20 {
  padding-top: 80px !important;
}

.cl-pr-20 {
  padding-right: 80px !important;
}

.cl-pb-20 {
  padding-bottom: 80px !important;
}

.cl-pl-20 {
  padding-left: 80px !important;
}

.cl-pt-24 {
  padding-top: 96px !important;
}

.cl-pr-24 {
  padding-right: 96px !important;
}

.cl-pb-24 {
  padding-bottom: 96px !important;
}

.cl-pl-24 {
  padding-left: 96px !important;
}

.cl-pt-26 {
  padding-top: 100px !important;
}

.cl-pr-26 {
  padding-right: 100px !important;
}

.cl-pb-26 {
  padding-bottom: 100px !important;
}

.cl-pl-26 {
  padding-left: 100px !important;
}

.cl-pt-28 {
  padding-top: 110px !important;
}

.cl-pr-28 {
  padding-right: 110px !important;
}

.cl-pb-28 {
  padding-bottom: 110px !important;
}

.cl-pl-28 {
  padding-left: 110px !important;
}

.cl-pt-32 {
  padding-top: 128px !important;
}

.cl-pr-32 {
  padding-right: 128px !important;
}

.cl-pb-32 {
  padding-bottom: 128px !important;
}

.cl-pl-32 {
  padding-left: 128px !important;
}

.cl-pt-40 {
  padding-top: 160px !important;
}

.cl-pr-40 {
  padding-right: 160px !important;
}

.cl-pb-40 {
  padding-bottom: 160px !important;
}

.cl-pl-40 {
  padding-left: 160px !important;
}

.cl-pt-48 {
  padding-top: 192px !important;
}

.cl-pr-48 {
  padding-right: 192px !important;
}

.cl-pb-48 {
  padding-bottom: 192px !important;
}

.cl-pl-48 {
  padding-left: 192px !important;
}

.cl-pt-56 {
  padding-top: 224px !important;
}

.cl-pr-56 {
  padding-right: 224px !important;
}

.cl-pb-56 {
  padding-bottom: 224px !important;
}

.cl-pl-56 {
  padding-left: 224px !important;
}

.cl-pt-64 {
  padding-top: 256px !important;
}

.cl-pr-64 {
  padding-right: 256px !important;
}

.cl-pb-64 {
  padding-bottom: 256px !important;
}

.cl-pl-64 {
  padding-left: 256px !important;
}

.cl-pt-px {
  padding-top: 1px !important;
}

.cl-pr-px {
  padding-right: 1px !important;
}

.cl-pb-px {
  padding-bottom: 1px !important;
}

.cl-pl-px {
  padding-left: 1px !important;
}

.cl-placeholder-transparent::-moz-placeholder {
  color: transparent !important;
}

.cl-placeholder-transparent::placeholder {
  color: transparent !important;
}

.cl-placeholder-current::-moz-placeholder {
  color: currentColor !important;
}

.cl-placeholder-current::placeholder {
  color: currentColor !important;
}

.cl-placeholder-black::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #000 !important;
  color: rgba(0, 0, 0, var(--placeholder-opacity)) !important;
}

.cl-placeholder-black::placeholder {
  --placeholder-opacity: 1 !important;
  color: #000 !important;
  color: rgba(0, 0, 0, var(--placeholder-opacity)) !important;
}

.cl-placeholder-white::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #fff !important;
  color: rgba(255, 255, 255, var(--placeholder-opacity)) !important;
}

.cl-placeholder-white::placeholder {
  --placeholder-opacity: 1 !important;
  color: #fff !important;
  color: rgba(255, 255, 255, var(--placeholder-opacity)) !important;
}

.cl-placeholder-gray-100::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #f7fafc !important;
  color: rgba(247, 250, 252, var(--placeholder-opacity)) !important;
}

.cl-placeholder-gray-100::placeholder {
  --placeholder-opacity: 1 !important;
  color: #f7fafc !important;
  color: rgba(247, 250, 252, var(--placeholder-opacity)) !important;
}

.cl-placeholder-gray-200::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #edf2f7 !important;
  color: rgba(237, 242, 247, var(--placeholder-opacity)) !important;
}

.cl-placeholder-gray-200::placeholder {
  --placeholder-opacity: 1 !important;
  color: #edf2f7 !important;
  color: rgba(237, 242, 247, var(--placeholder-opacity)) !important;
}

.cl-placeholder-gray-300::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #e2e8f0 !important;
  color: rgba(226, 232, 240, var(--placeholder-opacity)) !important;
}

.cl-placeholder-gray-300::placeholder {
  --placeholder-opacity: 1 !important;
  color: #e2e8f0 !important;
  color: rgba(226, 232, 240, var(--placeholder-opacity)) !important;
}

.cl-placeholder-gray-400::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #cbd5e0 !important;
  color: rgba(203, 213, 224, var(--placeholder-opacity)) !important;
}

.cl-placeholder-gray-400::placeholder {
  --placeholder-opacity: 1 !important;
  color: #cbd5e0 !important;
  color: rgba(203, 213, 224, var(--placeholder-opacity)) !important;
}

.cl-placeholder-gray-500::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #a0aec0 !important;
  color: rgba(160, 174, 192, var(--placeholder-opacity)) !important;
}

.cl-placeholder-gray-500::placeholder {
  --placeholder-opacity: 1 !important;
  color: #a0aec0 !important;
  color: rgba(160, 174, 192, var(--placeholder-opacity)) !important;
}

.cl-placeholder-gray-600::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #718096 !important;
  color: rgba(113, 128, 150, var(--placeholder-opacity)) !important;
}

.cl-placeholder-gray-600::placeholder {
  --placeholder-opacity: 1 !important;
  color: #718096 !important;
  color: rgba(113, 128, 150, var(--placeholder-opacity)) !important;
}

.cl-placeholder-gray-700::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #4a5568 !important;
  color: rgba(74, 85, 104, var(--placeholder-opacity)) !important;
}

.cl-placeholder-gray-700::placeholder {
  --placeholder-opacity: 1 !important;
  color: #4a5568 !important;
  color: rgba(74, 85, 104, var(--placeholder-opacity)) !important;
}

.cl-placeholder-gray-800::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #2d3748 !important;
  color: rgba(45, 55, 72, var(--placeholder-opacity)) !important;
}

.cl-placeholder-gray-800::placeholder {
  --placeholder-opacity: 1 !important;
  color: #2d3748 !important;
  color: rgba(45, 55, 72, var(--placeholder-opacity)) !important;
}

.cl-placeholder-gray-900::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #1a202c !important;
  color: rgba(26, 32, 44, var(--placeholder-opacity)) !important;
}

.cl-placeholder-gray-900::placeholder {
  --placeholder-opacity: 1 !important;
  color: #1a202c !important;
  color: rgba(26, 32, 44, var(--placeholder-opacity)) !important;
}

.cl-placeholder-red-100::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #fff5f5 !important;
  color: rgba(255, 245, 245, var(--placeholder-opacity)) !important;
}

.cl-placeholder-red-100::placeholder {
  --placeholder-opacity: 1 !important;
  color: #fff5f5 !important;
  color: rgba(255, 245, 245, var(--placeholder-opacity)) !important;
}

.cl-placeholder-red-200::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #fed7d7 !important;
  color: rgba(254, 215, 215, var(--placeholder-opacity)) !important;
}

.cl-placeholder-red-200::placeholder {
  --placeholder-opacity: 1 !important;
  color: #fed7d7 !important;
  color: rgba(254, 215, 215, var(--placeholder-opacity)) !important;
}

.cl-placeholder-red-300::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #feb2b2 !important;
  color: rgba(254, 178, 178, var(--placeholder-opacity)) !important;
}

.cl-placeholder-red-300::placeholder {
  --placeholder-opacity: 1 !important;
  color: #feb2b2 !important;
  color: rgba(254, 178, 178, var(--placeholder-opacity)) !important;
}

.cl-placeholder-red-400::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #fc8181 !important;
  color: rgba(252, 129, 129, var(--placeholder-opacity)) !important;
}

.cl-placeholder-red-400::placeholder {
  --placeholder-opacity: 1 !important;
  color: #fc8181 !important;
  color: rgba(252, 129, 129, var(--placeholder-opacity)) !important;
}

.cl-placeholder-red-500::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #f56565 !important;
  color: rgba(245, 101, 101, var(--placeholder-opacity)) !important;
}

.cl-placeholder-red-500::placeholder {
  --placeholder-opacity: 1 !important;
  color: #f56565 !important;
  color: rgba(245, 101, 101, var(--placeholder-opacity)) !important;
}

.cl-placeholder-red-600::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #e53e3e !important;
  color: rgba(229, 62, 62, var(--placeholder-opacity)) !important;
}

.cl-placeholder-red-600::placeholder {
  --placeholder-opacity: 1 !important;
  color: #e53e3e !important;
  color: rgba(229, 62, 62, var(--placeholder-opacity)) !important;
}

.cl-placeholder-red-700::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #c53030 !important;
  color: rgba(197, 48, 48, var(--placeholder-opacity)) !important;
}

.cl-placeholder-red-700::placeholder {
  --placeholder-opacity: 1 !important;
  color: #c53030 !important;
  color: rgba(197, 48, 48, var(--placeholder-opacity)) !important;
}

.cl-placeholder-red-800::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #9b2c2c !important;
  color: rgba(155, 44, 44, var(--placeholder-opacity)) !important;
}

.cl-placeholder-red-800::placeholder {
  --placeholder-opacity: 1 !important;
  color: #9b2c2c !important;
  color: rgba(155, 44, 44, var(--placeholder-opacity)) !important;
}

.cl-placeholder-red-900::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #742a2a !important;
  color: rgba(116, 42, 42, var(--placeholder-opacity)) !important;
}

.cl-placeholder-red-900::placeholder {
  --placeholder-opacity: 1 !important;
  color: #742a2a !important;
  color: rgba(116, 42, 42, var(--placeholder-opacity)) !important;
}

.cl-placeholder-orange-100::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #fffaf0 !important;
  color: rgba(255, 250, 240, var(--placeholder-opacity)) !important;
}

.cl-placeholder-orange-100::placeholder {
  --placeholder-opacity: 1 !important;
  color: #fffaf0 !important;
  color: rgba(255, 250, 240, var(--placeholder-opacity)) !important;
}

.cl-placeholder-orange-200::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #feebc8 !important;
  color: rgba(254, 235, 200, var(--placeholder-opacity)) !important;
}

.cl-placeholder-orange-200::placeholder {
  --placeholder-opacity: 1 !important;
  color: #feebc8 !important;
  color: rgba(254, 235, 200, var(--placeholder-opacity)) !important;
}

.cl-placeholder-orange-300::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #fbd38d !important;
  color: rgba(251, 211, 141, var(--placeholder-opacity)) !important;
}

.cl-placeholder-orange-300::placeholder {
  --placeholder-opacity: 1 !important;
  color: #fbd38d !important;
  color: rgba(251, 211, 141, var(--placeholder-opacity)) !important;
}

.cl-placeholder-orange-400::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #f6ad55 !important;
  color: rgba(246, 173, 85, var(--placeholder-opacity)) !important;
}

.cl-placeholder-orange-400::placeholder {
  --placeholder-opacity: 1 !important;
  color: #f6ad55 !important;
  color: rgba(246, 173, 85, var(--placeholder-opacity)) !important;
}

.cl-placeholder-orange-500::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #ed8936 !important;
  color: rgba(237, 137, 54, var(--placeholder-opacity)) !important;
}

.cl-placeholder-orange-500::placeholder {
  --placeholder-opacity: 1 !important;
  color: #ed8936 !important;
  color: rgba(237, 137, 54, var(--placeholder-opacity)) !important;
}

.cl-placeholder-orange-600::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #dd6b20 !important;
  color: rgba(221, 107, 32, var(--placeholder-opacity)) !important;
}

.cl-placeholder-orange-600::placeholder {
  --placeholder-opacity: 1 !important;
  color: #dd6b20 !important;
  color: rgba(221, 107, 32, var(--placeholder-opacity)) !important;
}

.cl-placeholder-orange-700::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #c05621 !important;
  color: rgba(192, 86, 33, var(--placeholder-opacity)) !important;
}

.cl-placeholder-orange-700::placeholder {
  --placeholder-opacity: 1 !important;
  color: #c05621 !important;
  color: rgba(192, 86, 33, var(--placeholder-opacity)) !important;
}

.cl-placeholder-orange-800::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #9c4221 !important;
  color: rgba(156, 66, 33, var(--placeholder-opacity)) !important;
}

.cl-placeholder-orange-800::placeholder {
  --placeholder-opacity: 1 !important;
  color: #9c4221 !important;
  color: rgba(156, 66, 33, var(--placeholder-opacity)) !important;
}

.cl-placeholder-orange-900::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #7b341e !important;
  color: rgba(123, 52, 30, var(--placeholder-opacity)) !important;
}

.cl-placeholder-orange-900::placeholder {
  --placeholder-opacity: 1 !important;
  color: #7b341e !important;
  color: rgba(123, 52, 30, var(--placeholder-opacity)) !important;
}

.cl-placeholder-yellow-100::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #fffff0 !important;
  color: rgba(255, 255, 240, var(--placeholder-opacity)) !important;
}

.cl-placeholder-yellow-100::placeholder {
  --placeholder-opacity: 1 !important;
  color: #fffff0 !important;
  color: rgba(255, 255, 240, var(--placeholder-opacity)) !important;
}

.cl-placeholder-yellow-200::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #fefcbf !important;
  color: rgba(254, 252, 191, var(--placeholder-opacity)) !important;
}

.cl-placeholder-yellow-200::placeholder {
  --placeholder-opacity: 1 !important;
  color: #fefcbf !important;
  color: rgba(254, 252, 191, var(--placeholder-opacity)) !important;
}

.cl-placeholder-yellow-300::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #faf089 !important;
  color: rgba(250, 240, 137, var(--placeholder-opacity)) !important;
}

.cl-placeholder-yellow-300::placeholder {
  --placeholder-opacity: 1 !important;
  color: #faf089 !important;
  color: rgba(250, 240, 137, var(--placeholder-opacity)) !important;
}

.cl-placeholder-yellow-400::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #f6e05e !important;
  color: rgba(246, 224, 94, var(--placeholder-opacity)) !important;
}

.cl-placeholder-yellow-400::placeholder {
  --placeholder-opacity: 1 !important;
  color: #f6e05e !important;
  color: rgba(246, 224, 94, var(--placeholder-opacity)) !important;
}

.cl-placeholder-yellow-500::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #ecc94b !important;
  color: rgba(236, 201, 75, var(--placeholder-opacity)) !important;
}

.cl-placeholder-yellow-500::placeholder {
  --placeholder-opacity: 1 !important;
  color: #ecc94b !important;
  color: rgba(236, 201, 75, var(--placeholder-opacity)) !important;
}

.cl-placeholder-yellow-600::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #d69e2e !important;
  color: rgba(214, 158, 46, var(--placeholder-opacity)) !important;
}

.cl-placeholder-yellow-600::placeholder {
  --placeholder-opacity: 1 !important;
  color: #d69e2e !important;
  color: rgba(214, 158, 46, var(--placeholder-opacity)) !important;
}

.cl-placeholder-yellow-700::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #b7791f !important;
  color: rgba(183, 121, 31, var(--placeholder-opacity)) !important;
}

.cl-placeholder-yellow-700::placeholder {
  --placeholder-opacity: 1 !important;
  color: #b7791f !important;
  color: rgba(183, 121, 31, var(--placeholder-opacity)) !important;
}

.cl-placeholder-yellow-800::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #975a16 !important;
  color: rgba(151, 90, 22, var(--placeholder-opacity)) !important;
}

.cl-placeholder-yellow-800::placeholder {
  --placeholder-opacity: 1 !important;
  color: #975a16 !important;
  color: rgba(151, 90, 22, var(--placeholder-opacity)) !important;
}

.cl-placeholder-yellow-900::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #744210 !important;
  color: rgba(116, 66, 16, var(--placeholder-opacity)) !important;
}

.cl-placeholder-yellow-900::placeholder {
  --placeholder-opacity: 1 !important;
  color: #744210 !important;
  color: rgba(116, 66, 16, var(--placeholder-opacity)) !important;
}

.cl-placeholder-green-100::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #f0fff4 !important;
  color: rgba(240, 255, 244, var(--placeholder-opacity)) !important;
}

.cl-placeholder-green-100::placeholder {
  --placeholder-opacity: 1 !important;
  color: #f0fff4 !important;
  color: rgba(240, 255, 244, var(--placeholder-opacity)) !important;
}

.cl-placeholder-green-200::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #c6f6d5 !important;
  color: rgba(198, 246, 213, var(--placeholder-opacity)) !important;
}

.cl-placeholder-green-200::placeholder {
  --placeholder-opacity: 1 !important;
  color: #c6f6d5 !important;
  color: rgba(198, 246, 213, var(--placeholder-opacity)) !important;
}

.cl-placeholder-green-300::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #9ae6b4 !important;
  color: rgba(154, 230, 180, var(--placeholder-opacity)) !important;
}

.cl-placeholder-green-300::placeholder {
  --placeholder-opacity: 1 !important;
  color: #9ae6b4 !important;
  color: rgba(154, 230, 180, var(--placeholder-opacity)) !important;
}

.cl-placeholder-green-400::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #68d391 !important;
  color: rgba(104, 211, 145, var(--placeholder-opacity)) !important;
}

.cl-placeholder-green-400::placeholder {
  --placeholder-opacity: 1 !important;
  color: #68d391 !important;
  color: rgba(104, 211, 145, var(--placeholder-opacity)) !important;
}

.cl-placeholder-green-500::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #48bb78 !important;
  color: rgba(72, 187, 120, var(--placeholder-opacity)) !important;
}

.cl-placeholder-green-500::placeholder {
  --placeholder-opacity: 1 !important;
  color: #48bb78 !important;
  color: rgba(72, 187, 120, var(--placeholder-opacity)) !important;
}

.cl-placeholder-green-600::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #38a169 !important;
  color: rgba(56, 161, 105, var(--placeholder-opacity)) !important;
}

.cl-placeholder-green-600::placeholder {
  --placeholder-opacity: 1 !important;
  color: #38a169 !important;
  color: rgba(56, 161, 105, var(--placeholder-opacity)) !important;
}

.cl-placeholder-green-700::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #2f855a !important;
  color: rgba(47, 133, 90, var(--placeholder-opacity)) !important;
}

.cl-placeholder-green-700::placeholder {
  --placeholder-opacity: 1 !important;
  color: #2f855a !important;
  color: rgba(47, 133, 90, var(--placeholder-opacity)) !important;
}

.cl-placeholder-green-800::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #276749 !important;
  color: rgba(39, 103, 73, var(--placeholder-opacity)) !important;
}

.cl-placeholder-green-800::placeholder {
  --placeholder-opacity: 1 !important;
  color: #276749 !important;
  color: rgba(39, 103, 73, var(--placeholder-opacity)) !important;
}

.cl-placeholder-green-900::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #22543d !important;
  color: rgba(34, 84, 61, var(--placeholder-opacity)) !important;
}

.cl-placeholder-green-900::placeholder {
  --placeholder-opacity: 1 !important;
  color: #22543d !important;
  color: rgba(34, 84, 61, var(--placeholder-opacity)) !important;
}

.cl-placeholder-teal-100::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #e6fffa !important;
  color: rgba(230, 255, 250, var(--placeholder-opacity)) !important;
}

.cl-placeholder-teal-100::placeholder {
  --placeholder-opacity: 1 !important;
  color: #e6fffa !important;
  color: rgba(230, 255, 250, var(--placeholder-opacity)) !important;
}

.cl-placeholder-teal-200::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #b2f5ea !important;
  color: rgba(178, 245, 234, var(--placeholder-opacity)) !important;
}

.cl-placeholder-teal-200::placeholder {
  --placeholder-opacity: 1 !important;
  color: #b2f5ea !important;
  color: rgba(178, 245, 234, var(--placeholder-opacity)) !important;
}

.cl-placeholder-teal-300::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #81e6d9 !important;
  color: rgba(129, 230, 217, var(--placeholder-opacity)) !important;
}

.cl-placeholder-teal-300::placeholder {
  --placeholder-opacity: 1 !important;
  color: #81e6d9 !important;
  color: rgba(129, 230, 217, var(--placeholder-opacity)) !important;
}

.cl-placeholder-teal-400::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #4fd1c5 !important;
  color: rgba(79, 209, 197, var(--placeholder-opacity)) !important;
}

.cl-placeholder-teal-400::placeholder {
  --placeholder-opacity: 1 !important;
  color: #4fd1c5 !important;
  color: rgba(79, 209, 197, var(--placeholder-opacity)) !important;
}

.cl-placeholder-teal-500::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #38b2ac !important;
  color: rgba(56, 178, 172, var(--placeholder-opacity)) !important;
}

.cl-placeholder-teal-500::placeholder {
  --placeholder-opacity: 1 !important;
  color: #38b2ac !important;
  color: rgba(56, 178, 172, var(--placeholder-opacity)) !important;
}

.cl-placeholder-teal-600::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #319795 !important;
  color: rgba(49, 151, 149, var(--placeholder-opacity)) !important;
}

.cl-placeholder-teal-600::placeholder {
  --placeholder-opacity: 1 !important;
  color: #319795 !important;
  color: rgba(49, 151, 149, var(--placeholder-opacity)) !important;
}

.cl-placeholder-teal-700::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #2c7a7b !important;
  color: rgba(44, 122, 123, var(--placeholder-opacity)) !important;
}

.cl-placeholder-teal-700::placeholder {
  --placeholder-opacity: 1 !important;
  color: #2c7a7b !important;
  color: rgba(44, 122, 123, var(--placeholder-opacity)) !important;
}

.cl-placeholder-teal-800::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #285e61 !important;
  color: rgba(40, 94, 97, var(--placeholder-opacity)) !important;
}

.cl-placeholder-teal-800::placeholder {
  --placeholder-opacity: 1 !important;
  color: #285e61 !important;
  color: rgba(40, 94, 97, var(--placeholder-opacity)) !important;
}

.cl-placeholder-teal-900::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #234e52 !important;
  color: rgba(35, 78, 82, var(--placeholder-opacity)) !important;
}

.cl-placeholder-teal-900::placeholder {
  --placeholder-opacity: 1 !important;
  color: #234e52 !important;
  color: rgba(35, 78, 82, var(--placeholder-opacity)) !important;
}

.cl-placeholder-blue-100::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #ebf8ff !important;
  color: rgba(235, 248, 255, var(--placeholder-opacity)) !important;
}

.cl-placeholder-blue-100::placeholder {
  --placeholder-opacity: 1 !important;
  color: #ebf8ff !important;
  color: rgba(235, 248, 255, var(--placeholder-opacity)) !important;
}

.cl-placeholder-blue-200::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #bee3f8 !important;
  color: rgba(190, 227, 248, var(--placeholder-opacity)) !important;
}

.cl-placeholder-blue-200::placeholder {
  --placeholder-opacity: 1 !important;
  color: #bee3f8 !important;
  color: rgba(190, 227, 248, var(--placeholder-opacity)) !important;
}

.cl-placeholder-blue-300::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #90cdf4 !important;
  color: rgba(144, 205, 244, var(--placeholder-opacity)) !important;
}

.cl-placeholder-blue-300::placeholder {
  --placeholder-opacity: 1 !important;
  color: #90cdf4 !important;
  color: rgba(144, 205, 244, var(--placeholder-opacity)) !important;
}

.cl-placeholder-blue-400::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #63b3ed !important;
  color: rgba(99, 179, 237, var(--placeholder-opacity)) !important;
}

.cl-placeholder-blue-400::placeholder {
  --placeholder-opacity: 1 !important;
  color: #63b3ed !important;
  color: rgba(99, 179, 237, var(--placeholder-opacity)) !important;
}

.cl-placeholder-blue-500::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #4299e1 !important;
  color: rgba(66, 153, 225, var(--placeholder-opacity)) !important;
}

.cl-placeholder-blue-500::placeholder {
  --placeholder-opacity: 1 !important;
  color: #4299e1 !important;
  color: rgba(66, 153, 225, var(--placeholder-opacity)) !important;
}

.cl-placeholder-blue-600::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #3182ce !important;
  color: rgba(49, 130, 206, var(--placeholder-opacity)) !important;
}

.cl-placeholder-blue-600::placeholder {
  --placeholder-opacity: 1 !important;
  color: #3182ce !important;
  color: rgba(49, 130, 206, var(--placeholder-opacity)) !important;
}

.cl-placeholder-blue-700::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #2b6cb0 !important;
  color: rgba(43, 108, 176, var(--placeholder-opacity)) !important;
}

.cl-placeholder-blue-700::placeholder {
  --placeholder-opacity: 1 !important;
  color: #2b6cb0 !important;
  color: rgba(43, 108, 176, var(--placeholder-opacity)) !important;
}

.cl-placeholder-blue-800::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #2c5282 !important;
  color: rgba(44, 82, 130, var(--placeholder-opacity)) !important;
}

.cl-placeholder-blue-800::placeholder {
  --placeholder-opacity: 1 !important;
  color: #2c5282 !important;
  color: rgba(44, 82, 130, var(--placeholder-opacity)) !important;
}

.cl-placeholder-blue-900::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #2a4365 !important;
  color: rgba(42, 67, 101, var(--placeholder-opacity)) !important;
}

.cl-placeholder-blue-900::placeholder {
  --placeholder-opacity: 1 !important;
  color: #2a4365 !important;
  color: rgba(42, 67, 101, var(--placeholder-opacity)) !important;
}

.cl-placeholder-indigo-100::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #ebf4ff !important;
  color: rgba(235, 244, 255, var(--placeholder-opacity)) !important;
}

.cl-placeholder-indigo-100::placeholder {
  --placeholder-opacity: 1 !important;
  color: #ebf4ff !important;
  color: rgba(235, 244, 255, var(--placeholder-opacity)) !important;
}

.cl-placeholder-indigo-200::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #c3dafe !important;
  color: rgba(195, 218, 254, var(--placeholder-opacity)) !important;
}

.cl-placeholder-indigo-200::placeholder {
  --placeholder-opacity: 1 !important;
  color: #c3dafe !important;
  color: rgba(195, 218, 254, var(--placeholder-opacity)) !important;
}

.cl-placeholder-indigo-300::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #a3bffa !important;
  color: rgba(163, 191, 250, var(--placeholder-opacity)) !important;
}

.cl-placeholder-indigo-300::placeholder {
  --placeholder-opacity: 1 !important;
  color: #a3bffa !important;
  color: rgba(163, 191, 250, var(--placeholder-opacity)) !important;
}

.cl-placeholder-indigo-400::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #7f9cf5 !important;
  color: rgba(127, 156, 245, var(--placeholder-opacity)) !important;
}

.cl-placeholder-indigo-400::placeholder {
  --placeholder-opacity: 1 !important;
  color: #7f9cf5 !important;
  color: rgba(127, 156, 245, var(--placeholder-opacity)) !important;
}

.cl-placeholder-indigo-500::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #667eea !important;
  color: rgba(102, 126, 234, var(--placeholder-opacity)) !important;
}

.cl-placeholder-indigo-500::placeholder {
  --placeholder-opacity: 1 !important;
  color: #667eea !important;
  color: rgba(102, 126, 234, var(--placeholder-opacity)) !important;
}

.cl-placeholder-indigo-600::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #5a67d8 !important;
  color: rgba(90, 103, 216, var(--placeholder-opacity)) !important;
}

.cl-placeholder-indigo-600::placeholder {
  --placeholder-opacity: 1 !important;
  color: #5a67d8 !important;
  color: rgba(90, 103, 216, var(--placeholder-opacity)) !important;
}

.cl-placeholder-indigo-700::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #4c51bf !important;
  color: rgba(76, 81, 191, var(--placeholder-opacity)) !important;
}

.cl-placeholder-indigo-700::placeholder {
  --placeholder-opacity: 1 !important;
  color: #4c51bf !important;
  color: rgba(76, 81, 191, var(--placeholder-opacity)) !important;
}

.cl-placeholder-indigo-800::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #434190 !important;
  color: rgba(67, 65, 144, var(--placeholder-opacity)) !important;
}

.cl-placeholder-indigo-800::placeholder {
  --placeholder-opacity: 1 !important;
  color: #434190 !important;
  color: rgba(67, 65, 144, var(--placeholder-opacity)) !important;
}

.cl-placeholder-indigo-900::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #3c366b !important;
  color: rgba(60, 54, 107, var(--placeholder-opacity)) !important;
}

.cl-placeholder-indigo-900::placeholder {
  --placeholder-opacity: 1 !important;
  color: #3c366b !important;
  color: rgba(60, 54, 107, var(--placeholder-opacity)) !important;
}

.cl-placeholder-purple-100::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #faf5ff !important;
  color: rgba(250, 245, 255, var(--placeholder-opacity)) !important;
}

.cl-placeholder-purple-100::placeholder {
  --placeholder-opacity: 1 !important;
  color: #faf5ff !important;
  color: rgba(250, 245, 255, var(--placeholder-opacity)) !important;
}

.cl-placeholder-purple-200::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #e9d8fd !important;
  color: rgba(233, 216, 253, var(--placeholder-opacity)) !important;
}

.cl-placeholder-purple-200::placeholder {
  --placeholder-opacity: 1 !important;
  color: #e9d8fd !important;
  color: rgba(233, 216, 253, var(--placeholder-opacity)) !important;
}

.cl-placeholder-purple-300::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #d6bcfa !important;
  color: rgba(214, 188, 250, var(--placeholder-opacity)) !important;
}

.cl-placeholder-purple-300::placeholder {
  --placeholder-opacity: 1 !important;
  color: #d6bcfa !important;
  color: rgba(214, 188, 250, var(--placeholder-opacity)) !important;
}

.cl-placeholder-purple-400::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #b794f4 !important;
  color: rgba(183, 148, 244, var(--placeholder-opacity)) !important;
}

.cl-placeholder-purple-400::placeholder {
  --placeholder-opacity: 1 !important;
  color: #b794f4 !important;
  color: rgba(183, 148, 244, var(--placeholder-opacity)) !important;
}

.cl-placeholder-purple-500::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #9f7aea !important;
  color: rgba(159, 122, 234, var(--placeholder-opacity)) !important;
}

.cl-placeholder-purple-500::placeholder {
  --placeholder-opacity: 1 !important;
  color: #9f7aea !important;
  color: rgba(159, 122, 234, var(--placeholder-opacity)) !important;
}

.cl-placeholder-purple-600::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #805ad5 !important;
  color: rgba(128, 90, 213, var(--placeholder-opacity)) !important;
}

.cl-placeholder-purple-600::placeholder {
  --placeholder-opacity: 1 !important;
  color: #805ad5 !important;
  color: rgba(128, 90, 213, var(--placeholder-opacity)) !important;
}

.cl-placeholder-purple-700::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #6b46c1 !important;
  color: rgba(107, 70, 193, var(--placeholder-opacity)) !important;
}

.cl-placeholder-purple-700::placeholder {
  --placeholder-opacity: 1 !important;
  color: #6b46c1 !important;
  color: rgba(107, 70, 193, var(--placeholder-opacity)) !important;
}

.cl-placeholder-purple-800::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #553c9a !important;
  color: rgba(85, 60, 154, var(--placeholder-opacity)) !important;
}

.cl-placeholder-purple-800::placeholder {
  --placeholder-opacity: 1 !important;
  color: #553c9a !important;
  color: rgba(85, 60, 154, var(--placeholder-opacity)) !important;
}

.cl-placeholder-purple-900::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #44337a !important;
  color: rgba(68, 51, 122, var(--placeholder-opacity)) !important;
}

.cl-placeholder-purple-900::placeholder {
  --placeholder-opacity: 1 !important;
  color: #44337a !important;
  color: rgba(68, 51, 122, var(--placeholder-opacity)) !important;
}

.cl-placeholder-pink-100::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #fff5f7 !important;
  color: rgba(255, 245, 247, var(--placeholder-opacity)) !important;
}

.cl-placeholder-pink-100::placeholder {
  --placeholder-opacity: 1 !important;
  color: #fff5f7 !important;
  color: rgba(255, 245, 247, var(--placeholder-opacity)) !important;
}

.cl-placeholder-pink-200::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #fed7e2 !important;
  color: rgba(254, 215, 226, var(--placeholder-opacity)) !important;
}

.cl-placeholder-pink-200::placeholder {
  --placeholder-opacity: 1 !important;
  color: #fed7e2 !important;
  color: rgba(254, 215, 226, var(--placeholder-opacity)) !important;
}

.cl-placeholder-pink-300::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #fbb6ce !important;
  color: rgba(251, 182, 206, var(--placeholder-opacity)) !important;
}

.cl-placeholder-pink-300::placeholder {
  --placeholder-opacity: 1 !important;
  color: #fbb6ce !important;
  color: rgba(251, 182, 206, var(--placeholder-opacity)) !important;
}

.cl-placeholder-pink-400::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #f687b3 !important;
  color: rgba(246, 135, 179, var(--placeholder-opacity)) !important;
}

.cl-placeholder-pink-400::placeholder {
  --placeholder-opacity: 1 !important;
  color: #f687b3 !important;
  color: rgba(246, 135, 179, var(--placeholder-opacity)) !important;
}

.cl-placeholder-pink-500::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #ed64a6 !important;
  color: rgba(237, 100, 166, var(--placeholder-opacity)) !important;
}

.cl-placeholder-pink-500::placeholder {
  --placeholder-opacity: 1 !important;
  color: #ed64a6 !important;
  color: rgba(237, 100, 166, var(--placeholder-opacity)) !important;
}

.cl-placeholder-pink-600::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #d53f8c !important;
  color: rgba(213, 63, 140, var(--placeholder-opacity)) !important;
}

.cl-placeholder-pink-600::placeholder {
  --placeholder-opacity: 1 !important;
  color: #d53f8c !important;
  color: rgba(213, 63, 140, var(--placeholder-opacity)) !important;
}

.cl-placeholder-pink-700::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #b83280 !important;
  color: rgba(184, 50, 128, var(--placeholder-opacity)) !important;
}

.cl-placeholder-pink-700::placeholder {
  --placeholder-opacity: 1 !important;
  color: #b83280 !important;
  color: rgba(184, 50, 128, var(--placeholder-opacity)) !important;
}

.cl-placeholder-pink-800::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #97266d !important;
  color: rgba(151, 38, 109, var(--placeholder-opacity)) !important;
}

.cl-placeholder-pink-800::placeholder {
  --placeholder-opacity: 1 !important;
  color: #97266d !important;
  color: rgba(151, 38, 109, var(--placeholder-opacity)) !important;
}

.cl-placeholder-pink-900::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #702459 !important;
  color: rgba(112, 36, 89, var(--placeholder-opacity)) !important;
}

.cl-placeholder-pink-900::placeholder {
  --placeholder-opacity: 1 !important;
  color: #702459 !important;
  color: rgba(112, 36, 89, var(--placeholder-opacity)) !important;
}

.cl-placeholder-ui-gray-100::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #f1f1f1 !important;
  color: rgba(241, 241, 241, var(--placeholder-opacity)) !important;
}

.cl-placeholder-ui-gray-100::placeholder {
  --placeholder-opacity: 1 !important;
  color: #f1f1f1 !important;
  color: rgba(241, 241, 241, var(--placeholder-opacity)) !important;
}

.cl-placeholder-ui-brown-100::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #f3ecdc !important;
  color: rgba(243, 236, 220, var(--placeholder-opacity)) !important;
}

.cl-placeholder-ui-brown-100::placeholder {
  --placeholder-opacity: 1 !important;
  color: #f3ecdc !important;
  color: rgba(243, 236, 220, var(--placeholder-opacity)) !important;
}

.cl-placeholder-ui-brown-200::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #e8e0c9 !important;
  color: rgba(232, 224, 201, var(--placeholder-opacity)) !important;
}

.cl-placeholder-ui-brown-200::placeholder {
  --placeholder-opacity: 1 !important;
  color: #e8e0c9 !important;
  color: rgba(232, 224, 201, var(--placeholder-opacity)) !important;
}

.cl-placeholder-ui-brown-300::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #d0c095 !important;
  color: rgba(208, 192, 149, var(--placeholder-opacity)) !important;
}

.cl-placeholder-ui-brown-300::placeholder {
  --placeholder-opacity: 1 !important;
  color: #d0c095 !important;
  color: rgba(208, 192, 149, var(--placeholder-opacity)) !important;
}

.cl-placeholder-ui-brown-700::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #bd6005 !important;
  color: rgba(189, 96, 5, var(--placeholder-opacity)) !important;
}

.cl-placeholder-ui-brown-700::placeholder {
  --placeholder-opacity: 1 !important;
  color: #bd6005 !important;
  color: rgba(189, 96, 5, var(--placeholder-opacity)) !important;
}

.cl-placeholder-ui-green-300::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #aac74c !important;
  color: rgba(170, 199, 76, var(--placeholder-opacity)) !important;
}

.cl-placeholder-ui-green-300::placeholder {
  --placeholder-opacity: 1 !important;
  color: #aac74c !important;
  color: rgba(170, 199, 76, var(--placeholder-opacity)) !important;
}

.cl-placeholder-ui-green-400::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #71893e !important;
  color: rgba(113, 137, 62, var(--placeholder-opacity)) !important;
}

.cl-placeholder-ui-green-400::placeholder {
  --placeholder-opacity: 1 !important;
  color: #71893e !important;
  color: rgba(113, 137, 62, var(--placeholder-opacity)) !important;
}

.cl-placeholder-ui-orange-500::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #e27212 !important;
  color: rgba(226, 114, 18, var(--placeholder-opacity)) !important;
}

.cl-placeholder-ui-orange-500::placeholder {
  --placeholder-opacity: 1 !important;
  color: #e27212 !important;
  color: rgba(226, 114, 18, var(--placeholder-opacity)) !important;
}

.cl-placeholder-facebook::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #3b5998 !important;
  color: rgba(59, 89, 152, var(--placeholder-opacity)) !important;
}

.cl-placeholder-facebook::placeholder {
  --placeholder-opacity: 1 !important;
  color: #3b5998 !important;
  color: rgba(59, 89, 152, var(--placeholder-opacity)) !important;
}

.cl-placeholder-twitter::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #00acee !important;
  color: rgba(0, 172, 238, var(--placeholder-opacity)) !important;
}

.cl-placeholder-twitter::placeholder {
  --placeholder-opacity: 1 !important;
  color: #00acee !important;
  color: rgba(0, 172, 238, var(--placeholder-opacity)) !important;
}

.cl-placeholder-twitch::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #6441a5 !important;
  color: rgba(100, 65, 165, var(--placeholder-opacity)) !important;
}

.cl-placeholder-twitch::placeholder {
  --placeholder-opacity: 1 !important;
  color: #6441a5 !important;
  color: rgba(100, 65, 165, var(--placeholder-opacity)) !important;
}

.cl-placeholder-youtube::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #FF0000 !important;
  color: rgba(255, 0, 0, var(--placeholder-opacity)) !important;
}

.cl-placeholder-youtube::placeholder {
  --placeholder-opacity: 1 !important;
  color: #FF0000 !important;
  color: rgba(255, 0, 0, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-transparent:focus::-moz-placeholder {
  color: transparent !important;
}

.focus\:cl-placeholder-transparent:focus::placeholder {
  color: transparent !important;
}

.focus\:cl-placeholder-current:focus::-moz-placeholder {
  color: currentColor !important;
}

.focus\:cl-placeholder-current:focus::placeholder {
  color: currentColor !important;
}

.focus\:cl-placeholder-black:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #000 !important;
  color: rgba(0, 0, 0, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-black:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #000 !important;
  color: rgba(0, 0, 0, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-white:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #fff !important;
  color: rgba(255, 255, 255, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-white:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #fff !important;
  color: rgba(255, 255, 255, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-gray-100:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #f7fafc !important;
  color: rgba(247, 250, 252, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-gray-100:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #f7fafc !important;
  color: rgba(247, 250, 252, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-gray-200:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #edf2f7 !important;
  color: rgba(237, 242, 247, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-gray-200:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #edf2f7 !important;
  color: rgba(237, 242, 247, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-gray-300:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #e2e8f0 !important;
  color: rgba(226, 232, 240, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-gray-300:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #e2e8f0 !important;
  color: rgba(226, 232, 240, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-gray-400:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #cbd5e0 !important;
  color: rgba(203, 213, 224, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-gray-400:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #cbd5e0 !important;
  color: rgba(203, 213, 224, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-gray-500:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #a0aec0 !important;
  color: rgba(160, 174, 192, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-gray-500:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #a0aec0 !important;
  color: rgba(160, 174, 192, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-gray-600:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #718096 !important;
  color: rgba(113, 128, 150, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-gray-600:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #718096 !important;
  color: rgba(113, 128, 150, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-gray-700:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #4a5568 !important;
  color: rgba(74, 85, 104, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-gray-700:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #4a5568 !important;
  color: rgba(74, 85, 104, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-gray-800:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #2d3748 !important;
  color: rgba(45, 55, 72, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-gray-800:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #2d3748 !important;
  color: rgba(45, 55, 72, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-gray-900:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #1a202c !important;
  color: rgba(26, 32, 44, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-gray-900:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #1a202c !important;
  color: rgba(26, 32, 44, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-red-100:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #fff5f5 !important;
  color: rgba(255, 245, 245, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-red-100:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #fff5f5 !important;
  color: rgba(255, 245, 245, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-red-200:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #fed7d7 !important;
  color: rgba(254, 215, 215, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-red-200:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #fed7d7 !important;
  color: rgba(254, 215, 215, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-red-300:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #feb2b2 !important;
  color: rgba(254, 178, 178, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-red-300:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #feb2b2 !important;
  color: rgba(254, 178, 178, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-red-400:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #fc8181 !important;
  color: rgba(252, 129, 129, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-red-400:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #fc8181 !important;
  color: rgba(252, 129, 129, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-red-500:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #f56565 !important;
  color: rgba(245, 101, 101, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-red-500:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #f56565 !important;
  color: rgba(245, 101, 101, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-red-600:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #e53e3e !important;
  color: rgba(229, 62, 62, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-red-600:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #e53e3e !important;
  color: rgba(229, 62, 62, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-red-700:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #c53030 !important;
  color: rgba(197, 48, 48, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-red-700:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #c53030 !important;
  color: rgba(197, 48, 48, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-red-800:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #9b2c2c !important;
  color: rgba(155, 44, 44, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-red-800:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #9b2c2c !important;
  color: rgba(155, 44, 44, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-red-900:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #742a2a !important;
  color: rgba(116, 42, 42, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-red-900:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #742a2a !important;
  color: rgba(116, 42, 42, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-orange-100:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #fffaf0 !important;
  color: rgba(255, 250, 240, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-orange-100:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #fffaf0 !important;
  color: rgba(255, 250, 240, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-orange-200:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #feebc8 !important;
  color: rgba(254, 235, 200, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-orange-200:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #feebc8 !important;
  color: rgba(254, 235, 200, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-orange-300:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #fbd38d !important;
  color: rgba(251, 211, 141, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-orange-300:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #fbd38d !important;
  color: rgba(251, 211, 141, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-orange-400:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #f6ad55 !important;
  color: rgba(246, 173, 85, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-orange-400:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #f6ad55 !important;
  color: rgba(246, 173, 85, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-orange-500:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #ed8936 !important;
  color: rgba(237, 137, 54, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-orange-500:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #ed8936 !important;
  color: rgba(237, 137, 54, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-orange-600:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #dd6b20 !important;
  color: rgba(221, 107, 32, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-orange-600:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #dd6b20 !important;
  color: rgba(221, 107, 32, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-orange-700:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #c05621 !important;
  color: rgba(192, 86, 33, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-orange-700:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #c05621 !important;
  color: rgba(192, 86, 33, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-orange-800:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #9c4221 !important;
  color: rgba(156, 66, 33, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-orange-800:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #9c4221 !important;
  color: rgba(156, 66, 33, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-orange-900:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #7b341e !important;
  color: rgba(123, 52, 30, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-orange-900:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #7b341e !important;
  color: rgba(123, 52, 30, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-yellow-100:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #fffff0 !important;
  color: rgba(255, 255, 240, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-yellow-100:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #fffff0 !important;
  color: rgba(255, 255, 240, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-yellow-200:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #fefcbf !important;
  color: rgba(254, 252, 191, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-yellow-200:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #fefcbf !important;
  color: rgba(254, 252, 191, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-yellow-300:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #faf089 !important;
  color: rgba(250, 240, 137, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-yellow-300:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #faf089 !important;
  color: rgba(250, 240, 137, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-yellow-400:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #f6e05e !important;
  color: rgba(246, 224, 94, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-yellow-400:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #f6e05e !important;
  color: rgba(246, 224, 94, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-yellow-500:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #ecc94b !important;
  color: rgba(236, 201, 75, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-yellow-500:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #ecc94b !important;
  color: rgba(236, 201, 75, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-yellow-600:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #d69e2e !important;
  color: rgba(214, 158, 46, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-yellow-600:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #d69e2e !important;
  color: rgba(214, 158, 46, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-yellow-700:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #b7791f !important;
  color: rgba(183, 121, 31, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-yellow-700:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #b7791f !important;
  color: rgba(183, 121, 31, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-yellow-800:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #975a16 !important;
  color: rgba(151, 90, 22, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-yellow-800:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #975a16 !important;
  color: rgba(151, 90, 22, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-yellow-900:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #744210 !important;
  color: rgba(116, 66, 16, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-yellow-900:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #744210 !important;
  color: rgba(116, 66, 16, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-green-100:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #f0fff4 !important;
  color: rgba(240, 255, 244, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-green-100:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #f0fff4 !important;
  color: rgba(240, 255, 244, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-green-200:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #c6f6d5 !important;
  color: rgba(198, 246, 213, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-green-200:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #c6f6d5 !important;
  color: rgba(198, 246, 213, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-green-300:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #9ae6b4 !important;
  color: rgba(154, 230, 180, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-green-300:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #9ae6b4 !important;
  color: rgba(154, 230, 180, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-green-400:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #68d391 !important;
  color: rgba(104, 211, 145, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-green-400:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #68d391 !important;
  color: rgba(104, 211, 145, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-green-500:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #48bb78 !important;
  color: rgba(72, 187, 120, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-green-500:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #48bb78 !important;
  color: rgba(72, 187, 120, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-green-600:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #38a169 !important;
  color: rgba(56, 161, 105, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-green-600:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #38a169 !important;
  color: rgba(56, 161, 105, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-green-700:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #2f855a !important;
  color: rgba(47, 133, 90, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-green-700:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #2f855a !important;
  color: rgba(47, 133, 90, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-green-800:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #276749 !important;
  color: rgba(39, 103, 73, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-green-800:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #276749 !important;
  color: rgba(39, 103, 73, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-green-900:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #22543d !important;
  color: rgba(34, 84, 61, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-green-900:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #22543d !important;
  color: rgba(34, 84, 61, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-teal-100:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #e6fffa !important;
  color: rgba(230, 255, 250, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-teal-100:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #e6fffa !important;
  color: rgba(230, 255, 250, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-teal-200:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #b2f5ea !important;
  color: rgba(178, 245, 234, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-teal-200:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #b2f5ea !important;
  color: rgba(178, 245, 234, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-teal-300:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #81e6d9 !important;
  color: rgba(129, 230, 217, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-teal-300:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #81e6d9 !important;
  color: rgba(129, 230, 217, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-teal-400:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #4fd1c5 !important;
  color: rgba(79, 209, 197, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-teal-400:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #4fd1c5 !important;
  color: rgba(79, 209, 197, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-teal-500:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #38b2ac !important;
  color: rgba(56, 178, 172, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-teal-500:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #38b2ac !important;
  color: rgba(56, 178, 172, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-teal-600:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #319795 !important;
  color: rgba(49, 151, 149, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-teal-600:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #319795 !important;
  color: rgba(49, 151, 149, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-teal-700:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #2c7a7b !important;
  color: rgba(44, 122, 123, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-teal-700:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #2c7a7b !important;
  color: rgba(44, 122, 123, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-teal-800:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #285e61 !important;
  color: rgba(40, 94, 97, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-teal-800:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #285e61 !important;
  color: rgba(40, 94, 97, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-teal-900:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #234e52 !important;
  color: rgba(35, 78, 82, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-teal-900:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #234e52 !important;
  color: rgba(35, 78, 82, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-blue-100:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #ebf8ff !important;
  color: rgba(235, 248, 255, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-blue-100:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #ebf8ff !important;
  color: rgba(235, 248, 255, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-blue-200:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #bee3f8 !important;
  color: rgba(190, 227, 248, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-blue-200:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #bee3f8 !important;
  color: rgba(190, 227, 248, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-blue-300:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #90cdf4 !important;
  color: rgba(144, 205, 244, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-blue-300:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #90cdf4 !important;
  color: rgba(144, 205, 244, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-blue-400:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #63b3ed !important;
  color: rgba(99, 179, 237, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-blue-400:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #63b3ed !important;
  color: rgba(99, 179, 237, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-blue-500:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #4299e1 !important;
  color: rgba(66, 153, 225, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-blue-500:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #4299e1 !important;
  color: rgba(66, 153, 225, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-blue-600:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #3182ce !important;
  color: rgba(49, 130, 206, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-blue-600:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #3182ce !important;
  color: rgba(49, 130, 206, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-blue-700:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #2b6cb0 !important;
  color: rgba(43, 108, 176, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-blue-700:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #2b6cb0 !important;
  color: rgba(43, 108, 176, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-blue-800:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #2c5282 !important;
  color: rgba(44, 82, 130, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-blue-800:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #2c5282 !important;
  color: rgba(44, 82, 130, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-blue-900:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #2a4365 !important;
  color: rgba(42, 67, 101, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-blue-900:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #2a4365 !important;
  color: rgba(42, 67, 101, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-indigo-100:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #ebf4ff !important;
  color: rgba(235, 244, 255, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-indigo-100:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #ebf4ff !important;
  color: rgba(235, 244, 255, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-indigo-200:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #c3dafe !important;
  color: rgba(195, 218, 254, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-indigo-200:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #c3dafe !important;
  color: rgba(195, 218, 254, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-indigo-300:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #a3bffa !important;
  color: rgba(163, 191, 250, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-indigo-300:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #a3bffa !important;
  color: rgba(163, 191, 250, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-indigo-400:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #7f9cf5 !important;
  color: rgba(127, 156, 245, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-indigo-400:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #7f9cf5 !important;
  color: rgba(127, 156, 245, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-indigo-500:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #667eea !important;
  color: rgba(102, 126, 234, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-indigo-500:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #667eea !important;
  color: rgba(102, 126, 234, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-indigo-600:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #5a67d8 !important;
  color: rgba(90, 103, 216, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-indigo-600:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #5a67d8 !important;
  color: rgba(90, 103, 216, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-indigo-700:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #4c51bf !important;
  color: rgba(76, 81, 191, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-indigo-700:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #4c51bf !important;
  color: rgba(76, 81, 191, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-indigo-800:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #434190 !important;
  color: rgba(67, 65, 144, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-indigo-800:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #434190 !important;
  color: rgba(67, 65, 144, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-indigo-900:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #3c366b !important;
  color: rgba(60, 54, 107, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-indigo-900:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #3c366b !important;
  color: rgba(60, 54, 107, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-purple-100:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #faf5ff !important;
  color: rgba(250, 245, 255, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-purple-100:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #faf5ff !important;
  color: rgba(250, 245, 255, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-purple-200:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #e9d8fd !important;
  color: rgba(233, 216, 253, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-purple-200:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #e9d8fd !important;
  color: rgba(233, 216, 253, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-purple-300:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #d6bcfa !important;
  color: rgba(214, 188, 250, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-purple-300:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #d6bcfa !important;
  color: rgba(214, 188, 250, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-purple-400:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #b794f4 !important;
  color: rgba(183, 148, 244, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-purple-400:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #b794f4 !important;
  color: rgba(183, 148, 244, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-purple-500:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #9f7aea !important;
  color: rgba(159, 122, 234, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-purple-500:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #9f7aea !important;
  color: rgba(159, 122, 234, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-purple-600:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #805ad5 !important;
  color: rgba(128, 90, 213, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-purple-600:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #805ad5 !important;
  color: rgba(128, 90, 213, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-purple-700:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #6b46c1 !important;
  color: rgba(107, 70, 193, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-purple-700:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #6b46c1 !important;
  color: rgba(107, 70, 193, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-purple-800:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #553c9a !important;
  color: rgba(85, 60, 154, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-purple-800:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #553c9a !important;
  color: rgba(85, 60, 154, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-purple-900:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #44337a !important;
  color: rgba(68, 51, 122, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-purple-900:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #44337a !important;
  color: rgba(68, 51, 122, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-pink-100:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #fff5f7 !important;
  color: rgba(255, 245, 247, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-pink-100:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #fff5f7 !important;
  color: rgba(255, 245, 247, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-pink-200:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #fed7e2 !important;
  color: rgba(254, 215, 226, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-pink-200:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #fed7e2 !important;
  color: rgba(254, 215, 226, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-pink-300:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #fbb6ce !important;
  color: rgba(251, 182, 206, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-pink-300:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #fbb6ce !important;
  color: rgba(251, 182, 206, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-pink-400:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #f687b3 !important;
  color: rgba(246, 135, 179, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-pink-400:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #f687b3 !important;
  color: rgba(246, 135, 179, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-pink-500:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #ed64a6 !important;
  color: rgba(237, 100, 166, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-pink-500:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #ed64a6 !important;
  color: rgba(237, 100, 166, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-pink-600:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #d53f8c !important;
  color: rgba(213, 63, 140, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-pink-600:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #d53f8c !important;
  color: rgba(213, 63, 140, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-pink-700:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #b83280 !important;
  color: rgba(184, 50, 128, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-pink-700:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #b83280 !important;
  color: rgba(184, 50, 128, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-pink-800:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #97266d !important;
  color: rgba(151, 38, 109, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-pink-800:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #97266d !important;
  color: rgba(151, 38, 109, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-pink-900:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #702459 !important;
  color: rgba(112, 36, 89, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-pink-900:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #702459 !important;
  color: rgba(112, 36, 89, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-ui-gray-100:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #f1f1f1 !important;
  color: rgba(241, 241, 241, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-ui-gray-100:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #f1f1f1 !important;
  color: rgba(241, 241, 241, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-ui-brown-100:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #f3ecdc !important;
  color: rgba(243, 236, 220, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-ui-brown-100:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #f3ecdc !important;
  color: rgba(243, 236, 220, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-ui-brown-200:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #e8e0c9 !important;
  color: rgba(232, 224, 201, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-ui-brown-200:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #e8e0c9 !important;
  color: rgba(232, 224, 201, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-ui-brown-300:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #d0c095 !important;
  color: rgba(208, 192, 149, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-ui-brown-300:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #d0c095 !important;
  color: rgba(208, 192, 149, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-ui-brown-700:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #bd6005 !important;
  color: rgba(189, 96, 5, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-ui-brown-700:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #bd6005 !important;
  color: rgba(189, 96, 5, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-ui-green-300:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #aac74c !important;
  color: rgba(170, 199, 76, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-ui-green-300:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #aac74c !important;
  color: rgba(170, 199, 76, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-ui-green-400:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #71893e !important;
  color: rgba(113, 137, 62, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-ui-green-400:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #71893e !important;
  color: rgba(113, 137, 62, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-ui-orange-500:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #e27212 !important;
  color: rgba(226, 114, 18, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-ui-orange-500:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #e27212 !important;
  color: rgba(226, 114, 18, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-facebook:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #3b5998 !important;
  color: rgba(59, 89, 152, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-facebook:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #3b5998 !important;
  color: rgba(59, 89, 152, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-twitter:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #00acee !important;
  color: rgba(0, 172, 238, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-twitter:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #00acee !important;
  color: rgba(0, 172, 238, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-twitch:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #6441a5 !important;
  color: rgba(100, 65, 165, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-twitch:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #6441a5 !important;
  color: rgba(100, 65, 165, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-youtube:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
  color: #FF0000 !important;
  color: rgba(255, 0, 0, var(--placeholder-opacity)) !important;
}

.focus\:cl-placeholder-youtube:focus::placeholder {
  --placeholder-opacity: 1 !important;
  color: #FF0000 !important;
  color: rgba(255, 0, 0, var(--placeholder-opacity)) !important;
}

.cl-placeholder-opacity-0::-moz-placeholder {
  --placeholder-opacity: 0 !important;
}

.cl-placeholder-opacity-0::placeholder {
  --placeholder-opacity: 0 !important;
}

.cl-placeholder-opacity-25::-moz-placeholder {
  --placeholder-opacity: 0.25 !important;
}

.cl-placeholder-opacity-25::placeholder {
  --placeholder-opacity: 0.25 !important;
}

.cl-placeholder-opacity-50::-moz-placeholder {
  --placeholder-opacity: 0.5 !important;
}

.cl-placeholder-opacity-50::placeholder {
  --placeholder-opacity: 0.5 !important;
}

.cl-placeholder-opacity-75::-moz-placeholder {
  --placeholder-opacity: 0.75 !important;
}

.cl-placeholder-opacity-75::placeholder {
  --placeholder-opacity: 0.75 !important;
}

.cl-placeholder-opacity-100::-moz-placeholder {
  --placeholder-opacity: 1 !important;
}

.cl-placeholder-opacity-100::placeholder {
  --placeholder-opacity: 1 !important;
}

.focus\:cl-placeholder-opacity-0:focus::-moz-placeholder {
  --placeholder-opacity: 0 !important;
}

.focus\:cl-placeholder-opacity-0:focus::placeholder {
  --placeholder-opacity: 0 !important;
}

.focus\:cl-placeholder-opacity-25:focus::-moz-placeholder {
  --placeholder-opacity: 0.25 !important;
}

.focus\:cl-placeholder-opacity-25:focus::placeholder {
  --placeholder-opacity: 0.25 !important;
}

.focus\:cl-placeholder-opacity-50:focus::-moz-placeholder {
  --placeholder-opacity: 0.5 !important;
}

.focus\:cl-placeholder-opacity-50:focus::placeholder {
  --placeholder-opacity: 0.5 !important;
}

.focus\:cl-placeholder-opacity-75:focus::-moz-placeholder {
  --placeholder-opacity: 0.75 !important;
}

.focus\:cl-placeholder-opacity-75:focus::placeholder {
  --placeholder-opacity: 0.75 !important;
}

.focus\:cl-placeholder-opacity-100:focus::-moz-placeholder {
  --placeholder-opacity: 1 !important;
}

.focus\:cl-placeholder-opacity-100:focus::placeholder {
  --placeholder-opacity: 1 !important;
}

.cl-pointer-events-none {
  pointer-events: none !important;
}

.cl-pointer-events-auto {
  pointer-events: auto !important;
}

.cl-static {
  position: static !important;
}

.cl-fixed {
  position: fixed !important;
}

.cl-absolute {
  position: absolute !important;
}

.cl-relative {
  position: relative !important;
}

.cl-sticky {
  position: sticky !important;
}

.cl-inset-0 {
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
}

.cl-inset-auto {
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
}

.cl-inset-y-0 {
  top: 0 !important;
  bottom: 0 !important;
}

.cl-inset-x-0 {
  right: 0 !important;
  left: 0 !important;
}

.cl-inset-y-auto {
  top: auto !important;
  bottom: auto !important;
}

.cl-inset-x-auto {
  right: auto !important;
  left: auto !important;
}

.cl-top-0 {
  top: 0 !important;
}

.cl-right-0 {
  right: 0 !important;
}

.cl-bottom-0 {
  bottom: 0 !important;
}

.cl-left-0 {
  left: 0 !important;
}

.cl-top-auto {
  top: auto !important;
}

.cl-right-auto {
  right: auto !important;
}

.cl-bottom-auto {
  bottom: auto !important;
}

.cl-left-auto {
  left: auto !important;
}

.cl-resize-none {
  resize: none !important;
}

.cl-resize-y {
  resize: vertical !important;
}

.cl-resize-x {
  resize: horizontal !important;
}

.cl-resize {
  resize: both !important;
}

.cl-shadow-xs {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
}

.cl-shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}

.cl-shadow {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
}

.cl-shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

.cl-shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.cl-shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.cl-shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

.cl-shadow-inner {
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
}

.cl-shadow-outline {
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5) !important;
}

.cl-shadow-none {
  box-shadow: none !important;
}

.cl-shadow-ui-wrapper {
  box-shadow: 2px 0 4px 1px #4b4b4b42 !important;
}

.cl-shadow-ui-btn-lg {
  box-shadow: 0 8px 0 0 #c9c3b0 !important;
}

.cl-shadow-ui-btn {
  box-shadow: 0 5px 0 0 #c9c3b0 !important;
}

.cl-shadow-ui-leaderboard {
  box-shadow: 0 7px 0 0 #a76d28 !important;
}

.cl-shadow-ui-leaderboard-normal {
  box-shadow: 0 5px 0 0 #c3c3c3 !important;
}

.cl-shadow-ui-divider-l {
  box-shadow: -1px 0 0 0 #b5a881 !important;
}

.hover\:cl-shadow-xs:hover {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
}

.hover\:cl-shadow-sm:hover {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}

.hover\:cl-shadow:hover {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
}

.hover\:cl-shadow-md:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

.hover\:cl-shadow-lg:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.hover\:cl-shadow-xl:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.hover\:cl-shadow-2xl:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

.hover\:cl-shadow-inner:hover {
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
}

.hover\:cl-shadow-outline:hover {
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5) !important;
}

.hover\:cl-shadow-none:hover {
  box-shadow: none !important;
}

.hover\:cl-shadow-ui-wrapper:hover {
  box-shadow: 2px 0 4px 1px #4b4b4b42 !important;
}

.hover\:cl-shadow-ui-btn-lg:hover {
  box-shadow: 0 8px 0 0 #c9c3b0 !important;
}

.hover\:cl-shadow-ui-btn:hover {
  box-shadow: 0 5px 0 0 #c9c3b0 !important;
}

.hover\:cl-shadow-ui-leaderboard:hover {
  box-shadow: 0 7px 0 0 #a76d28 !important;
}

.hover\:cl-shadow-ui-leaderboard-normal:hover {
  box-shadow: 0 5px 0 0 #c3c3c3 !important;
}

.hover\:cl-shadow-ui-divider-l:hover {
  box-shadow: -1px 0 0 0 #b5a881 !important;
}

.focus\:cl-shadow-xs:focus {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
}

.focus\:cl-shadow-sm:focus {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}

.focus\:cl-shadow:focus {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
}

.focus\:cl-shadow-md:focus {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

.focus\:cl-shadow-lg:focus {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.focus\:cl-shadow-xl:focus {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.focus\:cl-shadow-2xl:focus {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

.focus\:cl-shadow-inner:focus {
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
}

.focus\:cl-shadow-outline:focus {
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5) !important;
}

.focus\:cl-shadow-none:focus {
  box-shadow: none !important;
}

.focus\:cl-shadow-ui-wrapper:focus {
  box-shadow: 2px 0 4px 1px #4b4b4b42 !important;
}

.focus\:cl-shadow-ui-btn-lg:focus {
  box-shadow: 0 8px 0 0 #c9c3b0 !important;
}

.focus\:cl-shadow-ui-btn:focus {
  box-shadow: 0 5px 0 0 #c9c3b0 !important;
}

.focus\:cl-shadow-ui-leaderboard:focus {
  box-shadow: 0 7px 0 0 #a76d28 !important;
}

.focus\:cl-shadow-ui-leaderboard-normal:focus {
  box-shadow: 0 5px 0 0 #c3c3c3 !important;
}

.focus\:cl-shadow-ui-divider-l:focus {
  box-shadow: -1px 0 0 0 #b5a881 !important;
}

.active\:cl-shadow-xs:active {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
}

.active\:cl-shadow-sm:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}

.active\:cl-shadow:active {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
}

.active\:cl-shadow-md:active {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

.active\:cl-shadow-lg:active {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.active\:cl-shadow-xl:active {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.active\:cl-shadow-2xl:active {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

.active\:cl-shadow-inner:active {
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
}

.active\:cl-shadow-outline:active {
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5) !important;
}

.active\:cl-shadow-none:active {
  box-shadow: none !important;
}

.active\:cl-shadow-ui-wrapper:active {
  box-shadow: 2px 0 4px 1px #4b4b4b42 !important;
}

.active\:cl-shadow-ui-btn-lg:active {
  box-shadow: 0 8px 0 0 #c9c3b0 !important;
}

.active\:cl-shadow-ui-btn:active {
  box-shadow: 0 5px 0 0 #c9c3b0 !important;
}

.active\:cl-shadow-ui-leaderboard:active {
  box-shadow: 0 7px 0 0 #a76d28 !important;
}

.active\:cl-shadow-ui-leaderboard-normal:active {
  box-shadow: 0 5px 0 0 #c3c3c3 !important;
}

.active\:cl-shadow-ui-divider-l:active {
  box-shadow: -1px 0 0 0 #b5a881 !important;
}

.cl-fill-current {
  fill: currentColor !important;
}

.cl-stroke-current {
  stroke: currentColor !important;
}

.cl-stroke-0 {
  stroke-width: 0 !important;
}

.cl-stroke-1 {
  stroke-width: 1 !important;
}

.cl-stroke-2 {
  stroke-width: 2 !important;
}

.cl-table-auto {
  table-layout: auto !important;
}

.cl-table-fixed {
  table-layout: fixed !important;
}

.cl-text-left {
  text-align: left !important;
}

.cl-text-center {
  text-align: center !important;
}

.cl-text-right {
  text-align: right !important;
}

.cl-text-justify {
  text-align: justify !important;
}

.cl-text-transparent {
  color: transparent !important;
}

.cl-text-current {
  color: currentColor !important;
}

.cl-text-black {
  --text-opacity: 1 !important;
  color: #000 !important;
  color: rgba(0, 0, 0, var(--text-opacity)) !important;
}

.cl-text-white {
  --text-opacity: 1 !important;
  color: #fff !important;
  color: rgba(255, 255, 255, var(--text-opacity)) !important;
}

.cl-text-gray-100 {
  --text-opacity: 1 !important;
  color: #f7fafc !important;
  color: rgba(247, 250, 252, var(--text-opacity)) !important;
}

.cl-text-gray-200 {
  --text-opacity: 1 !important;
  color: #edf2f7 !important;
  color: rgba(237, 242, 247, var(--text-opacity)) !important;
}

.cl-text-gray-300 {
  --text-opacity: 1 !important;
  color: #e2e8f0 !important;
  color: rgba(226, 232, 240, var(--text-opacity)) !important;
}

.cl-text-gray-400 {
  --text-opacity: 1 !important;
  color: #cbd5e0 !important;
  color: rgba(203, 213, 224, var(--text-opacity)) !important;
}

.cl-text-gray-500 {
  --text-opacity: 1 !important;
  color: #a0aec0 !important;
  color: rgba(160, 174, 192, var(--text-opacity)) !important;
}

.cl-text-gray-600 {
  --text-opacity: 1 !important;
  color: #718096 !important;
  color: rgba(113, 128, 150, var(--text-opacity)) !important;
}

.cl-text-gray-700 {
  --text-opacity: 1 !important;
  color: #4a5568 !important;
  color: rgba(74, 85, 104, var(--text-opacity)) !important;
}

.cl-text-gray-800 {
  --text-opacity: 1 !important;
  color: #2d3748 !important;
  color: rgba(45, 55, 72, var(--text-opacity)) !important;
}

.cl-text-gray-900 {
  --text-opacity: 1 !important;
  color: #1a202c !important;
  color: rgba(26, 32, 44, var(--text-opacity)) !important;
}

.cl-text-red-100 {
  --text-opacity: 1 !important;
  color: #fff5f5 !important;
  color: rgba(255, 245, 245, var(--text-opacity)) !important;
}

.cl-text-red-200 {
  --text-opacity: 1 !important;
  color: #fed7d7 !important;
  color: rgba(254, 215, 215, var(--text-opacity)) !important;
}

.cl-text-red-300 {
  --text-opacity: 1 !important;
  color: #feb2b2 !important;
  color: rgba(254, 178, 178, var(--text-opacity)) !important;
}

.cl-text-red-400 {
  --text-opacity: 1 !important;
  color: #fc8181 !important;
  color: rgba(252, 129, 129, var(--text-opacity)) !important;
}

.cl-text-red-500 {
  --text-opacity: 1 !important;
  color: #f56565 !important;
  color: rgba(245, 101, 101, var(--text-opacity)) !important;
}

.cl-text-red-600 {
  --text-opacity: 1 !important;
  color: #e53e3e !important;
  color: rgba(229, 62, 62, var(--text-opacity)) !important;
}

.cl-text-red-700 {
  --text-opacity: 1 !important;
  color: #c53030 !important;
  color: rgba(197, 48, 48, var(--text-opacity)) !important;
}

.cl-text-red-800 {
  --text-opacity: 1 !important;
  color: #9b2c2c !important;
  color: rgba(155, 44, 44, var(--text-opacity)) !important;
}

.cl-text-red-900 {
  --text-opacity: 1 !important;
  color: #742a2a !important;
  color: rgba(116, 42, 42, var(--text-opacity)) !important;
}

.cl-text-orange-100 {
  --text-opacity: 1 !important;
  color: #fffaf0 !important;
  color: rgba(255, 250, 240, var(--text-opacity)) !important;
}

.cl-text-orange-200 {
  --text-opacity: 1 !important;
  color: #feebc8 !important;
  color: rgba(254, 235, 200, var(--text-opacity)) !important;
}

.cl-text-orange-300 {
  --text-opacity: 1 !important;
  color: #fbd38d !important;
  color: rgba(251, 211, 141, var(--text-opacity)) !important;
}

.cl-text-orange-400 {
  --text-opacity: 1 !important;
  color: #f6ad55 !important;
  color: rgba(246, 173, 85, var(--text-opacity)) !important;
}

.cl-text-orange-500 {
  --text-opacity: 1 !important;
  color: #ed8936 !important;
  color: rgba(237, 137, 54, var(--text-opacity)) !important;
}

.cl-text-orange-600 {
  --text-opacity: 1 !important;
  color: #dd6b20 !important;
  color: rgba(221, 107, 32, var(--text-opacity)) !important;
}

.cl-text-orange-700 {
  --text-opacity: 1 !important;
  color: #c05621 !important;
  color: rgba(192, 86, 33, var(--text-opacity)) !important;
}

.cl-text-orange-800 {
  --text-opacity: 1 !important;
  color: #9c4221 !important;
  color: rgba(156, 66, 33, var(--text-opacity)) !important;
}

.cl-text-orange-900 {
  --text-opacity: 1 !important;
  color: #7b341e !important;
  color: rgba(123, 52, 30, var(--text-opacity)) !important;
}

.cl-text-yellow-100 {
  --text-opacity: 1 !important;
  color: #fffff0 !important;
  color: rgba(255, 255, 240, var(--text-opacity)) !important;
}

.cl-text-yellow-200 {
  --text-opacity: 1 !important;
  color: #fefcbf !important;
  color: rgba(254, 252, 191, var(--text-opacity)) !important;
}

.cl-text-yellow-300 {
  --text-opacity: 1 !important;
  color: #faf089 !important;
  color: rgba(250, 240, 137, var(--text-opacity)) !important;
}

.cl-text-yellow-400 {
  --text-opacity: 1 !important;
  color: #f6e05e !important;
  color: rgba(246, 224, 94, var(--text-opacity)) !important;
}

.cl-text-yellow-500 {
  --text-opacity: 1 !important;
  color: #ecc94b !important;
  color: rgba(236, 201, 75, var(--text-opacity)) !important;
}

.cl-text-yellow-600 {
  --text-opacity: 1 !important;
  color: #d69e2e !important;
  color: rgba(214, 158, 46, var(--text-opacity)) !important;
}

.cl-text-yellow-700 {
  --text-opacity: 1 !important;
  color: #b7791f !important;
  color: rgba(183, 121, 31, var(--text-opacity)) !important;
}

.cl-text-yellow-800 {
  --text-opacity: 1 !important;
  color: #975a16 !important;
  color: rgba(151, 90, 22, var(--text-opacity)) !important;
}

.cl-text-yellow-900 {
  --text-opacity: 1 !important;
  color: #744210 !important;
  color: rgba(116, 66, 16, var(--text-opacity)) !important;
}

.cl-text-green-100 {
  --text-opacity: 1 !important;
  color: #f0fff4 !important;
  color: rgba(240, 255, 244, var(--text-opacity)) !important;
}

.cl-text-green-200 {
  --text-opacity: 1 !important;
  color: #c6f6d5 !important;
  color: rgba(198, 246, 213, var(--text-opacity)) !important;
}

.cl-text-green-300 {
  --text-opacity: 1 !important;
  color: #9ae6b4 !important;
  color: rgba(154, 230, 180, var(--text-opacity)) !important;
}

.cl-text-green-400 {
  --text-opacity: 1 !important;
  color: #68d391 !important;
  color: rgba(104, 211, 145, var(--text-opacity)) !important;
}

.cl-text-green-500 {
  --text-opacity: 1 !important;
  color: #48bb78 !important;
  color: rgba(72, 187, 120, var(--text-opacity)) !important;
}

.cl-text-green-600 {
  --text-opacity: 1 !important;
  color: #38a169 !important;
  color: rgba(56, 161, 105, var(--text-opacity)) !important;
}

.cl-text-green-700 {
  --text-opacity: 1 !important;
  color: #2f855a !important;
  color: rgba(47, 133, 90, var(--text-opacity)) !important;
}

.cl-text-green-800 {
  --text-opacity: 1 !important;
  color: #276749 !important;
  color: rgba(39, 103, 73, var(--text-opacity)) !important;
}

.cl-text-green-900 {
  --text-opacity: 1 !important;
  color: #22543d !important;
  color: rgba(34, 84, 61, var(--text-opacity)) !important;
}

.cl-text-teal-100 {
  --text-opacity: 1 !important;
  color: #e6fffa !important;
  color: rgba(230, 255, 250, var(--text-opacity)) !important;
}

.cl-text-teal-200 {
  --text-opacity: 1 !important;
  color: #b2f5ea !important;
  color: rgba(178, 245, 234, var(--text-opacity)) !important;
}

.cl-text-teal-300 {
  --text-opacity: 1 !important;
  color: #81e6d9 !important;
  color: rgba(129, 230, 217, var(--text-opacity)) !important;
}

.cl-text-teal-400 {
  --text-opacity: 1 !important;
  color: #4fd1c5 !important;
  color: rgba(79, 209, 197, var(--text-opacity)) !important;
}

.cl-text-teal-500 {
  --text-opacity: 1 !important;
  color: #38b2ac !important;
  color: rgba(56, 178, 172, var(--text-opacity)) !important;
}

.cl-text-teal-600 {
  --text-opacity: 1 !important;
  color: #319795 !important;
  color: rgba(49, 151, 149, var(--text-opacity)) !important;
}

.cl-text-teal-700 {
  --text-opacity: 1 !important;
  color: #2c7a7b !important;
  color: rgba(44, 122, 123, var(--text-opacity)) !important;
}

.cl-text-teal-800 {
  --text-opacity: 1 !important;
  color: #285e61 !important;
  color: rgba(40, 94, 97, var(--text-opacity)) !important;
}

.cl-text-teal-900 {
  --text-opacity: 1 !important;
  color: #234e52 !important;
  color: rgba(35, 78, 82, var(--text-opacity)) !important;
}

.cl-text-blue-100 {
  --text-opacity: 1 !important;
  color: #ebf8ff !important;
  color: rgba(235, 248, 255, var(--text-opacity)) !important;
}

.cl-text-blue-200 {
  --text-opacity: 1 !important;
  color: #bee3f8 !important;
  color: rgba(190, 227, 248, var(--text-opacity)) !important;
}

.cl-text-blue-300 {
  --text-opacity: 1 !important;
  color: #90cdf4 !important;
  color: rgba(144, 205, 244, var(--text-opacity)) !important;
}

.cl-text-blue-400 {
  --text-opacity: 1 !important;
  color: #63b3ed !important;
  color: rgba(99, 179, 237, var(--text-opacity)) !important;
}

.cl-text-blue-500 {
  --text-opacity: 1 !important;
  color: #4299e1 !important;
  color: rgba(66, 153, 225, var(--text-opacity)) !important;
}

.cl-text-blue-600 {
  --text-opacity: 1 !important;
  color: #3182ce !important;
  color: rgba(49, 130, 206, var(--text-opacity)) !important;
}

.cl-text-blue-700 {
  --text-opacity: 1 !important;
  color: #2b6cb0 !important;
  color: rgba(43, 108, 176, var(--text-opacity)) !important;
}

.cl-text-blue-800 {
  --text-opacity: 1 !important;
  color: #2c5282 !important;
  color: rgba(44, 82, 130, var(--text-opacity)) !important;
}

.cl-text-blue-900 {
  --text-opacity: 1 !important;
  color: #2a4365 !important;
  color: rgba(42, 67, 101, var(--text-opacity)) !important;
}

.cl-text-indigo-100 {
  --text-opacity: 1 !important;
  color: #ebf4ff !important;
  color: rgba(235, 244, 255, var(--text-opacity)) !important;
}

.cl-text-indigo-200 {
  --text-opacity: 1 !important;
  color: #c3dafe !important;
  color: rgba(195, 218, 254, var(--text-opacity)) !important;
}

.cl-text-indigo-300 {
  --text-opacity: 1 !important;
  color: #a3bffa !important;
  color: rgba(163, 191, 250, var(--text-opacity)) !important;
}

.cl-text-indigo-400 {
  --text-opacity: 1 !important;
  color: #7f9cf5 !important;
  color: rgba(127, 156, 245, var(--text-opacity)) !important;
}

.cl-text-indigo-500 {
  --text-opacity: 1 !important;
  color: #667eea !important;
  color: rgba(102, 126, 234, var(--text-opacity)) !important;
}

.cl-text-indigo-600 {
  --text-opacity: 1 !important;
  color: #5a67d8 !important;
  color: rgba(90, 103, 216, var(--text-opacity)) !important;
}

.cl-text-indigo-700 {
  --text-opacity: 1 !important;
  color: #4c51bf !important;
  color: rgba(76, 81, 191, var(--text-opacity)) !important;
}

.cl-text-indigo-800 {
  --text-opacity: 1 !important;
  color: #434190 !important;
  color: rgba(67, 65, 144, var(--text-opacity)) !important;
}

.cl-text-indigo-900 {
  --text-opacity: 1 !important;
  color: #3c366b !important;
  color: rgba(60, 54, 107, var(--text-opacity)) !important;
}

.cl-text-purple-100 {
  --text-opacity: 1 !important;
  color: #faf5ff !important;
  color: rgba(250, 245, 255, var(--text-opacity)) !important;
}

.cl-text-purple-200 {
  --text-opacity: 1 !important;
  color: #e9d8fd !important;
  color: rgba(233, 216, 253, var(--text-opacity)) !important;
}

.cl-text-purple-300 {
  --text-opacity: 1 !important;
  color: #d6bcfa !important;
  color: rgba(214, 188, 250, var(--text-opacity)) !important;
}

.cl-text-purple-400 {
  --text-opacity: 1 !important;
  color: #b794f4 !important;
  color: rgba(183, 148, 244, var(--text-opacity)) !important;
}

.cl-text-purple-500 {
  --text-opacity: 1 !important;
  color: #9f7aea !important;
  color: rgba(159, 122, 234, var(--text-opacity)) !important;
}

.cl-text-purple-600 {
  --text-opacity: 1 !important;
  color: #805ad5 !important;
  color: rgba(128, 90, 213, var(--text-opacity)) !important;
}

.cl-text-purple-700 {
  --text-opacity: 1 !important;
  color: #6b46c1 !important;
  color: rgba(107, 70, 193, var(--text-opacity)) !important;
}

.cl-text-purple-800 {
  --text-opacity: 1 !important;
  color: #553c9a !important;
  color: rgba(85, 60, 154, var(--text-opacity)) !important;
}

.cl-text-purple-900 {
  --text-opacity: 1 !important;
  color: #44337a !important;
  color: rgba(68, 51, 122, var(--text-opacity)) !important;
}

.cl-text-pink-100 {
  --text-opacity: 1 !important;
  color: #fff5f7 !important;
  color: rgba(255, 245, 247, var(--text-opacity)) !important;
}

.cl-text-pink-200 {
  --text-opacity: 1 !important;
  color: #fed7e2 !important;
  color: rgba(254, 215, 226, var(--text-opacity)) !important;
}

.cl-text-pink-300 {
  --text-opacity: 1 !important;
  color: #fbb6ce !important;
  color: rgba(251, 182, 206, var(--text-opacity)) !important;
}

.cl-text-pink-400 {
  --text-opacity: 1 !important;
  color: #f687b3 !important;
  color: rgba(246, 135, 179, var(--text-opacity)) !important;
}

.cl-text-pink-500 {
  --text-opacity: 1 !important;
  color: #ed64a6 !important;
  color: rgba(237, 100, 166, var(--text-opacity)) !important;
}

.cl-text-pink-600 {
  --text-opacity: 1 !important;
  color: #d53f8c !important;
  color: rgba(213, 63, 140, var(--text-opacity)) !important;
}

.cl-text-pink-700 {
  --text-opacity: 1 !important;
  color: #b83280 !important;
  color: rgba(184, 50, 128, var(--text-opacity)) !important;
}

.cl-text-pink-800 {
  --text-opacity: 1 !important;
  color: #97266d !important;
  color: rgba(151, 38, 109, var(--text-opacity)) !important;
}

.cl-text-pink-900 {
  --text-opacity: 1 !important;
  color: #702459 !important;
  color: rgba(112, 36, 89, var(--text-opacity)) !important;
}

.cl-text-ui-gray-100 {
  --text-opacity: 1 !important;
  color: #f1f1f1 !important;
  color: rgba(241, 241, 241, var(--text-opacity)) !important;
}

.cl-text-ui-brown-100 {
  --text-opacity: 1 !important;
  color: #f3ecdc !important;
  color: rgba(243, 236, 220, var(--text-opacity)) !important;
}

.cl-text-ui-brown-200 {
  --text-opacity: 1 !important;
  color: #e8e0c9 !important;
  color: rgba(232, 224, 201, var(--text-opacity)) !important;
}

.cl-text-ui-brown-300 {
  --text-opacity: 1 !important;
  color: #d0c095 !important;
  color: rgba(208, 192, 149, var(--text-opacity)) !important;
}

.cl-text-ui-brown-700 {
  --text-opacity: 1 !important;
  color: #bd6005 !important;
  color: rgba(189, 96, 5, var(--text-opacity)) !important;
}

.cl-text-ui-green-300 {
  --text-opacity: 1 !important;
  color: #aac74c !important;
  color: rgba(170, 199, 76, var(--text-opacity)) !important;
}

.cl-text-ui-green-400 {
  --text-opacity: 1 !important;
  color: #71893e !important;
  color: rgba(113, 137, 62, var(--text-opacity)) !important;
}

.cl-text-ui-orange-500 {
  --text-opacity: 1 !important;
  color: #e27212 !important;
  color: rgba(226, 114, 18, var(--text-opacity)) !important;
}

.cl-text-facebook {
  --text-opacity: 1 !important;
  color: #3b5998 !important;
  color: rgba(59, 89, 152, var(--text-opacity)) !important;
}

.cl-text-twitter {
  --text-opacity: 1 !important;
  color: #00acee !important;
  color: rgba(0, 172, 238, var(--text-opacity)) !important;
}

.cl-text-twitch {
  --text-opacity: 1 !important;
  color: #6441a5 !important;
  color: rgba(100, 65, 165, var(--text-opacity)) !important;
}

.cl-text-youtube {
  --text-opacity: 1 !important;
  color: #FF0000 !important;
  color: rgba(255, 0, 0, var(--text-opacity)) !important;
}

.hover\:cl-text-transparent:hover {
  color: transparent !important;
}

.hover\:cl-text-current:hover {
  color: currentColor !important;
}

.hover\:cl-text-black:hover {
  --text-opacity: 1 !important;
  color: #000 !important;
  color: rgba(0, 0, 0, var(--text-opacity)) !important;
}

.hover\:cl-text-white:hover {
  --text-opacity: 1 !important;
  color: #fff !important;
  color: rgba(255, 255, 255, var(--text-opacity)) !important;
}

.hover\:cl-text-gray-100:hover {
  --text-opacity: 1 !important;
  color: #f7fafc !important;
  color: rgba(247, 250, 252, var(--text-opacity)) !important;
}

.hover\:cl-text-gray-200:hover {
  --text-opacity: 1 !important;
  color: #edf2f7 !important;
  color: rgba(237, 242, 247, var(--text-opacity)) !important;
}

.hover\:cl-text-gray-300:hover {
  --text-opacity: 1 !important;
  color: #e2e8f0 !important;
  color: rgba(226, 232, 240, var(--text-opacity)) !important;
}

.hover\:cl-text-gray-400:hover {
  --text-opacity: 1 !important;
  color: #cbd5e0 !important;
  color: rgba(203, 213, 224, var(--text-opacity)) !important;
}

.hover\:cl-text-gray-500:hover {
  --text-opacity: 1 !important;
  color: #a0aec0 !important;
  color: rgba(160, 174, 192, var(--text-opacity)) !important;
}

.hover\:cl-text-gray-600:hover {
  --text-opacity: 1 !important;
  color: #718096 !important;
  color: rgba(113, 128, 150, var(--text-opacity)) !important;
}

.hover\:cl-text-gray-700:hover {
  --text-opacity: 1 !important;
  color: #4a5568 !important;
  color: rgba(74, 85, 104, var(--text-opacity)) !important;
}

.hover\:cl-text-gray-800:hover {
  --text-opacity: 1 !important;
  color: #2d3748 !important;
  color: rgba(45, 55, 72, var(--text-opacity)) !important;
}

.hover\:cl-text-gray-900:hover {
  --text-opacity: 1 !important;
  color: #1a202c !important;
  color: rgba(26, 32, 44, var(--text-opacity)) !important;
}

.hover\:cl-text-red-100:hover {
  --text-opacity: 1 !important;
  color: #fff5f5 !important;
  color: rgba(255, 245, 245, var(--text-opacity)) !important;
}

.hover\:cl-text-red-200:hover {
  --text-opacity: 1 !important;
  color: #fed7d7 !important;
  color: rgba(254, 215, 215, var(--text-opacity)) !important;
}

.hover\:cl-text-red-300:hover {
  --text-opacity: 1 !important;
  color: #feb2b2 !important;
  color: rgba(254, 178, 178, var(--text-opacity)) !important;
}

.hover\:cl-text-red-400:hover {
  --text-opacity: 1 !important;
  color: #fc8181 !important;
  color: rgba(252, 129, 129, var(--text-opacity)) !important;
}

.hover\:cl-text-red-500:hover {
  --text-opacity: 1 !important;
  color: #f56565 !important;
  color: rgba(245, 101, 101, var(--text-opacity)) !important;
}

.hover\:cl-text-red-600:hover {
  --text-opacity: 1 !important;
  color: #e53e3e !important;
  color: rgba(229, 62, 62, var(--text-opacity)) !important;
}

.hover\:cl-text-red-700:hover {
  --text-opacity: 1 !important;
  color: #c53030 !important;
  color: rgba(197, 48, 48, var(--text-opacity)) !important;
}

.hover\:cl-text-red-800:hover {
  --text-opacity: 1 !important;
  color: #9b2c2c !important;
  color: rgba(155, 44, 44, var(--text-opacity)) !important;
}

.hover\:cl-text-red-900:hover {
  --text-opacity: 1 !important;
  color: #742a2a !important;
  color: rgba(116, 42, 42, var(--text-opacity)) !important;
}

.hover\:cl-text-orange-100:hover {
  --text-opacity: 1 !important;
  color: #fffaf0 !important;
  color: rgba(255, 250, 240, var(--text-opacity)) !important;
}

.hover\:cl-text-orange-200:hover {
  --text-opacity: 1 !important;
  color: #feebc8 !important;
  color: rgba(254, 235, 200, var(--text-opacity)) !important;
}

.hover\:cl-text-orange-300:hover {
  --text-opacity: 1 !important;
  color: #fbd38d !important;
  color: rgba(251, 211, 141, var(--text-opacity)) !important;
}

.hover\:cl-text-orange-400:hover {
  --text-opacity: 1 !important;
  color: #f6ad55 !important;
  color: rgba(246, 173, 85, var(--text-opacity)) !important;
}

.hover\:cl-text-orange-500:hover {
  --text-opacity: 1 !important;
  color: #ed8936 !important;
  color: rgba(237, 137, 54, var(--text-opacity)) !important;
}

.hover\:cl-text-orange-600:hover {
  --text-opacity: 1 !important;
  color: #dd6b20 !important;
  color: rgba(221, 107, 32, var(--text-opacity)) !important;
}

.hover\:cl-text-orange-700:hover {
  --text-opacity: 1 !important;
  color: #c05621 !important;
  color: rgba(192, 86, 33, var(--text-opacity)) !important;
}

.hover\:cl-text-orange-800:hover {
  --text-opacity: 1 !important;
  color: #9c4221 !important;
  color: rgba(156, 66, 33, var(--text-opacity)) !important;
}

.hover\:cl-text-orange-900:hover {
  --text-opacity: 1 !important;
  color: #7b341e !important;
  color: rgba(123, 52, 30, var(--text-opacity)) !important;
}

.hover\:cl-text-yellow-100:hover {
  --text-opacity: 1 !important;
  color: #fffff0 !important;
  color: rgba(255, 255, 240, var(--text-opacity)) !important;
}

.hover\:cl-text-yellow-200:hover {
  --text-opacity: 1 !important;
  color: #fefcbf !important;
  color: rgba(254, 252, 191, var(--text-opacity)) !important;
}

.hover\:cl-text-yellow-300:hover {
  --text-opacity: 1 !important;
  color: #faf089 !important;
  color: rgba(250, 240, 137, var(--text-opacity)) !important;
}

.hover\:cl-text-yellow-400:hover {
  --text-opacity: 1 !important;
  color: #f6e05e !important;
  color: rgba(246, 224, 94, var(--text-opacity)) !important;
}

.hover\:cl-text-yellow-500:hover {
  --text-opacity: 1 !important;
  color: #ecc94b !important;
  color: rgba(236, 201, 75, var(--text-opacity)) !important;
}

.hover\:cl-text-yellow-600:hover {
  --text-opacity: 1 !important;
  color: #d69e2e !important;
  color: rgba(214, 158, 46, var(--text-opacity)) !important;
}

.hover\:cl-text-yellow-700:hover {
  --text-opacity: 1 !important;
  color: #b7791f !important;
  color: rgba(183, 121, 31, var(--text-opacity)) !important;
}

.hover\:cl-text-yellow-800:hover {
  --text-opacity: 1 !important;
  color: #975a16 !important;
  color: rgba(151, 90, 22, var(--text-opacity)) !important;
}

.hover\:cl-text-yellow-900:hover {
  --text-opacity: 1 !important;
  color: #744210 !important;
  color: rgba(116, 66, 16, var(--text-opacity)) !important;
}

.hover\:cl-text-green-100:hover {
  --text-opacity: 1 !important;
  color: #f0fff4 !important;
  color: rgba(240, 255, 244, var(--text-opacity)) !important;
}

.hover\:cl-text-green-200:hover {
  --text-opacity: 1 !important;
  color: #c6f6d5 !important;
  color: rgba(198, 246, 213, var(--text-opacity)) !important;
}

.hover\:cl-text-green-300:hover {
  --text-opacity: 1 !important;
  color: #9ae6b4 !important;
  color: rgba(154, 230, 180, var(--text-opacity)) !important;
}

.hover\:cl-text-green-400:hover {
  --text-opacity: 1 !important;
  color: #68d391 !important;
  color: rgba(104, 211, 145, var(--text-opacity)) !important;
}

.hover\:cl-text-green-500:hover {
  --text-opacity: 1 !important;
  color: #48bb78 !important;
  color: rgba(72, 187, 120, var(--text-opacity)) !important;
}

.hover\:cl-text-green-600:hover {
  --text-opacity: 1 !important;
  color: #38a169 !important;
  color: rgba(56, 161, 105, var(--text-opacity)) !important;
}

.hover\:cl-text-green-700:hover {
  --text-opacity: 1 !important;
  color: #2f855a !important;
  color: rgba(47, 133, 90, var(--text-opacity)) !important;
}

.hover\:cl-text-green-800:hover {
  --text-opacity: 1 !important;
  color: #276749 !important;
  color: rgba(39, 103, 73, var(--text-opacity)) !important;
}

.hover\:cl-text-green-900:hover {
  --text-opacity: 1 !important;
  color: #22543d !important;
  color: rgba(34, 84, 61, var(--text-opacity)) !important;
}

.hover\:cl-text-teal-100:hover {
  --text-opacity: 1 !important;
  color: #e6fffa !important;
  color: rgba(230, 255, 250, var(--text-opacity)) !important;
}

.hover\:cl-text-teal-200:hover {
  --text-opacity: 1 !important;
  color: #b2f5ea !important;
  color: rgba(178, 245, 234, var(--text-opacity)) !important;
}

.hover\:cl-text-teal-300:hover {
  --text-opacity: 1 !important;
  color: #81e6d9 !important;
  color: rgba(129, 230, 217, var(--text-opacity)) !important;
}

.hover\:cl-text-teal-400:hover {
  --text-opacity: 1 !important;
  color: #4fd1c5 !important;
  color: rgba(79, 209, 197, var(--text-opacity)) !important;
}

.hover\:cl-text-teal-500:hover {
  --text-opacity: 1 !important;
  color: #38b2ac !important;
  color: rgba(56, 178, 172, var(--text-opacity)) !important;
}

.hover\:cl-text-teal-600:hover {
  --text-opacity: 1 !important;
  color: #319795 !important;
  color: rgba(49, 151, 149, var(--text-opacity)) !important;
}

.hover\:cl-text-teal-700:hover {
  --text-opacity: 1 !important;
  color: #2c7a7b !important;
  color: rgba(44, 122, 123, var(--text-opacity)) !important;
}

.hover\:cl-text-teal-800:hover {
  --text-opacity: 1 !important;
  color: #285e61 !important;
  color: rgba(40, 94, 97, var(--text-opacity)) !important;
}

.hover\:cl-text-teal-900:hover {
  --text-opacity: 1 !important;
  color: #234e52 !important;
  color: rgba(35, 78, 82, var(--text-opacity)) !important;
}

.hover\:cl-text-blue-100:hover {
  --text-opacity: 1 !important;
  color: #ebf8ff !important;
  color: rgba(235, 248, 255, var(--text-opacity)) !important;
}

.hover\:cl-text-blue-200:hover {
  --text-opacity: 1 !important;
  color: #bee3f8 !important;
  color: rgba(190, 227, 248, var(--text-opacity)) !important;
}

.hover\:cl-text-blue-300:hover {
  --text-opacity: 1 !important;
  color: #90cdf4 !important;
  color: rgba(144, 205, 244, var(--text-opacity)) !important;
}

.hover\:cl-text-blue-400:hover {
  --text-opacity: 1 !important;
  color: #63b3ed !important;
  color: rgba(99, 179, 237, var(--text-opacity)) !important;
}

.hover\:cl-text-blue-500:hover {
  --text-opacity: 1 !important;
  color: #4299e1 !important;
  color: rgba(66, 153, 225, var(--text-opacity)) !important;
}

.hover\:cl-text-blue-600:hover {
  --text-opacity: 1 !important;
  color: #3182ce !important;
  color: rgba(49, 130, 206, var(--text-opacity)) !important;
}

.hover\:cl-text-blue-700:hover {
  --text-opacity: 1 !important;
  color: #2b6cb0 !important;
  color: rgba(43, 108, 176, var(--text-opacity)) !important;
}

.hover\:cl-text-blue-800:hover {
  --text-opacity: 1 !important;
  color: #2c5282 !important;
  color: rgba(44, 82, 130, var(--text-opacity)) !important;
}

.hover\:cl-text-blue-900:hover {
  --text-opacity: 1 !important;
  color: #2a4365 !important;
  color: rgba(42, 67, 101, var(--text-opacity)) !important;
}

.hover\:cl-text-indigo-100:hover {
  --text-opacity: 1 !important;
  color: #ebf4ff !important;
  color: rgba(235, 244, 255, var(--text-opacity)) !important;
}

.hover\:cl-text-indigo-200:hover {
  --text-opacity: 1 !important;
  color: #c3dafe !important;
  color: rgba(195, 218, 254, var(--text-opacity)) !important;
}

.hover\:cl-text-indigo-300:hover {
  --text-opacity: 1 !important;
  color: #a3bffa !important;
  color: rgba(163, 191, 250, var(--text-opacity)) !important;
}

.hover\:cl-text-indigo-400:hover {
  --text-opacity: 1 !important;
  color: #7f9cf5 !important;
  color: rgba(127, 156, 245, var(--text-opacity)) !important;
}

.hover\:cl-text-indigo-500:hover {
  --text-opacity: 1 !important;
  color: #667eea !important;
  color: rgba(102, 126, 234, var(--text-opacity)) !important;
}

.hover\:cl-text-indigo-600:hover {
  --text-opacity: 1 !important;
  color: #5a67d8 !important;
  color: rgba(90, 103, 216, var(--text-opacity)) !important;
}

.hover\:cl-text-indigo-700:hover {
  --text-opacity: 1 !important;
  color: #4c51bf !important;
  color: rgba(76, 81, 191, var(--text-opacity)) !important;
}

.hover\:cl-text-indigo-800:hover {
  --text-opacity: 1 !important;
  color: #434190 !important;
  color: rgba(67, 65, 144, var(--text-opacity)) !important;
}

.hover\:cl-text-indigo-900:hover {
  --text-opacity: 1 !important;
  color: #3c366b !important;
  color: rgba(60, 54, 107, var(--text-opacity)) !important;
}

.hover\:cl-text-purple-100:hover {
  --text-opacity: 1 !important;
  color: #faf5ff !important;
  color: rgba(250, 245, 255, var(--text-opacity)) !important;
}

.hover\:cl-text-purple-200:hover {
  --text-opacity: 1 !important;
  color: #e9d8fd !important;
  color: rgba(233, 216, 253, var(--text-opacity)) !important;
}

.hover\:cl-text-purple-300:hover {
  --text-opacity: 1 !important;
  color: #d6bcfa !important;
  color: rgba(214, 188, 250, var(--text-opacity)) !important;
}

.hover\:cl-text-purple-400:hover {
  --text-opacity: 1 !important;
  color: #b794f4 !important;
  color: rgba(183, 148, 244, var(--text-opacity)) !important;
}

.hover\:cl-text-purple-500:hover {
  --text-opacity: 1 !important;
  color: #9f7aea !important;
  color: rgba(159, 122, 234, var(--text-opacity)) !important;
}

.hover\:cl-text-purple-600:hover {
  --text-opacity: 1 !important;
  color: #805ad5 !important;
  color: rgba(128, 90, 213, var(--text-opacity)) !important;
}

.hover\:cl-text-purple-700:hover {
  --text-opacity: 1 !important;
  color: #6b46c1 !important;
  color: rgba(107, 70, 193, var(--text-opacity)) !important;
}

.hover\:cl-text-purple-800:hover {
  --text-opacity: 1 !important;
  color: #553c9a !important;
  color: rgba(85, 60, 154, var(--text-opacity)) !important;
}

.hover\:cl-text-purple-900:hover {
  --text-opacity: 1 !important;
  color: #44337a !important;
  color: rgba(68, 51, 122, var(--text-opacity)) !important;
}

.hover\:cl-text-pink-100:hover {
  --text-opacity: 1 !important;
  color: #fff5f7 !important;
  color: rgba(255, 245, 247, var(--text-opacity)) !important;
}

.hover\:cl-text-pink-200:hover {
  --text-opacity: 1 !important;
  color: #fed7e2 !important;
  color: rgba(254, 215, 226, var(--text-opacity)) !important;
}

.hover\:cl-text-pink-300:hover {
  --text-opacity: 1 !important;
  color: #fbb6ce !important;
  color: rgba(251, 182, 206, var(--text-opacity)) !important;
}

.hover\:cl-text-pink-400:hover {
  --text-opacity: 1 !important;
  color: #f687b3 !important;
  color: rgba(246, 135, 179, var(--text-opacity)) !important;
}

.hover\:cl-text-pink-500:hover {
  --text-opacity: 1 !important;
  color: #ed64a6 !important;
  color: rgba(237, 100, 166, var(--text-opacity)) !important;
}

.hover\:cl-text-pink-600:hover {
  --text-opacity: 1 !important;
  color: #d53f8c !important;
  color: rgba(213, 63, 140, var(--text-opacity)) !important;
}

.hover\:cl-text-pink-700:hover {
  --text-opacity: 1 !important;
  color: #b83280 !important;
  color: rgba(184, 50, 128, var(--text-opacity)) !important;
}

.hover\:cl-text-pink-800:hover {
  --text-opacity: 1 !important;
  color: #97266d !important;
  color: rgba(151, 38, 109, var(--text-opacity)) !important;
}

.hover\:cl-text-pink-900:hover {
  --text-opacity: 1 !important;
  color: #702459 !important;
  color: rgba(112, 36, 89, var(--text-opacity)) !important;
}

.hover\:cl-text-ui-gray-100:hover {
  --text-opacity: 1 !important;
  color: #f1f1f1 !important;
  color: rgba(241, 241, 241, var(--text-opacity)) !important;
}

.hover\:cl-text-ui-brown-100:hover {
  --text-opacity: 1 !important;
  color: #f3ecdc !important;
  color: rgba(243, 236, 220, var(--text-opacity)) !important;
}

.hover\:cl-text-ui-brown-200:hover {
  --text-opacity: 1 !important;
  color: #e8e0c9 !important;
  color: rgba(232, 224, 201, var(--text-opacity)) !important;
}

.hover\:cl-text-ui-brown-300:hover {
  --text-opacity: 1 !important;
  color: #d0c095 !important;
  color: rgba(208, 192, 149, var(--text-opacity)) !important;
}

.hover\:cl-text-ui-brown-700:hover {
  --text-opacity: 1 !important;
  color: #bd6005 !important;
  color: rgba(189, 96, 5, var(--text-opacity)) !important;
}

.hover\:cl-text-ui-green-300:hover {
  --text-opacity: 1 !important;
  color: #aac74c !important;
  color: rgba(170, 199, 76, var(--text-opacity)) !important;
}

.hover\:cl-text-ui-green-400:hover {
  --text-opacity: 1 !important;
  color: #71893e !important;
  color: rgba(113, 137, 62, var(--text-opacity)) !important;
}

.hover\:cl-text-ui-orange-500:hover {
  --text-opacity: 1 !important;
  color: #e27212 !important;
  color: rgba(226, 114, 18, var(--text-opacity)) !important;
}

.hover\:cl-text-facebook:hover {
  --text-opacity: 1 !important;
  color: #3b5998 !important;
  color: rgba(59, 89, 152, var(--text-opacity)) !important;
}

.hover\:cl-text-twitter:hover {
  --text-opacity: 1 !important;
  color: #00acee !important;
  color: rgba(0, 172, 238, var(--text-opacity)) !important;
}

.hover\:cl-text-twitch:hover {
  --text-opacity: 1 !important;
  color: #6441a5 !important;
  color: rgba(100, 65, 165, var(--text-opacity)) !important;
}

.hover\:cl-text-youtube:hover {
  --text-opacity: 1 !important;
  color: #FF0000 !important;
  color: rgba(255, 0, 0, var(--text-opacity)) !important;
}

.focus\:cl-text-transparent:focus {
  color: transparent !important;
}

.focus\:cl-text-current:focus {
  color: currentColor !important;
}

.focus\:cl-text-black:focus {
  --text-opacity: 1 !important;
  color: #000 !important;
  color: rgba(0, 0, 0, var(--text-opacity)) !important;
}

.focus\:cl-text-white:focus {
  --text-opacity: 1 !important;
  color: #fff !important;
  color: rgba(255, 255, 255, var(--text-opacity)) !important;
}

.focus\:cl-text-gray-100:focus {
  --text-opacity: 1 !important;
  color: #f7fafc !important;
  color: rgba(247, 250, 252, var(--text-opacity)) !important;
}

.focus\:cl-text-gray-200:focus {
  --text-opacity: 1 !important;
  color: #edf2f7 !important;
  color: rgba(237, 242, 247, var(--text-opacity)) !important;
}

.focus\:cl-text-gray-300:focus {
  --text-opacity: 1 !important;
  color: #e2e8f0 !important;
  color: rgba(226, 232, 240, var(--text-opacity)) !important;
}

.focus\:cl-text-gray-400:focus {
  --text-opacity: 1 !important;
  color: #cbd5e0 !important;
  color: rgba(203, 213, 224, var(--text-opacity)) !important;
}

.focus\:cl-text-gray-500:focus {
  --text-opacity: 1 !important;
  color: #a0aec0 !important;
  color: rgba(160, 174, 192, var(--text-opacity)) !important;
}

.focus\:cl-text-gray-600:focus {
  --text-opacity: 1 !important;
  color: #718096 !important;
  color: rgba(113, 128, 150, var(--text-opacity)) !important;
}

.focus\:cl-text-gray-700:focus {
  --text-opacity: 1 !important;
  color: #4a5568 !important;
  color: rgba(74, 85, 104, var(--text-opacity)) !important;
}

.focus\:cl-text-gray-800:focus {
  --text-opacity: 1 !important;
  color: #2d3748 !important;
  color: rgba(45, 55, 72, var(--text-opacity)) !important;
}

.focus\:cl-text-gray-900:focus {
  --text-opacity: 1 !important;
  color: #1a202c !important;
  color: rgba(26, 32, 44, var(--text-opacity)) !important;
}

.focus\:cl-text-red-100:focus {
  --text-opacity: 1 !important;
  color: #fff5f5 !important;
  color: rgba(255, 245, 245, var(--text-opacity)) !important;
}

.focus\:cl-text-red-200:focus {
  --text-opacity: 1 !important;
  color: #fed7d7 !important;
  color: rgba(254, 215, 215, var(--text-opacity)) !important;
}

.focus\:cl-text-red-300:focus {
  --text-opacity: 1 !important;
  color: #feb2b2 !important;
  color: rgba(254, 178, 178, var(--text-opacity)) !important;
}

.focus\:cl-text-red-400:focus {
  --text-opacity: 1 !important;
  color: #fc8181 !important;
  color: rgba(252, 129, 129, var(--text-opacity)) !important;
}

.focus\:cl-text-red-500:focus {
  --text-opacity: 1 !important;
  color: #f56565 !important;
  color: rgba(245, 101, 101, var(--text-opacity)) !important;
}

.focus\:cl-text-red-600:focus {
  --text-opacity: 1 !important;
  color: #e53e3e !important;
  color: rgba(229, 62, 62, var(--text-opacity)) !important;
}

.focus\:cl-text-red-700:focus {
  --text-opacity: 1 !important;
  color: #c53030 !important;
  color: rgba(197, 48, 48, var(--text-opacity)) !important;
}

.focus\:cl-text-red-800:focus {
  --text-opacity: 1 !important;
  color: #9b2c2c !important;
  color: rgba(155, 44, 44, var(--text-opacity)) !important;
}

.focus\:cl-text-red-900:focus {
  --text-opacity: 1 !important;
  color: #742a2a !important;
  color: rgba(116, 42, 42, var(--text-opacity)) !important;
}

.focus\:cl-text-orange-100:focus {
  --text-opacity: 1 !important;
  color: #fffaf0 !important;
  color: rgba(255, 250, 240, var(--text-opacity)) !important;
}

.focus\:cl-text-orange-200:focus {
  --text-opacity: 1 !important;
  color: #feebc8 !important;
  color: rgba(254, 235, 200, var(--text-opacity)) !important;
}

.focus\:cl-text-orange-300:focus {
  --text-opacity: 1 !important;
  color: #fbd38d !important;
  color: rgba(251, 211, 141, var(--text-opacity)) !important;
}

.focus\:cl-text-orange-400:focus {
  --text-opacity: 1 !important;
  color: #f6ad55 !important;
  color: rgba(246, 173, 85, var(--text-opacity)) !important;
}

.focus\:cl-text-orange-500:focus {
  --text-opacity: 1 !important;
  color: #ed8936 !important;
  color: rgba(237, 137, 54, var(--text-opacity)) !important;
}

.focus\:cl-text-orange-600:focus {
  --text-opacity: 1 !important;
  color: #dd6b20 !important;
  color: rgba(221, 107, 32, var(--text-opacity)) !important;
}

.focus\:cl-text-orange-700:focus {
  --text-opacity: 1 !important;
  color: #c05621 !important;
  color: rgba(192, 86, 33, var(--text-opacity)) !important;
}

.focus\:cl-text-orange-800:focus {
  --text-opacity: 1 !important;
  color: #9c4221 !important;
  color: rgba(156, 66, 33, var(--text-opacity)) !important;
}

.focus\:cl-text-orange-900:focus {
  --text-opacity: 1 !important;
  color: #7b341e !important;
  color: rgba(123, 52, 30, var(--text-opacity)) !important;
}

.focus\:cl-text-yellow-100:focus {
  --text-opacity: 1 !important;
  color: #fffff0 !important;
  color: rgba(255, 255, 240, var(--text-opacity)) !important;
}

.focus\:cl-text-yellow-200:focus {
  --text-opacity: 1 !important;
  color: #fefcbf !important;
  color: rgba(254, 252, 191, var(--text-opacity)) !important;
}

.focus\:cl-text-yellow-300:focus {
  --text-opacity: 1 !important;
  color: #faf089 !important;
  color: rgba(250, 240, 137, var(--text-opacity)) !important;
}

.focus\:cl-text-yellow-400:focus {
  --text-opacity: 1 !important;
  color: #f6e05e !important;
  color: rgba(246, 224, 94, var(--text-opacity)) !important;
}

.focus\:cl-text-yellow-500:focus {
  --text-opacity: 1 !important;
  color: #ecc94b !important;
  color: rgba(236, 201, 75, var(--text-opacity)) !important;
}

.focus\:cl-text-yellow-600:focus {
  --text-opacity: 1 !important;
  color: #d69e2e !important;
  color: rgba(214, 158, 46, var(--text-opacity)) !important;
}

.focus\:cl-text-yellow-700:focus {
  --text-opacity: 1 !important;
  color: #b7791f !important;
  color: rgba(183, 121, 31, var(--text-opacity)) !important;
}

.focus\:cl-text-yellow-800:focus {
  --text-opacity: 1 !important;
  color: #975a16 !important;
  color: rgba(151, 90, 22, var(--text-opacity)) !important;
}

.focus\:cl-text-yellow-900:focus {
  --text-opacity: 1 !important;
  color: #744210 !important;
  color: rgba(116, 66, 16, var(--text-opacity)) !important;
}

.focus\:cl-text-green-100:focus {
  --text-opacity: 1 !important;
  color: #f0fff4 !important;
  color: rgba(240, 255, 244, var(--text-opacity)) !important;
}

.focus\:cl-text-green-200:focus {
  --text-opacity: 1 !important;
  color: #c6f6d5 !important;
  color: rgba(198, 246, 213, var(--text-opacity)) !important;
}

.focus\:cl-text-green-300:focus {
  --text-opacity: 1 !important;
  color: #9ae6b4 !important;
  color: rgba(154, 230, 180, var(--text-opacity)) !important;
}

.focus\:cl-text-green-400:focus {
  --text-opacity: 1 !important;
  color: #68d391 !important;
  color: rgba(104, 211, 145, var(--text-opacity)) !important;
}

.focus\:cl-text-green-500:focus {
  --text-opacity: 1 !important;
  color: #48bb78 !important;
  color: rgba(72, 187, 120, var(--text-opacity)) !important;
}

.focus\:cl-text-green-600:focus {
  --text-opacity: 1 !important;
  color: #38a169 !important;
  color: rgba(56, 161, 105, var(--text-opacity)) !important;
}

.focus\:cl-text-green-700:focus {
  --text-opacity: 1 !important;
  color: #2f855a !important;
  color: rgba(47, 133, 90, var(--text-opacity)) !important;
}

.focus\:cl-text-green-800:focus {
  --text-opacity: 1 !important;
  color: #276749 !important;
  color: rgba(39, 103, 73, var(--text-opacity)) !important;
}

.focus\:cl-text-green-900:focus {
  --text-opacity: 1 !important;
  color: #22543d !important;
  color: rgba(34, 84, 61, var(--text-opacity)) !important;
}

.focus\:cl-text-teal-100:focus {
  --text-opacity: 1 !important;
  color: #e6fffa !important;
  color: rgba(230, 255, 250, var(--text-opacity)) !important;
}

.focus\:cl-text-teal-200:focus {
  --text-opacity: 1 !important;
  color: #b2f5ea !important;
  color: rgba(178, 245, 234, var(--text-opacity)) !important;
}

.focus\:cl-text-teal-300:focus {
  --text-opacity: 1 !important;
  color: #81e6d9 !important;
  color: rgba(129, 230, 217, var(--text-opacity)) !important;
}

.focus\:cl-text-teal-400:focus {
  --text-opacity: 1 !important;
  color: #4fd1c5 !important;
  color: rgba(79, 209, 197, var(--text-opacity)) !important;
}

.focus\:cl-text-teal-500:focus {
  --text-opacity: 1 !important;
  color: #38b2ac !important;
  color: rgba(56, 178, 172, var(--text-opacity)) !important;
}

.focus\:cl-text-teal-600:focus {
  --text-opacity: 1 !important;
  color: #319795 !important;
  color: rgba(49, 151, 149, var(--text-opacity)) !important;
}

.focus\:cl-text-teal-700:focus {
  --text-opacity: 1 !important;
  color: #2c7a7b !important;
  color: rgba(44, 122, 123, var(--text-opacity)) !important;
}

.focus\:cl-text-teal-800:focus {
  --text-opacity: 1 !important;
  color: #285e61 !important;
  color: rgba(40, 94, 97, var(--text-opacity)) !important;
}

.focus\:cl-text-teal-900:focus {
  --text-opacity: 1 !important;
  color: #234e52 !important;
  color: rgba(35, 78, 82, var(--text-opacity)) !important;
}

.focus\:cl-text-blue-100:focus {
  --text-opacity: 1 !important;
  color: #ebf8ff !important;
  color: rgba(235, 248, 255, var(--text-opacity)) !important;
}

.focus\:cl-text-blue-200:focus {
  --text-opacity: 1 !important;
  color: #bee3f8 !important;
  color: rgba(190, 227, 248, var(--text-opacity)) !important;
}

.focus\:cl-text-blue-300:focus {
  --text-opacity: 1 !important;
  color: #90cdf4 !important;
  color: rgba(144, 205, 244, var(--text-opacity)) !important;
}

.focus\:cl-text-blue-400:focus {
  --text-opacity: 1 !important;
  color: #63b3ed !important;
  color: rgba(99, 179, 237, var(--text-opacity)) !important;
}

.focus\:cl-text-blue-500:focus {
  --text-opacity: 1 !important;
  color: #4299e1 !important;
  color: rgba(66, 153, 225, var(--text-opacity)) !important;
}

.focus\:cl-text-blue-600:focus {
  --text-opacity: 1 !important;
  color: #3182ce !important;
  color: rgba(49, 130, 206, var(--text-opacity)) !important;
}

.focus\:cl-text-blue-700:focus {
  --text-opacity: 1 !important;
  color: #2b6cb0 !important;
  color: rgba(43, 108, 176, var(--text-opacity)) !important;
}

.focus\:cl-text-blue-800:focus {
  --text-opacity: 1 !important;
  color: #2c5282 !important;
  color: rgba(44, 82, 130, var(--text-opacity)) !important;
}

.focus\:cl-text-blue-900:focus {
  --text-opacity: 1 !important;
  color: #2a4365 !important;
  color: rgba(42, 67, 101, var(--text-opacity)) !important;
}

.focus\:cl-text-indigo-100:focus {
  --text-opacity: 1 !important;
  color: #ebf4ff !important;
  color: rgba(235, 244, 255, var(--text-opacity)) !important;
}

.focus\:cl-text-indigo-200:focus {
  --text-opacity: 1 !important;
  color: #c3dafe !important;
  color: rgba(195, 218, 254, var(--text-opacity)) !important;
}

.focus\:cl-text-indigo-300:focus {
  --text-opacity: 1 !important;
  color: #a3bffa !important;
  color: rgba(163, 191, 250, var(--text-opacity)) !important;
}

.focus\:cl-text-indigo-400:focus {
  --text-opacity: 1 !important;
  color: #7f9cf5 !important;
  color: rgba(127, 156, 245, var(--text-opacity)) !important;
}

.focus\:cl-text-indigo-500:focus {
  --text-opacity: 1 !important;
  color: #667eea !important;
  color: rgba(102, 126, 234, var(--text-opacity)) !important;
}

.focus\:cl-text-indigo-600:focus {
  --text-opacity: 1 !important;
  color: #5a67d8 !important;
  color: rgba(90, 103, 216, var(--text-opacity)) !important;
}

.focus\:cl-text-indigo-700:focus {
  --text-opacity: 1 !important;
  color: #4c51bf !important;
  color: rgba(76, 81, 191, var(--text-opacity)) !important;
}

.focus\:cl-text-indigo-800:focus {
  --text-opacity: 1 !important;
  color: #434190 !important;
  color: rgba(67, 65, 144, var(--text-opacity)) !important;
}

.focus\:cl-text-indigo-900:focus {
  --text-opacity: 1 !important;
  color: #3c366b !important;
  color: rgba(60, 54, 107, var(--text-opacity)) !important;
}

.focus\:cl-text-purple-100:focus {
  --text-opacity: 1 !important;
  color: #faf5ff !important;
  color: rgba(250, 245, 255, var(--text-opacity)) !important;
}

.focus\:cl-text-purple-200:focus {
  --text-opacity: 1 !important;
  color: #e9d8fd !important;
  color: rgba(233, 216, 253, var(--text-opacity)) !important;
}

.focus\:cl-text-purple-300:focus {
  --text-opacity: 1 !important;
  color: #d6bcfa !important;
  color: rgba(214, 188, 250, var(--text-opacity)) !important;
}

.focus\:cl-text-purple-400:focus {
  --text-opacity: 1 !important;
  color: #b794f4 !important;
  color: rgba(183, 148, 244, var(--text-opacity)) !important;
}

.focus\:cl-text-purple-500:focus {
  --text-opacity: 1 !important;
  color: #9f7aea !important;
  color: rgba(159, 122, 234, var(--text-opacity)) !important;
}

.focus\:cl-text-purple-600:focus {
  --text-opacity: 1 !important;
  color: #805ad5 !important;
  color: rgba(128, 90, 213, var(--text-opacity)) !important;
}

.focus\:cl-text-purple-700:focus {
  --text-opacity: 1 !important;
  color: #6b46c1 !important;
  color: rgba(107, 70, 193, var(--text-opacity)) !important;
}

.focus\:cl-text-purple-800:focus {
  --text-opacity: 1 !important;
  color: #553c9a !important;
  color: rgba(85, 60, 154, var(--text-opacity)) !important;
}

.focus\:cl-text-purple-900:focus {
  --text-opacity: 1 !important;
  color: #44337a !important;
  color: rgba(68, 51, 122, var(--text-opacity)) !important;
}

.focus\:cl-text-pink-100:focus {
  --text-opacity: 1 !important;
  color: #fff5f7 !important;
  color: rgba(255, 245, 247, var(--text-opacity)) !important;
}

.focus\:cl-text-pink-200:focus {
  --text-opacity: 1 !important;
  color: #fed7e2 !important;
  color: rgba(254, 215, 226, var(--text-opacity)) !important;
}

.focus\:cl-text-pink-300:focus {
  --text-opacity: 1 !important;
  color: #fbb6ce !important;
  color: rgba(251, 182, 206, var(--text-opacity)) !important;
}

.focus\:cl-text-pink-400:focus {
  --text-opacity: 1 !important;
  color: #f687b3 !important;
  color: rgba(246, 135, 179, var(--text-opacity)) !important;
}

.focus\:cl-text-pink-500:focus {
  --text-opacity: 1 !important;
  color: #ed64a6 !important;
  color: rgba(237, 100, 166, var(--text-opacity)) !important;
}

.focus\:cl-text-pink-600:focus {
  --text-opacity: 1 !important;
  color: #d53f8c !important;
  color: rgba(213, 63, 140, var(--text-opacity)) !important;
}

.focus\:cl-text-pink-700:focus {
  --text-opacity: 1 !important;
  color: #b83280 !important;
  color: rgba(184, 50, 128, var(--text-opacity)) !important;
}

.focus\:cl-text-pink-800:focus {
  --text-opacity: 1 !important;
  color: #97266d !important;
  color: rgba(151, 38, 109, var(--text-opacity)) !important;
}

.focus\:cl-text-pink-900:focus {
  --text-opacity: 1 !important;
  color: #702459 !important;
  color: rgba(112, 36, 89, var(--text-opacity)) !important;
}

.focus\:cl-text-ui-gray-100:focus {
  --text-opacity: 1 !important;
  color: #f1f1f1 !important;
  color: rgba(241, 241, 241, var(--text-opacity)) !important;
}

.focus\:cl-text-ui-brown-100:focus {
  --text-opacity: 1 !important;
  color: #f3ecdc !important;
  color: rgba(243, 236, 220, var(--text-opacity)) !important;
}

.focus\:cl-text-ui-brown-200:focus {
  --text-opacity: 1 !important;
  color: #e8e0c9 !important;
  color: rgba(232, 224, 201, var(--text-opacity)) !important;
}

.focus\:cl-text-ui-brown-300:focus {
  --text-opacity: 1 !important;
  color: #d0c095 !important;
  color: rgba(208, 192, 149, var(--text-opacity)) !important;
}

.focus\:cl-text-ui-brown-700:focus {
  --text-opacity: 1 !important;
  color: #bd6005 !important;
  color: rgba(189, 96, 5, var(--text-opacity)) !important;
}

.focus\:cl-text-ui-green-300:focus {
  --text-opacity: 1 !important;
  color: #aac74c !important;
  color: rgba(170, 199, 76, var(--text-opacity)) !important;
}

.focus\:cl-text-ui-green-400:focus {
  --text-opacity: 1 !important;
  color: #71893e !important;
  color: rgba(113, 137, 62, var(--text-opacity)) !important;
}

.focus\:cl-text-ui-orange-500:focus {
  --text-opacity: 1 !important;
  color: #e27212 !important;
  color: rgba(226, 114, 18, var(--text-opacity)) !important;
}

.focus\:cl-text-facebook:focus {
  --text-opacity: 1 !important;
  color: #3b5998 !important;
  color: rgba(59, 89, 152, var(--text-opacity)) !important;
}

.focus\:cl-text-twitter:focus {
  --text-opacity: 1 !important;
  color: #00acee !important;
  color: rgba(0, 172, 238, var(--text-opacity)) !important;
}

.focus\:cl-text-twitch:focus {
  --text-opacity: 1 !important;
  color: #6441a5 !important;
  color: rgba(100, 65, 165, var(--text-opacity)) !important;
}

.focus\:cl-text-youtube:focus {
  --text-opacity: 1 !important;
  color: #FF0000 !important;
  color: rgba(255, 0, 0, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-transparent {
  color: transparent !important;
}

.cl-group:hover .group-hover\:cl-text-current {
  color: currentColor !important;
}

.cl-group:hover .group-hover\:cl-text-black {
  --text-opacity: 1 !important;
  color: #000 !important;
  color: rgba(0, 0, 0, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-white {
  --text-opacity: 1 !important;
  color: #fff !important;
  color: rgba(255, 255, 255, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-gray-100 {
  --text-opacity: 1 !important;
  color: #f7fafc !important;
  color: rgba(247, 250, 252, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-gray-200 {
  --text-opacity: 1 !important;
  color: #edf2f7 !important;
  color: rgba(237, 242, 247, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-gray-300 {
  --text-opacity: 1 !important;
  color: #e2e8f0 !important;
  color: rgba(226, 232, 240, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-gray-400 {
  --text-opacity: 1 !important;
  color: #cbd5e0 !important;
  color: rgba(203, 213, 224, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-gray-500 {
  --text-opacity: 1 !important;
  color: #a0aec0 !important;
  color: rgba(160, 174, 192, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-gray-600 {
  --text-opacity: 1 !important;
  color: #718096 !important;
  color: rgba(113, 128, 150, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-gray-700 {
  --text-opacity: 1 !important;
  color: #4a5568 !important;
  color: rgba(74, 85, 104, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-gray-800 {
  --text-opacity: 1 !important;
  color: #2d3748 !important;
  color: rgba(45, 55, 72, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-gray-900 {
  --text-opacity: 1 !important;
  color: #1a202c !important;
  color: rgba(26, 32, 44, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-red-100 {
  --text-opacity: 1 !important;
  color: #fff5f5 !important;
  color: rgba(255, 245, 245, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-red-200 {
  --text-opacity: 1 !important;
  color: #fed7d7 !important;
  color: rgba(254, 215, 215, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-red-300 {
  --text-opacity: 1 !important;
  color: #feb2b2 !important;
  color: rgba(254, 178, 178, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-red-400 {
  --text-opacity: 1 !important;
  color: #fc8181 !important;
  color: rgba(252, 129, 129, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-red-500 {
  --text-opacity: 1 !important;
  color: #f56565 !important;
  color: rgba(245, 101, 101, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-red-600 {
  --text-opacity: 1 !important;
  color: #e53e3e !important;
  color: rgba(229, 62, 62, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-red-700 {
  --text-opacity: 1 !important;
  color: #c53030 !important;
  color: rgba(197, 48, 48, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-red-800 {
  --text-opacity: 1 !important;
  color: #9b2c2c !important;
  color: rgba(155, 44, 44, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-red-900 {
  --text-opacity: 1 !important;
  color: #742a2a !important;
  color: rgba(116, 42, 42, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-orange-100 {
  --text-opacity: 1 !important;
  color: #fffaf0 !important;
  color: rgba(255, 250, 240, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-orange-200 {
  --text-opacity: 1 !important;
  color: #feebc8 !important;
  color: rgba(254, 235, 200, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-orange-300 {
  --text-opacity: 1 !important;
  color: #fbd38d !important;
  color: rgba(251, 211, 141, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-orange-400 {
  --text-opacity: 1 !important;
  color: #f6ad55 !important;
  color: rgba(246, 173, 85, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-orange-500 {
  --text-opacity: 1 !important;
  color: #ed8936 !important;
  color: rgba(237, 137, 54, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-orange-600 {
  --text-opacity: 1 !important;
  color: #dd6b20 !important;
  color: rgba(221, 107, 32, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-orange-700 {
  --text-opacity: 1 !important;
  color: #c05621 !important;
  color: rgba(192, 86, 33, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-orange-800 {
  --text-opacity: 1 !important;
  color: #9c4221 !important;
  color: rgba(156, 66, 33, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-orange-900 {
  --text-opacity: 1 !important;
  color: #7b341e !important;
  color: rgba(123, 52, 30, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-yellow-100 {
  --text-opacity: 1 !important;
  color: #fffff0 !important;
  color: rgba(255, 255, 240, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-yellow-200 {
  --text-opacity: 1 !important;
  color: #fefcbf !important;
  color: rgba(254, 252, 191, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-yellow-300 {
  --text-opacity: 1 !important;
  color: #faf089 !important;
  color: rgba(250, 240, 137, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-yellow-400 {
  --text-opacity: 1 !important;
  color: #f6e05e !important;
  color: rgba(246, 224, 94, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-yellow-500 {
  --text-opacity: 1 !important;
  color: #ecc94b !important;
  color: rgba(236, 201, 75, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-yellow-600 {
  --text-opacity: 1 !important;
  color: #d69e2e !important;
  color: rgba(214, 158, 46, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-yellow-700 {
  --text-opacity: 1 !important;
  color: #b7791f !important;
  color: rgba(183, 121, 31, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-yellow-800 {
  --text-opacity: 1 !important;
  color: #975a16 !important;
  color: rgba(151, 90, 22, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-yellow-900 {
  --text-opacity: 1 !important;
  color: #744210 !important;
  color: rgba(116, 66, 16, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-green-100 {
  --text-opacity: 1 !important;
  color: #f0fff4 !important;
  color: rgba(240, 255, 244, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-green-200 {
  --text-opacity: 1 !important;
  color: #c6f6d5 !important;
  color: rgba(198, 246, 213, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-green-300 {
  --text-opacity: 1 !important;
  color: #9ae6b4 !important;
  color: rgba(154, 230, 180, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-green-400 {
  --text-opacity: 1 !important;
  color: #68d391 !important;
  color: rgba(104, 211, 145, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-green-500 {
  --text-opacity: 1 !important;
  color: #48bb78 !important;
  color: rgba(72, 187, 120, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-green-600 {
  --text-opacity: 1 !important;
  color: #38a169 !important;
  color: rgba(56, 161, 105, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-green-700 {
  --text-opacity: 1 !important;
  color: #2f855a !important;
  color: rgba(47, 133, 90, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-green-800 {
  --text-opacity: 1 !important;
  color: #276749 !important;
  color: rgba(39, 103, 73, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-green-900 {
  --text-opacity: 1 !important;
  color: #22543d !important;
  color: rgba(34, 84, 61, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-teal-100 {
  --text-opacity: 1 !important;
  color: #e6fffa !important;
  color: rgba(230, 255, 250, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-teal-200 {
  --text-opacity: 1 !important;
  color: #b2f5ea !important;
  color: rgba(178, 245, 234, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-teal-300 {
  --text-opacity: 1 !important;
  color: #81e6d9 !important;
  color: rgba(129, 230, 217, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-teal-400 {
  --text-opacity: 1 !important;
  color: #4fd1c5 !important;
  color: rgba(79, 209, 197, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-teal-500 {
  --text-opacity: 1 !important;
  color: #38b2ac !important;
  color: rgba(56, 178, 172, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-teal-600 {
  --text-opacity: 1 !important;
  color: #319795 !important;
  color: rgba(49, 151, 149, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-teal-700 {
  --text-opacity: 1 !important;
  color: #2c7a7b !important;
  color: rgba(44, 122, 123, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-teal-800 {
  --text-opacity: 1 !important;
  color: #285e61 !important;
  color: rgba(40, 94, 97, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-teal-900 {
  --text-opacity: 1 !important;
  color: #234e52 !important;
  color: rgba(35, 78, 82, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-blue-100 {
  --text-opacity: 1 !important;
  color: #ebf8ff !important;
  color: rgba(235, 248, 255, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-blue-200 {
  --text-opacity: 1 !important;
  color: #bee3f8 !important;
  color: rgba(190, 227, 248, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-blue-300 {
  --text-opacity: 1 !important;
  color: #90cdf4 !important;
  color: rgba(144, 205, 244, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-blue-400 {
  --text-opacity: 1 !important;
  color: #63b3ed !important;
  color: rgba(99, 179, 237, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-blue-500 {
  --text-opacity: 1 !important;
  color: #4299e1 !important;
  color: rgba(66, 153, 225, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-blue-600 {
  --text-opacity: 1 !important;
  color: #3182ce !important;
  color: rgba(49, 130, 206, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-blue-700 {
  --text-opacity: 1 !important;
  color: #2b6cb0 !important;
  color: rgba(43, 108, 176, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-blue-800 {
  --text-opacity: 1 !important;
  color: #2c5282 !important;
  color: rgba(44, 82, 130, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-blue-900 {
  --text-opacity: 1 !important;
  color: #2a4365 !important;
  color: rgba(42, 67, 101, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-indigo-100 {
  --text-opacity: 1 !important;
  color: #ebf4ff !important;
  color: rgba(235, 244, 255, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-indigo-200 {
  --text-opacity: 1 !important;
  color: #c3dafe !important;
  color: rgba(195, 218, 254, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-indigo-300 {
  --text-opacity: 1 !important;
  color: #a3bffa !important;
  color: rgba(163, 191, 250, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-indigo-400 {
  --text-opacity: 1 !important;
  color: #7f9cf5 !important;
  color: rgba(127, 156, 245, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-indigo-500 {
  --text-opacity: 1 !important;
  color: #667eea !important;
  color: rgba(102, 126, 234, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-indigo-600 {
  --text-opacity: 1 !important;
  color: #5a67d8 !important;
  color: rgba(90, 103, 216, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-indigo-700 {
  --text-opacity: 1 !important;
  color: #4c51bf !important;
  color: rgba(76, 81, 191, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-indigo-800 {
  --text-opacity: 1 !important;
  color: #434190 !important;
  color: rgba(67, 65, 144, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-indigo-900 {
  --text-opacity: 1 !important;
  color: #3c366b !important;
  color: rgba(60, 54, 107, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-purple-100 {
  --text-opacity: 1 !important;
  color: #faf5ff !important;
  color: rgba(250, 245, 255, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-purple-200 {
  --text-opacity: 1 !important;
  color: #e9d8fd !important;
  color: rgba(233, 216, 253, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-purple-300 {
  --text-opacity: 1 !important;
  color: #d6bcfa !important;
  color: rgba(214, 188, 250, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-purple-400 {
  --text-opacity: 1 !important;
  color: #b794f4 !important;
  color: rgba(183, 148, 244, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-purple-500 {
  --text-opacity: 1 !important;
  color: #9f7aea !important;
  color: rgba(159, 122, 234, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-purple-600 {
  --text-opacity: 1 !important;
  color: #805ad5 !important;
  color: rgba(128, 90, 213, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-purple-700 {
  --text-opacity: 1 !important;
  color: #6b46c1 !important;
  color: rgba(107, 70, 193, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-purple-800 {
  --text-opacity: 1 !important;
  color: #553c9a !important;
  color: rgba(85, 60, 154, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-purple-900 {
  --text-opacity: 1 !important;
  color: #44337a !important;
  color: rgba(68, 51, 122, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-pink-100 {
  --text-opacity: 1 !important;
  color: #fff5f7 !important;
  color: rgba(255, 245, 247, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-pink-200 {
  --text-opacity: 1 !important;
  color: #fed7e2 !important;
  color: rgba(254, 215, 226, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-pink-300 {
  --text-opacity: 1 !important;
  color: #fbb6ce !important;
  color: rgba(251, 182, 206, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-pink-400 {
  --text-opacity: 1 !important;
  color: #f687b3 !important;
  color: rgba(246, 135, 179, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-pink-500 {
  --text-opacity: 1 !important;
  color: #ed64a6 !important;
  color: rgba(237, 100, 166, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-pink-600 {
  --text-opacity: 1 !important;
  color: #d53f8c !important;
  color: rgba(213, 63, 140, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-pink-700 {
  --text-opacity: 1 !important;
  color: #b83280 !important;
  color: rgba(184, 50, 128, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-pink-800 {
  --text-opacity: 1 !important;
  color: #97266d !important;
  color: rgba(151, 38, 109, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-pink-900 {
  --text-opacity: 1 !important;
  color: #702459 !important;
  color: rgba(112, 36, 89, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-ui-gray-100 {
  --text-opacity: 1 !important;
  color: #f1f1f1 !important;
  color: rgba(241, 241, 241, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-ui-brown-100 {
  --text-opacity: 1 !important;
  color: #f3ecdc !important;
  color: rgba(243, 236, 220, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-ui-brown-200 {
  --text-opacity: 1 !important;
  color: #e8e0c9 !important;
  color: rgba(232, 224, 201, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-ui-brown-300 {
  --text-opacity: 1 !important;
  color: #d0c095 !important;
  color: rgba(208, 192, 149, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-ui-brown-700 {
  --text-opacity: 1 !important;
  color: #bd6005 !important;
  color: rgba(189, 96, 5, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-ui-green-300 {
  --text-opacity: 1 !important;
  color: #aac74c !important;
  color: rgba(170, 199, 76, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-ui-green-400 {
  --text-opacity: 1 !important;
  color: #71893e !important;
  color: rgba(113, 137, 62, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-ui-orange-500 {
  --text-opacity: 1 !important;
  color: #e27212 !important;
  color: rgba(226, 114, 18, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-facebook {
  --text-opacity: 1 !important;
  color: #3b5998 !important;
  color: rgba(59, 89, 152, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-twitter {
  --text-opacity: 1 !important;
  color: #00acee !important;
  color: rgba(0, 172, 238, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-twitch {
  --text-opacity: 1 !important;
  color: #6441a5 !important;
  color: rgba(100, 65, 165, var(--text-opacity)) !important;
}

.cl-group:hover .group-hover\:cl-text-youtube {
  --text-opacity: 1 !important;
  color: #FF0000 !important;
  color: rgba(255, 0, 0, var(--text-opacity)) !important;
}

.cl-text-opacity-0 {
  --text-opacity: 0 !important;
}

.cl-text-opacity-25 {
  --text-opacity: 0.25 !important;
}

.cl-text-opacity-50 {
  --text-opacity: 0.5 !important;
}

.cl-text-opacity-75 {
  --text-opacity: 0.75 !important;
}

.cl-text-opacity-100 {
  --text-opacity: 1 !important;
}

.hover\:cl-text-opacity-0:hover {
  --text-opacity: 0 !important;
}

.hover\:cl-text-opacity-25:hover {
  --text-opacity: 0.25 !important;
}

.hover\:cl-text-opacity-50:hover {
  --text-opacity: 0.5 !important;
}

.hover\:cl-text-opacity-75:hover {
  --text-opacity: 0.75 !important;
}

.hover\:cl-text-opacity-100:hover {
  --text-opacity: 1 !important;
}

.focus\:cl-text-opacity-0:focus {
  --text-opacity: 0 !important;
}

.focus\:cl-text-opacity-25:focus {
  --text-opacity: 0.25 !important;
}

.focus\:cl-text-opacity-50:focus {
  --text-opacity: 0.5 !important;
}

.focus\:cl-text-opacity-75:focus {
  --text-opacity: 0.75 !important;
}

.focus\:cl-text-opacity-100:focus {
  --text-opacity: 1 !important;
}

.cl-italic {
  font-style: italic !important;
}

.cl-not-italic {
  font-style: normal !important;
}

.cl-uppercase {
  text-transform: uppercase !important;
}

.cl-lowercase {
  text-transform: lowercase !important;
}

.cl-capitalize {
  text-transform: capitalize !important;
}

.cl-normal-case {
  text-transform: none !important;
}

.cl-underline {
  text-decoration: underline !important;
}

.cl-line-through {
  text-decoration: line-through !important;
}

.cl-no-underline {
  text-decoration: none !important;
}

.hover\:cl-underline:hover {
  text-decoration: underline !important;
}

.hover\:cl-line-through:hover {
  text-decoration: line-through !important;
}

.hover\:cl-no-underline:hover {
  text-decoration: none !important;
}

.focus\:cl-underline:focus {
  text-decoration: underline !important;
}

.focus\:cl-line-through:focus {
  text-decoration: line-through !important;
}

.focus\:cl-no-underline:focus {
  text-decoration: none !important;
}

.cl-antialiased {
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

.cl-subpixel-antialiased {
  -webkit-font-smoothing: auto !important;
  -moz-osx-font-smoothing: auto !important;
}

.cl-ordinal, .cl-slashed-zero, .cl-lining-nums, .cl-oldstyle-nums, .cl-proportional-nums, .cl-tabular-nums, .cl-diagonal-fractions, .cl-stacked-fractions {
  --font-variant-numeric-ordinal: var(--tailwind-empty,/*!*/ /*!*/) !important;
  --font-variant-numeric-slashed-zero: var(--tailwind-empty,/*!*/ /*!*/) !important;
  --font-variant-numeric-figure: var(--tailwind-empty,/*!*/ /*!*/) !important;
  --font-variant-numeric-spacing: var(--tailwind-empty,/*!*/ /*!*/) !important;
  --font-variant-numeric-fraction: var(--tailwind-empty,/*!*/ /*!*/) !important;
  font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction) !important;
}

.cl-normal-nums {
  font-variant-numeric: normal !important;
}

.cl-ordinal {
  --font-variant-numeric-ordinal: ordinal !important;
}

.cl-slashed-zero {
  --font-variant-numeric-slashed-zero: slashed-zero !important;
}

.cl-lining-nums {
  --font-variant-numeric-figure: lining-nums !important;
}

.cl-oldstyle-nums {
  --font-variant-numeric-figure: oldstyle-nums !important;
}

.cl-proportional-nums {
  --font-variant-numeric-spacing: proportional-nums !important;
}

.cl-tabular-nums {
  --font-variant-numeric-spacing: tabular-nums !important;
}

.cl-diagonal-fractions {
  --font-variant-numeric-fraction: diagonal-fractions !important;
}

.cl-stacked-fractions {
  --font-variant-numeric-fraction: stacked-fractions !important;
}

.cl-tracking-tighter {
  letter-spacing: -0.05em !important;
}

.cl-tracking-tight {
  letter-spacing: -0.025em !important;
}

.cl-tracking-normal {
  letter-spacing: 0 !important;
}

.cl-tracking-wide {
  letter-spacing: 0.025em !important;
}

.cl-tracking-wider {
  letter-spacing: 0.05em !important;
}

.cl-tracking-widest {
  letter-spacing: 0.1em !important;
}

.cl-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

.cl-select-text {
  -webkit-user-select: text !important;
     -moz-user-select: text !important;
          user-select: text !important;
}

.cl-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.cl-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
          user-select: auto !important;
}

.cl-align-baseline {
  vertical-align: baseline !important;
}

.cl-align-top {
  vertical-align: top !important;
}

.cl-align-middle {
  vertical-align: middle !important;
}

.cl-align-bottom {
  vertical-align: bottom !important;
}

.cl-align-text-top {
  vertical-align: text-top !important;
}

.cl-align-text-bottom {
  vertical-align: text-bottom !important;
}

.cl-visible {
  visibility: visible !important;
}

.cl-invisible {
  visibility: hidden !important;
}

.cl-whitespace-normal {
  white-space: normal !important;
}

.cl-whitespace-no-wrap {
  white-space: nowrap !important;
}

.cl-whitespace-pre {
  white-space: pre !important;
}

.cl-whitespace-pre-line {
  white-space: pre-line !important;
}

.cl-whitespace-pre-wrap {
  white-space: pre-wrap !important;
}

.cl-break-normal {
  word-wrap: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.cl-break-words {
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
}

.cl-break-all {
  word-break: break-all !important;
}

.cl-truncate {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.cl-w-0 {
  width: 0 !important;
}

.cl-w-1 {
  width: 4px !important;
}

.cl-w-2 {
  width: 8px !important;
}

.cl-w-3 {
  width: 12px !important;
}

.cl-w-4 {
  width: 16px !important;
}

.cl-w-5 {
  width: 20px !important;
}

.cl-w-6 {
  width: 24px !important;
}

.cl-w-8 {
  width: 32px !important;
}

.cl-w-10 {
  width: 40px !important;
}

.cl-w-12 {
  width: 48px !important;
}

.cl-w-16 {
  width: 64px !important;
}

.cl-w-20 {
  width: 80px !important;
}

.cl-w-24 {
  width: 96px !important;
}

.cl-w-26 {
  width: 100px !important;
}

.cl-w-28 {
  width: 110px !important;
}

.cl-w-32 {
  width: 128px !important;
}

.cl-w-40 {
  width: 160px !important;
}

.cl-w-48 {
  width: 192px !important;
}

.cl-w-56 {
  width: 224px !important;
}

.cl-w-64 {
  width: 256px !important;
}

.cl-w-auto {
  width: auto !important;
}

.cl-w-px {
  width: 1px !important;
}

.cl-w-1\/2 {
  width: 50% !important;
}

.cl-w-1\/3 {
  width: 33.333333% !important;
}

.cl-w-2\/3 {
  width: 66.666667% !important;
}

.cl-w-1\/4 {
  width: 25% !important;
}

.cl-w-2\/4 {
  width: 50% !important;
}

.cl-w-3\/4 {
  width: 75% !important;
}

.cl-w-1\/5 {
  width: 20% !important;
}

.cl-w-2\/5 {
  width: 40% !important;
}

.cl-w-3\/5 {
  width: 60% !important;
}

.cl-w-4\/5 {
  width: 80% !important;
}

.cl-w-1\/6 {
  width: 16.666667% !important;
}

.cl-w-2\/6 {
  width: 33.333333% !important;
}

.cl-w-3\/6 {
  width: 50% !important;
}

.cl-w-4\/6 {
  width: 66.666667% !important;
}

.cl-w-5\/6 {
  width: 83.333333% !important;
}

.cl-w-1\/12 {
  width: 8.333333% !important;
}

.cl-w-2\/12 {
  width: 16.666667% !important;
}

.cl-w-3\/12 {
  width: 25% !important;
}

.cl-w-4\/12 {
  width: 33.333333% !important;
}

.cl-w-5\/12 {
  width: 41.666667% !important;
}

.cl-w-6\/12 {
  width: 50% !important;
}

.cl-w-7\/12 {
  width: 58.333333% !important;
}

.cl-w-8\/12 {
  width: 66.666667% !important;
}

.cl-w-9\/12 {
  width: 75% !important;
}

.cl-w-10\/12 {
  width: 83.333333% !important;
}

.cl-w-11\/12 {
  width: 91.666667% !important;
}

.cl-w-full {
  width: 100% !important;
}

.cl-w-screen {
  width: 100vw !important;
}

.cl-z-0 {
  z-index: 0 !important;
}

.cl-z-10 {
  z-index: 10 !important;
}

.cl-z-20 {
  z-index: 20 !important;
}

.cl-z-30 {
  z-index: 30 !important;
}

.cl-z-40 {
  z-index: 40 !important;
}

.cl-z-50 {
  z-index: 50 !important;
}

.cl-z-auto {
  z-index: auto !important;
}

.cl-gap-0 {
  grid-gap: 0 !important;
  gap: 0 !important;
}

.cl-gap-1 {
  grid-gap: 4px !important;
  gap: 4px !important;
}

.cl-gap-2 {
  grid-gap: 8px !important;
  gap: 8px !important;
}

.cl-gap-3 {
  grid-gap: 12px !important;
  gap: 12px !important;
}

.cl-gap-4 {
  grid-gap: 16px !important;
  gap: 16px !important;
}

.cl-gap-5 {
  grid-gap: 20px !important;
  gap: 20px !important;
}

.cl-gap-6 {
  grid-gap: 24px !important;
  gap: 24px !important;
}

.cl-gap-8 {
  grid-gap: 32px !important;
  gap: 32px !important;
}

.cl-gap-10 {
  grid-gap: 40px !important;
  gap: 40px !important;
}

.cl-gap-12 {
  grid-gap: 48px !important;
  gap: 48px !important;
}

.cl-gap-16 {
  grid-gap: 64px !important;
  gap: 64px !important;
}

.cl-gap-20 {
  grid-gap: 80px !important;
  gap: 80px !important;
}

.cl-gap-24 {
  grid-gap: 96px !important;
  gap: 96px !important;
}

.cl-gap-26 {
  grid-gap: 100px !important;
  gap: 100px !important;
}

.cl-gap-28 {
  grid-gap: 110px !important;
  gap: 110px !important;
}

.cl-gap-32 {
  grid-gap: 128px !important;
  gap: 128px !important;
}

.cl-gap-40 {
  grid-gap: 160px !important;
  gap: 160px !important;
}

.cl-gap-48 {
  grid-gap: 192px !important;
  gap: 192px !important;
}

.cl-gap-56 {
  grid-gap: 224px !important;
  gap: 224px !important;
}

.cl-gap-64 {
  grid-gap: 256px !important;
  gap: 256px !important;
}

.cl-gap-px {
  grid-gap: 1px !important;
  gap: 1px !important;
}

.cl-col-gap-0 {
  grid-column-gap: 0 !important;
  -moz-column-gap: 0 !important;
       column-gap: 0 !important;
}

.cl-col-gap-1 {
  grid-column-gap: 4px !important;
  -moz-column-gap: 4px !important;
       column-gap: 4px !important;
}

.cl-col-gap-2 {
  grid-column-gap: 8px !important;
  -moz-column-gap: 8px !important;
       column-gap: 8px !important;
}

.cl-col-gap-3 {
  grid-column-gap: 12px !important;
  -moz-column-gap: 12px !important;
       column-gap: 12px !important;
}

.cl-col-gap-4 {
  grid-column-gap: 16px !important;
  -moz-column-gap: 16px !important;
       column-gap: 16px !important;
}

.cl-col-gap-5 {
  grid-column-gap: 20px !important;
  -moz-column-gap: 20px !important;
       column-gap: 20px !important;
}

.cl-col-gap-6 {
  grid-column-gap: 24px !important;
  -moz-column-gap: 24px !important;
       column-gap: 24px !important;
}

.cl-col-gap-8 {
  grid-column-gap: 32px !important;
  -moz-column-gap: 32px !important;
       column-gap: 32px !important;
}

.cl-col-gap-10 {
  grid-column-gap: 40px !important;
  -moz-column-gap: 40px !important;
       column-gap: 40px !important;
}

.cl-col-gap-12 {
  grid-column-gap: 48px !important;
  -moz-column-gap: 48px !important;
       column-gap: 48px !important;
}

.cl-col-gap-16 {
  grid-column-gap: 64px !important;
  -moz-column-gap: 64px !important;
       column-gap: 64px !important;
}

.cl-col-gap-20 {
  grid-column-gap: 80px !important;
  -moz-column-gap: 80px !important;
       column-gap: 80px !important;
}

.cl-col-gap-24 {
  grid-column-gap: 96px !important;
  -moz-column-gap: 96px !important;
       column-gap: 96px !important;
}

.cl-col-gap-26 {
  grid-column-gap: 100px !important;
  -moz-column-gap: 100px !important;
       column-gap: 100px !important;
}

.cl-col-gap-28 {
  grid-column-gap: 110px !important;
  -moz-column-gap: 110px !important;
       column-gap: 110px !important;
}

.cl-col-gap-32 {
  grid-column-gap: 128px !important;
  -moz-column-gap: 128px !important;
       column-gap: 128px !important;
}

.cl-col-gap-40 {
  grid-column-gap: 160px !important;
  -moz-column-gap: 160px !important;
       column-gap: 160px !important;
}

.cl-col-gap-48 {
  grid-column-gap: 192px !important;
  -moz-column-gap: 192px !important;
       column-gap: 192px !important;
}

.cl-col-gap-56 {
  grid-column-gap: 224px !important;
  -moz-column-gap: 224px !important;
       column-gap: 224px !important;
}

.cl-col-gap-64 {
  grid-column-gap: 256px !important;
  -moz-column-gap: 256px !important;
       column-gap: 256px !important;
}

.cl-col-gap-px {
  grid-column-gap: 1px !important;
  -moz-column-gap: 1px !important;
       column-gap: 1px !important;
}

.cl-gap-x-0 {
  grid-column-gap: 0 !important;
  -moz-column-gap: 0 !important;
       column-gap: 0 !important;
}

.cl-gap-x-1 {
  grid-column-gap: 4px !important;
  -moz-column-gap: 4px !important;
       column-gap: 4px !important;
}

.cl-gap-x-2 {
  grid-column-gap: 8px !important;
  -moz-column-gap: 8px !important;
       column-gap: 8px !important;
}

.cl-gap-x-3 {
  grid-column-gap: 12px !important;
  -moz-column-gap: 12px !important;
       column-gap: 12px !important;
}

.cl-gap-x-4 {
  grid-column-gap: 16px !important;
  -moz-column-gap: 16px !important;
       column-gap: 16px !important;
}

.cl-gap-x-5 {
  grid-column-gap: 20px !important;
  -moz-column-gap: 20px !important;
       column-gap: 20px !important;
}

.cl-gap-x-6 {
  grid-column-gap: 24px !important;
  -moz-column-gap: 24px !important;
       column-gap: 24px !important;
}

.cl-gap-x-8 {
  grid-column-gap: 32px !important;
  -moz-column-gap: 32px !important;
       column-gap: 32px !important;
}

.cl-gap-x-10 {
  grid-column-gap: 40px !important;
  -moz-column-gap: 40px !important;
       column-gap: 40px !important;
}

.cl-gap-x-12 {
  grid-column-gap: 48px !important;
  -moz-column-gap: 48px !important;
       column-gap: 48px !important;
}

.cl-gap-x-16 {
  grid-column-gap: 64px !important;
  -moz-column-gap: 64px !important;
       column-gap: 64px !important;
}

.cl-gap-x-20 {
  grid-column-gap: 80px !important;
  -moz-column-gap: 80px !important;
       column-gap: 80px !important;
}

.cl-gap-x-24 {
  grid-column-gap: 96px !important;
  -moz-column-gap: 96px !important;
       column-gap: 96px !important;
}

.cl-gap-x-26 {
  grid-column-gap: 100px !important;
  -moz-column-gap: 100px !important;
       column-gap: 100px !important;
}

.cl-gap-x-28 {
  grid-column-gap: 110px !important;
  -moz-column-gap: 110px !important;
       column-gap: 110px !important;
}

.cl-gap-x-32 {
  grid-column-gap: 128px !important;
  -moz-column-gap: 128px !important;
       column-gap: 128px !important;
}

.cl-gap-x-40 {
  grid-column-gap: 160px !important;
  -moz-column-gap: 160px !important;
       column-gap: 160px !important;
}

.cl-gap-x-48 {
  grid-column-gap: 192px !important;
  -moz-column-gap: 192px !important;
       column-gap: 192px !important;
}

.cl-gap-x-56 {
  grid-column-gap: 224px !important;
  -moz-column-gap: 224px !important;
       column-gap: 224px !important;
}

.cl-gap-x-64 {
  grid-column-gap: 256px !important;
  -moz-column-gap: 256px !important;
       column-gap: 256px !important;
}

.cl-gap-x-px {
  grid-column-gap: 1px !important;
  -moz-column-gap: 1px !important;
       column-gap: 1px !important;
}

.cl-row-gap-0 {
  grid-row-gap: 0 !important;
  row-gap: 0 !important;
}

.cl-row-gap-1 {
  grid-row-gap: 4px !important;
  row-gap: 4px !important;
}

.cl-row-gap-2 {
  grid-row-gap: 8px !important;
  row-gap: 8px !important;
}

.cl-row-gap-3 {
  grid-row-gap: 12px !important;
  row-gap: 12px !important;
}

.cl-row-gap-4 {
  grid-row-gap: 16px !important;
  row-gap: 16px !important;
}

.cl-row-gap-5 {
  grid-row-gap: 20px !important;
  row-gap: 20px !important;
}

.cl-row-gap-6 {
  grid-row-gap: 24px !important;
  row-gap: 24px !important;
}

.cl-row-gap-8 {
  grid-row-gap: 32px !important;
  row-gap: 32px !important;
}

.cl-row-gap-10 {
  grid-row-gap: 40px !important;
  row-gap: 40px !important;
}

.cl-row-gap-12 {
  grid-row-gap: 48px !important;
  row-gap: 48px !important;
}

.cl-row-gap-16 {
  grid-row-gap: 64px !important;
  row-gap: 64px !important;
}

.cl-row-gap-20 {
  grid-row-gap: 80px !important;
  row-gap: 80px !important;
}

.cl-row-gap-24 {
  grid-row-gap: 96px !important;
  row-gap: 96px !important;
}

.cl-row-gap-26 {
  grid-row-gap: 100px !important;
  row-gap: 100px !important;
}

.cl-row-gap-28 {
  grid-row-gap: 110px !important;
  row-gap: 110px !important;
}

.cl-row-gap-32 {
  grid-row-gap: 128px !important;
  row-gap: 128px !important;
}

.cl-row-gap-40 {
  grid-row-gap: 160px !important;
  row-gap: 160px !important;
}

.cl-row-gap-48 {
  grid-row-gap: 192px !important;
  row-gap: 192px !important;
}

.cl-row-gap-56 {
  grid-row-gap: 224px !important;
  row-gap: 224px !important;
}

.cl-row-gap-64 {
  grid-row-gap: 256px !important;
  row-gap: 256px !important;
}

.cl-row-gap-px {
  grid-row-gap: 1px !important;
  row-gap: 1px !important;
}

.cl-gap-y-0 {
  grid-row-gap: 0 !important;
  row-gap: 0 !important;
}

.cl-gap-y-1 {
  grid-row-gap: 4px !important;
  row-gap: 4px !important;
}

.cl-gap-y-2 {
  grid-row-gap: 8px !important;
  row-gap: 8px !important;
}

.cl-gap-y-3 {
  grid-row-gap: 12px !important;
  row-gap: 12px !important;
}

.cl-gap-y-4 {
  grid-row-gap: 16px !important;
  row-gap: 16px !important;
}

.cl-gap-y-5 {
  grid-row-gap: 20px !important;
  row-gap: 20px !important;
}

.cl-gap-y-6 {
  grid-row-gap: 24px !important;
  row-gap: 24px !important;
}

.cl-gap-y-8 {
  grid-row-gap: 32px !important;
  row-gap: 32px !important;
}

.cl-gap-y-10 {
  grid-row-gap: 40px !important;
  row-gap: 40px !important;
}

.cl-gap-y-12 {
  grid-row-gap: 48px !important;
  row-gap: 48px !important;
}

.cl-gap-y-16 {
  grid-row-gap: 64px !important;
  row-gap: 64px !important;
}

.cl-gap-y-20 {
  grid-row-gap: 80px !important;
  row-gap: 80px !important;
}

.cl-gap-y-24 {
  grid-row-gap: 96px !important;
  row-gap: 96px !important;
}

.cl-gap-y-26 {
  grid-row-gap: 100px !important;
  row-gap: 100px !important;
}

.cl-gap-y-28 {
  grid-row-gap: 110px !important;
  row-gap: 110px !important;
}

.cl-gap-y-32 {
  grid-row-gap: 128px !important;
  row-gap: 128px !important;
}

.cl-gap-y-40 {
  grid-row-gap: 160px !important;
  row-gap: 160px !important;
}

.cl-gap-y-48 {
  grid-row-gap: 192px !important;
  row-gap: 192px !important;
}

.cl-gap-y-56 {
  grid-row-gap: 224px !important;
  row-gap: 224px !important;
}

.cl-gap-y-64 {
  grid-row-gap: 256px !important;
  row-gap: 256px !important;
}

.cl-gap-y-px {
  grid-row-gap: 1px !important;
  row-gap: 1px !important;
}

.cl-grid-flow-row {
  grid-auto-flow: row !important;
}

.cl-grid-flow-col {
  grid-auto-flow: column !important;
}

.cl-grid-flow-row-dense {
  grid-auto-flow: row dense !important;
}

.cl-grid-flow-col-dense {
  grid-auto-flow: column dense !important;
}

.cl-grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}

.cl-grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.cl-grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.cl-grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.cl-grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.cl-grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}

.cl-grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
}

.cl-grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
}

.cl-grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
}

.cl-grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
}

.cl-grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
}

.cl-grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
}

.cl-grid-cols-none {
  grid-template-columns: none !important;
}

.cl-auto-cols-auto {
  grid-auto-columns: auto !important;
}

.cl-auto-cols-min {
  grid-auto-columns: min-content !important;
}

.cl-auto-cols-max {
  grid-auto-columns: max-content !important;
}

.cl-auto-cols-fr {
  grid-auto-columns: minmax(0, 1fr) !important;
}

.cl-col-auto {
  grid-column: auto !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.cl-col-start-1 {
  grid-column-start: 1 !important;
}

.cl-col-start-2 {
  grid-column-start: 2 !important;
}

.cl-col-start-3 {
  grid-column-start: 3 !important;
}

.cl-col-start-4 {
  grid-column-start: 4 !important;
}

.cl-col-start-5 {
  grid-column-start: 5 !important;
}

.cl-col-start-6 {
  grid-column-start: 6 !important;
}

.cl-col-start-7 {
  grid-column-start: 7 !important;
}

.cl-col-start-8 {
  grid-column-start: 8 !important;
}

.cl-col-start-9 {
  grid-column-start: 9 !important;
}

.cl-col-start-10 {
  grid-column-start: 10 !important;
}

.cl-col-start-11 {
  grid-column-start: 11 !important;
}

.cl-col-start-12 {
  grid-column-start: 12 !important;
}

.cl-col-start-13 {
  grid-column-start: 13 !important;
}

.cl-col-start-auto {
  grid-column-start: auto !important;
}

.cl-col-end-1 {
  grid-column-end: 1 !important;
}

.cl-col-end-2 {
  grid-column-end: 2 !important;
}

.cl-col-end-3 {
  grid-column-end: 3 !important;
}

.cl-col-end-4 {
  grid-column-end: 4 !important;
}

.cl-col-end-5 {
  grid-column-end: 5 !important;
}

.cl-col-end-6 {
  grid-column-end: 6 !important;
}

.cl-col-end-7 {
  grid-column-end: 7 !important;
}

.cl-col-end-8 {
  grid-column-end: 8 !important;
}

.cl-col-end-9 {
  grid-column-end: 9 !important;
}

.cl-col-end-10 {
  grid-column-end: 10 !important;
}

.cl-col-end-11 {
  grid-column-end: 11 !important;
}

.cl-col-end-12 {
  grid-column-end: 12 !important;
}

.cl-col-end-13 {
  grid-column-end: 13 !important;
}

.cl-col-end-auto {
  grid-column-end: auto !important;
}

.cl-grid-rows-1 {
  grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
}

.cl-grid-rows-2 {
  grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
}

.cl-grid-rows-3 {
  grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
}

.cl-grid-rows-4 {
  grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
}

.cl-grid-rows-5 {
  grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
}

.cl-grid-rows-6 {
  grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
}

.cl-grid-rows-none {
  grid-template-rows: none !important;
}

.cl-auto-rows-auto {
  grid-auto-rows: auto !important;
}

.cl-auto-rows-min {
  grid-auto-rows: min-content !important;
}

.cl-auto-rows-max {
  grid-auto-rows: max-content !important;
}

.cl-auto-rows-fr {
  grid-auto-rows: minmax(0, 1fr) !important;
}

.cl-row-auto {
  grid-row: auto !important;
}

.cl-row-span-1 {
  grid-row: span 1 / span 1 !important;
}

.cl-row-span-2 {
  grid-row: span 2 / span 2 !important;
}

.cl-row-span-3 {
  grid-row: span 3 / span 3 !important;
}

.cl-row-span-4 {
  grid-row: span 4 / span 4 !important;
}

.cl-row-span-5 {
  grid-row: span 5 / span 5 !important;
}

.cl-row-span-6 {
  grid-row: span 6 / span 6 !important;
}

.cl-row-span-full {
  grid-row: 1 / -1 !important;
}

.cl-row-start-1 {
  grid-row-start: 1 !important;
}

.cl-row-start-2 {
  grid-row-start: 2 !important;
}

.cl-row-start-3 {
  grid-row-start: 3 !important;
}

.cl-row-start-4 {
  grid-row-start: 4 !important;
}

.cl-row-start-5 {
  grid-row-start: 5 !important;
}

.cl-row-start-6 {
  grid-row-start: 6 !important;
}

.cl-row-start-7 {
  grid-row-start: 7 !important;
}

.cl-row-start-auto {
  grid-row-start: auto !important;
}

.cl-row-end-1 {
  grid-row-end: 1 !important;
}

.cl-row-end-2 {
  grid-row-end: 2 !important;
}

.cl-row-end-3 {
  grid-row-end: 3 !important;
}

.cl-row-end-4 {
  grid-row-end: 4 !important;
}

.cl-row-end-5 {
  grid-row-end: 5 !important;
}

.cl-row-end-6 {
  grid-row-end: 6 !important;
}

.cl-row-end-7 {
  grid-row-end: 7 !important;
}

.cl-row-end-auto {
  grid-row-end: auto !important;
}

.cl-transform {
  --transform-translate-x: 0 !important;
  --transform-translate-y: 0 !important;
  --transform-rotate: 0 !important;
  --transform-skew-x: 0 !important;
  --transform-skew-y: 0 !important;
  --transform-scale-x: 1 !important;
  --transform-scale-y: 1 !important;
  transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y)) !important;
}

.cl-transform-none {
  transform: none !important;
}

.cl-origin-center {
  transform-origin: center !important;
}

.cl-origin-top {
  transform-origin: top !important;
}

.cl-origin-top-right {
  transform-origin: top right !important;
}

.cl-origin-right {
  transform-origin: right !important;
}

.cl-origin-bottom-right {
  transform-origin: bottom right !important;
}

.cl-origin-bottom {
  transform-origin: bottom !important;
}

.cl-origin-bottom-left {
  transform-origin: bottom left !important;
}

.cl-origin-left {
  transform-origin: left !important;
}

.cl-origin-top-left {
  transform-origin: top left !important;
}

.cl-scale-0 {
  --transform-scale-x: 0 !important;
  --transform-scale-y: 0 !important;
}

.cl-scale-50 {
  --transform-scale-x: .5 !important;
  --transform-scale-y: .5 !important;
}

.cl-scale-75 {
  --transform-scale-x: .75 !important;
  --transform-scale-y: .75 !important;
}

.cl-scale-90 {
  --transform-scale-x: .9 !important;
  --transform-scale-y: .9 !important;
}

.cl-scale-95 {
  --transform-scale-x: .95 !important;
  --transform-scale-y: .95 !important;
}

.cl-scale-100 {
  --transform-scale-x: 1 !important;
  --transform-scale-y: 1 !important;
}

.cl-scale-105 {
  --transform-scale-x: 1.05 !important;
  --transform-scale-y: 1.05 !important;
}

.cl-scale-110 {
  --transform-scale-x: 1.1 !important;
  --transform-scale-y: 1.1 !important;
}

.cl-scale-125 {
  --transform-scale-x: 1.25 !important;
  --transform-scale-y: 1.25 !important;
}

.cl-scale-150 {
  --transform-scale-x: 1.5 !important;
  --transform-scale-y: 1.5 !important;
}

.cl-scale-x-0 {
  --transform-scale-x: 0 !important;
}

.cl-scale-x-50 {
  --transform-scale-x: .5 !important;
}

.cl-scale-x-75 {
  --transform-scale-x: .75 !important;
}

.cl-scale-x-90 {
  --transform-scale-x: .9 !important;
}

.cl-scale-x-95 {
  --transform-scale-x: .95 !important;
}

.cl-scale-x-100 {
  --transform-scale-x: 1 !important;
}

.cl-scale-x-105 {
  --transform-scale-x: 1.05 !important;
}

.cl-scale-x-110 {
  --transform-scale-x: 1.1 !important;
}

.cl-scale-x-125 {
  --transform-scale-x: 1.25 !important;
}

.cl-scale-x-150 {
  --transform-scale-x: 1.5 !important;
}

.cl-scale-y-0 {
  --transform-scale-y: 0 !important;
}

.cl-scale-y-50 {
  --transform-scale-y: .5 !important;
}

.cl-scale-y-75 {
  --transform-scale-y: .75 !important;
}

.cl-scale-y-90 {
  --transform-scale-y: .9 !important;
}

.cl-scale-y-95 {
  --transform-scale-y: .95 !important;
}

.cl-scale-y-100 {
  --transform-scale-y: 1 !important;
}

.cl-scale-y-105 {
  --transform-scale-y: 1.05 !important;
}

.cl-scale-y-110 {
  --transform-scale-y: 1.1 !important;
}

.cl-scale-y-125 {
  --transform-scale-y: 1.25 !important;
}

.cl-scale-y-150 {
  --transform-scale-y: 1.5 !important;
}

.hover\:cl-scale-0:hover {
  --transform-scale-x: 0 !important;
  --transform-scale-y: 0 !important;
}

.hover\:cl-scale-50:hover {
  --transform-scale-x: .5 !important;
  --transform-scale-y: .5 !important;
}

.hover\:cl-scale-75:hover {
  --transform-scale-x: .75 !important;
  --transform-scale-y: .75 !important;
}

.hover\:cl-scale-90:hover {
  --transform-scale-x: .9 !important;
  --transform-scale-y: .9 !important;
}

.hover\:cl-scale-95:hover {
  --transform-scale-x: .95 !important;
  --transform-scale-y: .95 !important;
}

.hover\:cl-scale-100:hover {
  --transform-scale-x: 1 !important;
  --transform-scale-y: 1 !important;
}

.hover\:cl-scale-105:hover {
  --transform-scale-x: 1.05 !important;
  --transform-scale-y: 1.05 !important;
}

.hover\:cl-scale-110:hover {
  --transform-scale-x: 1.1 !important;
  --transform-scale-y: 1.1 !important;
}

.hover\:cl-scale-125:hover {
  --transform-scale-x: 1.25 !important;
  --transform-scale-y: 1.25 !important;
}

.hover\:cl-scale-150:hover {
  --transform-scale-x: 1.5 !important;
  --transform-scale-y: 1.5 !important;
}

.hover\:cl-scale-x-0:hover {
  --transform-scale-x: 0 !important;
}

.hover\:cl-scale-x-50:hover {
  --transform-scale-x: .5 !important;
}

.hover\:cl-scale-x-75:hover {
  --transform-scale-x: .75 !important;
}

.hover\:cl-scale-x-90:hover {
  --transform-scale-x: .9 !important;
}

.hover\:cl-scale-x-95:hover {
  --transform-scale-x: .95 !important;
}

.hover\:cl-scale-x-100:hover {
  --transform-scale-x: 1 !important;
}

.hover\:cl-scale-x-105:hover {
  --transform-scale-x: 1.05 !important;
}

.hover\:cl-scale-x-110:hover {
  --transform-scale-x: 1.1 !important;
}

.hover\:cl-scale-x-125:hover {
  --transform-scale-x: 1.25 !important;
}

.hover\:cl-scale-x-150:hover {
  --transform-scale-x: 1.5 !important;
}

.hover\:cl-scale-y-0:hover {
  --transform-scale-y: 0 !important;
}

.hover\:cl-scale-y-50:hover {
  --transform-scale-y: .5 !important;
}

.hover\:cl-scale-y-75:hover {
  --transform-scale-y: .75 !important;
}

.hover\:cl-scale-y-90:hover {
  --transform-scale-y: .9 !important;
}

.hover\:cl-scale-y-95:hover {
  --transform-scale-y: .95 !important;
}

.hover\:cl-scale-y-100:hover {
  --transform-scale-y: 1 !important;
}

.hover\:cl-scale-y-105:hover {
  --transform-scale-y: 1.05 !important;
}

.hover\:cl-scale-y-110:hover {
  --transform-scale-y: 1.1 !important;
}

.hover\:cl-scale-y-125:hover {
  --transform-scale-y: 1.25 !important;
}

.hover\:cl-scale-y-150:hover {
  --transform-scale-y: 1.5 !important;
}

.focus\:cl-scale-0:focus {
  --transform-scale-x: 0 !important;
  --transform-scale-y: 0 !important;
}

.focus\:cl-scale-50:focus {
  --transform-scale-x: .5 !important;
  --transform-scale-y: .5 !important;
}

.focus\:cl-scale-75:focus {
  --transform-scale-x: .75 !important;
  --transform-scale-y: .75 !important;
}

.focus\:cl-scale-90:focus {
  --transform-scale-x: .9 !important;
  --transform-scale-y: .9 !important;
}

.focus\:cl-scale-95:focus {
  --transform-scale-x: .95 !important;
  --transform-scale-y: .95 !important;
}

.focus\:cl-scale-100:focus {
  --transform-scale-x: 1 !important;
  --transform-scale-y: 1 !important;
}

.focus\:cl-scale-105:focus {
  --transform-scale-x: 1.05 !important;
  --transform-scale-y: 1.05 !important;
}

.focus\:cl-scale-110:focus {
  --transform-scale-x: 1.1 !important;
  --transform-scale-y: 1.1 !important;
}

.focus\:cl-scale-125:focus {
  --transform-scale-x: 1.25 !important;
  --transform-scale-y: 1.25 !important;
}

.focus\:cl-scale-150:focus {
  --transform-scale-x: 1.5 !important;
  --transform-scale-y: 1.5 !important;
}

.focus\:cl-scale-x-0:focus {
  --transform-scale-x: 0 !important;
}

.focus\:cl-scale-x-50:focus {
  --transform-scale-x: .5 !important;
}

.focus\:cl-scale-x-75:focus {
  --transform-scale-x: .75 !important;
}

.focus\:cl-scale-x-90:focus {
  --transform-scale-x: .9 !important;
}

.focus\:cl-scale-x-95:focus {
  --transform-scale-x: .95 !important;
}

.focus\:cl-scale-x-100:focus {
  --transform-scale-x: 1 !important;
}

.focus\:cl-scale-x-105:focus {
  --transform-scale-x: 1.05 !important;
}

.focus\:cl-scale-x-110:focus {
  --transform-scale-x: 1.1 !important;
}

.focus\:cl-scale-x-125:focus {
  --transform-scale-x: 1.25 !important;
}

.focus\:cl-scale-x-150:focus {
  --transform-scale-x: 1.5 !important;
}

.focus\:cl-scale-y-0:focus {
  --transform-scale-y: 0 !important;
}

.focus\:cl-scale-y-50:focus {
  --transform-scale-y: .5 !important;
}

.focus\:cl-scale-y-75:focus {
  --transform-scale-y: .75 !important;
}

.focus\:cl-scale-y-90:focus {
  --transform-scale-y: .9 !important;
}

.focus\:cl-scale-y-95:focus {
  --transform-scale-y: .95 !important;
}

.focus\:cl-scale-y-100:focus {
  --transform-scale-y: 1 !important;
}

.focus\:cl-scale-y-105:focus {
  --transform-scale-y: 1.05 !important;
}

.focus\:cl-scale-y-110:focus {
  --transform-scale-y: 1.1 !important;
}

.focus\:cl-scale-y-125:focus {
  --transform-scale-y: 1.25 !important;
}

.focus\:cl-scale-y-150:focus {
  --transform-scale-y: 1.5 !important;
}

.cl-rotate-0 {
  --transform-rotate: 0 !important;
}

.cl-rotate-1 {
  --transform-rotate: 1deg !important;
}

.cl-rotate-2 {
  --transform-rotate: 2deg !important;
}

.cl-rotate-3 {
  --transform-rotate: 3deg !important;
}

.cl-rotate-6 {
  --transform-rotate: 6deg !important;
}

.cl-rotate-12 {
  --transform-rotate: 12deg !important;
}

.cl-rotate-45 {
  --transform-rotate: 45deg !important;
}

.cl-rotate-90 {
  --transform-rotate: 90deg !important;
}

.cl-rotate-180 {
  --transform-rotate: 180deg !important;
}

.cl--rotate-180 {
  --transform-rotate: -180deg !important;
}

.cl--rotate-90 {
  --transform-rotate: -90deg !important;
}

.cl--rotate-45 {
  --transform-rotate: -45deg !important;
}

.cl--rotate-12 {
  --transform-rotate: -12deg !important;
}

.cl--rotate-6 {
  --transform-rotate: -6deg !important;
}

.cl--rotate-3 {
  --transform-rotate: -3deg !important;
}

.cl--rotate-2 {
  --transform-rotate: -2deg !important;
}

.cl--rotate-1 {
  --transform-rotate: -1deg !important;
}

.hover\:cl-rotate-0:hover {
  --transform-rotate: 0 !important;
}

.hover\:cl-rotate-1:hover {
  --transform-rotate: 1deg !important;
}

.hover\:cl-rotate-2:hover {
  --transform-rotate: 2deg !important;
}

.hover\:cl-rotate-3:hover {
  --transform-rotate: 3deg !important;
}

.hover\:cl-rotate-6:hover {
  --transform-rotate: 6deg !important;
}

.hover\:cl-rotate-12:hover {
  --transform-rotate: 12deg !important;
}

.hover\:cl-rotate-45:hover {
  --transform-rotate: 45deg !important;
}

.hover\:cl-rotate-90:hover {
  --transform-rotate: 90deg !important;
}

.hover\:cl-rotate-180:hover {
  --transform-rotate: 180deg !important;
}

.hover\:cl--rotate-180:hover {
  --transform-rotate: -180deg !important;
}

.hover\:cl--rotate-90:hover {
  --transform-rotate: -90deg !important;
}

.hover\:cl--rotate-45:hover {
  --transform-rotate: -45deg !important;
}

.hover\:cl--rotate-12:hover {
  --transform-rotate: -12deg !important;
}

.hover\:cl--rotate-6:hover {
  --transform-rotate: -6deg !important;
}

.hover\:cl--rotate-3:hover {
  --transform-rotate: -3deg !important;
}

.hover\:cl--rotate-2:hover {
  --transform-rotate: -2deg !important;
}

.hover\:cl--rotate-1:hover {
  --transform-rotate: -1deg !important;
}

.focus\:cl-rotate-0:focus {
  --transform-rotate: 0 !important;
}

.focus\:cl-rotate-1:focus {
  --transform-rotate: 1deg !important;
}

.focus\:cl-rotate-2:focus {
  --transform-rotate: 2deg !important;
}

.focus\:cl-rotate-3:focus {
  --transform-rotate: 3deg !important;
}

.focus\:cl-rotate-6:focus {
  --transform-rotate: 6deg !important;
}

.focus\:cl-rotate-12:focus {
  --transform-rotate: 12deg !important;
}

.focus\:cl-rotate-45:focus {
  --transform-rotate: 45deg !important;
}

.focus\:cl-rotate-90:focus {
  --transform-rotate: 90deg !important;
}

.focus\:cl-rotate-180:focus {
  --transform-rotate: 180deg !important;
}

.focus\:cl--rotate-180:focus {
  --transform-rotate: -180deg !important;
}

.focus\:cl--rotate-90:focus {
  --transform-rotate: -90deg !important;
}

.focus\:cl--rotate-45:focus {
  --transform-rotate: -45deg !important;
}

.focus\:cl--rotate-12:focus {
  --transform-rotate: -12deg !important;
}

.focus\:cl--rotate-6:focus {
  --transform-rotate: -6deg !important;
}

.focus\:cl--rotate-3:focus {
  --transform-rotate: -3deg !important;
}

.focus\:cl--rotate-2:focus {
  --transform-rotate: -2deg !important;
}

.focus\:cl--rotate-1:focus {
  --transform-rotate: -1deg !important;
}

.cl-translate-x-0 {
  --transform-translate-x: 0 !important;
}

.cl-translate-x-1 {
  --transform-translate-x: 4px !important;
}

.cl-translate-x-2 {
  --transform-translate-x: 8px !important;
}

.cl-translate-x-3 {
  --transform-translate-x: 12px !important;
}

.cl-translate-x-4 {
  --transform-translate-x: 16px !important;
}

.cl-translate-x-5 {
  --transform-translate-x: 20px !important;
}

.cl-translate-x-6 {
  --transform-translate-x: 24px !important;
}

.cl-translate-x-8 {
  --transform-translate-x: 32px !important;
}

.cl-translate-x-10 {
  --transform-translate-x: 40px !important;
}

.cl-translate-x-12 {
  --transform-translate-x: 48px !important;
}

.cl-translate-x-16 {
  --transform-translate-x: 64px !important;
}

.cl-translate-x-20 {
  --transform-translate-x: 80px !important;
}

.cl-translate-x-24 {
  --transform-translate-x: 96px !important;
}

.cl-translate-x-26 {
  --transform-translate-x: 100px !important;
}

.cl-translate-x-28 {
  --transform-translate-x: 110px !important;
}

.cl-translate-x-32 {
  --transform-translate-x: 128px !important;
}

.cl-translate-x-40 {
  --transform-translate-x: 160px !important;
}

.cl-translate-x-48 {
  --transform-translate-x: 192px !important;
}

.cl-translate-x-56 {
  --transform-translate-x: 224px !important;
}

.cl-translate-x-64 {
  --transform-translate-x: 256px !important;
}

.cl-translate-x-px {
  --transform-translate-x: 1px !important;
}

.cl--translate-x-1 {
  --transform-translate-x: -4px !important;
}

.cl--translate-x-2 {
  --transform-translate-x: -8px !important;
}

.cl--translate-x-3 {
  --transform-translate-x: -12px !important;
}

.cl--translate-x-4 {
  --transform-translate-x: -16px !important;
}

.cl--translate-x-5 {
  --transform-translate-x: -20px !important;
}

.cl--translate-x-6 {
  --transform-translate-x: -24px !important;
}

.cl--translate-x-8 {
  --transform-translate-x: -32px !important;
}

.cl--translate-x-10 {
  --transform-translate-x: -40px !important;
}

.cl--translate-x-12 {
  --transform-translate-x: -48px !important;
}

.cl--translate-x-16 {
  --transform-translate-x: -64px !important;
}

.cl--translate-x-20 {
  --transform-translate-x: -80px !important;
}

.cl--translate-x-24 {
  --transform-translate-x: -96px !important;
}

.cl--translate-x-26 {
  --transform-translate-x: -100px !important;
}

.cl--translate-x-28 {
  --transform-translate-x: -110px !important;
}

.cl--translate-x-32 {
  --transform-translate-x: -128px !important;
}

.cl--translate-x-40 {
  --transform-translate-x: -160px !important;
}

.cl--translate-x-48 {
  --transform-translate-x: -192px !important;
}

.cl--translate-x-56 {
  --transform-translate-x: -224px !important;
}

.cl--translate-x-64 {
  --transform-translate-x: -256px !important;
}

.cl--translate-x-px {
  --transform-translate-x: -1px !important;
}

.cl--translate-x-full {
  --transform-translate-x: -100% !important;
}

.cl--translate-x-1\/2 {
  --transform-translate-x: -50% !important;
}

.cl-translate-x-1\/2 {
  --transform-translate-x: 50% !important;
}

.cl-translate-x-full {
  --transform-translate-x: 100% !important;
}

.cl-translate-y-0 {
  --transform-translate-y: 0 !important;
}

.cl-translate-y-1 {
  --transform-translate-y: 4px !important;
}

.cl-translate-y-2 {
  --transform-translate-y: 8px !important;
}

.cl-translate-y-3 {
  --transform-translate-y: 12px !important;
}

.cl-translate-y-4 {
  --transform-translate-y: 16px !important;
}

.cl-translate-y-5 {
  --transform-translate-y: 20px !important;
}

.cl-translate-y-6 {
  --transform-translate-y: 24px !important;
}

.cl-translate-y-8 {
  --transform-translate-y: 32px !important;
}

.cl-translate-y-10 {
  --transform-translate-y: 40px !important;
}

.cl-translate-y-12 {
  --transform-translate-y: 48px !important;
}

.cl-translate-y-16 {
  --transform-translate-y: 64px !important;
}

.cl-translate-y-20 {
  --transform-translate-y: 80px !important;
}

.cl-translate-y-24 {
  --transform-translate-y: 96px !important;
}

.cl-translate-y-26 {
  --transform-translate-y: 100px !important;
}

.cl-translate-y-28 {
  --transform-translate-y: 110px !important;
}

.cl-translate-y-32 {
  --transform-translate-y: 128px !important;
}

.cl-translate-y-40 {
  --transform-translate-y: 160px !important;
}

.cl-translate-y-48 {
  --transform-translate-y: 192px !important;
}

.cl-translate-y-56 {
  --transform-translate-y: 224px !important;
}

.cl-translate-y-64 {
  --transform-translate-y: 256px !important;
}

.cl-translate-y-px {
  --transform-translate-y: 1px !important;
}

.cl--translate-y-1 {
  --transform-translate-y: -4px !important;
}

.cl--translate-y-2 {
  --transform-translate-y: -8px !important;
}

.cl--translate-y-3 {
  --transform-translate-y: -12px !important;
}

.cl--translate-y-4 {
  --transform-translate-y: -16px !important;
}

.cl--translate-y-5 {
  --transform-translate-y: -20px !important;
}

.cl--translate-y-6 {
  --transform-translate-y: -24px !important;
}

.cl--translate-y-8 {
  --transform-translate-y: -32px !important;
}

.cl--translate-y-10 {
  --transform-translate-y: -40px !important;
}

.cl--translate-y-12 {
  --transform-translate-y: -48px !important;
}

.cl--translate-y-16 {
  --transform-translate-y: -64px !important;
}

.cl--translate-y-20 {
  --transform-translate-y: -80px !important;
}

.cl--translate-y-24 {
  --transform-translate-y: -96px !important;
}

.cl--translate-y-26 {
  --transform-translate-y: -100px !important;
}

.cl--translate-y-28 {
  --transform-translate-y: -110px !important;
}

.cl--translate-y-32 {
  --transform-translate-y: -128px !important;
}

.cl--translate-y-40 {
  --transform-translate-y: -160px !important;
}

.cl--translate-y-48 {
  --transform-translate-y: -192px !important;
}

.cl--translate-y-56 {
  --transform-translate-y: -224px !important;
}

.cl--translate-y-64 {
  --transform-translate-y: -256px !important;
}

.cl--translate-y-px {
  --transform-translate-y: -1px !important;
}

.cl--translate-y-full {
  --transform-translate-y: -100% !important;
}

.cl--translate-y-1\/2 {
  --transform-translate-y: -50% !important;
}

.cl-translate-y-1\/2 {
  --transform-translate-y: 50% !important;
}

.cl-translate-y-full {
  --transform-translate-y: 100% !important;
}

.hover\:cl-translate-x-0:hover {
  --transform-translate-x: 0 !important;
}

.hover\:cl-translate-x-1:hover {
  --transform-translate-x: 4px !important;
}

.hover\:cl-translate-x-2:hover {
  --transform-translate-x: 8px !important;
}

.hover\:cl-translate-x-3:hover {
  --transform-translate-x: 12px !important;
}

.hover\:cl-translate-x-4:hover {
  --transform-translate-x: 16px !important;
}

.hover\:cl-translate-x-5:hover {
  --transform-translate-x: 20px !important;
}

.hover\:cl-translate-x-6:hover {
  --transform-translate-x: 24px !important;
}

.hover\:cl-translate-x-8:hover {
  --transform-translate-x: 32px !important;
}

.hover\:cl-translate-x-10:hover {
  --transform-translate-x: 40px !important;
}

.hover\:cl-translate-x-12:hover {
  --transform-translate-x: 48px !important;
}

.hover\:cl-translate-x-16:hover {
  --transform-translate-x: 64px !important;
}

.hover\:cl-translate-x-20:hover {
  --transform-translate-x: 80px !important;
}

.hover\:cl-translate-x-24:hover {
  --transform-translate-x: 96px !important;
}

.hover\:cl-translate-x-26:hover {
  --transform-translate-x: 100px !important;
}

.hover\:cl-translate-x-28:hover {
  --transform-translate-x: 110px !important;
}

.hover\:cl-translate-x-32:hover {
  --transform-translate-x: 128px !important;
}

.hover\:cl-translate-x-40:hover {
  --transform-translate-x: 160px !important;
}

.hover\:cl-translate-x-48:hover {
  --transform-translate-x: 192px !important;
}

.hover\:cl-translate-x-56:hover {
  --transform-translate-x: 224px !important;
}

.hover\:cl-translate-x-64:hover {
  --transform-translate-x: 256px !important;
}

.hover\:cl-translate-x-px:hover {
  --transform-translate-x: 1px !important;
}

.hover\:cl--translate-x-1:hover {
  --transform-translate-x: -4px !important;
}

.hover\:cl--translate-x-2:hover {
  --transform-translate-x: -8px !important;
}

.hover\:cl--translate-x-3:hover {
  --transform-translate-x: -12px !important;
}

.hover\:cl--translate-x-4:hover {
  --transform-translate-x: -16px !important;
}

.hover\:cl--translate-x-5:hover {
  --transform-translate-x: -20px !important;
}

.hover\:cl--translate-x-6:hover {
  --transform-translate-x: -24px !important;
}

.hover\:cl--translate-x-8:hover {
  --transform-translate-x: -32px !important;
}

.hover\:cl--translate-x-10:hover {
  --transform-translate-x: -40px !important;
}

.hover\:cl--translate-x-12:hover {
  --transform-translate-x: -48px !important;
}

.hover\:cl--translate-x-16:hover {
  --transform-translate-x: -64px !important;
}

.hover\:cl--translate-x-20:hover {
  --transform-translate-x: -80px !important;
}

.hover\:cl--translate-x-24:hover {
  --transform-translate-x: -96px !important;
}

.hover\:cl--translate-x-26:hover {
  --transform-translate-x: -100px !important;
}

.hover\:cl--translate-x-28:hover {
  --transform-translate-x: -110px !important;
}

.hover\:cl--translate-x-32:hover {
  --transform-translate-x: -128px !important;
}

.hover\:cl--translate-x-40:hover {
  --transform-translate-x: -160px !important;
}

.hover\:cl--translate-x-48:hover {
  --transform-translate-x: -192px !important;
}

.hover\:cl--translate-x-56:hover {
  --transform-translate-x: -224px !important;
}

.hover\:cl--translate-x-64:hover {
  --transform-translate-x: -256px !important;
}

.hover\:cl--translate-x-px:hover {
  --transform-translate-x: -1px !important;
}

.hover\:cl--translate-x-full:hover {
  --transform-translate-x: -100% !important;
}

.hover\:cl--translate-x-1\/2:hover {
  --transform-translate-x: -50% !important;
}

.hover\:cl-translate-x-1\/2:hover {
  --transform-translate-x: 50% !important;
}

.hover\:cl-translate-x-full:hover {
  --transform-translate-x: 100% !important;
}

.hover\:cl-translate-y-0:hover {
  --transform-translate-y: 0 !important;
}

.hover\:cl-translate-y-1:hover {
  --transform-translate-y: 4px !important;
}

.hover\:cl-translate-y-2:hover {
  --transform-translate-y: 8px !important;
}

.hover\:cl-translate-y-3:hover {
  --transform-translate-y: 12px !important;
}

.hover\:cl-translate-y-4:hover {
  --transform-translate-y: 16px !important;
}

.hover\:cl-translate-y-5:hover {
  --transform-translate-y: 20px !important;
}

.hover\:cl-translate-y-6:hover {
  --transform-translate-y: 24px !important;
}

.hover\:cl-translate-y-8:hover {
  --transform-translate-y: 32px !important;
}

.hover\:cl-translate-y-10:hover {
  --transform-translate-y: 40px !important;
}

.hover\:cl-translate-y-12:hover {
  --transform-translate-y: 48px !important;
}

.hover\:cl-translate-y-16:hover {
  --transform-translate-y: 64px !important;
}

.hover\:cl-translate-y-20:hover {
  --transform-translate-y: 80px !important;
}

.hover\:cl-translate-y-24:hover {
  --transform-translate-y: 96px !important;
}

.hover\:cl-translate-y-26:hover {
  --transform-translate-y: 100px !important;
}

.hover\:cl-translate-y-28:hover {
  --transform-translate-y: 110px !important;
}

.hover\:cl-translate-y-32:hover {
  --transform-translate-y: 128px !important;
}

.hover\:cl-translate-y-40:hover {
  --transform-translate-y: 160px !important;
}

.hover\:cl-translate-y-48:hover {
  --transform-translate-y: 192px !important;
}

.hover\:cl-translate-y-56:hover {
  --transform-translate-y: 224px !important;
}

.hover\:cl-translate-y-64:hover {
  --transform-translate-y: 256px !important;
}

.hover\:cl-translate-y-px:hover {
  --transform-translate-y: 1px !important;
}

.hover\:cl--translate-y-1:hover {
  --transform-translate-y: -4px !important;
}

.hover\:cl--translate-y-2:hover {
  --transform-translate-y: -8px !important;
}

.hover\:cl--translate-y-3:hover {
  --transform-translate-y: -12px !important;
}

.hover\:cl--translate-y-4:hover {
  --transform-translate-y: -16px !important;
}

.hover\:cl--translate-y-5:hover {
  --transform-translate-y: -20px !important;
}

.hover\:cl--translate-y-6:hover {
  --transform-translate-y: -24px !important;
}

.hover\:cl--translate-y-8:hover {
  --transform-translate-y: -32px !important;
}

.hover\:cl--translate-y-10:hover {
  --transform-translate-y: -40px !important;
}

.hover\:cl--translate-y-12:hover {
  --transform-translate-y: -48px !important;
}

.hover\:cl--translate-y-16:hover {
  --transform-translate-y: -64px !important;
}

.hover\:cl--translate-y-20:hover {
  --transform-translate-y: -80px !important;
}

.hover\:cl--translate-y-24:hover {
  --transform-translate-y: -96px !important;
}

.hover\:cl--translate-y-26:hover {
  --transform-translate-y: -100px !important;
}

.hover\:cl--translate-y-28:hover {
  --transform-translate-y: -110px !important;
}

.hover\:cl--translate-y-32:hover {
  --transform-translate-y: -128px !important;
}

.hover\:cl--translate-y-40:hover {
  --transform-translate-y: -160px !important;
}

.hover\:cl--translate-y-48:hover {
  --transform-translate-y: -192px !important;
}

.hover\:cl--translate-y-56:hover {
  --transform-translate-y: -224px !important;
}

.hover\:cl--translate-y-64:hover {
  --transform-translate-y: -256px !important;
}

.hover\:cl--translate-y-px:hover {
  --transform-translate-y: -1px !important;
}

.hover\:cl--translate-y-full:hover {
  --transform-translate-y: -100% !important;
}

.hover\:cl--translate-y-1\/2:hover {
  --transform-translate-y: -50% !important;
}

.hover\:cl-translate-y-1\/2:hover {
  --transform-translate-y: 50% !important;
}

.hover\:cl-translate-y-full:hover {
  --transform-translate-y: 100% !important;
}

.focus\:cl-translate-x-0:focus {
  --transform-translate-x: 0 !important;
}

.focus\:cl-translate-x-1:focus {
  --transform-translate-x: 4px !important;
}

.focus\:cl-translate-x-2:focus {
  --transform-translate-x: 8px !important;
}

.focus\:cl-translate-x-3:focus {
  --transform-translate-x: 12px !important;
}

.focus\:cl-translate-x-4:focus {
  --transform-translate-x: 16px !important;
}

.focus\:cl-translate-x-5:focus {
  --transform-translate-x: 20px !important;
}

.focus\:cl-translate-x-6:focus {
  --transform-translate-x: 24px !important;
}

.focus\:cl-translate-x-8:focus {
  --transform-translate-x: 32px !important;
}

.focus\:cl-translate-x-10:focus {
  --transform-translate-x: 40px !important;
}

.focus\:cl-translate-x-12:focus {
  --transform-translate-x: 48px !important;
}

.focus\:cl-translate-x-16:focus {
  --transform-translate-x: 64px !important;
}

.focus\:cl-translate-x-20:focus {
  --transform-translate-x: 80px !important;
}

.focus\:cl-translate-x-24:focus {
  --transform-translate-x: 96px !important;
}

.focus\:cl-translate-x-26:focus {
  --transform-translate-x: 100px !important;
}

.focus\:cl-translate-x-28:focus {
  --transform-translate-x: 110px !important;
}

.focus\:cl-translate-x-32:focus {
  --transform-translate-x: 128px !important;
}

.focus\:cl-translate-x-40:focus {
  --transform-translate-x: 160px !important;
}

.focus\:cl-translate-x-48:focus {
  --transform-translate-x: 192px !important;
}

.focus\:cl-translate-x-56:focus {
  --transform-translate-x: 224px !important;
}

.focus\:cl-translate-x-64:focus {
  --transform-translate-x: 256px !important;
}

.focus\:cl-translate-x-px:focus {
  --transform-translate-x: 1px !important;
}

.focus\:cl--translate-x-1:focus {
  --transform-translate-x: -4px !important;
}

.focus\:cl--translate-x-2:focus {
  --transform-translate-x: -8px !important;
}

.focus\:cl--translate-x-3:focus {
  --transform-translate-x: -12px !important;
}

.focus\:cl--translate-x-4:focus {
  --transform-translate-x: -16px !important;
}

.focus\:cl--translate-x-5:focus {
  --transform-translate-x: -20px !important;
}

.focus\:cl--translate-x-6:focus {
  --transform-translate-x: -24px !important;
}

.focus\:cl--translate-x-8:focus {
  --transform-translate-x: -32px !important;
}

.focus\:cl--translate-x-10:focus {
  --transform-translate-x: -40px !important;
}

.focus\:cl--translate-x-12:focus {
  --transform-translate-x: -48px !important;
}

.focus\:cl--translate-x-16:focus {
  --transform-translate-x: -64px !important;
}

.focus\:cl--translate-x-20:focus {
  --transform-translate-x: -80px !important;
}

.focus\:cl--translate-x-24:focus {
  --transform-translate-x: -96px !important;
}

.focus\:cl--translate-x-26:focus {
  --transform-translate-x: -100px !important;
}

.focus\:cl--translate-x-28:focus {
  --transform-translate-x: -110px !important;
}

.focus\:cl--translate-x-32:focus {
  --transform-translate-x: -128px !important;
}

.focus\:cl--translate-x-40:focus {
  --transform-translate-x: -160px !important;
}

.focus\:cl--translate-x-48:focus {
  --transform-translate-x: -192px !important;
}

.focus\:cl--translate-x-56:focus {
  --transform-translate-x: -224px !important;
}

.focus\:cl--translate-x-64:focus {
  --transform-translate-x: -256px !important;
}

.focus\:cl--translate-x-px:focus {
  --transform-translate-x: -1px !important;
}

.focus\:cl--translate-x-full:focus {
  --transform-translate-x: -100% !important;
}

.focus\:cl--translate-x-1\/2:focus {
  --transform-translate-x: -50% !important;
}

.focus\:cl-translate-x-1\/2:focus {
  --transform-translate-x: 50% !important;
}

.focus\:cl-translate-x-full:focus {
  --transform-translate-x: 100% !important;
}

.focus\:cl-translate-y-0:focus {
  --transform-translate-y: 0 !important;
}

.focus\:cl-translate-y-1:focus {
  --transform-translate-y: 4px !important;
}

.focus\:cl-translate-y-2:focus {
  --transform-translate-y: 8px !important;
}

.focus\:cl-translate-y-3:focus {
  --transform-translate-y: 12px !important;
}

.focus\:cl-translate-y-4:focus {
  --transform-translate-y: 16px !important;
}

.focus\:cl-translate-y-5:focus {
  --transform-translate-y: 20px !important;
}

.focus\:cl-translate-y-6:focus {
  --transform-translate-y: 24px !important;
}

.focus\:cl-translate-y-8:focus {
  --transform-translate-y: 32px !important;
}

.focus\:cl-translate-y-10:focus {
  --transform-translate-y: 40px !important;
}

.focus\:cl-translate-y-12:focus {
  --transform-translate-y: 48px !important;
}

.focus\:cl-translate-y-16:focus {
  --transform-translate-y: 64px !important;
}

.focus\:cl-translate-y-20:focus {
  --transform-translate-y: 80px !important;
}

.focus\:cl-translate-y-24:focus {
  --transform-translate-y: 96px !important;
}

.focus\:cl-translate-y-26:focus {
  --transform-translate-y: 100px !important;
}

.focus\:cl-translate-y-28:focus {
  --transform-translate-y: 110px !important;
}

.focus\:cl-translate-y-32:focus {
  --transform-translate-y: 128px !important;
}

.focus\:cl-translate-y-40:focus {
  --transform-translate-y: 160px !important;
}

.focus\:cl-translate-y-48:focus {
  --transform-translate-y: 192px !important;
}

.focus\:cl-translate-y-56:focus {
  --transform-translate-y: 224px !important;
}

.focus\:cl-translate-y-64:focus {
  --transform-translate-y: 256px !important;
}

.focus\:cl-translate-y-px:focus {
  --transform-translate-y: 1px !important;
}

.focus\:cl--translate-y-1:focus {
  --transform-translate-y: -4px !important;
}

.focus\:cl--translate-y-2:focus {
  --transform-translate-y: -8px !important;
}

.focus\:cl--translate-y-3:focus {
  --transform-translate-y: -12px !important;
}

.focus\:cl--translate-y-4:focus {
  --transform-translate-y: -16px !important;
}

.focus\:cl--translate-y-5:focus {
  --transform-translate-y: -20px !important;
}

.focus\:cl--translate-y-6:focus {
  --transform-translate-y: -24px !important;
}

.focus\:cl--translate-y-8:focus {
  --transform-translate-y: -32px !important;
}

.focus\:cl--translate-y-10:focus {
  --transform-translate-y: -40px !important;
}

.focus\:cl--translate-y-12:focus {
  --transform-translate-y: -48px !important;
}

.focus\:cl--translate-y-16:focus {
  --transform-translate-y: -64px !important;
}

.focus\:cl--translate-y-20:focus {
  --transform-translate-y: -80px !important;
}

.focus\:cl--translate-y-24:focus {
  --transform-translate-y: -96px !important;
}

.focus\:cl--translate-y-26:focus {
  --transform-translate-y: -100px !important;
}

.focus\:cl--translate-y-28:focus {
  --transform-translate-y: -110px !important;
}

.focus\:cl--translate-y-32:focus {
  --transform-translate-y: -128px !important;
}

.focus\:cl--translate-y-40:focus {
  --transform-translate-y: -160px !important;
}

.focus\:cl--translate-y-48:focus {
  --transform-translate-y: -192px !important;
}

.focus\:cl--translate-y-56:focus {
  --transform-translate-y: -224px !important;
}

.focus\:cl--translate-y-64:focus {
  --transform-translate-y: -256px !important;
}

.focus\:cl--translate-y-px:focus {
  --transform-translate-y: -1px !important;
}

.focus\:cl--translate-y-full:focus {
  --transform-translate-y: -100% !important;
}

.focus\:cl--translate-y-1\/2:focus {
  --transform-translate-y: -50% !important;
}

.focus\:cl-translate-y-1\/2:focus {
  --transform-translate-y: 50% !important;
}

.focus\:cl-translate-y-full:focus {
  --transform-translate-y: 100% !important;
}

.cl-skew-x-0 {
  --transform-skew-x: 0 !important;
}

.cl-skew-x-1 {
  --transform-skew-x: 1deg !important;
}

.cl-skew-x-2 {
  --transform-skew-x: 2deg !important;
}

.cl-skew-x-3 {
  --transform-skew-x: 3deg !important;
}

.cl-skew-x-6 {
  --transform-skew-x: 6deg !important;
}

.cl-skew-x-12 {
  --transform-skew-x: 12deg !important;
}

.cl--skew-x-12 {
  --transform-skew-x: -12deg !important;
}

.cl--skew-x-6 {
  --transform-skew-x: -6deg !important;
}

.cl--skew-x-3 {
  --transform-skew-x: -3deg !important;
}

.cl--skew-x-2 {
  --transform-skew-x: -2deg !important;
}

.cl--skew-x-1 {
  --transform-skew-x: -1deg !important;
}

.cl-skew-y-0 {
  --transform-skew-y: 0 !important;
}

.cl-skew-y-1 {
  --transform-skew-y: 1deg !important;
}

.cl-skew-y-2 {
  --transform-skew-y: 2deg !important;
}

.cl-skew-y-3 {
  --transform-skew-y: 3deg !important;
}

.cl-skew-y-6 {
  --transform-skew-y: 6deg !important;
}

.cl-skew-y-12 {
  --transform-skew-y: 12deg !important;
}

.cl--skew-y-12 {
  --transform-skew-y: -12deg !important;
}

.cl--skew-y-6 {
  --transform-skew-y: -6deg !important;
}

.cl--skew-y-3 {
  --transform-skew-y: -3deg !important;
}

.cl--skew-y-2 {
  --transform-skew-y: -2deg !important;
}

.cl--skew-y-1 {
  --transform-skew-y: -1deg !important;
}

.hover\:cl-skew-x-0:hover {
  --transform-skew-x: 0 !important;
}

.hover\:cl-skew-x-1:hover {
  --transform-skew-x: 1deg !important;
}

.hover\:cl-skew-x-2:hover {
  --transform-skew-x: 2deg !important;
}

.hover\:cl-skew-x-3:hover {
  --transform-skew-x: 3deg !important;
}

.hover\:cl-skew-x-6:hover {
  --transform-skew-x: 6deg !important;
}

.hover\:cl-skew-x-12:hover {
  --transform-skew-x: 12deg !important;
}

.hover\:cl--skew-x-12:hover {
  --transform-skew-x: -12deg !important;
}

.hover\:cl--skew-x-6:hover {
  --transform-skew-x: -6deg !important;
}

.hover\:cl--skew-x-3:hover {
  --transform-skew-x: -3deg !important;
}

.hover\:cl--skew-x-2:hover {
  --transform-skew-x: -2deg !important;
}

.hover\:cl--skew-x-1:hover {
  --transform-skew-x: -1deg !important;
}

.hover\:cl-skew-y-0:hover {
  --transform-skew-y: 0 !important;
}

.hover\:cl-skew-y-1:hover {
  --transform-skew-y: 1deg !important;
}

.hover\:cl-skew-y-2:hover {
  --transform-skew-y: 2deg !important;
}

.hover\:cl-skew-y-3:hover {
  --transform-skew-y: 3deg !important;
}

.hover\:cl-skew-y-6:hover {
  --transform-skew-y: 6deg !important;
}

.hover\:cl-skew-y-12:hover {
  --transform-skew-y: 12deg !important;
}

.hover\:cl--skew-y-12:hover {
  --transform-skew-y: -12deg !important;
}

.hover\:cl--skew-y-6:hover {
  --transform-skew-y: -6deg !important;
}

.hover\:cl--skew-y-3:hover {
  --transform-skew-y: -3deg !important;
}

.hover\:cl--skew-y-2:hover {
  --transform-skew-y: -2deg !important;
}

.hover\:cl--skew-y-1:hover {
  --transform-skew-y: -1deg !important;
}

.focus\:cl-skew-x-0:focus {
  --transform-skew-x: 0 !important;
}

.focus\:cl-skew-x-1:focus {
  --transform-skew-x: 1deg !important;
}

.focus\:cl-skew-x-2:focus {
  --transform-skew-x: 2deg !important;
}

.focus\:cl-skew-x-3:focus {
  --transform-skew-x: 3deg !important;
}

.focus\:cl-skew-x-6:focus {
  --transform-skew-x: 6deg !important;
}

.focus\:cl-skew-x-12:focus {
  --transform-skew-x: 12deg !important;
}

.focus\:cl--skew-x-12:focus {
  --transform-skew-x: -12deg !important;
}

.focus\:cl--skew-x-6:focus {
  --transform-skew-x: -6deg !important;
}

.focus\:cl--skew-x-3:focus {
  --transform-skew-x: -3deg !important;
}

.focus\:cl--skew-x-2:focus {
  --transform-skew-x: -2deg !important;
}

.focus\:cl--skew-x-1:focus {
  --transform-skew-x: -1deg !important;
}

.focus\:cl-skew-y-0:focus {
  --transform-skew-y: 0 !important;
}

.focus\:cl-skew-y-1:focus {
  --transform-skew-y: 1deg !important;
}

.focus\:cl-skew-y-2:focus {
  --transform-skew-y: 2deg !important;
}

.focus\:cl-skew-y-3:focus {
  --transform-skew-y: 3deg !important;
}

.focus\:cl-skew-y-6:focus {
  --transform-skew-y: 6deg !important;
}

.focus\:cl-skew-y-12:focus {
  --transform-skew-y: 12deg !important;
}

.focus\:cl--skew-y-12:focus {
  --transform-skew-y: -12deg !important;
}

.focus\:cl--skew-y-6:focus {
  --transform-skew-y: -6deg !important;
}

.focus\:cl--skew-y-3:focus {
  --transform-skew-y: -3deg !important;
}

.focus\:cl--skew-y-2:focus {
  --transform-skew-y: -2deg !important;
}

.focus\:cl--skew-y-1:focus {
  --transform-skew-y: -1deg !important;
}

.cl-transition-none {
  transition-property: none !important;
}

.cl-transition-all {
  transition-property: all !important;
}

.cl-transition {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
}

.cl-transition-colors {
  transition-property: background-color, border-color, color, fill, stroke !important;
}

.cl-transition-opacity {
  transition-property: opacity !important;
}

.cl-transition-shadow {
  transition-property: box-shadow !important;
}

.cl-transition-transform {
  transition-property: transform !important;
}

.cl-ease-linear {
  transition-timing-function: linear !important;
}

.cl-ease-in {
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important;
}

.cl-ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important;
}

.cl-ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.cl-duration-75 {
  transition-duration: 75ms !important;
}

.cl-duration-100 {
  transition-duration: 100ms !important;
}

.cl-duration-150 {
  transition-duration: 150ms !important;
}

.cl-duration-200 {
  transition-duration: 200ms !important;
}

.cl-duration-300 {
  transition-duration: 300ms !important;
}

.cl-duration-500 {
  transition-duration: 500ms !important;
}

.cl-duration-700 {
  transition-duration: 700ms !important;
}

.cl-duration-1000 {
  transition-duration: 1000ms !important;
}

.cl-delay-75 {
  transition-delay: 75ms !important;
}

.cl-delay-100 {
  transition-delay: 100ms !important;
}

.cl-delay-150 {
  transition-delay: 150ms !important;
}

.cl-delay-200 {
  transition-delay: 200ms !important;
}

.cl-delay-300 {
  transition-delay: 300ms !important;
}

.cl-delay-500 {
  transition-delay: 500ms !important;
}

.cl-delay-700 {
  transition-delay: 700ms !important;
}

.cl-delay-1000 {
  transition-delay: 1000ms !important;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes pulse {
  50% {
    opacity: .5;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

.cl-animate-none {
  animation: none !important;
}

.cl-animate-spin {
  animation: spin 1s linear infinite !important;
}

.cl-animate-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
}

.cl-animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
}

.cl-animate-bounce {
  animation: bounce 1s infinite !important;
}

@media (min-width: 640px) {
  .sm\:cl-container {
    width: 100%;
  }

  @media (min-width: 640px) {
    .sm\:cl-container {
      max-width: 640px;
    }
  }

  @media (min-width: 768px) {
    .sm\:cl-container {
      max-width: 768px;
    }
  }

  @media (min-width: 1024px) {
    .sm\:cl-container {
      max-width: 1024px;
    }
  }

  @media (min-width: 1280px) {
    .sm\:cl-container {
      max-width: 1280px;
    }
  }

  .sm\:cl-space-y-0 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--space-y-reverse)) !important;
  }

  .sm\:cl-space-x-0 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl-space-y-1 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(4px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(4px * var(--space-y-reverse)) !important;
  }

  .sm\:cl-space-x-1 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(4px * var(--space-x-reverse)) !important;
    margin-left: calc(4px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl-space-y-2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(8px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(8px * var(--space-y-reverse)) !important;
  }

  .sm\:cl-space-x-2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(8px * var(--space-x-reverse)) !important;
    margin-left: calc(8px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl-space-y-3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(12px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(12px * var(--space-y-reverse)) !important;
  }

  .sm\:cl-space-x-3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(12px * var(--space-x-reverse)) !important;
    margin-left: calc(12px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl-space-y-4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16px * var(--space-y-reverse)) !important;
  }

  .sm\:cl-space-x-4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16px * var(--space-x-reverse)) !important;
    margin-left: calc(16px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl-space-y-5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(20px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(20px * var(--space-y-reverse)) !important;
  }

  .sm\:cl-space-x-5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(20px * var(--space-x-reverse)) !important;
    margin-left: calc(20px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl-space-y-6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(24px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(24px * var(--space-y-reverse)) !important;
  }

  .sm\:cl-space-x-6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(24px * var(--space-x-reverse)) !important;
    margin-left: calc(24px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl-space-y-8 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(32px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(32px * var(--space-y-reverse)) !important;
  }

  .sm\:cl-space-x-8 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(32px * var(--space-x-reverse)) !important;
    margin-left: calc(32px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl-space-y-10 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(40px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(40px * var(--space-y-reverse)) !important;
  }

  .sm\:cl-space-x-10 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(40px * var(--space-x-reverse)) !important;
    margin-left: calc(40px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl-space-y-12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(48px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(48px * var(--space-y-reverse)) !important;
  }

  .sm\:cl-space-x-12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(48px * var(--space-x-reverse)) !important;
    margin-left: calc(48px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl-space-y-16 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(64px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(64px * var(--space-y-reverse)) !important;
  }

  .sm\:cl-space-x-16 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(64px * var(--space-x-reverse)) !important;
    margin-left: calc(64px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl-space-y-20 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(80px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(80px * var(--space-y-reverse)) !important;
  }

  .sm\:cl-space-x-20 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(80px * var(--space-x-reverse)) !important;
    margin-left: calc(80px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl-space-y-24 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(96px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(96px * var(--space-y-reverse)) !important;
  }

  .sm\:cl-space-x-24 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(96px * var(--space-x-reverse)) !important;
    margin-left: calc(96px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl-space-y-26 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(100px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(100px * var(--space-y-reverse)) !important;
  }

  .sm\:cl-space-x-26 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(100px * var(--space-x-reverse)) !important;
    margin-left: calc(100px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl-space-y-28 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(110px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(110px * var(--space-y-reverse)) !important;
  }

  .sm\:cl-space-x-28 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(110px * var(--space-x-reverse)) !important;
    margin-left: calc(110px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl-space-y-32 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(128px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(128px * var(--space-y-reverse)) !important;
  }

  .sm\:cl-space-x-32 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(128px * var(--space-x-reverse)) !important;
    margin-left: calc(128px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl-space-y-40 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(160px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(160px * var(--space-y-reverse)) !important;
  }

  .sm\:cl-space-x-40 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(160px * var(--space-x-reverse)) !important;
    margin-left: calc(160px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl-space-y-48 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(192px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(192px * var(--space-y-reverse)) !important;
  }

  .sm\:cl-space-x-48 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(192px * var(--space-x-reverse)) !important;
    margin-left: calc(192px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl-space-y-56 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(224px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(224px * var(--space-y-reverse)) !important;
  }

  .sm\:cl-space-x-56 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(224px * var(--space-x-reverse)) !important;
    margin-left: calc(224px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl-space-y-64 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(256px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(256px * var(--space-y-reverse)) !important;
  }

  .sm\:cl-space-x-64 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(256px * var(--space-x-reverse)) !important;
    margin-left: calc(256px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl-space-y-px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1px * var(--space-y-reverse)) !important;
  }

  .sm\:cl-space-x-px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1px * var(--space-x-reverse)) !important;
    margin-left: calc(1px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl--space-y-1 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-4px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-4px * var(--space-y-reverse)) !important;
  }

  .sm\:cl--space-x-1 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-4px * var(--space-x-reverse)) !important;
    margin-left: calc(-4px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl--space-y-2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-8px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-8px * var(--space-y-reverse)) !important;
  }

  .sm\:cl--space-x-2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-8px * var(--space-x-reverse)) !important;
    margin-left: calc(-8px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl--space-y-3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-12px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-12px * var(--space-y-reverse)) !important;
  }

  .sm\:cl--space-x-3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-12px * var(--space-x-reverse)) !important;
    margin-left: calc(-12px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl--space-y-4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16px * var(--space-y-reverse)) !important;
  }

  .sm\:cl--space-x-4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16px * var(--space-x-reverse)) !important;
    margin-left: calc(-16px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl--space-y-5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-20px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-20px * var(--space-y-reverse)) !important;
  }

  .sm\:cl--space-x-5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-20px * var(--space-x-reverse)) !important;
    margin-left: calc(-20px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl--space-y-6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-24px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-24px * var(--space-y-reverse)) !important;
  }

  .sm\:cl--space-x-6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-24px * var(--space-x-reverse)) !important;
    margin-left: calc(-24px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl--space-y-8 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-32px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-32px * var(--space-y-reverse)) !important;
  }

  .sm\:cl--space-x-8 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-32px * var(--space-x-reverse)) !important;
    margin-left: calc(-32px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl--space-y-10 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-40px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-40px * var(--space-y-reverse)) !important;
  }

  .sm\:cl--space-x-10 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-40px * var(--space-x-reverse)) !important;
    margin-left: calc(-40px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl--space-y-12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-48px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-48px * var(--space-y-reverse)) !important;
  }

  .sm\:cl--space-x-12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-48px * var(--space-x-reverse)) !important;
    margin-left: calc(-48px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl--space-y-16 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-64px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-64px * var(--space-y-reverse)) !important;
  }

  .sm\:cl--space-x-16 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-64px * var(--space-x-reverse)) !important;
    margin-left: calc(-64px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl--space-y-20 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-80px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-80px * var(--space-y-reverse)) !important;
  }

  .sm\:cl--space-x-20 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-80px * var(--space-x-reverse)) !important;
    margin-left: calc(-80px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl--space-y-24 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-96px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-96px * var(--space-y-reverse)) !important;
  }

  .sm\:cl--space-x-24 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-96px * var(--space-x-reverse)) !important;
    margin-left: calc(-96px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl--space-y-26 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-100px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-100px * var(--space-y-reverse)) !important;
  }

  .sm\:cl--space-x-26 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-100px * var(--space-x-reverse)) !important;
    margin-left: calc(-100px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl--space-y-28 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-110px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-110px * var(--space-y-reverse)) !important;
  }

  .sm\:cl--space-x-28 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-110px * var(--space-x-reverse)) !important;
    margin-left: calc(-110px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl--space-y-32 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-128px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-128px * var(--space-y-reverse)) !important;
  }

  .sm\:cl--space-x-32 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-128px * var(--space-x-reverse)) !important;
    margin-left: calc(-128px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl--space-y-40 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-160px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-160px * var(--space-y-reverse)) !important;
  }

  .sm\:cl--space-x-40 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-160px * var(--space-x-reverse)) !important;
    margin-left: calc(-160px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl--space-y-48 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-192px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-192px * var(--space-y-reverse)) !important;
  }

  .sm\:cl--space-x-48 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-192px * var(--space-x-reverse)) !important;
    margin-left: calc(-192px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl--space-y-56 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-224px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-224px * var(--space-y-reverse)) !important;
  }

  .sm\:cl--space-x-56 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-224px * var(--space-x-reverse)) !important;
    margin-left: calc(-224px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl--space-y-64 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-256px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-256px * var(--space-y-reverse)) !important;
  }

  .sm\:cl--space-x-64 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-256px * var(--space-x-reverse)) !important;
    margin-left: calc(-256px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl--space-y-px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1px * var(--space-y-reverse)) !important;
  }

  .sm\:cl--space-x-px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1px * var(--space-x-reverse)) !important;
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse))) !important;
  }

  .sm\:cl-space-y-reverse > :not(template) ~ :not(template) {
    --space-y-reverse: 1 !important;
  }

  .sm\:cl-space-x-reverse > :not(template) ~ :not(template) {
    --space-x-reverse: 1 !important;
  }

  .sm\:cl-divide-y-0 > :not(template) ~ :not(template) {
    --divide-y-reverse: 0 !important;
    border-top-width: calc(0px * calc(1 - var(--divide-y-reverse))) !important;
    border-bottom-width: calc(0px * var(--divide-y-reverse)) !important;
  }

  .sm\:cl-divide-x-0 > :not(template) ~ :not(template) {
    --divide-x-reverse: 0 !important;
    border-right-width: calc(0px * var(--divide-x-reverse)) !important;
    border-left-width: calc(0px * calc(1 - var(--divide-x-reverse))) !important;
  }

  .sm\:cl-divide-y-2 > :not(template) ~ :not(template) {
    --divide-y-reverse: 0 !important;
    border-top-width: calc(2px * calc(1 - var(--divide-y-reverse))) !important;
    border-bottom-width: calc(2px * var(--divide-y-reverse)) !important;
  }

  .sm\:cl-divide-x-2 > :not(template) ~ :not(template) {
    --divide-x-reverse: 0 !important;
    border-right-width: calc(2px * var(--divide-x-reverse)) !important;
    border-left-width: calc(2px * calc(1 - var(--divide-x-reverse))) !important;
  }

  .sm\:cl-divide-y-4 > :not(template) ~ :not(template) {
    --divide-y-reverse: 0 !important;
    border-top-width: calc(4px * calc(1 - var(--divide-y-reverse))) !important;
    border-bottom-width: calc(4px * var(--divide-y-reverse)) !important;
  }

  .sm\:cl-divide-x-4 > :not(template) ~ :not(template) {
    --divide-x-reverse: 0 !important;
    border-right-width: calc(4px * var(--divide-x-reverse)) !important;
    border-left-width: calc(4px * calc(1 - var(--divide-x-reverse))) !important;
  }

  .sm\:cl-divide-y-8 > :not(template) ~ :not(template) {
    --divide-y-reverse: 0 !important;
    border-top-width: calc(8px * calc(1 - var(--divide-y-reverse))) !important;
    border-bottom-width: calc(8px * var(--divide-y-reverse)) !important;
  }

  .sm\:cl-divide-x-8 > :not(template) ~ :not(template) {
    --divide-x-reverse: 0 !important;
    border-right-width: calc(8px * var(--divide-x-reverse)) !important;
    border-left-width: calc(8px * calc(1 - var(--divide-x-reverse))) !important;
  }

  .sm\:cl-divide-y-15 > :not(template) ~ :not(template) {
    --divide-y-reverse: 0 !important;
    border-top-width: calc(15px * calc(1 - var(--divide-y-reverse))) !important;
    border-bottom-width: calc(15px * var(--divide-y-reverse)) !important;
  }

  .sm\:cl-divide-x-15 > :not(template) ~ :not(template) {
    --divide-x-reverse: 0 !important;
    border-right-width: calc(15px * var(--divide-x-reverse)) !important;
    border-left-width: calc(15px * calc(1 - var(--divide-x-reverse))) !important;
  }

  .sm\:cl-divide-y > :not(template) ~ :not(template) {
    --divide-y-reverse: 0 !important;
    border-top-width: calc(1px * calc(1 - var(--divide-y-reverse))) !important;
    border-bottom-width: calc(1px * var(--divide-y-reverse)) !important;
  }

  .sm\:cl-divide-x > :not(template) ~ :not(template) {
    --divide-x-reverse: 0 !important;
    border-right-width: calc(1px * var(--divide-x-reverse)) !important;
    border-left-width: calc(1px * calc(1 - var(--divide-x-reverse))) !important;
  }

  .sm\:cl-divide-y-reverse > :not(template) ~ :not(template) {
    --divide-y-reverse: 1 !important;
  }

  .sm\:cl-divide-x-reverse > :not(template) ~ :not(template) {
    --divide-x-reverse: 1 !important;
  }

  .sm\:cl-divide-transparent > :not(template) ~ :not(template) {
    border-color: transparent !important;
  }

  .sm\:cl-divide-current > :not(template) ~ :not(template) {
    border-color: currentColor !important;
  }

  .sm\:cl-divide-black > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #000 !important;
    border-color: rgba(0, 0, 0, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-white > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fff !important;
    border-color: rgba(255, 255, 255, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-gray-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #f7fafc !important;
    border-color: rgba(247, 250, 252, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-gray-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #edf2f7 !important;
    border-color: rgba(237, 242, 247, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-gray-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #e2e8f0 !important;
    border-color: rgba(226, 232, 240, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-gray-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #cbd5e0 !important;
    border-color: rgba(203, 213, 224, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-gray-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #a0aec0 !important;
    border-color: rgba(160, 174, 192, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-gray-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #718096 !important;
    border-color: rgba(113, 128, 150, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-gray-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #4a5568 !important;
    border-color: rgba(74, 85, 104, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-gray-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #2d3748 !important;
    border-color: rgba(45, 55, 72, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-gray-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #1a202c !important;
    border-color: rgba(26, 32, 44, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-red-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fff5f5 !important;
    border-color: rgba(255, 245, 245, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-red-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fed7d7 !important;
    border-color: rgba(254, 215, 215, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-red-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #feb2b2 !important;
    border-color: rgba(254, 178, 178, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-red-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fc8181 !important;
    border-color: rgba(252, 129, 129, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-red-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #f56565 !important;
    border-color: rgba(245, 101, 101, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-red-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #e53e3e !important;
    border-color: rgba(229, 62, 62, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-red-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #c53030 !important;
    border-color: rgba(197, 48, 48, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-red-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #9b2c2c !important;
    border-color: rgba(155, 44, 44, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-red-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #742a2a !important;
    border-color: rgba(116, 42, 42, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-orange-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fffaf0 !important;
    border-color: rgba(255, 250, 240, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-orange-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #feebc8 !important;
    border-color: rgba(254, 235, 200, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-orange-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fbd38d !important;
    border-color: rgba(251, 211, 141, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-orange-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #f6ad55 !important;
    border-color: rgba(246, 173, 85, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-orange-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #ed8936 !important;
    border-color: rgba(237, 137, 54, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-orange-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #dd6b20 !important;
    border-color: rgba(221, 107, 32, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-orange-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #c05621 !important;
    border-color: rgba(192, 86, 33, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-orange-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #9c4221 !important;
    border-color: rgba(156, 66, 33, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-orange-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #7b341e !important;
    border-color: rgba(123, 52, 30, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-yellow-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fffff0 !important;
    border-color: rgba(255, 255, 240, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-yellow-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fefcbf !important;
    border-color: rgba(254, 252, 191, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-yellow-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #faf089 !important;
    border-color: rgba(250, 240, 137, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-yellow-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #f6e05e !important;
    border-color: rgba(246, 224, 94, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-yellow-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #ecc94b !important;
    border-color: rgba(236, 201, 75, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-yellow-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #d69e2e !important;
    border-color: rgba(214, 158, 46, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-yellow-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #b7791f !important;
    border-color: rgba(183, 121, 31, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-yellow-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #975a16 !important;
    border-color: rgba(151, 90, 22, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-yellow-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #744210 !important;
    border-color: rgba(116, 66, 16, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-green-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #f0fff4 !important;
    border-color: rgba(240, 255, 244, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-green-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #c6f6d5 !important;
    border-color: rgba(198, 246, 213, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-green-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #9ae6b4 !important;
    border-color: rgba(154, 230, 180, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-green-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #68d391 !important;
    border-color: rgba(104, 211, 145, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-green-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #48bb78 !important;
    border-color: rgba(72, 187, 120, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-green-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #38a169 !important;
    border-color: rgba(56, 161, 105, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-green-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #2f855a !important;
    border-color: rgba(47, 133, 90, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-green-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #276749 !important;
    border-color: rgba(39, 103, 73, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-green-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #22543d !important;
    border-color: rgba(34, 84, 61, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-teal-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #e6fffa !important;
    border-color: rgba(230, 255, 250, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-teal-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #b2f5ea !important;
    border-color: rgba(178, 245, 234, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-teal-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #81e6d9 !important;
    border-color: rgba(129, 230, 217, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-teal-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #4fd1c5 !important;
    border-color: rgba(79, 209, 197, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-teal-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #38b2ac !important;
    border-color: rgba(56, 178, 172, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-teal-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #319795 !important;
    border-color: rgba(49, 151, 149, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-teal-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #2c7a7b !important;
    border-color: rgba(44, 122, 123, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-teal-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #285e61 !important;
    border-color: rgba(40, 94, 97, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-teal-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #234e52 !important;
    border-color: rgba(35, 78, 82, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-blue-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #ebf8ff !important;
    border-color: rgba(235, 248, 255, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-blue-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #bee3f8 !important;
    border-color: rgba(190, 227, 248, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-blue-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #90cdf4 !important;
    border-color: rgba(144, 205, 244, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-blue-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #63b3ed !important;
    border-color: rgba(99, 179, 237, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-blue-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #4299e1 !important;
    border-color: rgba(66, 153, 225, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-blue-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #3182ce !important;
    border-color: rgba(49, 130, 206, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-blue-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #2b6cb0 !important;
    border-color: rgba(43, 108, 176, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-blue-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #2c5282 !important;
    border-color: rgba(44, 82, 130, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-blue-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #2a4365 !important;
    border-color: rgba(42, 67, 101, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-indigo-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #ebf4ff !important;
    border-color: rgba(235, 244, 255, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-indigo-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #c3dafe !important;
    border-color: rgba(195, 218, 254, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-indigo-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #a3bffa !important;
    border-color: rgba(163, 191, 250, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-indigo-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #7f9cf5 !important;
    border-color: rgba(127, 156, 245, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-indigo-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #667eea !important;
    border-color: rgba(102, 126, 234, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-indigo-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #5a67d8 !important;
    border-color: rgba(90, 103, 216, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-indigo-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #4c51bf !important;
    border-color: rgba(76, 81, 191, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-indigo-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #434190 !important;
    border-color: rgba(67, 65, 144, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-indigo-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #3c366b !important;
    border-color: rgba(60, 54, 107, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-purple-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #faf5ff !important;
    border-color: rgba(250, 245, 255, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-purple-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #e9d8fd !important;
    border-color: rgba(233, 216, 253, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-purple-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #d6bcfa !important;
    border-color: rgba(214, 188, 250, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-purple-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #b794f4 !important;
    border-color: rgba(183, 148, 244, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-purple-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #9f7aea !important;
    border-color: rgba(159, 122, 234, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-purple-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #805ad5 !important;
    border-color: rgba(128, 90, 213, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-purple-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #6b46c1 !important;
    border-color: rgba(107, 70, 193, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-purple-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #553c9a !important;
    border-color: rgba(85, 60, 154, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-purple-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #44337a !important;
    border-color: rgba(68, 51, 122, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-pink-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fff5f7 !important;
    border-color: rgba(255, 245, 247, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-pink-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fed7e2 !important;
    border-color: rgba(254, 215, 226, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-pink-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fbb6ce !important;
    border-color: rgba(251, 182, 206, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-pink-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #f687b3 !important;
    border-color: rgba(246, 135, 179, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-pink-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #ed64a6 !important;
    border-color: rgba(237, 100, 166, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-pink-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #d53f8c !important;
    border-color: rgba(213, 63, 140, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-pink-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #b83280 !important;
    border-color: rgba(184, 50, 128, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-pink-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #97266d !important;
    border-color: rgba(151, 38, 109, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-pink-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #702459 !important;
    border-color: rgba(112, 36, 89, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-ui-gray-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #f1f1f1 !important;
    border-color: rgba(241, 241, 241, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-ui-brown-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #f3ecdc !important;
    border-color: rgba(243, 236, 220, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-ui-brown-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #e8e0c9 !important;
    border-color: rgba(232, 224, 201, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-ui-brown-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #d0c095 !important;
    border-color: rgba(208, 192, 149, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-ui-brown-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #bd6005 !important;
    border-color: rgba(189, 96, 5, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-ui-green-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #aac74c !important;
    border-color: rgba(170, 199, 76, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-ui-green-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #71893e !important;
    border-color: rgba(113, 137, 62, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-ui-orange-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #e27212 !important;
    border-color: rgba(226, 114, 18, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-facebook > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #3b5998 !important;
    border-color: rgba(59, 89, 152, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-twitter > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #00acee !important;
    border-color: rgba(0, 172, 238, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-twitch > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #6441a5 !important;
    border-color: rgba(100, 65, 165, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-youtube > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #FF0000 !important;
    border-color: rgba(255, 0, 0, var(--divide-opacity)) !important;
  }

  .sm\:cl-divide-solid > :not(template) ~ :not(template) {
    border-style: solid !important;
  }

  .sm\:cl-divide-dashed > :not(template) ~ :not(template) {
    border-style: dashed !important;
  }

  .sm\:cl-divide-dotted > :not(template) ~ :not(template) {
    border-style: dotted !important;
  }

  .sm\:cl-divide-double > :not(template) ~ :not(template) {
    border-style: double !important;
  }

  .sm\:cl-divide-none > :not(template) ~ :not(template) {
    border-style: none !important;
  }

  .sm\:cl-divide-opacity-0 > :not(template) ~ :not(template) {
    --divide-opacity: 0 !important;
  }

  .sm\:cl-divide-opacity-25 > :not(template) ~ :not(template) {
    --divide-opacity: 0.25 !important;
  }

  .sm\:cl-divide-opacity-50 > :not(template) ~ :not(template) {
    --divide-opacity: 0.5 !important;
  }

  .sm\:cl-divide-opacity-75 > :not(template) ~ :not(template) {
    --divide-opacity: 0.75 !important;
  }

  .sm\:cl-divide-opacity-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
  }

  .sm\:cl-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .sm\:cl-not-sr-only {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .sm\:focus\:cl-sr-only:focus {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .sm\:focus\:cl-not-sr-only:focus {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .sm\:cl-appearance-none {
    -webkit-appearance: none !important;
       -moz-appearance: none !important;
            appearance: none !important;
  }

  .sm\:cl-bg-fixed {
    background-attachment: fixed !important;
  }

  .sm\:cl-bg-local {
    background-attachment: local !important;
  }

  .sm\:cl-bg-scroll {
    background-attachment: scroll !important;
  }

  .sm\:cl-bg-clip-border {
    background-clip: border-box !important;
  }

  .sm\:cl-bg-clip-padding {
    background-clip: padding-box !important;
  }

  .sm\:cl-bg-clip-content {
    background-clip: content-box !important;
  }

  .sm\:cl-bg-clip-text {
    -webkit-background-clip: text !important;
            background-clip: text !important;
  }

  .sm\:cl-bg-transparent {
    background-color: transparent !important;
  }

  .sm\:cl-bg-current {
    background-color: currentColor !important;
  }

  .sm\:cl-bg-black {
    --bg-opacity: 1 !important;
    background-color: #000 !important;
    background-color: rgba(0, 0, 0, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-white {
    --bg-opacity: 1 !important;
    background-color: #fff !important;
    background-color: rgba(255, 255, 255, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-gray-100 {
    --bg-opacity: 1 !important;
    background-color: #f7fafc !important;
    background-color: rgba(247, 250, 252, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-gray-200 {
    --bg-opacity: 1 !important;
    background-color: #edf2f7 !important;
    background-color: rgba(237, 242, 247, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-gray-300 {
    --bg-opacity: 1 !important;
    background-color: #e2e8f0 !important;
    background-color: rgba(226, 232, 240, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-gray-400 {
    --bg-opacity: 1 !important;
    background-color: #cbd5e0 !important;
    background-color: rgba(203, 213, 224, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-gray-500 {
    --bg-opacity: 1 !important;
    background-color: #a0aec0 !important;
    background-color: rgba(160, 174, 192, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-gray-600 {
    --bg-opacity: 1 !important;
    background-color: #718096 !important;
    background-color: rgba(113, 128, 150, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-gray-700 {
    --bg-opacity: 1 !important;
    background-color: #4a5568 !important;
    background-color: rgba(74, 85, 104, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-gray-800 {
    --bg-opacity: 1 !important;
    background-color: #2d3748 !important;
    background-color: rgba(45, 55, 72, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-gray-900 {
    --bg-opacity: 1 !important;
    background-color: #1a202c !important;
    background-color: rgba(26, 32, 44, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-red-100 {
    --bg-opacity: 1 !important;
    background-color: #fff5f5 !important;
    background-color: rgba(255, 245, 245, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-red-200 {
    --bg-opacity: 1 !important;
    background-color: #fed7d7 !important;
    background-color: rgba(254, 215, 215, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-red-300 {
    --bg-opacity: 1 !important;
    background-color: #feb2b2 !important;
    background-color: rgba(254, 178, 178, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-red-400 {
    --bg-opacity: 1 !important;
    background-color: #fc8181 !important;
    background-color: rgba(252, 129, 129, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-red-500 {
    --bg-opacity: 1 !important;
    background-color: #f56565 !important;
    background-color: rgba(245, 101, 101, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-red-600 {
    --bg-opacity: 1 !important;
    background-color: #e53e3e !important;
    background-color: rgba(229, 62, 62, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-red-700 {
    --bg-opacity: 1 !important;
    background-color: #c53030 !important;
    background-color: rgba(197, 48, 48, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-red-800 {
    --bg-opacity: 1 !important;
    background-color: #9b2c2c !important;
    background-color: rgba(155, 44, 44, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-red-900 {
    --bg-opacity: 1 !important;
    background-color: #742a2a !important;
    background-color: rgba(116, 42, 42, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-orange-100 {
    --bg-opacity: 1 !important;
    background-color: #fffaf0 !important;
    background-color: rgba(255, 250, 240, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-orange-200 {
    --bg-opacity: 1 !important;
    background-color: #feebc8 !important;
    background-color: rgba(254, 235, 200, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-orange-300 {
    --bg-opacity: 1 !important;
    background-color: #fbd38d !important;
    background-color: rgba(251, 211, 141, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-orange-400 {
    --bg-opacity: 1 !important;
    background-color: #f6ad55 !important;
    background-color: rgba(246, 173, 85, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-orange-500 {
    --bg-opacity: 1 !important;
    background-color: #ed8936 !important;
    background-color: rgba(237, 137, 54, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-orange-600 {
    --bg-opacity: 1 !important;
    background-color: #dd6b20 !important;
    background-color: rgba(221, 107, 32, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-orange-700 {
    --bg-opacity: 1 !important;
    background-color: #c05621 !important;
    background-color: rgba(192, 86, 33, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-orange-800 {
    --bg-opacity: 1 !important;
    background-color: #9c4221 !important;
    background-color: rgba(156, 66, 33, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-orange-900 {
    --bg-opacity: 1 !important;
    background-color: #7b341e !important;
    background-color: rgba(123, 52, 30, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-yellow-100 {
    --bg-opacity: 1 !important;
    background-color: #fffff0 !important;
    background-color: rgba(255, 255, 240, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-yellow-200 {
    --bg-opacity: 1 !important;
    background-color: #fefcbf !important;
    background-color: rgba(254, 252, 191, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-yellow-300 {
    --bg-opacity: 1 !important;
    background-color: #faf089 !important;
    background-color: rgba(250, 240, 137, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-yellow-400 {
    --bg-opacity: 1 !important;
    background-color: #f6e05e !important;
    background-color: rgba(246, 224, 94, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-yellow-500 {
    --bg-opacity: 1 !important;
    background-color: #ecc94b !important;
    background-color: rgba(236, 201, 75, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-yellow-600 {
    --bg-opacity: 1 !important;
    background-color: #d69e2e !important;
    background-color: rgba(214, 158, 46, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-yellow-700 {
    --bg-opacity: 1 !important;
    background-color: #b7791f !important;
    background-color: rgba(183, 121, 31, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-yellow-800 {
    --bg-opacity: 1 !important;
    background-color: #975a16 !important;
    background-color: rgba(151, 90, 22, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-yellow-900 {
    --bg-opacity: 1 !important;
    background-color: #744210 !important;
    background-color: rgba(116, 66, 16, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-green-100 {
    --bg-opacity: 1 !important;
    background-color: #f0fff4 !important;
    background-color: rgba(240, 255, 244, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-green-200 {
    --bg-opacity: 1 !important;
    background-color: #c6f6d5 !important;
    background-color: rgba(198, 246, 213, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-green-300 {
    --bg-opacity: 1 !important;
    background-color: #9ae6b4 !important;
    background-color: rgba(154, 230, 180, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-green-400 {
    --bg-opacity: 1 !important;
    background-color: #68d391 !important;
    background-color: rgba(104, 211, 145, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-green-500 {
    --bg-opacity: 1 !important;
    background-color: #48bb78 !important;
    background-color: rgba(72, 187, 120, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-green-600 {
    --bg-opacity: 1 !important;
    background-color: #38a169 !important;
    background-color: rgba(56, 161, 105, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-green-700 {
    --bg-opacity: 1 !important;
    background-color: #2f855a !important;
    background-color: rgba(47, 133, 90, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-green-800 {
    --bg-opacity: 1 !important;
    background-color: #276749 !important;
    background-color: rgba(39, 103, 73, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-green-900 {
    --bg-opacity: 1 !important;
    background-color: #22543d !important;
    background-color: rgba(34, 84, 61, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-teal-100 {
    --bg-opacity: 1 !important;
    background-color: #e6fffa !important;
    background-color: rgba(230, 255, 250, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-teal-200 {
    --bg-opacity: 1 !important;
    background-color: #b2f5ea !important;
    background-color: rgba(178, 245, 234, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-teal-300 {
    --bg-opacity: 1 !important;
    background-color: #81e6d9 !important;
    background-color: rgba(129, 230, 217, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-teal-400 {
    --bg-opacity: 1 !important;
    background-color: #4fd1c5 !important;
    background-color: rgba(79, 209, 197, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-teal-500 {
    --bg-opacity: 1 !important;
    background-color: #38b2ac !important;
    background-color: rgba(56, 178, 172, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-teal-600 {
    --bg-opacity: 1 !important;
    background-color: #319795 !important;
    background-color: rgba(49, 151, 149, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-teal-700 {
    --bg-opacity: 1 !important;
    background-color: #2c7a7b !important;
    background-color: rgba(44, 122, 123, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-teal-800 {
    --bg-opacity: 1 !important;
    background-color: #285e61 !important;
    background-color: rgba(40, 94, 97, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-teal-900 {
    --bg-opacity: 1 !important;
    background-color: #234e52 !important;
    background-color: rgba(35, 78, 82, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-blue-100 {
    --bg-opacity: 1 !important;
    background-color: #ebf8ff !important;
    background-color: rgba(235, 248, 255, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-blue-200 {
    --bg-opacity: 1 !important;
    background-color: #bee3f8 !important;
    background-color: rgba(190, 227, 248, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-blue-300 {
    --bg-opacity: 1 !important;
    background-color: #90cdf4 !important;
    background-color: rgba(144, 205, 244, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-blue-400 {
    --bg-opacity: 1 !important;
    background-color: #63b3ed !important;
    background-color: rgba(99, 179, 237, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-blue-500 {
    --bg-opacity: 1 !important;
    background-color: #4299e1 !important;
    background-color: rgba(66, 153, 225, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-blue-600 {
    --bg-opacity: 1 !important;
    background-color: #3182ce !important;
    background-color: rgba(49, 130, 206, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-blue-700 {
    --bg-opacity: 1 !important;
    background-color: #2b6cb0 !important;
    background-color: rgba(43, 108, 176, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-blue-800 {
    --bg-opacity: 1 !important;
    background-color: #2c5282 !important;
    background-color: rgba(44, 82, 130, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-blue-900 {
    --bg-opacity: 1 !important;
    background-color: #2a4365 !important;
    background-color: rgba(42, 67, 101, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-indigo-100 {
    --bg-opacity: 1 !important;
    background-color: #ebf4ff !important;
    background-color: rgba(235, 244, 255, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-indigo-200 {
    --bg-opacity: 1 !important;
    background-color: #c3dafe !important;
    background-color: rgba(195, 218, 254, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-indigo-300 {
    --bg-opacity: 1 !important;
    background-color: #a3bffa !important;
    background-color: rgba(163, 191, 250, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-indigo-400 {
    --bg-opacity: 1 !important;
    background-color: #7f9cf5 !important;
    background-color: rgba(127, 156, 245, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-indigo-500 {
    --bg-opacity: 1 !important;
    background-color: #667eea !important;
    background-color: rgba(102, 126, 234, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-indigo-600 {
    --bg-opacity: 1 !important;
    background-color: #5a67d8 !important;
    background-color: rgba(90, 103, 216, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-indigo-700 {
    --bg-opacity: 1 !important;
    background-color: #4c51bf !important;
    background-color: rgba(76, 81, 191, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-indigo-800 {
    --bg-opacity: 1 !important;
    background-color: #434190 !important;
    background-color: rgba(67, 65, 144, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-indigo-900 {
    --bg-opacity: 1 !important;
    background-color: #3c366b !important;
    background-color: rgba(60, 54, 107, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-purple-100 {
    --bg-opacity: 1 !important;
    background-color: #faf5ff !important;
    background-color: rgba(250, 245, 255, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-purple-200 {
    --bg-opacity: 1 !important;
    background-color: #e9d8fd !important;
    background-color: rgba(233, 216, 253, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-purple-300 {
    --bg-opacity: 1 !important;
    background-color: #d6bcfa !important;
    background-color: rgba(214, 188, 250, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-purple-400 {
    --bg-opacity: 1 !important;
    background-color: #b794f4 !important;
    background-color: rgba(183, 148, 244, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-purple-500 {
    --bg-opacity: 1 !important;
    background-color: #9f7aea !important;
    background-color: rgba(159, 122, 234, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-purple-600 {
    --bg-opacity: 1 !important;
    background-color: #805ad5 !important;
    background-color: rgba(128, 90, 213, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-purple-700 {
    --bg-opacity: 1 !important;
    background-color: #6b46c1 !important;
    background-color: rgba(107, 70, 193, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-purple-800 {
    --bg-opacity: 1 !important;
    background-color: #553c9a !important;
    background-color: rgba(85, 60, 154, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-purple-900 {
    --bg-opacity: 1 !important;
    background-color: #44337a !important;
    background-color: rgba(68, 51, 122, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-pink-100 {
    --bg-opacity: 1 !important;
    background-color: #fff5f7 !important;
    background-color: rgba(255, 245, 247, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-pink-200 {
    --bg-opacity: 1 !important;
    background-color: #fed7e2 !important;
    background-color: rgba(254, 215, 226, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-pink-300 {
    --bg-opacity: 1 !important;
    background-color: #fbb6ce !important;
    background-color: rgba(251, 182, 206, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-pink-400 {
    --bg-opacity: 1 !important;
    background-color: #f687b3 !important;
    background-color: rgba(246, 135, 179, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-pink-500 {
    --bg-opacity: 1 !important;
    background-color: #ed64a6 !important;
    background-color: rgba(237, 100, 166, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-pink-600 {
    --bg-opacity: 1 !important;
    background-color: #d53f8c !important;
    background-color: rgba(213, 63, 140, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-pink-700 {
    --bg-opacity: 1 !important;
    background-color: #b83280 !important;
    background-color: rgba(184, 50, 128, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-pink-800 {
    --bg-opacity: 1 !important;
    background-color: #97266d !important;
    background-color: rgba(151, 38, 109, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-pink-900 {
    --bg-opacity: 1 !important;
    background-color: #702459 !important;
    background-color: rgba(112, 36, 89, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-ui-gray-100 {
    --bg-opacity: 1 !important;
    background-color: #f1f1f1 !important;
    background-color: rgba(241, 241, 241, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-ui-brown-100 {
    --bg-opacity: 1 !important;
    background-color: #f3ecdc !important;
    background-color: rgba(243, 236, 220, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-ui-brown-200 {
    --bg-opacity: 1 !important;
    background-color: #e8e0c9 !important;
    background-color: rgba(232, 224, 201, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-ui-brown-300 {
    --bg-opacity: 1 !important;
    background-color: #d0c095 !important;
    background-color: rgba(208, 192, 149, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-ui-brown-700 {
    --bg-opacity: 1 !important;
    background-color: #bd6005 !important;
    background-color: rgba(189, 96, 5, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-ui-green-300 {
    --bg-opacity: 1 !important;
    background-color: #aac74c !important;
    background-color: rgba(170, 199, 76, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-ui-green-400 {
    --bg-opacity: 1 !important;
    background-color: #71893e !important;
    background-color: rgba(113, 137, 62, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-ui-orange-500 {
    --bg-opacity: 1 !important;
    background-color: #e27212 !important;
    background-color: rgba(226, 114, 18, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-facebook {
    --bg-opacity: 1 !important;
    background-color: #3b5998 !important;
    background-color: rgba(59, 89, 152, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-twitter {
    --bg-opacity: 1 !important;
    background-color: #00acee !important;
    background-color: rgba(0, 172, 238, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-twitch {
    --bg-opacity: 1 !important;
    background-color: #6441a5 !important;
    background-color: rgba(100, 65, 165, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-youtube {
    --bg-opacity: 1 !important;
    background-color: #FF0000 !important;
    background-color: rgba(255, 0, 0, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-transparent:hover {
    background-color: transparent !important;
  }

  .sm\:hover\:cl-bg-current:hover {
    background-color: currentColor !important;
  }

  .sm\:hover\:cl-bg-black:hover {
    --bg-opacity: 1 !important;
    background-color: #000 !important;
    background-color: rgba(0, 0, 0, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-white:hover {
    --bg-opacity: 1 !important;
    background-color: #fff !important;
    background-color: rgba(255, 255, 255, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-gray-100:hover {
    --bg-opacity: 1 !important;
    background-color: #f7fafc !important;
    background-color: rgba(247, 250, 252, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-gray-200:hover {
    --bg-opacity: 1 !important;
    background-color: #edf2f7 !important;
    background-color: rgba(237, 242, 247, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-gray-300:hover {
    --bg-opacity: 1 !important;
    background-color: #e2e8f0 !important;
    background-color: rgba(226, 232, 240, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-gray-400:hover {
    --bg-opacity: 1 !important;
    background-color: #cbd5e0 !important;
    background-color: rgba(203, 213, 224, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-gray-500:hover {
    --bg-opacity: 1 !important;
    background-color: #a0aec0 !important;
    background-color: rgba(160, 174, 192, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-gray-600:hover {
    --bg-opacity: 1 !important;
    background-color: #718096 !important;
    background-color: rgba(113, 128, 150, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-gray-700:hover {
    --bg-opacity: 1 !important;
    background-color: #4a5568 !important;
    background-color: rgba(74, 85, 104, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-gray-800:hover {
    --bg-opacity: 1 !important;
    background-color: #2d3748 !important;
    background-color: rgba(45, 55, 72, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-gray-900:hover {
    --bg-opacity: 1 !important;
    background-color: #1a202c !important;
    background-color: rgba(26, 32, 44, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-red-100:hover {
    --bg-opacity: 1 !important;
    background-color: #fff5f5 !important;
    background-color: rgba(255, 245, 245, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-red-200:hover {
    --bg-opacity: 1 !important;
    background-color: #fed7d7 !important;
    background-color: rgba(254, 215, 215, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-red-300:hover {
    --bg-opacity: 1 !important;
    background-color: #feb2b2 !important;
    background-color: rgba(254, 178, 178, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-red-400:hover {
    --bg-opacity: 1 !important;
    background-color: #fc8181 !important;
    background-color: rgba(252, 129, 129, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-red-500:hover {
    --bg-opacity: 1 !important;
    background-color: #f56565 !important;
    background-color: rgba(245, 101, 101, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-red-600:hover {
    --bg-opacity: 1 !important;
    background-color: #e53e3e !important;
    background-color: rgba(229, 62, 62, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-red-700:hover {
    --bg-opacity: 1 !important;
    background-color: #c53030 !important;
    background-color: rgba(197, 48, 48, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-red-800:hover {
    --bg-opacity: 1 !important;
    background-color: #9b2c2c !important;
    background-color: rgba(155, 44, 44, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-red-900:hover {
    --bg-opacity: 1 !important;
    background-color: #742a2a !important;
    background-color: rgba(116, 42, 42, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-orange-100:hover {
    --bg-opacity: 1 !important;
    background-color: #fffaf0 !important;
    background-color: rgba(255, 250, 240, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-orange-200:hover {
    --bg-opacity: 1 !important;
    background-color: #feebc8 !important;
    background-color: rgba(254, 235, 200, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-orange-300:hover {
    --bg-opacity: 1 !important;
    background-color: #fbd38d !important;
    background-color: rgba(251, 211, 141, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-orange-400:hover {
    --bg-opacity: 1 !important;
    background-color: #f6ad55 !important;
    background-color: rgba(246, 173, 85, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-orange-500:hover {
    --bg-opacity: 1 !important;
    background-color: #ed8936 !important;
    background-color: rgba(237, 137, 54, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-orange-600:hover {
    --bg-opacity: 1 !important;
    background-color: #dd6b20 !important;
    background-color: rgba(221, 107, 32, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-orange-700:hover {
    --bg-opacity: 1 !important;
    background-color: #c05621 !important;
    background-color: rgba(192, 86, 33, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-orange-800:hover {
    --bg-opacity: 1 !important;
    background-color: #9c4221 !important;
    background-color: rgba(156, 66, 33, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-orange-900:hover {
    --bg-opacity: 1 !important;
    background-color: #7b341e !important;
    background-color: rgba(123, 52, 30, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-yellow-100:hover {
    --bg-opacity: 1 !important;
    background-color: #fffff0 !important;
    background-color: rgba(255, 255, 240, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-yellow-200:hover {
    --bg-opacity: 1 !important;
    background-color: #fefcbf !important;
    background-color: rgba(254, 252, 191, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-yellow-300:hover {
    --bg-opacity: 1 !important;
    background-color: #faf089 !important;
    background-color: rgba(250, 240, 137, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-yellow-400:hover {
    --bg-opacity: 1 !important;
    background-color: #f6e05e !important;
    background-color: rgba(246, 224, 94, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-yellow-500:hover {
    --bg-opacity: 1 !important;
    background-color: #ecc94b !important;
    background-color: rgba(236, 201, 75, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-yellow-600:hover {
    --bg-opacity: 1 !important;
    background-color: #d69e2e !important;
    background-color: rgba(214, 158, 46, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-yellow-700:hover {
    --bg-opacity: 1 !important;
    background-color: #b7791f !important;
    background-color: rgba(183, 121, 31, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-yellow-800:hover {
    --bg-opacity: 1 !important;
    background-color: #975a16 !important;
    background-color: rgba(151, 90, 22, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-yellow-900:hover {
    --bg-opacity: 1 !important;
    background-color: #744210 !important;
    background-color: rgba(116, 66, 16, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-green-100:hover {
    --bg-opacity: 1 !important;
    background-color: #f0fff4 !important;
    background-color: rgba(240, 255, 244, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-green-200:hover {
    --bg-opacity: 1 !important;
    background-color: #c6f6d5 !important;
    background-color: rgba(198, 246, 213, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-green-300:hover {
    --bg-opacity: 1 !important;
    background-color: #9ae6b4 !important;
    background-color: rgba(154, 230, 180, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-green-400:hover {
    --bg-opacity: 1 !important;
    background-color: #68d391 !important;
    background-color: rgba(104, 211, 145, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-green-500:hover {
    --bg-opacity: 1 !important;
    background-color: #48bb78 !important;
    background-color: rgba(72, 187, 120, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-green-600:hover {
    --bg-opacity: 1 !important;
    background-color: #38a169 !important;
    background-color: rgba(56, 161, 105, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-green-700:hover {
    --bg-opacity: 1 !important;
    background-color: #2f855a !important;
    background-color: rgba(47, 133, 90, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-green-800:hover {
    --bg-opacity: 1 !important;
    background-color: #276749 !important;
    background-color: rgba(39, 103, 73, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-green-900:hover {
    --bg-opacity: 1 !important;
    background-color: #22543d !important;
    background-color: rgba(34, 84, 61, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-teal-100:hover {
    --bg-opacity: 1 !important;
    background-color: #e6fffa !important;
    background-color: rgba(230, 255, 250, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-teal-200:hover {
    --bg-opacity: 1 !important;
    background-color: #b2f5ea !important;
    background-color: rgba(178, 245, 234, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-teal-300:hover {
    --bg-opacity: 1 !important;
    background-color: #81e6d9 !important;
    background-color: rgba(129, 230, 217, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-teal-400:hover {
    --bg-opacity: 1 !important;
    background-color: #4fd1c5 !important;
    background-color: rgba(79, 209, 197, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-teal-500:hover {
    --bg-opacity: 1 !important;
    background-color: #38b2ac !important;
    background-color: rgba(56, 178, 172, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-teal-600:hover {
    --bg-opacity: 1 !important;
    background-color: #319795 !important;
    background-color: rgba(49, 151, 149, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-teal-700:hover {
    --bg-opacity: 1 !important;
    background-color: #2c7a7b !important;
    background-color: rgba(44, 122, 123, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-teal-800:hover {
    --bg-opacity: 1 !important;
    background-color: #285e61 !important;
    background-color: rgba(40, 94, 97, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-teal-900:hover {
    --bg-opacity: 1 !important;
    background-color: #234e52 !important;
    background-color: rgba(35, 78, 82, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-blue-100:hover {
    --bg-opacity: 1 !important;
    background-color: #ebf8ff !important;
    background-color: rgba(235, 248, 255, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-blue-200:hover {
    --bg-opacity: 1 !important;
    background-color: #bee3f8 !important;
    background-color: rgba(190, 227, 248, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-blue-300:hover {
    --bg-opacity: 1 !important;
    background-color: #90cdf4 !important;
    background-color: rgba(144, 205, 244, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-blue-400:hover {
    --bg-opacity: 1 !important;
    background-color: #63b3ed !important;
    background-color: rgba(99, 179, 237, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-blue-500:hover {
    --bg-opacity: 1 !important;
    background-color: #4299e1 !important;
    background-color: rgba(66, 153, 225, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-blue-600:hover {
    --bg-opacity: 1 !important;
    background-color: #3182ce !important;
    background-color: rgba(49, 130, 206, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-blue-700:hover {
    --bg-opacity: 1 !important;
    background-color: #2b6cb0 !important;
    background-color: rgba(43, 108, 176, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-blue-800:hover {
    --bg-opacity: 1 !important;
    background-color: #2c5282 !important;
    background-color: rgba(44, 82, 130, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-blue-900:hover {
    --bg-opacity: 1 !important;
    background-color: #2a4365 !important;
    background-color: rgba(42, 67, 101, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-indigo-100:hover {
    --bg-opacity: 1 !important;
    background-color: #ebf4ff !important;
    background-color: rgba(235, 244, 255, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-indigo-200:hover {
    --bg-opacity: 1 !important;
    background-color: #c3dafe !important;
    background-color: rgba(195, 218, 254, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-indigo-300:hover {
    --bg-opacity: 1 !important;
    background-color: #a3bffa !important;
    background-color: rgba(163, 191, 250, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-indigo-400:hover {
    --bg-opacity: 1 !important;
    background-color: #7f9cf5 !important;
    background-color: rgba(127, 156, 245, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-indigo-500:hover {
    --bg-opacity: 1 !important;
    background-color: #667eea !important;
    background-color: rgba(102, 126, 234, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-indigo-600:hover {
    --bg-opacity: 1 !important;
    background-color: #5a67d8 !important;
    background-color: rgba(90, 103, 216, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-indigo-700:hover {
    --bg-opacity: 1 !important;
    background-color: #4c51bf !important;
    background-color: rgba(76, 81, 191, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-indigo-800:hover {
    --bg-opacity: 1 !important;
    background-color: #434190 !important;
    background-color: rgba(67, 65, 144, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-indigo-900:hover {
    --bg-opacity: 1 !important;
    background-color: #3c366b !important;
    background-color: rgba(60, 54, 107, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-purple-100:hover {
    --bg-opacity: 1 !important;
    background-color: #faf5ff !important;
    background-color: rgba(250, 245, 255, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-purple-200:hover {
    --bg-opacity: 1 !important;
    background-color: #e9d8fd !important;
    background-color: rgba(233, 216, 253, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-purple-300:hover {
    --bg-opacity: 1 !important;
    background-color: #d6bcfa !important;
    background-color: rgba(214, 188, 250, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-purple-400:hover {
    --bg-opacity: 1 !important;
    background-color: #b794f4 !important;
    background-color: rgba(183, 148, 244, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-purple-500:hover {
    --bg-opacity: 1 !important;
    background-color: #9f7aea !important;
    background-color: rgba(159, 122, 234, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-purple-600:hover {
    --bg-opacity: 1 !important;
    background-color: #805ad5 !important;
    background-color: rgba(128, 90, 213, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-purple-700:hover {
    --bg-opacity: 1 !important;
    background-color: #6b46c1 !important;
    background-color: rgba(107, 70, 193, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-purple-800:hover {
    --bg-opacity: 1 !important;
    background-color: #553c9a !important;
    background-color: rgba(85, 60, 154, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-purple-900:hover {
    --bg-opacity: 1 !important;
    background-color: #44337a !important;
    background-color: rgba(68, 51, 122, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-pink-100:hover {
    --bg-opacity: 1 !important;
    background-color: #fff5f7 !important;
    background-color: rgba(255, 245, 247, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-pink-200:hover {
    --bg-opacity: 1 !important;
    background-color: #fed7e2 !important;
    background-color: rgba(254, 215, 226, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-pink-300:hover {
    --bg-opacity: 1 !important;
    background-color: #fbb6ce !important;
    background-color: rgba(251, 182, 206, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-pink-400:hover {
    --bg-opacity: 1 !important;
    background-color: #f687b3 !important;
    background-color: rgba(246, 135, 179, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-pink-500:hover {
    --bg-opacity: 1 !important;
    background-color: #ed64a6 !important;
    background-color: rgba(237, 100, 166, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-pink-600:hover {
    --bg-opacity: 1 !important;
    background-color: #d53f8c !important;
    background-color: rgba(213, 63, 140, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-pink-700:hover {
    --bg-opacity: 1 !important;
    background-color: #b83280 !important;
    background-color: rgba(184, 50, 128, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-pink-800:hover {
    --bg-opacity: 1 !important;
    background-color: #97266d !important;
    background-color: rgba(151, 38, 109, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-pink-900:hover {
    --bg-opacity: 1 !important;
    background-color: #702459 !important;
    background-color: rgba(112, 36, 89, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-ui-gray-100:hover {
    --bg-opacity: 1 !important;
    background-color: #f1f1f1 !important;
    background-color: rgba(241, 241, 241, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-ui-brown-100:hover {
    --bg-opacity: 1 !important;
    background-color: #f3ecdc !important;
    background-color: rgba(243, 236, 220, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-ui-brown-200:hover {
    --bg-opacity: 1 !important;
    background-color: #e8e0c9 !important;
    background-color: rgba(232, 224, 201, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-ui-brown-300:hover {
    --bg-opacity: 1 !important;
    background-color: #d0c095 !important;
    background-color: rgba(208, 192, 149, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-ui-brown-700:hover {
    --bg-opacity: 1 !important;
    background-color: #bd6005 !important;
    background-color: rgba(189, 96, 5, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-ui-green-300:hover {
    --bg-opacity: 1 !important;
    background-color: #aac74c !important;
    background-color: rgba(170, 199, 76, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-ui-green-400:hover {
    --bg-opacity: 1 !important;
    background-color: #71893e !important;
    background-color: rgba(113, 137, 62, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-ui-orange-500:hover {
    --bg-opacity: 1 !important;
    background-color: #e27212 !important;
    background-color: rgba(226, 114, 18, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-facebook:hover {
    --bg-opacity: 1 !important;
    background-color: #3b5998 !important;
    background-color: rgba(59, 89, 152, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-twitter:hover {
    --bg-opacity: 1 !important;
    background-color: #00acee !important;
    background-color: rgba(0, 172, 238, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-twitch:hover {
    --bg-opacity: 1 !important;
    background-color: #6441a5 !important;
    background-color: rgba(100, 65, 165, var(--bg-opacity)) !important;
  }

  .sm\:hover\:cl-bg-youtube:hover {
    --bg-opacity: 1 !important;
    background-color: #FF0000 !important;
    background-color: rgba(255, 0, 0, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-transparent:focus {
    background-color: transparent !important;
  }

  .sm\:focus\:cl-bg-current:focus {
    background-color: currentColor !important;
  }

  .sm\:focus\:cl-bg-black:focus {
    --bg-opacity: 1 !important;
    background-color: #000 !important;
    background-color: rgba(0, 0, 0, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-white:focus {
    --bg-opacity: 1 !important;
    background-color: #fff !important;
    background-color: rgba(255, 255, 255, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-gray-100:focus {
    --bg-opacity: 1 !important;
    background-color: #f7fafc !important;
    background-color: rgba(247, 250, 252, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-gray-200:focus {
    --bg-opacity: 1 !important;
    background-color: #edf2f7 !important;
    background-color: rgba(237, 242, 247, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-gray-300:focus {
    --bg-opacity: 1 !important;
    background-color: #e2e8f0 !important;
    background-color: rgba(226, 232, 240, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-gray-400:focus {
    --bg-opacity: 1 !important;
    background-color: #cbd5e0 !important;
    background-color: rgba(203, 213, 224, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-gray-500:focus {
    --bg-opacity: 1 !important;
    background-color: #a0aec0 !important;
    background-color: rgba(160, 174, 192, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-gray-600:focus {
    --bg-opacity: 1 !important;
    background-color: #718096 !important;
    background-color: rgba(113, 128, 150, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-gray-700:focus {
    --bg-opacity: 1 !important;
    background-color: #4a5568 !important;
    background-color: rgba(74, 85, 104, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-gray-800:focus {
    --bg-opacity: 1 !important;
    background-color: #2d3748 !important;
    background-color: rgba(45, 55, 72, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-gray-900:focus {
    --bg-opacity: 1 !important;
    background-color: #1a202c !important;
    background-color: rgba(26, 32, 44, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-red-100:focus {
    --bg-opacity: 1 !important;
    background-color: #fff5f5 !important;
    background-color: rgba(255, 245, 245, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-red-200:focus {
    --bg-opacity: 1 !important;
    background-color: #fed7d7 !important;
    background-color: rgba(254, 215, 215, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-red-300:focus {
    --bg-opacity: 1 !important;
    background-color: #feb2b2 !important;
    background-color: rgba(254, 178, 178, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-red-400:focus {
    --bg-opacity: 1 !important;
    background-color: #fc8181 !important;
    background-color: rgba(252, 129, 129, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-red-500:focus {
    --bg-opacity: 1 !important;
    background-color: #f56565 !important;
    background-color: rgba(245, 101, 101, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-red-600:focus {
    --bg-opacity: 1 !important;
    background-color: #e53e3e !important;
    background-color: rgba(229, 62, 62, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-red-700:focus {
    --bg-opacity: 1 !important;
    background-color: #c53030 !important;
    background-color: rgba(197, 48, 48, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-red-800:focus {
    --bg-opacity: 1 !important;
    background-color: #9b2c2c !important;
    background-color: rgba(155, 44, 44, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-red-900:focus {
    --bg-opacity: 1 !important;
    background-color: #742a2a !important;
    background-color: rgba(116, 42, 42, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-orange-100:focus {
    --bg-opacity: 1 !important;
    background-color: #fffaf0 !important;
    background-color: rgba(255, 250, 240, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-orange-200:focus {
    --bg-opacity: 1 !important;
    background-color: #feebc8 !important;
    background-color: rgba(254, 235, 200, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-orange-300:focus {
    --bg-opacity: 1 !important;
    background-color: #fbd38d !important;
    background-color: rgba(251, 211, 141, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-orange-400:focus {
    --bg-opacity: 1 !important;
    background-color: #f6ad55 !important;
    background-color: rgba(246, 173, 85, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-orange-500:focus {
    --bg-opacity: 1 !important;
    background-color: #ed8936 !important;
    background-color: rgba(237, 137, 54, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-orange-600:focus {
    --bg-opacity: 1 !important;
    background-color: #dd6b20 !important;
    background-color: rgba(221, 107, 32, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-orange-700:focus {
    --bg-opacity: 1 !important;
    background-color: #c05621 !important;
    background-color: rgba(192, 86, 33, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-orange-800:focus {
    --bg-opacity: 1 !important;
    background-color: #9c4221 !important;
    background-color: rgba(156, 66, 33, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-orange-900:focus {
    --bg-opacity: 1 !important;
    background-color: #7b341e !important;
    background-color: rgba(123, 52, 30, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-yellow-100:focus {
    --bg-opacity: 1 !important;
    background-color: #fffff0 !important;
    background-color: rgba(255, 255, 240, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-yellow-200:focus {
    --bg-opacity: 1 !important;
    background-color: #fefcbf !important;
    background-color: rgba(254, 252, 191, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-yellow-300:focus {
    --bg-opacity: 1 !important;
    background-color: #faf089 !important;
    background-color: rgba(250, 240, 137, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-yellow-400:focus {
    --bg-opacity: 1 !important;
    background-color: #f6e05e !important;
    background-color: rgba(246, 224, 94, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-yellow-500:focus {
    --bg-opacity: 1 !important;
    background-color: #ecc94b !important;
    background-color: rgba(236, 201, 75, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-yellow-600:focus {
    --bg-opacity: 1 !important;
    background-color: #d69e2e !important;
    background-color: rgba(214, 158, 46, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-yellow-700:focus {
    --bg-opacity: 1 !important;
    background-color: #b7791f !important;
    background-color: rgba(183, 121, 31, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-yellow-800:focus {
    --bg-opacity: 1 !important;
    background-color: #975a16 !important;
    background-color: rgba(151, 90, 22, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-yellow-900:focus {
    --bg-opacity: 1 !important;
    background-color: #744210 !important;
    background-color: rgba(116, 66, 16, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-green-100:focus {
    --bg-opacity: 1 !important;
    background-color: #f0fff4 !important;
    background-color: rgba(240, 255, 244, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-green-200:focus {
    --bg-opacity: 1 !important;
    background-color: #c6f6d5 !important;
    background-color: rgba(198, 246, 213, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-green-300:focus {
    --bg-opacity: 1 !important;
    background-color: #9ae6b4 !important;
    background-color: rgba(154, 230, 180, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-green-400:focus {
    --bg-opacity: 1 !important;
    background-color: #68d391 !important;
    background-color: rgba(104, 211, 145, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-green-500:focus {
    --bg-opacity: 1 !important;
    background-color: #48bb78 !important;
    background-color: rgba(72, 187, 120, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-green-600:focus {
    --bg-opacity: 1 !important;
    background-color: #38a169 !important;
    background-color: rgba(56, 161, 105, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-green-700:focus {
    --bg-opacity: 1 !important;
    background-color: #2f855a !important;
    background-color: rgba(47, 133, 90, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-green-800:focus {
    --bg-opacity: 1 !important;
    background-color: #276749 !important;
    background-color: rgba(39, 103, 73, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-green-900:focus {
    --bg-opacity: 1 !important;
    background-color: #22543d !important;
    background-color: rgba(34, 84, 61, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-teal-100:focus {
    --bg-opacity: 1 !important;
    background-color: #e6fffa !important;
    background-color: rgba(230, 255, 250, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-teal-200:focus {
    --bg-opacity: 1 !important;
    background-color: #b2f5ea !important;
    background-color: rgba(178, 245, 234, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-teal-300:focus {
    --bg-opacity: 1 !important;
    background-color: #81e6d9 !important;
    background-color: rgba(129, 230, 217, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-teal-400:focus {
    --bg-opacity: 1 !important;
    background-color: #4fd1c5 !important;
    background-color: rgba(79, 209, 197, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-teal-500:focus {
    --bg-opacity: 1 !important;
    background-color: #38b2ac !important;
    background-color: rgba(56, 178, 172, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-teal-600:focus {
    --bg-opacity: 1 !important;
    background-color: #319795 !important;
    background-color: rgba(49, 151, 149, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-teal-700:focus {
    --bg-opacity: 1 !important;
    background-color: #2c7a7b !important;
    background-color: rgba(44, 122, 123, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-teal-800:focus {
    --bg-opacity: 1 !important;
    background-color: #285e61 !important;
    background-color: rgba(40, 94, 97, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-teal-900:focus {
    --bg-opacity: 1 !important;
    background-color: #234e52 !important;
    background-color: rgba(35, 78, 82, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-blue-100:focus {
    --bg-opacity: 1 !important;
    background-color: #ebf8ff !important;
    background-color: rgba(235, 248, 255, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-blue-200:focus {
    --bg-opacity: 1 !important;
    background-color: #bee3f8 !important;
    background-color: rgba(190, 227, 248, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-blue-300:focus {
    --bg-opacity: 1 !important;
    background-color: #90cdf4 !important;
    background-color: rgba(144, 205, 244, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-blue-400:focus {
    --bg-opacity: 1 !important;
    background-color: #63b3ed !important;
    background-color: rgba(99, 179, 237, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-blue-500:focus {
    --bg-opacity: 1 !important;
    background-color: #4299e1 !important;
    background-color: rgba(66, 153, 225, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-blue-600:focus {
    --bg-opacity: 1 !important;
    background-color: #3182ce !important;
    background-color: rgba(49, 130, 206, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-blue-700:focus {
    --bg-opacity: 1 !important;
    background-color: #2b6cb0 !important;
    background-color: rgba(43, 108, 176, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-blue-800:focus {
    --bg-opacity: 1 !important;
    background-color: #2c5282 !important;
    background-color: rgba(44, 82, 130, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-blue-900:focus {
    --bg-opacity: 1 !important;
    background-color: #2a4365 !important;
    background-color: rgba(42, 67, 101, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-indigo-100:focus {
    --bg-opacity: 1 !important;
    background-color: #ebf4ff !important;
    background-color: rgba(235, 244, 255, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-indigo-200:focus {
    --bg-opacity: 1 !important;
    background-color: #c3dafe !important;
    background-color: rgba(195, 218, 254, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-indigo-300:focus {
    --bg-opacity: 1 !important;
    background-color: #a3bffa !important;
    background-color: rgba(163, 191, 250, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-indigo-400:focus {
    --bg-opacity: 1 !important;
    background-color: #7f9cf5 !important;
    background-color: rgba(127, 156, 245, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-indigo-500:focus {
    --bg-opacity: 1 !important;
    background-color: #667eea !important;
    background-color: rgba(102, 126, 234, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-indigo-600:focus {
    --bg-opacity: 1 !important;
    background-color: #5a67d8 !important;
    background-color: rgba(90, 103, 216, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-indigo-700:focus {
    --bg-opacity: 1 !important;
    background-color: #4c51bf !important;
    background-color: rgba(76, 81, 191, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-indigo-800:focus {
    --bg-opacity: 1 !important;
    background-color: #434190 !important;
    background-color: rgba(67, 65, 144, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-indigo-900:focus {
    --bg-opacity: 1 !important;
    background-color: #3c366b !important;
    background-color: rgba(60, 54, 107, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-purple-100:focus {
    --bg-opacity: 1 !important;
    background-color: #faf5ff !important;
    background-color: rgba(250, 245, 255, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-purple-200:focus {
    --bg-opacity: 1 !important;
    background-color: #e9d8fd !important;
    background-color: rgba(233, 216, 253, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-purple-300:focus {
    --bg-opacity: 1 !important;
    background-color: #d6bcfa !important;
    background-color: rgba(214, 188, 250, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-purple-400:focus {
    --bg-opacity: 1 !important;
    background-color: #b794f4 !important;
    background-color: rgba(183, 148, 244, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-purple-500:focus {
    --bg-opacity: 1 !important;
    background-color: #9f7aea !important;
    background-color: rgba(159, 122, 234, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-purple-600:focus {
    --bg-opacity: 1 !important;
    background-color: #805ad5 !important;
    background-color: rgba(128, 90, 213, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-purple-700:focus {
    --bg-opacity: 1 !important;
    background-color: #6b46c1 !important;
    background-color: rgba(107, 70, 193, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-purple-800:focus {
    --bg-opacity: 1 !important;
    background-color: #553c9a !important;
    background-color: rgba(85, 60, 154, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-purple-900:focus {
    --bg-opacity: 1 !important;
    background-color: #44337a !important;
    background-color: rgba(68, 51, 122, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-pink-100:focus {
    --bg-opacity: 1 !important;
    background-color: #fff5f7 !important;
    background-color: rgba(255, 245, 247, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-pink-200:focus {
    --bg-opacity: 1 !important;
    background-color: #fed7e2 !important;
    background-color: rgba(254, 215, 226, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-pink-300:focus {
    --bg-opacity: 1 !important;
    background-color: #fbb6ce !important;
    background-color: rgba(251, 182, 206, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-pink-400:focus {
    --bg-opacity: 1 !important;
    background-color: #f687b3 !important;
    background-color: rgba(246, 135, 179, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-pink-500:focus {
    --bg-opacity: 1 !important;
    background-color: #ed64a6 !important;
    background-color: rgba(237, 100, 166, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-pink-600:focus {
    --bg-opacity: 1 !important;
    background-color: #d53f8c !important;
    background-color: rgba(213, 63, 140, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-pink-700:focus {
    --bg-opacity: 1 !important;
    background-color: #b83280 !important;
    background-color: rgba(184, 50, 128, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-pink-800:focus {
    --bg-opacity: 1 !important;
    background-color: #97266d !important;
    background-color: rgba(151, 38, 109, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-pink-900:focus {
    --bg-opacity: 1 !important;
    background-color: #702459 !important;
    background-color: rgba(112, 36, 89, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-ui-gray-100:focus {
    --bg-opacity: 1 !important;
    background-color: #f1f1f1 !important;
    background-color: rgba(241, 241, 241, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-ui-brown-100:focus {
    --bg-opacity: 1 !important;
    background-color: #f3ecdc !important;
    background-color: rgba(243, 236, 220, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-ui-brown-200:focus {
    --bg-opacity: 1 !important;
    background-color: #e8e0c9 !important;
    background-color: rgba(232, 224, 201, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-ui-brown-300:focus {
    --bg-opacity: 1 !important;
    background-color: #d0c095 !important;
    background-color: rgba(208, 192, 149, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-ui-brown-700:focus {
    --bg-opacity: 1 !important;
    background-color: #bd6005 !important;
    background-color: rgba(189, 96, 5, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-ui-green-300:focus {
    --bg-opacity: 1 !important;
    background-color: #aac74c !important;
    background-color: rgba(170, 199, 76, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-ui-green-400:focus {
    --bg-opacity: 1 !important;
    background-color: #71893e !important;
    background-color: rgba(113, 137, 62, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-ui-orange-500:focus {
    --bg-opacity: 1 !important;
    background-color: #e27212 !important;
    background-color: rgba(226, 114, 18, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-facebook:focus {
    --bg-opacity: 1 !important;
    background-color: #3b5998 !important;
    background-color: rgba(59, 89, 152, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-twitter:focus {
    --bg-opacity: 1 !important;
    background-color: #00acee !important;
    background-color: rgba(0, 172, 238, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-twitch:focus {
    --bg-opacity: 1 !important;
    background-color: #6441a5 !important;
    background-color: rgba(100, 65, 165, var(--bg-opacity)) !important;
  }

  .sm\:focus\:cl-bg-youtube:focus {
    --bg-opacity: 1 !important;
    background-color: #FF0000 !important;
    background-color: rgba(255, 0, 0, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-transparent {
    background-color: transparent !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-current {
    background-color: currentColor !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-black {
    --bg-opacity: 1 !important;
    background-color: #000 !important;
    background-color: rgba(0, 0, 0, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-white {
    --bg-opacity: 1 !important;
    background-color: #fff !important;
    background-color: rgba(255, 255, 255, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-gray-100 {
    --bg-opacity: 1 !important;
    background-color: #f7fafc !important;
    background-color: rgba(247, 250, 252, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-gray-200 {
    --bg-opacity: 1 !important;
    background-color: #edf2f7 !important;
    background-color: rgba(237, 242, 247, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-gray-300 {
    --bg-opacity: 1 !important;
    background-color: #e2e8f0 !important;
    background-color: rgba(226, 232, 240, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-gray-400 {
    --bg-opacity: 1 !important;
    background-color: #cbd5e0 !important;
    background-color: rgba(203, 213, 224, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-gray-500 {
    --bg-opacity: 1 !important;
    background-color: #a0aec0 !important;
    background-color: rgba(160, 174, 192, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-gray-600 {
    --bg-opacity: 1 !important;
    background-color: #718096 !important;
    background-color: rgba(113, 128, 150, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-gray-700 {
    --bg-opacity: 1 !important;
    background-color: #4a5568 !important;
    background-color: rgba(74, 85, 104, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-gray-800 {
    --bg-opacity: 1 !important;
    background-color: #2d3748 !important;
    background-color: rgba(45, 55, 72, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-gray-900 {
    --bg-opacity: 1 !important;
    background-color: #1a202c !important;
    background-color: rgba(26, 32, 44, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-red-100 {
    --bg-opacity: 1 !important;
    background-color: #fff5f5 !important;
    background-color: rgba(255, 245, 245, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-red-200 {
    --bg-opacity: 1 !important;
    background-color: #fed7d7 !important;
    background-color: rgba(254, 215, 215, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-red-300 {
    --bg-opacity: 1 !important;
    background-color: #feb2b2 !important;
    background-color: rgba(254, 178, 178, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-red-400 {
    --bg-opacity: 1 !important;
    background-color: #fc8181 !important;
    background-color: rgba(252, 129, 129, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-red-500 {
    --bg-opacity: 1 !important;
    background-color: #f56565 !important;
    background-color: rgba(245, 101, 101, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-red-600 {
    --bg-opacity: 1 !important;
    background-color: #e53e3e !important;
    background-color: rgba(229, 62, 62, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-red-700 {
    --bg-opacity: 1 !important;
    background-color: #c53030 !important;
    background-color: rgba(197, 48, 48, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-red-800 {
    --bg-opacity: 1 !important;
    background-color: #9b2c2c !important;
    background-color: rgba(155, 44, 44, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-red-900 {
    --bg-opacity: 1 !important;
    background-color: #742a2a !important;
    background-color: rgba(116, 42, 42, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-orange-100 {
    --bg-opacity: 1 !important;
    background-color: #fffaf0 !important;
    background-color: rgba(255, 250, 240, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-orange-200 {
    --bg-opacity: 1 !important;
    background-color: #feebc8 !important;
    background-color: rgba(254, 235, 200, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-orange-300 {
    --bg-opacity: 1 !important;
    background-color: #fbd38d !important;
    background-color: rgba(251, 211, 141, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-orange-400 {
    --bg-opacity: 1 !important;
    background-color: #f6ad55 !important;
    background-color: rgba(246, 173, 85, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-orange-500 {
    --bg-opacity: 1 !important;
    background-color: #ed8936 !important;
    background-color: rgba(237, 137, 54, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-orange-600 {
    --bg-opacity: 1 !important;
    background-color: #dd6b20 !important;
    background-color: rgba(221, 107, 32, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-orange-700 {
    --bg-opacity: 1 !important;
    background-color: #c05621 !important;
    background-color: rgba(192, 86, 33, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-orange-800 {
    --bg-opacity: 1 !important;
    background-color: #9c4221 !important;
    background-color: rgba(156, 66, 33, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-orange-900 {
    --bg-opacity: 1 !important;
    background-color: #7b341e !important;
    background-color: rgba(123, 52, 30, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-yellow-100 {
    --bg-opacity: 1 !important;
    background-color: #fffff0 !important;
    background-color: rgba(255, 255, 240, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-yellow-200 {
    --bg-opacity: 1 !important;
    background-color: #fefcbf !important;
    background-color: rgba(254, 252, 191, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-yellow-300 {
    --bg-opacity: 1 !important;
    background-color: #faf089 !important;
    background-color: rgba(250, 240, 137, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-yellow-400 {
    --bg-opacity: 1 !important;
    background-color: #f6e05e !important;
    background-color: rgba(246, 224, 94, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-yellow-500 {
    --bg-opacity: 1 !important;
    background-color: #ecc94b !important;
    background-color: rgba(236, 201, 75, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-yellow-600 {
    --bg-opacity: 1 !important;
    background-color: #d69e2e !important;
    background-color: rgba(214, 158, 46, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-yellow-700 {
    --bg-opacity: 1 !important;
    background-color: #b7791f !important;
    background-color: rgba(183, 121, 31, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-yellow-800 {
    --bg-opacity: 1 !important;
    background-color: #975a16 !important;
    background-color: rgba(151, 90, 22, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-yellow-900 {
    --bg-opacity: 1 !important;
    background-color: #744210 !important;
    background-color: rgba(116, 66, 16, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-green-100 {
    --bg-opacity: 1 !important;
    background-color: #f0fff4 !important;
    background-color: rgba(240, 255, 244, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-green-200 {
    --bg-opacity: 1 !important;
    background-color: #c6f6d5 !important;
    background-color: rgba(198, 246, 213, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-green-300 {
    --bg-opacity: 1 !important;
    background-color: #9ae6b4 !important;
    background-color: rgba(154, 230, 180, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-green-400 {
    --bg-opacity: 1 !important;
    background-color: #68d391 !important;
    background-color: rgba(104, 211, 145, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-green-500 {
    --bg-opacity: 1 !important;
    background-color: #48bb78 !important;
    background-color: rgba(72, 187, 120, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-green-600 {
    --bg-opacity: 1 !important;
    background-color: #38a169 !important;
    background-color: rgba(56, 161, 105, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-green-700 {
    --bg-opacity: 1 !important;
    background-color: #2f855a !important;
    background-color: rgba(47, 133, 90, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-green-800 {
    --bg-opacity: 1 !important;
    background-color: #276749 !important;
    background-color: rgba(39, 103, 73, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-green-900 {
    --bg-opacity: 1 !important;
    background-color: #22543d !important;
    background-color: rgba(34, 84, 61, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-teal-100 {
    --bg-opacity: 1 !important;
    background-color: #e6fffa !important;
    background-color: rgba(230, 255, 250, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-teal-200 {
    --bg-opacity: 1 !important;
    background-color: #b2f5ea !important;
    background-color: rgba(178, 245, 234, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-teal-300 {
    --bg-opacity: 1 !important;
    background-color: #81e6d9 !important;
    background-color: rgba(129, 230, 217, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-teal-400 {
    --bg-opacity: 1 !important;
    background-color: #4fd1c5 !important;
    background-color: rgba(79, 209, 197, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-teal-500 {
    --bg-opacity: 1 !important;
    background-color: #38b2ac !important;
    background-color: rgba(56, 178, 172, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-teal-600 {
    --bg-opacity: 1 !important;
    background-color: #319795 !important;
    background-color: rgba(49, 151, 149, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-teal-700 {
    --bg-opacity: 1 !important;
    background-color: #2c7a7b !important;
    background-color: rgba(44, 122, 123, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-teal-800 {
    --bg-opacity: 1 !important;
    background-color: #285e61 !important;
    background-color: rgba(40, 94, 97, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-teal-900 {
    --bg-opacity: 1 !important;
    background-color: #234e52 !important;
    background-color: rgba(35, 78, 82, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-blue-100 {
    --bg-opacity: 1 !important;
    background-color: #ebf8ff !important;
    background-color: rgba(235, 248, 255, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-blue-200 {
    --bg-opacity: 1 !important;
    background-color: #bee3f8 !important;
    background-color: rgba(190, 227, 248, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-blue-300 {
    --bg-opacity: 1 !important;
    background-color: #90cdf4 !important;
    background-color: rgba(144, 205, 244, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-blue-400 {
    --bg-opacity: 1 !important;
    background-color: #63b3ed !important;
    background-color: rgba(99, 179, 237, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-blue-500 {
    --bg-opacity: 1 !important;
    background-color: #4299e1 !important;
    background-color: rgba(66, 153, 225, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-blue-600 {
    --bg-opacity: 1 !important;
    background-color: #3182ce !important;
    background-color: rgba(49, 130, 206, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-blue-700 {
    --bg-opacity: 1 !important;
    background-color: #2b6cb0 !important;
    background-color: rgba(43, 108, 176, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-blue-800 {
    --bg-opacity: 1 !important;
    background-color: #2c5282 !important;
    background-color: rgba(44, 82, 130, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-blue-900 {
    --bg-opacity: 1 !important;
    background-color: #2a4365 !important;
    background-color: rgba(42, 67, 101, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-indigo-100 {
    --bg-opacity: 1 !important;
    background-color: #ebf4ff !important;
    background-color: rgba(235, 244, 255, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-indigo-200 {
    --bg-opacity: 1 !important;
    background-color: #c3dafe !important;
    background-color: rgba(195, 218, 254, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-indigo-300 {
    --bg-opacity: 1 !important;
    background-color: #a3bffa !important;
    background-color: rgba(163, 191, 250, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-indigo-400 {
    --bg-opacity: 1 !important;
    background-color: #7f9cf5 !important;
    background-color: rgba(127, 156, 245, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-indigo-500 {
    --bg-opacity: 1 !important;
    background-color: #667eea !important;
    background-color: rgba(102, 126, 234, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-indigo-600 {
    --bg-opacity: 1 !important;
    background-color: #5a67d8 !important;
    background-color: rgba(90, 103, 216, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-indigo-700 {
    --bg-opacity: 1 !important;
    background-color: #4c51bf !important;
    background-color: rgba(76, 81, 191, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-indigo-800 {
    --bg-opacity: 1 !important;
    background-color: #434190 !important;
    background-color: rgba(67, 65, 144, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-indigo-900 {
    --bg-opacity: 1 !important;
    background-color: #3c366b !important;
    background-color: rgba(60, 54, 107, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-purple-100 {
    --bg-opacity: 1 !important;
    background-color: #faf5ff !important;
    background-color: rgba(250, 245, 255, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-purple-200 {
    --bg-opacity: 1 !important;
    background-color: #e9d8fd !important;
    background-color: rgba(233, 216, 253, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-purple-300 {
    --bg-opacity: 1 !important;
    background-color: #d6bcfa !important;
    background-color: rgba(214, 188, 250, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-purple-400 {
    --bg-opacity: 1 !important;
    background-color: #b794f4 !important;
    background-color: rgba(183, 148, 244, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-purple-500 {
    --bg-opacity: 1 !important;
    background-color: #9f7aea !important;
    background-color: rgba(159, 122, 234, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-purple-600 {
    --bg-opacity: 1 !important;
    background-color: #805ad5 !important;
    background-color: rgba(128, 90, 213, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-purple-700 {
    --bg-opacity: 1 !important;
    background-color: #6b46c1 !important;
    background-color: rgba(107, 70, 193, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-purple-800 {
    --bg-opacity: 1 !important;
    background-color: #553c9a !important;
    background-color: rgba(85, 60, 154, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-purple-900 {
    --bg-opacity: 1 !important;
    background-color: #44337a !important;
    background-color: rgba(68, 51, 122, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-pink-100 {
    --bg-opacity: 1 !important;
    background-color: #fff5f7 !important;
    background-color: rgba(255, 245, 247, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-pink-200 {
    --bg-opacity: 1 !important;
    background-color: #fed7e2 !important;
    background-color: rgba(254, 215, 226, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-pink-300 {
    --bg-opacity: 1 !important;
    background-color: #fbb6ce !important;
    background-color: rgba(251, 182, 206, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-pink-400 {
    --bg-opacity: 1 !important;
    background-color: #f687b3 !important;
    background-color: rgba(246, 135, 179, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-pink-500 {
    --bg-opacity: 1 !important;
    background-color: #ed64a6 !important;
    background-color: rgba(237, 100, 166, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-pink-600 {
    --bg-opacity: 1 !important;
    background-color: #d53f8c !important;
    background-color: rgba(213, 63, 140, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-pink-700 {
    --bg-opacity: 1 !important;
    background-color: #b83280 !important;
    background-color: rgba(184, 50, 128, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-pink-800 {
    --bg-opacity: 1 !important;
    background-color: #97266d !important;
    background-color: rgba(151, 38, 109, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-pink-900 {
    --bg-opacity: 1 !important;
    background-color: #702459 !important;
    background-color: rgba(112, 36, 89, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-ui-gray-100 {
    --bg-opacity: 1 !important;
    background-color: #f1f1f1 !important;
    background-color: rgba(241, 241, 241, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-ui-brown-100 {
    --bg-opacity: 1 !important;
    background-color: #f3ecdc !important;
    background-color: rgba(243, 236, 220, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-ui-brown-200 {
    --bg-opacity: 1 !important;
    background-color: #e8e0c9 !important;
    background-color: rgba(232, 224, 201, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-ui-brown-300 {
    --bg-opacity: 1 !important;
    background-color: #d0c095 !important;
    background-color: rgba(208, 192, 149, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-ui-brown-700 {
    --bg-opacity: 1 !important;
    background-color: #bd6005 !important;
    background-color: rgba(189, 96, 5, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-ui-green-300 {
    --bg-opacity: 1 !important;
    background-color: #aac74c !important;
    background-color: rgba(170, 199, 76, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-ui-green-400 {
    --bg-opacity: 1 !important;
    background-color: #71893e !important;
    background-color: rgba(113, 137, 62, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-ui-orange-500 {
    --bg-opacity: 1 !important;
    background-color: #e27212 !important;
    background-color: rgba(226, 114, 18, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-facebook {
    --bg-opacity: 1 !important;
    background-color: #3b5998 !important;
    background-color: rgba(59, 89, 152, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-twitter {
    --bg-opacity: 1 !important;
    background-color: #00acee !important;
    background-color: rgba(0, 172, 238, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-twitch {
    --bg-opacity: 1 !important;
    background-color: #6441a5 !important;
    background-color: rgba(100, 65, 165, var(--bg-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-bg-youtube {
    --bg-opacity: 1 !important;
    background-color: #FF0000 !important;
    background-color: rgba(255, 0, 0, var(--bg-opacity)) !important;
  }

  .sm\:cl-bg-none {
    background-image: none !important;
  }

  .sm\:cl-bg-gradient-to-t {
    background-image: linear-gradient(to top, var(--gradient-color-stops)) !important;
  }

  .sm\:cl-bg-gradient-to-tr {
    background-image: linear-gradient(to top right, var(--gradient-color-stops)) !important;
  }

  .sm\:cl-bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--gradient-color-stops)) !important;
  }

  .sm\:cl-bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--gradient-color-stops)) !important;
  }

  .sm\:cl-bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--gradient-color-stops)) !important;
  }

  .sm\:cl-bg-gradient-to-bl {
    background-image: linear-gradient(to bottom left, var(--gradient-color-stops)) !important;
  }

  .sm\:cl-bg-gradient-to-l {
    background-image: linear-gradient(to left, var(--gradient-color-stops)) !important;
  }

  .sm\:cl-bg-gradient-to-tl {
    background-image: linear-gradient(to top left, var(--gradient-color-stops)) !important;
  }

  .sm\:cl-from-transparent {
    --gradient-from-color: transparent !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .sm\:cl-from-current {
    --gradient-from-color: currentColor !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .sm\:cl-from-black {
    --gradient-from-color: #000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .sm\:cl-from-white {
    --gradient-from-color: #fff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .sm\:cl-from-gray-100 {
    --gradient-from-color: #f7fafc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 250, 252, 0)) !important;
  }

  .sm\:cl-from-gray-200 {
    --gradient-from-color: #edf2f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 242, 247, 0)) !important;
  }

  .sm\:cl-from-gray-300 {
    --gradient-from-color: #e2e8f0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 232, 240, 0)) !important;
  }

  .sm\:cl-from-gray-400 {
    --gradient-from-color: #cbd5e0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(203, 213, 224, 0)) !important;
  }

  .sm\:cl-from-gray-500 {
    --gradient-from-color: #a0aec0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 174, 192, 0)) !important;
  }

  .sm\:cl-from-gray-600 {
    --gradient-from-color: #718096 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(113, 128, 150, 0)) !important;
  }

  .sm\:cl-from-gray-700 {
    --gradient-from-color: #4a5568 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 85, 104, 0)) !important;
  }

  .sm\:cl-from-gray-800 {
    --gradient-from-color: #2d3748 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(45, 55, 72, 0)) !important;
  }

  .sm\:cl-from-gray-900 {
    --gradient-from-color: #1a202c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 32, 44, 0)) !important;
  }

  .sm\:cl-from-red-100 {
    --gradient-from-color: #fff5f5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 245, 245, 0)) !important;
  }

  .sm\:cl-from-red-200 {
    --gradient-from-color: #fed7d7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 215, 215, 0)) !important;
  }

  .sm\:cl-from-red-300 {
    --gradient-from-color: #feb2b2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 178, 178, 0)) !important;
  }

  .sm\:cl-from-red-400 {
    --gradient-from-color: #fc8181 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(252, 129, 129, 0)) !important;
  }

  .sm\:cl-from-red-500 {
    --gradient-from-color: #f56565 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(245, 101, 101, 0)) !important;
  }

  .sm\:cl-from-red-600 {
    --gradient-from-color: #e53e3e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(229, 62, 62, 0)) !important;
  }

  .sm\:cl-from-red-700 {
    --gradient-from-color: #c53030 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(197, 48, 48, 0)) !important;
  }

  .sm\:cl-from-red-800 {
    --gradient-from-color: #9b2c2c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(155, 44, 44, 0)) !important;
  }

  .sm\:cl-from-red-900 {
    --gradient-from-color: #742a2a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(116, 42, 42, 0)) !important;
  }

  .sm\:cl-from-orange-100 {
    --gradient-from-color: #fffaf0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 240, 0)) !important;
  }

  .sm\:cl-from-orange-200 {
    --gradient-from-color: #feebc8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 235, 200, 0)) !important;
  }

  .sm\:cl-from-orange-300 {
    --gradient-from-color: #fbd38d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 211, 141, 0)) !important;
  }

  .sm\:cl-from-orange-400 {
    --gradient-from-color: #f6ad55 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 173, 85, 0)) !important;
  }

  .sm\:cl-from-orange-500 {
    --gradient-from-color: #ed8936 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 137, 54, 0)) !important;
  }

  .sm\:cl-from-orange-600 {
    --gradient-from-color: #dd6b20 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(221, 107, 32, 0)) !important;
  }

  .sm\:cl-from-orange-700 {
    --gradient-from-color: #c05621 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(192, 86, 33, 0)) !important;
  }

  .sm\:cl-from-orange-800 {
    --gradient-from-color: #9c4221 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 66, 33, 0)) !important;
  }

  .sm\:cl-from-orange-900 {
    --gradient-from-color: #7b341e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(123, 52, 30, 0)) !important;
  }

  .sm\:cl-from-yellow-100 {
    --gradient-from-color: #fffff0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 240, 0)) !important;
  }

  .sm\:cl-from-yellow-200 {
    --gradient-from-color: #fefcbf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 252, 191, 0)) !important;
  }

  .sm\:cl-from-yellow-300 {
    --gradient-from-color: #faf089 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 240, 137, 0)) !important;
  }

  .sm\:cl-from-yellow-400 {
    --gradient-from-color: #f6e05e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 224, 94, 0)) !important;
  }

  .sm\:cl-from-yellow-500 {
    --gradient-from-color: #ecc94b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 201, 75, 0)) !important;
  }

  .sm\:cl-from-yellow-600 {
    --gradient-from-color: #d69e2e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(214, 158, 46, 0)) !important;
  }

  .sm\:cl-from-yellow-700 {
    --gradient-from-color: #b7791f !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(183, 121, 31, 0)) !important;
  }

  .sm\:cl-from-yellow-800 {
    --gradient-from-color: #975a16 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(151, 90, 22, 0)) !important;
  }

  .sm\:cl-from-yellow-900 {
    --gradient-from-color: #744210 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(116, 66, 16, 0)) !important;
  }

  .sm\:cl-from-green-100 {
    --gradient-from-color: #f0fff4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(240, 255, 244, 0)) !important;
  }

  .sm\:cl-from-green-200 {
    --gradient-from-color: #c6f6d5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(198, 246, 213, 0)) !important;
  }

  .sm\:cl-from-green-300 {
    --gradient-from-color: #9ae6b4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 230, 180, 0)) !important;
  }

  .sm\:cl-from-green-400 {
    --gradient-from-color: #68d391 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(104, 211, 145, 0)) !important;
  }

  .sm\:cl-from-green-500 {
    --gradient-from-color: #48bb78 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(72, 187, 120, 0)) !important;
  }

  .sm\:cl-from-green-600 {
    --gradient-from-color: #38a169 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(56, 161, 105, 0)) !important;
  }

  .sm\:cl-from-green-700 {
    --gradient-from-color: #2f855a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(47, 133, 90, 0)) !important;
  }

  .sm\:cl-from-green-800 {
    --gradient-from-color: #276749 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(39, 103, 73, 0)) !important;
  }

  .sm\:cl-from-green-900 {
    --gradient-from-color: #22543d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(34, 84, 61, 0)) !important;
  }

  .sm\:cl-from-teal-100 {
    --gradient-from-color: #e6fffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 255, 250, 0)) !important;
  }

  .sm\:cl-from-teal-200 {
    --gradient-from-color: #b2f5ea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(178, 245, 234, 0)) !important;
  }

  .sm\:cl-from-teal-300 {
    --gradient-from-color: #81e6d9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(129, 230, 217, 0)) !important;
  }

  .sm\:cl-from-teal-400 {
    --gradient-from-color: #4fd1c5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(79, 209, 197, 0)) !important;
  }

  .sm\:cl-from-teal-500 {
    --gradient-from-color: #38b2ac !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(56, 178, 172, 0)) !important;
  }

  .sm\:cl-from-teal-600 {
    --gradient-from-color: #319795 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(49, 151, 149, 0)) !important;
  }

  .sm\:cl-from-teal-700 {
    --gradient-from-color: #2c7a7b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(44, 122, 123, 0)) !important;
  }

  .sm\:cl-from-teal-800 {
    --gradient-from-color: #285e61 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(40, 94, 97, 0)) !important;
  }

  .sm\:cl-from-teal-900 {
    --gradient-from-color: #234e52 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(35, 78, 82, 0)) !important;
  }

  .sm\:cl-from-blue-100 {
    --gradient-from-color: #ebf8ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(235, 248, 255, 0)) !important;
  }

  .sm\:cl-from-blue-200 {
    --gradient-from-color: #bee3f8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(190, 227, 248, 0)) !important;
  }

  .sm\:cl-from-blue-300 {
    --gradient-from-color: #90cdf4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 205, 244, 0)) !important;
  }

  .sm\:cl-from-blue-400 {
    --gradient-from-color: #63b3ed !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(99, 179, 237, 0)) !important;
  }

  .sm\:cl-from-blue-500 {
    --gradient-from-color: #4299e1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 153, 225, 0)) !important;
  }

  .sm\:cl-from-blue-600 {
    --gradient-from-color: #3182ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(49, 130, 206, 0)) !important;
  }

  .sm\:cl-from-blue-700 {
    --gradient-from-color: #2b6cb0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(43, 108, 176, 0)) !important;
  }

  .sm\:cl-from-blue-800 {
    --gradient-from-color: #2c5282 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(44, 82, 130, 0)) !important;
  }

  .sm\:cl-from-blue-900 {
    --gradient-from-color: #2a4365 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(42, 67, 101, 0)) !important;
  }

  .sm\:cl-from-indigo-100 {
    --gradient-from-color: #ebf4ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(235, 244, 255, 0)) !important;
  }

  .sm\:cl-from-indigo-200 {
    --gradient-from-color: #c3dafe !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(195, 218, 254, 0)) !important;
  }

  .sm\:cl-from-indigo-300 {
    --gradient-from-color: #a3bffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(163, 191, 250, 0)) !important;
  }

  .sm\:cl-from-indigo-400 {
    --gradient-from-color: #7f9cf5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(127, 156, 245, 0)) !important;
  }

  .sm\:cl-from-indigo-500 {
    --gradient-from-color: #667eea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 126, 234, 0)) !important;
  }

  .sm\:cl-from-indigo-600 {
    --gradient-from-color: #5a67d8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 103, 216, 0)) !important;
  }

  .sm\:cl-from-indigo-700 {
    --gradient-from-color: #4c51bf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(76, 81, 191, 0)) !important;
  }

  .sm\:cl-from-indigo-800 {
    --gradient-from-color: #434190 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(67, 65, 144, 0)) !important;
  }

  .sm\:cl-from-indigo-900 {
    --gradient-from-color: #3c366b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(60, 54, 107, 0)) !important;
  }

  .sm\:cl-from-purple-100 {
    --gradient-from-color: #faf5ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 245, 255, 0)) !important;
  }

  .sm\:cl-from-purple-200 {
    --gradient-from-color: #e9d8fd !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(233, 216, 253, 0)) !important;
  }

  .sm\:cl-from-purple-300 {
    --gradient-from-color: #d6bcfa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(214, 188, 250, 0)) !important;
  }

  .sm\:cl-from-purple-400 {
    --gradient-from-color: #b794f4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(183, 148, 244, 0)) !important;
  }

  .sm\:cl-from-purple-500 {
    --gradient-from-color: #9f7aea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(159, 122, 234, 0)) !important;
  }

  .sm\:cl-from-purple-600 {
    --gradient-from-color: #805ad5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(128, 90, 213, 0)) !important;
  }

  .sm\:cl-from-purple-700 {
    --gradient-from-color: #6b46c1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(107, 70, 193, 0)) !important;
  }

  .sm\:cl-from-purple-800 {
    --gradient-from-color: #553c9a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(85, 60, 154, 0)) !important;
  }

  .sm\:cl-from-purple-900 {
    --gradient-from-color: #44337a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(68, 51, 122, 0)) !important;
  }

  .sm\:cl-from-pink-100 {
    --gradient-from-color: #fff5f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 245, 247, 0)) !important;
  }

  .sm\:cl-from-pink-200 {
    --gradient-from-color: #fed7e2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 215, 226, 0)) !important;
  }

  .sm\:cl-from-pink-300 {
    --gradient-from-color: #fbb6ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 182, 206, 0)) !important;
  }

  .sm\:cl-from-pink-400 {
    --gradient-from-color: #f687b3 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 135, 179, 0)) !important;
  }

  .sm\:cl-from-pink-500 {
    --gradient-from-color: #ed64a6 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 100, 166, 0)) !important;
  }

  .sm\:cl-from-pink-600 {
    --gradient-from-color: #d53f8c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(213, 63, 140, 0)) !important;
  }

  .sm\:cl-from-pink-700 {
    --gradient-from-color: #b83280 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(184, 50, 128, 0)) !important;
  }

  .sm\:cl-from-pink-800 {
    --gradient-from-color: #97266d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(151, 38, 109, 0)) !important;
  }

  .sm\:cl-from-pink-900 {
    --gradient-from-color: #702459 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(112, 36, 89, 0)) !important;
  }

  .sm\:cl-from-ui-gray-100 {
    --gradient-from-color: #f1f1f1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(241, 241, 241, 0)) !important;
  }

  .sm\:cl-from-ui-brown-100 {
    --gradient-from-color: #f3ecdc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(243, 236, 220, 0)) !important;
  }

  .sm\:cl-from-ui-brown-200 {
    --gradient-from-color: #e8e0c9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(232, 224, 201, 0)) !important;
  }

  .sm\:cl-from-ui-brown-300 {
    --gradient-from-color: #d0c095 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(208, 192, 149, 0)) !important;
  }

  .sm\:cl-from-ui-brown-700 {
    --gradient-from-color: #bd6005 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(189, 96, 5, 0)) !important;
  }

  .sm\:cl-from-ui-green-300 {
    --gradient-from-color: #aac74c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(170, 199, 76, 0)) !important;
  }

  .sm\:cl-from-ui-green-400 {
    --gradient-from-color: #71893e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(113, 137, 62, 0)) !important;
  }

  .sm\:cl-from-ui-orange-500 {
    --gradient-from-color: #e27212 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 114, 18, 0)) !important;
  }

  .sm\:cl-from-facebook {
    --gradient-from-color: #3b5998 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(59, 89, 152, 0)) !important;
  }

  .sm\:cl-from-twitter {
    --gradient-from-color: #00acee !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 172, 238, 0)) !important;
  }

  .sm\:cl-from-twitch {
    --gradient-from-color: #6441a5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 65, 165, 0)) !important;
  }

  .sm\:cl-from-youtube {
    --gradient-from-color: #FF0000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 0, 0, 0)) !important;
  }

  .sm\:cl-via-transparent {
    --gradient-via-color: transparent !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .sm\:cl-via-current {
    --gradient-via-color: currentColor !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .sm\:cl-via-black {
    --gradient-via-color: #000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .sm\:cl-via-white {
    --gradient-via-color: #fff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .sm\:cl-via-gray-100 {
    --gradient-via-color: #f7fafc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 250, 252, 0)) !important;
  }

  .sm\:cl-via-gray-200 {
    --gradient-via-color: #edf2f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 242, 247, 0)) !important;
  }

  .sm\:cl-via-gray-300 {
    --gradient-via-color: #e2e8f0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 232, 240, 0)) !important;
  }

  .sm\:cl-via-gray-400 {
    --gradient-via-color: #cbd5e0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(203, 213, 224, 0)) !important;
  }

  .sm\:cl-via-gray-500 {
    --gradient-via-color: #a0aec0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 174, 192, 0)) !important;
  }

  .sm\:cl-via-gray-600 {
    --gradient-via-color: #718096 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(113, 128, 150, 0)) !important;
  }

  .sm\:cl-via-gray-700 {
    --gradient-via-color: #4a5568 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 85, 104, 0)) !important;
  }

  .sm\:cl-via-gray-800 {
    --gradient-via-color: #2d3748 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(45, 55, 72, 0)) !important;
  }

  .sm\:cl-via-gray-900 {
    --gradient-via-color: #1a202c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 32, 44, 0)) !important;
  }

  .sm\:cl-via-red-100 {
    --gradient-via-color: #fff5f5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 245, 245, 0)) !important;
  }

  .sm\:cl-via-red-200 {
    --gradient-via-color: #fed7d7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 215, 215, 0)) !important;
  }

  .sm\:cl-via-red-300 {
    --gradient-via-color: #feb2b2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 178, 178, 0)) !important;
  }

  .sm\:cl-via-red-400 {
    --gradient-via-color: #fc8181 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(252, 129, 129, 0)) !important;
  }

  .sm\:cl-via-red-500 {
    --gradient-via-color: #f56565 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(245, 101, 101, 0)) !important;
  }

  .sm\:cl-via-red-600 {
    --gradient-via-color: #e53e3e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(229, 62, 62, 0)) !important;
  }

  .sm\:cl-via-red-700 {
    --gradient-via-color: #c53030 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(197, 48, 48, 0)) !important;
  }

  .sm\:cl-via-red-800 {
    --gradient-via-color: #9b2c2c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(155, 44, 44, 0)) !important;
  }

  .sm\:cl-via-red-900 {
    --gradient-via-color: #742a2a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(116, 42, 42, 0)) !important;
  }

  .sm\:cl-via-orange-100 {
    --gradient-via-color: #fffaf0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 240, 0)) !important;
  }

  .sm\:cl-via-orange-200 {
    --gradient-via-color: #feebc8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 235, 200, 0)) !important;
  }

  .sm\:cl-via-orange-300 {
    --gradient-via-color: #fbd38d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 211, 141, 0)) !important;
  }

  .sm\:cl-via-orange-400 {
    --gradient-via-color: #f6ad55 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 173, 85, 0)) !important;
  }

  .sm\:cl-via-orange-500 {
    --gradient-via-color: #ed8936 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 137, 54, 0)) !important;
  }

  .sm\:cl-via-orange-600 {
    --gradient-via-color: #dd6b20 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(221, 107, 32, 0)) !important;
  }

  .sm\:cl-via-orange-700 {
    --gradient-via-color: #c05621 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(192, 86, 33, 0)) !important;
  }

  .sm\:cl-via-orange-800 {
    --gradient-via-color: #9c4221 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 66, 33, 0)) !important;
  }

  .sm\:cl-via-orange-900 {
    --gradient-via-color: #7b341e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(123, 52, 30, 0)) !important;
  }

  .sm\:cl-via-yellow-100 {
    --gradient-via-color: #fffff0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 240, 0)) !important;
  }

  .sm\:cl-via-yellow-200 {
    --gradient-via-color: #fefcbf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 252, 191, 0)) !important;
  }

  .sm\:cl-via-yellow-300 {
    --gradient-via-color: #faf089 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 240, 137, 0)) !important;
  }

  .sm\:cl-via-yellow-400 {
    --gradient-via-color: #f6e05e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 224, 94, 0)) !important;
  }

  .sm\:cl-via-yellow-500 {
    --gradient-via-color: #ecc94b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 201, 75, 0)) !important;
  }

  .sm\:cl-via-yellow-600 {
    --gradient-via-color: #d69e2e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(214, 158, 46, 0)) !important;
  }

  .sm\:cl-via-yellow-700 {
    --gradient-via-color: #b7791f !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(183, 121, 31, 0)) !important;
  }

  .sm\:cl-via-yellow-800 {
    --gradient-via-color: #975a16 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(151, 90, 22, 0)) !important;
  }

  .sm\:cl-via-yellow-900 {
    --gradient-via-color: #744210 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(116, 66, 16, 0)) !important;
  }

  .sm\:cl-via-green-100 {
    --gradient-via-color: #f0fff4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(240, 255, 244, 0)) !important;
  }

  .sm\:cl-via-green-200 {
    --gradient-via-color: #c6f6d5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(198, 246, 213, 0)) !important;
  }

  .sm\:cl-via-green-300 {
    --gradient-via-color: #9ae6b4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 230, 180, 0)) !important;
  }

  .sm\:cl-via-green-400 {
    --gradient-via-color: #68d391 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(104, 211, 145, 0)) !important;
  }

  .sm\:cl-via-green-500 {
    --gradient-via-color: #48bb78 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(72, 187, 120, 0)) !important;
  }

  .sm\:cl-via-green-600 {
    --gradient-via-color: #38a169 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(56, 161, 105, 0)) !important;
  }

  .sm\:cl-via-green-700 {
    --gradient-via-color: #2f855a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(47, 133, 90, 0)) !important;
  }

  .sm\:cl-via-green-800 {
    --gradient-via-color: #276749 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(39, 103, 73, 0)) !important;
  }

  .sm\:cl-via-green-900 {
    --gradient-via-color: #22543d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(34, 84, 61, 0)) !important;
  }

  .sm\:cl-via-teal-100 {
    --gradient-via-color: #e6fffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 255, 250, 0)) !important;
  }

  .sm\:cl-via-teal-200 {
    --gradient-via-color: #b2f5ea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(178, 245, 234, 0)) !important;
  }

  .sm\:cl-via-teal-300 {
    --gradient-via-color: #81e6d9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(129, 230, 217, 0)) !important;
  }

  .sm\:cl-via-teal-400 {
    --gradient-via-color: #4fd1c5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(79, 209, 197, 0)) !important;
  }

  .sm\:cl-via-teal-500 {
    --gradient-via-color: #38b2ac !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(56, 178, 172, 0)) !important;
  }

  .sm\:cl-via-teal-600 {
    --gradient-via-color: #319795 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(49, 151, 149, 0)) !important;
  }

  .sm\:cl-via-teal-700 {
    --gradient-via-color: #2c7a7b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(44, 122, 123, 0)) !important;
  }

  .sm\:cl-via-teal-800 {
    --gradient-via-color: #285e61 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(40, 94, 97, 0)) !important;
  }

  .sm\:cl-via-teal-900 {
    --gradient-via-color: #234e52 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(35, 78, 82, 0)) !important;
  }

  .sm\:cl-via-blue-100 {
    --gradient-via-color: #ebf8ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(235, 248, 255, 0)) !important;
  }

  .sm\:cl-via-blue-200 {
    --gradient-via-color: #bee3f8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(190, 227, 248, 0)) !important;
  }

  .sm\:cl-via-blue-300 {
    --gradient-via-color: #90cdf4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 205, 244, 0)) !important;
  }

  .sm\:cl-via-blue-400 {
    --gradient-via-color: #63b3ed !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(99, 179, 237, 0)) !important;
  }

  .sm\:cl-via-blue-500 {
    --gradient-via-color: #4299e1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 153, 225, 0)) !important;
  }

  .sm\:cl-via-blue-600 {
    --gradient-via-color: #3182ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(49, 130, 206, 0)) !important;
  }

  .sm\:cl-via-blue-700 {
    --gradient-via-color: #2b6cb0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(43, 108, 176, 0)) !important;
  }

  .sm\:cl-via-blue-800 {
    --gradient-via-color: #2c5282 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(44, 82, 130, 0)) !important;
  }

  .sm\:cl-via-blue-900 {
    --gradient-via-color: #2a4365 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(42, 67, 101, 0)) !important;
  }

  .sm\:cl-via-indigo-100 {
    --gradient-via-color: #ebf4ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(235, 244, 255, 0)) !important;
  }

  .sm\:cl-via-indigo-200 {
    --gradient-via-color: #c3dafe !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(195, 218, 254, 0)) !important;
  }

  .sm\:cl-via-indigo-300 {
    --gradient-via-color: #a3bffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(163, 191, 250, 0)) !important;
  }

  .sm\:cl-via-indigo-400 {
    --gradient-via-color: #7f9cf5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(127, 156, 245, 0)) !important;
  }

  .sm\:cl-via-indigo-500 {
    --gradient-via-color: #667eea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 126, 234, 0)) !important;
  }

  .sm\:cl-via-indigo-600 {
    --gradient-via-color: #5a67d8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 103, 216, 0)) !important;
  }

  .sm\:cl-via-indigo-700 {
    --gradient-via-color: #4c51bf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(76, 81, 191, 0)) !important;
  }

  .sm\:cl-via-indigo-800 {
    --gradient-via-color: #434190 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(67, 65, 144, 0)) !important;
  }

  .sm\:cl-via-indigo-900 {
    --gradient-via-color: #3c366b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(60, 54, 107, 0)) !important;
  }

  .sm\:cl-via-purple-100 {
    --gradient-via-color: #faf5ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 245, 255, 0)) !important;
  }

  .sm\:cl-via-purple-200 {
    --gradient-via-color: #e9d8fd !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(233, 216, 253, 0)) !important;
  }

  .sm\:cl-via-purple-300 {
    --gradient-via-color: #d6bcfa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(214, 188, 250, 0)) !important;
  }

  .sm\:cl-via-purple-400 {
    --gradient-via-color: #b794f4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(183, 148, 244, 0)) !important;
  }

  .sm\:cl-via-purple-500 {
    --gradient-via-color: #9f7aea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(159, 122, 234, 0)) !important;
  }

  .sm\:cl-via-purple-600 {
    --gradient-via-color: #805ad5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(128, 90, 213, 0)) !important;
  }

  .sm\:cl-via-purple-700 {
    --gradient-via-color: #6b46c1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(107, 70, 193, 0)) !important;
  }

  .sm\:cl-via-purple-800 {
    --gradient-via-color: #553c9a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(85, 60, 154, 0)) !important;
  }

  .sm\:cl-via-purple-900 {
    --gradient-via-color: #44337a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(68, 51, 122, 0)) !important;
  }

  .sm\:cl-via-pink-100 {
    --gradient-via-color: #fff5f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 245, 247, 0)) !important;
  }

  .sm\:cl-via-pink-200 {
    --gradient-via-color: #fed7e2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 215, 226, 0)) !important;
  }

  .sm\:cl-via-pink-300 {
    --gradient-via-color: #fbb6ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 182, 206, 0)) !important;
  }

  .sm\:cl-via-pink-400 {
    --gradient-via-color: #f687b3 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 135, 179, 0)) !important;
  }

  .sm\:cl-via-pink-500 {
    --gradient-via-color: #ed64a6 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 100, 166, 0)) !important;
  }

  .sm\:cl-via-pink-600 {
    --gradient-via-color: #d53f8c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(213, 63, 140, 0)) !important;
  }

  .sm\:cl-via-pink-700 {
    --gradient-via-color: #b83280 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(184, 50, 128, 0)) !important;
  }

  .sm\:cl-via-pink-800 {
    --gradient-via-color: #97266d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(151, 38, 109, 0)) !important;
  }

  .sm\:cl-via-pink-900 {
    --gradient-via-color: #702459 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(112, 36, 89, 0)) !important;
  }

  .sm\:cl-via-ui-gray-100 {
    --gradient-via-color: #f1f1f1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(241, 241, 241, 0)) !important;
  }

  .sm\:cl-via-ui-brown-100 {
    --gradient-via-color: #f3ecdc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(243, 236, 220, 0)) !important;
  }

  .sm\:cl-via-ui-brown-200 {
    --gradient-via-color: #e8e0c9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(232, 224, 201, 0)) !important;
  }

  .sm\:cl-via-ui-brown-300 {
    --gradient-via-color: #d0c095 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(208, 192, 149, 0)) !important;
  }

  .sm\:cl-via-ui-brown-700 {
    --gradient-via-color: #bd6005 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(189, 96, 5, 0)) !important;
  }

  .sm\:cl-via-ui-green-300 {
    --gradient-via-color: #aac74c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(170, 199, 76, 0)) !important;
  }

  .sm\:cl-via-ui-green-400 {
    --gradient-via-color: #71893e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(113, 137, 62, 0)) !important;
  }

  .sm\:cl-via-ui-orange-500 {
    --gradient-via-color: #e27212 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 114, 18, 0)) !important;
  }

  .sm\:cl-via-facebook {
    --gradient-via-color: #3b5998 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(59, 89, 152, 0)) !important;
  }

  .sm\:cl-via-twitter {
    --gradient-via-color: #00acee !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 172, 238, 0)) !important;
  }

  .sm\:cl-via-twitch {
    --gradient-via-color: #6441a5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 65, 165, 0)) !important;
  }

  .sm\:cl-via-youtube {
    --gradient-via-color: #FF0000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 0, 0, 0)) !important;
  }

  .sm\:cl-to-transparent {
    --gradient-to-color: transparent !important;
  }

  .sm\:cl-to-current {
    --gradient-to-color: currentColor !important;
  }

  .sm\:cl-to-black {
    --gradient-to-color: #000 !important;
  }

  .sm\:cl-to-white {
    --gradient-to-color: #fff !important;
  }

  .sm\:cl-to-gray-100 {
    --gradient-to-color: #f7fafc !important;
  }

  .sm\:cl-to-gray-200 {
    --gradient-to-color: #edf2f7 !important;
  }

  .sm\:cl-to-gray-300 {
    --gradient-to-color: #e2e8f0 !important;
  }

  .sm\:cl-to-gray-400 {
    --gradient-to-color: #cbd5e0 !important;
  }

  .sm\:cl-to-gray-500 {
    --gradient-to-color: #a0aec0 !important;
  }

  .sm\:cl-to-gray-600 {
    --gradient-to-color: #718096 !important;
  }

  .sm\:cl-to-gray-700 {
    --gradient-to-color: #4a5568 !important;
  }

  .sm\:cl-to-gray-800 {
    --gradient-to-color: #2d3748 !important;
  }

  .sm\:cl-to-gray-900 {
    --gradient-to-color: #1a202c !important;
  }

  .sm\:cl-to-red-100 {
    --gradient-to-color: #fff5f5 !important;
  }

  .sm\:cl-to-red-200 {
    --gradient-to-color: #fed7d7 !important;
  }

  .sm\:cl-to-red-300 {
    --gradient-to-color: #feb2b2 !important;
  }

  .sm\:cl-to-red-400 {
    --gradient-to-color: #fc8181 !important;
  }

  .sm\:cl-to-red-500 {
    --gradient-to-color: #f56565 !important;
  }

  .sm\:cl-to-red-600 {
    --gradient-to-color: #e53e3e !important;
  }

  .sm\:cl-to-red-700 {
    --gradient-to-color: #c53030 !important;
  }

  .sm\:cl-to-red-800 {
    --gradient-to-color: #9b2c2c !important;
  }

  .sm\:cl-to-red-900 {
    --gradient-to-color: #742a2a !important;
  }

  .sm\:cl-to-orange-100 {
    --gradient-to-color: #fffaf0 !important;
  }

  .sm\:cl-to-orange-200 {
    --gradient-to-color: #feebc8 !important;
  }

  .sm\:cl-to-orange-300 {
    --gradient-to-color: #fbd38d !important;
  }

  .sm\:cl-to-orange-400 {
    --gradient-to-color: #f6ad55 !important;
  }

  .sm\:cl-to-orange-500 {
    --gradient-to-color: #ed8936 !important;
  }

  .sm\:cl-to-orange-600 {
    --gradient-to-color: #dd6b20 !important;
  }

  .sm\:cl-to-orange-700 {
    --gradient-to-color: #c05621 !important;
  }

  .sm\:cl-to-orange-800 {
    --gradient-to-color: #9c4221 !important;
  }

  .sm\:cl-to-orange-900 {
    --gradient-to-color: #7b341e !important;
  }

  .sm\:cl-to-yellow-100 {
    --gradient-to-color: #fffff0 !important;
  }

  .sm\:cl-to-yellow-200 {
    --gradient-to-color: #fefcbf !important;
  }

  .sm\:cl-to-yellow-300 {
    --gradient-to-color: #faf089 !important;
  }

  .sm\:cl-to-yellow-400 {
    --gradient-to-color: #f6e05e !important;
  }

  .sm\:cl-to-yellow-500 {
    --gradient-to-color: #ecc94b !important;
  }

  .sm\:cl-to-yellow-600 {
    --gradient-to-color: #d69e2e !important;
  }

  .sm\:cl-to-yellow-700 {
    --gradient-to-color: #b7791f !important;
  }

  .sm\:cl-to-yellow-800 {
    --gradient-to-color: #975a16 !important;
  }

  .sm\:cl-to-yellow-900 {
    --gradient-to-color: #744210 !important;
  }

  .sm\:cl-to-green-100 {
    --gradient-to-color: #f0fff4 !important;
  }

  .sm\:cl-to-green-200 {
    --gradient-to-color: #c6f6d5 !important;
  }

  .sm\:cl-to-green-300 {
    --gradient-to-color: #9ae6b4 !important;
  }

  .sm\:cl-to-green-400 {
    --gradient-to-color: #68d391 !important;
  }

  .sm\:cl-to-green-500 {
    --gradient-to-color: #48bb78 !important;
  }

  .sm\:cl-to-green-600 {
    --gradient-to-color: #38a169 !important;
  }

  .sm\:cl-to-green-700 {
    --gradient-to-color: #2f855a !important;
  }

  .sm\:cl-to-green-800 {
    --gradient-to-color: #276749 !important;
  }

  .sm\:cl-to-green-900 {
    --gradient-to-color: #22543d !important;
  }

  .sm\:cl-to-teal-100 {
    --gradient-to-color: #e6fffa !important;
  }

  .sm\:cl-to-teal-200 {
    --gradient-to-color: #b2f5ea !important;
  }

  .sm\:cl-to-teal-300 {
    --gradient-to-color: #81e6d9 !important;
  }

  .sm\:cl-to-teal-400 {
    --gradient-to-color: #4fd1c5 !important;
  }

  .sm\:cl-to-teal-500 {
    --gradient-to-color: #38b2ac !important;
  }

  .sm\:cl-to-teal-600 {
    --gradient-to-color: #319795 !important;
  }

  .sm\:cl-to-teal-700 {
    --gradient-to-color: #2c7a7b !important;
  }

  .sm\:cl-to-teal-800 {
    --gradient-to-color: #285e61 !important;
  }

  .sm\:cl-to-teal-900 {
    --gradient-to-color: #234e52 !important;
  }

  .sm\:cl-to-blue-100 {
    --gradient-to-color: #ebf8ff !important;
  }

  .sm\:cl-to-blue-200 {
    --gradient-to-color: #bee3f8 !important;
  }

  .sm\:cl-to-blue-300 {
    --gradient-to-color: #90cdf4 !important;
  }

  .sm\:cl-to-blue-400 {
    --gradient-to-color: #63b3ed !important;
  }

  .sm\:cl-to-blue-500 {
    --gradient-to-color: #4299e1 !important;
  }

  .sm\:cl-to-blue-600 {
    --gradient-to-color: #3182ce !important;
  }

  .sm\:cl-to-blue-700 {
    --gradient-to-color: #2b6cb0 !important;
  }

  .sm\:cl-to-blue-800 {
    --gradient-to-color: #2c5282 !important;
  }

  .sm\:cl-to-blue-900 {
    --gradient-to-color: #2a4365 !important;
  }

  .sm\:cl-to-indigo-100 {
    --gradient-to-color: #ebf4ff !important;
  }

  .sm\:cl-to-indigo-200 {
    --gradient-to-color: #c3dafe !important;
  }

  .sm\:cl-to-indigo-300 {
    --gradient-to-color: #a3bffa !important;
  }

  .sm\:cl-to-indigo-400 {
    --gradient-to-color: #7f9cf5 !important;
  }

  .sm\:cl-to-indigo-500 {
    --gradient-to-color: #667eea !important;
  }

  .sm\:cl-to-indigo-600 {
    --gradient-to-color: #5a67d8 !important;
  }

  .sm\:cl-to-indigo-700 {
    --gradient-to-color: #4c51bf !important;
  }

  .sm\:cl-to-indigo-800 {
    --gradient-to-color: #434190 !important;
  }

  .sm\:cl-to-indigo-900 {
    --gradient-to-color: #3c366b !important;
  }

  .sm\:cl-to-purple-100 {
    --gradient-to-color: #faf5ff !important;
  }

  .sm\:cl-to-purple-200 {
    --gradient-to-color: #e9d8fd !important;
  }

  .sm\:cl-to-purple-300 {
    --gradient-to-color: #d6bcfa !important;
  }

  .sm\:cl-to-purple-400 {
    --gradient-to-color: #b794f4 !important;
  }

  .sm\:cl-to-purple-500 {
    --gradient-to-color: #9f7aea !important;
  }

  .sm\:cl-to-purple-600 {
    --gradient-to-color: #805ad5 !important;
  }

  .sm\:cl-to-purple-700 {
    --gradient-to-color: #6b46c1 !important;
  }

  .sm\:cl-to-purple-800 {
    --gradient-to-color: #553c9a !important;
  }

  .sm\:cl-to-purple-900 {
    --gradient-to-color: #44337a !important;
  }

  .sm\:cl-to-pink-100 {
    --gradient-to-color: #fff5f7 !important;
  }

  .sm\:cl-to-pink-200 {
    --gradient-to-color: #fed7e2 !important;
  }

  .sm\:cl-to-pink-300 {
    --gradient-to-color: #fbb6ce !important;
  }

  .sm\:cl-to-pink-400 {
    --gradient-to-color: #f687b3 !important;
  }

  .sm\:cl-to-pink-500 {
    --gradient-to-color: #ed64a6 !important;
  }

  .sm\:cl-to-pink-600 {
    --gradient-to-color: #d53f8c !important;
  }

  .sm\:cl-to-pink-700 {
    --gradient-to-color: #b83280 !important;
  }

  .sm\:cl-to-pink-800 {
    --gradient-to-color: #97266d !important;
  }

  .sm\:cl-to-pink-900 {
    --gradient-to-color: #702459 !important;
  }

  .sm\:cl-to-ui-gray-100 {
    --gradient-to-color: #f1f1f1 !important;
  }

  .sm\:cl-to-ui-brown-100 {
    --gradient-to-color: #f3ecdc !important;
  }

  .sm\:cl-to-ui-brown-200 {
    --gradient-to-color: #e8e0c9 !important;
  }

  .sm\:cl-to-ui-brown-300 {
    --gradient-to-color: #d0c095 !important;
  }

  .sm\:cl-to-ui-brown-700 {
    --gradient-to-color: #bd6005 !important;
  }

  .sm\:cl-to-ui-green-300 {
    --gradient-to-color: #aac74c !important;
  }

  .sm\:cl-to-ui-green-400 {
    --gradient-to-color: #71893e !important;
  }

  .sm\:cl-to-ui-orange-500 {
    --gradient-to-color: #e27212 !important;
  }

  .sm\:cl-to-facebook {
    --gradient-to-color: #3b5998 !important;
  }

  .sm\:cl-to-twitter {
    --gradient-to-color: #00acee !important;
  }

  .sm\:cl-to-twitch {
    --gradient-to-color: #6441a5 !important;
  }

  .sm\:cl-to-youtube {
    --gradient-to-color: #FF0000 !important;
  }

  .sm\:hover\:cl-from-transparent:hover {
    --gradient-from-color: transparent !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .sm\:hover\:cl-from-current:hover {
    --gradient-from-color: currentColor !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .sm\:hover\:cl-from-black:hover {
    --gradient-from-color: #000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .sm\:hover\:cl-from-white:hover {
    --gradient-from-color: #fff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .sm\:hover\:cl-from-gray-100:hover {
    --gradient-from-color: #f7fafc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 250, 252, 0)) !important;
  }

  .sm\:hover\:cl-from-gray-200:hover {
    --gradient-from-color: #edf2f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 242, 247, 0)) !important;
  }

  .sm\:hover\:cl-from-gray-300:hover {
    --gradient-from-color: #e2e8f0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 232, 240, 0)) !important;
  }

  .sm\:hover\:cl-from-gray-400:hover {
    --gradient-from-color: #cbd5e0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(203, 213, 224, 0)) !important;
  }

  .sm\:hover\:cl-from-gray-500:hover {
    --gradient-from-color: #a0aec0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 174, 192, 0)) !important;
  }

  .sm\:hover\:cl-from-gray-600:hover {
    --gradient-from-color: #718096 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(113, 128, 150, 0)) !important;
  }

  .sm\:hover\:cl-from-gray-700:hover {
    --gradient-from-color: #4a5568 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 85, 104, 0)) !important;
  }

  .sm\:hover\:cl-from-gray-800:hover {
    --gradient-from-color: #2d3748 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(45, 55, 72, 0)) !important;
  }

  .sm\:hover\:cl-from-gray-900:hover {
    --gradient-from-color: #1a202c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 32, 44, 0)) !important;
  }

  .sm\:hover\:cl-from-red-100:hover {
    --gradient-from-color: #fff5f5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 245, 245, 0)) !important;
  }

  .sm\:hover\:cl-from-red-200:hover {
    --gradient-from-color: #fed7d7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 215, 215, 0)) !important;
  }

  .sm\:hover\:cl-from-red-300:hover {
    --gradient-from-color: #feb2b2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 178, 178, 0)) !important;
  }

  .sm\:hover\:cl-from-red-400:hover {
    --gradient-from-color: #fc8181 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(252, 129, 129, 0)) !important;
  }

  .sm\:hover\:cl-from-red-500:hover {
    --gradient-from-color: #f56565 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(245, 101, 101, 0)) !important;
  }

  .sm\:hover\:cl-from-red-600:hover {
    --gradient-from-color: #e53e3e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(229, 62, 62, 0)) !important;
  }

  .sm\:hover\:cl-from-red-700:hover {
    --gradient-from-color: #c53030 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(197, 48, 48, 0)) !important;
  }

  .sm\:hover\:cl-from-red-800:hover {
    --gradient-from-color: #9b2c2c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(155, 44, 44, 0)) !important;
  }

  .sm\:hover\:cl-from-red-900:hover {
    --gradient-from-color: #742a2a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(116, 42, 42, 0)) !important;
  }

  .sm\:hover\:cl-from-orange-100:hover {
    --gradient-from-color: #fffaf0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 240, 0)) !important;
  }

  .sm\:hover\:cl-from-orange-200:hover {
    --gradient-from-color: #feebc8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 235, 200, 0)) !important;
  }

  .sm\:hover\:cl-from-orange-300:hover {
    --gradient-from-color: #fbd38d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 211, 141, 0)) !important;
  }

  .sm\:hover\:cl-from-orange-400:hover {
    --gradient-from-color: #f6ad55 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 173, 85, 0)) !important;
  }

  .sm\:hover\:cl-from-orange-500:hover {
    --gradient-from-color: #ed8936 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 137, 54, 0)) !important;
  }

  .sm\:hover\:cl-from-orange-600:hover {
    --gradient-from-color: #dd6b20 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(221, 107, 32, 0)) !important;
  }

  .sm\:hover\:cl-from-orange-700:hover {
    --gradient-from-color: #c05621 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(192, 86, 33, 0)) !important;
  }

  .sm\:hover\:cl-from-orange-800:hover {
    --gradient-from-color: #9c4221 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 66, 33, 0)) !important;
  }

  .sm\:hover\:cl-from-orange-900:hover {
    --gradient-from-color: #7b341e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(123, 52, 30, 0)) !important;
  }

  .sm\:hover\:cl-from-yellow-100:hover {
    --gradient-from-color: #fffff0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 240, 0)) !important;
  }

  .sm\:hover\:cl-from-yellow-200:hover {
    --gradient-from-color: #fefcbf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 252, 191, 0)) !important;
  }

  .sm\:hover\:cl-from-yellow-300:hover {
    --gradient-from-color: #faf089 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 240, 137, 0)) !important;
  }

  .sm\:hover\:cl-from-yellow-400:hover {
    --gradient-from-color: #f6e05e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 224, 94, 0)) !important;
  }

  .sm\:hover\:cl-from-yellow-500:hover {
    --gradient-from-color: #ecc94b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 201, 75, 0)) !important;
  }

  .sm\:hover\:cl-from-yellow-600:hover {
    --gradient-from-color: #d69e2e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(214, 158, 46, 0)) !important;
  }

  .sm\:hover\:cl-from-yellow-700:hover {
    --gradient-from-color: #b7791f !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(183, 121, 31, 0)) !important;
  }

  .sm\:hover\:cl-from-yellow-800:hover {
    --gradient-from-color: #975a16 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(151, 90, 22, 0)) !important;
  }

  .sm\:hover\:cl-from-yellow-900:hover {
    --gradient-from-color: #744210 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(116, 66, 16, 0)) !important;
  }

  .sm\:hover\:cl-from-green-100:hover {
    --gradient-from-color: #f0fff4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(240, 255, 244, 0)) !important;
  }

  .sm\:hover\:cl-from-green-200:hover {
    --gradient-from-color: #c6f6d5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(198, 246, 213, 0)) !important;
  }

  .sm\:hover\:cl-from-green-300:hover {
    --gradient-from-color: #9ae6b4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 230, 180, 0)) !important;
  }

  .sm\:hover\:cl-from-green-400:hover {
    --gradient-from-color: #68d391 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(104, 211, 145, 0)) !important;
  }

  .sm\:hover\:cl-from-green-500:hover {
    --gradient-from-color: #48bb78 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(72, 187, 120, 0)) !important;
  }

  .sm\:hover\:cl-from-green-600:hover {
    --gradient-from-color: #38a169 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(56, 161, 105, 0)) !important;
  }

  .sm\:hover\:cl-from-green-700:hover {
    --gradient-from-color: #2f855a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(47, 133, 90, 0)) !important;
  }

  .sm\:hover\:cl-from-green-800:hover {
    --gradient-from-color: #276749 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(39, 103, 73, 0)) !important;
  }

  .sm\:hover\:cl-from-green-900:hover {
    --gradient-from-color: #22543d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(34, 84, 61, 0)) !important;
  }

  .sm\:hover\:cl-from-teal-100:hover {
    --gradient-from-color: #e6fffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 255, 250, 0)) !important;
  }

  .sm\:hover\:cl-from-teal-200:hover {
    --gradient-from-color: #b2f5ea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(178, 245, 234, 0)) !important;
  }

  .sm\:hover\:cl-from-teal-300:hover {
    --gradient-from-color: #81e6d9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(129, 230, 217, 0)) !important;
  }

  .sm\:hover\:cl-from-teal-400:hover {
    --gradient-from-color: #4fd1c5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(79, 209, 197, 0)) !important;
  }

  .sm\:hover\:cl-from-teal-500:hover {
    --gradient-from-color: #38b2ac !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(56, 178, 172, 0)) !important;
  }

  .sm\:hover\:cl-from-teal-600:hover {
    --gradient-from-color: #319795 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(49, 151, 149, 0)) !important;
  }

  .sm\:hover\:cl-from-teal-700:hover {
    --gradient-from-color: #2c7a7b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(44, 122, 123, 0)) !important;
  }

  .sm\:hover\:cl-from-teal-800:hover {
    --gradient-from-color: #285e61 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(40, 94, 97, 0)) !important;
  }

  .sm\:hover\:cl-from-teal-900:hover {
    --gradient-from-color: #234e52 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(35, 78, 82, 0)) !important;
  }

  .sm\:hover\:cl-from-blue-100:hover {
    --gradient-from-color: #ebf8ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(235, 248, 255, 0)) !important;
  }

  .sm\:hover\:cl-from-blue-200:hover {
    --gradient-from-color: #bee3f8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(190, 227, 248, 0)) !important;
  }

  .sm\:hover\:cl-from-blue-300:hover {
    --gradient-from-color: #90cdf4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 205, 244, 0)) !important;
  }

  .sm\:hover\:cl-from-blue-400:hover {
    --gradient-from-color: #63b3ed !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(99, 179, 237, 0)) !important;
  }

  .sm\:hover\:cl-from-blue-500:hover {
    --gradient-from-color: #4299e1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 153, 225, 0)) !important;
  }

  .sm\:hover\:cl-from-blue-600:hover {
    --gradient-from-color: #3182ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(49, 130, 206, 0)) !important;
  }

  .sm\:hover\:cl-from-blue-700:hover {
    --gradient-from-color: #2b6cb0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(43, 108, 176, 0)) !important;
  }

  .sm\:hover\:cl-from-blue-800:hover {
    --gradient-from-color: #2c5282 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(44, 82, 130, 0)) !important;
  }

  .sm\:hover\:cl-from-blue-900:hover {
    --gradient-from-color: #2a4365 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(42, 67, 101, 0)) !important;
  }

  .sm\:hover\:cl-from-indigo-100:hover {
    --gradient-from-color: #ebf4ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(235, 244, 255, 0)) !important;
  }

  .sm\:hover\:cl-from-indigo-200:hover {
    --gradient-from-color: #c3dafe !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(195, 218, 254, 0)) !important;
  }

  .sm\:hover\:cl-from-indigo-300:hover {
    --gradient-from-color: #a3bffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(163, 191, 250, 0)) !important;
  }

  .sm\:hover\:cl-from-indigo-400:hover {
    --gradient-from-color: #7f9cf5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(127, 156, 245, 0)) !important;
  }

  .sm\:hover\:cl-from-indigo-500:hover {
    --gradient-from-color: #667eea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 126, 234, 0)) !important;
  }

  .sm\:hover\:cl-from-indigo-600:hover {
    --gradient-from-color: #5a67d8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 103, 216, 0)) !important;
  }

  .sm\:hover\:cl-from-indigo-700:hover {
    --gradient-from-color: #4c51bf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(76, 81, 191, 0)) !important;
  }

  .sm\:hover\:cl-from-indigo-800:hover {
    --gradient-from-color: #434190 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(67, 65, 144, 0)) !important;
  }

  .sm\:hover\:cl-from-indigo-900:hover {
    --gradient-from-color: #3c366b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(60, 54, 107, 0)) !important;
  }

  .sm\:hover\:cl-from-purple-100:hover {
    --gradient-from-color: #faf5ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 245, 255, 0)) !important;
  }

  .sm\:hover\:cl-from-purple-200:hover {
    --gradient-from-color: #e9d8fd !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(233, 216, 253, 0)) !important;
  }

  .sm\:hover\:cl-from-purple-300:hover {
    --gradient-from-color: #d6bcfa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(214, 188, 250, 0)) !important;
  }

  .sm\:hover\:cl-from-purple-400:hover {
    --gradient-from-color: #b794f4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(183, 148, 244, 0)) !important;
  }

  .sm\:hover\:cl-from-purple-500:hover {
    --gradient-from-color: #9f7aea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(159, 122, 234, 0)) !important;
  }

  .sm\:hover\:cl-from-purple-600:hover {
    --gradient-from-color: #805ad5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(128, 90, 213, 0)) !important;
  }

  .sm\:hover\:cl-from-purple-700:hover {
    --gradient-from-color: #6b46c1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(107, 70, 193, 0)) !important;
  }

  .sm\:hover\:cl-from-purple-800:hover {
    --gradient-from-color: #553c9a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(85, 60, 154, 0)) !important;
  }

  .sm\:hover\:cl-from-purple-900:hover {
    --gradient-from-color: #44337a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(68, 51, 122, 0)) !important;
  }

  .sm\:hover\:cl-from-pink-100:hover {
    --gradient-from-color: #fff5f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 245, 247, 0)) !important;
  }

  .sm\:hover\:cl-from-pink-200:hover {
    --gradient-from-color: #fed7e2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 215, 226, 0)) !important;
  }

  .sm\:hover\:cl-from-pink-300:hover {
    --gradient-from-color: #fbb6ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 182, 206, 0)) !important;
  }

  .sm\:hover\:cl-from-pink-400:hover {
    --gradient-from-color: #f687b3 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 135, 179, 0)) !important;
  }

  .sm\:hover\:cl-from-pink-500:hover {
    --gradient-from-color: #ed64a6 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 100, 166, 0)) !important;
  }

  .sm\:hover\:cl-from-pink-600:hover {
    --gradient-from-color: #d53f8c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(213, 63, 140, 0)) !important;
  }

  .sm\:hover\:cl-from-pink-700:hover {
    --gradient-from-color: #b83280 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(184, 50, 128, 0)) !important;
  }

  .sm\:hover\:cl-from-pink-800:hover {
    --gradient-from-color: #97266d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(151, 38, 109, 0)) !important;
  }

  .sm\:hover\:cl-from-pink-900:hover {
    --gradient-from-color: #702459 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(112, 36, 89, 0)) !important;
  }

  .sm\:hover\:cl-from-ui-gray-100:hover {
    --gradient-from-color: #f1f1f1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(241, 241, 241, 0)) !important;
  }

  .sm\:hover\:cl-from-ui-brown-100:hover {
    --gradient-from-color: #f3ecdc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(243, 236, 220, 0)) !important;
  }

  .sm\:hover\:cl-from-ui-brown-200:hover {
    --gradient-from-color: #e8e0c9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(232, 224, 201, 0)) !important;
  }

  .sm\:hover\:cl-from-ui-brown-300:hover {
    --gradient-from-color: #d0c095 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(208, 192, 149, 0)) !important;
  }

  .sm\:hover\:cl-from-ui-brown-700:hover {
    --gradient-from-color: #bd6005 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(189, 96, 5, 0)) !important;
  }

  .sm\:hover\:cl-from-ui-green-300:hover {
    --gradient-from-color: #aac74c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(170, 199, 76, 0)) !important;
  }

  .sm\:hover\:cl-from-ui-green-400:hover {
    --gradient-from-color: #71893e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(113, 137, 62, 0)) !important;
  }

  .sm\:hover\:cl-from-ui-orange-500:hover {
    --gradient-from-color: #e27212 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 114, 18, 0)) !important;
  }

  .sm\:hover\:cl-from-facebook:hover {
    --gradient-from-color: #3b5998 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(59, 89, 152, 0)) !important;
  }

  .sm\:hover\:cl-from-twitter:hover {
    --gradient-from-color: #00acee !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 172, 238, 0)) !important;
  }

  .sm\:hover\:cl-from-twitch:hover {
    --gradient-from-color: #6441a5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 65, 165, 0)) !important;
  }

  .sm\:hover\:cl-from-youtube:hover {
    --gradient-from-color: #FF0000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 0, 0, 0)) !important;
  }

  .sm\:hover\:cl-via-transparent:hover {
    --gradient-via-color: transparent !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .sm\:hover\:cl-via-current:hover {
    --gradient-via-color: currentColor !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .sm\:hover\:cl-via-black:hover {
    --gradient-via-color: #000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .sm\:hover\:cl-via-white:hover {
    --gradient-via-color: #fff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .sm\:hover\:cl-via-gray-100:hover {
    --gradient-via-color: #f7fafc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 250, 252, 0)) !important;
  }

  .sm\:hover\:cl-via-gray-200:hover {
    --gradient-via-color: #edf2f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 242, 247, 0)) !important;
  }

  .sm\:hover\:cl-via-gray-300:hover {
    --gradient-via-color: #e2e8f0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 232, 240, 0)) !important;
  }

  .sm\:hover\:cl-via-gray-400:hover {
    --gradient-via-color: #cbd5e0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(203, 213, 224, 0)) !important;
  }

  .sm\:hover\:cl-via-gray-500:hover {
    --gradient-via-color: #a0aec0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 174, 192, 0)) !important;
  }

  .sm\:hover\:cl-via-gray-600:hover {
    --gradient-via-color: #718096 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(113, 128, 150, 0)) !important;
  }

  .sm\:hover\:cl-via-gray-700:hover {
    --gradient-via-color: #4a5568 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 85, 104, 0)) !important;
  }

  .sm\:hover\:cl-via-gray-800:hover {
    --gradient-via-color: #2d3748 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(45, 55, 72, 0)) !important;
  }

  .sm\:hover\:cl-via-gray-900:hover {
    --gradient-via-color: #1a202c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 32, 44, 0)) !important;
  }

  .sm\:hover\:cl-via-red-100:hover {
    --gradient-via-color: #fff5f5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 245, 245, 0)) !important;
  }

  .sm\:hover\:cl-via-red-200:hover {
    --gradient-via-color: #fed7d7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 215, 215, 0)) !important;
  }

  .sm\:hover\:cl-via-red-300:hover {
    --gradient-via-color: #feb2b2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 178, 178, 0)) !important;
  }

  .sm\:hover\:cl-via-red-400:hover {
    --gradient-via-color: #fc8181 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(252, 129, 129, 0)) !important;
  }

  .sm\:hover\:cl-via-red-500:hover {
    --gradient-via-color: #f56565 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(245, 101, 101, 0)) !important;
  }

  .sm\:hover\:cl-via-red-600:hover {
    --gradient-via-color: #e53e3e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(229, 62, 62, 0)) !important;
  }

  .sm\:hover\:cl-via-red-700:hover {
    --gradient-via-color: #c53030 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(197, 48, 48, 0)) !important;
  }

  .sm\:hover\:cl-via-red-800:hover {
    --gradient-via-color: #9b2c2c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(155, 44, 44, 0)) !important;
  }

  .sm\:hover\:cl-via-red-900:hover {
    --gradient-via-color: #742a2a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(116, 42, 42, 0)) !important;
  }

  .sm\:hover\:cl-via-orange-100:hover {
    --gradient-via-color: #fffaf0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 240, 0)) !important;
  }

  .sm\:hover\:cl-via-orange-200:hover {
    --gradient-via-color: #feebc8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 235, 200, 0)) !important;
  }

  .sm\:hover\:cl-via-orange-300:hover {
    --gradient-via-color: #fbd38d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 211, 141, 0)) !important;
  }

  .sm\:hover\:cl-via-orange-400:hover {
    --gradient-via-color: #f6ad55 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 173, 85, 0)) !important;
  }

  .sm\:hover\:cl-via-orange-500:hover {
    --gradient-via-color: #ed8936 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 137, 54, 0)) !important;
  }

  .sm\:hover\:cl-via-orange-600:hover {
    --gradient-via-color: #dd6b20 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(221, 107, 32, 0)) !important;
  }

  .sm\:hover\:cl-via-orange-700:hover {
    --gradient-via-color: #c05621 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(192, 86, 33, 0)) !important;
  }

  .sm\:hover\:cl-via-orange-800:hover {
    --gradient-via-color: #9c4221 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 66, 33, 0)) !important;
  }

  .sm\:hover\:cl-via-orange-900:hover {
    --gradient-via-color: #7b341e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(123, 52, 30, 0)) !important;
  }

  .sm\:hover\:cl-via-yellow-100:hover {
    --gradient-via-color: #fffff0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 240, 0)) !important;
  }

  .sm\:hover\:cl-via-yellow-200:hover {
    --gradient-via-color: #fefcbf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 252, 191, 0)) !important;
  }

  .sm\:hover\:cl-via-yellow-300:hover {
    --gradient-via-color: #faf089 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 240, 137, 0)) !important;
  }

  .sm\:hover\:cl-via-yellow-400:hover {
    --gradient-via-color: #f6e05e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 224, 94, 0)) !important;
  }

  .sm\:hover\:cl-via-yellow-500:hover {
    --gradient-via-color: #ecc94b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 201, 75, 0)) !important;
  }

  .sm\:hover\:cl-via-yellow-600:hover {
    --gradient-via-color: #d69e2e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(214, 158, 46, 0)) !important;
  }

  .sm\:hover\:cl-via-yellow-700:hover {
    --gradient-via-color: #b7791f !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(183, 121, 31, 0)) !important;
  }

  .sm\:hover\:cl-via-yellow-800:hover {
    --gradient-via-color: #975a16 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(151, 90, 22, 0)) !important;
  }

  .sm\:hover\:cl-via-yellow-900:hover {
    --gradient-via-color: #744210 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(116, 66, 16, 0)) !important;
  }

  .sm\:hover\:cl-via-green-100:hover {
    --gradient-via-color: #f0fff4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(240, 255, 244, 0)) !important;
  }

  .sm\:hover\:cl-via-green-200:hover {
    --gradient-via-color: #c6f6d5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(198, 246, 213, 0)) !important;
  }

  .sm\:hover\:cl-via-green-300:hover {
    --gradient-via-color: #9ae6b4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 230, 180, 0)) !important;
  }

  .sm\:hover\:cl-via-green-400:hover {
    --gradient-via-color: #68d391 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(104, 211, 145, 0)) !important;
  }

  .sm\:hover\:cl-via-green-500:hover {
    --gradient-via-color: #48bb78 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(72, 187, 120, 0)) !important;
  }

  .sm\:hover\:cl-via-green-600:hover {
    --gradient-via-color: #38a169 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(56, 161, 105, 0)) !important;
  }

  .sm\:hover\:cl-via-green-700:hover {
    --gradient-via-color: #2f855a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(47, 133, 90, 0)) !important;
  }

  .sm\:hover\:cl-via-green-800:hover {
    --gradient-via-color: #276749 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(39, 103, 73, 0)) !important;
  }

  .sm\:hover\:cl-via-green-900:hover {
    --gradient-via-color: #22543d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(34, 84, 61, 0)) !important;
  }

  .sm\:hover\:cl-via-teal-100:hover {
    --gradient-via-color: #e6fffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 255, 250, 0)) !important;
  }

  .sm\:hover\:cl-via-teal-200:hover {
    --gradient-via-color: #b2f5ea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(178, 245, 234, 0)) !important;
  }

  .sm\:hover\:cl-via-teal-300:hover {
    --gradient-via-color: #81e6d9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(129, 230, 217, 0)) !important;
  }

  .sm\:hover\:cl-via-teal-400:hover {
    --gradient-via-color: #4fd1c5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(79, 209, 197, 0)) !important;
  }

  .sm\:hover\:cl-via-teal-500:hover {
    --gradient-via-color: #38b2ac !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(56, 178, 172, 0)) !important;
  }

  .sm\:hover\:cl-via-teal-600:hover {
    --gradient-via-color: #319795 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(49, 151, 149, 0)) !important;
  }

  .sm\:hover\:cl-via-teal-700:hover {
    --gradient-via-color: #2c7a7b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(44, 122, 123, 0)) !important;
  }

  .sm\:hover\:cl-via-teal-800:hover {
    --gradient-via-color: #285e61 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(40, 94, 97, 0)) !important;
  }

  .sm\:hover\:cl-via-teal-900:hover {
    --gradient-via-color: #234e52 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(35, 78, 82, 0)) !important;
  }

  .sm\:hover\:cl-via-blue-100:hover {
    --gradient-via-color: #ebf8ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(235, 248, 255, 0)) !important;
  }

  .sm\:hover\:cl-via-blue-200:hover {
    --gradient-via-color: #bee3f8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(190, 227, 248, 0)) !important;
  }

  .sm\:hover\:cl-via-blue-300:hover {
    --gradient-via-color: #90cdf4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 205, 244, 0)) !important;
  }

  .sm\:hover\:cl-via-blue-400:hover {
    --gradient-via-color: #63b3ed !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(99, 179, 237, 0)) !important;
  }

  .sm\:hover\:cl-via-blue-500:hover {
    --gradient-via-color: #4299e1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 153, 225, 0)) !important;
  }

  .sm\:hover\:cl-via-blue-600:hover {
    --gradient-via-color: #3182ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(49, 130, 206, 0)) !important;
  }

  .sm\:hover\:cl-via-blue-700:hover {
    --gradient-via-color: #2b6cb0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(43, 108, 176, 0)) !important;
  }

  .sm\:hover\:cl-via-blue-800:hover {
    --gradient-via-color: #2c5282 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(44, 82, 130, 0)) !important;
  }

  .sm\:hover\:cl-via-blue-900:hover {
    --gradient-via-color: #2a4365 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(42, 67, 101, 0)) !important;
  }

  .sm\:hover\:cl-via-indigo-100:hover {
    --gradient-via-color: #ebf4ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(235, 244, 255, 0)) !important;
  }

  .sm\:hover\:cl-via-indigo-200:hover {
    --gradient-via-color: #c3dafe !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(195, 218, 254, 0)) !important;
  }

  .sm\:hover\:cl-via-indigo-300:hover {
    --gradient-via-color: #a3bffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(163, 191, 250, 0)) !important;
  }

  .sm\:hover\:cl-via-indigo-400:hover {
    --gradient-via-color: #7f9cf5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(127, 156, 245, 0)) !important;
  }

  .sm\:hover\:cl-via-indigo-500:hover {
    --gradient-via-color: #667eea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 126, 234, 0)) !important;
  }

  .sm\:hover\:cl-via-indigo-600:hover {
    --gradient-via-color: #5a67d8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 103, 216, 0)) !important;
  }

  .sm\:hover\:cl-via-indigo-700:hover {
    --gradient-via-color: #4c51bf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(76, 81, 191, 0)) !important;
  }

  .sm\:hover\:cl-via-indigo-800:hover {
    --gradient-via-color: #434190 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(67, 65, 144, 0)) !important;
  }

  .sm\:hover\:cl-via-indigo-900:hover {
    --gradient-via-color: #3c366b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(60, 54, 107, 0)) !important;
  }

  .sm\:hover\:cl-via-purple-100:hover {
    --gradient-via-color: #faf5ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 245, 255, 0)) !important;
  }

  .sm\:hover\:cl-via-purple-200:hover {
    --gradient-via-color: #e9d8fd !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(233, 216, 253, 0)) !important;
  }

  .sm\:hover\:cl-via-purple-300:hover {
    --gradient-via-color: #d6bcfa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(214, 188, 250, 0)) !important;
  }

  .sm\:hover\:cl-via-purple-400:hover {
    --gradient-via-color: #b794f4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(183, 148, 244, 0)) !important;
  }

  .sm\:hover\:cl-via-purple-500:hover {
    --gradient-via-color: #9f7aea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(159, 122, 234, 0)) !important;
  }

  .sm\:hover\:cl-via-purple-600:hover {
    --gradient-via-color: #805ad5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(128, 90, 213, 0)) !important;
  }

  .sm\:hover\:cl-via-purple-700:hover {
    --gradient-via-color: #6b46c1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(107, 70, 193, 0)) !important;
  }

  .sm\:hover\:cl-via-purple-800:hover {
    --gradient-via-color: #553c9a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(85, 60, 154, 0)) !important;
  }

  .sm\:hover\:cl-via-purple-900:hover {
    --gradient-via-color: #44337a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(68, 51, 122, 0)) !important;
  }

  .sm\:hover\:cl-via-pink-100:hover {
    --gradient-via-color: #fff5f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 245, 247, 0)) !important;
  }

  .sm\:hover\:cl-via-pink-200:hover {
    --gradient-via-color: #fed7e2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 215, 226, 0)) !important;
  }

  .sm\:hover\:cl-via-pink-300:hover {
    --gradient-via-color: #fbb6ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 182, 206, 0)) !important;
  }

  .sm\:hover\:cl-via-pink-400:hover {
    --gradient-via-color: #f687b3 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 135, 179, 0)) !important;
  }

  .sm\:hover\:cl-via-pink-500:hover {
    --gradient-via-color: #ed64a6 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 100, 166, 0)) !important;
  }

  .sm\:hover\:cl-via-pink-600:hover {
    --gradient-via-color: #d53f8c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(213, 63, 140, 0)) !important;
  }

  .sm\:hover\:cl-via-pink-700:hover {
    --gradient-via-color: #b83280 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(184, 50, 128, 0)) !important;
  }

  .sm\:hover\:cl-via-pink-800:hover {
    --gradient-via-color: #97266d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(151, 38, 109, 0)) !important;
  }

  .sm\:hover\:cl-via-pink-900:hover {
    --gradient-via-color: #702459 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(112, 36, 89, 0)) !important;
  }

  .sm\:hover\:cl-via-ui-gray-100:hover {
    --gradient-via-color: #f1f1f1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(241, 241, 241, 0)) !important;
  }

  .sm\:hover\:cl-via-ui-brown-100:hover {
    --gradient-via-color: #f3ecdc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(243, 236, 220, 0)) !important;
  }

  .sm\:hover\:cl-via-ui-brown-200:hover {
    --gradient-via-color: #e8e0c9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(232, 224, 201, 0)) !important;
  }

  .sm\:hover\:cl-via-ui-brown-300:hover {
    --gradient-via-color: #d0c095 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(208, 192, 149, 0)) !important;
  }

  .sm\:hover\:cl-via-ui-brown-700:hover {
    --gradient-via-color: #bd6005 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(189, 96, 5, 0)) !important;
  }

  .sm\:hover\:cl-via-ui-green-300:hover {
    --gradient-via-color: #aac74c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(170, 199, 76, 0)) !important;
  }

  .sm\:hover\:cl-via-ui-green-400:hover {
    --gradient-via-color: #71893e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(113, 137, 62, 0)) !important;
  }

  .sm\:hover\:cl-via-ui-orange-500:hover {
    --gradient-via-color: #e27212 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 114, 18, 0)) !important;
  }

  .sm\:hover\:cl-via-facebook:hover {
    --gradient-via-color: #3b5998 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(59, 89, 152, 0)) !important;
  }

  .sm\:hover\:cl-via-twitter:hover {
    --gradient-via-color: #00acee !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 172, 238, 0)) !important;
  }

  .sm\:hover\:cl-via-twitch:hover {
    --gradient-via-color: #6441a5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 65, 165, 0)) !important;
  }

  .sm\:hover\:cl-via-youtube:hover {
    --gradient-via-color: #FF0000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 0, 0, 0)) !important;
  }

  .sm\:hover\:cl-to-transparent:hover {
    --gradient-to-color: transparent !important;
  }

  .sm\:hover\:cl-to-current:hover {
    --gradient-to-color: currentColor !important;
  }

  .sm\:hover\:cl-to-black:hover {
    --gradient-to-color: #000 !important;
  }

  .sm\:hover\:cl-to-white:hover {
    --gradient-to-color: #fff !important;
  }

  .sm\:hover\:cl-to-gray-100:hover {
    --gradient-to-color: #f7fafc !important;
  }

  .sm\:hover\:cl-to-gray-200:hover {
    --gradient-to-color: #edf2f7 !important;
  }

  .sm\:hover\:cl-to-gray-300:hover {
    --gradient-to-color: #e2e8f0 !important;
  }

  .sm\:hover\:cl-to-gray-400:hover {
    --gradient-to-color: #cbd5e0 !important;
  }

  .sm\:hover\:cl-to-gray-500:hover {
    --gradient-to-color: #a0aec0 !important;
  }

  .sm\:hover\:cl-to-gray-600:hover {
    --gradient-to-color: #718096 !important;
  }

  .sm\:hover\:cl-to-gray-700:hover {
    --gradient-to-color: #4a5568 !important;
  }

  .sm\:hover\:cl-to-gray-800:hover {
    --gradient-to-color: #2d3748 !important;
  }

  .sm\:hover\:cl-to-gray-900:hover {
    --gradient-to-color: #1a202c !important;
  }

  .sm\:hover\:cl-to-red-100:hover {
    --gradient-to-color: #fff5f5 !important;
  }

  .sm\:hover\:cl-to-red-200:hover {
    --gradient-to-color: #fed7d7 !important;
  }

  .sm\:hover\:cl-to-red-300:hover {
    --gradient-to-color: #feb2b2 !important;
  }

  .sm\:hover\:cl-to-red-400:hover {
    --gradient-to-color: #fc8181 !important;
  }

  .sm\:hover\:cl-to-red-500:hover {
    --gradient-to-color: #f56565 !important;
  }

  .sm\:hover\:cl-to-red-600:hover {
    --gradient-to-color: #e53e3e !important;
  }

  .sm\:hover\:cl-to-red-700:hover {
    --gradient-to-color: #c53030 !important;
  }

  .sm\:hover\:cl-to-red-800:hover {
    --gradient-to-color: #9b2c2c !important;
  }

  .sm\:hover\:cl-to-red-900:hover {
    --gradient-to-color: #742a2a !important;
  }

  .sm\:hover\:cl-to-orange-100:hover {
    --gradient-to-color: #fffaf0 !important;
  }

  .sm\:hover\:cl-to-orange-200:hover {
    --gradient-to-color: #feebc8 !important;
  }

  .sm\:hover\:cl-to-orange-300:hover {
    --gradient-to-color: #fbd38d !important;
  }

  .sm\:hover\:cl-to-orange-400:hover {
    --gradient-to-color: #f6ad55 !important;
  }

  .sm\:hover\:cl-to-orange-500:hover {
    --gradient-to-color: #ed8936 !important;
  }

  .sm\:hover\:cl-to-orange-600:hover {
    --gradient-to-color: #dd6b20 !important;
  }

  .sm\:hover\:cl-to-orange-700:hover {
    --gradient-to-color: #c05621 !important;
  }

  .sm\:hover\:cl-to-orange-800:hover {
    --gradient-to-color: #9c4221 !important;
  }

  .sm\:hover\:cl-to-orange-900:hover {
    --gradient-to-color: #7b341e !important;
  }

  .sm\:hover\:cl-to-yellow-100:hover {
    --gradient-to-color: #fffff0 !important;
  }

  .sm\:hover\:cl-to-yellow-200:hover {
    --gradient-to-color: #fefcbf !important;
  }

  .sm\:hover\:cl-to-yellow-300:hover {
    --gradient-to-color: #faf089 !important;
  }

  .sm\:hover\:cl-to-yellow-400:hover {
    --gradient-to-color: #f6e05e !important;
  }

  .sm\:hover\:cl-to-yellow-500:hover {
    --gradient-to-color: #ecc94b !important;
  }

  .sm\:hover\:cl-to-yellow-600:hover {
    --gradient-to-color: #d69e2e !important;
  }

  .sm\:hover\:cl-to-yellow-700:hover {
    --gradient-to-color: #b7791f !important;
  }

  .sm\:hover\:cl-to-yellow-800:hover {
    --gradient-to-color: #975a16 !important;
  }

  .sm\:hover\:cl-to-yellow-900:hover {
    --gradient-to-color: #744210 !important;
  }

  .sm\:hover\:cl-to-green-100:hover {
    --gradient-to-color: #f0fff4 !important;
  }

  .sm\:hover\:cl-to-green-200:hover {
    --gradient-to-color: #c6f6d5 !important;
  }

  .sm\:hover\:cl-to-green-300:hover {
    --gradient-to-color: #9ae6b4 !important;
  }

  .sm\:hover\:cl-to-green-400:hover {
    --gradient-to-color: #68d391 !important;
  }

  .sm\:hover\:cl-to-green-500:hover {
    --gradient-to-color: #48bb78 !important;
  }

  .sm\:hover\:cl-to-green-600:hover {
    --gradient-to-color: #38a169 !important;
  }

  .sm\:hover\:cl-to-green-700:hover {
    --gradient-to-color: #2f855a !important;
  }

  .sm\:hover\:cl-to-green-800:hover {
    --gradient-to-color: #276749 !important;
  }

  .sm\:hover\:cl-to-green-900:hover {
    --gradient-to-color: #22543d !important;
  }

  .sm\:hover\:cl-to-teal-100:hover {
    --gradient-to-color: #e6fffa !important;
  }

  .sm\:hover\:cl-to-teal-200:hover {
    --gradient-to-color: #b2f5ea !important;
  }

  .sm\:hover\:cl-to-teal-300:hover {
    --gradient-to-color: #81e6d9 !important;
  }

  .sm\:hover\:cl-to-teal-400:hover {
    --gradient-to-color: #4fd1c5 !important;
  }

  .sm\:hover\:cl-to-teal-500:hover {
    --gradient-to-color: #38b2ac !important;
  }

  .sm\:hover\:cl-to-teal-600:hover {
    --gradient-to-color: #319795 !important;
  }

  .sm\:hover\:cl-to-teal-700:hover {
    --gradient-to-color: #2c7a7b !important;
  }

  .sm\:hover\:cl-to-teal-800:hover {
    --gradient-to-color: #285e61 !important;
  }

  .sm\:hover\:cl-to-teal-900:hover {
    --gradient-to-color: #234e52 !important;
  }

  .sm\:hover\:cl-to-blue-100:hover {
    --gradient-to-color: #ebf8ff !important;
  }

  .sm\:hover\:cl-to-blue-200:hover {
    --gradient-to-color: #bee3f8 !important;
  }

  .sm\:hover\:cl-to-blue-300:hover {
    --gradient-to-color: #90cdf4 !important;
  }

  .sm\:hover\:cl-to-blue-400:hover {
    --gradient-to-color: #63b3ed !important;
  }

  .sm\:hover\:cl-to-blue-500:hover {
    --gradient-to-color: #4299e1 !important;
  }

  .sm\:hover\:cl-to-blue-600:hover {
    --gradient-to-color: #3182ce !important;
  }

  .sm\:hover\:cl-to-blue-700:hover {
    --gradient-to-color: #2b6cb0 !important;
  }

  .sm\:hover\:cl-to-blue-800:hover {
    --gradient-to-color: #2c5282 !important;
  }

  .sm\:hover\:cl-to-blue-900:hover {
    --gradient-to-color: #2a4365 !important;
  }

  .sm\:hover\:cl-to-indigo-100:hover {
    --gradient-to-color: #ebf4ff !important;
  }

  .sm\:hover\:cl-to-indigo-200:hover {
    --gradient-to-color: #c3dafe !important;
  }

  .sm\:hover\:cl-to-indigo-300:hover {
    --gradient-to-color: #a3bffa !important;
  }

  .sm\:hover\:cl-to-indigo-400:hover {
    --gradient-to-color: #7f9cf5 !important;
  }

  .sm\:hover\:cl-to-indigo-500:hover {
    --gradient-to-color: #667eea !important;
  }

  .sm\:hover\:cl-to-indigo-600:hover {
    --gradient-to-color: #5a67d8 !important;
  }

  .sm\:hover\:cl-to-indigo-700:hover {
    --gradient-to-color: #4c51bf !important;
  }

  .sm\:hover\:cl-to-indigo-800:hover {
    --gradient-to-color: #434190 !important;
  }

  .sm\:hover\:cl-to-indigo-900:hover {
    --gradient-to-color: #3c366b !important;
  }

  .sm\:hover\:cl-to-purple-100:hover {
    --gradient-to-color: #faf5ff !important;
  }

  .sm\:hover\:cl-to-purple-200:hover {
    --gradient-to-color: #e9d8fd !important;
  }

  .sm\:hover\:cl-to-purple-300:hover {
    --gradient-to-color: #d6bcfa !important;
  }

  .sm\:hover\:cl-to-purple-400:hover {
    --gradient-to-color: #b794f4 !important;
  }

  .sm\:hover\:cl-to-purple-500:hover {
    --gradient-to-color: #9f7aea !important;
  }

  .sm\:hover\:cl-to-purple-600:hover {
    --gradient-to-color: #805ad5 !important;
  }

  .sm\:hover\:cl-to-purple-700:hover {
    --gradient-to-color: #6b46c1 !important;
  }

  .sm\:hover\:cl-to-purple-800:hover {
    --gradient-to-color: #553c9a !important;
  }

  .sm\:hover\:cl-to-purple-900:hover {
    --gradient-to-color: #44337a !important;
  }

  .sm\:hover\:cl-to-pink-100:hover {
    --gradient-to-color: #fff5f7 !important;
  }

  .sm\:hover\:cl-to-pink-200:hover {
    --gradient-to-color: #fed7e2 !important;
  }

  .sm\:hover\:cl-to-pink-300:hover {
    --gradient-to-color: #fbb6ce !important;
  }

  .sm\:hover\:cl-to-pink-400:hover {
    --gradient-to-color: #f687b3 !important;
  }

  .sm\:hover\:cl-to-pink-500:hover {
    --gradient-to-color: #ed64a6 !important;
  }

  .sm\:hover\:cl-to-pink-600:hover {
    --gradient-to-color: #d53f8c !important;
  }

  .sm\:hover\:cl-to-pink-700:hover {
    --gradient-to-color: #b83280 !important;
  }

  .sm\:hover\:cl-to-pink-800:hover {
    --gradient-to-color: #97266d !important;
  }

  .sm\:hover\:cl-to-pink-900:hover {
    --gradient-to-color: #702459 !important;
  }

  .sm\:hover\:cl-to-ui-gray-100:hover {
    --gradient-to-color: #f1f1f1 !important;
  }

  .sm\:hover\:cl-to-ui-brown-100:hover {
    --gradient-to-color: #f3ecdc !important;
  }

  .sm\:hover\:cl-to-ui-brown-200:hover {
    --gradient-to-color: #e8e0c9 !important;
  }

  .sm\:hover\:cl-to-ui-brown-300:hover {
    --gradient-to-color: #d0c095 !important;
  }

  .sm\:hover\:cl-to-ui-brown-700:hover {
    --gradient-to-color: #bd6005 !important;
  }

  .sm\:hover\:cl-to-ui-green-300:hover {
    --gradient-to-color: #aac74c !important;
  }

  .sm\:hover\:cl-to-ui-green-400:hover {
    --gradient-to-color: #71893e !important;
  }

  .sm\:hover\:cl-to-ui-orange-500:hover {
    --gradient-to-color: #e27212 !important;
  }

  .sm\:hover\:cl-to-facebook:hover {
    --gradient-to-color: #3b5998 !important;
  }

  .sm\:hover\:cl-to-twitter:hover {
    --gradient-to-color: #00acee !important;
  }

  .sm\:hover\:cl-to-twitch:hover {
    --gradient-to-color: #6441a5 !important;
  }

  .sm\:hover\:cl-to-youtube:hover {
    --gradient-to-color: #FF0000 !important;
  }

  .sm\:focus\:cl-from-transparent:focus {
    --gradient-from-color: transparent !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .sm\:focus\:cl-from-current:focus {
    --gradient-from-color: currentColor !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .sm\:focus\:cl-from-black:focus {
    --gradient-from-color: #000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .sm\:focus\:cl-from-white:focus {
    --gradient-from-color: #fff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .sm\:focus\:cl-from-gray-100:focus {
    --gradient-from-color: #f7fafc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 250, 252, 0)) !important;
  }

  .sm\:focus\:cl-from-gray-200:focus {
    --gradient-from-color: #edf2f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 242, 247, 0)) !important;
  }

  .sm\:focus\:cl-from-gray-300:focus {
    --gradient-from-color: #e2e8f0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 232, 240, 0)) !important;
  }

  .sm\:focus\:cl-from-gray-400:focus {
    --gradient-from-color: #cbd5e0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(203, 213, 224, 0)) !important;
  }

  .sm\:focus\:cl-from-gray-500:focus {
    --gradient-from-color: #a0aec0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 174, 192, 0)) !important;
  }

  .sm\:focus\:cl-from-gray-600:focus {
    --gradient-from-color: #718096 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(113, 128, 150, 0)) !important;
  }

  .sm\:focus\:cl-from-gray-700:focus {
    --gradient-from-color: #4a5568 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 85, 104, 0)) !important;
  }

  .sm\:focus\:cl-from-gray-800:focus {
    --gradient-from-color: #2d3748 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(45, 55, 72, 0)) !important;
  }

  .sm\:focus\:cl-from-gray-900:focus {
    --gradient-from-color: #1a202c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 32, 44, 0)) !important;
  }

  .sm\:focus\:cl-from-red-100:focus {
    --gradient-from-color: #fff5f5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 245, 245, 0)) !important;
  }

  .sm\:focus\:cl-from-red-200:focus {
    --gradient-from-color: #fed7d7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 215, 215, 0)) !important;
  }

  .sm\:focus\:cl-from-red-300:focus {
    --gradient-from-color: #feb2b2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 178, 178, 0)) !important;
  }

  .sm\:focus\:cl-from-red-400:focus {
    --gradient-from-color: #fc8181 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(252, 129, 129, 0)) !important;
  }

  .sm\:focus\:cl-from-red-500:focus {
    --gradient-from-color: #f56565 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(245, 101, 101, 0)) !important;
  }

  .sm\:focus\:cl-from-red-600:focus {
    --gradient-from-color: #e53e3e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(229, 62, 62, 0)) !important;
  }

  .sm\:focus\:cl-from-red-700:focus {
    --gradient-from-color: #c53030 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(197, 48, 48, 0)) !important;
  }

  .sm\:focus\:cl-from-red-800:focus {
    --gradient-from-color: #9b2c2c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(155, 44, 44, 0)) !important;
  }

  .sm\:focus\:cl-from-red-900:focus {
    --gradient-from-color: #742a2a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(116, 42, 42, 0)) !important;
  }

  .sm\:focus\:cl-from-orange-100:focus {
    --gradient-from-color: #fffaf0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 240, 0)) !important;
  }

  .sm\:focus\:cl-from-orange-200:focus {
    --gradient-from-color: #feebc8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 235, 200, 0)) !important;
  }

  .sm\:focus\:cl-from-orange-300:focus {
    --gradient-from-color: #fbd38d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 211, 141, 0)) !important;
  }

  .sm\:focus\:cl-from-orange-400:focus {
    --gradient-from-color: #f6ad55 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 173, 85, 0)) !important;
  }

  .sm\:focus\:cl-from-orange-500:focus {
    --gradient-from-color: #ed8936 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 137, 54, 0)) !important;
  }

  .sm\:focus\:cl-from-orange-600:focus {
    --gradient-from-color: #dd6b20 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(221, 107, 32, 0)) !important;
  }

  .sm\:focus\:cl-from-orange-700:focus {
    --gradient-from-color: #c05621 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(192, 86, 33, 0)) !important;
  }

  .sm\:focus\:cl-from-orange-800:focus {
    --gradient-from-color: #9c4221 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 66, 33, 0)) !important;
  }

  .sm\:focus\:cl-from-orange-900:focus {
    --gradient-from-color: #7b341e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(123, 52, 30, 0)) !important;
  }

  .sm\:focus\:cl-from-yellow-100:focus {
    --gradient-from-color: #fffff0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 240, 0)) !important;
  }

  .sm\:focus\:cl-from-yellow-200:focus {
    --gradient-from-color: #fefcbf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 252, 191, 0)) !important;
  }

  .sm\:focus\:cl-from-yellow-300:focus {
    --gradient-from-color: #faf089 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 240, 137, 0)) !important;
  }

  .sm\:focus\:cl-from-yellow-400:focus {
    --gradient-from-color: #f6e05e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 224, 94, 0)) !important;
  }

  .sm\:focus\:cl-from-yellow-500:focus {
    --gradient-from-color: #ecc94b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 201, 75, 0)) !important;
  }

  .sm\:focus\:cl-from-yellow-600:focus {
    --gradient-from-color: #d69e2e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(214, 158, 46, 0)) !important;
  }

  .sm\:focus\:cl-from-yellow-700:focus {
    --gradient-from-color: #b7791f !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(183, 121, 31, 0)) !important;
  }

  .sm\:focus\:cl-from-yellow-800:focus {
    --gradient-from-color: #975a16 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(151, 90, 22, 0)) !important;
  }

  .sm\:focus\:cl-from-yellow-900:focus {
    --gradient-from-color: #744210 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(116, 66, 16, 0)) !important;
  }

  .sm\:focus\:cl-from-green-100:focus {
    --gradient-from-color: #f0fff4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(240, 255, 244, 0)) !important;
  }

  .sm\:focus\:cl-from-green-200:focus {
    --gradient-from-color: #c6f6d5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(198, 246, 213, 0)) !important;
  }

  .sm\:focus\:cl-from-green-300:focus {
    --gradient-from-color: #9ae6b4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 230, 180, 0)) !important;
  }

  .sm\:focus\:cl-from-green-400:focus {
    --gradient-from-color: #68d391 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(104, 211, 145, 0)) !important;
  }

  .sm\:focus\:cl-from-green-500:focus {
    --gradient-from-color: #48bb78 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(72, 187, 120, 0)) !important;
  }

  .sm\:focus\:cl-from-green-600:focus {
    --gradient-from-color: #38a169 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(56, 161, 105, 0)) !important;
  }

  .sm\:focus\:cl-from-green-700:focus {
    --gradient-from-color: #2f855a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(47, 133, 90, 0)) !important;
  }

  .sm\:focus\:cl-from-green-800:focus {
    --gradient-from-color: #276749 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(39, 103, 73, 0)) !important;
  }

  .sm\:focus\:cl-from-green-900:focus {
    --gradient-from-color: #22543d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(34, 84, 61, 0)) !important;
  }

  .sm\:focus\:cl-from-teal-100:focus {
    --gradient-from-color: #e6fffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 255, 250, 0)) !important;
  }

  .sm\:focus\:cl-from-teal-200:focus {
    --gradient-from-color: #b2f5ea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(178, 245, 234, 0)) !important;
  }

  .sm\:focus\:cl-from-teal-300:focus {
    --gradient-from-color: #81e6d9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(129, 230, 217, 0)) !important;
  }

  .sm\:focus\:cl-from-teal-400:focus {
    --gradient-from-color: #4fd1c5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(79, 209, 197, 0)) !important;
  }

  .sm\:focus\:cl-from-teal-500:focus {
    --gradient-from-color: #38b2ac !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(56, 178, 172, 0)) !important;
  }

  .sm\:focus\:cl-from-teal-600:focus {
    --gradient-from-color: #319795 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(49, 151, 149, 0)) !important;
  }

  .sm\:focus\:cl-from-teal-700:focus {
    --gradient-from-color: #2c7a7b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(44, 122, 123, 0)) !important;
  }

  .sm\:focus\:cl-from-teal-800:focus {
    --gradient-from-color: #285e61 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(40, 94, 97, 0)) !important;
  }

  .sm\:focus\:cl-from-teal-900:focus {
    --gradient-from-color: #234e52 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(35, 78, 82, 0)) !important;
  }

  .sm\:focus\:cl-from-blue-100:focus {
    --gradient-from-color: #ebf8ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(235, 248, 255, 0)) !important;
  }

  .sm\:focus\:cl-from-blue-200:focus {
    --gradient-from-color: #bee3f8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(190, 227, 248, 0)) !important;
  }

  .sm\:focus\:cl-from-blue-300:focus {
    --gradient-from-color: #90cdf4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 205, 244, 0)) !important;
  }

  .sm\:focus\:cl-from-blue-400:focus {
    --gradient-from-color: #63b3ed !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(99, 179, 237, 0)) !important;
  }

  .sm\:focus\:cl-from-blue-500:focus {
    --gradient-from-color: #4299e1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 153, 225, 0)) !important;
  }

  .sm\:focus\:cl-from-blue-600:focus {
    --gradient-from-color: #3182ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(49, 130, 206, 0)) !important;
  }

  .sm\:focus\:cl-from-blue-700:focus {
    --gradient-from-color: #2b6cb0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(43, 108, 176, 0)) !important;
  }

  .sm\:focus\:cl-from-blue-800:focus {
    --gradient-from-color: #2c5282 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(44, 82, 130, 0)) !important;
  }

  .sm\:focus\:cl-from-blue-900:focus {
    --gradient-from-color: #2a4365 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(42, 67, 101, 0)) !important;
  }

  .sm\:focus\:cl-from-indigo-100:focus {
    --gradient-from-color: #ebf4ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(235, 244, 255, 0)) !important;
  }

  .sm\:focus\:cl-from-indigo-200:focus {
    --gradient-from-color: #c3dafe !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(195, 218, 254, 0)) !important;
  }

  .sm\:focus\:cl-from-indigo-300:focus {
    --gradient-from-color: #a3bffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(163, 191, 250, 0)) !important;
  }

  .sm\:focus\:cl-from-indigo-400:focus {
    --gradient-from-color: #7f9cf5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(127, 156, 245, 0)) !important;
  }

  .sm\:focus\:cl-from-indigo-500:focus {
    --gradient-from-color: #667eea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 126, 234, 0)) !important;
  }

  .sm\:focus\:cl-from-indigo-600:focus {
    --gradient-from-color: #5a67d8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 103, 216, 0)) !important;
  }

  .sm\:focus\:cl-from-indigo-700:focus {
    --gradient-from-color: #4c51bf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(76, 81, 191, 0)) !important;
  }

  .sm\:focus\:cl-from-indigo-800:focus {
    --gradient-from-color: #434190 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(67, 65, 144, 0)) !important;
  }

  .sm\:focus\:cl-from-indigo-900:focus {
    --gradient-from-color: #3c366b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(60, 54, 107, 0)) !important;
  }

  .sm\:focus\:cl-from-purple-100:focus {
    --gradient-from-color: #faf5ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 245, 255, 0)) !important;
  }

  .sm\:focus\:cl-from-purple-200:focus {
    --gradient-from-color: #e9d8fd !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(233, 216, 253, 0)) !important;
  }

  .sm\:focus\:cl-from-purple-300:focus {
    --gradient-from-color: #d6bcfa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(214, 188, 250, 0)) !important;
  }

  .sm\:focus\:cl-from-purple-400:focus {
    --gradient-from-color: #b794f4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(183, 148, 244, 0)) !important;
  }

  .sm\:focus\:cl-from-purple-500:focus {
    --gradient-from-color: #9f7aea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(159, 122, 234, 0)) !important;
  }

  .sm\:focus\:cl-from-purple-600:focus {
    --gradient-from-color: #805ad5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(128, 90, 213, 0)) !important;
  }

  .sm\:focus\:cl-from-purple-700:focus {
    --gradient-from-color: #6b46c1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(107, 70, 193, 0)) !important;
  }

  .sm\:focus\:cl-from-purple-800:focus {
    --gradient-from-color: #553c9a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(85, 60, 154, 0)) !important;
  }

  .sm\:focus\:cl-from-purple-900:focus {
    --gradient-from-color: #44337a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(68, 51, 122, 0)) !important;
  }

  .sm\:focus\:cl-from-pink-100:focus {
    --gradient-from-color: #fff5f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 245, 247, 0)) !important;
  }

  .sm\:focus\:cl-from-pink-200:focus {
    --gradient-from-color: #fed7e2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 215, 226, 0)) !important;
  }

  .sm\:focus\:cl-from-pink-300:focus {
    --gradient-from-color: #fbb6ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 182, 206, 0)) !important;
  }

  .sm\:focus\:cl-from-pink-400:focus {
    --gradient-from-color: #f687b3 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 135, 179, 0)) !important;
  }

  .sm\:focus\:cl-from-pink-500:focus {
    --gradient-from-color: #ed64a6 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 100, 166, 0)) !important;
  }

  .sm\:focus\:cl-from-pink-600:focus {
    --gradient-from-color: #d53f8c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(213, 63, 140, 0)) !important;
  }

  .sm\:focus\:cl-from-pink-700:focus {
    --gradient-from-color: #b83280 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(184, 50, 128, 0)) !important;
  }

  .sm\:focus\:cl-from-pink-800:focus {
    --gradient-from-color: #97266d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(151, 38, 109, 0)) !important;
  }

  .sm\:focus\:cl-from-pink-900:focus {
    --gradient-from-color: #702459 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(112, 36, 89, 0)) !important;
  }

  .sm\:focus\:cl-from-ui-gray-100:focus {
    --gradient-from-color: #f1f1f1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(241, 241, 241, 0)) !important;
  }

  .sm\:focus\:cl-from-ui-brown-100:focus {
    --gradient-from-color: #f3ecdc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(243, 236, 220, 0)) !important;
  }

  .sm\:focus\:cl-from-ui-brown-200:focus {
    --gradient-from-color: #e8e0c9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(232, 224, 201, 0)) !important;
  }

  .sm\:focus\:cl-from-ui-brown-300:focus {
    --gradient-from-color: #d0c095 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(208, 192, 149, 0)) !important;
  }

  .sm\:focus\:cl-from-ui-brown-700:focus {
    --gradient-from-color: #bd6005 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(189, 96, 5, 0)) !important;
  }

  .sm\:focus\:cl-from-ui-green-300:focus {
    --gradient-from-color: #aac74c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(170, 199, 76, 0)) !important;
  }

  .sm\:focus\:cl-from-ui-green-400:focus {
    --gradient-from-color: #71893e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(113, 137, 62, 0)) !important;
  }

  .sm\:focus\:cl-from-ui-orange-500:focus {
    --gradient-from-color: #e27212 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 114, 18, 0)) !important;
  }

  .sm\:focus\:cl-from-facebook:focus {
    --gradient-from-color: #3b5998 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(59, 89, 152, 0)) !important;
  }

  .sm\:focus\:cl-from-twitter:focus {
    --gradient-from-color: #00acee !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 172, 238, 0)) !important;
  }

  .sm\:focus\:cl-from-twitch:focus {
    --gradient-from-color: #6441a5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 65, 165, 0)) !important;
  }

  .sm\:focus\:cl-from-youtube:focus {
    --gradient-from-color: #FF0000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 0, 0, 0)) !important;
  }

  .sm\:focus\:cl-via-transparent:focus {
    --gradient-via-color: transparent !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .sm\:focus\:cl-via-current:focus {
    --gradient-via-color: currentColor !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .sm\:focus\:cl-via-black:focus {
    --gradient-via-color: #000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .sm\:focus\:cl-via-white:focus {
    --gradient-via-color: #fff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .sm\:focus\:cl-via-gray-100:focus {
    --gradient-via-color: #f7fafc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 250, 252, 0)) !important;
  }

  .sm\:focus\:cl-via-gray-200:focus {
    --gradient-via-color: #edf2f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 242, 247, 0)) !important;
  }

  .sm\:focus\:cl-via-gray-300:focus {
    --gradient-via-color: #e2e8f0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 232, 240, 0)) !important;
  }

  .sm\:focus\:cl-via-gray-400:focus {
    --gradient-via-color: #cbd5e0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(203, 213, 224, 0)) !important;
  }

  .sm\:focus\:cl-via-gray-500:focus {
    --gradient-via-color: #a0aec0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 174, 192, 0)) !important;
  }

  .sm\:focus\:cl-via-gray-600:focus {
    --gradient-via-color: #718096 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(113, 128, 150, 0)) !important;
  }

  .sm\:focus\:cl-via-gray-700:focus {
    --gradient-via-color: #4a5568 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 85, 104, 0)) !important;
  }

  .sm\:focus\:cl-via-gray-800:focus {
    --gradient-via-color: #2d3748 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(45, 55, 72, 0)) !important;
  }

  .sm\:focus\:cl-via-gray-900:focus {
    --gradient-via-color: #1a202c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 32, 44, 0)) !important;
  }

  .sm\:focus\:cl-via-red-100:focus {
    --gradient-via-color: #fff5f5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 245, 245, 0)) !important;
  }

  .sm\:focus\:cl-via-red-200:focus {
    --gradient-via-color: #fed7d7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 215, 215, 0)) !important;
  }

  .sm\:focus\:cl-via-red-300:focus {
    --gradient-via-color: #feb2b2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 178, 178, 0)) !important;
  }

  .sm\:focus\:cl-via-red-400:focus {
    --gradient-via-color: #fc8181 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(252, 129, 129, 0)) !important;
  }

  .sm\:focus\:cl-via-red-500:focus {
    --gradient-via-color: #f56565 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(245, 101, 101, 0)) !important;
  }

  .sm\:focus\:cl-via-red-600:focus {
    --gradient-via-color: #e53e3e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(229, 62, 62, 0)) !important;
  }

  .sm\:focus\:cl-via-red-700:focus {
    --gradient-via-color: #c53030 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(197, 48, 48, 0)) !important;
  }

  .sm\:focus\:cl-via-red-800:focus {
    --gradient-via-color: #9b2c2c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(155, 44, 44, 0)) !important;
  }

  .sm\:focus\:cl-via-red-900:focus {
    --gradient-via-color: #742a2a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(116, 42, 42, 0)) !important;
  }

  .sm\:focus\:cl-via-orange-100:focus {
    --gradient-via-color: #fffaf0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 240, 0)) !important;
  }

  .sm\:focus\:cl-via-orange-200:focus {
    --gradient-via-color: #feebc8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 235, 200, 0)) !important;
  }

  .sm\:focus\:cl-via-orange-300:focus {
    --gradient-via-color: #fbd38d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 211, 141, 0)) !important;
  }

  .sm\:focus\:cl-via-orange-400:focus {
    --gradient-via-color: #f6ad55 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 173, 85, 0)) !important;
  }

  .sm\:focus\:cl-via-orange-500:focus {
    --gradient-via-color: #ed8936 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 137, 54, 0)) !important;
  }

  .sm\:focus\:cl-via-orange-600:focus {
    --gradient-via-color: #dd6b20 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(221, 107, 32, 0)) !important;
  }

  .sm\:focus\:cl-via-orange-700:focus {
    --gradient-via-color: #c05621 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(192, 86, 33, 0)) !important;
  }

  .sm\:focus\:cl-via-orange-800:focus {
    --gradient-via-color: #9c4221 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 66, 33, 0)) !important;
  }

  .sm\:focus\:cl-via-orange-900:focus {
    --gradient-via-color: #7b341e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(123, 52, 30, 0)) !important;
  }

  .sm\:focus\:cl-via-yellow-100:focus {
    --gradient-via-color: #fffff0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 240, 0)) !important;
  }

  .sm\:focus\:cl-via-yellow-200:focus {
    --gradient-via-color: #fefcbf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 252, 191, 0)) !important;
  }

  .sm\:focus\:cl-via-yellow-300:focus {
    --gradient-via-color: #faf089 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 240, 137, 0)) !important;
  }

  .sm\:focus\:cl-via-yellow-400:focus {
    --gradient-via-color: #f6e05e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 224, 94, 0)) !important;
  }

  .sm\:focus\:cl-via-yellow-500:focus {
    --gradient-via-color: #ecc94b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 201, 75, 0)) !important;
  }

  .sm\:focus\:cl-via-yellow-600:focus {
    --gradient-via-color: #d69e2e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(214, 158, 46, 0)) !important;
  }

  .sm\:focus\:cl-via-yellow-700:focus {
    --gradient-via-color: #b7791f !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(183, 121, 31, 0)) !important;
  }

  .sm\:focus\:cl-via-yellow-800:focus {
    --gradient-via-color: #975a16 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(151, 90, 22, 0)) !important;
  }

  .sm\:focus\:cl-via-yellow-900:focus {
    --gradient-via-color: #744210 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(116, 66, 16, 0)) !important;
  }

  .sm\:focus\:cl-via-green-100:focus {
    --gradient-via-color: #f0fff4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(240, 255, 244, 0)) !important;
  }

  .sm\:focus\:cl-via-green-200:focus {
    --gradient-via-color: #c6f6d5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(198, 246, 213, 0)) !important;
  }

  .sm\:focus\:cl-via-green-300:focus {
    --gradient-via-color: #9ae6b4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 230, 180, 0)) !important;
  }

  .sm\:focus\:cl-via-green-400:focus {
    --gradient-via-color: #68d391 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(104, 211, 145, 0)) !important;
  }

  .sm\:focus\:cl-via-green-500:focus {
    --gradient-via-color: #48bb78 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(72, 187, 120, 0)) !important;
  }

  .sm\:focus\:cl-via-green-600:focus {
    --gradient-via-color: #38a169 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(56, 161, 105, 0)) !important;
  }

  .sm\:focus\:cl-via-green-700:focus {
    --gradient-via-color: #2f855a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(47, 133, 90, 0)) !important;
  }

  .sm\:focus\:cl-via-green-800:focus {
    --gradient-via-color: #276749 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(39, 103, 73, 0)) !important;
  }

  .sm\:focus\:cl-via-green-900:focus {
    --gradient-via-color: #22543d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(34, 84, 61, 0)) !important;
  }

  .sm\:focus\:cl-via-teal-100:focus {
    --gradient-via-color: #e6fffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 255, 250, 0)) !important;
  }

  .sm\:focus\:cl-via-teal-200:focus {
    --gradient-via-color: #b2f5ea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(178, 245, 234, 0)) !important;
  }

  .sm\:focus\:cl-via-teal-300:focus {
    --gradient-via-color: #81e6d9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(129, 230, 217, 0)) !important;
  }

  .sm\:focus\:cl-via-teal-400:focus {
    --gradient-via-color: #4fd1c5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(79, 209, 197, 0)) !important;
  }

  .sm\:focus\:cl-via-teal-500:focus {
    --gradient-via-color: #38b2ac !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(56, 178, 172, 0)) !important;
  }

  .sm\:focus\:cl-via-teal-600:focus {
    --gradient-via-color: #319795 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(49, 151, 149, 0)) !important;
  }

  .sm\:focus\:cl-via-teal-700:focus {
    --gradient-via-color: #2c7a7b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(44, 122, 123, 0)) !important;
  }

  .sm\:focus\:cl-via-teal-800:focus {
    --gradient-via-color: #285e61 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(40, 94, 97, 0)) !important;
  }

  .sm\:focus\:cl-via-teal-900:focus {
    --gradient-via-color: #234e52 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(35, 78, 82, 0)) !important;
  }

  .sm\:focus\:cl-via-blue-100:focus {
    --gradient-via-color: #ebf8ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(235, 248, 255, 0)) !important;
  }

  .sm\:focus\:cl-via-blue-200:focus {
    --gradient-via-color: #bee3f8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(190, 227, 248, 0)) !important;
  }

  .sm\:focus\:cl-via-blue-300:focus {
    --gradient-via-color: #90cdf4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 205, 244, 0)) !important;
  }

  .sm\:focus\:cl-via-blue-400:focus {
    --gradient-via-color: #63b3ed !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(99, 179, 237, 0)) !important;
  }

  .sm\:focus\:cl-via-blue-500:focus {
    --gradient-via-color: #4299e1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 153, 225, 0)) !important;
  }

  .sm\:focus\:cl-via-blue-600:focus {
    --gradient-via-color: #3182ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(49, 130, 206, 0)) !important;
  }

  .sm\:focus\:cl-via-blue-700:focus {
    --gradient-via-color: #2b6cb0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(43, 108, 176, 0)) !important;
  }

  .sm\:focus\:cl-via-blue-800:focus {
    --gradient-via-color: #2c5282 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(44, 82, 130, 0)) !important;
  }

  .sm\:focus\:cl-via-blue-900:focus {
    --gradient-via-color: #2a4365 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(42, 67, 101, 0)) !important;
  }

  .sm\:focus\:cl-via-indigo-100:focus {
    --gradient-via-color: #ebf4ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(235, 244, 255, 0)) !important;
  }

  .sm\:focus\:cl-via-indigo-200:focus {
    --gradient-via-color: #c3dafe !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(195, 218, 254, 0)) !important;
  }

  .sm\:focus\:cl-via-indigo-300:focus {
    --gradient-via-color: #a3bffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(163, 191, 250, 0)) !important;
  }

  .sm\:focus\:cl-via-indigo-400:focus {
    --gradient-via-color: #7f9cf5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(127, 156, 245, 0)) !important;
  }

  .sm\:focus\:cl-via-indigo-500:focus {
    --gradient-via-color: #667eea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 126, 234, 0)) !important;
  }

  .sm\:focus\:cl-via-indigo-600:focus {
    --gradient-via-color: #5a67d8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 103, 216, 0)) !important;
  }

  .sm\:focus\:cl-via-indigo-700:focus {
    --gradient-via-color: #4c51bf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(76, 81, 191, 0)) !important;
  }

  .sm\:focus\:cl-via-indigo-800:focus {
    --gradient-via-color: #434190 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(67, 65, 144, 0)) !important;
  }

  .sm\:focus\:cl-via-indigo-900:focus {
    --gradient-via-color: #3c366b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(60, 54, 107, 0)) !important;
  }

  .sm\:focus\:cl-via-purple-100:focus {
    --gradient-via-color: #faf5ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 245, 255, 0)) !important;
  }

  .sm\:focus\:cl-via-purple-200:focus {
    --gradient-via-color: #e9d8fd !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(233, 216, 253, 0)) !important;
  }

  .sm\:focus\:cl-via-purple-300:focus {
    --gradient-via-color: #d6bcfa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(214, 188, 250, 0)) !important;
  }

  .sm\:focus\:cl-via-purple-400:focus {
    --gradient-via-color: #b794f4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(183, 148, 244, 0)) !important;
  }

  .sm\:focus\:cl-via-purple-500:focus {
    --gradient-via-color: #9f7aea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(159, 122, 234, 0)) !important;
  }

  .sm\:focus\:cl-via-purple-600:focus {
    --gradient-via-color: #805ad5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(128, 90, 213, 0)) !important;
  }

  .sm\:focus\:cl-via-purple-700:focus {
    --gradient-via-color: #6b46c1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(107, 70, 193, 0)) !important;
  }

  .sm\:focus\:cl-via-purple-800:focus {
    --gradient-via-color: #553c9a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(85, 60, 154, 0)) !important;
  }

  .sm\:focus\:cl-via-purple-900:focus {
    --gradient-via-color: #44337a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(68, 51, 122, 0)) !important;
  }

  .sm\:focus\:cl-via-pink-100:focus {
    --gradient-via-color: #fff5f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 245, 247, 0)) !important;
  }

  .sm\:focus\:cl-via-pink-200:focus {
    --gradient-via-color: #fed7e2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 215, 226, 0)) !important;
  }

  .sm\:focus\:cl-via-pink-300:focus {
    --gradient-via-color: #fbb6ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 182, 206, 0)) !important;
  }

  .sm\:focus\:cl-via-pink-400:focus {
    --gradient-via-color: #f687b3 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 135, 179, 0)) !important;
  }

  .sm\:focus\:cl-via-pink-500:focus {
    --gradient-via-color: #ed64a6 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 100, 166, 0)) !important;
  }

  .sm\:focus\:cl-via-pink-600:focus {
    --gradient-via-color: #d53f8c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(213, 63, 140, 0)) !important;
  }

  .sm\:focus\:cl-via-pink-700:focus {
    --gradient-via-color: #b83280 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(184, 50, 128, 0)) !important;
  }

  .sm\:focus\:cl-via-pink-800:focus {
    --gradient-via-color: #97266d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(151, 38, 109, 0)) !important;
  }

  .sm\:focus\:cl-via-pink-900:focus {
    --gradient-via-color: #702459 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(112, 36, 89, 0)) !important;
  }

  .sm\:focus\:cl-via-ui-gray-100:focus {
    --gradient-via-color: #f1f1f1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(241, 241, 241, 0)) !important;
  }

  .sm\:focus\:cl-via-ui-brown-100:focus {
    --gradient-via-color: #f3ecdc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(243, 236, 220, 0)) !important;
  }

  .sm\:focus\:cl-via-ui-brown-200:focus {
    --gradient-via-color: #e8e0c9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(232, 224, 201, 0)) !important;
  }

  .sm\:focus\:cl-via-ui-brown-300:focus {
    --gradient-via-color: #d0c095 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(208, 192, 149, 0)) !important;
  }

  .sm\:focus\:cl-via-ui-brown-700:focus {
    --gradient-via-color: #bd6005 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(189, 96, 5, 0)) !important;
  }

  .sm\:focus\:cl-via-ui-green-300:focus {
    --gradient-via-color: #aac74c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(170, 199, 76, 0)) !important;
  }

  .sm\:focus\:cl-via-ui-green-400:focus {
    --gradient-via-color: #71893e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(113, 137, 62, 0)) !important;
  }

  .sm\:focus\:cl-via-ui-orange-500:focus {
    --gradient-via-color: #e27212 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 114, 18, 0)) !important;
  }

  .sm\:focus\:cl-via-facebook:focus {
    --gradient-via-color: #3b5998 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(59, 89, 152, 0)) !important;
  }

  .sm\:focus\:cl-via-twitter:focus {
    --gradient-via-color: #00acee !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 172, 238, 0)) !important;
  }

  .sm\:focus\:cl-via-twitch:focus {
    --gradient-via-color: #6441a5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 65, 165, 0)) !important;
  }

  .sm\:focus\:cl-via-youtube:focus {
    --gradient-via-color: #FF0000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 0, 0, 0)) !important;
  }

  .sm\:focus\:cl-to-transparent:focus {
    --gradient-to-color: transparent !important;
  }

  .sm\:focus\:cl-to-current:focus {
    --gradient-to-color: currentColor !important;
  }

  .sm\:focus\:cl-to-black:focus {
    --gradient-to-color: #000 !important;
  }

  .sm\:focus\:cl-to-white:focus {
    --gradient-to-color: #fff !important;
  }

  .sm\:focus\:cl-to-gray-100:focus {
    --gradient-to-color: #f7fafc !important;
  }

  .sm\:focus\:cl-to-gray-200:focus {
    --gradient-to-color: #edf2f7 !important;
  }

  .sm\:focus\:cl-to-gray-300:focus {
    --gradient-to-color: #e2e8f0 !important;
  }

  .sm\:focus\:cl-to-gray-400:focus {
    --gradient-to-color: #cbd5e0 !important;
  }

  .sm\:focus\:cl-to-gray-500:focus {
    --gradient-to-color: #a0aec0 !important;
  }

  .sm\:focus\:cl-to-gray-600:focus {
    --gradient-to-color: #718096 !important;
  }

  .sm\:focus\:cl-to-gray-700:focus {
    --gradient-to-color: #4a5568 !important;
  }

  .sm\:focus\:cl-to-gray-800:focus {
    --gradient-to-color: #2d3748 !important;
  }

  .sm\:focus\:cl-to-gray-900:focus {
    --gradient-to-color: #1a202c !important;
  }

  .sm\:focus\:cl-to-red-100:focus {
    --gradient-to-color: #fff5f5 !important;
  }

  .sm\:focus\:cl-to-red-200:focus {
    --gradient-to-color: #fed7d7 !important;
  }

  .sm\:focus\:cl-to-red-300:focus {
    --gradient-to-color: #feb2b2 !important;
  }

  .sm\:focus\:cl-to-red-400:focus {
    --gradient-to-color: #fc8181 !important;
  }

  .sm\:focus\:cl-to-red-500:focus {
    --gradient-to-color: #f56565 !important;
  }

  .sm\:focus\:cl-to-red-600:focus {
    --gradient-to-color: #e53e3e !important;
  }

  .sm\:focus\:cl-to-red-700:focus {
    --gradient-to-color: #c53030 !important;
  }

  .sm\:focus\:cl-to-red-800:focus {
    --gradient-to-color: #9b2c2c !important;
  }

  .sm\:focus\:cl-to-red-900:focus {
    --gradient-to-color: #742a2a !important;
  }

  .sm\:focus\:cl-to-orange-100:focus {
    --gradient-to-color: #fffaf0 !important;
  }

  .sm\:focus\:cl-to-orange-200:focus {
    --gradient-to-color: #feebc8 !important;
  }

  .sm\:focus\:cl-to-orange-300:focus {
    --gradient-to-color: #fbd38d !important;
  }

  .sm\:focus\:cl-to-orange-400:focus {
    --gradient-to-color: #f6ad55 !important;
  }

  .sm\:focus\:cl-to-orange-500:focus {
    --gradient-to-color: #ed8936 !important;
  }

  .sm\:focus\:cl-to-orange-600:focus {
    --gradient-to-color: #dd6b20 !important;
  }

  .sm\:focus\:cl-to-orange-700:focus {
    --gradient-to-color: #c05621 !important;
  }

  .sm\:focus\:cl-to-orange-800:focus {
    --gradient-to-color: #9c4221 !important;
  }

  .sm\:focus\:cl-to-orange-900:focus {
    --gradient-to-color: #7b341e !important;
  }

  .sm\:focus\:cl-to-yellow-100:focus {
    --gradient-to-color: #fffff0 !important;
  }

  .sm\:focus\:cl-to-yellow-200:focus {
    --gradient-to-color: #fefcbf !important;
  }

  .sm\:focus\:cl-to-yellow-300:focus {
    --gradient-to-color: #faf089 !important;
  }

  .sm\:focus\:cl-to-yellow-400:focus {
    --gradient-to-color: #f6e05e !important;
  }

  .sm\:focus\:cl-to-yellow-500:focus {
    --gradient-to-color: #ecc94b !important;
  }

  .sm\:focus\:cl-to-yellow-600:focus {
    --gradient-to-color: #d69e2e !important;
  }

  .sm\:focus\:cl-to-yellow-700:focus {
    --gradient-to-color: #b7791f !important;
  }

  .sm\:focus\:cl-to-yellow-800:focus {
    --gradient-to-color: #975a16 !important;
  }

  .sm\:focus\:cl-to-yellow-900:focus {
    --gradient-to-color: #744210 !important;
  }

  .sm\:focus\:cl-to-green-100:focus {
    --gradient-to-color: #f0fff4 !important;
  }

  .sm\:focus\:cl-to-green-200:focus {
    --gradient-to-color: #c6f6d5 !important;
  }

  .sm\:focus\:cl-to-green-300:focus {
    --gradient-to-color: #9ae6b4 !important;
  }

  .sm\:focus\:cl-to-green-400:focus {
    --gradient-to-color: #68d391 !important;
  }

  .sm\:focus\:cl-to-green-500:focus {
    --gradient-to-color: #48bb78 !important;
  }

  .sm\:focus\:cl-to-green-600:focus {
    --gradient-to-color: #38a169 !important;
  }

  .sm\:focus\:cl-to-green-700:focus {
    --gradient-to-color: #2f855a !important;
  }

  .sm\:focus\:cl-to-green-800:focus {
    --gradient-to-color: #276749 !important;
  }

  .sm\:focus\:cl-to-green-900:focus {
    --gradient-to-color: #22543d !important;
  }

  .sm\:focus\:cl-to-teal-100:focus {
    --gradient-to-color: #e6fffa !important;
  }

  .sm\:focus\:cl-to-teal-200:focus {
    --gradient-to-color: #b2f5ea !important;
  }

  .sm\:focus\:cl-to-teal-300:focus {
    --gradient-to-color: #81e6d9 !important;
  }

  .sm\:focus\:cl-to-teal-400:focus {
    --gradient-to-color: #4fd1c5 !important;
  }

  .sm\:focus\:cl-to-teal-500:focus {
    --gradient-to-color: #38b2ac !important;
  }

  .sm\:focus\:cl-to-teal-600:focus {
    --gradient-to-color: #319795 !important;
  }

  .sm\:focus\:cl-to-teal-700:focus {
    --gradient-to-color: #2c7a7b !important;
  }

  .sm\:focus\:cl-to-teal-800:focus {
    --gradient-to-color: #285e61 !important;
  }

  .sm\:focus\:cl-to-teal-900:focus {
    --gradient-to-color: #234e52 !important;
  }

  .sm\:focus\:cl-to-blue-100:focus {
    --gradient-to-color: #ebf8ff !important;
  }

  .sm\:focus\:cl-to-blue-200:focus {
    --gradient-to-color: #bee3f8 !important;
  }

  .sm\:focus\:cl-to-blue-300:focus {
    --gradient-to-color: #90cdf4 !important;
  }

  .sm\:focus\:cl-to-blue-400:focus {
    --gradient-to-color: #63b3ed !important;
  }

  .sm\:focus\:cl-to-blue-500:focus {
    --gradient-to-color: #4299e1 !important;
  }

  .sm\:focus\:cl-to-blue-600:focus {
    --gradient-to-color: #3182ce !important;
  }

  .sm\:focus\:cl-to-blue-700:focus {
    --gradient-to-color: #2b6cb0 !important;
  }

  .sm\:focus\:cl-to-blue-800:focus {
    --gradient-to-color: #2c5282 !important;
  }

  .sm\:focus\:cl-to-blue-900:focus {
    --gradient-to-color: #2a4365 !important;
  }

  .sm\:focus\:cl-to-indigo-100:focus {
    --gradient-to-color: #ebf4ff !important;
  }

  .sm\:focus\:cl-to-indigo-200:focus {
    --gradient-to-color: #c3dafe !important;
  }

  .sm\:focus\:cl-to-indigo-300:focus {
    --gradient-to-color: #a3bffa !important;
  }

  .sm\:focus\:cl-to-indigo-400:focus {
    --gradient-to-color: #7f9cf5 !important;
  }

  .sm\:focus\:cl-to-indigo-500:focus {
    --gradient-to-color: #667eea !important;
  }

  .sm\:focus\:cl-to-indigo-600:focus {
    --gradient-to-color: #5a67d8 !important;
  }

  .sm\:focus\:cl-to-indigo-700:focus {
    --gradient-to-color: #4c51bf !important;
  }

  .sm\:focus\:cl-to-indigo-800:focus {
    --gradient-to-color: #434190 !important;
  }

  .sm\:focus\:cl-to-indigo-900:focus {
    --gradient-to-color: #3c366b !important;
  }

  .sm\:focus\:cl-to-purple-100:focus {
    --gradient-to-color: #faf5ff !important;
  }

  .sm\:focus\:cl-to-purple-200:focus {
    --gradient-to-color: #e9d8fd !important;
  }

  .sm\:focus\:cl-to-purple-300:focus {
    --gradient-to-color: #d6bcfa !important;
  }

  .sm\:focus\:cl-to-purple-400:focus {
    --gradient-to-color: #b794f4 !important;
  }

  .sm\:focus\:cl-to-purple-500:focus {
    --gradient-to-color: #9f7aea !important;
  }

  .sm\:focus\:cl-to-purple-600:focus {
    --gradient-to-color: #805ad5 !important;
  }

  .sm\:focus\:cl-to-purple-700:focus {
    --gradient-to-color: #6b46c1 !important;
  }

  .sm\:focus\:cl-to-purple-800:focus {
    --gradient-to-color: #553c9a !important;
  }

  .sm\:focus\:cl-to-purple-900:focus {
    --gradient-to-color: #44337a !important;
  }

  .sm\:focus\:cl-to-pink-100:focus {
    --gradient-to-color: #fff5f7 !important;
  }

  .sm\:focus\:cl-to-pink-200:focus {
    --gradient-to-color: #fed7e2 !important;
  }

  .sm\:focus\:cl-to-pink-300:focus {
    --gradient-to-color: #fbb6ce !important;
  }

  .sm\:focus\:cl-to-pink-400:focus {
    --gradient-to-color: #f687b3 !important;
  }

  .sm\:focus\:cl-to-pink-500:focus {
    --gradient-to-color: #ed64a6 !important;
  }

  .sm\:focus\:cl-to-pink-600:focus {
    --gradient-to-color: #d53f8c !important;
  }

  .sm\:focus\:cl-to-pink-700:focus {
    --gradient-to-color: #b83280 !important;
  }

  .sm\:focus\:cl-to-pink-800:focus {
    --gradient-to-color: #97266d !important;
  }

  .sm\:focus\:cl-to-pink-900:focus {
    --gradient-to-color: #702459 !important;
  }

  .sm\:focus\:cl-to-ui-gray-100:focus {
    --gradient-to-color: #f1f1f1 !important;
  }

  .sm\:focus\:cl-to-ui-brown-100:focus {
    --gradient-to-color: #f3ecdc !important;
  }

  .sm\:focus\:cl-to-ui-brown-200:focus {
    --gradient-to-color: #e8e0c9 !important;
  }

  .sm\:focus\:cl-to-ui-brown-300:focus {
    --gradient-to-color: #d0c095 !important;
  }

  .sm\:focus\:cl-to-ui-brown-700:focus {
    --gradient-to-color: #bd6005 !important;
  }

  .sm\:focus\:cl-to-ui-green-300:focus {
    --gradient-to-color: #aac74c !important;
  }

  .sm\:focus\:cl-to-ui-green-400:focus {
    --gradient-to-color: #71893e !important;
  }

  .sm\:focus\:cl-to-ui-orange-500:focus {
    --gradient-to-color: #e27212 !important;
  }

  .sm\:focus\:cl-to-facebook:focus {
    --gradient-to-color: #3b5998 !important;
  }

  .sm\:focus\:cl-to-twitter:focus {
    --gradient-to-color: #00acee !important;
  }

  .sm\:focus\:cl-to-twitch:focus {
    --gradient-to-color: #6441a5 !important;
  }

  .sm\:focus\:cl-to-youtube:focus {
    --gradient-to-color: #FF0000 !important;
  }

  .sm\:cl-bg-opacity-0 {
    --bg-opacity: 0 !important;
  }

  .sm\:cl-bg-opacity-25 {
    --bg-opacity: 0.25 !important;
  }

  .sm\:cl-bg-opacity-50 {
    --bg-opacity: 0.5 !important;
  }

  .sm\:cl-bg-opacity-75 {
    --bg-opacity: 0.75 !important;
  }

  .sm\:cl-bg-opacity-100 {
    --bg-opacity: 1 !important;
  }

  .sm\:hover\:cl-bg-opacity-0:hover {
    --bg-opacity: 0 !important;
  }

  .sm\:hover\:cl-bg-opacity-25:hover {
    --bg-opacity: 0.25 !important;
  }

  .sm\:hover\:cl-bg-opacity-50:hover {
    --bg-opacity: 0.5 !important;
  }

  .sm\:hover\:cl-bg-opacity-75:hover {
    --bg-opacity: 0.75 !important;
  }

  .sm\:hover\:cl-bg-opacity-100:hover {
    --bg-opacity: 1 !important;
  }

  .sm\:focus\:cl-bg-opacity-0:focus {
    --bg-opacity: 0 !important;
  }

  .sm\:focus\:cl-bg-opacity-25:focus {
    --bg-opacity: 0.25 !important;
  }

  .sm\:focus\:cl-bg-opacity-50:focus {
    --bg-opacity: 0.5 !important;
  }

  .sm\:focus\:cl-bg-opacity-75:focus {
    --bg-opacity: 0.75 !important;
  }

  .sm\:focus\:cl-bg-opacity-100:focus {
    --bg-opacity: 1 !important;
  }

  .sm\:cl-bg-bottom {
    background-position: bottom !important;
  }

  .sm\:cl-bg-center {
    background-position: center !important;
  }

  .sm\:cl-bg-left {
    background-position: left !important;
  }

  .sm\:cl-bg-left-bottom {
    background-position: left bottom !important;
  }

  .sm\:cl-bg-left-top {
    background-position: left top !important;
  }

  .sm\:cl-bg-right {
    background-position: right !important;
  }

  .sm\:cl-bg-right-bottom {
    background-position: right bottom !important;
  }

  .sm\:cl-bg-right-top {
    background-position: right top !important;
  }

  .sm\:cl-bg-top {
    background-position: top !important;
  }

  .sm\:cl-bg-repeat {
    background-repeat: repeat !important;
  }

  .sm\:cl-bg-no-repeat {
    background-repeat: no-repeat !important;
  }

  .sm\:cl-bg-repeat-x {
    background-repeat: repeat-x !important;
  }

  .sm\:cl-bg-repeat-y {
    background-repeat: repeat-y !important;
  }

  .sm\:cl-bg-repeat-round {
    background-repeat: round !important;
  }

  .sm\:cl-bg-repeat-space {
    background-repeat: space !important;
  }

  .sm\:cl-bg-auto {
    background-size: auto !important;
  }

  .sm\:cl-bg-cover {
    background-size: cover !important;
  }

  .sm\:cl-bg-contain {
    background-size: contain !important;
  }

  .sm\:cl-border-collapse {
    border-collapse: collapse !important;
  }

  .sm\:cl-border-separate {
    border-collapse: separate !important;
  }

  .sm\:cl-border-transparent {
    border-color: transparent !important;
  }

  .sm\:cl-border-current {
    border-color: currentColor !important;
  }

  .sm\:cl-border-black {
    --border-opacity: 1 !important;
    border-color: #000 !important;
    border-color: rgba(0, 0, 0, var(--border-opacity)) !important;
  }

  .sm\:cl-border-white {
    --border-opacity: 1 !important;
    border-color: #fff !important;
    border-color: rgba(255, 255, 255, var(--border-opacity)) !important;
  }

  .sm\:cl-border-gray-100 {
    --border-opacity: 1 !important;
    border-color: #f7fafc !important;
    border-color: rgba(247, 250, 252, var(--border-opacity)) !important;
  }

  .sm\:cl-border-gray-200 {
    --border-opacity: 1 !important;
    border-color: #edf2f7 !important;
    border-color: rgba(237, 242, 247, var(--border-opacity)) !important;
  }

  .sm\:cl-border-gray-300 {
    --border-opacity: 1 !important;
    border-color: #e2e8f0 !important;
    border-color: rgba(226, 232, 240, var(--border-opacity)) !important;
  }

  .sm\:cl-border-gray-400 {
    --border-opacity: 1 !important;
    border-color: #cbd5e0 !important;
    border-color: rgba(203, 213, 224, var(--border-opacity)) !important;
  }

  .sm\:cl-border-gray-500 {
    --border-opacity: 1 !important;
    border-color: #a0aec0 !important;
    border-color: rgba(160, 174, 192, var(--border-opacity)) !important;
  }

  .sm\:cl-border-gray-600 {
    --border-opacity: 1 !important;
    border-color: #718096 !important;
    border-color: rgba(113, 128, 150, var(--border-opacity)) !important;
  }

  .sm\:cl-border-gray-700 {
    --border-opacity: 1 !important;
    border-color: #4a5568 !important;
    border-color: rgba(74, 85, 104, var(--border-opacity)) !important;
  }

  .sm\:cl-border-gray-800 {
    --border-opacity: 1 !important;
    border-color: #2d3748 !important;
    border-color: rgba(45, 55, 72, var(--border-opacity)) !important;
  }

  .sm\:cl-border-gray-900 {
    --border-opacity: 1 !important;
    border-color: #1a202c !important;
    border-color: rgba(26, 32, 44, var(--border-opacity)) !important;
  }

  .sm\:cl-border-red-100 {
    --border-opacity: 1 !important;
    border-color: #fff5f5 !important;
    border-color: rgba(255, 245, 245, var(--border-opacity)) !important;
  }

  .sm\:cl-border-red-200 {
    --border-opacity: 1 !important;
    border-color: #fed7d7 !important;
    border-color: rgba(254, 215, 215, var(--border-opacity)) !important;
  }

  .sm\:cl-border-red-300 {
    --border-opacity: 1 !important;
    border-color: #feb2b2 !important;
    border-color: rgba(254, 178, 178, var(--border-opacity)) !important;
  }

  .sm\:cl-border-red-400 {
    --border-opacity: 1 !important;
    border-color: #fc8181 !important;
    border-color: rgba(252, 129, 129, var(--border-opacity)) !important;
  }

  .sm\:cl-border-red-500 {
    --border-opacity: 1 !important;
    border-color: #f56565 !important;
    border-color: rgba(245, 101, 101, var(--border-opacity)) !important;
  }

  .sm\:cl-border-red-600 {
    --border-opacity: 1 !important;
    border-color: #e53e3e !important;
    border-color: rgba(229, 62, 62, var(--border-opacity)) !important;
  }

  .sm\:cl-border-red-700 {
    --border-opacity: 1 !important;
    border-color: #c53030 !important;
    border-color: rgba(197, 48, 48, var(--border-opacity)) !important;
  }

  .sm\:cl-border-red-800 {
    --border-opacity: 1 !important;
    border-color: #9b2c2c !important;
    border-color: rgba(155, 44, 44, var(--border-opacity)) !important;
  }

  .sm\:cl-border-red-900 {
    --border-opacity: 1 !important;
    border-color: #742a2a !important;
    border-color: rgba(116, 42, 42, var(--border-opacity)) !important;
  }

  .sm\:cl-border-orange-100 {
    --border-opacity: 1 !important;
    border-color: #fffaf0 !important;
    border-color: rgba(255, 250, 240, var(--border-opacity)) !important;
  }

  .sm\:cl-border-orange-200 {
    --border-opacity: 1 !important;
    border-color: #feebc8 !important;
    border-color: rgba(254, 235, 200, var(--border-opacity)) !important;
  }

  .sm\:cl-border-orange-300 {
    --border-opacity: 1 !important;
    border-color: #fbd38d !important;
    border-color: rgba(251, 211, 141, var(--border-opacity)) !important;
  }

  .sm\:cl-border-orange-400 {
    --border-opacity: 1 !important;
    border-color: #f6ad55 !important;
    border-color: rgba(246, 173, 85, var(--border-opacity)) !important;
  }

  .sm\:cl-border-orange-500 {
    --border-opacity: 1 !important;
    border-color: #ed8936 !important;
    border-color: rgba(237, 137, 54, var(--border-opacity)) !important;
  }

  .sm\:cl-border-orange-600 {
    --border-opacity: 1 !important;
    border-color: #dd6b20 !important;
    border-color: rgba(221, 107, 32, var(--border-opacity)) !important;
  }

  .sm\:cl-border-orange-700 {
    --border-opacity: 1 !important;
    border-color: #c05621 !important;
    border-color: rgba(192, 86, 33, var(--border-opacity)) !important;
  }

  .sm\:cl-border-orange-800 {
    --border-opacity: 1 !important;
    border-color: #9c4221 !important;
    border-color: rgba(156, 66, 33, var(--border-opacity)) !important;
  }

  .sm\:cl-border-orange-900 {
    --border-opacity: 1 !important;
    border-color: #7b341e !important;
    border-color: rgba(123, 52, 30, var(--border-opacity)) !important;
  }

  .sm\:cl-border-yellow-100 {
    --border-opacity: 1 !important;
    border-color: #fffff0 !important;
    border-color: rgba(255, 255, 240, var(--border-opacity)) !important;
  }

  .sm\:cl-border-yellow-200 {
    --border-opacity: 1 !important;
    border-color: #fefcbf !important;
    border-color: rgba(254, 252, 191, var(--border-opacity)) !important;
  }

  .sm\:cl-border-yellow-300 {
    --border-opacity: 1 !important;
    border-color: #faf089 !important;
    border-color: rgba(250, 240, 137, var(--border-opacity)) !important;
  }

  .sm\:cl-border-yellow-400 {
    --border-opacity: 1 !important;
    border-color: #f6e05e !important;
    border-color: rgba(246, 224, 94, var(--border-opacity)) !important;
  }

  .sm\:cl-border-yellow-500 {
    --border-opacity: 1 !important;
    border-color: #ecc94b !important;
    border-color: rgba(236, 201, 75, var(--border-opacity)) !important;
  }

  .sm\:cl-border-yellow-600 {
    --border-opacity: 1 !important;
    border-color: #d69e2e !important;
    border-color: rgba(214, 158, 46, var(--border-opacity)) !important;
  }

  .sm\:cl-border-yellow-700 {
    --border-opacity: 1 !important;
    border-color: #b7791f !important;
    border-color: rgba(183, 121, 31, var(--border-opacity)) !important;
  }

  .sm\:cl-border-yellow-800 {
    --border-opacity: 1 !important;
    border-color: #975a16 !important;
    border-color: rgba(151, 90, 22, var(--border-opacity)) !important;
  }

  .sm\:cl-border-yellow-900 {
    --border-opacity: 1 !important;
    border-color: #744210 !important;
    border-color: rgba(116, 66, 16, var(--border-opacity)) !important;
  }

  .sm\:cl-border-green-100 {
    --border-opacity: 1 !important;
    border-color: #f0fff4 !important;
    border-color: rgba(240, 255, 244, var(--border-opacity)) !important;
  }

  .sm\:cl-border-green-200 {
    --border-opacity: 1 !important;
    border-color: #c6f6d5 !important;
    border-color: rgba(198, 246, 213, var(--border-opacity)) !important;
  }

  .sm\:cl-border-green-300 {
    --border-opacity: 1 !important;
    border-color: #9ae6b4 !important;
    border-color: rgba(154, 230, 180, var(--border-opacity)) !important;
  }

  .sm\:cl-border-green-400 {
    --border-opacity: 1 !important;
    border-color: #68d391 !important;
    border-color: rgba(104, 211, 145, var(--border-opacity)) !important;
  }

  .sm\:cl-border-green-500 {
    --border-opacity: 1 !important;
    border-color: #48bb78 !important;
    border-color: rgba(72, 187, 120, var(--border-opacity)) !important;
  }

  .sm\:cl-border-green-600 {
    --border-opacity: 1 !important;
    border-color: #38a169 !important;
    border-color: rgba(56, 161, 105, var(--border-opacity)) !important;
  }

  .sm\:cl-border-green-700 {
    --border-opacity: 1 !important;
    border-color: #2f855a !important;
    border-color: rgba(47, 133, 90, var(--border-opacity)) !important;
  }

  .sm\:cl-border-green-800 {
    --border-opacity: 1 !important;
    border-color: #276749 !important;
    border-color: rgba(39, 103, 73, var(--border-opacity)) !important;
  }

  .sm\:cl-border-green-900 {
    --border-opacity: 1 !important;
    border-color: #22543d !important;
    border-color: rgba(34, 84, 61, var(--border-opacity)) !important;
  }

  .sm\:cl-border-teal-100 {
    --border-opacity: 1 !important;
    border-color: #e6fffa !important;
    border-color: rgba(230, 255, 250, var(--border-opacity)) !important;
  }

  .sm\:cl-border-teal-200 {
    --border-opacity: 1 !important;
    border-color: #b2f5ea !important;
    border-color: rgba(178, 245, 234, var(--border-opacity)) !important;
  }

  .sm\:cl-border-teal-300 {
    --border-opacity: 1 !important;
    border-color: #81e6d9 !important;
    border-color: rgba(129, 230, 217, var(--border-opacity)) !important;
  }

  .sm\:cl-border-teal-400 {
    --border-opacity: 1 !important;
    border-color: #4fd1c5 !important;
    border-color: rgba(79, 209, 197, var(--border-opacity)) !important;
  }

  .sm\:cl-border-teal-500 {
    --border-opacity: 1 !important;
    border-color: #38b2ac !important;
    border-color: rgba(56, 178, 172, var(--border-opacity)) !important;
  }

  .sm\:cl-border-teal-600 {
    --border-opacity: 1 !important;
    border-color: #319795 !important;
    border-color: rgba(49, 151, 149, var(--border-opacity)) !important;
  }

  .sm\:cl-border-teal-700 {
    --border-opacity: 1 !important;
    border-color: #2c7a7b !important;
    border-color: rgba(44, 122, 123, var(--border-opacity)) !important;
  }

  .sm\:cl-border-teal-800 {
    --border-opacity: 1 !important;
    border-color: #285e61 !important;
    border-color: rgba(40, 94, 97, var(--border-opacity)) !important;
  }

  .sm\:cl-border-teal-900 {
    --border-opacity: 1 !important;
    border-color: #234e52 !important;
    border-color: rgba(35, 78, 82, var(--border-opacity)) !important;
  }

  .sm\:cl-border-blue-100 {
    --border-opacity: 1 !important;
    border-color: #ebf8ff !important;
    border-color: rgba(235, 248, 255, var(--border-opacity)) !important;
  }

  .sm\:cl-border-blue-200 {
    --border-opacity: 1 !important;
    border-color: #bee3f8 !important;
    border-color: rgba(190, 227, 248, var(--border-opacity)) !important;
  }

  .sm\:cl-border-blue-300 {
    --border-opacity: 1 !important;
    border-color: #90cdf4 !important;
    border-color: rgba(144, 205, 244, var(--border-opacity)) !important;
  }

  .sm\:cl-border-blue-400 {
    --border-opacity: 1 !important;
    border-color: #63b3ed !important;
    border-color: rgba(99, 179, 237, var(--border-opacity)) !important;
  }

  .sm\:cl-border-blue-500 {
    --border-opacity: 1 !important;
    border-color: #4299e1 !important;
    border-color: rgba(66, 153, 225, var(--border-opacity)) !important;
  }

  .sm\:cl-border-blue-600 {
    --border-opacity: 1 !important;
    border-color: #3182ce !important;
    border-color: rgba(49, 130, 206, var(--border-opacity)) !important;
  }

  .sm\:cl-border-blue-700 {
    --border-opacity: 1 !important;
    border-color: #2b6cb0 !important;
    border-color: rgba(43, 108, 176, var(--border-opacity)) !important;
  }

  .sm\:cl-border-blue-800 {
    --border-opacity: 1 !important;
    border-color: #2c5282 !important;
    border-color: rgba(44, 82, 130, var(--border-opacity)) !important;
  }

  .sm\:cl-border-blue-900 {
    --border-opacity: 1 !important;
    border-color: #2a4365 !important;
    border-color: rgba(42, 67, 101, var(--border-opacity)) !important;
  }

  .sm\:cl-border-indigo-100 {
    --border-opacity: 1 !important;
    border-color: #ebf4ff !important;
    border-color: rgba(235, 244, 255, var(--border-opacity)) !important;
  }

  .sm\:cl-border-indigo-200 {
    --border-opacity: 1 !important;
    border-color: #c3dafe !important;
    border-color: rgba(195, 218, 254, var(--border-opacity)) !important;
  }

  .sm\:cl-border-indigo-300 {
    --border-opacity: 1 !important;
    border-color: #a3bffa !important;
    border-color: rgba(163, 191, 250, var(--border-opacity)) !important;
  }

  .sm\:cl-border-indigo-400 {
    --border-opacity: 1 !important;
    border-color: #7f9cf5 !important;
    border-color: rgba(127, 156, 245, var(--border-opacity)) !important;
  }

  .sm\:cl-border-indigo-500 {
    --border-opacity: 1 !important;
    border-color: #667eea !important;
    border-color: rgba(102, 126, 234, var(--border-opacity)) !important;
  }

  .sm\:cl-border-indigo-600 {
    --border-opacity: 1 !important;
    border-color: #5a67d8 !important;
    border-color: rgba(90, 103, 216, var(--border-opacity)) !important;
  }

  .sm\:cl-border-indigo-700 {
    --border-opacity: 1 !important;
    border-color: #4c51bf !important;
    border-color: rgba(76, 81, 191, var(--border-opacity)) !important;
  }

  .sm\:cl-border-indigo-800 {
    --border-opacity: 1 !important;
    border-color: #434190 !important;
    border-color: rgba(67, 65, 144, var(--border-opacity)) !important;
  }

  .sm\:cl-border-indigo-900 {
    --border-opacity: 1 !important;
    border-color: #3c366b !important;
    border-color: rgba(60, 54, 107, var(--border-opacity)) !important;
  }

  .sm\:cl-border-purple-100 {
    --border-opacity: 1 !important;
    border-color: #faf5ff !important;
    border-color: rgba(250, 245, 255, var(--border-opacity)) !important;
  }

  .sm\:cl-border-purple-200 {
    --border-opacity: 1 !important;
    border-color: #e9d8fd !important;
    border-color: rgba(233, 216, 253, var(--border-opacity)) !important;
  }

  .sm\:cl-border-purple-300 {
    --border-opacity: 1 !important;
    border-color: #d6bcfa !important;
    border-color: rgba(214, 188, 250, var(--border-opacity)) !important;
  }

  .sm\:cl-border-purple-400 {
    --border-opacity: 1 !important;
    border-color: #b794f4 !important;
    border-color: rgba(183, 148, 244, var(--border-opacity)) !important;
  }

  .sm\:cl-border-purple-500 {
    --border-opacity: 1 !important;
    border-color: #9f7aea !important;
    border-color: rgba(159, 122, 234, var(--border-opacity)) !important;
  }

  .sm\:cl-border-purple-600 {
    --border-opacity: 1 !important;
    border-color: #805ad5 !important;
    border-color: rgba(128, 90, 213, var(--border-opacity)) !important;
  }

  .sm\:cl-border-purple-700 {
    --border-opacity: 1 !important;
    border-color: #6b46c1 !important;
    border-color: rgba(107, 70, 193, var(--border-opacity)) !important;
  }

  .sm\:cl-border-purple-800 {
    --border-opacity: 1 !important;
    border-color: #553c9a !important;
    border-color: rgba(85, 60, 154, var(--border-opacity)) !important;
  }

  .sm\:cl-border-purple-900 {
    --border-opacity: 1 !important;
    border-color: #44337a !important;
    border-color: rgba(68, 51, 122, var(--border-opacity)) !important;
  }

  .sm\:cl-border-pink-100 {
    --border-opacity: 1 !important;
    border-color: #fff5f7 !important;
    border-color: rgba(255, 245, 247, var(--border-opacity)) !important;
  }

  .sm\:cl-border-pink-200 {
    --border-opacity: 1 !important;
    border-color: #fed7e2 !important;
    border-color: rgba(254, 215, 226, var(--border-opacity)) !important;
  }

  .sm\:cl-border-pink-300 {
    --border-opacity: 1 !important;
    border-color: #fbb6ce !important;
    border-color: rgba(251, 182, 206, var(--border-opacity)) !important;
  }

  .sm\:cl-border-pink-400 {
    --border-opacity: 1 !important;
    border-color: #f687b3 !important;
    border-color: rgba(246, 135, 179, var(--border-opacity)) !important;
  }

  .sm\:cl-border-pink-500 {
    --border-opacity: 1 !important;
    border-color: #ed64a6 !important;
    border-color: rgba(237, 100, 166, var(--border-opacity)) !important;
  }

  .sm\:cl-border-pink-600 {
    --border-opacity: 1 !important;
    border-color: #d53f8c !important;
    border-color: rgba(213, 63, 140, var(--border-opacity)) !important;
  }

  .sm\:cl-border-pink-700 {
    --border-opacity: 1 !important;
    border-color: #b83280 !important;
    border-color: rgba(184, 50, 128, var(--border-opacity)) !important;
  }

  .sm\:cl-border-pink-800 {
    --border-opacity: 1 !important;
    border-color: #97266d !important;
    border-color: rgba(151, 38, 109, var(--border-opacity)) !important;
  }

  .sm\:cl-border-pink-900 {
    --border-opacity: 1 !important;
    border-color: #702459 !important;
    border-color: rgba(112, 36, 89, var(--border-opacity)) !important;
  }

  .sm\:cl-border-ui-gray-100 {
    --border-opacity: 1 !important;
    border-color: #f1f1f1 !important;
    border-color: rgba(241, 241, 241, var(--border-opacity)) !important;
  }

  .sm\:cl-border-ui-brown-100 {
    --border-opacity: 1 !important;
    border-color: #f3ecdc !important;
    border-color: rgba(243, 236, 220, var(--border-opacity)) !important;
  }

  .sm\:cl-border-ui-brown-200 {
    --border-opacity: 1 !important;
    border-color: #e8e0c9 !important;
    border-color: rgba(232, 224, 201, var(--border-opacity)) !important;
  }

  .sm\:cl-border-ui-brown-300 {
    --border-opacity: 1 !important;
    border-color: #d0c095 !important;
    border-color: rgba(208, 192, 149, var(--border-opacity)) !important;
  }

  .sm\:cl-border-ui-brown-700 {
    --border-opacity: 1 !important;
    border-color: #bd6005 !important;
    border-color: rgba(189, 96, 5, var(--border-opacity)) !important;
  }

  .sm\:cl-border-ui-green-300 {
    --border-opacity: 1 !important;
    border-color: #aac74c !important;
    border-color: rgba(170, 199, 76, var(--border-opacity)) !important;
  }

  .sm\:cl-border-ui-green-400 {
    --border-opacity: 1 !important;
    border-color: #71893e !important;
    border-color: rgba(113, 137, 62, var(--border-opacity)) !important;
  }

  .sm\:cl-border-ui-orange-500 {
    --border-opacity: 1 !important;
    border-color: #e27212 !important;
    border-color: rgba(226, 114, 18, var(--border-opacity)) !important;
  }

  .sm\:cl-border-facebook {
    --border-opacity: 1 !important;
    border-color: #3b5998 !important;
    border-color: rgba(59, 89, 152, var(--border-opacity)) !important;
  }

  .sm\:cl-border-twitter {
    --border-opacity: 1 !important;
    border-color: #00acee !important;
    border-color: rgba(0, 172, 238, var(--border-opacity)) !important;
  }

  .sm\:cl-border-twitch {
    --border-opacity: 1 !important;
    border-color: #6441a5 !important;
    border-color: rgba(100, 65, 165, var(--border-opacity)) !important;
  }

  .sm\:cl-border-youtube {
    --border-opacity: 1 !important;
    border-color: #FF0000 !important;
    border-color: rgba(255, 0, 0, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-transparent:hover {
    border-color: transparent !important;
  }

  .sm\:hover\:cl-border-current:hover {
    border-color: currentColor !important;
  }

  .sm\:hover\:cl-border-black:hover {
    --border-opacity: 1 !important;
    border-color: #000 !important;
    border-color: rgba(0, 0, 0, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-white:hover {
    --border-opacity: 1 !important;
    border-color: #fff !important;
    border-color: rgba(255, 255, 255, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-gray-100:hover {
    --border-opacity: 1 !important;
    border-color: #f7fafc !important;
    border-color: rgba(247, 250, 252, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-gray-200:hover {
    --border-opacity: 1 !important;
    border-color: #edf2f7 !important;
    border-color: rgba(237, 242, 247, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-gray-300:hover {
    --border-opacity: 1 !important;
    border-color: #e2e8f0 !important;
    border-color: rgba(226, 232, 240, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-gray-400:hover {
    --border-opacity: 1 !important;
    border-color: #cbd5e0 !important;
    border-color: rgba(203, 213, 224, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-gray-500:hover {
    --border-opacity: 1 !important;
    border-color: #a0aec0 !important;
    border-color: rgba(160, 174, 192, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-gray-600:hover {
    --border-opacity: 1 !important;
    border-color: #718096 !important;
    border-color: rgba(113, 128, 150, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-gray-700:hover {
    --border-opacity: 1 !important;
    border-color: #4a5568 !important;
    border-color: rgba(74, 85, 104, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-gray-800:hover {
    --border-opacity: 1 !important;
    border-color: #2d3748 !important;
    border-color: rgba(45, 55, 72, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-gray-900:hover {
    --border-opacity: 1 !important;
    border-color: #1a202c !important;
    border-color: rgba(26, 32, 44, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-red-100:hover {
    --border-opacity: 1 !important;
    border-color: #fff5f5 !important;
    border-color: rgba(255, 245, 245, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-red-200:hover {
    --border-opacity: 1 !important;
    border-color: #fed7d7 !important;
    border-color: rgba(254, 215, 215, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-red-300:hover {
    --border-opacity: 1 !important;
    border-color: #feb2b2 !important;
    border-color: rgba(254, 178, 178, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-red-400:hover {
    --border-opacity: 1 !important;
    border-color: #fc8181 !important;
    border-color: rgba(252, 129, 129, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-red-500:hover {
    --border-opacity: 1 !important;
    border-color: #f56565 !important;
    border-color: rgba(245, 101, 101, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-red-600:hover {
    --border-opacity: 1 !important;
    border-color: #e53e3e !important;
    border-color: rgba(229, 62, 62, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-red-700:hover {
    --border-opacity: 1 !important;
    border-color: #c53030 !important;
    border-color: rgba(197, 48, 48, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-red-800:hover {
    --border-opacity: 1 !important;
    border-color: #9b2c2c !important;
    border-color: rgba(155, 44, 44, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-red-900:hover {
    --border-opacity: 1 !important;
    border-color: #742a2a !important;
    border-color: rgba(116, 42, 42, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-orange-100:hover {
    --border-opacity: 1 !important;
    border-color: #fffaf0 !important;
    border-color: rgba(255, 250, 240, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-orange-200:hover {
    --border-opacity: 1 !important;
    border-color: #feebc8 !important;
    border-color: rgba(254, 235, 200, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-orange-300:hover {
    --border-opacity: 1 !important;
    border-color: #fbd38d !important;
    border-color: rgba(251, 211, 141, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-orange-400:hover {
    --border-opacity: 1 !important;
    border-color: #f6ad55 !important;
    border-color: rgba(246, 173, 85, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-orange-500:hover {
    --border-opacity: 1 !important;
    border-color: #ed8936 !important;
    border-color: rgba(237, 137, 54, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-orange-600:hover {
    --border-opacity: 1 !important;
    border-color: #dd6b20 !important;
    border-color: rgba(221, 107, 32, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-orange-700:hover {
    --border-opacity: 1 !important;
    border-color: #c05621 !important;
    border-color: rgba(192, 86, 33, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-orange-800:hover {
    --border-opacity: 1 !important;
    border-color: #9c4221 !important;
    border-color: rgba(156, 66, 33, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-orange-900:hover {
    --border-opacity: 1 !important;
    border-color: #7b341e !important;
    border-color: rgba(123, 52, 30, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-yellow-100:hover {
    --border-opacity: 1 !important;
    border-color: #fffff0 !important;
    border-color: rgba(255, 255, 240, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-yellow-200:hover {
    --border-opacity: 1 !important;
    border-color: #fefcbf !important;
    border-color: rgba(254, 252, 191, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-yellow-300:hover {
    --border-opacity: 1 !important;
    border-color: #faf089 !important;
    border-color: rgba(250, 240, 137, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-yellow-400:hover {
    --border-opacity: 1 !important;
    border-color: #f6e05e !important;
    border-color: rgba(246, 224, 94, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-yellow-500:hover {
    --border-opacity: 1 !important;
    border-color: #ecc94b !important;
    border-color: rgba(236, 201, 75, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-yellow-600:hover {
    --border-opacity: 1 !important;
    border-color: #d69e2e !important;
    border-color: rgba(214, 158, 46, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-yellow-700:hover {
    --border-opacity: 1 !important;
    border-color: #b7791f !important;
    border-color: rgba(183, 121, 31, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-yellow-800:hover {
    --border-opacity: 1 !important;
    border-color: #975a16 !important;
    border-color: rgba(151, 90, 22, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-yellow-900:hover {
    --border-opacity: 1 !important;
    border-color: #744210 !important;
    border-color: rgba(116, 66, 16, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-green-100:hover {
    --border-opacity: 1 !important;
    border-color: #f0fff4 !important;
    border-color: rgba(240, 255, 244, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-green-200:hover {
    --border-opacity: 1 !important;
    border-color: #c6f6d5 !important;
    border-color: rgba(198, 246, 213, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-green-300:hover {
    --border-opacity: 1 !important;
    border-color: #9ae6b4 !important;
    border-color: rgba(154, 230, 180, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-green-400:hover {
    --border-opacity: 1 !important;
    border-color: #68d391 !important;
    border-color: rgba(104, 211, 145, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-green-500:hover {
    --border-opacity: 1 !important;
    border-color: #48bb78 !important;
    border-color: rgba(72, 187, 120, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-green-600:hover {
    --border-opacity: 1 !important;
    border-color: #38a169 !important;
    border-color: rgba(56, 161, 105, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-green-700:hover {
    --border-opacity: 1 !important;
    border-color: #2f855a !important;
    border-color: rgba(47, 133, 90, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-green-800:hover {
    --border-opacity: 1 !important;
    border-color: #276749 !important;
    border-color: rgba(39, 103, 73, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-green-900:hover {
    --border-opacity: 1 !important;
    border-color: #22543d !important;
    border-color: rgba(34, 84, 61, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-teal-100:hover {
    --border-opacity: 1 !important;
    border-color: #e6fffa !important;
    border-color: rgba(230, 255, 250, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-teal-200:hover {
    --border-opacity: 1 !important;
    border-color: #b2f5ea !important;
    border-color: rgba(178, 245, 234, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-teal-300:hover {
    --border-opacity: 1 !important;
    border-color: #81e6d9 !important;
    border-color: rgba(129, 230, 217, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-teal-400:hover {
    --border-opacity: 1 !important;
    border-color: #4fd1c5 !important;
    border-color: rgba(79, 209, 197, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-teal-500:hover {
    --border-opacity: 1 !important;
    border-color: #38b2ac !important;
    border-color: rgba(56, 178, 172, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-teal-600:hover {
    --border-opacity: 1 !important;
    border-color: #319795 !important;
    border-color: rgba(49, 151, 149, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-teal-700:hover {
    --border-opacity: 1 !important;
    border-color: #2c7a7b !important;
    border-color: rgba(44, 122, 123, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-teal-800:hover {
    --border-opacity: 1 !important;
    border-color: #285e61 !important;
    border-color: rgba(40, 94, 97, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-teal-900:hover {
    --border-opacity: 1 !important;
    border-color: #234e52 !important;
    border-color: rgba(35, 78, 82, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-blue-100:hover {
    --border-opacity: 1 !important;
    border-color: #ebf8ff !important;
    border-color: rgba(235, 248, 255, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-blue-200:hover {
    --border-opacity: 1 !important;
    border-color: #bee3f8 !important;
    border-color: rgba(190, 227, 248, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-blue-300:hover {
    --border-opacity: 1 !important;
    border-color: #90cdf4 !important;
    border-color: rgba(144, 205, 244, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-blue-400:hover {
    --border-opacity: 1 !important;
    border-color: #63b3ed !important;
    border-color: rgba(99, 179, 237, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-blue-500:hover {
    --border-opacity: 1 !important;
    border-color: #4299e1 !important;
    border-color: rgba(66, 153, 225, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-blue-600:hover {
    --border-opacity: 1 !important;
    border-color: #3182ce !important;
    border-color: rgba(49, 130, 206, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-blue-700:hover {
    --border-opacity: 1 !important;
    border-color: #2b6cb0 !important;
    border-color: rgba(43, 108, 176, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-blue-800:hover {
    --border-opacity: 1 !important;
    border-color: #2c5282 !important;
    border-color: rgba(44, 82, 130, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-blue-900:hover {
    --border-opacity: 1 !important;
    border-color: #2a4365 !important;
    border-color: rgba(42, 67, 101, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-indigo-100:hover {
    --border-opacity: 1 !important;
    border-color: #ebf4ff !important;
    border-color: rgba(235, 244, 255, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-indigo-200:hover {
    --border-opacity: 1 !important;
    border-color: #c3dafe !important;
    border-color: rgba(195, 218, 254, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-indigo-300:hover {
    --border-opacity: 1 !important;
    border-color: #a3bffa !important;
    border-color: rgba(163, 191, 250, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-indigo-400:hover {
    --border-opacity: 1 !important;
    border-color: #7f9cf5 !important;
    border-color: rgba(127, 156, 245, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-indigo-500:hover {
    --border-opacity: 1 !important;
    border-color: #667eea !important;
    border-color: rgba(102, 126, 234, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-indigo-600:hover {
    --border-opacity: 1 !important;
    border-color: #5a67d8 !important;
    border-color: rgba(90, 103, 216, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-indigo-700:hover {
    --border-opacity: 1 !important;
    border-color: #4c51bf !important;
    border-color: rgba(76, 81, 191, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-indigo-800:hover {
    --border-opacity: 1 !important;
    border-color: #434190 !important;
    border-color: rgba(67, 65, 144, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-indigo-900:hover {
    --border-opacity: 1 !important;
    border-color: #3c366b !important;
    border-color: rgba(60, 54, 107, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-purple-100:hover {
    --border-opacity: 1 !important;
    border-color: #faf5ff !important;
    border-color: rgba(250, 245, 255, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-purple-200:hover {
    --border-opacity: 1 !important;
    border-color: #e9d8fd !important;
    border-color: rgba(233, 216, 253, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-purple-300:hover {
    --border-opacity: 1 !important;
    border-color: #d6bcfa !important;
    border-color: rgba(214, 188, 250, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-purple-400:hover {
    --border-opacity: 1 !important;
    border-color: #b794f4 !important;
    border-color: rgba(183, 148, 244, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-purple-500:hover {
    --border-opacity: 1 !important;
    border-color: #9f7aea !important;
    border-color: rgba(159, 122, 234, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-purple-600:hover {
    --border-opacity: 1 !important;
    border-color: #805ad5 !important;
    border-color: rgba(128, 90, 213, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-purple-700:hover {
    --border-opacity: 1 !important;
    border-color: #6b46c1 !important;
    border-color: rgba(107, 70, 193, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-purple-800:hover {
    --border-opacity: 1 !important;
    border-color: #553c9a !important;
    border-color: rgba(85, 60, 154, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-purple-900:hover {
    --border-opacity: 1 !important;
    border-color: #44337a !important;
    border-color: rgba(68, 51, 122, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-pink-100:hover {
    --border-opacity: 1 !important;
    border-color: #fff5f7 !important;
    border-color: rgba(255, 245, 247, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-pink-200:hover {
    --border-opacity: 1 !important;
    border-color: #fed7e2 !important;
    border-color: rgba(254, 215, 226, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-pink-300:hover {
    --border-opacity: 1 !important;
    border-color: #fbb6ce !important;
    border-color: rgba(251, 182, 206, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-pink-400:hover {
    --border-opacity: 1 !important;
    border-color: #f687b3 !important;
    border-color: rgba(246, 135, 179, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-pink-500:hover {
    --border-opacity: 1 !important;
    border-color: #ed64a6 !important;
    border-color: rgba(237, 100, 166, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-pink-600:hover {
    --border-opacity: 1 !important;
    border-color: #d53f8c !important;
    border-color: rgba(213, 63, 140, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-pink-700:hover {
    --border-opacity: 1 !important;
    border-color: #b83280 !important;
    border-color: rgba(184, 50, 128, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-pink-800:hover {
    --border-opacity: 1 !important;
    border-color: #97266d !important;
    border-color: rgba(151, 38, 109, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-pink-900:hover {
    --border-opacity: 1 !important;
    border-color: #702459 !important;
    border-color: rgba(112, 36, 89, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-ui-gray-100:hover {
    --border-opacity: 1 !important;
    border-color: #f1f1f1 !important;
    border-color: rgba(241, 241, 241, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-ui-brown-100:hover {
    --border-opacity: 1 !important;
    border-color: #f3ecdc !important;
    border-color: rgba(243, 236, 220, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-ui-brown-200:hover {
    --border-opacity: 1 !important;
    border-color: #e8e0c9 !important;
    border-color: rgba(232, 224, 201, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-ui-brown-300:hover {
    --border-opacity: 1 !important;
    border-color: #d0c095 !important;
    border-color: rgba(208, 192, 149, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-ui-brown-700:hover {
    --border-opacity: 1 !important;
    border-color: #bd6005 !important;
    border-color: rgba(189, 96, 5, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-ui-green-300:hover {
    --border-opacity: 1 !important;
    border-color: #aac74c !important;
    border-color: rgba(170, 199, 76, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-ui-green-400:hover {
    --border-opacity: 1 !important;
    border-color: #71893e !important;
    border-color: rgba(113, 137, 62, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-ui-orange-500:hover {
    --border-opacity: 1 !important;
    border-color: #e27212 !important;
    border-color: rgba(226, 114, 18, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-facebook:hover {
    --border-opacity: 1 !important;
    border-color: #3b5998 !important;
    border-color: rgba(59, 89, 152, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-twitter:hover {
    --border-opacity: 1 !important;
    border-color: #00acee !important;
    border-color: rgba(0, 172, 238, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-twitch:hover {
    --border-opacity: 1 !important;
    border-color: #6441a5 !important;
    border-color: rgba(100, 65, 165, var(--border-opacity)) !important;
  }

  .sm\:hover\:cl-border-youtube:hover {
    --border-opacity: 1 !important;
    border-color: #FF0000 !important;
    border-color: rgba(255, 0, 0, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-transparent:focus {
    border-color: transparent !important;
  }

  .sm\:focus\:cl-border-current:focus {
    border-color: currentColor !important;
  }

  .sm\:focus\:cl-border-black:focus {
    --border-opacity: 1 !important;
    border-color: #000 !important;
    border-color: rgba(0, 0, 0, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-white:focus {
    --border-opacity: 1 !important;
    border-color: #fff !important;
    border-color: rgba(255, 255, 255, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-gray-100:focus {
    --border-opacity: 1 !important;
    border-color: #f7fafc !important;
    border-color: rgba(247, 250, 252, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-gray-200:focus {
    --border-opacity: 1 !important;
    border-color: #edf2f7 !important;
    border-color: rgba(237, 242, 247, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-gray-300:focus {
    --border-opacity: 1 !important;
    border-color: #e2e8f0 !important;
    border-color: rgba(226, 232, 240, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-gray-400:focus {
    --border-opacity: 1 !important;
    border-color: #cbd5e0 !important;
    border-color: rgba(203, 213, 224, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-gray-500:focus {
    --border-opacity: 1 !important;
    border-color: #a0aec0 !important;
    border-color: rgba(160, 174, 192, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-gray-600:focus {
    --border-opacity: 1 !important;
    border-color: #718096 !important;
    border-color: rgba(113, 128, 150, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-gray-700:focus {
    --border-opacity: 1 !important;
    border-color: #4a5568 !important;
    border-color: rgba(74, 85, 104, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-gray-800:focus {
    --border-opacity: 1 !important;
    border-color: #2d3748 !important;
    border-color: rgba(45, 55, 72, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-gray-900:focus {
    --border-opacity: 1 !important;
    border-color: #1a202c !important;
    border-color: rgba(26, 32, 44, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-red-100:focus {
    --border-opacity: 1 !important;
    border-color: #fff5f5 !important;
    border-color: rgba(255, 245, 245, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-red-200:focus {
    --border-opacity: 1 !important;
    border-color: #fed7d7 !important;
    border-color: rgba(254, 215, 215, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-red-300:focus {
    --border-opacity: 1 !important;
    border-color: #feb2b2 !important;
    border-color: rgba(254, 178, 178, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-red-400:focus {
    --border-opacity: 1 !important;
    border-color: #fc8181 !important;
    border-color: rgba(252, 129, 129, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-red-500:focus {
    --border-opacity: 1 !important;
    border-color: #f56565 !important;
    border-color: rgba(245, 101, 101, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-red-600:focus {
    --border-opacity: 1 !important;
    border-color: #e53e3e !important;
    border-color: rgba(229, 62, 62, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-red-700:focus {
    --border-opacity: 1 !important;
    border-color: #c53030 !important;
    border-color: rgba(197, 48, 48, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-red-800:focus {
    --border-opacity: 1 !important;
    border-color: #9b2c2c !important;
    border-color: rgba(155, 44, 44, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-red-900:focus {
    --border-opacity: 1 !important;
    border-color: #742a2a !important;
    border-color: rgba(116, 42, 42, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-orange-100:focus {
    --border-opacity: 1 !important;
    border-color: #fffaf0 !important;
    border-color: rgba(255, 250, 240, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-orange-200:focus {
    --border-opacity: 1 !important;
    border-color: #feebc8 !important;
    border-color: rgba(254, 235, 200, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-orange-300:focus {
    --border-opacity: 1 !important;
    border-color: #fbd38d !important;
    border-color: rgba(251, 211, 141, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-orange-400:focus {
    --border-opacity: 1 !important;
    border-color: #f6ad55 !important;
    border-color: rgba(246, 173, 85, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-orange-500:focus {
    --border-opacity: 1 !important;
    border-color: #ed8936 !important;
    border-color: rgba(237, 137, 54, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-orange-600:focus {
    --border-opacity: 1 !important;
    border-color: #dd6b20 !important;
    border-color: rgba(221, 107, 32, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-orange-700:focus {
    --border-opacity: 1 !important;
    border-color: #c05621 !important;
    border-color: rgba(192, 86, 33, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-orange-800:focus {
    --border-opacity: 1 !important;
    border-color: #9c4221 !important;
    border-color: rgba(156, 66, 33, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-orange-900:focus {
    --border-opacity: 1 !important;
    border-color: #7b341e !important;
    border-color: rgba(123, 52, 30, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-yellow-100:focus {
    --border-opacity: 1 !important;
    border-color: #fffff0 !important;
    border-color: rgba(255, 255, 240, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-yellow-200:focus {
    --border-opacity: 1 !important;
    border-color: #fefcbf !important;
    border-color: rgba(254, 252, 191, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-yellow-300:focus {
    --border-opacity: 1 !important;
    border-color: #faf089 !important;
    border-color: rgba(250, 240, 137, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-yellow-400:focus {
    --border-opacity: 1 !important;
    border-color: #f6e05e !important;
    border-color: rgba(246, 224, 94, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-yellow-500:focus {
    --border-opacity: 1 !important;
    border-color: #ecc94b !important;
    border-color: rgba(236, 201, 75, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-yellow-600:focus {
    --border-opacity: 1 !important;
    border-color: #d69e2e !important;
    border-color: rgba(214, 158, 46, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-yellow-700:focus {
    --border-opacity: 1 !important;
    border-color: #b7791f !important;
    border-color: rgba(183, 121, 31, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-yellow-800:focus {
    --border-opacity: 1 !important;
    border-color: #975a16 !important;
    border-color: rgba(151, 90, 22, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-yellow-900:focus {
    --border-opacity: 1 !important;
    border-color: #744210 !important;
    border-color: rgba(116, 66, 16, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-green-100:focus {
    --border-opacity: 1 !important;
    border-color: #f0fff4 !important;
    border-color: rgba(240, 255, 244, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-green-200:focus {
    --border-opacity: 1 !important;
    border-color: #c6f6d5 !important;
    border-color: rgba(198, 246, 213, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-green-300:focus {
    --border-opacity: 1 !important;
    border-color: #9ae6b4 !important;
    border-color: rgba(154, 230, 180, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-green-400:focus {
    --border-opacity: 1 !important;
    border-color: #68d391 !important;
    border-color: rgba(104, 211, 145, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-green-500:focus {
    --border-opacity: 1 !important;
    border-color: #48bb78 !important;
    border-color: rgba(72, 187, 120, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-green-600:focus {
    --border-opacity: 1 !important;
    border-color: #38a169 !important;
    border-color: rgba(56, 161, 105, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-green-700:focus {
    --border-opacity: 1 !important;
    border-color: #2f855a !important;
    border-color: rgba(47, 133, 90, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-green-800:focus {
    --border-opacity: 1 !important;
    border-color: #276749 !important;
    border-color: rgba(39, 103, 73, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-green-900:focus {
    --border-opacity: 1 !important;
    border-color: #22543d !important;
    border-color: rgba(34, 84, 61, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-teal-100:focus {
    --border-opacity: 1 !important;
    border-color: #e6fffa !important;
    border-color: rgba(230, 255, 250, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-teal-200:focus {
    --border-opacity: 1 !important;
    border-color: #b2f5ea !important;
    border-color: rgba(178, 245, 234, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-teal-300:focus {
    --border-opacity: 1 !important;
    border-color: #81e6d9 !important;
    border-color: rgba(129, 230, 217, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-teal-400:focus {
    --border-opacity: 1 !important;
    border-color: #4fd1c5 !important;
    border-color: rgba(79, 209, 197, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-teal-500:focus {
    --border-opacity: 1 !important;
    border-color: #38b2ac !important;
    border-color: rgba(56, 178, 172, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-teal-600:focus {
    --border-opacity: 1 !important;
    border-color: #319795 !important;
    border-color: rgba(49, 151, 149, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-teal-700:focus {
    --border-opacity: 1 !important;
    border-color: #2c7a7b !important;
    border-color: rgba(44, 122, 123, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-teal-800:focus {
    --border-opacity: 1 !important;
    border-color: #285e61 !important;
    border-color: rgba(40, 94, 97, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-teal-900:focus {
    --border-opacity: 1 !important;
    border-color: #234e52 !important;
    border-color: rgba(35, 78, 82, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-blue-100:focus {
    --border-opacity: 1 !important;
    border-color: #ebf8ff !important;
    border-color: rgba(235, 248, 255, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-blue-200:focus {
    --border-opacity: 1 !important;
    border-color: #bee3f8 !important;
    border-color: rgba(190, 227, 248, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-blue-300:focus {
    --border-opacity: 1 !important;
    border-color: #90cdf4 !important;
    border-color: rgba(144, 205, 244, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-blue-400:focus {
    --border-opacity: 1 !important;
    border-color: #63b3ed !important;
    border-color: rgba(99, 179, 237, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-blue-500:focus {
    --border-opacity: 1 !important;
    border-color: #4299e1 !important;
    border-color: rgba(66, 153, 225, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-blue-600:focus {
    --border-opacity: 1 !important;
    border-color: #3182ce !important;
    border-color: rgba(49, 130, 206, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-blue-700:focus {
    --border-opacity: 1 !important;
    border-color: #2b6cb0 !important;
    border-color: rgba(43, 108, 176, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-blue-800:focus {
    --border-opacity: 1 !important;
    border-color: #2c5282 !important;
    border-color: rgba(44, 82, 130, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-blue-900:focus {
    --border-opacity: 1 !important;
    border-color: #2a4365 !important;
    border-color: rgba(42, 67, 101, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-indigo-100:focus {
    --border-opacity: 1 !important;
    border-color: #ebf4ff !important;
    border-color: rgba(235, 244, 255, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-indigo-200:focus {
    --border-opacity: 1 !important;
    border-color: #c3dafe !important;
    border-color: rgba(195, 218, 254, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-indigo-300:focus {
    --border-opacity: 1 !important;
    border-color: #a3bffa !important;
    border-color: rgba(163, 191, 250, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-indigo-400:focus {
    --border-opacity: 1 !important;
    border-color: #7f9cf5 !important;
    border-color: rgba(127, 156, 245, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-indigo-500:focus {
    --border-opacity: 1 !important;
    border-color: #667eea !important;
    border-color: rgba(102, 126, 234, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-indigo-600:focus {
    --border-opacity: 1 !important;
    border-color: #5a67d8 !important;
    border-color: rgba(90, 103, 216, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-indigo-700:focus {
    --border-opacity: 1 !important;
    border-color: #4c51bf !important;
    border-color: rgba(76, 81, 191, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-indigo-800:focus {
    --border-opacity: 1 !important;
    border-color: #434190 !important;
    border-color: rgba(67, 65, 144, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-indigo-900:focus {
    --border-opacity: 1 !important;
    border-color: #3c366b !important;
    border-color: rgba(60, 54, 107, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-purple-100:focus {
    --border-opacity: 1 !important;
    border-color: #faf5ff !important;
    border-color: rgba(250, 245, 255, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-purple-200:focus {
    --border-opacity: 1 !important;
    border-color: #e9d8fd !important;
    border-color: rgba(233, 216, 253, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-purple-300:focus {
    --border-opacity: 1 !important;
    border-color: #d6bcfa !important;
    border-color: rgba(214, 188, 250, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-purple-400:focus {
    --border-opacity: 1 !important;
    border-color: #b794f4 !important;
    border-color: rgba(183, 148, 244, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-purple-500:focus {
    --border-opacity: 1 !important;
    border-color: #9f7aea !important;
    border-color: rgba(159, 122, 234, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-purple-600:focus {
    --border-opacity: 1 !important;
    border-color: #805ad5 !important;
    border-color: rgba(128, 90, 213, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-purple-700:focus {
    --border-opacity: 1 !important;
    border-color: #6b46c1 !important;
    border-color: rgba(107, 70, 193, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-purple-800:focus {
    --border-opacity: 1 !important;
    border-color: #553c9a !important;
    border-color: rgba(85, 60, 154, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-purple-900:focus {
    --border-opacity: 1 !important;
    border-color: #44337a !important;
    border-color: rgba(68, 51, 122, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-pink-100:focus {
    --border-opacity: 1 !important;
    border-color: #fff5f7 !important;
    border-color: rgba(255, 245, 247, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-pink-200:focus {
    --border-opacity: 1 !important;
    border-color: #fed7e2 !important;
    border-color: rgba(254, 215, 226, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-pink-300:focus {
    --border-opacity: 1 !important;
    border-color: #fbb6ce !important;
    border-color: rgba(251, 182, 206, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-pink-400:focus {
    --border-opacity: 1 !important;
    border-color: #f687b3 !important;
    border-color: rgba(246, 135, 179, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-pink-500:focus {
    --border-opacity: 1 !important;
    border-color: #ed64a6 !important;
    border-color: rgba(237, 100, 166, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-pink-600:focus {
    --border-opacity: 1 !important;
    border-color: #d53f8c !important;
    border-color: rgba(213, 63, 140, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-pink-700:focus {
    --border-opacity: 1 !important;
    border-color: #b83280 !important;
    border-color: rgba(184, 50, 128, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-pink-800:focus {
    --border-opacity: 1 !important;
    border-color: #97266d !important;
    border-color: rgba(151, 38, 109, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-pink-900:focus {
    --border-opacity: 1 !important;
    border-color: #702459 !important;
    border-color: rgba(112, 36, 89, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-ui-gray-100:focus {
    --border-opacity: 1 !important;
    border-color: #f1f1f1 !important;
    border-color: rgba(241, 241, 241, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-ui-brown-100:focus {
    --border-opacity: 1 !important;
    border-color: #f3ecdc !important;
    border-color: rgba(243, 236, 220, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-ui-brown-200:focus {
    --border-opacity: 1 !important;
    border-color: #e8e0c9 !important;
    border-color: rgba(232, 224, 201, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-ui-brown-300:focus {
    --border-opacity: 1 !important;
    border-color: #d0c095 !important;
    border-color: rgba(208, 192, 149, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-ui-brown-700:focus {
    --border-opacity: 1 !important;
    border-color: #bd6005 !important;
    border-color: rgba(189, 96, 5, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-ui-green-300:focus {
    --border-opacity: 1 !important;
    border-color: #aac74c !important;
    border-color: rgba(170, 199, 76, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-ui-green-400:focus {
    --border-opacity: 1 !important;
    border-color: #71893e !important;
    border-color: rgba(113, 137, 62, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-ui-orange-500:focus {
    --border-opacity: 1 !important;
    border-color: #e27212 !important;
    border-color: rgba(226, 114, 18, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-facebook:focus {
    --border-opacity: 1 !important;
    border-color: #3b5998 !important;
    border-color: rgba(59, 89, 152, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-twitter:focus {
    --border-opacity: 1 !important;
    border-color: #00acee !important;
    border-color: rgba(0, 172, 238, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-twitch:focus {
    --border-opacity: 1 !important;
    border-color: #6441a5 !important;
    border-color: rgba(100, 65, 165, var(--border-opacity)) !important;
  }

  .sm\:focus\:cl-border-youtube:focus {
    --border-opacity: 1 !important;
    border-color: #FF0000 !important;
    border-color: rgba(255, 0, 0, var(--border-opacity)) !important;
  }

  .sm\:cl-border-opacity-0 {
    --border-opacity: 0 !important;
  }

  .sm\:cl-border-opacity-25 {
    --border-opacity: 0.25 !important;
  }

  .sm\:cl-border-opacity-50 {
    --border-opacity: 0.5 !important;
  }

  .sm\:cl-border-opacity-75 {
    --border-opacity: 0.75 !important;
  }

  .sm\:cl-border-opacity-100 {
    --border-opacity: 1 !important;
  }

  .sm\:hover\:cl-border-opacity-0:hover {
    --border-opacity: 0 !important;
  }

  .sm\:hover\:cl-border-opacity-25:hover {
    --border-opacity: 0.25 !important;
  }

  .sm\:hover\:cl-border-opacity-50:hover {
    --border-opacity: 0.5 !important;
  }

  .sm\:hover\:cl-border-opacity-75:hover {
    --border-opacity: 0.75 !important;
  }

  .sm\:hover\:cl-border-opacity-100:hover {
    --border-opacity: 1 !important;
  }

  .sm\:focus\:cl-border-opacity-0:focus {
    --border-opacity: 0 !important;
  }

  .sm\:focus\:cl-border-opacity-25:focus {
    --border-opacity: 0.25 !important;
  }

  .sm\:focus\:cl-border-opacity-50:focus {
    --border-opacity: 0.5 !important;
  }

  .sm\:focus\:cl-border-opacity-75:focus {
    --border-opacity: 0.75 !important;
  }

  .sm\:focus\:cl-border-opacity-100:focus {
    --border-opacity: 1 !important;
  }

  .sm\:cl-rounded-none {
    border-radius: 0 !important;
  }

  .sm\:cl-rounded-sm {
    border-radius: 0.125rem !important;
  }

  .sm\:cl-rounded {
    border-radius: 0.25rem !important;
  }

  .sm\:cl-rounded-md {
    border-radius: 0.375rem !important;
  }

  .sm\:cl-rounded-lg {
    border-radius: 0.5rem !important;
  }

  .sm\:cl-rounded-xl {
    border-radius: 0.75rem !important;
  }

  .sm\:cl-rounded-2xl {
    border-radius: 1rem !important;
  }

  .sm\:cl-rounded-3xl {
    border-radius: 1.5rem !important;
  }

  .sm\:cl-rounded-full {
    border-radius: 9999px !important;
  }

  .sm\:cl-rounded-t-none {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .sm\:cl-rounded-r-none {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .sm\:cl-rounded-b-none {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .sm\:cl-rounded-l-none {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .sm\:cl-rounded-t-sm {
    border-top-left-radius: 0.125rem !important;
    border-top-right-radius: 0.125rem !important;
  }

  .sm\:cl-rounded-r-sm {
    border-top-right-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }

  .sm\:cl-rounded-b-sm {
    border-bottom-right-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .sm\:cl-rounded-l-sm {
    border-top-left-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .sm\:cl-rounded-t {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
  }

  .sm\:cl-rounded-r {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }

  .sm\:cl-rounded-b {
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .sm\:cl-rounded-l {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .sm\:cl-rounded-t-md {
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
  }

  .sm\:cl-rounded-r-md {
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }

  .sm\:cl-rounded-b-md {
    border-bottom-right-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .sm\:cl-rounded-l-md {
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .sm\:cl-rounded-t-lg {
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
  }

  .sm\:cl-rounded-r-lg {
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }

  .sm\:cl-rounded-b-lg {
    border-bottom-right-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .sm\:cl-rounded-l-lg {
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .sm\:cl-rounded-t-xl {
    border-top-left-radius: 0.75rem !important;
    border-top-right-radius: 0.75rem !important;
  }

  .sm\:cl-rounded-r-xl {
    border-top-right-radius: 0.75rem !important;
    border-bottom-right-radius: 0.75rem !important;
  }

  .sm\:cl-rounded-b-xl {
    border-bottom-right-radius: 0.75rem !important;
    border-bottom-left-radius: 0.75rem !important;
  }

  .sm\:cl-rounded-l-xl {
    border-top-left-radius: 0.75rem !important;
    border-bottom-left-radius: 0.75rem !important;
  }

  .sm\:cl-rounded-t-2xl {
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
  }

  .sm\:cl-rounded-r-2xl {
    border-top-right-radius: 1rem !important;
    border-bottom-right-radius: 1rem !important;
  }

  .sm\:cl-rounded-b-2xl {
    border-bottom-right-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
  }

  .sm\:cl-rounded-l-2xl {
    border-top-left-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
  }

  .sm\:cl-rounded-t-3xl {
    border-top-left-radius: 1.5rem !important;
    border-top-right-radius: 1.5rem !important;
  }

  .sm\:cl-rounded-r-3xl {
    border-top-right-radius: 1.5rem !important;
    border-bottom-right-radius: 1.5rem !important;
  }

  .sm\:cl-rounded-b-3xl {
    border-bottom-right-radius: 1.5rem !important;
    border-bottom-left-radius: 1.5rem !important;
  }

  .sm\:cl-rounded-l-3xl {
    border-top-left-radius: 1.5rem !important;
    border-bottom-left-radius: 1.5rem !important;
  }

  .sm\:cl-rounded-t-full {
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .sm\:cl-rounded-r-full {
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .sm\:cl-rounded-b-full {
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .sm\:cl-rounded-l-full {
    border-top-left-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .sm\:cl-rounded-tl-none {
    border-top-left-radius: 0 !important;
  }

  .sm\:cl-rounded-tr-none {
    border-top-right-radius: 0 !important;
  }

  .sm\:cl-rounded-br-none {
    border-bottom-right-radius: 0 !important;
  }

  .sm\:cl-rounded-bl-none {
    border-bottom-left-radius: 0 !important;
  }

  .sm\:cl-rounded-tl-sm {
    border-top-left-radius: 0.125rem !important;
  }

  .sm\:cl-rounded-tr-sm {
    border-top-right-radius: 0.125rem !important;
  }

  .sm\:cl-rounded-br-sm {
    border-bottom-right-radius: 0.125rem !important;
  }

  .sm\:cl-rounded-bl-sm {
    border-bottom-left-radius: 0.125rem !important;
  }

  .sm\:cl-rounded-tl {
    border-top-left-radius: 0.25rem !important;
  }

  .sm\:cl-rounded-tr {
    border-top-right-radius: 0.25rem !important;
  }

  .sm\:cl-rounded-br {
    border-bottom-right-radius: 0.25rem !important;
  }

  .sm\:cl-rounded-bl {
    border-bottom-left-radius: 0.25rem !important;
  }

  .sm\:cl-rounded-tl-md {
    border-top-left-radius: 0.375rem !important;
  }

  .sm\:cl-rounded-tr-md {
    border-top-right-radius: 0.375rem !important;
  }

  .sm\:cl-rounded-br-md {
    border-bottom-right-radius: 0.375rem !important;
  }

  .sm\:cl-rounded-bl-md {
    border-bottom-left-radius: 0.375rem !important;
  }

  .sm\:cl-rounded-tl-lg {
    border-top-left-radius: 0.5rem !important;
  }

  .sm\:cl-rounded-tr-lg {
    border-top-right-radius: 0.5rem !important;
  }

  .sm\:cl-rounded-br-lg {
    border-bottom-right-radius: 0.5rem !important;
  }

  .sm\:cl-rounded-bl-lg {
    border-bottom-left-radius: 0.5rem !important;
  }

  .sm\:cl-rounded-tl-xl {
    border-top-left-radius: 0.75rem !important;
  }

  .sm\:cl-rounded-tr-xl {
    border-top-right-radius: 0.75rem !important;
  }

  .sm\:cl-rounded-br-xl {
    border-bottom-right-radius: 0.75rem !important;
  }

  .sm\:cl-rounded-bl-xl {
    border-bottom-left-radius: 0.75rem !important;
  }

  .sm\:cl-rounded-tl-2xl {
    border-top-left-radius: 1rem !important;
  }

  .sm\:cl-rounded-tr-2xl {
    border-top-right-radius: 1rem !important;
  }

  .sm\:cl-rounded-br-2xl {
    border-bottom-right-radius: 1rem !important;
  }

  .sm\:cl-rounded-bl-2xl {
    border-bottom-left-radius: 1rem !important;
  }

  .sm\:cl-rounded-tl-3xl {
    border-top-left-radius: 1.5rem !important;
  }

  .sm\:cl-rounded-tr-3xl {
    border-top-right-radius: 1.5rem !important;
  }

  .sm\:cl-rounded-br-3xl {
    border-bottom-right-radius: 1.5rem !important;
  }

  .sm\:cl-rounded-bl-3xl {
    border-bottom-left-radius: 1.5rem !important;
  }

  .sm\:cl-rounded-tl-full {
    border-top-left-radius: 9999px !important;
  }

  .sm\:cl-rounded-tr-full {
    border-top-right-radius: 9999px !important;
  }

  .sm\:cl-rounded-br-full {
    border-bottom-right-radius: 9999px !important;
  }

  .sm\:cl-rounded-bl-full {
    border-bottom-left-radius: 9999px !important;
  }

  .sm\:cl-border-solid {
    border-style: solid !important;
  }

  .sm\:cl-border-dashed {
    border-style: dashed !important;
  }

  .sm\:cl-border-dotted {
    border-style: dotted !important;
  }

  .sm\:cl-border-double {
    border-style: double !important;
  }

  .sm\:cl-border-none {
    border-style: none !important;
  }

  .sm\:cl-border-0 {
    border-width: 0 !important;
  }

  .sm\:cl-border-2 {
    border-width: 2px !important;
  }

  .sm\:cl-border-4 {
    border-width: 4px !important;
  }

  .sm\:cl-border-8 {
    border-width: 8px !important;
  }

  .sm\:cl-border-15 {
    border-width: 15px !important;
  }

  .sm\:cl-border {
    border-width: 1px !important;
  }

  .sm\:cl-border-t-0 {
    border-top-width: 0 !important;
  }

  .sm\:cl-border-r-0 {
    border-right-width: 0 !important;
  }

  .sm\:cl-border-b-0 {
    border-bottom-width: 0 !important;
  }

  .sm\:cl-border-l-0 {
    border-left-width: 0 !important;
  }

  .sm\:cl-border-t-2 {
    border-top-width: 2px !important;
  }

  .sm\:cl-border-r-2 {
    border-right-width: 2px !important;
  }

  .sm\:cl-border-b-2 {
    border-bottom-width: 2px !important;
  }

  .sm\:cl-border-l-2 {
    border-left-width: 2px !important;
  }

  .sm\:cl-border-t-4 {
    border-top-width: 4px !important;
  }

  .sm\:cl-border-r-4 {
    border-right-width: 4px !important;
  }

  .sm\:cl-border-b-4 {
    border-bottom-width: 4px !important;
  }

  .sm\:cl-border-l-4 {
    border-left-width: 4px !important;
  }

  .sm\:cl-border-t-8 {
    border-top-width: 8px !important;
  }

  .sm\:cl-border-r-8 {
    border-right-width: 8px !important;
  }

  .sm\:cl-border-b-8 {
    border-bottom-width: 8px !important;
  }

  .sm\:cl-border-l-8 {
    border-left-width: 8px !important;
  }

  .sm\:cl-border-t-15 {
    border-top-width: 15px !important;
  }

  .sm\:cl-border-r-15 {
    border-right-width: 15px !important;
  }

  .sm\:cl-border-b-15 {
    border-bottom-width: 15px !important;
  }

  .sm\:cl-border-l-15 {
    border-left-width: 15px !important;
  }

  .sm\:cl-border-t {
    border-top-width: 1px !important;
  }

  .sm\:cl-border-r {
    border-right-width: 1px !important;
  }

  .sm\:cl-border-b {
    border-bottom-width: 1px !important;
  }

  .sm\:cl-border-l {
    border-left-width: 1px !important;
  }

  .sm\:cl-box-border {
    box-sizing: border-box !important;
  }

  .sm\:cl-box-content {
    box-sizing: content-box !important;
  }

  .sm\:cl-cursor-auto {
    cursor: auto !important;
  }

  .sm\:cl-cursor-default {
    cursor: default !important;
  }

  .sm\:cl-cursor-pointer {
    cursor: pointer !important;
  }

  .sm\:cl-cursor-wait {
    cursor: wait !important;
  }

  .sm\:cl-cursor-text {
    cursor: text !important;
  }

  .sm\:cl-cursor-move {
    cursor: move !important;
  }

  .sm\:cl-cursor-not-allowed {
    cursor: not-allowed !important;
  }

  .sm\:cl-block {
    display: block !important;
  }

  .sm\:cl-inline-block {
    display: inline-block !important;
  }

  .sm\:cl-inline {
    display: inline !important;
  }

  .sm\:cl-flex {
    display: flex !important;
  }

  .sm\:cl-inline-flex {
    display: inline-flex !important;
  }

  .sm\:cl-table {
    display: table !important;
  }

  .sm\:cl-table-caption {
    display: table-caption !important;
  }

  .sm\:cl-table-cell {
    display: table-cell !important;
  }

  .sm\:cl-table-column {
    display: table-column !important;
  }

  .sm\:cl-table-column-group {
    display: table-column-group !important;
  }

  .sm\:cl-table-footer-group {
    display: table-footer-group !important;
  }

  .sm\:cl-table-header-group {
    display: table-header-group !important;
  }

  .sm\:cl-table-row-group {
    display: table-row-group !important;
  }

  .sm\:cl-table-row {
    display: table-row !important;
  }

  .sm\:cl-flow-root {
    display: flow-root !important;
  }

  .sm\:cl-grid {
    display: grid !important;
  }

  .sm\:cl-inline-grid {
    display: inline-grid !important;
  }

  .sm\:cl-contents {
    display: contents !important;
  }

  .sm\:cl-hidden {
    display: none !important;
  }

  .sm\:cl-flex-row {
    flex-direction: row !important;
  }

  .sm\:cl-flex-row-reverse {
    flex-direction: row-reverse !important;
  }

  .sm\:cl-flex-col {
    flex-direction: column !important;
  }

  .sm\:cl-flex-col-reverse {
    flex-direction: column-reverse !important;
  }

  .sm\:cl-flex-wrap {
    flex-wrap: wrap !important;
  }

  .sm\:cl-flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .sm\:cl-flex-no-wrap {
    flex-wrap: nowrap !important;
  }

  .sm\:cl-place-items-auto {
    place-items: auto !important;
  }

  .sm\:cl-place-items-start {
    place-items: start !important;
  }

  .sm\:cl-place-items-end {
    place-items: end !important;
  }

  .sm\:cl-place-items-center {
    place-items: center !important;
  }

  .sm\:cl-place-items-stretch {
    place-items: stretch !important;
  }

  .sm\:cl-place-content-center {
    place-content: center !important;
  }

  .sm\:cl-place-content-start {
    place-content: start !important;
  }

  .sm\:cl-place-content-end {
    place-content: end !important;
  }

  .sm\:cl-place-content-between {
    place-content: space-between !important;
  }

  .sm\:cl-place-content-around {
    place-content: space-around !important;
  }

  .sm\:cl-place-content-evenly {
    place-content: space-evenly !important;
  }

  .sm\:cl-place-content-stretch {
    place-content: stretch !important;
  }

  .sm\:cl-place-self-auto {
    place-self: auto !important;
  }

  .sm\:cl-place-self-start {
    place-self: start !important;
  }

  .sm\:cl-place-self-end {
    place-self: end !important;
  }

  .sm\:cl-place-self-center {
    place-self: center !important;
  }

  .sm\:cl-place-self-stretch {
    place-self: stretch !important;
  }

  .sm\:cl-items-start {
    align-items: flex-start !important;
  }

  .sm\:cl-items-end {
    align-items: flex-end !important;
  }

  .sm\:cl-items-center {
    align-items: center !important;
  }

  .sm\:cl-items-baseline {
    align-items: baseline !important;
  }

  .sm\:cl-items-stretch {
    align-items: stretch !important;
  }

  .sm\:cl-content-center {
    align-content: center !important;
  }

  .sm\:cl-content-start {
    align-content: flex-start !important;
  }

  .sm\:cl-content-end {
    align-content: flex-end !important;
  }

  .sm\:cl-content-between {
    align-content: space-between !important;
  }

  .sm\:cl-content-around {
    align-content: space-around !important;
  }

  .sm\:cl-content-evenly {
    align-content: space-evenly !important;
  }

  .sm\:cl-self-auto {
    align-self: auto !important;
  }

  .sm\:cl-self-start {
    align-self: flex-start !important;
  }

  .sm\:cl-self-end {
    align-self: flex-end !important;
  }

  .sm\:cl-self-center {
    align-self: center !important;
  }

  .sm\:cl-self-stretch {
    align-self: stretch !important;
  }

  .sm\:cl-justify-items-auto {
    justify-items: auto !important;
  }

  .sm\:cl-justify-items-start {
    justify-items: start !important;
  }

  .sm\:cl-justify-items-end {
    justify-items: end !important;
  }

  .sm\:cl-justify-items-center {
    justify-items: center !important;
  }

  .sm\:cl-justify-items-stretch {
    justify-items: stretch !important;
  }

  .sm\:cl-justify-start {
    justify-content: flex-start !important;
  }

  .sm\:cl-justify-end {
    justify-content: flex-end !important;
  }

  .sm\:cl-justify-center {
    justify-content: center !important;
  }

  .sm\:cl-justify-between {
    justify-content: space-between !important;
  }

  .sm\:cl-justify-around {
    justify-content: space-around !important;
  }

  .sm\:cl-justify-evenly {
    justify-content: space-evenly !important;
  }

  .sm\:cl-justify-self-auto {
    justify-self: auto !important;
  }

  .sm\:cl-justify-self-start {
    justify-self: start !important;
  }

  .sm\:cl-justify-self-end {
    justify-self: end !important;
  }

  .sm\:cl-justify-self-center {
    justify-self: center !important;
  }

  .sm\:cl-justify-self-stretch {
    justify-self: stretch !important;
  }

  .sm\:cl-flex-1 {
    flex: 1 1 0% !important;
  }

  .sm\:cl-flex-auto {
    flex: 1 1 auto !important;
  }

  .sm\:cl-flex-initial {
    flex: 0 1 auto !important;
  }

  .sm\:cl-flex-none {
    flex: none !important;
  }

  .sm\:cl-flex-grow-0 {
    flex-grow: 0 !important;
  }

  .sm\:cl-flex-grow {
    flex-grow: 1 !important;
  }

  .sm\:cl-flex-shrink-0 {
    flex-shrink: 0 !important;
  }

  .sm\:cl-flex-shrink {
    flex-shrink: 1 !important;
  }

  .sm\:cl-order-1 {
    order: 1 !important;
  }

  .sm\:cl-order-2 {
    order: 2 !important;
  }

  .sm\:cl-order-3 {
    order: 3 !important;
  }

  .sm\:cl-order-4 {
    order: 4 !important;
  }

  .sm\:cl-order-5 {
    order: 5 !important;
  }

  .sm\:cl-order-6 {
    order: 6 !important;
  }

  .sm\:cl-order-7 {
    order: 7 !important;
  }

  .sm\:cl-order-8 {
    order: 8 !important;
  }

  .sm\:cl-order-9 {
    order: 9 !important;
  }

  .sm\:cl-order-10 {
    order: 10 !important;
  }

  .sm\:cl-order-11 {
    order: 11 !important;
  }

  .sm\:cl-order-12 {
    order: 12 !important;
  }

  .sm\:cl-order-first {
    order: -9999 !important;
  }

  .sm\:cl-order-last {
    order: 9999 !important;
  }

  .sm\:cl-order-none {
    order: 0 !important;
  }

  .sm\:cl-float-right {
    float: right !important;
  }

  .sm\:cl-float-left {
    float: left !important;
  }

  .sm\:cl-float-none {
    float: none !important;
  }

  .sm\:cl-clearfix:after {
    content: "" !important;
    display: table !important;
    clear: both !important;
  }

  .sm\:cl-clear-left {
    clear: left !important;
  }

  .sm\:cl-clear-right {
    clear: right !important;
  }

  .sm\:cl-clear-both {
    clear: both !important;
  }

  .sm\:cl-clear-none {
    clear: none !important;
  }

  .sm\:cl-font-sans {
    font-family: Lato, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  }

  .sm\:cl-font-serif {
    font-family: Georgia, Cambria, "Times New Roman", Times, serif !important;
  }

  .sm\:cl-font-mono {
    font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
  }

  .sm\:cl-font-heading {
    font-family: Corben, cursive, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  }

  .sm\:cl-font-hairline {
    font-weight: 100 !important;
  }

  .sm\:cl-font-thin {
    font-weight: 200 !important;
  }

  .sm\:cl-font-light {
    font-weight: 300 !important;
  }

  .sm\:cl-font-normal {
    font-weight: 400 !important;
  }

  .sm\:cl-font-medium {
    font-weight: 500 !important;
  }

  .sm\:cl-font-semibold {
    font-weight: 600 !important;
  }

  .sm\:cl-font-bold {
    font-weight: 700 !important;
  }

  .sm\:cl-font-extrabold {
    font-weight: 800 !important;
  }

  .sm\:cl-font-black {
    font-weight: 900 !important;
  }

  .sm\:hover\:cl-font-hairline:hover {
    font-weight: 100 !important;
  }

  .sm\:hover\:cl-font-thin:hover {
    font-weight: 200 !important;
  }

  .sm\:hover\:cl-font-light:hover {
    font-weight: 300 !important;
  }

  .sm\:hover\:cl-font-normal:hover {
    font-weight: 400 !important;
  }

  .sm\:hover\:cl-font-medium:hover {
    font-weight: 500 !important;
  }

  .sm\:hover\:cl-font-semibold:hover {
    font-weight: 600 !important;
  }

  .sm\:hover\:cl-font-bold:hover {
    font-weight: 700 !important;
  }

  .sm\:hover\:cl-font-extrabold:hover {
    font-weight: 800 !important;
  }

  .sm\:hover\:cl-font-black:hover {
    font-weight: 900 !important;
  }

  .sm\:focus\:cl-font-hairline:focus {
    font-weight: 100 !important;
  }

  .sm\:focus\:cl-font-thin:focus {
    font-weight: 200 !important;
  }

  .sm\:focus\:cl-font-light:focus {
    font-weight: 300 !important;
  }

  .sm\:focus\:cl-font-normal:focus {
    font-weight: 400 !important;
  }

  .sm\:focus\:cl-font-medium:focus {
    font-weight: 500 !important;
  }

  .sm\:focus\:cl-font-semibold:focus {
    font-weight: 600 !important;
  }

  .sm\:focus\:cl-font-bold:focus {
    font-weight: 700 !important;
  }

  .sm\:focus\:cl-font-extrabold:focus {
    font-weight: 800 !important;
  }

  .sm\:focus\:cl-font-black:focus {
    font-weight: 900 !important;
  }

  .sm\:cl-h-0 {
    height: 0 !important;
  }

  .sm\:cl-h-1 {
    height: 4px !important;
  }

  .sm\:cl-h-2 {
    height: 8px !important;
  }

  .sm\:cl-h-3 {
    height: 12px !important;
  }

  .sm\:cl-h-4 {
    height: 16px !important;
  }

  .sm\:cl-h-5 {
    height: 20px !important;
  }

  .sm\:cl-h-6 {
    height: 24px !important;
  }

  .sm\:cl-h-8 {
    height: 32px !important;
  }

  .sm\:cl-h-10 {
    height: 40px !important;
  }

  .sm\:cl-h-12 {
    height: 48px !important;
  }

  .sm\:cl-h-16 {
    height: 64px !important;
  }

  .sm\:cl-h-20 {
    height: 80px !important;
  }

  .sm\:cl-h-24 {
    height: 96px !important;
  }

  .sm\:cl-h-26 {
    height: 100px !important;
  }

  .sm\:cl-h-28 {
    height: 110px !important;
  }

  .sm\:cl-h-32 {
    height: 128px !important;
  }

  .sm\:cl-h-40 {
    height: 160px !important;
  }

  .sm\:cl-h-48 {
    height: 192px !important;
  }

  .sm\:cl-h-56 {
    height: 224px !important;
  }

  .sm\:cl-h-64 {
    height: 256px !important;
  }

  .sm\:cl-h-auto {
    height: auto !important;
  }

  .sm\:cl-h-px {
    height: 1px !important;
  }

  .sm\:cl-h-full {
    height: 100% !important;
  }

  .sm\:cl-h-screen {
    height: 100vh !important;
  }

  .sm\:cl-h-1\/2 {
    height: 50% !important;
  }

  .sm\:cl-h-1\/3 {
    height: 33.333333% !important;
  }

  .sm\:cl-h-2\/3 {
    height: 66.666667% !important;
  }

  .sm\:cl-h-1\/4 {
    height: 25% !important;
  }

  .sm\:cl-h-2\/4 {
    height: 50% !important;
  }

  .sm\:cl-h-3\/4 {
    height: 75% !important;
  }

  .sm\:cl-h-1\/5 {
    height: 20% !important;
  }

  .sm\:cl-h-2\/5 {
    height: 40% !important;
  }

  .sm\:cl-h-3\/5 {
    height: 60% !important;
  }

  .sm\:cl-h-4\/5 {
    height: 80% !important;
  }

  .sm\:cl-h-1\/6 {
    height: 16.666667% !important;
  }

  .sm\:cl-h-2\/6 {
    height: 33.333333% !important;
  }

  .sm\:cl-h-3\/6 {
    height: 50% !important;
  }

  .sm\:cl-h-4\/6 {
    height: 66.666667% !important;
  }

  .sm\:cl-h-5\/6 {
    height: 83.333333% !important;
  }

  .sm\:cl-h-1\/12 {
    height: 8.333333% !important;
  }

  .sm\:cl-h-2\/12 {
    height: 16.666667% !important;
  }

  .sm\:cl-h-3\/12 {
    height: 25% !important;
  }

  .sm\:cl-h-4\/12 {
    height: 33.333333% !important;
  }

  .sm\:cl-h-5\/12 {
    height: 41.666667% !important;
  }

  .sm\:cl-h-6\/12 {
    height: 50% !important;
  }

  .sm\:cl-h-7\/12 {
    height: 58.333333% !important;
  }

  .sm\:cl-h-8\/12 {
    height: 66.666667% !important;
  }

  .sm\:cl-h-9\/12 {
    height: 75% !important;
  }

  .sm\:cl-h-10\/12 {
    height: 83.333333% !important;
  }

  .sm\:cl-h-11\/12 {
    height: 91.666667% !important;
  }

  .sm\:cl-text-xxs {
    font-size: 10px !important;
  }

  .sm\:cl-text-xs {
    font-size: 12px !important;
  }

  .sm\:cl-text-sm {
    font-size: 14px !important;
  }

  .sm\:cl-text-base {
    font-size: 16px !important;
  }

  .sm\:cl-text-lg {
    font-size: 18px !important;
  }

  .sm\:cl-text-xl {
    font-size: 20px !important;
  }

  .sm\:cl-text-2xl {
    font-size: 24px !important;
  }

  .sm\:cl-text-3xl {
    font-size: 30px !important;
  }

  .sm\:cl-text-4xl {
    font-size: 36px !important;
  }

  .sm\:cl-text-5xl {
    font-size: 48px !important;
  }

  .sm\:cl-text-6xl {
    font-size: 64px !important;
  }

  .sm\:cl-leading-3 {
    line-height: .75rem !important;
  }

  .sm\:cl-leading-4 {
    line-height: 1rem !important;
  }

  .sm\:cl-leading-5 {
    line-height: 1.25rem !important;
  }

  .sm\:cl-leading-6 {
    line-height: 1.5rem !important;
  }

  .sm\:cl-leading-7 {
    line-height: 1.75rem !important;
  }

  .sm\:cl-leading-8 {
    line-height: 2rem !important;
  }

  .sm\:cl-leading-9 {
    line-height: 2.25rem !important;
  }

  .sm\:cl-leading-10 {
    line-height: 2.5rem !important;
  }

  .sm\:cl-leading-none {
    line-height: 1 !important;
  }

  .sm\:cl-leading-tight {
    line-height: 1.25 !important;
  }

  .sm\:cl-leading-snug {
    line-height: 1.375 !important;
  }

  .sm\:cl-leading-normal {
    line-height: 1.5 !important;
  }

  .sm\:cl-leading-relaxed {
    line-height: 1.625 !important;
  }

  .sm\:cl-leading-loose {
    line-height: 2 !important;
  }

  .sm\:cl-list-inside {
    list-style-position: inside !important;
  }

  .sm\:cl-list-outside {
    list-style-position: outside !important;
  }

  .sm\:cl-list-none {
    list-style-type: none !important;
  }

  .sm\:cl-list-disc {
    list-style-type: disc !important;
  }

  .sm\:cl-list-decimal {
    list-style-type: decimal !important;
  }

  .sm\:cl-m-0 {
    margin: 0 !important;
  }

  .sm\:cl-m-1 {
    margin: 4px !important;
  }

  .sm\:cl-m-2 {
    margin: 8px !important;
  }

  .sm\:cl-m-3 {
    margin: 12px !important;
  }

  .sm\:cl-m-4 {
    margin: 16px !important;
  }

  .sm\:cl-m-5 {
    margin: 20px !important;
  }

  .sm\:cl-m-6 {
    margin: 24px !important;
  }

  .sm\:cl-m-8 {
    margin: 32px !important;
  }

  .sm\:cl-m-10 {
    margin: 40px !important;
  }

  .sm\:cl-m-12 {
    margin: 48px !important;
  }

  .sm\:cl-m-16 {
    margin: 64px !important;
  }

  .sm\:cl-m-20 {
    margin: 80px !important;
  }

  .sm\:cl-m-24 {
    margin: 96px !important;
  }

  .sm\:cl-m-26 {
    margin: 100px !important;
  }

  .sm\:cl-m-28 {
    margin: 110px !important;
  }

  .sm\:cl-m-32 {
    margin: 128px !important;
  }

  .sm\:cl-m-40 {
    margin: 160px !important;
  }

  .sm\:cl-m-48 {
    margin: 192px !important;
  }

  .sm\:cl-m-56 {
    margin: 224px !important;
  }

  .sm\:cl-m-64 {
    margin: 256px !important;
  }

  .sm\:cl-m-auto {
    margin: auto !important;
  }

  .sm\:cl-m-px {
    margin: 1px !important;
  }

  .sm\:cl--m-1 {
    margin: -4px !important;
  }

  .sm\:cl--m-2 {
    margin: -8px !important;
  }

  .sm\:cl--m-3 {
    margin: -12px !important;
  }

  .sm\:cl--m-4 {
    margin: -16px !important;
  }

  .sm\:cl--m-5 {
    margin: -20px !important;
  }

  .sm\:cl--m-6 {
    margin: -24px !important;
  }

  .sm\:cl--m-8 {
    margin: -32px !important;
  }

  .sm\:cl--m-10 {
    margin: -40px !important;
  }

  .sm\:cl--m-12 {
    margin: -48px !important;
  }

  .sm\:cl--m-16 {
    margin: -64px !important;
  }

  .sm\:cl--m-20 {
    margin: -80px !important;
  }

  .sm\:cl--m-24 {
    margin: -96px !important;
  }

  .sm\:cl--m-26 {
    margin: -100px !important;
  }

  .sm\:cl--m-28 {
    margin: -110px !important;
  }

  .sm\:cl--m-32 {
    margin: -128px !important;
  }

  .sm\:cl--m-40 {
    margin: -160px !important;
  }

  .sm\:cl--m-48 {
    margin: -192px !important;
  }

  .sm\:cl--m-56 {
    margin: -224px !important;
  }

  .sm\:cl--m-64 {
    margin: -256px !important;
  }

  .sm\:cl--m-px {
    margin: -1px !important;
  }

  .sm\:cl-my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .sm\:cl-mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .sm\:cl-my-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  .sm\:cl-mx-1 {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }

  .sm\:cl-my-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  .sm\:cl-mx-2 {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }

  .sm\:cl-my-3 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }

  .sm\:cl-mx-3 {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }

  .sm\:cl-my-4 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }

  .sm\:cl-mx-4 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }

  .sm\:cl-my-5 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .sm\:cl-mx-5 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }

  .sm\:cl-my-6 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }

  .sm\:cl-mx-6 {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }

  .sm\:cl-my-8 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }

  .sm\:cl-mx-8 {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }

  .sm\:cl-my-10 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  .sm\:cl-mx-10 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }

  .sm\:cl-my-12 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }

  .sm\:cl-mx-12 {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }

  .sm\:cl-my-16 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }

  .sm\:cl-mx-16 {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }

  .sm\:cl-my-20 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }

  .sm\:cl-mx-20 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }

  .sm\:cl-my-24 {
    margin-top: 96px !important;
    margin-bottom: 96px !important;
  }

  .sm\:cl-mx-24 {
    margin-left: 96px !important;
    margin-right: 96px !important;
  }

  .sm\:cl-my-26 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }

  .sm\:cl-mx-26 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }

  .sm\:cl-my-28 {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
  }

  .sm\:cl-mx-28 {
    margin-left: 110px !important;
    margin-right: 110px !important;
  }

  .sm\:cl-my-32 {
    margin-top: 128px !important;
    margin-bottom: 128px !important;
  }

  .sm\:cl-mx-32 {
    margin-left: 128px !important;
    margin-right: 128px !important;
  }

  .sm\:cl-my-40 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }

  .sm\:cl-mx-40 {
    margin-left: 160px !important;
    margin-right: 160px !important;
  }

  .sm\:cl-my-48 {
    margin-top: 192px !important;
    margin-bottom: 192px !important;
  }

  .sm\:cl-mx-48 {
    margin-left: 192px !important;
    margin-right: 192px !important;
  }

  .sm\:cl-my-56 {
    margin-top: 224px !important;
    margin-bottom: 224px !important;
  }

  .sm\:cl-mx-56 {
    margin-left: 224px !important;
    margin-right: 224px !important;
  }

  .sm\:cl-my-64 {
    margin-top: 256px !important;
    margin-bottom: 256px !important;
  }

  .sm\:cl-mx-64 {
    margin-left: 256px !important;
    margin-right: 256px !important;
  }

  .sm\:cl-my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .sm\:cl-mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .sm\:cl-my-px {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .sm\:cl-mx-px {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .sm\:cl--my-1 {
    margin-top: -4px !important;
    margin-bottom: -4px !important;
  }

  .sm\:cl--mx-1 {
    margin-left: -4px !important;
    margin-right: -4px !important;
  }

  .sm\:cl--my-2 {
    margin-top: -8px !important;
    margin-bottom: -8px !important;
  }

  .sm\:cl--mx-2 {
    margin-left: -8px !important;
    margin-right: -8px !important;
  }

  .sm\:cl--my-3 {
    margin-top: -12px !important;
    margin-bottom: -12px !important;
  }

  .sm\:cl--mx-3 {
    margin-left: -12px !important;
    margin-right: -12px !important;
  }

  .sm\:cl--my-4 {
    margin-top: -16px !important;
    margin-bottom: -16px !important;
  }

  .sm\:cl--mx-4 {
    margin-left: -16px !important;
    margin-right: -16px !important;
  }

  .sm\:cl--my-5 {
    margin-top: -20px !important;
    margin-bottom: -20px !important;
  }

  .sm\:cl--mx-5 {
    margin-left: -20px !important;
    margin-right: -20px !important;
  }

  .sm\:cl--my-6 {
    margin-top: -24px !important;
    margin-bottom: -24px !important;
  }

  .sm\:cl--mx-6 {
    margin-left: -24px !important;
    margin-right: -24px !important;
  }

  .sm\:cl--my-8 {
    margin-top: -32px !important;
    margin-bottom: -32px !important;
  }

  .sm\:cl--mx-8 {
    margin-left: -32px !important;
    margin-right: -32px !important;
  }

  .sm\:cl--my-10 {
    margin-top: -40px !important;
    margin-bottom: -40px !important;
  }

  .sm\:cl--mx-10 {
    margin-left: -40px !important;
    margin-right: -40px !important;
  }

  .sm\:cl--my-12 {
    margin-top: -48px !important;
    margin-bottom: -48px !important;
  }

  .sm\:cl--mx-12 {
    margin-left: -48px !important;
    margin-right: -48px !important;
  }

  .sm\:cl--my-16 {
    margin-top: -64px !important;
    margin-bottom: -64px !important;
  }

  .sm\:cl--mx-16 {
    margin-left: -64px !important;
    margin-right: -64px !important;
  }

  .sm\:cl--my-20 {
    margin-top: -80px !important;
    margin-bottom: -80px !important;
  }

  .sm\:cl--mx-20 {
    margin-left: -80px !important;
    margin-right: -80px !important;
  }

  .sm\:cl--my-24 {
    margin-top: -96px !important;
    margin-bottom: -96px !important;
  }

  .sm\:cl--mx-24 {
    margin-left: -96px !important;
    margin-right: -96px !important;
  }

  .sm\:cl--my-26 {
    margin-top: -100px !important;
    margin-bottom: -100px !important;
  }

  .sm\:cl--mx-26 {
    margin-left: -100px !important;
    margin-right: -100px !important;
  }

  .sm\:cl--my-28 {
    margin-top: -110px !important;
    margin-bottom: -110px !important;
  }

  .sm\:cl--mx-28 {
    margin-left: -110px !important;
    margin-right: -110px !important;
  }

  .sm\:cl--my-32 {
    margin-top: -128px !important;
    margin-bottom: -128px !important;
  }

  .sm\:cl--mx-32 {
    margin-left: -128px !important;
    margin-right: -128px !important;
  }

  .sm\:cl--my-40 {
    margin-top: -160px !important;
    margin-bottom: -160px !important;
  }

  .sm\:cl--mx-40 {
    margin-left: -160px !important;
    margin-right: -160px !important;
  }

  .sm\:cl--my-48 {
    margin-top: -192px !important;
    margin-bottom: -192px !important;
  }

  .sm\:cl--mx-48 {
    margin-left: -192px !important;
    margin-right: -192px !important;
  }

  .sm\:cl--my-56 {
    margin-top: -224px !important;
    margin-bottom: -224px !important;
  }

  .sm\:cl--mx-56 {
    margin-left: -224px !important;
    margin-right: -224px !important;
  }

  .sm\:cl--my-64 {
    margin-top: -256px !important;
    margin-bottom: -256px !important;
  }

  .sm\:cl--mx-64 {
    margin-left: -256px !important;
    margin-right: -256px !important;
  }

  .sm\:cl--my-px {
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .sm\:cl--mx-px {
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .sm\:cl-mt-0 {
    margin-top: 0 !important;
  }

  .sm\:cl-mr-0 {
    margin-right: 0 !important;
  }

  .sm\:cl-mb-0 {
    margin-bottom: 0 !important;
  }

  .sm\:cl-ml-0 {
    margin-left: 0 !important;
  }

  .sm\:cl-mt-1 {
    margin-top: 4px !important;
  }

  .sm\:cl-mr-1 {
    margin-right: 4px !important;
  }

  .sm\:cl-mb-1 {
    margin-bottom: 4px !important;
  }

  .sm\:cl-ml-1 {
    margin-left: 4px !important;
  }

  .sm\:cl-mt-2 {
    margin-top: 8px !important;
  }

  .sm\:cl-mr-2 {
    margin-right: 8px !important;
  }

  .sm\:cl-mb-2 {
    margin-bottom: 8px !important;
  }

  .sm\:cl-ml-2 {
    margin-left: 8px !important;
  }

  .sm\:cl-mt-3 {
    margin-top: 12px !important;
  }

  .sm\:cl-mr-3 {
    margin-right: 12px !important;
  }

  .sm\:cl-mb-3 {
    margin-bottom: 12px !important;
  }

  .sm\:cl-ml-3 {
    margin-left: 12px !important;
  }

  .sm\:cl-mt-4 {
    margin-top: 16px !important;
  }

  .sm\:cl-mr-4 {
    margin-right: 16px !important;
  }

  .sm\:cl-mb-4 {
    margin-bottom: 16px !important;
  }

  .sm\:cl-ml-4 {
    margin-left: 16px !important;
  }

  .sm\:cl-mt-5 {
    margin-top: 20px !important;
  }

  .sm\:cl-mr-5 {
    margin-right: 20px !important;
  }

  .sm\:cl-mb-5 {
    margin-bottom: 20px !important;
  }

  .sm\:cl-ml-5 {
    margin-left: 20px !important;
  }

  .sm\:cl-mt-6 {
    margin-top: 24px !important;
  }

  .sm\:cl-mr-6 {
    margin-right: 24px !important;
  }

  .sm\:cl-mb-6 {
    margin-bottom: 24px !important;
  }

  .sm\:cl-ml-6 {
    margin-left: 24px !important;
  }

  .sm\:cl-mt-8 {
    margin-top: 32px !important;
  }

  .sm\:cl-mr-8 {
    margin-right: 32px !important;
  }

  .sm\:cl-mb-8 {
    margin-bottom: 32px !important;
  }

  .sm\:cl-ml-8 {
    margin-left: 32px !important;
  }

  .sm\:cl-mt-10 {
    margin-top: 40px !important;
  }

  .sm\:cl-mr-10 {
    margin-right: 40px !important;
  }

  .sm\:cl-mb-10 {
    margin-bottom: 40px !important;
  }

  .sm\:cl-ml-10 {
    margin-left: 40px !important;
  }

  .sm\:cl-mt-12 {
    margin-top: 48px !important;
  }

  .sm\:cl-mr-12 {
    margin-right: 48px !important;
  }

  .sm\:cl-mb-12 {
    margin-bottom: 48px !important;
  }

  .sm\:cl-ml-12 {
    margin-left: 48px !important;
  }

  .sm\:cl-mt-16 {
    margin-top: 64px !important;
  }

  .sm\:cl-mr-16 {
    margin-right: 64px !important;
  }

  .sm\:cl-mb-16 {
    margin-bottom: 64px !important;
  }

  .sm\:cl-ml-16 {
    margin-left: 64px !important;
  }

  .sm\:cl-mt-20 {
    margin-top: 80px !important;
  }

  .sm\:cl-mr-20 {
    margin-right: 80px !important;
  }

  .sm\:cl-mb-20 {
    margin-bottom: 80px !important;
  }

  .sm\:cl-ml-20 {
    margin-left: 80px !important;
  }

  .sm\:cl-mt-24 {
    margin-top: 96px !important;
  }

  .sm\:cl-mr-24 {
    margin-right: 96px !important;
  }

  .sm\:cl-mb-24 {
    margin-bottom: 96px !important;
  }

  .sm\:cl-ml-24 {
    margin-left: 96px !important;
  }

  .sm\:cl-mt-26 {
    margin-top: 100px !important;
  }

  .sm\:cl-mr-26 {
    margin-right: 100px !important;
  }

  .sm\:cl-mb-26 {
    margin-bottom: 100px !important;
  }

  .sm\:cl-ml-26 {
    margin-left: 100px !important;
  }

  .sm\:cl-mt-28 {
    margin-top: 110px !important;
  }

  .sm\:cl-mr-28 {
    margin-right: 110px !important;
  }

  .sm\:cl-mb-28 {
    margin-bottom: 110px !important;
  }

  .sm\:cl-ml-28 {
    margin-left: 110px !important;
  }

  .sm\:cl-mt-32 {
    margin-top: 128px !important;
  }

  .sm\:cl-mr-32 {
    margin-right: 128px !important;
  }

  .sm\:cl-mb-32 {
    margin-bottom: 128px !important;
  }

  .sm\:cl-ml-32 {
    margin-left: 128px !important;
  }

  .sm\:cl-mt-40 {
    margin-top: 160px !important;
  }

  .sm\:cl-mr-40 {
    margin-right: 160px !important;
  }

  .sm\:cl-mb-40 {
    margin-bottom: 160px !important;
  }

  .sm\:cl-ml-40 {
    margin-left: 160px !important;
  }

  .sm\:cl-mt-48 {
    margin-top: 192px !important;
  }

  .sm\:cl-mr-48 {
    margin-right: 192px !important;
  }

  .sm\:cl-mb-48 {
    margin-bottom: 192px !important;
  }

  .sm\:cl-ml-48 {
    margin-left: 192px !important;
  }

  .sm\:cl-mt-56 {
    margin-top: 224px !important;
  }

  .sm\:cl-mr-56 {
    margin-right: 224px !important;
  }

  .sm\:cl-mb-56 {
    margin-bottom: 224px !important;
  }

  .sm\:cl-ml-56 {
    margin-left: 224px !important;
  }

  .sm\:cl-mt-64 {
    margin-top: 256px !important;
  }

  .sm\:cl-mr-64 {
    margin-right: 256px !important;
  }

  .sm\:cl-mb-64 {
    margin-bottom: 256px !important;
  }

  .sm\:cl-ml-64 {
    margin-left: 256px !important;
  }

  .sm\:cl-mt-auto {
    margin-top: auto !important;
  }

  .sm\:cl-mr-auto {
    margin-right: auto !important;
  }

  .sm\:cl-mb-auto {
    margin-bottom: auto !important;
  }

  .sm\:cl-ml-auto {
    margin-left: auto !important;
  }

  .sm\:cl-mt-px {
    margin-top: 1px !important;
  }

  .sm\:cl-mr-px {
    margin-right: 1px !important;
  }

  .sm\:cl-mb-px {
    margin-bottom: 1px !important;
  }

  .sm\:cl-ml-px {
    margin-left: 1px !important;
  }

  .sm\:cl--mt-1 {
    margin-top: -4px !important;
  }

  .sm\:cl--mr-1 {
    margin-right: -4px !important;
  }

  .sm\:cl--mb-1 {
    margin-bottom: -4px !important;
  }

  .sm\:cl--ml-1 {
    margin-left: -4px !important;
  }

  .sm\:cl--mt-2 {
    margin-top: -8px !important;
  }

  .sm\:cl--mr-2 {
    margin-right: -8px !important;
  }

  .sm\:cl--mb-2 {
    margin-bottom: -8px !important;
  }

  .sm\:cl--ml-2 {
    margin-left: -8px !important;
  }

  .sm\:cl--mt-3 {
    margin-top: -12px !important;
  }

  .sm\:cl--mr-3 {
    margin-right: -12px !important;
  }

  .sm\:cl--mb-3 {
    margin-bottom: -12px !important;
  }

  .sm\:cl--ml-3 {
    margin-left: -12px !important;
  }

  .sm\:cl--mt-4 {
    margin-top: -16px !important;
  }

  .sm\:cl--mr-4 {
    margin-right: -16px !important;
  }

  .sm\:cl--mb-4 {
    margin-bottom: -16px !important;
  }

  .sm\:cl--ml-4 {
    margin-left: -16px !important;
  }

  .sm\:cl--mt-5 {
    margin-top: -20px !important;
  }

  .sm\:cl--mr-5 {
    margin-right: -20px !important;
  }

  .sm\:cl--mb-5 {
    margin-bottom: -20px !important;
  }

  .sm\:cl--ml-5 {
    margin-left: -20px !important;
  }

  .sm\:cl--mt-6 {
    margin-top: -24px !important;
  }

  .sm\:cl--mr-6 {
    margin-right: -24px !important;
  }

  .sm\:cl--mb-6 {
    margin-bottom: -24px !important;
  }

  .sm\:cl--ml-6 {
    margin-left: -24px !important;
  }

  .sm\:cl--mt-8 {
    margin-top: -32px !important;
  }

  .sm\:cl--mr-8 {
    margin-right: -32px !important;
  }

  .sm\:cl--mb-8 {
    margin-bottom: -32px !important;
  }

  .sm\:cl--ml-8 {
    margin-left: -32px !important;
  }

  .sm\:cl--mt-10 {
    margin-top: -40px !important;
  }

  .sm\:cl--mr-10 {
    margin-right: -40px !important;
  }

  .sm\:cl--mb-10 {
    margin-bottom: -40px !important;
  }

  .sm\:cl--ml-10 {
    margin-left: -40px !important;
  }

  .sm\:cl--mt-12 {
    margin-top: -48px !important;
  }

  .sm\:cl--mr-12 {
    margin-right: -48px !important;
  }

  .sm\:cl--mb-12 {
    margin-bottom: -48px !important;
  }

  .sm\:cl--ml-12 {
    margin-left: -48px !important;
  }

  .sm\:cl--mt-16 {
    margin-top: -64px !important;
  }

  .sm\:cl--mr-16 {
    margin-right: -64px !important;
  }

  .sm\:cl--mb-16 {
    margin-bottom: -64px !important;
  }

  .sm\:cl--ml-16 {
    margin-left: -64px !important;
  }

  .sm\:cl--mt-20 {
    margin-top: -80px !important;
  }

  .sm\:cl--mr-20 {
    margin-right: -80px !important;
  }

  .sm\:cl--mb-20 {
    margin-bottom: -80px !important;
  }

  .sm\:cl--ml-20 {
    margin-left: -80px !important;
  }

  .sm\:cl--mt-24 {
    margin-top: -96px !important;
  }

  .sm\:cl--mr-24 {
    margin-right: -96px !important;
  }

  .sm\:cl--mb-24 {
    margin-bottom: -96px !important;
  }

  .sm\:cl--ml-24 {
    margin-left: -96px !important;
  }

  .sm\:cl--mt-26 {
    margin-top: -100px !important;
  }

  .sm\:cl--mr-26 {
    margin-right: -100px !important;
  }

  .sm\:cl--mb-26 {
    margin-bottom: -100px !important;
  }

  .sm\:cl--ml-26 {
    margin-left: -100px !important;
  }

  .sm\:cl--mt-28 {
    margin-top: -110px !important;
  }

  .sm\:cl--mr-28 {
    margin-right: -110px !important;
  }

  .sm\:cl--mb-28 {
    margin-bottom: -110px !important;
  }

  .sm\:cl--ml-28 {
    margin-left: -110px !important;
  }

  .sm\:cl--mt-32 {
    margin-top: -128px !important;
  }

  .sm\:cl--mr-32 {
    margin-right: -128px !important;
  }

  .sm\:cl--mb-32 {
    margin-bottom: -128px !important;
  }

  .sm\:cl--ml-32 {
    margin-left: -128px !important;
  }

  .sm\:cl--mt-40 {
    margin-top: -160px !important;
  }

  .sm\:cl--mr-40 {
    margin-right: -160px !important;
  }

  .sm\:cl--mb-40 {
    margin-bottom: -160px !important;
  }

  .sm\:cl--ml-40 {
    margin-left: -160px !important;
  }

  .sm\:cl--mt-48 {
    margin-top: -192px !important;
  }

  .sm\:cl--mr-48 {
    margin-right: -192px !important;
  }

  .sm\:cl--mb-48 {
    margin-bottom: -192px !important;
  }

  .sm\:cl--ml-48 {
    margin-left: -192px !important;
  }

  .sm\:cl--mt-56 {
    margin-top: -224px !important;
  }

  .sm\:cl--mr-56 {
    margin-right: -224px !important;
  }

  .sm\:cl--mb-56 {
    margin-bottom: -224px !important;
  }

  .sm\:cl--ml-56 {
    margin-left: -224px !important;
  }

  .sm\:cl--mt-64 {
    margin-top: -256px !important;
  }

  .sm\:cl--mr-64 {
    margin-right: -256px !important;
  }

  .sm\:cl--mb-64 {
    margin-bottom: -256px !important;
  }

  .sm\:cl--ml-64 {
    margin-left: -256px !important;
  }

  .sm\:cl--mt-px {
    margin-top: -1px !important;
  }

  .sm\:cl--mr-px {
    margin-right: -1px !important;
  }

  .sm\:cl--mb-px {
    margin-bottom: -1px !important;
  }

  .sm\:cl--ml-px {
    margin-left: -1px !important;
  }

  .sm\:active\:cl-m-0:active {
    margin: 0 !important;
  }

  .sm\:active\:cl-m-1:active {
    margin: 4px !important;
  }

  .sm\:active\:cl-m-2:active {
    margin: 8px !important;
  }

  .sm\:active\:cl-m-3:active {
    margin: 12px !important;
  }

  .sm\:active\:cl-m-4:active {
    margin: 16px !important;
  }

  .sm\:active\:cl-m-5:active {
    margin: 20px !important;
  }

  .sm\:active\:cl-m-6:active {
    margin: 24px !important;
  }

  .sm\:active\:cl-m-8:active {
    margin: 32px !important;
  }

  .sm\:active\:cl-m-10:active {
    margin: 40px !important;
  }

  .sm\:active\:cl-m-12:active {
    margin: 48px !important;
  }

  .sm\:active\:cl-m-16:active {
    margin: 64px !important;
  }

  .sm\:active\:cl-m-20:active {
    margin: 80px !important;
  }

  .sm\:active\:cl-m-24:active {
    margin: 96px !important;
  }

  .sm\:active\:cl-m-26:active {
    margin: 100px !important;
  }

  .sm\:active\:cl-m-28:active {
    margin: 110px !important;
  }

  .sm\:active\:cl-m-32:active {
    margin: 128px !important;
  }

  .sm\:active\:cl-m-40:active {
    margin: 160px !important;
  }

  .sm\:active\:cl-m-48:active {
    margin: 192px !important;
  }

  .sm\:active\:cl-m-56:active {
    margin: 224px !important;
  }

  .sm\:active\:cl-m-64:active {
    margin: 256px !important;
  }

  .sm\:active\:cl-m-auto:active {
    margin: auto !important;
  }

  .sm\:active\:cl-m-px:active {
    margin: 1px !important;
  }

  .sm\:active\:cl--m-1:active {
    margin: -4px !important;
  }

  .sm\:active\:cl--m-2:active {
    margin: -8px !important;
  }

  .sm\:active\:cl--m-3:active {
    margin: -12px !important;
  }

  .sm\:active\:cl--m-4:active {
    margin: -16px !important;
  }

  .sm\:active\:cl--m-5:active {
    margin: -20px !important;
  }

  .sm\:active\:cl--m-6:active {
    margin: -24px !important;
  }

  .sm\:active\:cl--m-8:active {
    margin: -32px !important;
  }

  .sm\:active\:cl--m-10:active {
    margin: -40px !important;
  }

  .sm\:active\:cl--m-12:active {
    margin: -48px !important;
  }

  .sm\:active\:cl--m-16:active {
    margin: -64px !important;
  }

  .sm\:active\:cl--m-20:active {
    margin: -80px !important;
  }

  .sm\:active\:cl--m-24:active {
    margin: -96px !important;
  }

  .sm\:active\:cl--m-26:active {
    margin: -100px !important;
  }

  .sm\:active\:cl--m-28:active {
    margin: -110px !important;
  }

  .sm\:active\:cl--m-32:active {
    margin: -128px !important;
  }

  .sm\:active\:cl--m-40:active {
    margin: -160px !important;
  }

  .sm\:active\:cl--m-48:active {
    margin: -192px !important;
  }

  .sm\:active\:cl--m-56:active {
    margin: -224px !important;
  }

  .sm\:active\:cl--m-64:active {
    margin: -256px !important;
  }

  .sm\:active\:cl--m-px:active {
    margin: -1px !important;
  }

  .sm\:active\:cl-my-0:active {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .sm\:active\:cl-mx-0:active {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .sm\:active\:cl-my-1:active {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  .sm\:active\:cl-mx-1:active {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }

  .sm\:active\:cl-my-2:active {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  .sm\:active\:cl-mx-2:active {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }

  .sm\:active\:cl-my-3:active {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }

  .sm\:active\:cl-mx-3:active {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }

  .sm\:active\:cl-my-4:active {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }

  .sm\:active\:cl-mx-4:active {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }

  .sm\:active\:cl-my-5:active {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .sm\:active\:cl-mx-5:active {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }

  .sm\:active\:cl-my-6:active {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }

  .sm\:active\:cl-mx-6:active {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }

  .sm\:active\:cl-my-8:active {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }

  .sm\:active\:cl-mx-8:active {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }

  .sm\:active\:cl-my-10:active {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  .sm\:active\:cl-mx-10:active {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }

  .sm\:active\:cl-my-12:active {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }

  .sm\:active\:cl-mx-12:active {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }

  .sm\:active\:cl-my-16:active {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }

  .sm\:active\:cl-mx-16:active {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }

  .sm\:active\:cl-my-20:active {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }

  .sm\:active\:cl-mx-20:active {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }

  .sm\:active\:cl-my-24:active {
    margin-top: 96px !important;
    margin-bottom: 96px !important;
  }

  .sm\:active\:cl-mx-24:active {
    margin-left: 96px !important;
    margin-right: 96px !important;
  }

  .sm\:active\:cl-my-26:active {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }

  .sm\:active\:cl-mx-26:active {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }

  .sm\:active\:cl-my-28:active {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
  }

  .sm\:active\:cl-mx-28:active {
    margin-left: 110px !important;
    margin-right: 110px !important;
  }

  .sm\:active\:cl-my-32:active {
    margin-top: 128px !important;
    margin-bottom: 128px !important;
  }

  .sm\:active\:cl-mx-32:active {
    margin-left: 128px !important;
    margin-right: 128px !important;
  }

  .sm\:active\:cl-my-40:active {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }

  .sm\:active\:cl-mx-40:active {
    margin-left: 160px !important;
    margin-right: 160px !important;
  }

  .sm\:active\:cl-my-48:active {
    margin-top: 192px !important;
    margin-bottom: 192px !important;
  }

  .sm\:active\:cl-mx-48:active {
    margin-left: 192px !important;
    margin-right: 192px !important;
  }

  .sm\:active\:cl-my-56:active {
    margin-top: 224px !important;
    margin-bottom: 224px !important;
  }

  .sm\:active\:cl-mx-56:active {
    margin-left: 224px !important;
    margin-right: 224px !important;
  }

  .sm\:active\:cl-my-64:active {
    margin-top: 256px !important;
    margin-bottom: 256px !important;
  }

  .sm\:active\:cl-mx-64:active {
    margin-left: 256px !important;
    margin-right: 256px !important;
  }

  .sm\:active\:cl-my-auto:active {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .sm\:active\:cl-mx-auto:active {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .sm\:active\:cl-my-px:active {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .sm\:active\:cl-mx-px:active {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .sm\:active\:cl--my-1:active {
    margin-top: -4px !important;
    margin-bottom: -4px !important;
  }

  .sm\:active\:cl--mx-1:active {
    margin-left: -4px !important;
    margin-right: -4px !important;
  }

  .sm\:active\:cl--my-2:active {
    margin-top: -8px !important;
    margin-bottom: -8px !important;
  }

  .sm\:active\:cl--mx-2:active {
    margin-left: -8px !important;
    margin-right: -8px !important;
  }

  .sm\:active\:cl--my-3:active {
    margin-top: -12px !important;
    margin-bottom: -12px !important;
  }

  .sm\:active\:cl--mx-3:active {
    margin-left: -12px !important;
    margin-right: -12px !important;
  }

  .sm\:active\:cl--my-4:active {
    margin-top: -16px !important;
    margin-bottom: -16px !important;
  }

  .sm\:active\:cl--mx-4:active {
    margin-left: -16px !important;
    margin-right: -16px !important;
  }

  .sm\:active\:cl--my-5:active {
    margin-top: -20px !important;
    margin-bottom: -20px !important;
  }

  .sm\:active\:cl--mx-5:active {
    margin-left: -20px !important;
    margin-right: -20px !important;
  }

  .sm\:active\:cl--my-6:active {
    margin-top: -24px !important;
    margin-bottom: -24px !important;
  }

  .sm\:active\:cl--mx-6:active {
    margin-left: -24px !important;
    margin-right: -24px !important;
  }

  .sm\:active\:cl--my-8:active {
    margin-top: -32px !important;
    margin-bottom: -32px !important;
  }

  .sm\:active\:cl--mx-8:active {
    margin-left: -32px !important;
    margin-right: -32px !important;
  }

  .sm\:active\:cl--my-10:active {
    margin-top: -40px !important;
    margin-bottom: -40px !important;
  }

  .sm\:active\:cl--mx-10:active {
    margin-left: -40px !important;
    margin-right: -40px !important;
  }

  .sm\:active\:cl--my-12:active {
    margin-top: -48px !important;
    margin-bottom: -48px !important;
  }

  .sm\:active\:cl--mx-12:active {
    margin-left: -48px !important;
    margin-right: -48px !important;
  }

  .sm\:active\:cl--my-16:active {
    margin-top: -64px !important;
    margin-bottom: -64px !important;
  }

  .sm\:active\:cl--mx-16:active {
    margin-left: -64px !important;
    margin-right: -64px !important;
  }

  .sm\:active\:cl--my-20:active {
    margin-top: -80px !important;
    margin-bottom: -80px !important;
  }

  .sm\:active\:cl--mx-20:active {
    margin-left: -80px !important;
    margin-right: -80px !important;
  }

  .sm\:active\:cl--my-24:active {
    margin-top: -96px !important;
    margin-bottom: -96px !important;
  }

  .sm\:active\:cl--mx-24:active {
    margin-left: -96px !important;
    margin-right: -96px !important;
  }

  .sm\:active\:cl--my-26:active {
    margin-top: -100px !important;
    margin-bottom: -100px !important;
  }

  .sm\:active\:cl--mx-26:active {
    margin-left: -100px !important;
    margin-right: -100px !important;
  }

  .sm\:active\:cl--my-28:active {
    margin-top: -110px !important;
    margin-bottom: -110px !important;
  }

  .sm\:active\:cl--mx-28:active {
    margin-left: -110px !important;
    margin-right: -110px !important;
  }

  .sm\:active\:cl--my-32:active {
    margin-top: -128px !important;
    margin-bottom: -128px !important;
  }

  .sm\:active\:cl--mx-32:active {
    margin-left: -128px !important;
    margin-right: -128px !important;
  }

  .sm\:active\:cl--my-40:active {
    margin-top: -160px !important;
    margin-bottom: -160px !important;
  }

  .sm\:active\:cl--mx-40:active {
    margin-left: -160px !important;
    margin-right: -160px !important;
  }

  .sm\:active\:cl--my-48:active {
    margin-top: -192px !important;
    margin-bottom: -192px !important;
  }

  .sm\:active\:cl--mx-48:active {
    margin-left: -192px !important;
    margin-right: -192px !important;
  }

  .sm\:active\:cl--my-56:active {
    margin-top: -224px !important;
    margin-bottom: -224px !important;
  }

  .sm\:active\:cl--mx-56:active {
    margin-left: -224px !important;
    margin-right: -224px !important;
  }

  .sm\:active\:cl--my-64:active {
    margin-top: -256px !important;
    margin-bottom: -256px !important;
  }

  .sm\:active\:cl--mx-64:active {
    margin-left: -256px !important;
    margin-right: -256px !important;
  }

  .sm\:active\:cl--my-px:active {
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .sm\:active\:cl--mx-px:active {
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .sm\:active\:cl-mt-0:active {
    margin-top: 0 !important;
  }

  .sm\:active\:cl-mr-0:active {
    margin-right: 0 !important;
  }

  .sm\:active\:cl-mb-0:active {
    margin-bottom: 0 !important;
  }

  .sm\:active\:cl-ml-0:active {
    margin-left: 0 !important;
  }

  .sm\:active\:cl-mt-1:active {
    margin-top: 4px !important;
  }

  .sm\:active\:cl-mr-1:active {
    margin-right: 4px !important;
  }

  .sm\:active\:cl-mb-1:active {
    margin-bottom: 4px !important;
  }

  .sm\:active\:cl-ml-1:active {
    margin-left: 4px !important;
  }

  .sm\:active\:cl-mt-2:active {
    margin-top: 8px !important;
  }

  .sm\:active\:cl-mr-2:active {
    margin-right: 8px !important;
  }

  .sm\:active\:cl-mb-2:active {
    margin-bottom: 8px !important;
  }

  .sm\:active\:cl-ml-2:active {
    margin-left: 8px !important;
  }

  .sm\:active\:cl-mt-3:active {
    margin-top: 12px !important;
  }

  .sm\:active\:cl-mr-3:active {
    margin-right: 12px !important;
  }

  .sm\:active\:cl-mb-3:active {
    margin-bottom: 12px !important;
  }

  .sm\:active\:cl-ml-3:active {
    margin-left: 12px !important;
  }

  .sm\:active\:cl-mt-4:active {
    margin-top: 16px !important;
  }

  .sm\:active\:cl-mr-4:active {
    margin-right: 16px !important;
  }

  .sm\:active\:cl-mb-4:active {
    margin-bottom: 16px !important;
  }

  .sm\:active\:cl-ml-4:active {
    margin-left: 16px !important;
  }

  .sm\:active\:cl-mt-5:active {
    margin-top: 20px !important;
  }

  .sm\:active\:cl-mr-5:active {
    margin-right: 20px !important;
  }

  .sm\:active\:cl-mb-5:active {
    margin-bottom: 20px !important;
  }

  .sm\:active\:cl-ml-5:active {
    margin-left: 20px !important;
  }

  .sm\:active\:cl-mt-6:active {
    margin-top: 24px !important;
  }

  .sm\:active\:cl-mr-6:active {
    margin-right: 24px !important;
  }

  .sm\:active\:cl-mb-6:active {
    margin-bottom: 24px !important;
  }

  .sm\:active\:cl-ml-6:active {
    margin-left: 24px !important;
  }

  .sm\:active\:cl-mt-8:active {
    margin-top: 32px !important;
  }

  .sm\:active\:cl-mr-8:active {
    margin-right: 32px !important;
  }

  .sm\:active\:cl-mb-8:active {
    margin-bottom: 32px !important;
  }

  .sm\:active\:cl-ml-8:active {
    margin-left: 32px !important;
  }

  .sm\:active\:cl-mt-10:active {
    margin-top: 40px !important;
  }

  .sm\:active\:cl-mr-10:active {
    margin-right: 40px !important;
  }

  .sm\:active\:cl-mb-10:active {
    margin-bottom: 40px !important;
  }

  .sm\:active\:cl-ml-10:active {
    margin-left: 40px !important;
  }

  .sm\:active\:cl-mt-12:active {
    margin-top: 48px !important;
  }

  .sm\:active\:cl-mr-12:active {
    margin-right: 48px !important;
  }

  .sm\:active\:cl-mb-12:active {
    margin-bottom: 48px !important;
  }

  .sm\:active\:cl-ml-12:active {
    margin-left: 48px !important;
  }

  .sm\:active\:cl-mt-16:active {
    margin-top: 64px !important;
  }

  .sm\:active\:cl-mr-16:active {
    margin-right: 64px !important;
  }

  .sm\:active\:cl-mb-16:active {
    margin-bottom: 64px !important;
  }

  .sm\:active\:cl-ml-16:active {
    margin-left: 64px !important;
  }

  .sm\:active\:cl-mt-20:active {
    margin-top: 80px !important;
  }

  .sm\:active\:cl-mr-20:active {
    margin-right: 80px !important;
  }

  .sm\:active\:cl-mb-20:active {
    margin-bottom: 80px !important;
  }

  .sm\:active\:cl-ml-20:active {
    margin-left: 80px !important;
  }

  .sm\:active\:cl-mt-24:active {
    margin-top: 96px !important;
  }

  .sm\:active\:cl-mr-24:active {
    margin-right: 96px !important;
  }

  .sm\:active\:cl-mb-24:active {
    margin-bottom: 96px !important;
  }

  .sm\:active\:cl-ml-24:active {
    margin-left: 96px !important;
  }

  .sm\:active\:cl-mt-26:active {
    margin-top: 100px !important;
  }

  .sm\:active\:cl-mr-26:active {
    margin-right: 100px !important;
  }

  .sm\:active\:cl-mb-26:active {
    margin-bottom: 100px !important;
  }

  .sm\:active\:cl-ml-26:active {
    margin-left: 100px !important;
  }

  .sm\:active\:cl-mt-28:active {
    margin-top: 110px !important;
  }

  .sm\:active\:cl-mr-28:active {
    margin-right: 110px !important;
  }

  .sm\:active\:cl-mb-28:active {
    margin-bottom: 110px !important;
  }

  .sm\:active\:cl-ml-28:active {
    margin-left: 110px !important;
  }

  .sm\:active\:cl-mt-32:active {
    margin-top: 128px !important;
  }

  .sm\:active\:cl-mr-32:active {
    margin-right: 128px !important;
  }

  .sm\:active\:cl-mb-32:active {
    margin-bottom: 128px !important;
  }

  .sm\:active\:cl-ml-32:active {
    margin-left: 128px !important;
  }

  .sm\:active\:cl-mt-40:active {
    margin-top: 160px !important;
  }

  .sm\:active\:cl-mr-40:active {
    margin-right: 160px !important;
  }

  .sm\:active\:cl-mb-40:active {
    margin-bottom: 160px !important;
  }

  .sm\:active\:cl-ml-40:active {
    margin-left: 160px !important;
  }

  .sm\:active\:cl-mt-48:active {
    margin-top: 192px !important;
  }

  .sm\:active\:cl-mr-48:active {
    margin-right: 192px !important;
  }

  .sm\:active\:cl-mb-48:active {
    margin-bottom: 192px !important;
  }

  .sm\:active\:cl-ml-48:active {
    margin-left: 192px !important;
  }

  .sm\:active\:cl-mt-56:active {
    margin-top: 224px !important;
  }

  .sm\:active\:cl-mr-56:active {
    margin-right: 224px !important;
  }

  .sm\:active\:cl-mb-56:active {
    margin-bottom: 224px !important;
  }

  .sm\:active\:cl-ml-56:active {
    margin-left: 224px !important;
  }

  .sm\:active\:cl-mt-64:active {
    margin-top: 256px !important;
  }

  .sm\:active\:cl-mr-64:active {
    margin-right: 256px !important;
  }

  .sm\:active\:cl-mb-64:active {
    margin-bottom: 256px !important;
  }

  .sm\:active\:cl-ml-64:active {
    margin-left: 256px !important;
  }

  .sm\:active\:cl-mt-auto:active {
    margin-top: auto !important;
  }

  .sm\:active\:cl-mr-auto:active {
    margin-right: auto !important;
  }

  .sm\:active\:cl-mb-auto:active {
    margin-bottom: auto !important;
  }

  .sm\:active\:cl-ml-auto:active {
    margin-left: auto !important;
  }

  .sm\:active\:cl-mt-px:active {
    margin-top: 1px !important;
  }

  .sm\:active\:cl-mr-px:active {
    margin-right: 1px !important;
  }

  .sm\:active\:cl-mb-px:active {
    margin-bottom: 1px !important;
  }

  .sm\:active\:cl-ml-px:active {
    margin-left: 1px !important;
  }

  .sm\:active\:cl--mt-1:active {
    margin-top: -4px !important;
  }

  .sm\:active\:cl--mr-1:active {
    margin-right: -4px !important;
  }

  .sm\:active\:cl--mb-1:active {
    margin-bottom: -4px !important;
  }

  .sm\:active\:cl--ml-1:active {
    margin-left: -4px !important;
  }

  .sm\:active\:cl--mt-2:active {
    margin-top: -8px !important;
  }

  .sm\:active\:cl--mr-2:active {
    margin-right: -8px !important;
  }

  .sm\:active\:cl--mb-2:active {
    margin-bottom: -8px !important;
  }

  .sm\:active\:cl--ml-2:active {
    margin-left: -8px !important;
  }

  .sm\:active\:cl--mt-3:active {
    margin-top: -12px !important;
  }

  .sm\:active\:cl--mr-3:active {
    margin-right: -12px !important;
  }

  .sm\:active\:cl--mb-3:active {
    margin-bottom: -12px !important;
  }

  .sm\:active\:cl--ml-3:active {
    margin-left: -12px !important;
  }

  .sm\:active\:cl--mt-4:active {
    margin-top: -16px !important;
  }

  .sm\:active\:cl--mr-4:active {
    margin-right: -16px !important;
  }

  .sm\:active\:cl--mb-4:active {
    margin-bottom: -16px !important;
  }

  .sm\:active\:cl--ml-4:active {
    margin-left: -16px !important;
  }

  .sm\:active\:cl--mt-5:active {
    margin-top: -20px !important;
  }

  .sm\:active\:cl--mr-5:active {
    margin-right: -20px !important;
  }

  .sm\:active\:cl--mb-5:active {
    margin-bottom: -20px !important;
  }

  .sm\:active\:cl--ml-5:active {
    margin-left: -20px !important;
  }

  .sm\:active\:cl--mt-6:active {
    margin-top: -24px !important;
  }

  .sm\:active\:cl--mr-6:active {
    margin-right: -24px !important;
  }

  .sm\:active\:cl--mb-6:active {
    margin-bottom: -24px !important;
  }

  .sm\:active\:cl--ml-6:active {
    margin-left: -24px !important;
  }

  .sm\:active\:cl--mt-8:active {
    margin-top: -32px !important;
  }

  .sm\:active\:cl--mr-8:active {
    margin-right: -32px !important;
  }

  .sm\:active\:cl--mb-8:active {
    margin-bottom: -32px !important;
  }

  .sm\:active\:cl--ml-8:active {
    margin-left: -32px !important;
  }

  .sm\:active\:cl--mt-10:active {
    margin-top: -40px !important;
  }

  .sm\:active\:cl--mr-10:active {
    margin-right: -40px !important;
  }

  .sm\:active\:cl--mb-10:active {
    margin-bottom: -40px !important;
  }

  .sm\:active\:cl--ml-10:active {
    margin-left: -40px !important;
  }

  .sm\:active\:cl--mt-12:active {
    margin-top: -48px !important;
  }

  .sm\:active\:cl--mr-12:active {
    margin-right: -48px !important;
  }

  .sm\:active\:cl--mb-12:active {
    margin-bottom: -48px !important;
  }

  .sm\:active\:cl--ml-12:active {
    margin-left: -48px !important;
  }

  .sm\:active\:cl--mt-16:active {
    margin-top: -64px !important;
  }

  .sm\:active\:cl--mr-16:active {
    margin-right: -64px !important;
  }

  .sm\:active\:cl--mb-16:active {
    margin-bottom: -64px !important;
  }

  .sm\:active\:cl--ml-16:active {
    margin-left: -64px !important;
  }

  .sm\:active\:cl--mt-20:active {
    margin-top: -80px !important;
  }

  .sm\:active\:cl--mr-20:active {
    margin-right: -80px !important;
  }

  .sm\:active\:cl--mb-20:active {
    margin-bottom: -80px !important;
  }

  .sm\:active\:cl--ml-20:active {
    margin-left: -80px !important;
  }

  .sm\:active\:cl--mt-24:active {
    margin-top: -96px !important;
  }

  .sm\:active\:cl--mr-24:active {
    margin-right: -96px !important;
  }

  .sm\:active\:cl--mb-24:active {
    margin-bottom: -96px !important;
  }

  .sm\:active\:cl--ml-24:active {
    margin-left: -96px !important;
  }

  .sm\:active\:cl--mt-26:active {
    margin-top: -100px !important;
  }

  .sm\:active\:cl--mr-26:active {
    margin-right: -100px !important;
  }

  .sm\:active\:cl--mb-26:active {
    margin-bottom: -100px !important;
  }

  .sm\:active\:cl--ml-26:active {
    margin-left: -100px !important;
  }

  .sm\:active\:cl--mt-28:active {
    margin-top: -110px !important;
  }

  .sm\:active\:cl--mr-28:active {
    margin-right: -110px !important;
  }

  .sm\:active\:cl--mb-28:active {
    margin-bottom: -110px !important;
  }

  .sm\:active\:cl--ml-28:active {
    margin-left: -110px !important;
  }

  .sm\:active\:cl--mt-32:active {
    margin-top: -128px !important;
  }

  .sm\:active\:cl--mr-32:active {
    margin-right: -128px !important;
  }

  .sm\:active\:cl--mb-32:active {
    margin-bottom: -128px !important;
  }

  .sm\:active\:cl--ml-32:active {
    margin-left: -128px !important;
  }

  .sm\:active\:cl--mt-40:active {
    margin-top: -160px !important;
  }

  .sm\:active\:cl--mr-40:active {
    margin-right: -160px !important;
  }

  .sm\:active\:cl--mb-40:active {
    margin-bottom: -160px !important;
  }

  .sm\:active\:cl--ml-40:active {
    margin-left: -160px !important;
  }

  .sm\:active\:cl--mt-48:active {
    margin-top: -192px !important;
  }

  .sm\:active\:cl--mr-48:active {
    margin-right: -192px !important;
  }

  .sm\:active\:cl--mb-48:active {
    margin-bottom: -192px !important;
  }

  .sm\:active\:cl--ml-48:active {
    margin-left: -192px !important;
  }

  .sm\:active\:cl--mt-56:active {
    margin-top: -224px !important;
  }

  .sm\:active\:cl--mr-56:active {
    margin-right: -224px !important;
  }

  .sm\:active\:cl--mb-56:active {
    margin-bottom: -224px !important;
  }

  .sm\:active\:cl--ml-56:active {
    margin-left: -224px !important;
  }

  .sm\:active\:cl--mt-64:active {
    margin-top: -256px !important;
  }

  .sm\:active\:cl--mr-64:active {
    margin-right: -256px !important;
  }

  .sm\:active\:cl--mb-64:active {
    margin-bottom: -256px !important;
  }

  .sm\:active\:cl--ml-64:active {
    margin-left: -256px !important;
  }

  .sm\:active\:cl--mt-px:active {
    margin-top: -1px !important;
  }

  .sm\:active\:cl--mr-px:active {
    margin-right: -1px !important;
  }

  .sm\:active\:cl--mb-px:active {
    margin-bottom: -1px !important;
  }

  .sm\:active\:cl--ml-px:active {
    margin-left: -1px !important;
  }

  .sm\:cl-max-h-full {
    max-height: 100% !important;
  }

  .sm\:cl-max-h-screen {
    max-height: 100vh !important;
  }

  .sm\:cl-max-w-none {
    max-width: none !important;
  }

  .sm\:cl-max-w-xs {
    max-width: 20rem !important;
  }

  .sm\:cl-max-w-sm {
    max-width: 24rem !important;
  }

  .sm\:cl-max-w-md {
    max-width: 28rem !important;
  }

  .sm\:cl-max-w-lg {
    max-width: 32rem !important;
  }

  .sm\:cl-max-w-xl {
    max-width: 36rem !important;
  }

  .sm\:cl-max-w-2xl {
    max-width: 42rem !important;
  }

  .sm\:cl-max-w-3xl {
    max-width: 48rem !important;
  }

  .sm\:cl-max-w-4xl {
    max-width: 56rem !important;
  }

  .sm\:cl-max-w-5xl {
    max-width: 64rem !important;
  }

  .sm\:cl-max-w-6xl {
    max-width: 72rem !important;
  }

  .sm\:cl-max-w-full {
    max-width: 100% !important;
  }

  .sm\:cl-max-w-screen-sm {
    max-width: 640px !important;
  }

  .sm\:cl-max-w-screen-md {
    max-width: 768px !important;
  }

  .sm\:cl-max-w-screen-lg {
    max-width: 1024px !important;
  }

  .sm\:cl-max-w-screen-xl {
    max-width: 1280px !important;
  }

  .sm\:cl-min-h-0 {
    min-height: 0 !important;
  }

  .sm\:cl-min-h-full {
    min-height: 100% !important;
  }

  .sm\:cl-min-h-screen {
    min-height: 100vh !important;
  }

  .sm\:cl-min-w-0 {
    min-width: 0 !important;
  }

  .sm\:cl-min-w-full {
    min-width: 100% !important;
  }

  .sm\:cl-object-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }

  .sm\:cl-object-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }

  .sm\:cl-object-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }

  .sm\:cl-object-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }

  .sm\:cl-object-scale-down {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }

  .sm\:cl-object-bottom {
    -o-object-position: bottom !important;
       object-position: bottom !important;
  }

  .sm\:cl-object-center {
    -o-object-position: center !important;
       object-position: center !important;
  }

  .sm\:cl-object-left {
    -o-object-position: left !important;
       object-position: left !important;
  }

  .sm\:cl-object-left-bottom {
    -o-object-position: left bottom !important;
       object-position: left bottom !important;
  }

  .sm\:cl-object-left-top {
    -o-object-position: left top !important;
       object-position: left top !important;
  }

  .sm\:cl-object-right {
    -o-object-position: right !important;
       object-position: right !important;
  }

  .sm\:cl-object-right-bottom {
    -o-object-position: right bottom !important;
       object-position: right bottom !important;
  }

  .sm\:cl-object-right-top {
    -o-object-position: right top !important;
       object-position: right top !important;
  }

  .sm\:cl-object-top {
    -o-object-position: top !important;
       object-position: top !important;
  }

  .sm\:cl-opacity-0 {
    opacity: 0 !important;
  }

  .sm\:cl-opacity-25 {
    opacity: 0.25 !important;
  }

  .sm\:cl-opacity-50 {
    opacity: 0.5 !important;
  }

  .sm\:cl-opacity-75 {
    opacity: 0.75 !important;
  }

  .sm\:cl-opacity-100 {
    opacity: 1 !important;
  }

  .sm\:hover\:cl-opacity-0:hover {
    opacity: 0 !important;
  }

  .sm\:hover\:cl-opacity-25:hover {
    opacity: 0.25 !important;
  }

  .sm\:hover\:cl-opacity-50:hover {
    opacity: 0.5 !important;
  }

  .sm\:hover\:cl-opacity-75:hover {
    opacity: 0.75 !important;
  }

  .sm\:hover\:cl-opacity-100:hover {
    opacity: 1 !important;
  }

  .sm\:focus\:cl-opacity-0:focus {
    opacity: 0 !important;
  }

  .sm\:focus\:cl-opacity-25:focus {
    opacity: 0.25 !important;
  }

  .sm\:focus\:cl-opacity-50:focus {
    opacity: 0.5 !important;
  }

  .sm\:focus\:cl-opacity-75:focus {
    opacity: 0.75 !important;
  }

  .sm\:focus\:cl-opacity-100:focus {
    opacity: 1 !important;
  }

  .sm\:cl-outline-none {
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .sm\:cl-outline-white {
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .sm\:cl-outline-black {
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .sm\:focus\:cl-outline-none:focus {
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .sm\:focus\:cl-outline-white:focus {
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .sm\:focus\:cl-outline-black:focus {
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .sm\:cl-overflow-auto {
    overflow: auto !important;
  }

  .sm\:cl-overflow-hidden {
    overflow: hidden !important;
  }

  .sm\:cl-overflow-visible {
    overflow: visible !important;
  }

  .sm\:cl-overflow-scroll {
    overflow: scroll !important;
  }

  .sm\:cl-overflow-x-auto {
    overflow-x: auto !important;
  }

  .sm\:cl-overflow-y-auto {
    overflow-y: auto !important;
  }

  .sm\:cl-overflow-x-hidden {
    overflow-x: hidden !important;
  }

  .sm\:cl-overflow-y-hidden {
    overflow-y: hidden !important;
  }

  .sm\:cl-overflow-x-visible {
    overflow-x: visible !important;
  }

  .sm\:cl-overflow-y-visible {
    overflow-y: visible !important;
  }

  .sm\:cl-overflow-x-scroll {
    overflow-x: scroll !important;
  }

  .sm\:cl-overflow-y-scroll {
    overflow-y: scroll !important;
  }

  .sm\:cl-scrolling-touch {
    -webkit-overflow-scrolling: touch !important;
  }

  .sm\:cl-scrolling-auto {
    -webkit-overflow-scrolling: auto !important;
  }

  .sm\:cl-overscroll-auto {
    overscroll-behavior: auto !important;
  }

  .sm\:cl-overscroll-contain {
    overscroll-behavior: contain !important;
  }

  .sm\:cl-overscroll-none {
    overscroll-behavior: none !important;
  }

  .sm\:cl-overscroll-y-auto {
    overscroll-behavior-y: auto !important;
  }

  .sm\:cl-overscroll-y-contain {
    overscroll-behavior-y: contain !important;
  }

  .sm\:cl-overscroll-y-none {
    overscroll-behavior-y: none !important;
  }

  .sm\:cl-overscroll-x-auto {
    overscroll-behavior-x: auto !important;
  }

  .sm\:cl-overscroll-x-contain {
    overscroll-behavior-x: contain !important;
  }

  .sm\:cl-overscroll-x-none {
    overscroll-behavior-x: none !important;
  }

  .sm\:cl-p-0 {
    padding: 0 !important;
  }

  .sm\:cl-p-1 {
    padding: 4px !important;
  }

  .sm\:cl-p-2 {
    padding: 8px !important;
  }

  .sm\:cl-p-3 {
    padding: 12px !important;
  }

  .sm\:cl-p-4 {
    padding: 16px !important;
  }

  .sm\:cl-p-5 {
    padding: 20px !important;
  }

  .sm\:cl-p-6 {
    padding: 24px !important;
  }

  .sm\:cl-p-8 {
    padding: 32px !important;
  }

  .sm\:cl-p-10 {
    padding: 40px !important;
  }

  .sm\:cl-p-12 {
    padding: 48px !important;
  }

  .sm\:cl-p-16 {
    padding: 64px !important;
  }

  .sm\:cl-p-20 {
    padding: 80px !important;
  }

  .sm\:cl-p-24 {
    padding: 96px !important;
  }

  .sm\:cl-p-26 {
    padding: 100px !important;
  }

  .sm\:cl-p-28 {
    padding: 110px !important;
  }

  .sm\:cl-p-32 {
    padding: 128px !important;
  }

  .sm\:cl-p-40 {
    padding: 160px !important;
  }

  .sm\:cl-p-48 {
    padding: 192px !important;
  }

  .sm\:cl-p-56 {
    padding: 224px !important;
  }

  .sm\:cl-p-64 {
    padding: 256px !important;
  }

  .sm\:cl-p-px {
    padding: 1px !important;
  }

  .sm\:cl-py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .sm\:cl-px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .sm\:cl-py-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  .sm\:cl-px-1 {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }

  .sm\:cl-py-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .sm\:cl-px-2 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .sm\:cl-py-3 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  .sm\:cl-px-3 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .sm\:cl-py-4 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }

  .sm\:cl-px-4 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .sm\:cl-py-5 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .sm\:cl-px-5 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .sm\:cl-py-6 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  .sm\:cl-px-6 {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .sm\:cl-py-8 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }

  .sm\:cl-px-8 {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }

  .sm\:cl-py-10 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .sm\:cl-px-10 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .sm\:cl-py-12 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  .sm\:cl-px-12 {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }

  .sm\:cl-py-16 {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  .sm\:cl-px-16 {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }

  .sm\:cl-py-20 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  .sm\:cl-px-20 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }

  .sm\:cl-py-24 {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
  }

  .sm\:cl-px-24 {
    padding-left: 96px !important;
    padding-right: 96px !important;
  }

  .sm\:cl-py-26 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }

  .sm\:cl-px-26 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }

  .sm\:cl-py-28 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
  }

  .sm\:cl-px-28 {
    padding-left: 110px !important;
    padding-right: 110px !important;
  }

  .sm\:cl-py-32 {
    padding-top: 128px !important;
    padding-bottom: 128px !important;
  }

  .sm\:cl-px-32 {
    padding-left: 128px !important;
    padding-right: 128px !important;
  }

  .sm\:cl-py-40 {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
  }

  .sm\:cl-px-40 {
    padding-left: 160px !important;
    padding-right: 160px !important;
  }

  .sm\:cl-py-48 {
    padding-top: 192px !important;
    padding-bottom: 192px !important;
  }

  .sm\:cl-px-48 {
    padding-left: 192px !important;
    padding-right: 192px !important;
  }

  .sm\:cl-py-56 {
    padding-top: 224px !important;
    padding-bottom: 224px !important;
  }

  .sm\:cl-px-56 {
    padding-left: 224px !important;
    padding-right: 224px !important;
  }

  .sm\:cl-py-64 {
    padding-top: 256px !important;
    padding-bottom: 256px !important;
  }

  .sm\:cl-px-64 {
    padding-left: 256px !important;
    padding-right: 256px !important;
  }

  .sm\:cl-py-px {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .sm\:cl-px-px {
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .sm\:cl-pt-0 {
    padding-top: 0 !important;
  }

  .sm\:cl-pr-0 {
    padding-right: 0 !important;
  }

  .sm\:cl-pb-0 {
    padding-bottom: 0 !important;
  }

  .sm\:cl-pl-0 {
    padding-left: 0 !important;
  }

  .sm\:cl-pt-1 {
    padding-top: 4px !important;
  }

  .sm\:cl-pr-1 {
    padding-right: 4px !important;
  }

  .sm\:cl-pb-1 {
    padding-bottom: 4px !important;
  }

  .sm\:cl-pl-1 {
    padding-left: 4px !important;
  }

  .sm\:cl-pt-2 {
    padding-top: 8px !important;
  }

  .sm\:cl-pr-2 {
    padding-right: 8px !important;
  }

  .sm\:cl-pb-2 {
    padding-bottom: 8px !important;
  }

  .sm\:cl-pl-2 {
    padding-left: 8px !important;
  }

  .sm\:cl-pt-3 {
    padding-top: 12px !important;
  }

  .sm\:cl-pr-3 {
    padding-right: 12px !important;
  }

  .sm\:cl-pb-3 {
    padding-bottom: 12px !important;
  }

  .sm\:cl-pl-3 {
    padding-left: 12px !important;
  }

  .sm\:cl-pt-4 {
    padding-top: 16px !important;
  }

  .sm\:cl-pr-4 {
    padding-right: 16px !important;
  }

  .sm\:cl-pb-4 {
    padding-bottom: 16px !important;
  }

  .sm\:cl-pl-4 {
    padding-left: 16px !important;
  }

  .sm\:cl-pt-5 {
    padding-top: 20px !important;
  }

  .sm\:cl-pr-5 {
    padding-right: 20px !important;
  }

  .sm\:cl-pb-5 {
    padding-bottom: 20px !important;
  }

  .sm\:cl-pl-5 {
    padding-left: 20px !important;
  }

  .sm\:cl-pt-6 {
    padding-top: 24px !important;
  }

  .sm\:cl-pr-6 {
    padding-right: 24px !important;
  }

  .sm\:cl-pb-6 {
    padding-bottom: 24px !important;
  }

  .sm\:cl-pl-6 {
    padding-left: 24px !important;
  }

  .sm\:cl-pt-8 {
    padding-top: 32px !important;
  }

  .sm\:cl-pr-8 {
    padding-right: 32px !important;
  }

  .sm\:cl-pb-8 {
    padding-bottom: 32px !important;
  }

  .sm\:cl-pl-8 {
    padding-left: 32px !important;
  }

  .sm\:cl-pt-10 {
    padding-top: 40px !important;
  }

  .sm\:cl-pr-10 {
    padding-right: 40px !important;
  }

  .sm\:cl-pb-10 {
    padding-bottom: 40px !important;
  }

  .sm\:cl-pl-10 {
    padding-left: 40px !important;
  }

  .sm\:cl-pt-12 {
    padding-top: 48px !important;
  }

  .sm\:cl-pr-12 {
    padding-right: 48px !important;
  }

  .sm\:cl-pb-12 {
    padding-bottom: 48px !important;
  }

  .sm\:cl-pl-12 {
    padding-left: 48px !important;
  }

  .sm\:cl-pt-16 {
    padding-top: 64px !important;
  }

  .sm\:cl-pr-16 {
    padding-right: 64px !important;
  }

  .sm\:cl-pb-16 {
    padding-bottom: 64px !important;
  }

  .sm\:cl-pl-16 {
    padding-left: 64px !important;
  }

  .sm\:cl-pt-20 {
    padding-top: 80px !important;
  }

  .sm\:cl-pr-20 {
    padding-right: 80px !important;
  }

  .sm\:cl-pb-20 {
    padding-bottom: 80px !important;
  }

  .sm\:cl-pl-20 {
    padding-left: 80px !important;
  }

  .sm\:cl-pt-24 {
    padding-top: 96px !important;
  }

  .sm\:cl-pr-24 {
    padding-right: 96px !important;
  }

  .sm\:cl-pb-24 {
    padding-bottom: 96px !important;
  }

  .sm\:cl-pl-24 {
    padding-left: 96px !important;
  }

  .sm\:cl-pt-26 {
    padding-top: 100px !important;
  }

  .sm\:cl-pr-26 {
    padding-right: 100px !important;
  }

  .sm\:cl-pb-26 {
    padding-bottom: 100px !important;
  }

  .sm\:cl-pl-26 {
    padding-left: 100px !important;
  }

  .sm\:cl-pt-28 {
    padding-top: 110px !important;
  }

  .sm\:cl-pr-28 {
    padding-right: 110px !important;
  }

  .sm\:cl-pb-28 {
    padding-bottom: 110px !important;
  }

  .sm\:cl-pl-28 {
    padding-left: 110px !important;
  }

  .sm\:cl-pt-32 {
    padding-top: 128px !important;
  }

  .sm\:cl-pr-32 {
    padding-right: 128px !important;
  }

  .sm\:cl-pb-32 {
    padding-bottom: 128px !important;
  }

  .sm\:cl-pl-32 {
    padding-left: 128px !important;
  }

  .sm\:cl-pt-40 {
    padding-top: 160px !important;
  }

  .sm\:cl-pr-40 {
    padding-right: 160px !important;
  }

  .sm\:cl-pb-40 {
    padding-bottom: 160px !important;
  }

  .sm\:cl-pl-40 {
    padding-left: 160px !important;
  }

  .sm\:cl-pt-48 {
    padding-top: 192px !important;
  }

  .sm\:cl-pr-48 {
    padding-right: 192px !important;
  }

  .sm\:cl-pb-48 {
    padding-bottom: 192px !important;
  }

  .sm\:cl-pl-48 {
    padding-left: 192px !important;
  }

  .sm\:cl-pt-56 {
    padding-top: 224px !important;
  }

  .sm\:cl-pr-56 {
    padding-right: 224px !important;
  }

  .sm\:cl-pb-56 {
    padding-bottom: 224px !important;
  }

  .sm\:cl-pl-56 {
    padding-left: 224px !important;
  }

  .sm\:cl-pt-64 {
    padding-top: 256px !important;
  }

  .sm\:cl-pr-64 {
    padding-right: 256px !important;
  }

  .sm\:cl-pb-64 {
    padding-bottom: 256px !important;
  }

  .sm\:cl-pl-64 {
    padding-left: 256px !important;
  }

  .sm\:cl-pt-px {
    padding-top: 1px !important;
  }

  .sm\:cl-pr-px {
    padding-right: 1px !important;
  }

  .sm\:cl-pb-px {
    padding-bottom: 1px !important;
  }

  .sm\:cl-pl-px {
    padding-left: 1px !important;
  }

  .sm\:cl-placeholder-transparent::-moz-placeholder {
    color: transparent !important;
  }

  .sm\:cl-placeholder-transparent::placeholder {
    color: transparent !important;
  }

  .sm\:cl-placeholder-current::-moz-placeholder {
    color: currentColor !important;
  }

  .sm\:cl-placeholder-current::placeholder {
    color: currentColor !important;
  }

  .sm\:cl-placeholder-black::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #000 !important;
    color: rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-black::placeholder {
    --placeholder-opacity: 1 !important;
    color: #000 !important;
    color: rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-white::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff !important;
    color: rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-white::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff !important;
    color: rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-gray-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f7fafc !important;
    color: rgba(247, 250, 252, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-gray-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f7fafc !important;
    color: rgba(247, 250, 252, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-gray-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #edf2f7 !important;
    color: rgba(237, 242, 247, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-gray-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #edf2f7 !important;
    color: rgba(237, 242, 247, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-gray-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e2e8f0 !important;
    color: rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-gray-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e2e8f0 !important;
    color: rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-gray-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #cbd5e0 !important;
    color: rgba(203, 213, 224, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-gray-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #cbd5e0 !important;
    color: rgba(203, 213, 224, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-gray-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #a0aec0 !important;
    color: rgba(160, 174, 192, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-gray-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #a0aec0 !important;
    color: rgba(160, 174, 192, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-gray-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #718096 !important;
    color: rgba(113, 128, 150, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-gray-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #718096 !important;
    color: rgba(113, 128, 150, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-gray-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #4a5568 !important;
    color: rgba(74, 85, 104, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-gray-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #4a5568 !important;
    color: rgba(74, 85, 104, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-gray-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2d3748 !important;
    color: rgba(45, 55, 72, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-gray-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2d3748 !important;
    color: rgba(45, 55, 72, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-gray-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #1a202c !important;
    color: rgba(26, 32, 44, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-gray-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #1a202c !important;
    color: rgba(26, 32, 44, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-red-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff5f5 !important;
    color: rgba(255, 245, 245, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-red-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff5f5 !important;
    color: rgba(255, 245, 245, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-red-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fed7d7 !important;
    color: rgba(254, 215, 215, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-red-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fed7d7 !important;
    color: rgba(254, 215, 215, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-red-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #feb2b2 !important;
    color: rgba(254, 178, 178, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-red-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #feb2b2 !important;
    color: rgba(254, 178, 178, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-red-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fc8181 !important;
    color: rgba(252, 129, 129, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-red-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fc8181 !important;
    color: rgba(252, 129, 129, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-red-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f56565 !important;
    color: rgba(245, 101, 101, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-red-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f56565 !important;
    color: rgba(245, 101, 101, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-red-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e53e3e !important;
    color: rgba(229, 62, 62, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-red-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e53e3e !important;
    color: rgba(229, 62, 62, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-red-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #c53030 !important;
    color: rgba(197, 48, 48, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-red-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #c53030 !important;
    color: rgba(197, 48, 48, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-red-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #9b2c2c !important;
    color: rgba(155, 44, 44, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-red-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #9b2c2c !important;
    color: rgba(155, 44, 44, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-red-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #742a2a !important;
    color: rgba(116, 42, 42, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-red-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #742a2a !important;
    color: rgba(116, 42, 42, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-orange-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fffaf0 !important;
    color: rgba(255, 250, 240, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-orange-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fffaf0 !important;
    color: rgba(255, 250, 240, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-orange-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #feebc8 !important;
    color: rgba(254, 235, 200, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-orange-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #feebc8 !important;
    color: rgba(254, 235, 200, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-orange-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fbd38d !important;
    color: rgba(251, 211, 141, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-orange-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fbd38d !important;
    color: rgba(251, 211, 141, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-orange-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f6ad55 !important;
    color: rgba(246, 173, 85, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-orange-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f6ad55 !important;
    color: rgba(246, 173, 85, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-orange-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ed8936 !important;
    color: rgba(237, 137, 54, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-orange-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ed8936 !important;
    color: rgba(237, 137, 54, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-orange-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #dd6b20 !important;
    color: rgba(221, 107, 32, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-orange-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #dd6b20 !important;
    color: rgba(221, 107, 32, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-orange-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #c05621 !important;
    color: rgba(192, 86, 33, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-orange-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #c05621 !important;
    color: rgba(192, 86, 33, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-orange-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #9c4221 !important;
    color: rgba(156, 66, 33, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-orange-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #9c4221 !important;
    color: rgba(156, 66, 33, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-orange-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #7b341e !important;
    color: rgba(123, 52, 30, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-orange-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #7b341e !important;
    color: rgba(123, 52, 30, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-yellow-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fffff0 !important;
    color: rgba(255, 255, 240, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-yellow-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fffff0 !important;
    color: rgba(255, 255, 240, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-yellow-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fefcbf !important;
    color: rgba(254, 252, 191, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-yellow-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fefcbf !important;
    color: rgba(254, 252, 191, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-yellow-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #faf089 !important;
    color: rgba(250, 240, 137, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-yellow-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #faf089 !important;
    color: rgba(250, 240, 137, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-yellow-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f6e05e !important;
    color: rgba(246, 224, 94, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-yellow-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f6e05e !important;
    color: rgba(246, 224, 94, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-yellow-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ecc94b !important;
    color: rgba(236, 201, 75, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-yellow-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ecc94b !important;
    color: rgba(236, 201, 75, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-yellow-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #d69e2e !important;
    color: rgba(214, 158, 46, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-yellow-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #d69e2e !important;
    color: rgba(214, 158, 46, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-yellow-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #b7791f !important;
    color: rgba(183, 121, 31, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-yellow-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #b7791f !important;
    color: rgba(183, 121, 31, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-yellow-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #975a16 !important;
    color: rgba(151, 90, 22, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-yellow-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #975a16 !important;
    color: rgba(151, 90, 22, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-yellow-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #744210 !important;
    color: rgba(116, 66, 16, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-yellow-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #744210 !important;
    color: rgba(116, 66, 16, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-green-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f0fff4 !important;
    color: rgba(240, 255, 244, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-green-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f0fff4 !important;
    color: rgba(240, 255, 244, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-green-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #c6f6d5 !important;
    color: rgba(198, 246, 213, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-green-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #c6f6d5 !important;
    color: rgba(198, 246, 213, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-green-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #9ae6b4 !important;
    color: rgba(154, 230, 180, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-green-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #9ae6b4 !important;
    color: rgba(154, 230, 180, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-green-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #68d391 !important;
    color: rgba(104, 211, 145, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-green-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #68d391 !important;
    color: rgba(104, 211, 145, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-green-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #48bb78 !important;
    color: rgba(72, 187, 120, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-green-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #48bb78 !important;
    color: rgba(72, 187, 120, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-green-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #38a169 !important;
    color: rgba(56, 161, 105, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-green-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #38a169 !important;
    color: rgba(56, 161, 105, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-green-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2f855a !important;
    color: rgba(47, 133, 90, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-green-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2f855a !important;
    color: rgba(47, 133, 90, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-green-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #276749 !important;
    color: rgba(39, 103, 73, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-green-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #276749 !important;
    color: rgba(39, 103, 73, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-green-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #22543d !important;
    color: rgba(34, 84, 61, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-green-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #22543d !important;
    color: rgba(34, 84, 61, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-teal-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e6fffa !important;
    color: rgba(230, 255, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-teal-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e6fffa !important;
    color: rgba(230, 255, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-teal-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #b2f5ea !important;
    color: rgba(178, 245, 234, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-teal-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #b2f5ea !important;
    color: rgba(178, 245, 234, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-teal-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #81e6d9 !important;
    color: rgba(129, 230, 217, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-teal-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #81e6d9 !important;
    color: rgba(129, 230, 217, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-teal-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #4fd1c5 !important;
    color: rgba(79, 209, 197, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-teal-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #4fd1c5 !important;
    color: rgba(79, 209, 197, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-teal-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #38b2ac !important;
    color: rgba(56, 178, 172, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-teal-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #38b2ac !important;
    color: rgba(56, 178, 172, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-teal-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #319795 !important;
    color: rgba(49, 151, 149, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-teal-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #319795 !important;
    color: rgba(49, 151, 149, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-teal-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2c7a7b !important;
    color: rgba(44, 122, 123, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-teal-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2c7a7b !important;
    color: rgba(44, 122, 123, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-teal-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #285e61 !important;
    color: rgba(40, 94, 97, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-teal-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #285e61 !important;
    color: rgba(40, 94, 97, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-teal-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #234e52 !important;
    color: rgba(35, 78, 82, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-teal-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #234e52 !important;
    color: rgba(35, 78, 82, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-blue-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ebf8ff !important;
    color: rgba(235, 248, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-blue-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ebf8ff !important;
    color: rgba(235, 248, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-blue-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #bee3f8 !important;
    color: rgba(190, 227, 248, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-blue-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #bee3f8 !important;
    color: rgba(190, 227, 248, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-blue-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #90cdf4 !important;
    color: rgba(144, 205, 244, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-blue-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #90cdf4 !important;
    color: rgba(144, 205, 244, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-blue-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #63b3ed !important;
    color: rgba(99, 179, 237, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-blue-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #63b3ed !important;
    color: rgba(99, 179, 237, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-blue-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #4299e1 !important;
    color: rgba(66, 153, 225, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-blue-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #4299e1 !important;
    color: rgba(66, 153, 225, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-blue-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #3182ce !important;
    color: rgba(49, 130, 206, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-blue-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #3182ce !important;
    color: rgba(49, 130, 206, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-blue-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2b6cb0 !important;
    color: rgba(43, 108, 176, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-blue-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2b6cb0 !important;
    color: rgba(43, 108, 176, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-blue-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2c5282 !important;
    color: rgba(44, 82, 130, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-blue-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2c5282 !important;
    color: rgba(44, 82, 130, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-blue-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2a4365 !important;
    color: rgba(42, 67, 101, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-blue-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2a4365 !important;
    color: rgba(42, 67, 101, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-indigo-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ebf4ff !important;
    color: rgba(235, 244, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-indigo-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ebf4ff !important;
    color: rgba(235, 244, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-indigo-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #c3dafe !important;
    color: rgba(195, 218, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-indigo-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #c3dafe !important;
    color: rgba(195, 218, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-indigo-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #a3bffa !important;
    color: rgba(163, 191, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-indigo-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #a3bffa !important;
    color: rgba(163, 191, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-indigo-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #7f9cf5 !important;
    color: rgba(127, 156, 245, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-indigo-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #7f9cf5 !important;
    color: rgba(127, 156, 245, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-indigo-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #667eea !important;
    color: rgba(102, 126, 234, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-indigo-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #667eea !important;
    color: rgba(102, 126, 234, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-indigo-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #5a67d8 !important;
    color: rgba(90, 103, 216, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-indigo-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #5a67d8 !important;
    color: rgba(90, 103, 216, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-indigo-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #4c51bf !important;
    color: rgba(76, 81, 191, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-indigo-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #4c51bf !important;
    color: rgba(76, 81, 191, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-indigo-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #434190 !important;
    color: rgba(67, 65, 144, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-indigo-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #434190 !important;
    color: rgba(67, 65, 144, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-indigo-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #3c366b !important;
    color: rgba(60, 54, 107, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-indigo-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #3c366b !important;
    color: rgba(60, 54, 107, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-purple-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #faf5ff !important;
    color: rgba(250, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-purple-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #faf5ff !important;
    color: rgba(250, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-purple-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e9d8fd !important;
    color: rgba(233, 216, 253, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-purple-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e9d8fd !important;
    color: rgba(233, 216, 253, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-purple-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #d6bcfa !important;
    color: rgba(214, 188, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-purple-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #d6bcfa !important;
    color: rgba(214, 188, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-purple-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #b794f4 !important;
    color: rgba(183, 148, 244, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-purple-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #b794f4 !important;
    color: rgba(183, 148, 244, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-purple-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #9f7aea !important;
    color: rgba(159, 122, 234, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-purple-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #9f7aea !important;
    color: rgba(159, 122, 234, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-purple-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #805ad5 !important;
    color: rgba(128, 90, 213, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-purple-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #805ad5 !important;
    color: rgba(128, 90, 213, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-purple-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #6b46c1 !important;
    color: rgba(107, 70, 193, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-purple-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #6b46c1 !important;
    color: rgba(107, 70, 193, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-purple-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #553c9a !important;
    color: rgba(85, 60, 154, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-purple-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #553c9a !important;
    color: rgba(85, 60, 154, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-purple-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #44337a !important;
    color: rgba(68, 51, 122, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-purple-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #44337a !important;
    color: rgba(68, 51, 122, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-pink-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff5f7 !important;
    color: rgba(255, 245, 247, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-pink-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff5f7 !important;
    color: rgba(255, 245, 247, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-pink-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fed7e2 !important;
    color: rgba(254, 215, 226, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-pink-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fed7e2 !important;
    color: rgba(254, 215, 226, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-pink-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fbb6ce !important;
    color: rgba(251, 182, 206, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-pink-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fbb6ce !important;
    color: rgba(251, 182, 206, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-pink-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f687b3 !important;
    color: rgba(246, 135, 179, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-pink-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f687b3 !important;
    color: rgba(246, 135, 179, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-pink-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ed64a6 !important;
    color: rgba(237, 100, 166, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-pink-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ed64a6 !important;
    color: rgba(237, 100, 166, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-pink-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #d53f8c !important;
    color: rgba(213, 63, 140, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-pink-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #d53f8c !important;
    color: rgba(213, 63, 140, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-pink-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #b83280 !important;
    color: rgba(184, 50, 128, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-pink-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #b83280 !important;
    color: rgba(184, 50, 128, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-pink-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #97266d !important;
    color: rgba(151, 38, 109, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-pink-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #97266d !important;
    color: rgba(151, 38, 109, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-pink-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #702459 !important;
    color: rgba(112, 36, 89, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-pink-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #702459 !important;
    color: rgba(112, 36, 89, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-ui-gray-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f1f1f1 !important;
    color: rgba(241, 241, 241, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-ui-gray-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f1f1f1 !important;
    color: rgba(241, 241, 241, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-ui-brown-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f3ecdc !important;
    color: rgba(243, 236, 220, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-ui-brown-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f3ecdc !important;
    color: rgba(243, 236, 220, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-ui-brown-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e8e0c9 !important;
    color: rgba(232, 224, 201, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-ui-brown-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e8e0c9 !important;
    color: rgba(232, 224, 201, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-ui-brown-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #d0c095 !important;
    color: rgba(208, 192, 149, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-ui-brown-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #d0c095 !important;
    color: rgba(208, 192, 149, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-ui-brown-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #bd6005 !important;
    color: rgba(189, 96, 5, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-ui-brown-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #bd6005 !important;
    color: rgba(189, 96, 5, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-ui-green-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #aac74c !important;
    color: rgba(170, 199, 76, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-ui-green-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #aac74c !important;
    color: rgba(170, 199, 76, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-ui-green-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #71893e !important;
    color: rgba(113, 137, 62, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-ui-green-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #71893e !important;
    color: rgba(113, 137, 62, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-ui-orange-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e27212 !important;
    color: rgba(226, 114, 18, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-ui-orange-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e27212 !important;
    color: rgba(226, 114, 18, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-facebook::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #3b5998 !important;
    color: rgba(59, 89, 152, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-facebook::placeholder {
    --placeholder-opacity: 1 !important;
    color: #3b5998 !important;
    color: rgba(59, 89, 152, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-twitter::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #00acee !important;
    color: rgba(0, 172, 238, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-twitter::placeholder {
    --placeholder-opacity: 1 !important;
    color: #00acee !important;
    color: rgba(0, 172, 238, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-twitch::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #6441a5 !important;
    color: rgba(100, 65, 165, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-twitch::placeholder {
    --placeholder-opacity: 1 !important;
    color: #6441a5 !important;
    color: rgba(100, 65, 165, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-youtube::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #FF0000 !important;
    color: rgba(255, 0, 0, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-youtube::placeholder {
    --placeholder-opacity: 1 !important;
    color: #FF0000 !important;
    color: rgba(255, 0, 0, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-transparent:focus::-moz-placeholder {
    color: transparent !important;
  }

  .sm\:focus\:cl-placeholder-transparent:focus::placeholder {
    color: transparent !important;
  }

  .sm\:focus\:cl-placeholder-current:focus::-moz-placeholder {
    color: currentColor !important;
  }

  .sm\:focus\:cl-placeholder-current:focus::placeholder {
    color: currentColor !important;
  }

  .sm\:focus\:cl-placeholder-black:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #000 !important;
    color: rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-black:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #000 !important;
    color: rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-white:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff !important;
    color: rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-white:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff !important;
    color: rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-gray-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f7fafc !important;
    color: rgba(247, 250, 252, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-gray-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f7fafc !important;
    color: rgba(247, 250, 252, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-gray-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #edf2f7 !important;
    color: rgba(237, 242, 247, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-gray-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #edf2f7 !important;
    color: rgba(237, 242, 247, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-gray-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e2e8f0 !important;
    color: rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-gray-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e2e8f0 !important;
    color: rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-gray-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #cbd5e0 !important;
    color: rgba(203, 213, 224, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-gray-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #cbd5e0 !important;
    color: rgba(203, 213, 224, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-gray-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #a0aec0 !important;
    color: rgba(160, 174, 192, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-gray-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #a0aec0 !important;
    color: rgba(160, 174, 192, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-gray-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #718096 !important;
    color: rgba(113, 128, 150, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-gray-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #718096 !important;
    color: rgba(113, 128, 150, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-gray-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #4a5568 !important;
    color: rgba(74, 85, 104, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-gray-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #4a5568 !important;
    color: rgba(74, 85, 104, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-gray-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2d3748 !important;
    color: rgba(45, 55, 72, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-gray-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2d3748 !important;
    color: rgba(45, 55, 72, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-gray-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #1a202c !important;
    color: rgba(26, 32, 44, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-gray-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #1a202c !important;
    color: rgba(26, 32, 44, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-red-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff5f5 !important;
    color: rgba(255, 245, 245, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-red-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff5f5 !important;
    color: rgba(255, 245, 245, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-red-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fed7d7 !important;
    color: rgba(254, 215, 215, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-red-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fed7d7 !important;
    color: rgba(254, 215, 215, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-red-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #feb2b2 !important;
    color: rgba(254, 178, 178, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-red-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #feb2b2 !important;
    color: rgba(254, 178, 178, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-red-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fc8181 !important;
    color: rgba(252, 129, 129, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-red-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fc8181 !important;
    color: rgba(252, 129, 129, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-red-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f56565 !important;
    color: rgba(245, 101, 101, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-red-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f56565 !important;
    color: rgba(245, 101, 101, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-red-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e53e3e !important;
    color: rgba(229, 62, 62, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-red-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e53e3e !important;
    color: rgba(229, 62, 62, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-red-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #c53030 !important;
    color: rgba(197, 48, 48, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-red-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #c53030 !important;
    color: rgba(197, 48, 48, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-red-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #9b2c2c !important;
    color: rgba(155, 44, 44, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-red-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #9b2c2c !important;
    color: rgba(155, 44, 44, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-red-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #742a2a !important;
    color: rgba(116, 42, 42, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-red-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #742a2a !important;
    color: rgba(116, 42, 42, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-orange-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fffaf0 !important;
    color: rgba(255, 250, 240, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-orange-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fffaf0 !important;
    color: rgba(255, 250, 240, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-orange-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #feebc8 !important;
    color: rgba(254, 235, 200, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-orange-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #feebc8 !important;
    color: rgba(254, 235, 200, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-orange-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fbd38d !important;
    color: rgba(251, 211, 141, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-orange-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fbd38d !important;
    color: rgba(251, 211, 141, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-orange-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f6ad55 !important;
    color: rgba(246, 173, 85, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-orange-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f6ad55 !important;
    color: rgba(246, 173, 85, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-orange-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ed8936 !important;
    color: rgba(237, 137, 54, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-orange-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ed8936 !important;
    color: rgba(237, 137, 54, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-orange-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #dd6b20 !important;
    color: rgba(221, 107, 32, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-orange-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #dd6b20 !important;
    color: rgba(221, 107, 32, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-orange-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #c05621 !important;
    color: rgba(192, 86, 33, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-orange-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #c05621 !important;
    color: rgba(192, 86, 33, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-orange-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #9c4221 !important;
    color: rgba(156, 66, 33, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-orange-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #9c4221 !important;
    color: rgba(156, 66, 33, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-orange-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #7b341e !important;
    color: rgba(123, 52, 30, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-orange-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #7b341e !important;
    color: rgba(123, 52, 30, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-yellow-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fffff0 !important;
    color: rgba(255, 255, 240, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-yellow-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fffff0 !important;
    color: rgba(255, 255, 240, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-yellow-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fefcbf !important;
    color: rgba(254, 252, 191, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-yellow-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fefcbf !important;
    color: rgba(254, 252, 191, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-yellow-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #faf089 !important;
    color: rgba(250, 240, 137, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-yellow-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #faf089 !important;
    color: rgba(250, 240, 137, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-yellow-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f6e05e !important;
    color: rgba(246, 224, 94, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-yellow-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f6e05e !important;
    color: rgba(246, 224, 94, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-yellow-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ecc94b !important;
    color: rgba(236, 201, 75, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-yellow-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ecc94b !important;
    color: rgba(236, 201, 75, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-yellow-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #d69e2e !important;
    color: rgba(214, 158, 46, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-yellow-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #d69e2e !important;
    color: rgba(214, 158, 46, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-yellow-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #b7791f !important;
    color: rgba(183, 121, 31, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-yellow-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #b7791f !important;
    color: rgba(183, 121, 31, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-yellow-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #975a16 !important;
    color: rgba(151, 90, 22, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-yellow-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #975a16 !important;
    color: rgba(151, 90, 22, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-yellow-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #744210 !important;
    color: rgba(116, 66, 16, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-yellow-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #744210 !important;
    color: rgba(116, 66, 16, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-green-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f0fff4 !important;
    color: rgba(240, 255, 244, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-green-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f0fff4 !important;
    color: rgba(240, 255, 244, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-green-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #c6f6d5 !important;
    color: rgba(198, 246, 213, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-green-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #c6f6d5 !important;
    color: rgba(198, 246, 213, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-green-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #9ae6b4 !important;
    color: rgba(154, 230, 180, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-green-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #9ae6b4 !important;
    color: rgba(154, 230, 180, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-green-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #68d391 !important;
    color: rgba(104, 211, 145, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-green-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #68d391 !important;
    color: rgba(104, 211, 145, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-green-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #48bb78 !important;
    color: rgba(72, 187, 120, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-green-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #48bb78 !important;
    color: rgba(72, 187, 120, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-green-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #38a169 !important;
    color: rgba(56, 161, 105, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-green-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #38a169 !important;
    color: rgba(56, 161, 105, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-green-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2f855a !important;
    color: rgba(47, 133, 90, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-green-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2f855a !important;
    color: rgba(47, 133, 90, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-green-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #276749 !important;
    color: rgba(39, 103, 73, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-green-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #276749 !important;
    color: rgba(39, 103, 73, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-green-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #22543d !important;
    color: rgba(34, 84, 61, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-green-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #22543d !important;
    color: rgba(34, 84, 61, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-teal-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e6fffa !important;
    color: rgba(230, 255, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-teal-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e6fffa !important;
    color: rgba(230, 255, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-teal-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #b2f5ea !important;
    color: rgba(178, 245, 234, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-teal-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #b2f5ea !important;
    color: rgba(178, 245, 234, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-teal-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #81e6d9 !important;
    color: rgba(129, 230, 217, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-teal-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #81e6d9 !important;
    color: rgba(129, 230, 217, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-teal-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #4fd1c5 !important;
    color: rgba(79, 209, 197, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-teal-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #4fd1c5 !important;
    color: rgba(79, 209, 197, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-teal-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #38b2ac !important;
    color: rgba(56, 178, 172, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-teal-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #38b2ac !important;
    color: rgba(56, 178, 172, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-teal-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #319795 !important;
    color: rgba(49, 151, 149, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-teal-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #319795 !important;
    color: rgba(49, 151, 149, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-teal-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2c7a7b !important;
    color: rgba(44, 122, 123, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-teal-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2c7a7b !important;
    color: rgba(44, 122, 123, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-teal-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #285e61 !important;
    color: rgba(40, 94, 97, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-teal-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #285e61 !important;
    color: rgba(40, 94, 97, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-teal-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #234e52 !important;
    color: rgba(35, 78, 82, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-teal-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #234e52 !important;
    color: rgba(35, 78, 82, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-blue-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ebf8ff !important;
    color: rgba(235, 248, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-blue-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ebf8ff !important;
    color: rgba(235, 248, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-blue-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #bee3f8 !important;
    color: rgba(190, 227, 248, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-blue-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #bee3f8 !important;
    color: rgba(190, 227, 248, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-blue-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #90cdf4 !important;
    color: rgba(144, 205, 244, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-blue-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #90cdf4 !important;
    color: rgba(144, 205, 244, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-blue-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #63b3ed !important;
    color: rgba(99, 179, 237, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-blue-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #63b3ed !important;
    color: rgba(99, 179, 237, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-blue-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #4299e1 !important;
    color: rgba(66, 153, 225, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-blue-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #4299e1 !important;
    color: rgba(66, 153, 225, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-blue-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #3182ce !important;
    color: rgba(49, 130, 206, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-blue-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #3182ce !important;
    color: rgba(49, 130, 206, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-blue-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2b6cb0 !important;
    color: rgba(43, 108, 176, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-blue-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2b6cb0 !important;
    color: rgba(43, 108, 176, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-blue-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2c5282 !important;
    color: rgba(44, 82, 130, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-blue-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2c5282 !important;
    color: rgba(44, 82, 130, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-blue-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2a4365 !important;
    color: rgba(42, 67, 101, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-blue-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2a4365 !important;
    color: rgba(42, 67, 101, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-indigo-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ebf4ff !important;
    color: rgba(235, 244, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-indigo-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ebf4ff !important;
    color: rgba(235, 244, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-indigo-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #c3dafe !important;
    color: rgba(195, 218, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-indigo-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #c3dafe !important;
    color: rgba(195, 218, 254, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-indigo-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #a3bffa !important;
    color: rgba(163, 191, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-indigo-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #a3bffa !important;
    color: rgba(163, 191, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-indigo-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #7f9cf5 !important;
    color: rgba(127, 156, 245, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-indigo-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #7f9cf5 !important;
    color: rgba(127, 156, 245, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-indigo-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #667eea !important;
    color: rgba(102, 126, 234, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-indigo-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #667eea !important;
    color: rgba(102, 126, 234, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-indigo-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #5a67d8 !important;
    color: rgba(90, 103, 216, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-indigo-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #5a67d8 !important;
    color: rgba(90, 103, 216, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-indigo-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #4c51bf !important;
    color: rgba(76, 81, 191, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-indigo-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #4c51bf !important;
    color: rgba(76, 81, 191, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-indigo-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #434190 !important;
    color: rgba(67, 65, 144, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-indigo-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #434190 !important;
    color: rgba(67, 65, 144, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-indigo-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #3c366b !important;
    color: rgba(60, 54, 107, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-indigo-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #3c366b !important;
    color: rgba(60, 54, 107, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-purple-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #faf5ff !important;
    color: rgba(250, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-purple-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #faf5ff !important;
    color: rgba(250, 245, 255, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-purple-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e9d8fd !important;
    color: rgba(233, 216, 253, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-purple-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e9d8fd !important;
    color: rgba(233, 216, 253, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-purple-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #d6bcfa !important;
    color: rgba(214, 188, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-purple-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #d6bcfa !important;
    color: rgba(214, 188, 250, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-purple-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #b794f4 !important;
    color: rgba(183, 148, 244, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-purple-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #b794f4 !important;
    color: rgba(183, 148, 244, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-purple-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #9f7aea !important;
    color: rgba(159, 122, 234, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-purple-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #9f7aea !important;
    color: rgba(159, 122, 234, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-purple-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #805ad5 !important;
    color: rgba(128, 90, 213, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-purple-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #805ad5 !important;
    color: rgba(128, 90, 213, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-purple-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #6b46c1 !important;
    color: rgba(107, 70, 193, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-purple-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #6b46c1 !important;
    color: rgba(107, 70, 193, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-purple-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #553c9a !important;
    color: rgba(85, 60, 154, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-purple-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #553c9a !important;
    color: rgba(85, 60, 154, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-purple-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #44337a !important;
    color: rgba(68, 51, 122, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-purple-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #44337a !important;
    color: rgba(68, 51, 122, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-pink-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff5f7 !important;
    color: rgba(255, 245, 247, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-pink-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff5f7 !important;
    color: rgba(255, 245, 247, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-pink-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fed7e2 !important;
    color: rgba(254, 215, 226, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-pink-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fed7e2 !important;
    color: rgba(254, 215, 226, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-pink-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fbb6ce !important;
    color: rgba(251, 182, 206, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-pink-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fbb6ce !important;
    color: rgba(251, 182, 206, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-pink-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f687b3 !important;
    color: rgba(246, 135, 179, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-pink-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f687b3 !important;
    color: rgba(246, 135, 179, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-pink-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ed64a6 !important;
    color: rgba(237, 100, 166, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-pink-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ed64a6 !important;
    color: rgba(237, 100, 166, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-pink-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #d53f8c !important;
    color: rgba(213, 63, 140, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-pink-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #d53f8c !important;
    color: rgba(213, 63, 140, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-pink-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #b83280 !important;
    color: rgba(184, 50, 128, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-pink-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #b83280 !important;
    color: rgba(184, 50, 128, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-pink-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #97266d !important;
    color: rgba(151, 38, 109, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-pink-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #97266d !important;
    color: rgba(151, 38, 109, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-pink-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #702459 !important;
    color: rgba(112, 36, 89, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-pink-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #702459 !important;
    color: rgba(112, 36, 89, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-ui-gray-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f1f1f1 !important;
    color: rgba(241, 241, 241, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-ui-gray-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f1f1f1 !important;
    color: rgba(241, 241, 241, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-ui-brown-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f3ecdc !important;
    color: rgba(243, 236, 220, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-ui-brown-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f3ecdc !important;
    color: rgba(243, 236, 220, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-ui-brown-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e8e0c9 !important;
    color: rgba(232, 224, 201, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-ui-brown-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e8e0c9 !important;
    color: rgba(232, 224, 201, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-ui-brown-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #d0c095 !important;
    color: rgba(208, 192, 149, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-ui-brown-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #d0c095 !important;
    color: rgba(208, 192, 149, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-ui-brown-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #bd6005 !important;
    color: rgba(189, 96, 5, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-ui-brown-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #bd6005 !important;
    color: rgba(189, 96, 5, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-ui-green-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #aac74c !important;
    color: rgba(170, 199, 76, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-ui-green-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #aac74c !important;
    color: rgba(170, 199, 76, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-ui-green-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #71893e !important;
    color: rgba(113, 137, 62, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-ui-green-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #71893e !important;
    color: rgba(113, 137, 62, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-ui-orange-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e27212 !important;
    color: rgba(226, 114, 18, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-ui-orange-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e27212 !important;
    color: rgba(226, 114, 18, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-facebook:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #3b5998 !important;
    color: rgba(59, 89, 152, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-facebook:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #3b5998 !important;
    color: rgba(59, 89, 152, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-twitter:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #00acee !important;
    color: rgba(0, 172, 238, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-twitter:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #00acee !important;
    color: rgba(0, 172, 238, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-twitch:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #6441a5 !important;
    color: rgba(100, 65, 165, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-twitch:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #6441a5 !important;
    color: rgba(100, 65, 165, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-youtube:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #FF0000 !important;
    color: rgba(255, 0, 0, var(--placeholder-opacity)) !important;
  }

  .sm\:focus\:cl-placeholder-youtube:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #FF0000 !important;
    color: rgba(255, 0, 0, var(--placeholder-opacity)) !important;
  }

  .sm\:cl-placeholder-opacity-0::-moz-placeholder {
    --placeholder-opacity: 0 !important;
  }

  .sm\:cl-placeholder-opacity-0::placeholder {
    --placeholder-opacity: 0 !important;
  }

  .sm\:cl-placeholder-opacity-25::-moz-placeholder {
    --placeholder-opacity: 0.25 !important;
  }

  .sm\:cl-placeholder-opacity-25::placeholder {
    --placeholder-opacity: 0.25 !important;
  }

  .sm\:cl-placeholder-opacity-50::-moz-placeholder {
    --placeholder-opacity: 0.5 !important;
  }

  .sm\:cl-placeholder-opacity-50::placeholder {
    --placeholder-opacity: 0.5 !important;
  }

  .sm\:cl-placeholder-opacity-75::-moz-placeholder {
    --placeholder-opacity: 0.75 !important;
  }

  .sm\:cl-placeholder-opacity-75::placeholder {
    --placeholder-opacity: 0.75 !important;
  }

  .sm\:cl-placeholder-opacity-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
  }

  .sm\:cl-placeholder-opacity-100::placeholder {
    --placeholder-opacity: 1 !important;
  }

  .sm\:focus\:cl-placeholder-opacity-0:focus::-moz-placeholder {
    --placeholder-opacity: 0 !important;
  }

  .sm\:focus\:cl-placeholder-opacity-0:focus::placeholder {
    --placeholder-opacity: 0 !important;
  }

  .sm\:focus\:cl-placeholder-opacity-25:focus::-moz-placeholder {
    --placeholder-opacity: 0.25 !important;
  }

  .sm\:focus\:cl-placeholder-opacity-25:focus::placeholder {
    --placeholder-opacity: 0.25 !important;
  }

  .sm\:focus\:cl-placeholder-opacity-50:focus::-moz-placeholder {
    --placeholder-opacity: 0.5 !important;
  }

  .sm\:focus\:cl-placeholder-opacity-50:focus::placeholder {
    --placeholder-opacity: 0.5 !important;
  }

  .sm\:focus\:cl-placeholder-opacity-75:focus::-moz-placeholder {
    --placeholder-opacity: 0.75 !important;
  }

  .sm\:focus\:cl-placeholder-opacity-75:focus::placeholder {
    --placeholder-opacity: 0.75 !important;
  }

  .sm\:focus\:cl-placeholder-opacity-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
  }

  .sm\:focus\:cl-placeholder-opacity-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
  }

  .sm\:cl-pointer-events-none {
    pointer-events: none !important;
  }

  .sm\:cl-pointer-events-auto {
    pointer-events: auto !important;
  }

  .sm\:cl-static {
    position: static !important;
  }

  .sm\:cl-fixed {
    position: fixed !important;
  }

  .sm\:cl-absolute {
    position: absolute !important;
  }

  .sm\:cl-relative {
    position: relative !important;
  }

  .sm\:cl-sticky {
    position: sticky !important;
  }

  .sm\:cl-inset-0 {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
  }

  .sm\:cl-inset-auto {
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }

  .sm\:cl-inset-y-0 {
    top: 0 !important;
    bottom: 0 !important;
  }

  .sm\:cl-inset-x-0 {
    right: 0 !important;
    left: 0 !important;
  }

  .sm\:cl-inset-y-auto {
    top: auto !important;
    bottom: auto !important;
  }

  .sm\:cl-inset-x-auto {
    right: auto !important;
    left: auto !important;
  }

  .sm\:cl-top-0 {
    top: 0 !important;
  }

  .sm\:cl-right-0 {
    right: 0 !important;
  }

  .sm\:cl-bottom-0 {
    bottom: 0 !important;
  }

  .sm\:cl-left-0 {
    left: 0 !important;
  }

  .sm\:cl-top-auto {
    top: auto !important;
  }

  .sm\:cl-right-auto {
    right: auto !important;
  }

  .sm\:cl-bottom-auto {
    bottom: auto !important;
  }

  .sm\:cl-left-auto {
    left: auto !important;
  }

  .sm\:cl-resize-none {
    resize: none !important;
  }

  .sm\:cl-resize-y {
    resize: vertical !important;
  }

  .sm\:cl-resize-x {
    resize: horizontal !important;
  }

  .sm\:cl-resize {
    resize: both !important;
  }

  .sm\:cl-shadow-xs {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  }

  .sm\:cl-shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .sm\:cl-shadow {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .sm\:cl-shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  }

  .sm\:cl-shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  }

  .sm\:cl-shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  }

  .sm\:cl-shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  }

  .sm\:cl-shadow-inner {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .sm\:cl-shadow-outline {
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5) !important;
  }

  .sm\:cl-shadow-none {
    box-shadow: none !important;
  }

  .sm\:cl-shadow-ui-wrapper {
    box-shadow: 2px 0 4px 1px #4b4b4b42 !important;
  }

  .sm\:cl-shadow-ui-btn-lg {
    box-shadow: 0 8px 0 0 #c9c3b0 !important;
  }

  .sm\:cl-shadow-ui-btn {
    box-shadow: 0 5px 0 0 #c9c3b0 !important;
  }

  .sm\:cl-shadow-ui-leaderboard {
    box-shadow: 0 7px 0 0 #a76d28 !important;
  }

  .sm\:cl-shadow-ui-leaderboard-normal {
    box-shadow: 0 5px 0 0 #c3c3c3 !important;
  }

  .sm\:cl-shadow-ui-divider-l {
    box-shadow: -1px 0 0 0 #b5a881 !important;
  }

  .sm\:hover\:cl-shadow-xs:hover {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  }

  .sm\:hover\:cl-shadow-sm:hover {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .sm\:hover\:cl-shadow:hover {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .sm\:hover\:cl-shadow-md:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  }

  .sm\:hover\:cl-shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  }

  .sm\:hover\:cl-shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  }

  .sm\:hover\:cl-shadow-2xl:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  }

  .sm\:hover\:cl-shadow-inner:hover {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .sm\:hover\:cl-shadow-outline:hover {
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5) !important;
  }

  .sm\:hover\:cl-shadow-none:hover {
    box-shadow: none !important;
  }

  .sm\:hover\:cl-shadow-ui-wrapper:hover {
    box-shadow: 2px 0 4px 1px #4b4b4b42 !important;
  }

  .sm\:hover\:cl-shadow-ui-btn-lg:hover {
    box-shadow: 0 8px 0 0 #c9c3b0 !important;
  }

  .sm\:hover\:cl-shadow-ui-btn:hover {
    box-shadow: 0 5px 0 0 #c9c3b0 !important;
  }

  .sm\:hover\:cl-shadow-ui-leaderboard:hover {
    box-shadow: 0 7px 0 0 #a76d28 !important;
  }

  .sm\:hover\:cl-shadow-ui-leaderboard-normal:hover {
    box-shadow: 0 5px 0 0 #c3c3c3 !important;
  }

  .sm\:hover\:cl-shadow-ui-divider-l:hover {
    box-shadow: -1px 0 0 0 #b5a881 !important;
  }

  .sm\:focus\:cl-shadow-xs:focus {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  }

  .sm\:focus\:cl-shadow-sm:focus {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .sm\:focus\:cl-shadow:focus {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .sm\:focus\:cl-shadow-md:focus {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  }

  .sm\:focus\:cl-shadow-lg:focus {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  }

  .sm\:focus\:cl-shadow-xl:focus {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  }

  .sm\:focus\:cl-shadow-2xl:focus {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  }

  .sm\:focus\:cl-shadow-inner:focus {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .sm\:focus\:cl-shadow-outline:focus {
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5) !important;
  }

  .sm\:focus\:cl-shadow-none:focus {
    box-shadow: none !important;
  }

  .sm\:focus\:cl-shadow-ui-wrapper:focus {
    box-shadow: 2px 0 4px 1px #4b4b4b42 !important;
  }

  .sm\:focus\:cl-shadow-ui-btn-lg:focus {
    box-shadow: 0 8px 0 0 #c9c3b0 !important;
  }

  .sm\:focus\:cl-shadow-ui-btn:focus {
    box-shadow: 0 5px 0 0 #c9c3b0 !important;
  }

  .sm\:focus\:cl-shadow-ui-leaderboard:focus {
    box-shadow: 0 7px 0 0 #a76d28 !important;
  }

  .sm\:focus\:cl-shadow-ui-leaderboard-normal:focus {
    box-shadow: 0 5px 0 0 #c3c3c3 !important;
  }

  .sm\:focus\:cl-shadow-ui-divider-l:focus {
    box-shadow: -1px 0 0 0 #b5a881 !important;
  }

  .sm\:active\:cl-shadow-xs:active {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  }

  .sm\:active\:cl-shadow-sm:active {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .sm\:active\:cl-shadow:active {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .sm\:active\:cl-shadow-md:active {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  }

  .sm\:active\:cl-shadow-lg:active {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  }

  .sm\:active\:cl-shadow-xl:active {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  }

  .sm\:active\:cl-shadow-2xl:active {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  }

  .sm\:active\:cl-shadow-inner:active {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .sm\:active\:cl-shadow-outline:active {
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5) !important;
  }

  .sm\:active\:cl-shadow-none:active {
    box-shadow: none !important;
  }

  .sm\:active\:cl-shadow-ui-wrapper:active {
    box-shadow: 2px 0 4px 1px #4b4b4b42 !important;
  }

  .sm\:active\:cl-shadow-ui-btn-lg:active {
    box-shadow: 0 8px 0 0 #c9c3b0 !important;
  }

  .sm\:active\:cl-shadow-ui-btn:active {
    box-shadow: 0 5px 0 0 #c9c3b0 !important;
  }

  .sm\:active\:cl-shadow-ui-leaderboard:active {
    box-shadow: 0 7px 0 0 #a76d28 !important;
  }

  .sm\:active\:cl-shadow-ui-leaderboard-normal:active {
    box-shadow: 0 5px 0 0 #c3c3c3 !important;
  }

  .sm\:active\:cl-shadow-ui-divider-l:active {
    box-shadow: -1px 0 0 0 #b5a881 !important;
  }

  .sm\:cl-fill-current {
    fill: currentColor !important;
  }

  .sm\:cl-stroke-current {
    stroke: currentColor !important;
  }

  .sm\:cl-stroke-0 {
    stroke-width: 0 !important;
  }

  .sm\:cl-stroke-1 {
    stroke-width: 1 !important;
  }

  .sm\:cl-stroke-2 {
    stroke-width: 2 !important;
  }

  .sm\:cl-table-auto {
    table-layout: auto !important;
  }

  .sm\:cl-table-fixed {
    table-layout: fixed !important;
  }

  .sm\:cl-text-left {
    text-align: left !important;
  }

  .sm\:cl-text-center {
    text-align: center !important;
  }

  .sm\:cl-text-right {
    text-align: right !important;
  }

  .sm\:cl-text-justify {
    text-align: justify !important;
  }

  .sm\:cl-text-transparent {
    color: transparent !important;
  }

  .sm\:cl-text-current {
    color: currentColor !important;
  }

  .sm\:cl-text-black {
    --text-opacity: 1 !important;
    color: #000 !important;
    color: rgba(0, 0, 0, var(--text-opacity)) !important;
  }

  .sm\:cl-text-white {
    --text-opacity: 1 !important;
    color: #fff !important;
    color: rgba(255, 255, 255, var(--text-opacity)) !important;
  }

  .sm\:cl-text-gray-100 {
    --text-opacity: 1 !important;
    color: #f7fafc !important;
    color: rgba(247, 250, 252, var(--text-opacity)) !important;
  }

  .sm\:cl-text-gray-200 {
    --text-opacity: 1 !important;
    color: #edf2f7 !important;
    color: rgba(237, 242, 247, var(--text-opacity)) !important;
  }

  .sm\:cl-text-gray-300 {
    --text-opacity: 1 !important;
    color: #e2e8f0 !important;
    color: rgba(226, 232, 240, var(--text-opacity)) !important;
  }

  .sm\:cl-text-gray-400 {
    --text-opacity: 1 !important;
    color: #cbd5e0 !important;
    color: rgba(203, 213, 224, var(--text-opacity)) !important;
  }

  .sm\:cl-text-gray-500 {
    --text-opacity: 1 !important;
    color: #a0aec0 !important;
    color: rgba(160, 174, 192, var(--text-opacity)) !important;
  }

  .sm\:cl-text-gray-600 {
    --text-opacity: 1 !important;
    color: #718096 !important;
    color: rgba(113, 128, 150, var(--text-opacity)) !important;
  }

  .sm\:cl-text-gray-700 {
    --text-opacity: 1 !important;
    color: #4a5568 !important;
    color: rgba(74, 85, 104, var(--text-opacity)) !important;
  }

  .sm\:cl-text-gray-800 {
    --text-opacity: 1 !important;
    color: #2d3748 !important;
    color: rgba(45, 55, 72, var(--text-opacity)) !important;
  }

  .sm\:cl-text-gray-900 {
    --text-opacity: 1 !important;
    color: #1a202c !important;
    color: rgba(26, 32, 44, var(--text-opacity)) !important;
  }

  .sm\:cl-text-red-100 {
    --text-opacity: 1 !important;
    color: #fff5f5 !important;
    color: rgba(255, 245, 245, var(--text-opacity)) !important;
  }

  .sm\:cl-text-red-200 {
    --text-opacity: 1 !important;
    color: #fed7d7 !important;
    color: rgba(254, 215, 215, var(--text-opacity)) !important;
  }

  .sm\:cl-text-red-300 {
    --text-opacity: 1 !important;
    color: #feb2b2 !important;
    color: rgba(254, 178, 178, var(--text-opacity)) !important;
  }

  .sm\:cl-text-red-400 {
    --text-opacity: 1 !important;
    color: #fc8181 !important;
    color: rgba(252, 129, 129, var(--text-opacity)) !important;
  }

  .sm\:cl-text-red-500 {
    --text-opacity: 1 !important;
    color: #f56565 !important;
    color: rgba(245, 101, 101, var(--text-opacity)) !important;
  }

  .sm\:cl-text-red-600 {
    --text-opacity: 1 !important;
    color: #e53e3e !important;
    color: rgba(229, 62, 62, var(--text-opacity)) !important;
  }

  .sm\:cl-text-red-700 {
    --text-opacity: 1 !important;
    color: #c53030 !important;
    color: rgba(197, 48, 48, var(--text-opacity)) !important;
  }

  .sm\:cl-text-red-800 {
    --text-opacity: 1 !important;
    color: #9b2c2c !important;
    color: rgba(155, 44, 44, var(--text-opacity)) !important;
  }

  .sm\:cl-text-red-900 {
    --text-opacity: 1 !important;
    color: #742a2a !important;
    color: rgba(116, 42, 42, var(--text-opacity)) !important;
  }

  .sm\:cl-text-orange-100 {
    --text-opacity: 1 !important;
    color: #fffaf0 !important;
    color: rgba(255, 250, 240, var(--text-opacity)) !important;
  }

  .sm\:cl-text-orange-200 {
    --text-opacity: 1 !important;
    color: #feebc8 !important;
    color: rgba(254, 235, 200, var(--text-opacity)) !important;
  }

  .sm\:cl-text-orange-300 {
    --text-opacity: 1 !important;
    color: #fbd38d !important;
    color: rgba(251, 211, 141, var(--text-opacity)) !important;
  }

  .sm\:cl-text-orange-400 {
    --text-opacity: 1 !important;
    color: #f6ad55 !important;
    color: rgba(246, 173, 85, var(--text-opacity)) !important;
  }

  .sm\:cl-text-orange-500 {
    --text-opacity: 1 !important;
    color: #ed8936 !important;
    color: rgba(237, 137, 54, var(--text-opacity)) !important;
  }

  .sm\:cl-text-orange-600 {
    --text-opacity: 1 !important;
    color: #dd6b20 !important;
    color: rgba(221, 107, 32, var(--text-opacity)) !important;
  }

  .sm\:cl-text-orange-700 {
    --text-opacity: 1 !important;
    color: #c05621 !important;
    color: rgba(192, 86, 33, var(--text-opacity)) !important;
  }

  .sm\:cl-text-orange-800 {
    --text-opacity: 1 !important;
    color: #9c4221 !important;
    color: rgba(156, 66, 33, var(--text-opacity)) !important;
  }

  .sm\:cl-text-orange-900 {
    --text-opacity: 1 !important;
    color: #7b341e !important;
    color: rgba(123, 52, 30, var(--text-opacity)) !important;
  }

  .sm\:cl-text-yellow-100 {
    --text-opacity: 1 !important;
    color: #fffff0 !important;
    color: rgba(255, 255, 240, var(--text-opacity)) !important;
  }

  .sm\:cl-text-yellow-200 {
    --text-opacity: 1 !important;
    color: #fefcbf !important;
    color: rgba(254, 252, 191, var(--text-opacity)) !important;
  }

  .sm\:cl-text-yellow-300 {
    --text-opacity: 1 !important;
    color: #faf089 !important;
    color: rgba(250, 240, 137, var(--text-opacity)) !important;
  }

  .sm\:cl-text-yellow-400 {
    --text-opacity: 1 !important;
    color: #f6e05e !important;
    color: rgba(246, 224, 94, var(--text-opacity)) !important;
  }

  .sm\:cl-text-yellow-500 {
    --text-opacity: 1 !important;
    color: #ecc94b !important;
    color: rgba(236, 201, 75, var(--text-opacity)) !important;
  }

  .sm\:cl-text-yellow-600 {
    --text-opacity: 1 !important;
    color: #d69e2e !important;
    color: rgba(214, 158, 46, var(--text-opacity)) !important;
  }

  .sm\:cl-text-yellow-700 {
    --text-opacity: 1 !important;
    color: #b7791f !important;
    color: rgba(183, 121, 31, var(--text-opacity)) !important;
  }

  .sm\:cl-text-yellow-800 {
    --text-opacity: 1 !important;
    color: #975a16 !important;
    color: rgba(151, 90, 22, var(--text-opacity)) !important;
  }

  .sm\:cl-text-yellow-900 {
    --text-opacity: 1 !important;
    color: #744210 !important;
    color: rgba(116, 66, 16, var(--text-opacity)) !important;
  }

  .sm\:cl-text-green-100 {
    --text-opacity: 1 !important;
    color: #f0fff4 !important;
    color: rgba(240, 255, 244, var(--text-opacity)) !important;
  }

  .sm\:cl-text-green-200 {
    --text-opacity: 1 !important;
    color: #c6f6d5 !important;
    color: rgba(198, 246, 213, var(--text-opacity)) !important;
  }

  .sm\:cl-text-green-300 {
    --text-opacity: 1 !important;
    color: #9ae6b4 !important;
    color: rgba(154, 230, 180, var(--text-opacity)) !important;
  }

  .sm\:cl-text-green-400 {
    --text-opacity: 1 !important;
    color: #68d391 !important;
    color: rgba(104, 211, 145, var(--text-opacity)) !important;
  }

  .sm\:cl-text-green-500 {
    --text-opacity: 1 !important;
    color: #48bb78 !important;
    color: rgba(72, 187, 120, var(--text-opacity)) !important;
  }

  .sm\:cl-text-green-600 {
    --text-opacity: 1 !important;
    color: #38a169 !important;
    color: rgba(56, 161, 105, var(--text-opacity)) !important;
  }

  .sm\:cl-text-green-700 {
    --text-opacity: 1 !important;
    color: #2f855a !important;
    color: rgba(47, 133, 90, var(--text-opacity)) !important;
  }

  .sm\:cl-text-green-800 {
    --text-opacity: 1 !important;
    color: #276749 !important;
    color: rgba(39, 103, 73, var(--text-opacity)) !important;
  }

  .sm\:cl-text-green-900 {
    --text-opacity: 1 !important;
    color: #22543d !important;
    color: rgba(34, 84, 61, var(--text-opacity)) !important;
  }

  .sm\:cl-text-teal-100 {
    --text-opacity: 1 !important;
    color: #e6fffa !important;
    color: rgba(230, 255, 250, var(--text-opacity)) !important;
  }

  .sm\:cl-text-teal-200 {
    --text-opacity: 1 !important;
    color: #b2f5ea !important;
    color: rgba(178, 245, 234, var(--text-opacity)) !important;
  }

  .sm\:cl-text-teal-300 {
    --text-opacity: 1 !important;
    color: #81e6d9 !important;
    color: rgba(129, 230, 217, var(--text-opacity)) !important;
  }

  .sm\:cl-text-teal-400 {
    --text-opacity: 1 !important;
    color: #4fd1c5 !important;
    color: rgba(79, 209, 197, var(--text-opacity)) !important;
  }

  .sm\:cl-text-teal-500 {
    --text-opacity: 1 !important;
    color: #38b2ac !important;
    color: rgba(56, 178, 172, var(--text-opacity)) !important;
  }

  .sm\:cl-text-teal-600 {
    --text-opacity: 1 !important;
    color: #319795 !important;
    color: rgba(49, 151, 149, var(--text-opacity)) !important;
  }

  .sm\:cl-text-teal-700 {
    --text-opacity: 1 !important;
    color: #2c7a7b !important;
    color: rgba(44, 122, 123, var(--text-opacity)) !important;
  }

  .sm\:cl-text-teal-800 {
    --text-opacity: 1 !important;
    color: #285e61 !important;
    color: rgba(40, 94, 97, var(--text-opacity)) !important;
  }

  .sm\:cl-text-teal-900 {
    --text-opacity: 1 !important;
    color: #234e52 !important;
    color: rgba(35, 78, 82, var(--text-opacity)) !important;
  }

  .sm\:cl-text-blue-100 {
    --text-opacity: 1 !important;
    color: #ebf8ff !important;
    color: rgba(235, 248, 255, var(--text-opacity)) !important;
  }

  .sm\:cl-text-blue-200 {
    --text-opacity: 1 !important;
    color: #bee3f8 !important;
    color: rgba(190, 227, 248, var(--text-opacity)) !important;
  }

  .sm\:cl-text-blue-300 {
    --text-opacity: 1 !important;
    color: #90cdf4 !important;
    color: rgba(144, 205, 244, var(--text-opacity)) !important;
  }

  .sm\:cl-text-blue-400 {
    --text-opacity: 1 !important;
    color: #63b3ed !important;
    color: rgba(99, 179, 237, var(--text-opacity)) !important;
  }

  .sm\:cl-text-blue-500 {
    --text-opacity: 1 !important;
    color: #4299e1 !important;
    color: rgba(66, 153, 225, var(--text-opacity)) !important;
  }

  .sm\:cl-text-blue-600 {
    --text-opacity: 1 !important;
    color: #3182ce !important;
    color: rgba(49, 130, 206, var(--text-opacity)) !important;
  }

  .sm\:cl-text-blue-700 {
    --text-opacity: 1 !important;
    color: #2b6cb0 !important;
    color: rgba(43, 108, 176, var(--text-opacity)) !important;
  }

  .sm\:cl-text-blue-800 {
    --text-opacity: 1 !important;
    color: #2c5282 !important;
    color: rgba(44, 82, 130, var(--text-opacity)) !important;
  }

  .sm\:cl-text-blue-900 {
    --text-opacity: 1 !important;
    color: #2a4365 !important;
    color: rgba(42, 67, 101, var(--text-opacity)) !important;
  }

  .sm\:cl-text-indigo-100 {
    --text-opacity: 1 !important;
    color: #ebf4ff !important;
    color: rgba(235, 244, 255, var(--text-opacity)) !important;
  }

  .sm\:cl-text-indigo-200 {
    --text-opacity: 1 !important;
    color: #c3dafe !important;
    color: rgba(195, 218, 254, var(--text-opacity)) !important;
  }

  .sm\:cl-text-indigo-300 {
    --text-opacity: 1 !important;
    color: #a3bffa !important;
    color: rgba(163, 191, 250, var(--text-opacity)) !important;
  }

  .sm\:cl-text-indigo-400 {
    --text-opacity: 1 !important;
    color: #7f9cf5 !important;
    color: rgba(127, 156, 245, var(--text-opacity)) !important;
  }

  .sm\:cl-text-indigo-500 {
    --text-opacity: 1 !important;
    color: #667eea !important;
    color: rgba(102, 126, 234, var(--text-opacity)) !important;
  }

  .sm\:cl-text-indigo-600 {
    --text-opacity: 1 !important;
    color: #5a67d8 !important;
    color: rgba(90, 103, 216, var(--text-opacity)) !important;
  }

  .sm\:cl-text-indigo-700 {
    --text-opacity: 1 !important;
    color: #4c51bf !important;
    color: rgba(76, 81, 191, var(--text-opacity)) !important;
  }

  .sm\:cl-text-indigo-800 {
    --text-opacity: 1 !important;
    color: #434190 !important;
    color: rgba(67, 65, 144, var(--text-opacity)) !important;
  }

  .sm\:cl-text-indigo-900 {
    --text-opacity: 1 !important;
    color: #3c366b !important;
    color: rgba(60, 54, 107, var(--text-opacity)) !important;
  }

  .sm\:cl-text-purple-100 {
    --text-opacity: 1 !important;
    color: #faf5ff !important;
    color: rgba(250, 245, 255, var(--text-opacity)) !important;
  }

  .sm\:cl-text-purple-200 {
    --text-opacity: 1 !important;
    color: #e9d8fd !important;
    color: rgba(233, 216, 253, var(--text-opacity)) !important;
  }

  .sm\:cl-text-purple-300 {
    --text-opacity: 1 !important;
    color: #d6bcfa !important;
    color: rgba(214, 188, 250, var(--text-opacity)) !important;
  }

  .sm\:cl-text-purple-400 {
    --text-opacity: 1 !important;
    color: #b794f4 !important;
    color: rgba(183, 148, 244, var(--text-opacity)) !important;
  }

  .sm\:cl-text-purple-500 {
    --text-opacity: 1 !important;
    color: #9f7aea !important;
    color: rgba(159, 122, 234, var(--text-opacity)) !important;
  }

  .sm\:cl-text-purple-600 {
    --text-opacity: 1 !important;
    color: #805ad5 !important;
    color: rgba(128, 90, 213, var(--text-opacity)) !important;
  }

  .sm\:cl-text-purple-700 {
    --text-opacity: 1 !important;
    color: #6b46c1 !important;
    color: rgba(107, 70, 193, var(--text-opacity)) !important;
  }

  .sm\:cl-text-purple-800 {
    --text-opacity: 1 !important;
    color: #553c9a !important;
    color: rgba(85, 60, 154, var(--text-opacity)) !important;
  }

  .sm\:cl-text-purple-900 {
    --text-opacity: 1 !important;
    color: #44337a !important;
    color: rgba(68, 51, 122, var(--text-opacity)) !important;
  }

  .sm\:cl-text-pink-100 {
    --text-opacity: 1 !important;
    color: #fff5f7 !important;
    color: rgba(255, 245, 247, var(--text-opacity)) !important;
  }

  .sm\:cl-text-pink-200 {
    --text-opacity: 1 !important;
    color: #fed7e2 !important;
    color: rgba(254, 215, 226, var(--text-opacity)) !important;
  }

  .sm\:cl-text-pink-300 {
    --text-opacity: 1 !important;
    color: #fbb6ce !important;
    color: rgba(251, 182, 206, var(--text-opacity)) !important;
  }

  .sm\:cl-text-pink-400 {
    --text-opacity: 1 !important;
    color: #f687b3 !important;
    color: rgba(246, 135, 179, var(--text-opacity)) !important;
  }

  .sm\:cl-text-pink-500 {
    --text-opacity: 1 !important;
    color: #ed64a6 !important;
    color: rgba(237, 100, 166, var(--text-opacity)) !important;
  }

  .sm\:cl-text-pink-600 {
    --text-opacity: 1 !important;
    color: #d53f8c !important;
    color: rgba(213, 63, 140, var(--text-opacity)) !important;
  }

  .sm\:cl-text-pink-700 {
    --text-opacity: 1 !important;
    color: #b83280 !important;
    color: rgba(184, 50, 128, var(--text-opacity)) !important;
  }

  .sm\:cl-text-pink-800 {
    --text-opacity: 1 !important;
    color: #97266d !important;
    color: rgba(151, 38, 109, var(--text-opacity)) !important;
  }

  .sm\:cl-text-pink-900 {
    --text-opacity: 1 !important;
    color: #702459 !important;
    color: rgba(112, 36, 89, var(--text-opacity)) !important;
  }

  .sm\:cl-text-ui-gray-100 {
    --text-opacity: 1 !important;
    color: #f1f1f1 !important;
    color: rgba(241, 241, 241, var(--text-opacity)) !important;
  }

  .sm\:cl-text-ui-brown-100 {
    --text-opacity: 1 !important;
    color: #f3ecdc !important;
    color: rgba(243, 236, 220, var(--text-opacity)) !important;
  }

  .sm\:cl-text-ui-brown-200 {
    --text-opacity: 1 !important;
    color: #e8e0c9 !important;
    color: rgba(232, 224, 201, var(--text-opacity)) !important;
  }

  .sm\:cl-text-ui-brown-300 {
    --text-opacity: 1 !important;
    color: #d0c095 !important;
    color: rgba(208, 192, 149, var(--text-opacity)) !important;
  }

  .sm\:cl-text-ui-brown-700 {
    --text-opacity: 1 !important;
    color: #bd6005 !important;
    color: rgba(189, 96, 5, var(--text-opacity)) !important;
  }

  .sm\:cl-text-ui-green-300 {
    --text-opacity: 1 !important;
    color: #aac74c !important;
    color: rgba(170, 199, 76, var(--text-opacity)) !important;
  }

  .sm\:cl-text-ui-green-400 {
    --text-opacity: 1 !important;
    color: #71893e !important;
    color: rgba(113, 137, 62, var(--text-opacity)) !important;
  }

  .sm\:cl-text-ui-orange-500 {
    --text-opacity: 1 !important;
    color: #e27212 !important;
    color: rgba(226, 114, 18, var(--text-opacity)) !important;
  }

  .sm\:cl-text-facebook {
    --text-opacity: 1 !important;
    color: #3b5998 !important;
    color: rgba(59, 89, 152, var(--text-opacity)) !important;
  }

  .sm\:cl-text-twitter {
    --text-opacity: 1 !important;
    color: #00acee !important;
    color: rgba(0, 172, 238, var(--text-opacity)) !important;
  }

  .sm\:cl-text-twitch {
    --text-opacity: 1 !important;
    color: #6441a5 !important;
    color: rgba(100, 65, 165, var(--text-opacity)) !important;
  }

  .sm\:cl-text-youtube {
    --text-opacity: 1 !important;
    color: #FF0000 !important;
    color: rgba(255, 0, 0, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-transparent:hover {
    color: transparent !important;
  }

  .sm\:hover\:cl-text-current:hover {
    color: currentColor !important;
  }

  .sm\:hover\:cl-text-black:hover {
    --text-opacity: 1 !important;
    color: #000 !important;
    color: rgba(0, 0, 0, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-white:hover {
    --text-opacity: 1 !important;
    color: #fff !important;
    color: rgba(255, 255, 255, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-gray-100:hover {
    --text-opacity: 1 !important;
    color: #f7fafc !important;
    color: rgba(247, 250, 252, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-gray-200:hover {
    --text-opacity: 1 !important;
    color: #edf2f7 !important;
    color: rgba(237, 242, 247, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-gray-300:hover {
    --text-opacity: 1 !important;
    color: #e2e8f0 !important;
    color: rgba(226, 232, 240, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-gray-400:hover {
    --text-opacity: 1 !important;
    color: #cbd5e0 !important;
    color: rgba(203, 213, 224, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-gray-500:hover {
    --text-opacity: 1 !important;
    color: #a0aec0 !important;
    color: rgba(160, 174, 192, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-gray-600:hover {
    --text-opacity: 1 !important;
    color: #718096 !important;
    color: rgba(113, 128, 150, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-gray-700:hover {
    --text-opacity: 1 !important;
    color: #4a5568 !important;
    color: rgba(74, 85, 104, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-gray-800:hover {
    --text-opacity: 1 !important;
    color: #2d3748 !important;
    color: rgba(45, 55, 72, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-gray-900:hover {
    --text-opacity: 1 !important;
    color: #1a202c !important;
    color: rgba(26, 32, 44, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-red-100:hover {
    --text-opacity: 1 !important;
    color: #fff5f5 !important;
    color: rgba(255, 245, 245, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-red-200:hover {
    --text-opacity: 1 !important;
    color: #fed7d7 !important;
    color: rgba(254, 215, 215, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-red-300:hover {
    --text-opacity: 1 !important;
    color: #feb2b2 !important;
    color: rgba(254, 178, 178, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-red-400:hover {
    --text-opacity: 1 !important;
    color: #fc8181 !important;
    color: rgba(252, 129, 129, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-red-500:hover {
    --text-opacity: 1 !important;
    color: #f56565 !important;
    color: rgba(245, 101, 101, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-red-600:hover {
    --text-opacity: 1 !important;
    color: #e53e3e !important;
    color: rgba(229, 62, 62, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-red-700:hover {
    --text-opacity: 1 !important;
    color: #c53030 !important;
    color: rgba(197, 48, 48, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-red-800:hover {
    --text-opacity: 1 !important;
    color: #9b2c2c !important;
    color: rgba(155, 44, 44, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-red-900:hover {
    --text-opacity: 1 !important;
    color: #742a2a !important;
    color: rgba(116, 42, 42, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-orange-100:hover {
    --text-opacity: 1 !important;
    color: #fffaf0 !important;
    color: rgba(255, 250, 240, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-orange-200:hover {
    --text-opacity: 1 !important;
    color: #feebc8 !important;
    color: rgba(254, 235, 200, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-orange-300:hover {
    --text-opacity: 1 !important;
    color: #fbd38d !important;
    color: rgba(251, 211, 141, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-orange-400:hover {
    --text-opacity: 1 !important;
    color: #f6ad55 !important;
    color: rgba(246, 173, 85, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-orange-500:hover {
    --text-opacity: 1 !important;
    color: #ed8936 !important;
    color: rgba(237, 137, 54, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-orange-600:hover {
    --text-opacity: 1 !important;
    color: #dd6b20 !important;
    color: rgba(221, 107, 32, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-orange-700:hover {
    --text-opacity: 1 !important;
    color: #c05621 !important;
    color: rgba(192, 86, 33, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-orange-800:hover {
    --text-opacity: 1 !important;
    color: #9c4221 !important;
    color: rgba(156, 66, 33, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-orange-900:hover {
    --text-opacity: 1 !important;
    color: #7b341e !important;
    color: rgba(123, 52, 30, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-yellow-100:hover {
    --text-opacity: 1 !important;
    color: #fffff0 !important;
    color: rgba(255, 255, 240, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-yellow-200:hover {
    --text-opacity: 1 !important;
    color: #fefcbf !important;
    color: rgba(254, 252, 191, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-yellow-300:hover {
    --text-opacity: 1 !important;
    color: #faf089 !important;
    color: rgba(250, 240, 137, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-yellow-400:hover {
    --text-opacity: 1 !important;
    color: #f6e05e !important;
    color: rgba(246, 224, 94, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-yellow-500:hover {
    --text-opacity: 1 !important;
    color: #ecc94b !important;
    color: rgba(236, 201, 75, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-yellow-600:hover {
    --text-opacity: 1 !important;
    color: #d69e2e !important;
    color: rgba(214, 158, 46, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-yellow-700:hover {
    --text-opacity: 1 !important;
    color: #b7791f !important;
    color: rgba(183, 121, 31, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-yellow-800:hover {
    --text-opacity: 1 !important;
    color: #975a16 !important;
    color: rgba(151, 90, 22, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-yellow-900:hover {
    --text-opacity: 1 !important;
    color: #744210 !important;
    color: rgba(116, 66, 16, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-green-100:hover {
    --text-opacity: 1 !important;
    color: #f0fff4 !important;
    color: rgba(240, 255, 244, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-green-200:hover {
    --text-opacity: 1 !important;
    color: #c6f6d5 !important;
    color: rgba(198, 246, 213, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-green-300:hover {
    --text-opacity: 1 !important;
    color: #9ae6b4 !important;
    color: rgba(154, 230, 180, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-green-400:hover {
    --text-opacity: 1 !important;
    color: #68d391 !important;
    color: rgba(104, 211, 145, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-green-500:hover {
    --text-opacity: 1 !important;
    color: #48bb78 !important;
    color: rgba(72, 187, 120, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-green-600:hover {
    --text-opacity: 1 !important;
    color: #38a169 !important;
    color: rgba(56, 161, 105, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-green-700:hover {
    --text-opacity: 1 !important;
    color: #2f855a !important;
    color: rgba(47, 133, 90, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-green-800:hover {
    --text-opacity: 1 !important;
    color: #276749 !important;
    color: rgba(39, 103, 73, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-green-900:hover {
    --text-opacity: 1 !important;
    color: #22543d !important;
    color: rgba(34, 84, 61, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-teal-100:hover {
    --text-opacity: 1 !important;
    color: #e6fffa !important;
    color: rgba(230, 255, 250, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-teal-200:hover {
    --text-opacity: 1 !important;
    color: #b2f5ea !important;
    color: rgba(178, 245, 234, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-teal-300:hover {
    --text-opacity: 1 !important;
    color: #81e6d9 !important;
    color: rgba(129, 230, 217, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-teal-400:hover {
    --text-opacity: 1 !important;
    color: #4fd1c5 !important;
    color: rgba(79, 209, 197, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-teal-500:hover {
    --text-opacity: 1 !important;
    color: #38b2ac !important;
    color: rgba(56, 178, 172, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-teal-600:hover {
    --text-opacity: 1 !important;
    color: #319795 !important;
    color: rgba(49, 151, 149, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-teal-700:hover {
    --text-opacity: 1 !important;
    color: #2c7a7b !important;
    color: rgba(44, 122, 123, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-teal-800:hover {
    --text-opacity: 1 !important;
    color: #285e61 !important;
    color: rgba(40, 94, 97, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-teal-900:hover {
    --text-opacity: 1 !important;
    color: #234e52 !important;
    color: rgba(35, 78, 82, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-blue-100:hover {
    --text-opacity: 1 !important;
    color: #ebf8ff !important;
    color: rgba(235, 248, 255, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-blue-200:hover {
    --text-opacity: 1 !important;
    color: #bee3f8 !important;
    color: rgba(190, 227, 248, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-blue-300:hover {
    --text-opacity: 1 !important;
    color: #90cdf4 !important;
    color: rgba(144, 205, 244, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-blue-400:hover {
    --text-opacity: 1 !important;
    color: #63b3ed !important;
    color: rgba(99, 179, 237, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-blue-500:hover {
    --text-opacity: 1 !important;
    color: #4299e1 !important;
    color: rgba(66, 153, 225, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-blue-600:hover {
    --text-opacity: 1 !important;
    color: #3182ce !important;
    color: rgba(49, 130, 206, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-blue-700:hover {
    --text-opacity: 1 !important;
    color: #2b6cb0 !important;
    color: rgba(43, 108, 176, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-blue-800:hover {
    --text-opacity: 1 !important;
    color: #2c5282 !important;
    color: rgba(44, 82, 130, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-blue-900:hover {
    --text-opacity: 1 !important;
    color: #2a4365 !important;
    color: rgba(42, 67, 101, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-indigo-100:hover {
    --text-opacity: 1 !important;
    color: #ebf4ff !important;
    color: rgba(235, 244, 255, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-indigo-200:hover {
    --text-opacity: 1 !important;
    color: #c3dafe !important;
    color: rgba(195, 218, 254, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-indigo-300:hover {
    --text-opacity: 1 !important;
    color: #a3bffa !important;
    color: rgba(163, 191, 250, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-indigo-400:hover {
    --text-opacity: 1 !important;
    color: #7f9cf5 !important;
    color: rgba(127, 156, 245, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-indigo-500:hover {
    --text-opacity: 1 !important;
    color: #667eea !important;
    color: rgba(102, 126, 234, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-indigo-600:hover {
    --text-opacity: 1 !important;
    color: #5a67d8 !important;
    color: rgba(90, 103, 216, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-indigo-700:hover {
    --text-opacity: 1 !important;
    color: #4c51bf !important;
    color: rgba(76, 81, 191, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-indigo-800:hover {
    --text-opacity: 1 !important;
    color: #434190 !important;
    color: rgba(67, 65, 144, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-indigo-900:hover {
    --text-opacity: 1 !important;
    color: #3c366b !important;
    color: rgba(60, 54, 107, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-purple-100:hover {
    --text-opacity: 1 !important;
    color: #faf5ff !important;
    color: rgba(250, 245, 255, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-purple-200:hover {
    --text-opacity: 1 !important;
    color: #e9d8fd !important;
    color: rgba(233, 216, 253, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-purple-300:hover {
    --text-opacity: 1 !important;
    color: #d6bcfa !important;
    color: rgba(214, 188, 250, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-purple-400:hover {
    --text-opacity: 1 !important;
    color: #b794f4 !important;
    color: rgba(183, 148, 244, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-purple-500:hover {
    --text-opacity: 1 !important;
    color: #9f7aea !important;
    color: rgba(159, 122, 234, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-purple-600:hover {
    --text-opacity: 1 !important;
    color: #805ad5 !important;
    color: rgba(128, 90, 213, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-purple-700:hover {
    --text-opacity: 1 !important;
    color: #6b46c1 !important;
    color: rgba(107, 70, 193, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-purple-800:hover {
    --text-opacity: 1 !important;
    color: #553c9a !important;
    color: rgba(85, 60, 154, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-purple-900:hover {
    --text-opacity: 1 !important;
    color: #44337a !important;
    color: rgba(68, 51, 122, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-pink-100:hover {
    --text-opacity: 1 !important;
    color: #fff5f7 !important;
    color: rgba(255, 245, 247, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-pink-200:hover {
    --text-opacity: 1 !important;
    color: #fed7e2 !important;
    color: rgba(254, 215, 226, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-pink-300:hover {
    --text-opacity: 1 !important;
    color: #fbb6ce !important;
    color: rgba(251, 182, 206, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-pink-400:hover {
    --text-opacity: 1 !important;
    color: #f687b3 !important;
    color: rgba(246, 135, 179, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-pink-500:hover {
    --text-opacity: 1 !important;
    color: #ed64a6 !important;
    color: rgba(237, 100, 166, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-pink-600:hover {
    --text-opacity: 1 !important;
    color: #d53f8c !important;
    color: rgba(213, 63, 140, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-pink-700:hover {
    --text-opacity: 1 !important;
    color: #b83280 !important;
    color: rgba(184, 50, 128, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-pink-800:hover {
    --text-opacity: 1 !important;
    color: #97266d !important;
    color: rgba(151, 38, 109, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-pink-900:hover {
    --text-opacity: 1 !important;
    color: #702459 !important;
    color: rgba(112, 36, 89, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-ui-gray-100:hover {
    --text-opacity: 1 !important;
    color: #f1f1f1 !important;
    color: rgba(241, 241, 241, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-ui-brown-100:hover {
    --text-opacity: 1 !important;
    color: #f3ecdc !important;
    color: rgba(243, 236, 220, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-ui-brown-200:hover {
    --text-opacity: 1 !important;
    color: #e8e0c9 !important;
    color: rgba(232, 224, 201, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-ui-brown-300:hover {
    --text-opacity: 1 !important;
    color: #d0c095 !important;
    color: rgba(208, 192, 149, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-ui-brown-700:hover {
    --text-opacity: 1 !important;
    color: #bd6005 !important;
    color: rgba(189, 96, 5, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-ui-green-300:hover {
    --text-opacity: 1 !important;
    color: #aac74c !important;
    color: rgba(170, 199, 76, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-ui-green-400:hover {
    --text-opacity: 1 !important;
    color: #71893e !important;
    color: rgba(113, 137, 62, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-ui-orange-500:hover {
    --text-opacity: 1 !important;
    color: #e27212 !important;
    color: rgba(226, 114, 18, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-facebook:hover {
    --text-opacity: 1 !important;
    color: #3b5998 !important;
    color: rgba(59, 89, 152, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-twitter:hover {
    --text-opacity: 1 !important;
    color: #00acee !important;
    color: rgba(0, 172, 238, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-twitch:hover {
    --text-opacity: 1 !important;
    color: #6441a5 !important;
    color: rgba(100, 65, 165, var(--text-opacity)) !important;
  }

  .sm\:hover\:cl-text-youtube:hover {
    --text-opacity: 1 !important;
    color: #FF0000 !important;
    color: rgba(255, 0, 0, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-transparent:focus {
    color: transparent !important;
  }

  .sm\:focus\:cl-text-current:focus {
    color: currentColor !important;
  }

  .sm\:focus\:cl-text-black:focus {
    --text-opacity: 1 !important;
    color: #000 !important;
    color: rgba(0, 0, 0, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-white:focus {
    --text-opacity: 1 !important;
    color: #fff !important;
    color: rgba(255, 255, 255, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-gray-100:focus {
    --text-opacity: 1 !important;
    color: #f7fafc !important;
    color: rgba(247, 250, 252, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-gray-200:focus {
    --text-opacity: 1 !important;
    color: #edf2f7 !important;
    color: rgba(237, 242, 247, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-gray-300:focus {
    --text-opacity: 1 !important;
    color: #e2e8f0 !important;
    color: rgba(226, 232, 240, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-gray-400:focus {
    --text-opacity: 1 !important;
    color: #cbd5e0 !important;
    color: rgba(203, 213, 224, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-gray-500:focus {
    --text-opacity: 1 !important;
    color: #a0aec0 !important;
    color: rgba(160, 174, 192, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-gray-600:focus {
    --text-opacity: 1 !important;
    color: #718096 !important;
    color: rgba(113, 128, 150, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-gray-700:focus {
    --text-opacity: 1 !important;
    color: #4a5568 !important;
    color: rgba(74, 85, 104, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-gray-800:focus {
    --text-opacity: 1 !important;
    color: #2d3748 !important;
    color: rgba(45, 55, 72, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-gray-900:focus {
    --text-opacity: 1 !important;
    color: #1a202c !important;
    color: rgba(26, 32, 44, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-red-100:focus {
    --text-opacity: 1 !important;
    color: #fff5f5 !important;
    color: rgba(255, 245, 245, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-red-200:focus {
    --text-opacity: 1 !important;
    color: #fed7d7 !important;
    color: rgba(254, 215, 215, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-red-300:focus {
    --text-opacity: 1 !important;
    color: #feb2b2 !important;
    color: rgba(254, 178, 178, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-red-400:focus {
    --text-opacity: 1 !important;
    color: #fc8181 !important;
    color: rgba(252, 129, 129, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-red-500:focus {
    --text-opacity: 1 !important;
    color: #f56565 !important;
    color: rgba(245, 101, 101, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-red-600:focus {
    --text-opacity: 1 !important;
    color: #e53e3e !important;
    color: rgba(229, 62, 62, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-red-700:focus {
    --text-opacity: 1 !important;
    color: #c53030 !important;
    color: rgba(197, 48, 48, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-red-800:focus {
    --text-opacity: 1 !important;
    color: #9b2c2c !important;
    color: rgba(155, 44, 44, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-red-900:focus {
    --text-opacity: 1 !important;
    color: #742a2a !important;
    color: rgba(116, 42, 42, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-orange-100:focus {
    --text-opacity: 1 !important;
    color: #fffaf0 !important;
    color: rgba(255, 250, 240, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-orange-200:focus {
    --text-opacity: 1 !important;
    color: #feebc8 !important;
    color: rgba(254, 235, 200, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-orange-300:focus {
    --text-opacity: 1 !important;
    color: #fbd38d !important;
    color: rgba(251, 211, 141, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-orange-400:focus {
    --text-opacity: 1 !important;
    color: #f6ad55 !important;
    color: rgba(246, 173, 85, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-orange-500:focus {
    --text-opacity: 1 !important;
    color: #ed8936 !important;
    color: rgba(237, 137, 54, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-orange-600:focus {
    --text-opacity: 1 !important;
    color: #dd6b20 !important;
    color: rgba(221, 107, 32, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-orange-700:focus {
    --text-opacity: 1 !important;
    color: #c05621 !important;
    color: rgba(192, 86, 33, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-orange-800:focus {
    --text-opacity: 1 !important;
    color: #9c4221 !important;
    color: rgba(156, 66, 33, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-orange-900:focus {
    --text-opacity: 1 !important;
    color: #7b341e !important;
    color: rgba(123, 52, 30, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-yellow-100:focus {
    --text-opacity: 1 !important;
    color: #fffff0 !important;
    color: rgba(255, 255, 240, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-yellow-200:focus {
    --text-opacity: 1 !important;
    color: #fefcbf !important;
    color: rgba(254, 252, 191, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-yellow-300:focus {
    --text-opacity: 1 !important;
    color: #faf089 !important;
    color: rgba(250, 240, 137, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-yellow-400:focus {
    --text-opacity: 1 !important;
    color: #f6e05e !important;
    color: rgba(246, 224, 94, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-yellow-500:focus {
    --text-opacity: 1 !important;
    color: #ecc94b !important;
    color: rgba(236, 201, 75, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-yellow-600:focus {
    --text-opacity: 1 !important;
    color: #d69e2e !important;
    color: rgba(214, 158, 46, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-yellow-700:focus {
    --text-opacity: 1 !important;
    color: #b7791f !important;
    color: rgba(183, 121, 31, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-yellow-800:focus {
    --text-opacity: 1 !important;
    color: #975a16 !important;
    color: rgba(151, 90, 22, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-yellow-900:focus {
    --text-opacity: 1 !important;
    color: #744210 !important;
    color: rgba(116, 66, 16, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-green-100:focus {
    --text-opacity: 1 !important;
    color: #f0fff4 !important;
    color: rgba(240, 255, 244, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-green-200:focus {
    --text-opacity: 1 !important;
    color: #c6f6d5 !important;
    color: rgba(198, 246, 213, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-green-300:focus {
    --text-opacity: 1 !important;
    color: #9ae6b4 !important;
    color: rgba(154, 230, 180, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-green-400:focus {
    --text-opacity: 1 !important;
    color: #68d391 !important;
    color: rgba(104, 211, 145, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-green-500:focus {
    --text-opacity: 1 !important;
    color: #48bb78 !important;
    color: rgba(72, 187, 120, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-green-600:focus {
    --text-opacity: 1 !important;
    color: #38a169 !important;
    color: rgba(56, 161, 105, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-green-700:focus {
    --text-opacity: 1 !important;
    color: #2f855a !important;
    color: rgba(47, 133, 90, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-green-800:focus {
    --text-opacity: 1 !important;
    color: #276749 !important;
    color: rgba(39, 103, 73, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-green-900:focus {
    --text-opacity: 1 !important;
    color: #22543d !important;
    color: rgba(34, 84, 61, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-teal-100:focus {
    --text-opacity: 1 !important;
    color: #e6fffa !important;
    color: rgba(230, 255, 250, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-teal-200:focus {
    --text-opacity: 1 !important;
    color: #b2f5ea !important;
    color: rgba(178, 245, 234, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-teal-300:focus {
    --text-opacity: 1 !important;
    color: #81e6d9 !important;
    color: rgba(129, 230, 217, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-teal-400:focus {
    --text-opacity: 1 !important;
    color: #4fd1c5 !important;
    color: rgba(79, 209, 197, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-teal-500:focus {
    --text-opacity: 1 !important;
    color: #38b2ac !important;
    color: rgba(56, 178, 172, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-teal-600:focus {
    --text-opacity: 1 !important;
    color: #319795 !important;
    color: rgba(49, 151, 149, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-teal-700:focus {
    --text-opacity: 1 !important;
    color: #2c7a7b !important;
    color: rgba(44, 122, 123, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-teal-800:focus {
    --text-opacity: 1 !important;
    color: #285e61 !important;
    color: rgba(40, 94, 97, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-teal-900:focus {
    --text-opacity: 1 !important;
    color: #234e52 !important;
    color: rgba(35, 78, 82, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-blue-100:focus {
    --text-opacity: 1 !important;
    color: #ebf8ff !important;
    color: rgba(235, 248, 255, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-blue-200:focus {
    --text-opacity: 1 !important;
    color: #bee3f8 !important;
    color: rgba(190, 227, 248, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-blue-300:focus {
    --text-opacity: 1 !important;
    color: #90cdf4 !important;
    color: rgba(144, 205, 244, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-blue-400:focus {
    --text-opacity: 1 !important;
    color: #63b3ed !important;
    color: rgba(99, 179, 237, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-blue-500:focus {
    --text-opacity: 1 !important;
    color: #4299e1 !important;
    color: rgba(66, 153, 225, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-blue-600:focus {
    --text-opacity: 1 !important;
    color: #3182ce !important;
    color: rgba(49, 130, 206, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-blue-700:focus {
    --text-opacity: 1 !important;
    color: #2b6cb0 !important;
    color: rgba(43, 108, 176, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-blue-800:focus {
    --text-opacity: 1 !important;
    color: #2c5282 !important;
    color: rgba(44, 82, 130, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-blue-900:focus {
    --text-opacity: 1 !important;
    color: #2a4365 !important;
    color: rgba(42, 67, 101, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-indigo-100:focus {
    --text-opacity: 1 !important;
    color: #ebf4ff !important;
    color: rgba(235, 244, 255, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-indigo-200:focus {
    --text-opacity: 1 !important;
    color: #c3dafe !important;
    color: rgba(195, 218, 254, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-indigo-300:focus {
    --text-opacity: 1 !important;
    color: #a3bffa !important;
    color: rgba(163, 191, 250, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-indigo-400:focus {
    --text-opacity: 1 !important;
    color: #7f9cf5 !important;
    color: rgba(127, 156, 245, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-indigo-500:focus {
    --text-opacity: 1 !important;
    color: #667eea !important;
    color: rgba(102, 126, 234, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-indigo-600:focus {
    --text-opacity: 1 !important;
    color: #5a67d8 !important;
    color: rgba(90, 103, 216, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-indigo-700:focus {
    --text-opacity: 1 !important;
    color: #4c51bf !important;
    color: rgba(76, 81, 191, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-indigo-800:focus {
    --text-opacity: 1 !important;
    color: #434190 !important;
    color: rgba(67, 65, 144, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-indigo-900:focus {
    --text-opacity: 1 !important;
    color: #3c366b !important;
    color: rgba(60, 54, 107, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-purple-100:focus {
    --text-opacity: 1 !important;
    color: #faf5ff !important;
    color: rgba(250, 245, 255, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-purple-200:focus {
    --text-opacity: 1 !important;
    color: #e9d8fd !important;
    color: rgba(233, 216, 253, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-purple-300:focus {
    --text-opacity: 1 !important;
    color: #d6bcfa !important;
    color: rgba(214, 188, 250, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-purple-400:focus {
    --text-opacity: 1 !important;
    color: #b794f4 !important;
    color: rgba(183, 148, 244, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-purple-500:focus {
    --text-opacity: 1 !important;
    color: #9f7aea !important;
    color: rgba(159, 122, 234, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-purple-600:focus {
    --text-opacity: 1 !important;
    color: #805ad5 !important;
    color: rgba(128, 90, 213, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-purple-700:focus {
    --text-opacity: 1 !important;
    color: #6b46c1 !important;
    color: rgba(107, 70, 193, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-purple-800:focus {
    --text-opacity: 1 !important;
    color: #553c9a !important;
    color: rgba(85, 60, 154, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-purple-900:focus {
    --text-opacity: 1 !important;
    color: #44337a !important;
    color: rgba(68, 51, 122, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-pink-100:focus {
    --text-opacity: 1 !important;
    color: #fff5f7 !important;
    color: rgba(255, 245, 247, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-pink-200:focus {
    --text-opacity: 1 !important;
    color: #fed7e2 !important;
    color: rgba(254, 215, 226, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-pink-300:focus {
    --text-opacity: 1 !important;
    color: #fbb6ce !important;
    color: rgba(251, 182, 206, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-pink-400:focus {
    --text-opacity: 1 !important;
    color: #f687b3 !important;
    color: rgba(246, 135, 179, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-pink-500:focus {
    --text-opacity: 1 !important;
    color: #ed64a6 !important;
    color: rgba(237, 100, 166, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-pink-600:focus {
    --text-opacity: 1 !important;
    color: #d53f8c !important;
    color: rgba(213, 63, 140, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-pink-700:focus {
    --text-opacity: 1 !important;
    color: #b83280 !important;
    color: rgba(184, 50, 128, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-pink-800:focus {
    --text-opacity: 1 !important;
    color: #97266d !important;
    color: rgba(151, 38, 109, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-pink-900:focus {
    --text-opacity: 1 !important;
    color: #702459 !important;
    color: rgba(112, 36, 89, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-ui-gray-100:focus {
    --text-opacity: 1 !important;
    color: #f1f1f1 !important;
    color: rgba(241, 241, 241, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-ui-brown-100:focus {
    --text-opacity: 1 !important;
    color: #f3ecdc !important;
    color: rgba(243, 236, 220, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-ui-brown-200:focus {
    --text-opacity: 1 !important;
    color: #e8e0c9 !important;
    color: rgba(232, 224, 201, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-ui-brown-300:focus {
    --text-opacity: 1 !important;
    color: #d0c095 !important;
    color: rgba(208, 192, 149, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-ui-brown-700:focus {
    --text-opacity: 1 !important;
    color: #bd6005 !important;
    color: rgba(189, 96, 5, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-ui-green-300:focus {
    --text-opacity: 1 !important;
    color: #aac74c !important;
    color: rgba(170, 199, 76, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-ui-green-400:focus {
    --text-opacity: 1 !important;
    color: #71893e !important;
    color: rgba(113, 137, 62, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-ui-orange-500:focus {
    --text-opacity: 1 !important;
    color: #e27212 !important;
    color: rgba(226, 114, 18, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-facebook:focus {
    --text-opacity: 1 !important;
    color: #3b5998 !important;
    color: rgba(59, 89, 152, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-twitter:focus {
    --text-opacity: 1 !important;
    color: #00acee !important;
    color: rgba(0, 172, 238, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-twitch:focus {
    --text-opacity: 1 !important;
    color: #6441a5 !important;
    color: rgba(100, 65, 165, var(--text-opacity)) !important;
  }

  .sm\:focus\:cl-text-youtube:focus {
    --text-opacity: 1 !important;
    color: #FF0000 !important;
    color: rgba(255, 0, 0, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-transparent {
    color: transparent !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-current {
    color: currentColor !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-black {
    --text-opacity: 1 !important;
    color: #000 !important;
    color: rgba(0, 0, 0, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-white {
    --text-opacity: 1 !important;
    color: #fff !important;
    color: rgba(255, 255, 255, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-gray-100 {
    --text-opacity: 1 !important;
    color: #f7fafc !important;
    color: rgba(247, 250, 252, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-gray-200 {
    --text-opacity: 1 !important;
    color: #edf2f7 !important;
    color: rgba(237, 242, 247, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-gray-300 {
    --text-opacity: 1 !important;
    color: #e2e8f0 !important;
    color: rgba(226, 232, 240, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-gray-400 {
    --text-opacity: 1 !important;
    color: #cbd5e0 !important;
    color: rgba(203, 213, 224, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-gray-500 {
    --text-opacity: 1 !important;
    color: #a0aec0 !important;
    color: rgba(160, 174, 192, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-gray-600 {
    --text-opacity: 1 !important;
    color: #718096 !important;
    color: rgba(113, 128, 150, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-gray-700 {
    --text-opacity: 1 !important;
    color: #4a5568 !important;
    color: rgba(74, 85, 104, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-gray-800 {
    --text-opacity: 1 !important;
    color: #2d3748 !important;
    color: rgba(45, 55, 72, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-gray-900 {
    --text-opacity: 1 !important;
    color: #1a202c !important;
    color: rgba(26, 32, 44, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-red-100 {
    --text-opacity: 1 !important;
    color: #fff5f5 !important;
    color: rgba(255, 245, 245, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-red-200 {
    --text-opacity: 1 !important;
    color: #fed7d7 !important;
    color: rgba(254, 215, 215, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-red-300 {
    --text-opacity: 1 !important;
    color: #feb2b2 !important;
    color: rgba(254, 178, 178, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-red-400 {
    --text-opacity: 1 !important;
    color: #fc8181 !important;
    color: rgba(252, 129, 129, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-red-500 {
    --text-opacity: 1 !important;
    color: #f56565 !important;
    color: rgba(245, 101, 101, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-red-600 {
    --text-opacity: 1 !important;
    color: #e53e3e !important;
    color: rgba(229, 62, 62, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-red-700 {
    --text-opacity: 1 !important;
    color: #c53030 !important;
    color: rgba(197, 48, 48, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-red-800 {
    --text-opacity: 1 !important;
    color: #9b2c2c !important;
    color: rgba(155, 44, 44, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-red-900 {
    --text-opacity: 1 !important;
    color: #742a2a !important;
    color: rgba(116, 42, 42, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-orange-100 {
    --text-opacity: 1 !important;
    color: #fffaf0 !important;
    color: rgba(255, 250, 240, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-orange-200 {
    --text-opacity: 1 !important;
    color: #feebc8 !important;
    color: rgba(254, 235, 200, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-orange-300 {
    --text-opacity: 1 !important;
    color: #fbd38d !important;
    color: rgba(251, 211, 141, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-orange-400 {
    --text-opacity: 1 !important;
    color: #f6ad55 !important;
    color: rgba(246, 173, 85, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-orange-500 {
    --text-opacity: 1 !important;
    color: #ed8936 !important;
    color: rgba(237, 137, 54, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-orange-600 {
    --text-opacity: 1 !important;
    color: #dd6b20 !important;
    color: rgba(221, 107, 32, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-orange-700 {
    --text-opacity: 1 !important;
    color: #c05621 !important;
    color: rgba(192, 86, 33, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-orange-800 {
    --text-opacity: 1 !important;
    color: #9c4221 !important;
    color: rgba(156, 66, 33, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-orange-900 {
    --text-opacity: 1 !important;
    color: #7b341e !important;
    color: rgba(123, 52, 30, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-yellow-100 {
    --text-opacity: 1 !important;
    color: #fffff0 !important;
    color: rgba(255, 255, 240, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-yellow-200 {
    --text-opacity: 1 !important;
    color: #fefcbf !important;
    color: rgba(254, 252, 191, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-yellow-300 {
    --text-opacity: 1 !important;
    color: #faf089 !important;
    color: rgba(250, 240, 137, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-yellow-400 {
    --text-opacity: 1 !important;
    color: #f6e05e !important;
    color: rgba(246, 224, 94, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-yellow-500 {
    --text-opacity: 1 !important;
    color: #ecc94b !important;
    color: rgba(236, 201, 75, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-yellow-600 {
    --text-opacity: 1 !important;
    color: #d69e2e !important;
    color: rgba(214, 158, 46, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-yellow-700 {
    --text-opacity: 1 !important;
    color: #b7791f !important;
    color: rgba(183, 121, 31, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-yellow-800 {
    --text-opacity: 1 !important;
    color: #975a16 !important;
    color: rgba(151, 90, 22, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-yellow-900 {
    --text-opacity: 1 !important;
    color: #744210 !important;
    color: rgba(116, 66, 16, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-green-100 {
    --text-opacity: 1 !important;
    color: #f0fff4 !important;
    color: rgba(240, 255, 244, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-green-200 {
    --text-opacity: 1 !important;
    color: #c6f6d5 !important;
    color: rgba(198, 246, 213, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-green-300 {
    --text-opacity: 1 !important;
    color: #9ae6b4 !important;
    color: rgba(154, 230, 180, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-green-400 {
    --text-opacity: 1 !important;
    color: #68d391 !important;
    color: rgba(104, 211, 145, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-green-500 {
    --text-opacity: 1 !important;
    color: #48bb78 !important;
    color: rgba(72, 187, 120, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-green-600 {
    --text-opacity: 1 !important;
    color: #38a169 !important;
    color: rgba(56, 161, 105, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-green-700 {
    --text-opacity: 1 !important;
    color: #2f855a !important;
    color: rgba(47, 133, 90, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-green-800 {
    --text-opacity: 1 !important;
    color: #276749 !important;
    color: rgba(39, 103, 73, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-green-900 {
    --text-opacity: 1 !important;
    color: #22543d !important;
    color: rgba(34, 84, 61, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-teal-100 {
    --text-opacity: 1 !important;
    color: #e6fffa !important;
    color: rgba(230, 255, 250, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-teal-200 {
    --text-opacity: 1 !important;
    color: #b2f5ea !important;
    color: rgba(178, 245, 234, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-teal-300 {
    --text-opacity: 1 !important;
    color: #81e6d9 !important;
    color: rgba(129, 230, 217, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-teal-400 {
    --text-opacity: 1 !important;
    color: #4fd1c5 !important;
    color: rgba(79, 209, 197, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-teal-500 {
    --text-opacity: 1 !important;
    color: #38b2ac !important;
    color: rgba(56, 178, 172, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-teal-600 {
    --text-opacity: 1 !important;
    color: #319795 !important;
    color: rgba(49, 151, 149, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-teal-700 {
    --text-opacity: 1 !important;
    color: #2c7a7b !important;
    color: rgba(44, 122, 123, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-teal-800 {
    --text-opacity: 1 !important;
    color: #285e61 !important;
    color: rgba(40, 94, 97, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-teal-900 {
    --text-opacity: 1 !important;
    color: #234e52 !important;
    color: rgba(35, 78, 82, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-blue-100 {
    --text-opacity: 1 !important;
    color: #ebf8ff !important;
    color: rgba(235, 248, 255, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-blue-200 {
    --text-opacity: 1 !important;
    color: #bee3f8 !important;
    color: rgba(190, 227, 248, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-blue-300 {
    --text-opacity: 1 !important;
    color: #90cdf4 !important;
    color: rgba(144, 205, 244, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-blue-400 {
    --text-opacity: 1 !important;
    color: #63b3ed !important;
    color: rgba(99, 179, 237, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-blue-500 {
    --text-opacity: 1 !important;
    color: #4299e1 !important;
    color: rgba(66, 153, 225, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-blue-600 {
    --text-opacity: 1 !important;
    color: #3182ce !important;
    color: rgba(49, 130, 206, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-blue-700 {
    --text-opacity: 1 !important;
    color: #2b6cb0 !important;
    color: rgba(43, 108, 176, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-blue-800 {
    --text-opacity: 1 !important;
    color: #2c5282 !important;
    color: rgba(44, 82, 130, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-blue-900 {
    --text-opacity: 1 !important;
    color: #2a4365 !important;
    color: rgba(42, 67, 101, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-indigo-100 {
    --text-opacity: 1 !important;
    color: #ebf4ff !important;
    color: rgba(235, 244, 255, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-indigo-200 {
    --text-opacity: 1 !important;
    color: #c3dafe !important;
    color: rgba(195, 218, 254, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-indigo-300 {
    --text-opacity: 1 !important;
    color: #a3bffa !important;
    color: rgba(163, 191, 250, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-indigo-400 {
    --text-opacity: 1 !important;
    color: #7f9cf5 !important;
    color: rgba(127, 156, 245, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-indigo-500 {
    --text-opacity: 1 !important;
    color: #667eea !important;
    color: rgba(102, 126, 234, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-indigo-600 {
    --text-opacity: 1 !important;
    color: #5a67d8 !important;
    color: rgba(90, 103, 216, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-indigo-700 {
    --text-opacity: 1 !important;
    color: #4c51bf !important;
    color: rgba(76, 81, 191, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-indigo-800 {
    --text-opacity: 1 !important;
    color: #434190 !important;
    color: rgba(67, 65, 144, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-indigo-900 {
    --text-opacity: 1 !important;
    color: #3c366b !important;
    color: rgba(60, 54, 107, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-purple-100 {
    --text-opacity: 1 !important;
    color: #faf5ff !important;
    color: rgba(250, 245, 255, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-purple-200 {
    --text-opacity: 1 !important;
    color: #e9d8fd !important;
    color: rgba(233, 216, 253, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-purple-300 {
    --text-opacity: 1 !important;
    color: #d6bcfa !important;
    color: rgba(214, 188, 250, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-purple-400 {
    --text-opacity: 1 !important;
    color: #b794f4 !important;
    color: rgba(183, 148, 244, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-purple-500 {
    --text-opacity: 1 !important;
    color: #9f7aea !important;
    color: rgba(159, 122, 234, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-purple-600 {
    --text-opacity: 1 !important;
    color: #805ad5 !important;
    color: rgba(128, 90, 213, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-purple-700 {
    --text-opacity: 1 !important;
    color: #6b46c1 !important;
    color: rgba(107, 70, 193, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-purple-800 {
    --text-opacity: 1 !important;
    color: #553c9a !important;
    color: rgba(85, 60, 154, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-purple-900 {
    --text-opacity: 1 !important;
    color: #44337a !important;
    color: rgba(68, 51, 122, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-pink-100 {
    --text-opacity: 1 !important;
    color: #fff5f7 !important;
    color: rgba(255, 245, 247, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-pink-200 {
    --text-opacity: 1 !important;
    color: #fed7e2 !important;
    color: rgba(254, 215, 226, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-pink-300 {
    --text-opacity: 1 !important;
    color: #fbb6ce !important;
    color: rgba(251, 182, 206, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-pink-400 {
    --text-opacity: 1 !important;
    color: #f687b3 !important;
    color: rgba(246, 135, 179, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-pink-500 {
    --text-opacity: 1 !important;
    color: #ed64a6 !important;
    color: rgba(237, 100, 166, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-pink-600 {
    --text-opacity: 1 !important;
    color: #d53f8c !important;
    color: rgba(213, 63, 140, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-pink-700 {
    --text-opacity: 1 !important;
    color: #b83280 !important;
    color: rgba(184, 50, 128, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-pink-800 {
    --text-opacity: 1 !important;
    color: #97266d !important;
    color: rgba(151, 38, 109, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-pink-900 {
    --text-opacity: 1 !important;
    color: #702459 !important;
    color: rgba(112, 36, 89, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-ui-gray-100 {
    --text-opacity: 1 !important;
    color: #f1f1f1 !important;
    color: rgba(241, 241, 241, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-ui-brown-100 {
    --text-opacity: 1 !important;
    color: #f3ecdc !important;
    color: rgba(243, 236, 220, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-ui-brown-200 {
    --text-opacity: 1 !important;
    color: #e8e0c9 !important;
    color: rgba(232, 224, 201, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-ui-brown-300 {
    --text-opacity: 1 !important;
    color: #d0c095 !important;
    color: rgba(208, 192, 149, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-ui-brown-700 {
    --text-opacity: 1 !important;
    color: #bd6005 !important;
    color: rgba(189, 96, 5, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-ui-green-300 {
    --text-opacity: 1 !important;
    color: #aac74c !important;
    color: rgba(170, 199, 76, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-ui-green-400 {
    --text-opacity: 1 !important;
    color: #71893e !important;
    color: rgba(113, 137, 62, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-ui-orange-500 {
    --text-opacity: 1 !important;
    color: #e27212 !important;
    color: rgba(226, 114, 18, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-facebook {
    --text-opacity: 1 !important;
    color: #3b5998 !important;
    color: rgba(59, 89, 152, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-twitter {
    --text-opacity: 1 !important;
    color: #00acee !important;
    color: rgba(0, 172, 238, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-twitch {
    --text-opacity: 1 !important;
    color: #6441a5 !important;
    color: rgba(100, 65, 165, var(--text-opacity)) !important;
  }

  .cl-group:hover .sm\:group-hover\:cl-text-youtube {
    --text-opacity: 1 !important;
    color: #FF0000 !important;
    color: rgba(255, 0, 0, var(--text-opacity)) !important;
  }

  .sm\:cl-text-opacity-0 {
    --text-opacity: 0 !important;
  }

  .sm\:cl-text-opacity-25 {
    --text-opacity: 0.25 !important;
  }

  .sm\:cl-text-opacity-50 {
    --text-opacity: 0.5 !important;
  }

  .sm\:cl-text-opacity-75 {
    --text-opacity: 0.75 !important;
  }

  .sm\:cl-text-opacity-100 {
    --text-opacity: 1 !important;
  }

  .sm\:hover\:cl-text-opacity-0:hover {
    --text-opacity: 0 !important;
  }

  .sm\:hover\:cl-text-opacity-25:hover {
    --text-opacity: 0.25 !important;
  }

  .sm\:hover\:cl-text-opacity-50:hover {
    --text-opacity: 0.5 !important;
  }

  .sm\:hover\:cl-text-opacity-75:hover {
    --text-opacity: 0.75 !important;
  }

  .sm\:hover\:cl-text-opacity-100:hover {
    --text-opacity: 1 !important;
  }

  .sm\:focus\:cl-text-opacity-0:focus {
    --text-opacity: 0 !important;
  }

  .sm\:focus\:cl-text-opacity-25:focus {
    --text-opacity: 0.25 !important;
  }

  .sm\:focus\:cl-text-opacity-50:focus {
    --text-opacity: 0.5 !important;
  }

  .sm\:focus\:cl-text-opacity-75:focus {
    --text-opacity: 0.75 !important;
  }

  .sm\:focus\:cl-text-opacity-100:focus {
    --text-opacity: 1 !important;
  }

  .sm\:cl-italic {
    font-style: italic !important;
  }

  .sm\:cl-not-italic {
    font-style: normal !important;
  }

  .sm\:cl-uppercase {
    text-transform: uppercase !important;
  }

  .sm\:cl-lowercase {
    text-transform: lowercase !important;
  }

  .sm\:cl-capitalize {
    text-transform: capitalize !important;
  }

  .sm\:cl-normal-case {
    text-transform: none !important;
  }

  .sm\:cl-underline {
    text-decoration: underline !important;
  }

  .sm\:cl-line-through {
    text-decoration: line-through !important;
  }

  .sm\:cl-no-underline {
    text-decoration: none !important;
  }

  .sm\:hover\:cl-underline:hover {
    text-decoration: underline !important;
  }

  .sm\:hover\:cl-line-through:hover {
    text-decoration: line-through !important;
  }

  .sm\:hover\:cl-no-underline:hover {
    text-decoration: none !important;
  }

  .sm\:focus\:cl-underline:focus {
    text-decoration: underline !important;
  }

  .sm\:focus\:cl-line-through:focus {
    text-decoration: line-through !important;
  }

  .sm\:focus\:cl-no-underline:focus {
    text-decoration: none !important;
  }

  .sm\:cl-antialiased {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
  }

  .sm\:cl-subpixel-antialiased {
    -webkit-font-smoothing: auto !important;
    -moz-osx-font-smoothing: auto !important;
  }

  .sm\:cl-ordinal, .sm\:cl-slashed-zero, .sm\:cl-lining-nums, .sm\:cl-oldstyle-nums, .sm\:cl-proportional-nums, .sm\:cl-tabular-nums, .sm\:cl-diagonal-fractions, .sm\:cl-stacked-fractions {
    --font-variant-numeric-ordinal: var(--tailwind-empty,/*!*/ /*!*/) !important;
    --font-variant-numeric-slashed-zero: var(--tailwind-empty,/*!*/ /*!*/) !important;
    --font-variant-numeric-figure: var(--tailwind-empty,/*!*/ /*!*/) !important;
    --font-variant-numeric-spacing: var(--tailwind-empty,/*!*/ /*!*/) !important;
    --font-variant-numeric-fraction: var(--tailwind-empty,/*!*/ /*!*/) !important;
    font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction) !important;
  }

  .sm\:cl-normal-nums {
    font-variant-numeric: normal !important;
  }

  .sm\:cl-ordinal {
    --font-variant-numeric-ordinal: ordinal !important;
  }

  .sm\:cl-slashed-zero {
    --font-variant-numeric-slashed-zero: slashed-zero !important;
  }

  .sm\:cl-lining-nums {
    --font-variant-numeric-figure: lining-nums !important;
  }

  .sm\:cl-oldstyle-nums {
    --font-variant-numeric-figure: oldstyle-nums !important;
  }

  .sm\:cl-proportional-nums {
    --font-variant-numeric-spacing: proportional-nums !important;
  }

  .sm\:cl-tabular-nums {
    --font-variant-numeric-spacing: tabular-nums !important;
  }

  .sm\:cl-diagonal-fractions {
    --font-variant-numeric-fraction: diagonal-fractions !important;
  }

  .sm\:cl-stacked-fractions {
    --font-variant-numeric-fraction: stacked-fractions !important;
  }

  .sm\:cl-tracking-tighter {
    letter-spacing: -0.05em !important;
  }

  .sm\:cl-tracking-tight {
    letter-spacing: -0.025em !important;
  }

  .sm\:cl-tracking-normal {
    letter-spacing: 0 !important;
  }

  .sm\:cl-tracking-wide {
    letter-spacing: 0.025em !important;
  }

  .sm\:cl-tracking-wider {
    letter-spacing: 0.05em !important;
  }

  .sm\:cl-tracking-widest {
    letter-spacing: 0.1em !important;
  }

  .sm\:cl-select-none {
    -webkit-user-select: none !important;
       -moz-user-select: none !important;
            user-select: none !important;
  }

  .sm\:cl-select-text {
    -webkit-user-select: text !important;
       -moz-user-select: text !important;
            user-select: text !important;
  }

  .sm\:cl-select-all {
    -webkit-user-select: all !important;
       -moz-user-select: all !important;
            user-select: all !important;
  }

  .sm\:cl-select-auto {
    -webkit-user-select: auto !important;
       -moz-user-select: auto !important;
            user-select: auto !important;
  }

  .sm\:cl-align-baseline {
    vertical-align: baseline !important;
  }

  .sm\:cl-align-top {
    vertical-align: top !important;
  }

  .sm\:cl-align-middle {
    vertical-align: middle !important;
  }

  .sm\:cl-align-bottom {
    vertical-align: bottom !important;
  }

  .sm\:cl-align-text-top {
    vertical-align: text-top !important;
  }

  .sm\:cl-align-text-bottom {
    vertical-align: text-bottom !important;
  }

  .sm\:cl-visible {
    visibility: visible !important;
  }

  .sm\:cl-invisible {
    visibility: hidden !important;
  }

  .sm\:cl-whitespace-normal {
    white-space: normal !important;
  }

  .sm\:cl-whitespace-no-wrap {
    white-space: nowrap !important;
  }

  .sm\:cl-whitespace-pre {
    white-space: pre !important;
  }

  .sm\:cl-whitespace-pre-line {
    white-space: pre-line !important;
  }

  .sm\:cl-whitespace-pre-wrap {
    white-space: pre-wrap !important;
  }

  .sm\:cl-break-normal {
    word-wrap: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .sm\:cl-break-words {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  .sm\:cl-break-all {
    word-break: break-all !important;
  }

  .sm\:cl-truncate {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .sm\:cl-w-0 {
    width: 0 !important;
  }

  .sm\:cl-w-1 {
    width: 4px !important;
  }

  .sm\:cl-w-2 {
    width: 8px !important;
  }

  .sm\:cl-w-3 {
    width: 12px !important;
  }

  .sm\:cl-w-4 {
    width: 16px !important;
  }

  .sm\:cl-w-5 {
    width: 20px !important;
  }

  .sm\:cl-w-6 {
    width: 24px !important;
  }

  .sm\:cl-w-8 {
    width: 32px !important;
  }

  .sm\:cl-w-10 {
    width: 40px !important;
  }

  .sm\:cl-w-12 {
    width: 48px !important;
  }

  .sm\:cl-w-16 {
    width: 64px !important;
  }

  .sm\:cl-w-20 {
    width: 80px !important;
  }

  .sm\:cl-w-24 {
    width: 96px !important;
  }

  .sm\:cl-w-26 {
    width: 100px !important;
  }

  .sm\:cl-w-28 {
    width: 110px !important;
  }

  .sm\:cl-w-32 {
    width: 128px !important;
  }

  .sm\:cl-w-40 {
    width: 160px !important;
  }

  .sm\:cl-w-48 {
    width: 192px !important;
  }

  .sm\:cl-w-56 {
    width: 224px !important;
  }

  .sm\:cl-w-64 {
    width: 256px !important;
  }

  .sm\:cl-w-auto {
    width: auto !important;
  }

  .sm\:cl-w-px {
    width: 1px !important;
  }

  .sm\:cl-w-1\/2 {
    width: 50% !important;
  }

  .sm\:cl-w-1\/3 {
    width: 33.333333% !important;
  }

  .sm\:cl-w-2\/3 {
    width: 66.666667% !important;
  }

  .sm\:cl-w-1\/4 {
    width: 25% !important;
  }

  .sm\:cl-w-2\/4 {
    width: 50% !important;
  }

  .sm\:cl-w-3\/4 {
    width: 75% !important;
  }

  .sm\:cl-w-1\/5 {
    width: 20% !important;
  }

  .sm\:cl-w-2\/5 {
    width: 40% !important;
  }

  .sm\:cl-w-3\/5 {
    width: 60% !important;
  }

  .sm\:cl-w-4\/5 {
    width: 80% !important;
  }

  .sm\:cl-w-1\/6 {
    width: 16.666667% !important;
  }

  .sm\:cl-w-2\/6 {
    width: 33.333333% !important;
  }

  .sm\:cl-w-3\/6 {
    width: 50% !important;
  }

  .sm\:cl-w-4\/6 {
    width: 66.666667% !important;
  }

  .sm\:cl-w-5\/6 {
    width: 83.333333% !important;
  }

  .sm\:cl-w-1\/12 {
    width: 8.333333% !important;
  }

  .sm\:cl-w-2\/12 {
    width: 16.666667% !important;
  }

  .sm\:cl-w-3\/12 {
    width: 25% !important;
  }

  .sm\:cl-w-4\/12 {
    width: 33.333333% !important;
  }

  .sm\:cl-w-5\/12 {
    width: 41.666667% !important;
  }

  .sm\:cl-w-6\/12 {
    width: 50% !important;
  }

  .sm\:cl-w-7\/12 {
    width: 58.333333% !important;
  }

  .sm\:cl-w-8\/12 {
    width: 66.666667% !important;
  }

  .sm\:cl-w-9\/12 {
    width: 75% !important;
  }

  .sm\:cl-w-10\/12 {
    width: 83.333333% !important;
  }

  .sm\:cl-w-11\/12 {
    width: 91.666667% !important;
  }

  .sm\:cl-w-full {
    width: 100% !important;
  }

  .sm\:cl-w-screen {
    width: 100vw !important;
  }

  .sm\:cl-z-0 {
    z-index: 0 !important;
  }

  .sm\:cl-z-10 {
    z-index: 10 !important;
  }

  .sm\:cl-z-20 {
    z-index: 20 !important;
  }

  .sm\:cl-z-30 {
    z-index: 30 !important;
  }

  .sm\:cl-z-40 {
    z-index: 40 !important;
  }

  .sm\:cl-z-50 {
    z-index: 50 !important;
  }

  .sm\:cl-z-auto {
    z-index: auto !important;
  }

  .sm\:cl-gap-0 {
    grid-gap: 0 !important;
    gap: 0 !important;
  }

  .sm\:cl-gap-1 {
    grid-gap: 4px !important;
    gap: 4px !important;
  }

  .sm\:cl-gap-2 {
    grid-gap: 8px !important;
    gap: 8px !important;
  }

  .sm\:cl-gap-3 {
    grid-gap: 12px !important;
    gap: 12px !important;
  }

  .sm\:cl-gap-4 {
    grid-gap: 16px !important;
    gap: 16px !important;
  }

  .sm\:cl-gap-5 {
    grid-gap: 20px !important;
    gap: 20px !important;
  }

  .sm\:cl-gap-6 {
    grid-gap: 24px !important;
    gap: 24px !important;
  }

  .sm\:cl-gap-8 {
    grid-gap: 32px !important;
    gap: 32px !important;
  }

  .sm\:cl-gap-10 {
    grid-gap: 40px !important;
    gap: 40px !important;
  }

  .sm\:cl-gap-12 {
    grid-gap: 48px !important;
    gap: 48px !important;
  }

  .sm\:cl-gap-16 {
    grid-gap: 64px !important;
    gap: 64px !important;
  }

  .sm\:cl-gap-20 {
    grid-gap: 80px !important;
    gap: 80px !important;
  }

  .sm\:cl-gap-24 {
    grid-gap: 96px !important;
    gap: 96px !important;
  }

  .sm\:cl-gap-26 {
    grid-gap: 100px !important;
    gap: 100px !important;
  }

  .sm\:cl-gap-28 {
    grid-gap: 110px !important;
    gap: 110px !important;
  }

  .sm\:cl-gap-32 {
    grid-gap: 128px !important;
    gap: 128px !important;
  }

  .sm\:cl-gap-40 {
    grid-gap: 160px !important;
    gap: 160px !important;
  }

  .sm\:cl-gap-48 {
    grid-gap: 192px !important;
    gap: 192px !important;
  }

  .sm\:cl-gap-56 {
    grid-gap: 224px !important;
    gap: 224px !important;
  }

  .sm\:cl-gap-64 {
    grid-gap: 256px !important;
    gap: 256px !important;
  }

  .sm\:cl-gap-px {
    grid-gap: 1px !important;
    gap: 1px !important;
  }

  .sm\:cl-col-gap-0 {
    grid-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
         column-gap: 0 !important;
  }

  .sm\:cl-col-gap-1 {
    grid-column-gap: 4px !important;
    -moz-column-gap: 4px !important;
         column-gap: 4px !important;
  }

  .sm\:cl-col-gap-2 {
    grid-column-gap: 8px !important;
    -moz-column-gap: 8px !important;
         column-gap: 8px !important;
  }

  .sm\:cl-col-gap-3 {
    grid-column-gap: 12px !important;
    -moz-column-gap: 12px !important;
         column-gap: 12px !important;
  }

  .sm\:cl-col-gap-4 {
    grid-column-gap: 16px !important;
    -moz-column-gap: 16px !important;
         column-gap: 16px !important;
  }

  .sm\:cl-col-gap-5 {
    grid-column-gap: 20px !important;
    -moz-column-gap: 20px !important;
         column-gap: 20px !important;
  }

  .sm\:cl-col-gap-6 {
    grid-column-gap: 24px !important;
    -moz-column-gap: 24px !important;
         column-gap: 24px !important;
  }

  .sm\:cl-col-gap-8 {
    grid-column-gap: 32px !important;
    -moz-column-gap: 32px !important;
         column-gap: 32px !important;
  }

  .sm\:cl-col-gap-10 {
    grid-column-gap: 40px !important;
    -moz-column-gap: 40px !important;
         column-gap: 40px !important;
  }

  .sm\:cl-col-gap-12 {
    grid-column-gap: 48px !important;
    -moz-column-gap: 48px !important;
         column-gap: 48px !important;
  }

  .sm\:cl-col-gap-16 {
    grid-column-gap: 64px !important;
    -moz-column-gap: 64px !important;
         column-gap: 64px !important;
  }

  .sm\:cl-col-gap-20 {
    grid-column-gap: 80px !important;
    -moz-column-gap: 80px !important;
         column-gap: 80px !important;
  }

  .sm\:cl-col-gap-24 {
    grid-column-gap: 96px !important;
    -moz-column-gap: 96px !important;
         column-gap: 96px !important;
  }

  .sm\:cl-col-gap-26 {
    grid-column-gap: 100px !important;
    -moz-column-gap: 100px !important;
         column-gap: 100px !important;
  }

  .sm\:cl-col-gap-28 {
    grid-column-gap: 110px !important;
    -moz-column-gap: 110px !important;
         column-gap: 110px !important;
  }

  .sm\:cl-col-gap-32 {
    grid-column-gap: 128px !important;
    -moz-column-gap: 128px !important;
         column-gap: 128px !important;
  }

  .sm\:cl-col-gap-40 {
    grid-column-gap: 160px !important;
    -moz-column-gap: 160px !important;
         column-gap: 160px !important;
  }

  .sm\:cl-col-gap-48 {
    grid-column-gap: 192px !important;
    -moz-column-gap: 192px !important;
         column-gap: 192px !important;
  }

  .sm\:cl-col-gap-56 {
    grid-column-gap: 224px !important;
    -moz-column-gap: 224px !important;
         column-gap: 224px !important;
  }

  .sm\:cl-col-gap-64 {
    grid-column-gap: 256px !important;
    -moz-column-gap: 256px !important;
         column-gap: 256px !important;
  }

  .sm\:cl-col-gap-px {
    grid-column-gap: 1px !important;
    -moz-column-gap: 1px !important;
         column-gap: 1px !important;
  }

  .sm\:cl-gap-x-0 {
    grid-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
         column-gap: 0 !important;
  }

  .sm\:cl-gap-x-1 {
    grid-column-gap: 4px !important;
    -moz-column-gap: 4px !important;
         column-gap: 4px !important;
  }

  .sm\:cl-gap-x-2 {
    grid-column-gap: 8px !important;
    -moz-column-gap: 8px !important;
         column-gap: 8px !important;
  }

  .sm\:cl-gap-x-3 {
    grid-column-gap: 12px !important;
    -moz-column-gap: 12px !important;
         column-gap: 12px !important;
  }

  .sm\:cl-gap-x-4 {
    grid-column-gap: 16px !important;
    -moz-column-gap: 16px !important;
         column-gap: 16px !important;
  }

  .sm\:cl-gap-x-5 {
    grid-column-gap: 20px !important;
    -moz-column-gap: 20px !important;
         column-gap: 20px !important;
  }

  .sm\:cl-gap-x-6 {
    grid-column-gap: 24px !important;
    -moz-column-gap: 24px !important;
         column-gap: 24px !important;
  }

  .sm\:cl-gap-x-8 {
    grid-column-gap: 32px !important;
    -moz-column-gap: 32px !important;
         column-gap: 32px !important;
  }

  .sm\:cl-gap-x-10 {
    grid-column-gap: 40px !important;
    -moz-column-gap: 40px !important;
         column-gap: 40px !important;
  }

  .sm\:cl-gap-x-12 {
    grid-column-gap: 48px !important;
    -moz-column-gap: 48px !important;
         column-gap: 48px !important;
  }

  .sm\:cl-gap-x-16 {
    grid-column-gap: 64px !important;
    -moz-column-gap: 64px !important;
         column-gap: 64px !important;
  }

  .sm\:cl-gap-x-20 {
    grid-column-gap: 80px !important;
    -moz-column-gap: 80px !important;
         column-gap: 80px !important;
  }

  .sm\:cl-gap-x-24 {
    grid-column-gap: 96px !important;
    -moz-column-gap: 96px !important;
         column-gap: 96px !important;
  }

  .sm\:cl-gap-x-26 {
    grid-column-gap: 100px !important;
    -moz-column-gap: 100px !important;
         column-gap: 100px !important;
  }

  .sm\:cl-gap-x-28 {
    grid-column-gap: 110px !important;
    -moz-column-gap: 110px !important;
         column-gap: 110px !important;
  }

  .sm\:cl-gap-x-32 {
    grid-column-gap: 128px !important;
    -moz-column-gap: 128px !important;
         column-gap: 128px !important;
  }

  .sm\:cl-gap-x-40 {
    grid-column-gap: 160px !important;
    -moz-column-gap: 160px !important;
         column-gap: 160px !important;
  }

  .sm\:cl-gap-x-48 {
    grid-column-gap: 192px !important;
    -moz-column-gap: 192px !important;
         column-gap: 192px !important;
  }

  .sm\:cl-gap-x-56 {
    grid-column-gap: 224px !important;
    -moz-column-gap: 224px !important;
         column-gap: 224px !important;
  }

  .sm\:cl-gap-x-64 {
    grid-column-gap: 256px !important;
    -moz-column-gap: 256px !important;
         column-gap: 256px !important;
  }

  .sm\:cl-gap-x-px {
    grid-column-gap: 1px !important;
    -moz-column-gap: 1px !important;
         column-gap: 1px !important;
  }

  .sm\:cl-row-gap-0 {
    grid-row-gap: 0 !important;
    row-gap: 0 !important;
  }

  .sm\:cl-row-gap-1 {
    grid-row-gap: 4px !important;
    row-gap: 4px !important;
  }

  .sm\:cl-row-gap-2 {
    grid-row-gap: 8px !important;
    row-gap: 8px !important;
  }

  .sm\:cl-row-gap-3 {
    grid-row-gap: 12px !important;
    row-gap: 12px !important;
  }

  .sm\:cl-row-gap-4 {
    grid-row-gap: 16px !important;
    row-gap: 16px !important;
  }

  .sm\:cl-row-gap-5 {
    grid-row-gap: 20px !important;
    row-gap: 20px !important;
  }

  .sm\:cl-row-gap-6 {
    grid-row-gap: 24px !important;
    row-gap: 24px !important;
  }

  .sm\:cl-row-gap-8 {
    grid-row-gap: 32px !important;
    row-gap: 32px !important;
  }

  .sm\:cl-row-gap-10 {
    grid-row-gap: 40px !important;
    row-gap: 40px !important;
  }

  .sm\:cl-row-gap-12 {
    grid-row-gap: 48px !important;
    row-gap: 48px !important;
  }

  .sm\:cl-row-gap-16 {
    grid-row-gap: 64px !important;
    row-gap: 64px !important;
  }

  .sm\:cl-row-gap-20 {
    grid-row-gap: 80px !important;
    row-gap: 80px !important;
  }

  .sm\:cl-row-gap-24 {
    grid-row-gap: 96px !important;
    row-gap: 96px !important;
  }

  .sm\:cl-row-gap-26 {
    grid-row-gap: 100px !important;
    row-gap: 100px !important;
  }

  .sm\:cl-row-gap-28 {
    grid-row-gap: 110px !important;
    row-gap: 110px !important;
  }

  .sm\:cl-row-gap-32 {
    grid-row-gap: 128px !important;
    row-gap: 128px !important;
  }

  .sm\:cl-row-gap-40 {
    grid-row-gap: 160px !important;
    row-gap: 160px !important;
  }

  .sm\:cl-row-gap-48 {
    grid-row-gap: 192px !important;
    row-gap: 192px !important;
  }

  .sm\:cl-row-gap-56 {
    grid-row-gap: 224px !important;
    row-gap: 224px !important;
  }

  .sm\:cl-row-gap-64 {
    grid-row-gap: 256px !important;
    row-gap: 256px !important;
  }

  .sm\:cl-row-gap-px {
    grid-row-gap: 1px !important;
    row-gap: 1px !important;
  }

  .sm\:cl-gap-y-0 {
    grid-row-gap: 0 !important;
    row-gap: 0 !important;
  }

  .sm\:cl-gap-y-1 {
    grid-row-gap: 4px !important;
    row-gap: 4px !important;
  }

  .sm\:cl-gap-y-2 {
    grid-row-gap: 8px !important;
    row-gap: 8px !important;
  }

  .sm\:cl-gap-y-3 {
    grid-row-gap: 12px !important;
    row-gap: 12px !important;
  }

  .sm\:cl-gap-y-4 {
    grid-row-gap: 16px !important;
    row-gap: 16px !important;
  }

  .sm\:cl-gap-y-5 {
    grid-row-gap: 20px !important;
    row-gap: 20px !important;
  }

  .sm\:cl-gap-y-6 {
    grid-row-gap: 24px !important;
    row-gap: 24px !important;
  }

  .sm\:cl-gap-y-8 {
    grid-row-gap: 32px !important;
    row-gap: 32px !important;
  }

  .sm\:cl-gap-y-10 {
    grid-row-gap: 40px !important;
    row-gap: 40px !important;
  }

  .sm\:cl-gap-y-12 {
    grid-row-gap: 48px !important;
    row-gap: 48px !important;
  }

  .sm\:cl-gap-y-16 {
    grid-row-gap: 64px !important;
    row-gap: 64px !important;
  }

  .sm\:cl-gap-y-20 {
    grid-row-gap: 80px !important;
    row-gap: 80px !important;
  }

  .sm\:cl-gap-y-24 {
    grid-row-gap: 96px !important;
    row-gap: 96px !important;
  }

  .sm\:cl-gap-y-26 {
    grid-row-gap: 100px !important;
    row-gap: 100px !important;
  }

  .sm\:cl-gap-y-28 {
    grid-row-gap: 110px !important;
    row-gap: 110px !important;
  }

  .sm\:cl-gap-y-32 {
    grid-row-gap: 128px !important;
    row-gap: 128px !important;
  }

  .sm\:cl-gap-y-40 {
    grid-row-gap: 160px !important;
    row-gap: 160px !important;
  }

  .sm\:cl-gap-y-48 {
    grid-row-gap: 192px !important;
    row-gap: 192px !important;
  }

  .sm\:cl-gap-y-56 {
    grid-row-gap: 224px !important;
    row-gap: 224px !important;
  }

  .sm\:cl-gap-y-64 {
    grid-row-gap: 256px !important;
    row-gap: 256px !important;
  }

  .sm\:cl-gap-y-px {
    grid-row-gap: 1px !important;
    row-gap: 1px !important;
  }

  .sm\:cl-grid-flow-row {
    grid-auto-flow: row !important;
  }

  .sm\:cl-grid-flow-col {
    grid-auto-flow: column !important;
  }

  .sm\:cl-grid-flow-row-dense {
    grid-auto-flow: row dense !important;
  }

  .sm\:cl-grid-flow-col-dense {
    grid-auto-flow: column dense !important;
  }

  .sm\:cl-grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }

  .sm\:cl-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .sm\:cl-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .sm\:cl-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .sm\:cl-grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }

  .sm\:cl-grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }

  .sm\:cl-grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }

  .sm\:cl-grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }

  .sm\:cl-grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }

  .sm\:cl-grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }

  .sm\:cl-grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
  }

  .sm\:cl-grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }

  .sm\:cl-grid-cols-none {
    grid-template-columns: none !important;
  }

  .sm\:cl-auto-cols-auto {
    grid-auto-columns: auto !important;
  }

  .sm\:cl-auto-cols-min {
    grid-auto-columns: min-content !important;
  }

  .sm\:cl-auto-cols-max {
    grid-auto-columns: max-content !important;
  }

  .sm\:cl-auto-cols-fr {
    grid-auto-columns: minmax(0, 1fr) !important;
  }

  .sm\:cl-col-auto {
    grid-column: auto !important;
  }

  .sm\:cl-col-span-1 {
    grid-column: span 1 / span 1 !important;
  }

  .sm\:cl-col-span-2 {
    grid-column: span 2 / span 2 !important;
  }

  .sm\:cl-col-span-3 {
    grid-column: span 3 / span 3 !important;
  }

  .sm\:cl-col-span-4 {
    grid-column: span 4 / span 4 !important;
  }

  .sm\:cl-col-span-5 {
    grid-column: span 5 / span 5 !important;
  }

  .sm\:cl-col-span-6 {
    grid-column: span 6 / span 6 !important;
  }

  .sm\:cl-col-span-7 {
    grid-column: span 7 / span 7 !important;
  }

  .sm\:cl-col-span-8 {
    grid-column: span 8 / span 8 !important;
  }

  .sm\:cl-col-span-9 {
    grid-column: span 9 / span 9 !important;
  }

  .sm\:cl-col-span-10 {
    grid-column: span 10 / span 10 !important;
  }

  .sm\:cl-col-span-11 {
    grid-column: span 11 / span 11 !important;
  }

  .sm\:cl-col-span-12 {
    grid-column: span 12 / span 12 !important;
  }

  .sm\:cl-col-span-full {
    grid-column: 1 / -1 !important;
  }

  .sm\:cl-col-start-1 {
    grid-column-start: 1 !important;
  }

  .sm\:cl-col-start-2 {
    grid-column-start: 2 !important;
  }

  .sm\:cl-col-start-3 {
    grid-column-start: 3 !important;
  }

  .sm\:cl-col-start-4 {
    grid-column-start: 4 !important;
  }

  .sm\:cl-col-start-5 {
    grid-column-start: 5 !important;
  }

  .sm\:cl-col-start-6 {
    grid-column-start: 6 !important;
  }

  .sm\:cl-col-start-7 {
    grid-column-start: 7 !important;
  }

  .sm\:cl-col-start-8 {
    grid-column-start: 8 !important;
  }

  .sm\:cl-col-start-9 {
    grid-column-start: 9 !important;
  }

  .sm\:cl-col-start-10 {
    grid-column-start: 10 !important;
  }

  .sm\:cl-col-start-11 {
    grid-column-start: 11 !important;
  }

  .sm\:cl-col-start-12 {
    grid-column-start: 12 !important;
  }

  .sm\:cl-col-start-13 {
    grid-column-start: 13 !important;
  }

  .sm\:cl-col-start-auto {
    grid-column-start: auto !important;
  }

  .sm\:cl-col-end-1 {
    grid-column-end: 1 !important;
  }

  .sm\:cl-col-end-2 {
    grid-column-end: 2 !important;
  }

  .sm\:cl-col-end-3 {
    grid-column-end: 3 !important;
  }

  .sm\:cl-col-end-4 {
    grid-column-end: 4 !important;
  }

  .sm\:cl-col-end-5 {
    grid-column-end: 5 !important;
  }

  .sm\:cl-col-end-6 {
    grid-column-end: 6 !important;
  }

  .sm\:cl-col-end-7 {
    grid-column-end: 7 !important;
  }

  .sm\:cl-col-end-8 {
    grid-column-end: 8 !important;
  }

  .sm\:cl-col-end-9 {
    grid-column-end: 9 !important;
  }

  .sm\:cl-col-end-10 {
    grid-column-end: 10 !important;
  }

  .sm\:cl-col-end-11 {
    grid-column-end: 11 !important;
  }

  .sm\:cl-col-end-12 {
    grid-column-end: 12 !important;
  }

  .sm\:cl-col-end-13 {
    grid-column-end: 13 !important;
  }

  .sm\:cl-col-end-auto {
    grid-column-end: auto !important;
  }

  .sm\:cl-grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }

  .sm\:cl-grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }

  .sm\:cl-grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }

  .sm\:cl-grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  }

  .sm\:cl-grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
  }

  .sm\:cl-grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }

  .sm\:cl-grid-rows-none {
    grid-template-rows: none !important;
  }

  .sm\:cl-auto-rows-auto {
    grid-auto-rows: auto !important;
  }

  .sm\:cl-auto-rows-min {
    grid-auto-rows: min-content !important;
  }

  .sm\:cl-auto-rows-max {
    grid-auto-rows: max-content !important;
  }

  .sm\:cl-auto-rows-fr {
    grid-auto-rows: minmax(0, 1fr) !important;
  }

  .sm\:cl-row-auto {
    grid-row: auto !important;
  }

  .sm\:cl-row-span-1 {
    grid-row: span 1 / span 1 !important;
  }

  .sm\:cl-row-span-2 {
    grid-row: span 2 / span 2 !important;
  }

  .sm\:cl-row-span-3 {
    grid-row: span 3 / span 3 !important;
  }

  .sm\:cl-row-span-4 {
    grid-row: span 4 / span 4 !important;
  }

  .sm\:cl-row-span-5 {
    grid-row: span 5 / span 5 !important;
  }

  .sm\:cl-row-span-6 {
    grid-row: span 6 / span 6 !important;
  }

  .sm\:cl-row-span-full {
    grid-row: 1 / -1 !important;
  }

  .sm\:cl-row-start-1 {
    grid-row-start: 1 !important;
  }

  .sm\:cl-row-start-2 {
    grid-row-start: 2 !important;
  }

  .sm\:cl-row-start-3 {
    grid-row-start: 3 !important;
  }

  .sm\:cl-row-start-4 {
    grid-row-start: 4 !important;
  }

  .sm\:cl-row-start-5 {
    grid-row-start: 5 !important;
  }

  .sm\:cl-row-start-6 {
    grid-row-start: 6 !important;
  }

  .sm\:cl-row-start-7 {
    grid-row-start: 7 !important;
  }

  .sm\:cl-row-start-auto {
    grid-row-start: auto !important;
  }

  .sm\:cl-row-end-1 {
    grid-row-end: 1 !important;
  }

  .sm\:cl-row-end-2 {
    grid-row-end: 2 !important;
  }

  .sm\:cl-row-end-3 {
    grid-row-end: 3 !important;
  }

  .sm\:cl-row-end-4 {
    grid-row-end: 4 !important;
  }

  .sm\:cl-row-end-5 {
    grid-row-end: 5 !important;
  }

  .sm\:cl-row-end-6 {
    grid-row-end: 6 !important;
  }

  .sm\:cl-row-end-7 {
    grid-row-end: 7 !important;
  }

  .sm\:cl-row-end-auto {
    grid-row-end: auto !important;
  }

  .sm\:cl-transform {
    --transform-translate-x: 0 !important;
    --transform-translate-y: 0 !important;
    --transform-rotate: 0 !important;
    --transform-skew-x: 0 !important;
    --transform-skew-y: 0 !important;
    --transform-scale-x: 1 !important;
    --transform-scale-y: 1 !important;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y)) !important;
  }

  .sm\:cl-transform-none {
    transform: none !important;
  }

  .sm\:cl-origin-center {
    transform-origin: center !important;
  }

  .sm\:cl-origin-top {
    transform-origin: top !important;
  }

  .sm\:cl-origin-top-right {
    transform-origin: top right !important;
  }

  .sm\:cl-origin-right {
    transform-origin: right !important;
  }

  .sm\:cl-origin-bottom-right {
    transform-origin: bottom right !important;
  }

  .sm\:cl-origin-bottom {
    transform-origin: bottom !important;
  }

  .sm\:cl-origin-bottom-left {
    transform-origin: bottom left !important;
  }

  .sm\:cl-origin-left {
    transform-origin: left !important;
  }

  .sm\:cl-origin-top-left {
    transform-origin: top left !important;
  }

  .sm\:cl-scale-0 {
    --transform-scale-x: 0 !important;
    --transform-scale-y: 0 !important;
  }

  .sm\:cl-scale-50 {
    --transform-scale-x: .5 !important;
    --transform-scale-y: .5 !important;
  }

  .sm\:cl-scale-75 {
    --transform-scale-x: .75 !important;
    --transform-scale-y: .75 !important;
  }

  .sm\:cl-scale-90 {
    --transform-scale-x: .9 !important;
    --transform-scale-y: .9 !important;
  }

  .sm\:cl-scale-95 {
    --transform-scale-x: .95 !important;
    --transform-scale-y: .95 !important;
  }

  .sm\:cl-scale-100 {
    --transform-scale-x: 1 !important;
    --transform-scale-y: 1 !important;
  }

  .sm\:cl-scale-105 {
    --transform-scale-x: 1.05 !important;
    --transform-scale-y: 1.05 !important;
  }

  .sm\:cl-scale-110 {
    --transform-scale-x: 1.1 !important;
    --transform-scale-y: 1.1 !important;
  }

  .sm\:cl-scale-125 {
    --transform-scale-x: 1.25 !important;
    --transform-scale-y: 1.25 !important;
  }

  .sm\:cl-scale-150 {
    --transform-scale-x: 1.5 !important;
    --transform-scale-y: 1.5 !important;
  }

  .sm\:cl-scale-x-0 {
    --transform-scale-x: 0 !important;
  }

  .sm\:cl-scale-x-50 {
    --transform-scale-x: .5 !important;
  }

  .sm\:cl-scale-x-75 {
    --transform-scale-x: .75 !important;
  }

  .sm\:cl-scale-x-90 {
    --transform-scale-x: .9 !important;
  }

  .sm\:cl-scale-x-95 {
    --transform-scale-x: .95 !important;
  }

  .sm\:cl-scale-x-100 {
    --transform-scale-x: 1 !important;
  }

  .sm\:cl-scale-x-105 {
    --transform-scale-x: 1.05 !important;
  }

  .sm\:cl-scale-x-110 {
    --transform-scale-x: 1.1 !important;
  }

  .sm\:cl-scale-x-125 {
    --transform-scale-x: 1.25 !important;
  }

  .sm\:cl-scale-x-150 {
    --transform-scale-x: 1.5 !important;
  }

  .sm\:cl-scale-y-0 {
    --transform-scale-y: 0 !important;
  }

  .sm\:cl-scale-y-50 {
    --transform-scale-y: .5 !important;
  }

  .sm\:cl-scale-y-75 {
    --transform-scale-y: .75 !important;
  }

  .sm\:cl-scale-y-90 {
    --transform-scale-y: .9 !important;
  }

  .sm\:cl-scale-y-95 {
    --transform-scale-y: .95 !important;
  }

  .sm\:cl-scale-y-100 {
    --transform-scale-y: 1 !important;
  }

  .sm\:cl-scale-y-105 {
    --transform-scale-y: 1.05 !important;
  }

  .sm\:cl-scale-y-110 {
    --transform-scale-y: 1.1 !important;
  }

  .sm\:cl-scale-y-125 {
    --transform-scale-y: 1.25 !important;
  }

  .sm\:cl-scale-y-150 {
    --transform-scale-y: 1.5 !important;
  }

  .sm\:hover\:cl-scale-0:hover {
    --transform-scale-x: 0 !important;
    --transform-scale-y: 0 !important;
  }

  .sm\:hover\:cl-scale-50:hover {
    --transform-scale-x: .5 !important;
    --transform-scale-y: .5 !important;
  }

  .sm\:hover\:cl-scale-75:hover {
    --transform-scale-x: .75 !important;
    --transform-scale-y: .75 !important;
  }

  .sm\:hover\:cl-scale-90:hover {
    --transform-scale-x: .9 !important;
    --transform-scale-y: .9 !important;
  }

  .sm\:hover\:cl-scale-95:hover {
    --transform-scale-x: .95 !important;
    --transform-scale-y: .95 !important;
  }

  .sm\:hover\:cl-scale-100:hover {
    --transform-scale-x: 1 !important;
    --transform-scale-y: 1 !important;
  }

  .sm\:hover\:cl-scale-105:hover {
    --transform-scale-x: 1.05 !important;
    --transform-scale-y: 1.05 !important;
  }

  .sm\:hover\:cl-scale-110:hover {
    --transform-scale-x: 1.1 !important;
    --transform-scale-y: 1.1 !important;
  }

  .sm\:hover\:cl-scale-125:hover {
    --transform-scale-x: 1.25 !important;
    --transform-scale-y: 1.25 !important;
  }

  .sm\:hover\:cl-scale-150:hover {
    --transform-scale-x: 1.5 !important;
    --transform-scale-y: 1.5 !important;
  }

  .sm\:hover\:cl-scale-x-0:hover {
    --transform-scale-x: 0 !important;
  }

  .sm\:hover\:cl-scale-x-50:hover {
    --transform-scale-x: .5 !important;
  }

  .sm\:hover\:cl-scale-x-75:hover {
    --transform-scale-x: .75 !important;
  }

  .sm\:hover\:cl-scale-x-90:hover {
    --transform-scale-x: .9 !important;
  }

  .sm\:hover\:cl-scale-x-95:hover {
    --transform-scale-x: .95 !important;
  }

  .sm\:hover\:cl-scale-x-100:hover {
    --transform-scale-x: 1 !important;
  }

  .sm\:hover\:cl-scale-x-105:hover {
    --transform-scale-x: 1.05 !important;
  }

  .sm\:hover\:cl-scale-x-110:hover {
    --transform-scale-x: 1.1 !important;
  }

  .sm\:hover\:cl-scale-x-125:hover {
    --transform-scale-x: 1.25 !important;
  }

  .sm\:hover\:cl-scale-x-150:hover {
    --transform-scale-x: 1.5 !important;
  }

  .sm\:hover\:cl-scale-y-0:hover {
    --transform-scale-y: 0 !important;
  }

  .sm\:hover\:cl-scale-y-50:hover {
    --transform-scale-y: .5 !important;
  }

  .sm\:hover\:cl-scale-y-75:hover {
    --transform-scale-y: .75 !important;
  }

  .sm\:hover\:cl-scale-y-90:hover {
    --transform-scale-y: .9 !important;
  }

  .sm\:hover\:cl-scale-y-95:hover {
    --transform-scale-y: .95 !important;
  }

  .sm\:hover\:cl-scale-y-100:hover {
    --transform-scale-y: 1 !important;
  }

  .sm\:hover\:cl-scale-y-105:hover {
    --transform-scale-y: 1.05 !important;
  }

  .sm\:hover\:cl-scale-y-110:hover {
    --transform-scale-y: 1.1 !important;
  }

  .sm\:hover\:cl-scale-y-125:hover {
    --transform-scale-y: 1.25 !important;
  }

  .sm\:hover\:cl-scale-y-150:hover {
    --transform-scale-y: 1.5 !important;
  }

  .sm\:focus\:cl-scale-0:focus {
    --transform-scale-x: 0 !important;
    --transform-scale-y: 0 !important;
  }

  .sm\:focus\:cl-scale-50:focus {
    --transform-scale-x: .5 !important;
    --transform-scale-y: .5 !important;
  }

  .sm\:focus\:cl-scale-75:focus {
    --transform-scale-x: .75 !important;
    --transform-scale-y: .75 !important;
  }

  .sm\:focus\:cl-scale-90:focus {
    --transform-scale-x: .9 !important;
    --transform-scale-y: .9 !important;
  }

  .sm\:focus\:cl-scale-95:focus {
    --transform-scale-x: .95 !important;
    --transform-scale-y: .95 !important;
  }

  .sm\:focus\:cl-scale-100:focus {
    --transform-scale-x: 1 !important;
    --transform-scale-y: 1 !important;
  }

  .sm\:focus\:cl-scale-105:focus {
    --transform-scale-x: 1.05 !important;
    --transform-scale-y: 1.05 !important;
  }

  .sm\:focus\:cl-scale-110:focus {
    --transform-scale-x: 1.1 !important;
    --transform-scale-y: 1.1 !important;
  }

  .sm\:focus\:cl-scale-125:focus {
    --transform-scale-x: 1.25 !important;
    --transform-scale-y: 1.25 !important;
  }

  .sm\:focus\:cl-scale-150:focus {
    --transform-scale-x: 1.5 !important;
    --transform-scale-y: 1.5 !important;
  }

  .sm\:focus\:cl-scale-x-0:focus {
    --transform-scale-x: 0 !important;
  }

  .sm\:focus\:cl-scale-x-50:focus {
    --transform-scale-x: .5 !important;
  }

  .sm\:focus\:cl-scale-x-75:focus {
    --transform-scale-x: .75 !important;
  }

  .sm\:focus\:cl-scale-x-90:focus {
    --transform-scale-x: .9 !important;
  }

  .sm\:focus\:cl-scale-x-95:focus {
    --transform-scale-x: .95 !important;
  }

  .sm\:focus\:cl-scale-x-100:focus {
    --transform-scale-x: 1 !important;
  }

  .sm\:focus\:cl-scale-x-105:focus {
    --transform-scale-x: 1.05 !important;
  }

  .sm\:focus\:cl-scale-x-110:focus {
    --transform-scale-x: 1.1 !important;
  }

  .sm\:focus\:cl-scale-x-125:focus {
    --transform-scale-x: 1.25 !important;
  }

  .sm\:focus\:cl-scale-x-150:focus {
    --transform-scale-x: 1.5 !important;
  }

  .sm\:focus\:cl-scale-y-0:focus {
    --transform-scale-y: 0 !important;
  }

  .sm\:focus\:cl-scale-y-50:focus {
    --transform-scale-y: .5 !important;
  }

  .sm\:focus\:cl-scale-y-75:focus {
    --transform-scale-y: .75 !important;
  }

  .sm\:focus\:cl-scale-y-90:focus {
    --transform-scale-y: .9 !important;
  }

  .sm\:focus\:cl-scale-y-95:focus {
    --transform-scale-y: .95 !important;
  }

  .sm\:focus\:cl-scale-y-100:focus {
    --transform-scale-y: 1 !important;
  }

  .sm\:focus\:cl-scale-y-105:focus {
    --transform-scale-y: 1.05 !important;
  }

  .sm\:focus\:cl-scale-y-110:focus {
    --transform-scale-y: 1.1 !important;
  }

  .sm\:focus\:cl-scale-y-125:focus {
    --transform-scale-y: 1.25 !important;
  }

  .sm\:focus\:cl-scale-y-150:focus {
    --transform-scale-y: 1.5 !important;
  }

  .sm\:cl-rotate-0 {
    --transform-rotate: 0 !important;
  }

  .sm\:cl-rotate-1 {
    --transform-rotate: 1deg !important;
  }

  .sm\:cl-rotate-2 {
    --transform-rotate: 2deg !important;
  }

  .sm\:cl-rotate-3 {
    --transform-rotate: 3deg !important;
  }

  .sm\:cl-rotate-6 {
    --transform-rotate: 6deg !important;
  }

  .sm\:cl-rotate-12 {
    --transform-rotate: 12deg !important;
  }

  .sm\:cl-rotate-45 {
    --transform-rotate: 45deg !important;
  }

  .sm\:cl-rotate-90 {
    --transform-rotate: 90deg !important;
  }

  .sm\:cl-rotate-180 {
    --transform-rotate: 180deg !important;
  }

  .sm\:cl--rotate-180 {
    --transform-rotate: -180deg !important;
  }

  .sm\:cl--rotate-90 {
    --transform-rotate: -90deg !important;
  }

  .sm\:cl--rotate-45 {
    --transform-rotate: -45deg !important;
  }

  .sm\:cl--rotate-12 {
    --transform-rotate: -12deg !important;
  }

  .sm\:cl--rotate-6 {
    --transform-rotate: -6deg !important;
  }

  .sm\:cl--rotate-3 {
    --transform-rotate: -3deg !important;
  }

  .sm\:cl--rotate-2 {
    --transform-rotate: -2deg !important;
  }

  .sm\:cl--rotate-1 {
    --transform-rotate: -1deg !important;
  }

  .sm\:hover\:cl-rotate-0:hover {
    --transform-rotate: 0 !important;
  }

  .sm\:hover\:cl-rotate-1:hover {
    --transform-rotate: 1deg !important;
  }

  .sm\:hover\:cl-rotate-2:hover {
    --transform-rotate: 2deg !important;
  }

  .sm\:hover\:cl-rotate-3:hover {
    --transform-rotate: 3deg !important;
  }

  .sm\:hover\:cl-rotate-6:hover {
    --transform-rotate: 6deg !important;
  }

  .sm\:hover\:cl-rotate-12:hover {
    --transform-rotate: 12deg !important;
  }

  .sm\:hover\:cl-rotate-45:hover {
    --transform-rotate: 45deg !important;
  }

  .sm\:hover\:cl-rotate-90:hover {
    --transform-rotate: 90deg !important;
  }

  .sm\:hover\:cl-rotate-180:hover {
    --transform-rotate: 180deg !important;
  }

  .sm\:hover\:cl--rotate-180:hover {
    --transform-rotate: -180deg !important;
  }

  .sm\:hover\:cl--rotate-90:hover {
    --transform-rotate: -90deg !important;
  }

  .sm\:hover\:cl--rotate-45:hover {
    --transform-rotate: -45deg !important;
  }

  .sm\:hover\:cl--rotate-12:hover {
    --transform-rotate: -12deg !important;
  }

  .sm\:hover\:cl--rotate-6:hover {
    --transform-rotate: -6deg !important;
  }

  .sm\:hover\:cl--rotate-3:hover {
    --transform-rotate: -3deg !important;
  }

  .sm\:hover\:cl--rotate-2:hover {
    --transform-rotate: -2deg !important;
  }

  .sm\:hover\:cl--rotate-1:hover {
    --transform-rotate: -1deg !important;
  }

  .sm\:focus\:cl-rotate-0:focus {
    --transform-rotate: 0 !important;
  }

  .sm\:focus\:cl-rotate-1:focus {
    --transform-rotate: 1deg !important;
  }

  .sm\:focus\:cl-rotate-2:focus {
    --transform-rotate: 2deg !important;
  }

  .sm\:focus\:cl-rotate-3:focus {
    --transform-rotate: 3deg !important;
  }

  .sm\:focus\:cl-rotate-6:focus {
    --transform-rotate: 6deg !important;
  }

  .sm\:focus\:cl-rotate-12:focus {
    --transform-rotate: 12deg !important;
  }

  .sm\:focus\:cl-rotate-45:focus {
    --transform-rotate: 45deg !important;
  }

  .sm\:focus\:cl-rotate-90:focus {
    --transform-rotate: 90deg !important;
  }

  .sm\:focus\:cl-rotate-180:focus {
    --transform-rotate: 180deg !important;
  }

  .sm\:focus\:cl--rotate-180:focus {
    --transform-rotate: -180deg !important;
  }

  .sm\:focus\:cl--rotate-90:focus {
    --transform-rotate: -90deg !important;
  }

  .sm\:focus\:cl--rotate-45:focus {
    --transform-rotate: -45deg !important;
  }

  .sm\:focus\:cl--rotate-12:focus {
    --transform-rotate: -12deg !important;
  }

  .sm\:focus\:cl--rotate-6:focus {
    --transform-rotate: -6deg !important;
  }

  .sm\:focus\:cl--rotate-3:focus {
    --transform-rotate: -3deg !important;
  }

  .sm\:focus\:cl--rotate-2:focus {
    --transform-rotate: -2deg !important;
  }

  .sm\:focus\:cl--rotate-1:focus {
    --transform-rotate: -1deg !important;
  }

  .sm\:cl-translate-x-0 {
    --transform-translate-x: 0 !important;
  }

  .sm\:cl-translate-x-1 {
    --transform-translate-x: 4px !important;
  }

  .sm\:cl-translate-x-2 {
    --transform-translate-x: 8px !important;
  }

  .sm\:cl-translate-x-3 {
    --transform-translate-x: 12px !important;
  }

  .sm\:cl-translate-x-4 {
    --transform-translate-x: 16px !important;
  }

  .sm\:cl-translate-x-5 {
    --transform-translate-x: 20px !important;
  }

  .sm\:cl-translate-x-6 {
    --transform-translate-x: 24px !important;
  }

  .sm\:cl-translate-x-8 {
    --transform-translate-x: 32px !important;
  }

  .sm\:cl-translate-x-10 {
    --transform-translate-x: 40px !important;
  }

  .sm\:cl-translate-x-12 {
    --transform-translate-x: 48px !important;
  }

  .sm\:cl-translate-x-16 {
    --transform-translate-x: 64px !important;
  }

  .sm\:cl-translate-x-20 {
    --transform-translate-x: 80px !important;
  }

  .sm\:cl-translate-x-24 {
    --transform-translate-x: 96px !important;
  }

  .sm\:cl-translate-x-26 {
    --transform-translate-x: 100px !important;
  }

  .sm\:cl-translate-x-28 {
    --transform-translate-x: 110px !important;
  }

  .sm\:cl-translate-x-32 {
    --transform-translate-x: 128px !important;
  }

  .sm\:cl-translate-x-40 {
    --transform-translate-x: 160px !important;
  }

  .sm\:cl-translate-x-48 {
    --transform-translate-x: 192px !important;
  }

  .sm\:cl-translate-x-56 {
    --transform-translate-x: 224px !important;
  }

  .sm\:cl-translate-x-64 {
    --transform-translate-x: 256px !important;
  }

  .sm\:cl-translate-x-px {
    --transform-translate-x: 1px !important;
  }

  .sm\:cl--translate-x-1 {
    --transform-translate-x: -4px !important;
  }

  .sm\:cl--translate-x-2 {
    --transform-translate-x: -8px !important;
  }

  .sm\:cl--translate-x-3 {
    --transform-translate-x: -12px !important;
  }

  .sm\:cl--translate-x-4 {
    --transform-translate-x: -16px !important;
  }

  .sm\:cl--translate-x-5 {
    --transform-translate-x: -20px !important;
  }

  .sm\:cl--translate-x-6 {
    --transform-translate-x: -24px !important;
  }

  .sm\:cl--translate-x-8 {
    --transform-translate-x: -32px !important;
  }

  .sm\:cl--translate-x-10 {
    --transform-translate-x: -40px !important;
  }

  .sm\:cl--translate-x-12 {
    --transform-translate-x: -48px !important;
  }

  .sm\:cl--translate-x-16 {
    --transform-translate-x: -64px !important;
  }

  .sm\:cl--translate-x-20 {
    --transform-translate-x: -80px !important;
  }

  .sm\:cl--translate-x-24 {
    --transform-translate-x: -96px !important;
  }

  .sm\:cl--translate-x-26 {
    --transform-translate-x: -100px !important;
  }

  .sm\:cl--translate-x-28 {
    --transform-translate-x: -110px !important;
  }

  .sm\:cl--translate-x-32 {
    --transform-translate-x: -128px !important;
  }

  .sm\:cl--translate-x-40 {
    --transform-translate-x: -160px !important;
  }

  .sm\:cl--translate-x-48 {
    --transform-translate-x: -192px !important;
  }

  .sm\:cl--translate-x-56 {
    --transform-translate-x: -224px !important;
  }

  .sm\:cl--translate-x-64 {
    --transform-translate-x: -256px !important;
  }

  .sm\:cl--translate-x-px {
    --transform-translate-x: -1px !important;
  }

  .sm\:cl--translate-x-full {
    --transform-translate-x: -100% !important;
  }

  .sm\:cl--translate-x-1\/2 {
    --transform-translate-x: -50% !important;
  }

  .sm\:cl-translate-x-1\/2 {
    --transform-translate-x: 50% !important;
  }

  .sm\:cl-translate-x-full {
    --transform-translate-x: 100% !important;
  }

  .sm\:cl-translate-y-0 {
    --transform-translate-y: 0 !important;
  }

  .sm\:cl-translate-y-1 {
    --transform-translate-y: 4px !important;
  }

  .sm\:cl-translate-y-2 {
    --transform-translate-y: 8px !important;
  }

  .sm\:cl-translate-y-3 {
    --transform-translate-y: 12px !important;
  }

  .sm\:cl-translate-y-4 {
    --transform-translate-y: 16px !important;
  }

  .sm\:cl-translate-y-5 {
    --transform-translate-y: 20px !important;
  }

  .sm\:cl-translate-y-6 {
    --transform-translate-y: 24px !important;
  }

  .sm\:cl-translate-y-8 {
    --transform-translate-y: 32px !important;
  }

  .sm\:cl-translate-y-10 {
    --transform-translate-y: 40px !important;
  }

  .sm\:cl-translate-y-12 {
    --transform-translate-y: 48px !important;
  }

  .sm\:cl-translate-y-16 {
    --transform-translate-y: 64px !important;
  }

  .sm\:cl-translate-y-20 {
    --transform-translate-y: 80px !important;
  }

  .sm\:cl-translate-y-24 {
    --transform-translate-y: 96px !important;
  }

  .sm\:cl-translate-y-26 {
    --transform-translate-y: 100px !important;
  }

  .sm\:cl-translate-y-28 {
    --transform-translate-y: 110px !important;
  }

  .sm\:cl-translate-y-32 {
    --transform-translate-y: 128px !important;
  }

  .sm\:cl-translate-y-40 {
    --transform-translate-y: 160px !important;
  }

  .sm\:cl-translate-y-48 {
    --transform-translate-y: 192px !important;
  }

  .sm\:cl-translate-y-56 {
    --transform-translate-y: 224px !important;
  }

  .sm\:cl-translate-y-64 {
    --transform-translate-y: 256px !important;
  }

  .sm\:cl-translate-y-px {
    --transform-translate-y: 1px !important;
  }

  .sm\:cl--translate-y-1 {
    --transform-translate-y: -4px !important;
  }

  .sm\:cl--translate-y-2 {
    --transform-translate-y: -8px !important;
  }

  .sm\:cl--translate-y-3 {
    --transform-translate-y: -12px !important;
  }

  .sm\:cl--translate-y-4 {
    --transform-translate-y: -16px !important;
  }

  .sm\:cl--translate-y-5 {
    --transform-translate-y: -20px !important;
  }

  .sm\:cl--translate-y-6 {
    --transform-translate-y: -24px !important;
  }

  .sm\:cl--translate-y-8 {
    --transform-translate-y: -32px !important;
  }

  .sm\:cl--translate-y-10 {
    --transform-translate-y: -40px !important;
  }

  .sm\:cl--translate-y-12 {
    --transform-translate-y: -48px !important;
  }

  .sm\:cl--translate-y-16 {
    --transform-translate-y: -64px !important;
  }

  .sm\:cl--translate-y-20 {
    --transform-translate-y: -80px !important;
  }

  .sm\:cl--translate-y-24 {
    --transform-translate-y: -96px !important;
  }

  .sm\:cl--translate-y-26 {
    --transform-translate-y: -100px !important;
  }

  .sm\:cl--translate-y-28 {
    --transform-translate-y: -110px !important;
  }

  .sm\:cl--translate-y-32 {
    --transform-translate-y: -128px !important;
  }

  .sm\:cl--translate-y-40 {
    --transform-translate-y: -160px !important;
  }

  .sm\:cl--translate-y-48 {
    --transform-translate-y: -192px !important;
  }

  .sm\:cl--translate-y-56 {
    --transform-translate-y: -224px !important;
  }

  .sm\:cl--translate-y-64 {
    --transform-translate-y: -256px !important;
  }

  .sm\:cl--translate-y-px {
    --transform-translate-y: -1px !important;
  }

  .sm\:cl--translate-y-full {
    --transform-translate-y: -100% !important;
  }

  .sm\:cl--translate-y-1\/2 {
    --transform-translate-y: -50% !important;
  }

  .sm\:cl-translate-y-1\/2 {
    --transform-translate-y: 50% !important;
  }

  .sm\:cl-translate-y-full {
    --transform-translate-y: 100% !important;
  }

  .sm\:hover\:cl-translate-x-0:hover {
    --transform-translate-x: 0 !important;
  }

  .sm\:hover\:cl-translate-x-1:hover {
    --transform-translate-x: 4px !important;
  }

  .sm\:hover\:cl-translate-x-2:hover {
    --transform-translate-x: 8px !important;
  }

  .sm\:hover\:cl-translate-x-3:hover {
    --transform-translate-x: 12px !important;
  }

  .sm\:hover\:cl-translate-x-4:hover {
    --transform-translate-x: 16px !important;
  }

  .sm\:hover\:cl-translate-x-5:hover {
    --transform-translate-x: 20px !important;
  }

  .sm\:hover\:cl-translate-x-6:hover {
    --transform-translate-x: 24px !important;
  }

  .sm\:hover\:cl-translate-x-8:hover {
    --transform-translate-x: 32px !important;
  }

  .sm\:hover\:cl-translate-x-10:hover {
    --transform-translate-x: 40px !important;
  }

  .sm\:hover\:cl-translate-x-12:hover {
    --transform-translate-x: 48px !important;
  }

  .sm\:hover\:cl-translate-x-16:hover {
    --transform-translate-x: 64px !important;
  }

  .sm\:hover\:cl-translate-x-20:hover {
    --transform-translate-x: 80px !important;
  }

  .sm\:hover\:cl-translate-x-24:hover {
    --transform-translate-x: 96px !important;
  }

  .sm\:hover\:cl-translate-x-26:hover {
    --transform-translate-x: 100px !important;
  }

  .sm\:hover\:cl-translate-x-28:hover {
    --transform-translate-x: 110px !important;
  }

  .sm\:hover\:cl-translate-x-32:hover {
    --transform-translate-x: 128px !important;
  }

  .sm\:hover\:cl-translate-x-40:hover {
    --transform-translate-x: 160px !important;
  }

  .sm\:hover\:cl-translate-x-48:hover {
    --transform-translate-x: 192px !important;
  }

  .sm\:hover\:cl-translate-x-56:hover {
    --transform-translate-x: 224px !important;
  }

  .sm\:hover\:cl-translate-x-64:hover {
    --transform-translate-x: 256px !important;
  }

  .sm\:hover\:cl-translate-x-px:hover {
    --transform-translate-x: 1px !important;
  }

  .sm\:hover\:cl--translate-x-1:hover {
    --transform-translate-x: -4px !important;
  }

  .sm\:hover\:cl--translate-x-2:hover {
    --transform-translate-x: -8px !important;
  }

  .sm\:hover\:cl--translate-x-3:hover {
    --transform-translate-x: -12px !important;
  }

  .sm\:hover\:cl--translate-x-4:hover {
    --transform-translate-x: -16px !important;
  }

  .sm\:hover\:cl--translate-x-5:hover {
    --transform-translate-x: -20px !important;
  }

  .sm\:hover\:cl--translate-x-6:hover {
    --transform-translate-x: -24px !important;
  }

  .sm\:hover\:cl--translate-x-8:hover {
    --transform-translate-x: -32px !important;
  }

  .sm\:hover\:cl--translate-x-10:hover {
    --transform-translate-x: -40px !important;
  }

  .sm\:hover\:cl--translate-x-12:hover {
    --transform-translate-x: -48px !important;
  }

  .sm\:hover\:cl--translate-x-16:hover {
    --transform-translate-x: -64px !important;
  }

  .sm\:hover\:cl--translate-x-20:hover {
    --transform-translate-x: -80px !important;
  }

  .sm\:hover\:cl--translate-x-24:hover {
    --transform-translate-x: -96px !important;
  }

  .sm\:hover\:cl--translate-x-26:hover {
    --transform-translate-x: -100px !important;
  }

  .sm\:hover\:cl--translate-x-28:hover {
    --transform-translate-x: -110px !important;
  }

  .sm\:hover\:cl--translate-x-32:hover {
    --transform-translate-x: -128px !important;
  }

  .sm\:hover\:cl--translate-x-40:hover {
    --transform-translate-x: -160px !important;
  }

  .sm\:hover\:cl--translate-x-48:hover {
    --transform-translate-x: -192px !important;
  }

  .sm\:hover\:cl--translate-x-56:hover {
    --transform-translate-x: -224px !important;
  }

  .sm\:hover\:cl--translate-x-64:hover {
    --transform-translate-x: -256px !important;
  }

  .sm\:hover\:cl--translate-x-px:hover {
    --transform-translate-x: -1px !important;
  }

  .sm\:hover\:cl--translate-x-full:hover {
    --transform-translate-x: -100% !important;
  }

  .sm\:hover\:cl--translate-x-1\/2:hover {
    --transform-translate-x: -50% !important;
  }

  .sm\:hover\:cl-translate-x-1\/2:hover {
    --transform-translate-x: 50% !important;
  }

  .sm\:hover\:cl-translate-x-full:hover {
    --transform-translate-x: 100% !important;
  }

  .sm\:hover\:cl-translate-y-0:hover {
    --transform-translate-y: 0 !important;
  }

  .sm\:hover\:cl-translate-y-1:hover {
    --transform-translate-y: 4px !important;
  }

  .sm\:hover\:cl-translate-y-2:hover {
    --transform-translate-y: 8px !important;
  }

  .sm\:hover\:cl-translate-y-3:hover {
    --transform-translate-y: 12px !important;
  }

  .sm\:hover\:cl-translate-y-4:hover {
    --transform-translate-y: 16px !important;
  }

  .sm\:hover\:cl-translate-y-5:hover {
    --transform-translate-y: 20px !important;
  }

  .sm\:hover\:cl-translate-y-6:hover {
    --transform-translate-y: 24px !important;
  }

  .sm\:hover\:cl-translate-y-8:hover {
    --transform-translate-y: 32px !important;
  }

  .sm\:hover\:cl-translate-y-10:hover {
    --transform-translate-y: 40px !important;
  }

  .sm\:hover\:cl-translate-y-12:hover {
    --transform-translate-y: 48px !important;
  }

  .sm\:hover\:cl-translate-y-16:hover {
    --transform-translate-y: 64px !important;
  }

  .sm\:hover\:cl-translate-y-20:hover {
    --transform-translate-y: 80px !important;
  }

  .sm\:hover\:cl-translate-y-24:hover {
    --transform-translate-y: 96px !important;
  }

  .sm\:hover\:cl-translate-y-26:hover {
    --transform-translate-y: 100px !important;
  }

  .sm\:hover\:cl-translate-y-28:hover {
    --transform-translate-y: 110px !important;
  }

  .sm\:hover\:cl-translate-y-32:hover {
    --transform-translate-y: 128px !important;
  }

  .sm\:hover\:cl-translate-y-40:hover {
    --transform-translate-y: 160px !important;
  }

  .sm\:hover\:cl-translate-y-48:hover {
    --transform-translate-y: 192px !important;
  }

  .sm\:hover\:cl-translate-y-56:hover {
    --transform-translate-y: 224px !important;
  }

  .sm\:hover\:cl-translate-y-64:hover {
    --transform-translate-y: 256px !important;
  }

  .sm\:hover\:cl-translate-y-px:hover {
    --transform-translate-y: 1px !important;
  }

  .sm\:hover\:cl--translate-y-1:hover {
    --transform-translate-y: -4px !important;
  }

  .sm\:hover\:cl--translate-y-2:hover {
    --transform-translate-y: -8px !important;
  }

  .sm\:hover\:cl--translate-y-3:hover {
    --transform-translate-y: -12px !important;
  }

  .sm\:hover\:cl--translate-y-4:hover {
    --transform-translate-y: -16px !important;
  }

  .sm\:hover\:cl--translate-y-5:hover {
    --transform-translate-y: -20px !important;
  }

  .sm\:hover\:cl--translate-y-6:hover {
    --transform-translate-y: -24px !important;
  }

  .sm\:hover\:cl--translate-y-8:hover {
    --transform-translate-y: -32px !important;
  }

  .sm\:hover\:cl--translate-y-10:hover {
    --transform-translate-y: -40px !important;
  }

  .sm\:hover\:cl--translate-y-12:hover {
    --transform-translate-y: -48px !important;
  }

  .sm\:hover\:cl--translate-y-16:hover {
    --transform-translate-y: -64px !important;
  }

  .sm\:hover\:cl--translate-y-20:hover {
    --transform-translate-y: -80px !important;
  }

  .sm\:hover\:cl--translate-y-24:hover {
    --transform-translate-y: -96px !important;
  }

  .sm\:hover\:cl--translate-y-26:hover {
    --transform-translate-y: -100px !important;
  }

  .sm\:hover\:cl--translate-y-28:hover {
    --transform-translate-y: -110px !important;
  }

  .sm\:hover\:cl--translate-y-32:hover {
    --transform-translate-y: -128px !important;
  }

  .sm\:hover\:cl--translate-y-40:hover {
    --transform-translate-y: -160px !important;
  }

  .sm\:hover\:cl--translate-y-48:hover {
    --transform-translate-y: -192px !important;
  }

  .sm\:hover\:cl--translate-y-56:hover {
    --transform-translate-y: -224px !important;
  }

  .sm\:hover\:cl--translate-y-64:hover {
    --transform-translate-y: -256px !important;
  }

  .sm\:hover\:cl--translate-y-px:hover {
    --transform-translate-y: -1px !important;
  }

  .sm\:hover\:cl--translate-y-full:hover {
    --transform-translate-y: -100% !important;
  }

  .sm\:hover\:cl--translate-y-1\/2:hover {
    --transform-translate-y: -50% !important;
  }

  .sm\:hover\:cl-translate-y-1\/2:hover {
    --transform-translate-y: 50% !important;
  }

  .sm\:hover\:cl-translate-y-full:hover {
    --transform-translate-y: 100% !important;
  }

  .sm\:focus\:cl-translate-x-0:focus {
    --transform-translate-x: 0 !important;
  }

  .sm\:focus\:cl-translate-x-1:focus {
    --transform-translate-x: 4px !important;
  }

  .sm\:focus\:cl-translate-x-2:focus {
    --transform-translate-x: 8px !important;
  }

  .sm\:focus\:cl-translate-x-3:focus {
    --transform-translate-x: 12px !important;
  }

  .sm\:focus\:cl-translate-x-4:focus {
    --transform-translate-x: 16px !important;
  }

  .sm\:focus\:cl-translate-x-5:focus {
    --transform-translate-x: 20px !important;
  }

  .sm\:focus\:cl-translate-x-6:focus {
    --transform-translate-x: 24px !important;
  }

  .sm\:focus\:cl-translate-x-8:focus {
    --transform-translate-x: 32px !important;
  }

  .sm\:focus\:cl-translate-x-10:focus {
    --transform-translate-x: 40px !important;
  }

  .sm\:focus\:cl-translate-x-12:focus {
    --transform-translate-x: 48px !important;
  }

  .sm\:focus\:cl-translate-x-16:focus {
    --transform-translate-x: 64px !important;
  }

  .sm\:focus\:cl-translate-x-20:focus {
    --transform-translate-x: 80px !important;
  }

  .sm\:focus\:cl-translate-x-24:focus {
    --transform-translate-x: 96px !important;
  }

  .sm\:focus\:cl-translate-x-26:focus {
    --transform-translate-x: 100px !important;
  }

  .sm\:focus\:cl-translate-x-28:focus {
    --transform-translate-x: 110px !important;
  }

  .sm\:focus\:cl-translate-x-32:focus {
    --transform-translate-x: 128px !important;
  }

  .sm\:focus\:cl-translate-x-40:focus {
    --transform-translate-x: 160px !important;
  }

  .sm\:focus\:cl-translate-x-48:focus {
    --transform-translate-x: 192px !important;
  }

  .sm\:focus\:cl-translate-x-56:focus {
    --transform-translate-x: 224px !important;
  }

  .sm\:focus\:cl-translate-x-64:focus {
    --transform-translate-x: 256px !important;
  }

  .sm\:focus\:cl-translate-x-px:focus {
    --transform-translate-x: 1px !important;
  }

  .sm\:focus\:cl--translate-x-1:focus {
    --transform-translate-x: -4px !important;
  }

  .sm\:focus\:cl--translate-x-2:focus {
    --transform-translate-x: -8px !important;
  }

  .sm\:focus\:cl--translate-x-3:focus {
    --transform-translate-x: -12px !important;
  }

  .sm\:focus\:cl--translate-x-4:focus {
    --transform-translate-x: -16px !important;
  }

  .sm\:focus\:cl--translate-x-5:focus {
    --transform-translate-x: -20px !important;
  }

  .sm\:focus\:cl--translate-x-6:focus {
    --transform-translate-x: -24px !important;
  }

  .sm\:focus\:cl--translate-x-8:focus {
    --transform-translate-x: -32px !important;
  }

  .sm\:focus\:cl--translate-x-10:focus {
    --transform-translate-x: -40px !important;
  }

  .sm\:focus\:cl--translate-x-12:focus {
    --transform-translate-x: -48px !important;
  }

  .sm\:focus\:cl--translate-x-16:focus {
    --transform-translate-x: -64px !important;
  }

  .sm\:focus\:cl--translate-x-20:focus {
    --transform-translate-x: -80px !important;
  }

  .sm\:focus\:cl--translate-x-24:focus {
    --transform-translate-x: -96px !important;
  }

  .sm\:focus\:cl--translate-x-26:focus {
    --transform-translate-x: -100px !important;
  }

  .sm\:focus\:cl--translate-x-28:focus {
    --transform-translate-x: -110px !important;
  }

  .sm\:focus\:cl--translate-x-32:focus {
    --transform-translate-x: -128px !important;
  }

  .sm\:focus\:cl--translate-x-40:focus {
    --transform-translate-x: -160px !important;
  }

  .sm\:focus\:cl--translate-x-48:focus {
    --transform-translate-x: -192px !important;
  }

  .sm\:focus\:cl--translate-x-56:focus {
    --transform-translate-x: -224px !important;
  }

  .sm\:focus\:cl--translate-x-64:focus {
    --transform-translate-x: -256px !important;
  }

  .sm\:focus\:cl--translate-x-px:focus {
    --transform-translate-x: -1px !important;
  }

  .sm\:focus\:cl--translate-x-full:focus {
    --transform-translate-x: -100% !important;
  }

  .sm\:focus\:cl--translate-x-1\/2:focus {
    --transform-translate-x: -50% !important;
  }

  .sm\:focus\:cl-translate-x-1\/2:focus {
    --transform-translate-x: 50% !important;
  }

  .sm\:focus\:cl-translate-x-full:focus {
    --transform-translate-x: 100% !important;
  }

  .sm\:focus\:cl-translate-y-0:focus {
    --transform-translate-y: 0 !important;
  }

  .sm\:focus\:cl-translate-y-1:focus {
    --transform-translate-y: 4px !important;
  }

  .sm\:focus\:cl-translate-y-2:focus {
    --transform-translate-y: 8px !important;
  }

  .sm\:focus\:cl-translate-y-3:focus {
    --transform-translate-y: 12px !important;
  }

  .sm\:focus\:cl-translate-y-4:focus {
    --transform-translate-y: 16px !important;
  }

  .sm\:focus\:cl-translate-y-5:focus {
    --transform-translate-y: 20px !important;
  }

  .sm\:focus\:cl-translate-y-6:focus {
    --transform-translate-y: 24px !important;
  }

  .sm\:focus\:cl-translate-y-8:focus {
    --transform-translate-y: 32px !important;
  }

  .sm\:focus\:cl-translate-y-10:focus {
    --transform-translate-y: 40px !important;
  }

  .sm\:focus\:cl-translate-y-12:focus {
    --transform-translate-y: 48px !important;
  }

  .sm\:focus\:cl-translate-y-16:focus {
    --transform-translate-y: 64px !important;
  }

  .sm\:focus\:cl-translate-y-20:focus {
    --transform-translate-y: 80px !important;
  }

  .sm\:focus\:cl-translate-y-24:focus {
    --transform-translate-y: 96px !important;
  }

  .sm\:focus\:cl-translate-y-26:focus {
    --transform-translate-y: 100px !important;
  }

  .sm\:focus\:cl-translate-y-28:focus {
    --transform-translate-y: 110px !important;
  }

  .sm\:focus\:cl-translate-y-32:focus {
    --transform-translate-y: 128px !important;
  }

  .sm\:focus\:cl-translate-y-40:focus {
    --transform-translate-y: 160px !important;
  }

  .sm\:focus\:cl-translate-y-48:focus {
    --transform-translate-y: 192px !important;
  }

  .sm\:focus\:cl-translate-y-56:focus {
    --transform-translate-y: 224px !important;
  }

  .sm\:focus\:cl-translate-y-64:focus {
    --transform-translate-y: 256px !important;
  }

  .sm\:focus\:cl-translate-y-px:focus {
    --transform-translate-y: 1px !important;
  }

  .sm\:focus\:cl--translate-y-1:focus {
    --transform-translate-y: -4px !important;
  }

  .sm\:focus\:cl--translate-y-2:focus {
    --transform-translate-y: -8px !important;
  }

  .sm\:focus\:cl--translate-y-3:focus {
    --transform-translate-y: -12px !important;
  }

  .sm\:focus\:cl--translate-y-4:focus {
    --transform-translate-y: -16px !important;
  }

  .sm\:focus\:cl--translate-y-5:focus {
    --transform-translate-y: -20px !important;
  }

  .sm\:focus\:cl--translate-y-6:focus {
    --transform-translate-y: -24px !important;
  }

  .sm\:focus\:cl--translate-y-8:focus {
    --transform-translate-y: -32px !important;
  }

  .sm\:focus\:cl--translate-y-10:focus {
    --transform-translate-y: -40px !important;
  }

  .sm\:focus\:cl--translate-y-12:focus {
    --transform-translate-y: -48px !important;
  }

  .sm\:focus\:cl--translate-y-16:focus {
    --transform-translate-y: -64px !important;
  }

  .sm\:focus\:cl--translate-y-20:focus {
    --transform-translate-y: -80px !important;
  }

  .sm\:focus\:cl--translate-y-24:focus {
    --transform-translate-y: -96px !important;
  }

  .sm\:focus\:cl--translate-y-26:focus {
    --transform-translate-y: -100px !important;
  }

  .sm\:focus\:cl--translate-y-28:focus {
    --transform-translate-y: -110px !important;
  }

  .sm\:focus\:cl--translate-y-32:focus {
    --transform-translate-y: -128px !important;
  }

  .sm\:focus\:cl--translate-y-40:focus {
    --transform-translate-y: -160px !important;
  }

  .sm\:focus\:cl--translate-y-48:focus {
    --transform-translate-y: -192px !important;
  }

  .sm\:focus\:cl--translate-y-56:focus {
    --transform-translate-y: -224px !important;
  }

  .sm\:focus\:cl--translate-y-64:focus {
    --transform-translate-y: -256px !important;
  }

  .sm\:focus\:cl--translate-y-px:focus {
    --transform-translate-y: -1px !important;
  }

  .sm\:focus\:cl--translate-y-full:focus {
    --transform-translate-y: -100% !important;
  }

  .sm\:focus\:cl--translate-y-1\/2:focus {
    --transform-translate-y: -50% !important;
  }

  .sm\:focus\:cl-translate-y-1\/2:focus {
    --transform-translate-y: 50% !important;
  }

  .sm\:focus\:cl-translate-y-full:focus {
    --transform-translate-y: 100% !important;
  }

  .sm\:cl-skew-x-0 {
    --transform-skew-x: 0 !important;
  }

  .sm\:cl-skew-x-1 {
    --transform-skew-x: 1deg !important;
  }

  .sm\:cl-skew-x-2 {
    --transform-skew-x: 2deg !important;
  }

  .sm\:cl-skew-x-3 {
    --transform-skew-x: 3deg !important;
  }

  .sm\:cl-skew-x-6 {
    --transform-skew-x: 6deg !important;
  }

  .sm\:cl-skew-x-12 {
    --transform-skew-x: 12deg !important;
  }

  .sm\:cl--skew-x-12 {
    --transform-skew-x: -12deg !important;
  }

  .sm\:cl--skew-x-6 {
    --transform-skew-x: -6deg !important;
  }

  .sm\:cl--skew-x-3 {
    --transform-skew-x: -3deg !important;
  }

  .sm\:cl--skew-x-2 {
    --transform-skew-x: -2deg !important;
  }

  .sm\:cl--skew-x-1 {
    --transform-skew-x: -1deg !important;
  }

  .sm\:cl-skew-y-0 {
    --transform-skew-y: 0 !important;
  }

  .sm\:cl-skew-y-1 {
    --transform-skew-y: 1deg !important;
  }

  .sm\:cl-skew-y-2 {
    --transform-skew-y: 2deg !important;
  }

  .sm\:cl-skew-y-3 {
    --transform-skew-y: 3deg !important;
  }

  .sm\:cl-skew-y-6 {
    --transform-skew-y: 6deg !important;
  }

  .sm\:cl-skew-y-12 {
    --transform-skew-y: 12deg !important;
  }

  .sm\:cl--skew-y-12 {
    --transform-skew-y: -12deg !important;
  }

  .sm\:cl--skew-y-6 {
    --transform-skew-y: -6deg !important;
  }

  .sm\:cl--skew-y-3 {
    --transform-skew-y: -3deg !important;
  }

  .sm\:cl--skew-y-2 {
    --transform-skew-y: -2deg !important;
  }

  .sm\:cl--skew-y-1 {
    --transform-skew-y: -1deg !important;
  }

  .sm\:hover\:cl-skew-x-0:hover {
    --transform-skew-x: 0 !important;
  }

  .sm\:hover\:cl-skew-x-1:hover {
    --transform-skew-x: 1deg !important;
  }

  .sm\:hover\:cl-skew-x-2:hover {
    --transform-skew-x: 2deg !important;
  }

  .sm\:hover\:cl-skew-x-3:hover {
    --transform-skew-x: 3deg !important;
  }

  .sm\:hover\:cl-skew-x-6:hover {
    --transform-skew-x: 6deg !important;
  }

  .sm\:hover\:cl-skew-x-12:hover {
    --transform-skew-x: 12deg !important;
  }

  .sm\:hover\:cl--skew-x-12:hover {
    --transform-skew-x: -12deg !important;
  }

  .sm\:hover\:cl--skew-x-6:hover {
    --transform-skew-x: -6deg !important;
  }

  .sm\:hover\:cl--skew-x-3:hover {
    --transform-skew-x: -3deg !important;
  }

  .sm\:hover\:cl--skew-x-2:hover {
    --transform-skew-x: -2deg !important;
  }

  .sm\:hover\:cl--skew-x-1:hover {
    --transform-skew-x: -1deg !important;
  }

  .sm\:hover\:cl-skew-y-0:hover {
    --transform-skew-y: 0 !important;
  }

  .sm\:hover\:cl-skew-y-1:hover {
    --transform-skew-y: 1deg !important;
  }

  .sm\:hover\:cl-skew-y-2:hover {
    --transform-skew-y: 2deg !important;
  }

  .sm\:hover\:cl-skew-y-3:hover {
    --transform-skew-y: 3deg !important;
  }

  .sm\:hover\:cl-skew-y-6:hover {
    --transform-skew-y: 6deg !important;
  }

  .sm\:hover\:cl-skew-y-12:hover {
    --transform-skew-y: 12deg !important;
  }

  .sm\:hover\:cl--skew-y-12:hover {
    --transform-skew-y: -12deg !important;
  }

  .sm\:hover\:cl--skew-y-6:hover {
    --transform-skew-y: -6deg !important;
  }

  .sm\:hover\:cl--skew-y-3:hover {
    --transform-skew-y: -3deg !important;
  }

  .sm\:hover\:cl--skew-y-2:hover {
    --transform-skew-y: -2deg !important;
  }

  .sm\:hover\:cl--skew-y-1:hover {
    --transform-skew-y: -1deg !important;
  }

  .sm\:focus\:cl-skew-x-0:focus {
    --transform-skew-x: 0 !important;
  }

  .sm\:focus\:cl-skew-x-1:focus {
    --transform-skew-x: 1deg !important;
  }

  .sm\:focus\:cl-skew-x-2:focus {
    --transform-skew-x: 2deg !important;
  }

  .sm\:focus\:cl-skew-x-3:focus {
    --transform-skew-x: 3deg !important;
  }

  .sm\:focus\:cl-skew-x-6:focus {
    --transform-skew-x: 6deg !important;
  }

  .sm\:focus\:cl-skew-x-12:focus {
    --transform-skew-x: 12deg !important;
  }

  .sm\:focus\:cl--skew-x-12:focus {
    --transform-skew-x: -12deg !important;
  }

  .sm\:focus\:cl--skew-x-6:focus {
    --transform-skew-x: -6deg !important;
  }

  .sm\:focus\:cl--skew-x-3:focus {
    --transform-skew-x: -3deg !important;
  }

  .sm\:focus\:cl--skew-x-2:focus {
    --transform-skew-x: -2deg !important;
  }

  .sm\:focus\:cl--skew-x-1:focus {
    --transform-skew-x: -1deg !important;
  }

  .sm\:focus\:cl-skew-y-0:focus {
    --transform-skew-y: 0 !important;
  }

  .sm\:focus\:cl-skew-y-1:focus {
    --transform-skew-y: 1deg !important;
  }

  .sm\:focus\:cl-skew-y-2:focus {
    --transform-skew-y: 2deg !important;
  }

  .sm\:focus\:cl-skew-y-3:focus {
    --transform-skew-y: 3deg !important;
  }

  .sm\:focus\:cl-skew-y-6:focus {
    --transform-skew-y: 6deg !important;
  }

  .sm\:focus\:cl-skew-y-12:focus {
    --transform-skew-y: 12deg !important;
  }

  .sm\:focus\:cl--skew-y-12:focus {
    --transform-skew-y: -12deg !important;
  }

  .sm\:focus\:cl--skew-y-6:focus {
    --transform-skew-y: -6deg !important;
  }

  .sm\:focus\:cl--skew-y-3:focus {
    --transform-skew-y: -3deg !important;
  }

  .sm\:focus\:cl--skew-y-2:focus {
    --transform-skew-y: -2deg !important;
  }

  .sm\:focus\:cl--skew-y-1:focus {
    --transform-skew-y: -1deg !important;
  }

  .sm\:cl-transition-none {
    transition-property: none !important;
  }

  .sm\:cl-transition-all {
    transition-property: all !important;
  }

  .sm\:cl-transition {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
  }

  .sm\:cl-transition-colors {
    transition-property: background-color, border-color, color, fill, stroke !important;
  }

  .sm\:cl-transition-opacity {
    transition-property: opacity !important;
  }

  .sm\:cl-transition-shadow {
    transition-property: box-shadow !important;
  }

  .sm\:cl-transition-transform {
    transition-property: transform !important;
  }

  .sm\:cl-ease-linear {
    transition-timing-function: linear !important;
  }

  .sm\:cl-ease-in {
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important;
  }

  .sm\:cl-ease-out {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important;
  }

  .sm\:cl-ease-in-out {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .sm\:cl-duration-75 {
    transition-duration: 75ms !important;
  }

  .sm\:cl-duration-100 {
    transition-duration: 100ms !important;
  }

  .sm\:cl-duration-150 {
    transition-duration: 150ms !important;
  }

  .sm\:cl-duration-200 {
    transition-duration: 200ms !important;
  }

  .sm\:cl-duration-300 {
    transition-duration: 300ms !important;
  }

  .sm\:cl-duration-500 {
    transition-duration: 500ms !important;
  }

  .sm\:cl-duration-700 {
    transition-duration: 700ms !important;
  }

  .sm\:cl-duration-1000 {
    transition-duration: 1000ms !important;
  }

  .sm\:cl-delay-75 {
    transition-delay: 75ms !important;
  }

  .sm\:cl-delay-100 {
    transition-delay: 100ms !important;
  }

  .sm\:cl-delay-150 {
    transition-delay: 150ms !important;
  }

  .sm\:cl-delay-200 {
    transition-delay: 200ms !important;
  }

  .sm\:cl-delay-300 {
    transition-delay: 300ms !important;
  }

  .sm\:cl-delay-500 {
    transition-delay: 500ms !important;
  }

  .sm\:cl-delay-700 {
    transition-delay: 700ms !important;
  }

  .sm\:cl-delay-1000 {
    transition-delay: 1000ms !important;
  }

  .sm\:cl-animate-none {
    animation: none !important;
  }

  .sm\:cl-animate-spin {
    animation: spin 1s linear infinite !important;
  }

  .sm\:cl-animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
  }

  .sm\:cl-animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
  }

  .sm\:cl-animate-bounce {
    animation: bounce 1s infinite !important;
  }
}

@media (min-width: 768px) {
  .md\:cl-container {
    width: 100%;
  }

  @media (min-width: 640px) {
    .md\:cl-container {
      max-width: 640px;
    }
  }

  @media (min-width: 768px) {
    .md\:cl-container {
      max-width: 768px;
    }
  }

  @media (min-width: 1024px) {
    .md\:cl-container {
      max-width: 1024px;
    }
  }

  @media (min-width: 1280px) {
    .md\:cl-container {
      max-width: 1280px;
    }
  }

  .md\:cl-space-y-0 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--space-y-reverse)) !important;
  }

  .md\:cl-space-x-0 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl-space-y-1 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(4px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(4px * var(--space-y-reverse)) !important;
  }

  .md\:cl-space-x-1 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(4px * var(--space-x-reverse)) !important;
    margin-left: calc(4px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl-space-y-2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(8px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(8px * var(--space-y-reverse)) !important;
  }

  .md\:cl-space-x-2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(8px * var(--space-x-reverse)) !important;
    margin-left: calc(8px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl-space-y-3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(12px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(12px * var(--space-y-reverse)) !important;
  }

  .md\:cl-space-x-3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(12px * var(--space-x-reverse)) !important;
    margin-left: calc(12px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl-space-y-4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16px * var(--space-y-reverse)) !important;
  }

  .md\:cl-space-x-4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16px * var(--space-x-reverse)) !important;
    margin-left: calc(16px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl-space-y-5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(20px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(20px * var(--space-y-reverse)) !important;
  }

  .md\:cl-space-x-5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(20px * var(--space-x-reverse)) !important;
    margin-left: calc(20px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl-space-y-6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(24px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(24px * var(--space-y-reverse)) !important;
  }

  .md\:cl-space-x-6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(24px * var(--space-x-reverse)) !important;
    margin-left: calc(24px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl-space-y-8 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(32px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(32px * var(--space-y-reverse)) !important;
  }

  .md\:cl-space-x-8 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(32px * var(--space-x-reverse)) !important;
    margin-left: calc(32px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl-space-y-10 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(40px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(40px * var(--space-y-reverse)) !important;
  }

  .md\:cl-space-x-10 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(40px * var(--space-x-reverse)) !important;
    margin-left: calc(40px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl-space-y-12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(48px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(48px * var(--space-y-reverse)) !important;
  }

  .md\:cl-space-x-12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(48px * var(--space-x-reverse)) !important;
    margin-left: calc(48px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl-space-y-16 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(64px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(64px * var(--space-y-reverse)) !important;
  }

  .md\:cl-space-x-16 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(64px * var(--space-x-reverse)) !important;
    margin-left: calc(64px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl-space-y-20 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(80px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(80px * var(--space-y-reverse)) !important;
  }

  .md\:cl-space-x-20 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(80px * var(--space-x-reverse)) !important;
    margin-left: calc(80px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl-space-y-24 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(96px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(96px * var(--space-y-reverse)) !important;
  }

  .md\:cl-space-x-24 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(96px * var(--space-x-reverse)) !important;
    margin-left: calc(96px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl-space-y-26 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(100px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(100px * var(--space-y-reverse)) !important;
  }

  .md\:cl-space-x-26 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(100px * var(--space-x-reverse)) !important;
    margin-left: calc(100px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl-space-y-28 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(110px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(110px * var(--space-y-reverse)) !important;
  }

  .md\:cl-space-x-28 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(110px * var(--space-x-reverse)) !important;
    margin-left: calc(110px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl-space-y-32 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(128px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(128px * var(--space-y-reverse)) !important;
  }

  .md\:cl-space-x-32 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(128px * var(--space-x-reverse)) !important;
    margin-left: calc(128px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl-space-y-40 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(160px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(160px * var(--space-y-reverse)) !important;
  }

  .md\:cl-space-x-40 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(160px * var(--space-x-reverse)) !important;
    margin-left: calc(160px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl-space-y-48 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(192px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(192px * var(--space-y-reverse)) !important;
  }

  .md\:cl-space-x-48 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(192px * var(--space-x-reverse)) !important;
    margin-left: calc(192px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl-space-y-56 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(224px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(224px * var(--space-y-reverse)) !important;
  }

  .md\:cl-space-x-56 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(224px * var(--space-x-reverse)) !important;
    margin-left: calc(224px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl-space-y-64 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(256px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(256px * var(--space-y-reverse)) !important;
  }

  .md\:cl-space-x-64 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(256px * var(--space-x-reverse)) !important;
    margin-left: calc(256px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl-space-y-px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1px * var(--space-y-reverse)) !important;
  }

  .md\:cl-space-x-px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1px * var(--space-x-reverse)) !important;
    margin-left: calc(1px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl--space-y-1 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-4px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-4px * var(--space-y-reverse)) !important;
  }

  .md\:cl--space-x-1 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-4px * var(--space-x-reverse)) !important;
    margin-left: calc(-4px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl--space-y-2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-8px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-8px * var(--space-y-reverse)) !important;
  }

  .md\:cl--space-x-2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-8px * var(--space-x-reverse)) !important;
    margin-left: calc(-8px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl--space-y-3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-12px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-12px * var(--space-y-reverse)) !important;
  }

  .md\:cl--space-x-3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-12px * var(--space-x-reverse)) !important;
    margin-left: calc(-12px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl--space-y-4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16px * var(--space-y-reverse)) !important;
  }

  .md\:cl--space-x-4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16px * var(--space-x-reverse)) !important;
    margin-left: calc(-16px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl--space-y-5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-20px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-20px * var(--space-y-reverse)) !important;
  }

  .md\:cl--space-x-5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-20px * var(--space-x-reverse)) !important;
    margin-left: calc(-20px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl--space-y-6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-24px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-24px * var(--space-y-reverse)) !important;
  }

  .md\:cl--space-x-6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-24px * var(--space-x-reverse)) !important;
    margin-left: calc(-24px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl--space-y-8 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-32px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-32px * var(--space-y-reverse)) !important;
  }

  .md\:cl--space-x-8 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-32px * var(--space-x-reverse)) !important;
    margin-left: calc(-32px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl--space-y-10 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-40px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-40px * var(--space-y-reverse)) !important;
  }

  .md\:cl--space-x-10 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-40px * var(--space-x-reverse)) !important;
    margin-left: calc(-40px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl--space-y-12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-48px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-48px * var(--space-y-reverse)) !important;
  }

  .md\:cl--space-x-12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-48px * var(--space-x-reverse)) !important;
    margin-left: calc(-48px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl--space-y-16 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-64px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-64px * var(--space-y-reverse)) !important;
  }

  .md\:cl--space-x-16 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-64px * var(--space-x-reverse)) !important;
    margin-left: calc(-64px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl--space-y-20 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-80px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-80px * var(--space-y-reverse)) !important;
  }

  .md\:cl--space-x-20 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-80px * var(--space-x-reverse)) !important;
    margin-left: calc(-80px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl--space-y-24 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-96px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-96px * var(--space-y-reverse)) !important;
  }

  .md\:cl--space-x-24 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-96px * var(--space-x-reverse)) !important;
    margin-left: calc(-96px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl--space-y-26 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-100px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-100px * var(--space-y-reverse)) !important;
  }

  .md\:cl--space-x-26 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-100px * var(--space-x-reverse)) !important;
    margin-left: calc(-100px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl--space-y-28 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-110px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-110px * var(--space-y-reverse)) !important;
  }

  .md\:cl--space-x-28 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-110px * var(--space-x-reverse)) !important;
    margin-left: calc(-110px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl--space-y-32 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-128px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-128px * var(--space-y-reverse)) !important;
  }

  .md\:cl--space-x-32 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-128px * var(--space-x-reverse)) !important;
    margin-left: calc(-128px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl--space-y-40 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-160px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-160px * var(--space-y-reverse)) !important;
  }

  .md\:cl--space-x-40 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-160px * var(--space-x-reverse)) !important;
    margin-left: calc(-160px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl--space-y-48 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-192px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-192px * var(--space-y-reverse)) !important;
  }

  .md\:cl--space-x-48 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-192px * var(--space-x-reverse)) !important;
    margin-left: calc(-192px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl--space-y-56 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-224px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-224px * var(--space-y-reverse)) !important;
  }

  .md\:cl--space-x-56 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-224px * var(--space-x-reverse)) !important;
    margin-left: calc(-224px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl--space-y-64 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-256px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-256px * var(--space-y-reverse)) !important;
  }

  .md\:cl--space-x-64 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-256px * var(--space-x-reverse)) !important;
    margin-left: calc(-256px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl--space-y-px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1px * var(--space-y-reverse)) !important;
  }

  .md\:cl--space-x-px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1px * var(--space-x-reverse)) !important;
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse))) !important;
  }

  .md\:cl-space-y-reverse > :not(template) ~ :not(template) {
    --space-y-reverse: 1 !important;
  }

  .md\:cl-space-x-reverse > :not(template) ~ :not(template) {
    --space-x-reverse: 1 !important;
  }

  .md\:cl-divide-y-0 > :not(template) ~ :not(template) {
    --divide-y-reverse: 0 !important;
    border-top-width: calc(0px * calc(1 - var(--divide-y-reverse))) !important;
    border-bottom-width: calc(0px * var(--divide-y-reverse)) !important;
  }

  .md\:cl-divide-x-0 > :not(template) ~ :not(template) {
    --divide-x-reverse: 0 !important;
    border-right-width: calc(0px * var(--divide-x-reverse)) !important;
    border-left-width: calc(0px * calc(1 - var(--divide-x-reverse))) !important;
  }

  .md\:cl-divide-y-2 > :not(template) ~ :not(template) {
    --divide-y-reverse: 0 !important;
    border-top-width: calc(2px * calc(1 - var(--divide-y-reverse))) !important;
    border-bottom-width: calc(2px * var(--divide-y-reverse)) !important;
  }

  .md\:cl-divide-x-2 > :not(template) ~ :not(template) {
    --divide-x-reverse: 0 !important;
    border-right-width: calc(2px * var(--divide-x-reverse)) !important;
    border-left-width: calc(2px * calc(1 - var(--divide-x-reverse))) !important;
  }

  .md\:cl-divide-y-4 > :not(template) ~ :not(template) {
    --divide-y-reverse: 0 !important;
    border-top-width: calc(4px * calc(1 - var(--divide-y-reverse))) !important;
    border-bottom-width: calc(4px * var(--divide-y-reverse)) !important;
  }

  .md\:cl-divide-x-4 > :not(template) ~ :not(template) {
    --divide-x-reverse: 0 !important;
    border-right-width: calc(4px * var(--divide-x-reverse)) !important;
    border-left-width: calc(4px * calc(1 - var(--divide-x-reverse))) !important;
  }

  .md\:cl-divide-y-8 > :not(template) ~ :not(template) {
    --divide-y-reverse: 0 !important;
    border-top-width: calc(8px * calc(1 - var(--divide-y-reverse))) !important;
    border-bottom-width: calc(8px * var(--divide-y-reverse)) !important;
  }

  .md\:cl-divide-x-8 > :not(template) ~ :not(template) {
    --divide-x-reverse: 0 !important;
    border-right-width: calc(8px * var(--divide-x-reverse)) !important;
    border-left-width: calc(8px * calc(1 - var(--divide-x-reverse))) !important;
  }

  .md\:cl-divide-y-15 > :not(template) ~ :not(template) {
    --divide-y-reverse: 0 !important;
    border-top-width: calc(15px * calc(1 - var(--divide-y-reverse))) !important;
    border-bottom-width: calc(15px * var(--divide-y-reverse)) !important;
  }

  .md\:cl-divide-x-15 > :not(template) ~ :not(template) {
    --divide-x-reverse: 0 !important;
    border-right-width: calc(15px * var(--divide-x-reverse)) !important;
    border-left-width: calc(15px * calc(1 - var(--divide-x-reverse))) !important;
  }

  .md\:cl-divide-y > :not(template) ~ :not(template) {
    --divide-y-reverse: 0 !important;
    border-top-width: calc(1px * calc(1 - var(--divide-y-reverse))) !important;
    border-bottom-width: calc(1px * var(--divide-y-reverse)) !important;
  }

  .md\:cl-divide-x > :not(template) ~ :not(template) {
    --divide-x-reverse: 0 !important;
    border-right-width: calc(1px * var(--divide-x-reverse)) !important;
    border-left-width: calc(1px * calc(1 - var(--divide-x-reverse))) !important;
  }

  .md\:cl-divide-y-reverse > :not(template) ~ :not(template) {
    --divide-y-reverse: 1 !important;
  }

  .md\:cl-divide-x-reverse > :not(template) ~ :not(template) {
    --divide-x-reverse: 1 !important;
  }

  .md\:cl-divide-transparent > :not(template) ~ :not(template) {
    border-color: transparent !important;
  }

  .md\:cl-divide-current > :not(template) ~ :not(template) {
    border-color: currentColor !important;
  }

  .md\:cl-divide-black > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #000 !important;
    border-color: rgba(0, 0, 0, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-white > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fff !important;
    border-color: rgba(255, 255, 255, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-gray-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #f7fafc !important;
    border-color: rgba(247, 250, 252, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-gray-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #edf2f7 !important;
    border-color: rgba(237, 242, 247, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-gray-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #e2e8f0 !important;
    border-color: rgba(226, 232, 240, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-gray-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #cbd5e0 !important;
    border-color: rgba(203, 213, 224, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-gray-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #a0aec0 !important;
    border-color: rgba(160, 174, 192, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-gray-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #718096 !important;
    border-color: rgba(113, 128, 150, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-gray-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #4a5568 !important;
    border-color: rgba(74, 85, 104, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-gray-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #2d3748 !important;
    border-color: rgba(45, 55, 72, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-gray-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #1a202c !important;
    border-color: rgba(26, 32, 44, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-red-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fff5f5 !important;
    border-color: rgba(255, 245, 245, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-red-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fed7d7 !important;
    border-color: rgba(254, 215, 215, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-red-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #feb2b2 !important;
    border-color: rgba(254, 178, 178, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-red-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fc8181 !important;
    border-color: rgba(252, 129, 129, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-red-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #f56565 !important;
    border-color: rgba(245, 101, 101, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-red-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #e53e3e !important;
    border-color: rgba(229, 62, 62, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-red-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #c53030 !important;
    border-color: rgba(197, 48, 48, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-red-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #9b2c2c !important;
    border-color: rgba(155, 44, 44, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-red-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #742a2a !important;
    border-color: rgba(116, 42, 42, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-orange-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fffaf0 !important;
    border-color: rgba(255, 250, 240, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-orange-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #feebc8 !important;
    border-color: rgba(254, 235, 200, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-orange-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fbd38d !important;
    border-color: rgba(251, 211, 141, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-orange-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #f6ad55 !important;
    border-color: rgba(246, 173, 85, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-orange-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #ed8936 !important;
    border-color: rgba(237, 137, 54, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-orange-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #dd6b20 !important;
    border-color: rgba(221, 107, 32, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-orange-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #c05621 !important;
    border-color: rgba(192, 86, 33, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-orange-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #9c4221 !important;
    border-color: rgba(156, 66, 33, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-orange-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #7b341e !important;
    border-color: rgba(123, 52, 30, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-yellow-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fffff0 !important;
    border-color: rgba(255, 255, 240, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-yellow-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fefcbf !important;
    border-color: rgba(254, 252, 191, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-yellow-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #faf089 !important;
    border-color: rgba(250, 240, 137, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-yellow-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #f6e05e !important;
    border-color: rgba(246, 224, 94, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-yellow-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #ecc94b !important;
    border-color: rgba(236, 201, 75, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-yellow-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #d69e2e !important;
    border-color: rgba(214, 158, 46, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-yellow-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #b7791f !important;
    border-color: rgba(183, 121, 31, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-yellow-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #975a16 !important;
    border-color: rgba(151, 90, 22, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-yellow-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #744210 !important;
    border-color: rgba(116, 66, 16, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-green-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #f0fff4 !important;
    border-color: rgba(240, 255, 244, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-green-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #c6f6d5 !important;
    border-color: rgba(198, 246, 213, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-green-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #9ae6b4 !important;
    border-color: rgba(154, 230, 180, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-green-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #68d391 !important;
    border-color: rgba(104, 211, 145, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-green-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #48bb78 !important;
    border-color: rgba(72, 187, 120, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-green-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #38a169 !important;
    border-color: rgba(56, 161, 105, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-green-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #2f855a !important;
    border-color: rgba(47, 133, 90, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-green-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #276749 !important;
    border-color: rgba(39, 103, 73, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-green-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #22543d !important;
    border-color: rgba(34, 84, 61, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-teal-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #e6fffa !important;
    border-color: rgba(230, 255, 250, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-teal-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #b2f5ea !important;
    border-color: rgba(178, 245, 234, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-teal-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #81e6d9 !important;
    border-color: rgba(129, 230, 217, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-teal-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #4fd1c5 !important;
    border-color: rgba(79, 209, 197, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-teal-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #38b2ac !important;
    border-color: rgba(56, 178, 172, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-teal-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #319795 !important;
    border-color: rgba(49, 151, 149, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-teal-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #2c7a7b !important;
    border-color: rgba(44, 122, 123, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-teal-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #285e61 !important;
    border-color: rgba(40, 94, 97, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-teal-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #234e52 !important;
    border-color: rgba(35, 78, 82, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-blue-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #ebf8ff !important;
    border-color: rgba(235, 248, 255, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-blue-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #bee3f8 !important;
    border-color: rgba(190, 227, 248, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-blue-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #90cdf4 !important;
    border-color: rgba(144, 205, 244, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-blue-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #63b3ed !important;
    border-color: rgba(99, 179, 237, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-blue-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #4299e1 !important;
    border-color: rgba(66, 153, 225, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-blue-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #3182ce !important;
    border-color: rgba(49, 130, 206, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-blue-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #2b6cb0 !important;
    border-color: rgba(43, 108, 176, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-blue-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #2c5282 !important;
    border-color: rgba(44, 82, 130, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-blue-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #2a4365 !important;
    border-color: rgba(42, 67, 101, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-indigo-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #ebf4ff !important;
    border-color: rgba(235, 244, 255, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-indigo-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #c3dafe !important;
    border-color: rgba(195, 218, 254, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-indigo-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #a3bffa !important;
    border-color: rgba(163, 191, 250, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-indigo-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #7f9cf5 !important;
    border-color: rgba(127, 156, 245, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-indigo-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #667eea !important;
    border-color: rgba(102, 126, 234, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-indigo-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #5a67d8 !important;
    border-color: rgba(90, 103, 216, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-indigo-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #4c51bf !important;
    border-color: rgba(76, 81, 191, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-indigo-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #434190 !important;
    border-color: rgba(67, 65, 144, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-indigo-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #3c366b !important;
    border-color: rgba(60, 54, 107, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-purple-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #faf5ff !important;
    border-color: rgba(250, 245, 255, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-purple-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #e9d8fd !important;
    border-color: rgba(233, 216, 253, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-purple-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #d6bcfa !important;
    border-color: rgba(214, 188, 250, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-purple-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #b794f4 !important;
    border-color: rgba(183, 148, 244, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-purple-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #9f7aea !important;
    border-color: rgba(159, 122, 234, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-purple-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #805ad5 !important;
    border-color: rgba(128, 90, 213, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-purple-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #6b46c1 !important;
    border-color: rgba(107, 70, 193, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-purple-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #553c9a !important;
    border-color: rgba(85, 60, 154, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-purple-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #44337a !important;
    border-color: rgba(68, 51, 122, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-pink-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fff5f7 !important;
    border-color: rgba(255, 245, 247, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-pink-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fed7e2 !important;
    border-color: rgba(254, 215, 226, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-pink-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fbb6ce !important;
    border-color: rgba(251, 182, 206, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-pink-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #f687b3 !important;
    border-color: rgba(246, 135, 179, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-pink-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #ed64a6 !important;
    border-color: rgba(237, 100, 166, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-pink-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #d53f8c !important;
    border-color: rgba(213, 63, 140, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-pink-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #b83280 !important;
    border-color: rgba(184, 50, 128, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-pink-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #97266d !important;
    border-color: rgba(151, 38, 109, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-pink-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #702459 !important;
    border-color: rgba(112, 36, 89, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-ui-gray-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #f1f1f1 !important;
    border-color: rgba(241, 241, 241, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-ui-brown-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #f3ecdc !important;
    border-color: rgba(243, 236, 220, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-ui-brown-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #e8e0c9 !important;
    border-color: rgba(232, 224, 201, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-ui-brown-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #d0c095 !important;
    border-color: rgba(208, 192, 149, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-ui-brown-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #bd6005 !important;
    border-color: rgba(189, 96, 5, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-ui-green-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #aac74c !important;
    border-color: rgba(170, 199, 76, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-ui-green-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #71893e !important;
    border-color: rgba(113, 137, 62, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-ui-orange-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #e27212 !important;
    border-color: rgba(226, 114, 18, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-facebook > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #3b5998 !important;
    border-color: rgba(59, 89, 152, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-twitter > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #00acee !important;
    border-color: rgba(0, 172, 238, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-twitch > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #6441a5 !important;
    border-color: rgba(100, 65, 165, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-youtube > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #FF0000 !important;
    border-color: rgba(255, 0, 0, var(--divide-opacity)) !important;
  }

  .md\:cl-divide-solid > :not(template) ~ :not(template) {
    border-style: solid !important;
  }

  .md\:cl-divide-dashed > :not(template) ~ :not(template) {
    border-style: dashed !important;
  }

  .md\:cl-divide-dotted > :not(template) ~ :not(template) {
    border-style: dotted !important;
  }

  .md\:cl-divide-double > :not(template) ~ :not(template) {
    border-style: double !important;
  }

  .md\:cl-divide-none > :not(template) ~ :not(template) {
    border-style: none !important;
  }

  .md\:cl-divide-opacity-0 > :not(template) ~ :not(template) {
    --divide-opacity: 0 !important;
  }

  .md\:cl-divide-opacity-25 > :not(template) ~ :not(template) {
    --divide-opacity: 0.25 !important;
  }

  .md\:cl-divide-opacity-50 > :not(template) ~ :not(template) {
    --divide-opacity: 0.5 !important;
  }

  .md\:cl-divide-opacity-75 > :not(template) ~ :not(template) {
    --divide-opacity: 0.75 !important;
  }

  .md\:cl-divide-opacity-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
  }

  .md\:cl-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .md\:cl-not-sr-only {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .md\:focus\:cl-sr-only:focus {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .md\:focus\:cl-not-sr-only:focus {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .md\:cl-appearance-none {
    -webkit-appearance: none !important;
       -moz-appearance: none !important;
            appearance: none !important;
  }

  .md\:cl-bg-fixed {
    background-attachment: fixed !important;
  }

  .md\:cl-bg-local {
    background-attachment: local !important;
  }

  .md\:cl-bg-scroll {
    background-attachment: scroll !important;
  }

  .md\:cl-bg-clip-border {
    background-clip: border-box !important;
  }

  .md\:cl-bg-clip-padding {
    background-clip: padding-box !important;
  }

  .md\:cl-bg-clip-content {
    background-clip: content-box !important;
  }

  .md\:cl-bg-clip-text {
    -webkit-background-clip: text !important;
            background-clip: text !important;
  }

  .md\:cl-bg-transparent {
    background-color: transparent !important;
  }

  .md\:cl-bg-current {
    background-color: currentColor !important;
  }

  .md\:cl-bg-black {
    --bg-opacity: 1 !important;
    background-color: #000 !important;
    background-color: rgba(0, 0, 0, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-white {
    --bg-opacity: 1 !important;
    background-color: #fff !important;
    background-color: rgba(255, 255, 255, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-gray-100 {
    --bg-opacity: 1 !important;
    background-color: #f7fafc !important;
    background-color: rgba(247, 250, 252, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-gray-200 {
    --bg-opacity: 1 !important;
    background-color: #edf2f7 !important;
    background-color: rgba(237, 242, 247, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-gray-300 {
    --bg-opacity: 1 !important;
    background-color: #e2e8f0 !important;
    background-color: rgba(226, 232, 240, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-gray-400 {
    --bg-opacity: 1 !important;
    background-color: #cbd5e0 !important;
    background-color: rgba(203, 213, 224, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-gray-500 {
    --bg-opacity: 1 !important;
    background-color: #a0aec0 !important;
    background-color: rgba(160, 174, 192, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-gray-600 {
    --bg-opacity: 1 !important;
    background-color: #718096 !important;
    background-color: rgba(113, 128, 150, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-gray-700 {
    --bg-opacity: 1 !important;
    background-color: #4a5568 !important;
    background-color: rgba(74, 85, 104, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-gray-800 {
    --bg-opacity: 1 !important;
    background-color: #2d3748 !important;
    background-color: rgba(45, 55, 72, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-gray-900 {
    --bg-opacity: 1 !important;
    background-color: #1a202c !important;
    background-color: rgba(26, 32, 44, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-red-100 {
    --bg-opacity: 1 !important;
    background-color: #fff5f5 !important;
    background-color: rgba(255, 245, 245, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-red-200 {
    --bg-opacity: 1 !important;
    background-color: #fed7d7 !important;
    background-color: rgba(254, 215, 215, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-red-300 {
    --bg-opacity: 1 !important;
    background-color: #feb2b2 !important;
    background-color: rgba(254, 178, 178, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-red-400 {
    --bg-opacity: 1 !important;
    background-color: #fc8181 !important;
    background-color: rgba(252, 129, 129, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-red-500 {
    --bg-opacity: 1 !important;
    background-color: #f56565 !important;
    background-color: rgba(245, 101, 101, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-red-600 {
    --bg-opacity: 1 !important;
    background-color: #e53e3e !important;
    background-color: rgba(229, 62, 62, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-red-700 {
    --bg-opacity: 1 !important;
    background-color: #c53030 !important;
    background-color: rgba(197, 48, 48, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-red-800 {
    --bg-opacity: 1 !important;
    background-color: #9b2c2c !important;
    background-color: rgba(155, 44, 44, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-red-900 {
    --bg-opacity: 1 !important;
    background-color: #742a2a !important;
    background-color: rgba(116, 42, 42, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-orange-100 {
    --bg-opacity: 1 !important;
    background-color: #fffaf0 !important;
    background-color: rgba(255, 250, 240, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-orange-200 {
    --bg-opacity: 1 !important;
    background-color: #feebc8 !important;
    background-color: rgba(254, 235, 200, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-orange-300 {
    --bg-opacity: 1 !important;
    background-color: #fbd38d !important;
    background-color: rgba(251, 211, 141, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-orange-400 {
    --bg-opacity: 1 !important;
    background-color: #f6ad55 !important;
    background-color: rgba(246, 173, 85, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-orange-500 {
    --bg-opacity: 1 !important;
    background-color: #ed8936 !important;
    background-color: rgba(237, 137, 54, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-orange-600 {
    --bg-opacity: 1 !important;
    background-color: #dd6b20 !important;
    background-color: rgba(221, 107, 32, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-orange-700 {
    --bg-opacity: 1 !important;
    background-color: #c05621 !important;
    background-color: rgba(192, 86, 33, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-orange-800 {
    --bg-opacity: 1 !important;
    background-color: #9c4221 !important;
    background-color: rgba(156, 66, 33, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-orange-900 {
    --bg-opacity: 1 !important;
    background-color: #7b341e !important;
    background-color: rgba(123, 52, 30, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-yellow-100 {
    --bg-opacity: 1 !important;
    background-color: #fffff0 !important;
    background-color: rgba(255, 255, 240, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-yellow-200 {
    --bg-opacity: 1 !important;
    background-color: #fefcbf !important;
    background-color: rgba(254, 252, 191, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-yellow-300 {
    --bg-opacity: 1 !important;
    background-color: #faf089 !important;
    background-color: rgba(250, 240, 137, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-yellow-400 {
    --bg-opacity: 1 !important;
    background-color: #f6e05e !important;
    background-color: rgba(246, 224, 94, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-yellow-500 {
    --bg-opacity: 1 !important;
    background-color: #ecc94b !important;
    background-color: rgba(236, 201, 75, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-yellow-600 {
    --bg-opacity: 1 !important;
    background-color: #d69e2e !important;
    background-color: rgba(214, 158, 46, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-yellow-700 {
    --bg-opacity: 1 !important;
    background-color: #b7791f !important;
    background-color: rgba(183, 121, 31, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-yellow-800 {
    --bg-opacity: 1 !important;
    background-color: #975a16 !important;
    background-color: rgba(151, 90, 22, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-yellow-900 {
    --bg-opacity: 1 !important;
    background-color: #744210 !important;
    background-color: rgba(116, 66, 16, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-green-100 {
    --bg-opacity: 1 !important;
    background-color: #f0fff4 !important;
    background-color: rgba(240, 255, 244, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-green-200 {
    --bg-opacity: 1 !important;
    background-color: #c6f6d5 !important;
    background-color: rgba(198, 246, 213, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-green-300 {
    --bg-opacity: 1 !important;
    background-color: #9ae6b4 !important;
    background-color: rgba(154, 230, 180, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-green-400 {
    --bg-opacity: 1 !important;
    background-color: #68d391 !important;
    background-color: rgba(104, 211, 145, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-green-500 {
    --bg-opacity: 1 !important;
    background-color: #48bb78 !important;
    background-color: rgba(72, 187, 120, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-green-600 {
    --bg-opacity: 1 !important;
    background-color: #38a169 !important;
    background-color: rgba(56, 161, 105, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-green-700 {
    --bg-opacity: 1 !important;
    background-color: #2f855a !important;
    background-color: rgba(47, 133, 90, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-green-800 {
    --bg-opacity: 1 !important;
    background-color: #276749 !important;
    background-color: rgba(39, 103, 73, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-green-900 {
    --bg-opacity: 1 !important;
    background-color: #22543d !important;
    background-color: rgba(34, 84, 61, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-teal-100 {
    --bg-opacity: 1 !important;
    background-color: #e6fffa !important;
    background-color: rgba(230, 255, 250, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-teal-200 {
    --bg-opacity: 1 !important;
    background-color: #b2f5ea !important;
    background-color: rgba(178, 245, 234, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-teal-300 {
    --bg-opacity: 1 !important;
    background-color: #81e6d9 !important;
    background-color: rgba(129, 230, 217, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-teal-400 {
    --bg-opacity: 1 !important;
    background-color: #4fd1c5 !important;
    background-color: rgba(79, 209, 197, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-teal-500 {
    --bg-opacity: 1 !important;
    background-color: #38b2ac !important;
    background-color: rgba(56, 178, 172, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-teal-600 {
    --bg-opacity: 1 !important;
    background-color: #319795 !important;
    background-color: rgba(49, 151, 149, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-teal-700 {
    --bg-opacity: 1 !important;
    background-color: #2c7a7b !important;
    background-color: rgba(44, 122, 123, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-teal-800 {
    --bg-opacity: 1 !important;
    background-color: #285e61 !important;
    background-color: rgba(40, 94, 97, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-teal-900 {
    --bg-opacity: 1 !important;
    background-color: #234e52 !important;
    background-color: rgba(35, 78, 82, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-blue-100 {
    --bg-opacity: 1 !important;
    background-color: #ebf8ff !important;
    background-color: rgba(235, 248, 255, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-blue-200 {
    --bg-opacity: 1 !important;
    background-color: #bee3f8 !important;
    background-color: rgba(190, 227, 248, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-blue-300 {
    --bg-opacity: 1 !important;
    background-color: #90cdf4 !important;
    background-color: rgba(144, 205, 244, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-blue-400 {
    --bg-opacity: 1 !important;
    background-color: #63b3ed !important;
    background-color: rgba(99, 179, 237, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-blue-500 {
    --bg-opacity: 1 !important;
    background-color: #4299e1 !important;
    background-color: rgba(66, 153, 225, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-blue-600 {
    --bg-opacity: 1 !important;
    background-color: #3182ce !important;
    background-color: rgba(49, 130, 206, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-blue-700 {
    --bg-opacity: 1 !important;
    background-color: #2b6cb0 !important;
    background-color: rgba(43, 108, 176, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-blue-800 {
    --bg-opacity: 1 !important;
    background-color: #2c5282 !important;
    background-color: rgba(44, 82, 130, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-blue-900 {
    --bg-opacity: 1 !important;
    background-color: #2a4365 !important;
    background-color: rgba(42, 67, 101, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-indigo-100 {
    --bg-opacity: 1 !important;
    background-color: #ebf4ff !important;
    background-color: rgba(235, 244, 255, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-indigo-200 {
    --bg-opacity: 1 !important;
    background-color: #c3dafe !important;
    background-color: rgba(195, 218, 254, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-indigo-300 {
    --bg-opacity: 1 !important;
    background-color: #a3bffa !important;
    background-color: rgba(163, 191, 250, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-indigo-400 {
    --bg-opacity: 1 !important;
    background-color: #7f9cf5 !important;
    background-color: rgba(127, 156, 245, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-indigo-500 {
    --bg-opacity: 1 !important;
    background-color: #667eea !important;
    background-color: rgba(102, 126, 234, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-indigo-600 {
    --bg-opacity: 1 !important;
    background-color: #5a67d8 !important;
    background-color: rgba(90, 103, 216, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-indigo-700 {
    --bg-opacity: 1 !important;
    background-color: #4c51bf !important;
    background-color: rgba(76, 81, 191, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-indigo-800 {
    --bg-opacity: 1 !important;
    background-color: #434190 !important;
    background-color: rgba(67, 65, 144, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-indigo-900 {
    --bg-opacity: 1 !important;
    background-color: #3c366b !important;
    background-color: rgba(60, 54, 107, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-purple-100 {
    --bg-opacity: 1 !important;
    background-color: #faf5ff !important;
    background-color: rgba(250, 245, 255, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-purple-200 {
    --bg-opacity: 1 !important;
    background-color: #e9d8fd !important;
    background-color: rgba(233, 216, 253, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-purple-300 {
    --bg-opacity: 1 !important;
    background-color: #d6bcfa !important;
    background-color: rgba(214, 188, 250, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-purple-400 {
    --bg-opacity: 1 !important;
    background-color: #b794f4 !important;
    background-color: rgba(183, 148, 244, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-purple-500 {
    --bg-opacity: 1 !important;
    background-color: #9f7aea !important;
    background-color: rgba(159, 122, 234, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-purple-600 {
    --bg-opacity: 1 !important;
    background-color: #805ad5 !important;
    background-color: rgba(128, 90, 213, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-purple-700 {
    --bg-opacity: 1 !important;
    background-color: #6b46c1 !important;
    background-color: rgba(107, 70, 193, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-purple-800 {
    --bg-opacity: 1 !important;
    background-color: #553c9a !important;
    background-color: rgba(85, 60, 154, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-purple-900 {
    --bg-opacity: 1 !important;
    background-color: #44337a !important;
    background-color: rgba(68, 51, 122, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-pink-100 {
    --bg-opacity: 1 !important;
    background-color: #fff5f7 !important;
    background-color: rgba(255, 245, 247, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-pink-200 {
    --bg-opacity: 1 !important;
    background-color: #fed7e2 !important;
    background-color: rgba(254, 215, 226, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-pink-300 {
    --bg-opacity: 1 !important;
    background-color: #fbb6ce !important;
    background-color: rgba(251, 182, 206, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-pink-400 {
    --bg-opacity: 1 !important;
    background-color: #f687b3 !important;
    background-color: rgba(246, 135, 179, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-pink-500 {
    --bg-opacity: 1 !important;
    background-color: #ed64a6 !important;
    background-color: rgba(237, 100, 166, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-pink-600 {
    --bg-opacity: 1 !important;
    background-color: #d53f8c !important;
    background-color: rgba(213, 63, 140, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-pink-700 {
    --bg-opacity: 1 !important;
    background-color: #b83280 !important;
    background-color: rgba(184, 50, 128, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-pink-800 {
    --bg-opacity: 1 !important;
    background-color: #97266d !important;
    background-color: rgba(151, 38, 109, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-pink-900 {
    --bg-opacity: 1 !important;
    background-color: #702459 !important;
    background-color: rgba(112, 36, 89, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-ui-gray-100 {
    --bg-opacity: 1 !important;
    background-color: #f1f1f1 !important;
    background-color: rgba(241, 241, 241, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-ui-brown-100 {
    --bg-opacity: 1 !important;
    background-color: #f3ecdc !important;
    background-color: rgba(243, 236, 220, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-ui-brown-200 {
    --bg-opacity: 1 !important;
    background-color: #e8e0c9 !important;
    background-color: rgba(232, 224, 201, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-ui-brown-300 {
    --bg-opacity: 1 !important;
    background-color: #d0c095 !important;
    background-color: rgba(208, 192, 149, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-ui-brown-700 {
    --bg-opacity: 1 !important;
    background-color: #bd6005 !important;
    background-color: rgba(189, 96, 5, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-ui-green-300 {
    --bg-opacity: 1 !important;
    background-color: #aac74c !important;
    background-color: rgba(170, 199, 76, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-ui-green-400 {
    --bg-opacity: 1 !important;
    background-color: #71893e !important;
    background-color: rgba(113, 137, 62, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-ui-orange-500 {
    --bg-opacity: 1 !important;
    background-color: #e27212 !important;
    background-color: rgba(226, 114, 18, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-facebook {
    --bg-opacity: 1 !important;
    background-color: #3b5998 !important;
    background-color: rgba(59, 89, 152, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-twitter {
    --bg-opacity: 1 !important;
    background-color: #00acee !important;
    background-color: rgba(0, 172, 238, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-twitch {
    --bg-opacity: 1 !important;
    background-color: #6441a5 !important;
    background-color: rgba(100, 65, 165, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-youtube {
    --bg-opacity: 1 !important;
    background-color: #FF0000 !important;
    background-color: rgba(255, 0, 0, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-transparent:hover {
    background-color: transparent !important;
  }

  .md\:hover\:cl-bg-current:hover {
    background-color: currentColor !important;
  }

  .md\:hover\:cl-bg-black:hover {
    --bg-opacity: 1 !important;
    background-color: #000 !important;
    background-color: rgba(0, 0, 0, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-white:hover {
    --bg-opacity: 1 !important;
    background-color: #fff !important;
    background-color: rgba(255, 255, 255, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-gray-100:hover {
    --bg-opacity: 1 !important;
    background-color: #f7fafc !important;
    background-color: rgba(247, 250, 252, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-gray-200:hover {
    --bg-opacity: 1 !important;
    background-color: #edf2f7 !important;
    background-color: rgba(237, 242, 247, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-gray-300:hover {
    --bg-opacity: 1 !important;
    background-color: #e2e8f0 !important;
    background-color: rgba(226, 232, 240, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-gray-400:hover {
    --bg-opacity: 1 !important;
    background-color: #cbd5e0 !important;
    background-color: rgba(203, 213, 224, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-gray-500:hover {
    --bg-opacity: 1 !important;
    background-color: #a0aec0 !important;
    background-color: rgba(160, 174, 192, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-gray-600:hover {
    --bg-opacity: 1 !important;
    background-color: #718096 !important;
    background-color: rgba(113, 128, 150, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-gray-700:hover {
    --bg-opacity: 1 !important;
    background-color: #4a5568 !important;
    background-color: rgba(74, 85, 104, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-gray-800:hover {
    --bg-opacity: 1 !important;
    background-color: #2d3748 !important;
    background-color: rgba(45, 55, 72, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-gray-900:hover {
    --bg-opacity: 1 !important;
    background-color: #1a202c !important;
    background-color: rgba(26, 32, 44, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-red-100:hover {
    --bg-opacity: 1 !important;
    background-color: #fff5f5 !important;
    background-color: rgba(255, 245, 245, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-red-200:hover {
    --bg-opacity: 1 !important;
    background-color: #fed7d7 !important;
    background-color: rgba(254, 215, 215, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-red-300:hover {
    --bg-opacity: 1 !important;
    background-color: #feb2b2 !important;
    background-color: rgba(254, 178, 178, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-red-400:hover {
    --bg-opacity: 1 !important;
    background-color: #fc8181 !important;
    background-color: rgba(252, 129, 129, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-red-500:hover {
    --bg-opacity: 1 !important;
    background-color: #f56565 !important;
    background-color: rgba(245, 101, 101, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-red-600:hover {
    --bg-opacity: 1 !important;
    background-color: #e53e3e !important;
    background-color: rgba(229, 62, 62, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-red-700:hover {
    --bg-opacity: 1 !important;
    background-color: #c53030 !important;
    background-color: rgba(197, 48, 48, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-red-800:hover {
    --bg-opacity: 1 !important;
    background-color: #9b2c2c !important;
    background-color: rgba(155, 44, 44, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-red-900:hover {
    --bg-opacity: 1 !important;
    background-color: #742a2a !important;
    background-color: rgba(116, 42, 42, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-orange-100:hover {
    --bg-opacity: 1 !important;
    background-color: #fffaf0 !important;
    background-color: rgba(255, 250, 240, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-orange-200:hover {
    --bg-opacity: 1 !important;
    background-color: #feebc8 !important;
    background-color: rgba(254, 235, 200, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-orange-300:hover {
    --bg-opacity: 1 !important;
    background-color: #fbd38d !important;
    background-color: rgba(251, 211, 141, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-orange-400:hover {
    --bg-opacity: 1 !important;
    background-color: #f6ad55 !important;
    background-color: rgba(246, 173, 85, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-orange-500:hover {
    --bg-opacity: 1 !important;
    background-color: #ed8936 !important;
    background-color: rgba(237, 137, 54, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-orange-600:hover {
    --bg-opacity: 1 !important;
    background-color: #dd6b20 !important;
    background-color: rgba(221, 107, 32, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-orange-700:hover {
    --bg-opacity: 1 !important;
    background-color: #c05621 !important;
    background-color: rgba(192, 86, 33, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-orange-800:hover {
    --bg-opacity: 1 !important;
    background-color: #9c4221 !important;
    background-color: rgba(156, 66, 33, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-orange-900:hover {
    --bg-opacity: 1 !important;
    background-color: #7b341e !important;
    background-color: rgba(123, 52, 30, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-yellow-100:hover {
    --bg-opacity: 1 !important;
    background-color: #fffff0 !important;
    background-color: rgba(255, 255, 240, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-yellow-200:hover {
    --bg-opacity: 1 !important;
    background-color: #fefcbf !important;
    background-color: rgba(254, 252, 191, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-yellow-300:hover {
    --bg-opacity: 1 !important;
    background-color: #faf089 !important;
    background-color: rgba(250, 240, 137, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-yellow-400:hover {
    --bg-opacity: 1 !important;
    background-color: #f6e05e !important;
    background-color: rgba(246, 224, 94, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-yellow-500:hover {
    --bg-opacity: 1 !important;
    background-color: #ecc94b !important;
    background-color: rgba(236, 201, 75, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-yellow-600:hover {
    --bg-opacity: 1 !important;
    background-color: #d69e2e !important;
    background-color: rgba(214, 158, 46, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-yellow-700:hover {
    --bg-opacity: 1 !important;
    background-color: #b7791f !important;
    background-color: rgba(183, 121, 31, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-yellow-800:hover {
    --bg-opacity: 1 !important;
    background-color: #975a16 !important;
    background-color: rgba(151, 90, 22, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-yellow-900:hover {
    --bg-opacity: 1 !important;
    background-color: #744210 !important;
    background-color: rgba(116, 66, 16, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-green-100:hover {
    --bg-opacity: 1 !important;
    background-color: #f0fff4 !important;
    background-color: rgba(240, 255, 244, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-green-200:hover {
    --bg-opacity: 1 !important;
    background-color: #c6f6d5 !important;
    background-color: rgba(198, 246, 213, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-green-300:hover {
    --bg-opacity: 1 !important;
    background-color: #9ae6b4 !important;
    background-color: rgba(154, 230, 180, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-green-400:hover {
    --bg-opacity: 1 !important;
    background-color: #68d391 !important;
    background-color: rgba(104, 211, 145, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-green-500:hover {
    --bg-opacity: 1 !important;
    background-color: #48bb78 !important;
    background-color: rgba(72, 187, 120, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-green-600:hover {
    --bg-opacity: 1 !important;
    background-color: #38a169 !important;
    background-color: rgba(56, 161, 105, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-green-700:hover {
    --bg-opacity: 1 !important;
    background-color: #2f855a !important;
    background-color: rgba(47, 133, 90, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-green-800:hover {
    --bg-opacity: 1 !important;
    background-color: #276749 !important;
    background-color: rgba(39, 103, 73, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-green-900:hover {
    --bg-opacity: 1 !important;
    background-color: #22543d !important;
    background-color: rgba(34, 84, 61, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-teal-100:hover {
    --bg-opacity: 1 !important;
    background-color: #e6fffa !important;
    background-color: rgba(230, 255, 250, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-teal-200:hover {
    --bg-opacity: 1 !important;
    background-color: #b2f5ea !important;
    background-color: rgba(178, 245, 234, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-teal-300:hover {
    --bg-opacity: 1 !important;
    background-color: #81e6d9 !important;
    background-color: rgba(129, 230, 217, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-teal-400:hover {
    --bg-opacity: 1 !important;
    background-color: #4fd1c5 !important;
    background-color: rgba(79, 209, 197, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-teal-500:hover {
    --bg-opacity: 1 !important;
    background-color: #38b2ac !important;
    background-color: rgba(56, 178, 172, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-teal-600:hover {
    --bg-opacity: 1 !important;
    background-color: #319795 !important;
    background-color: rgba(49, 151, 149, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-teal-700:hover {
    --bg-opacity: 1 !important;
    background-color: #2c7a7b !important;
    background-color: rgba(44, 122, 123, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-teal-800:hover {
    --bg-opacity: 1 !important;
    background-color: #285e61 !important;
    background-color: rgba(40, 94, 97, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-teal-900:hover {
    --bg-opacity: 1 !important;
    background-color: #234e52 !important;
    background-color: rgba(35, 78, 82, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-blue-100:hover {
    --bg-opacity: 1 !important;
    background-color: #ebf8ff !important;
    background-color: rgba(235, 248, 255, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-blue-200:hover {
    --bg-opacity: 1 !important;
    background-color: #bee3f8 !important;
    background-color: rgba(190, 227, 248, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-blue-300:hover {
    --bg-opacity: 1 !important;
    background-color: #90cdf4 !important;
    background-color: rgba(144, 205, 244, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-blue-400:hover {
    --bg-opacity: 1 !important;
    background-color: #63b3ed !important;
    background-color: rgba(99, 179, 237, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-blue-500:hover {
    --bg-opacity: 1 !important;
    background-color: #4299e1 !important;
    background-color: rgba(66, 153, 225, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-blue-600:hover {
    --bg-opacity: 1 !important;
    background-color: #3182ce !important;
    background-color: rgba(49, 130, 206, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-blue-700:hover {
    --bg-opacity: 1 !important;
    background-color: #2b6cb0 !important;
    background-color: rgba(43, 108, 176, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-blue-800:hover {
    --bg-opacity: 1 !important;
    background-color: #2c5282 !important;
    background-color: rgba(44, 82, 130, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-blue-900:hover {
    --bg-opacity: 1 !important;
    background-color: #2a4365 !important;
    background-color: rgba(42, 67, 101, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-indigo-100:hover {
    --bg-opacity: 1 !important;
    background-color: #ebf4ff !important;
    background-color: rgba(235, 244, 255, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-indigo-200:hover {
    --bg-opacity: 1 !important;
    background-color: #c3dafe !important;
    background-color: rgba(195, 218, 254, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-indigo-300:hover {
    --bg-opacity: 1 !important;
    background-color: #a3bffa !important;
    background-color: rgba(163, 191, 250, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-indigo-400:hover {
    --bg-opacity: 1 !important;
    background-color: #7f9cf5 !important;
    background-color: rgba(127, 156, 245, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-indigo-500:hover {
    --bg-opacity: 1 !important;
    background-color: #667eea !important;
    background-color: rgba(102, 126, 234, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-indigo-600:hover {
    --bg-opacity: 1 !important;
    background-color: #5a67d8 !important;
    background-color: rgba(90, 103, 216, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-indigo-700:hover {
    --bg-opacity: 1 !important;
    background-color: #4c51bf !important;
    background-color: rgba(76, 81, 191, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-indigo-800:hover {
    --bg-opacity: 1 !important;
    background-color: #434190 !important;
    background-color: rgba(67, 65, 144, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-indigo-900:hover {
    --bg-opacity: 1 !important;
    background-color: #3c366b !important;
    background-color: rgba(60, 54, 107, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-purple-100:hover {
    --bg-opacity: 1 !important;
    background-color: #faf5ff !important;
    background-color: rgba(250, 245, 255, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-purple-200:hover {
    --bg-opacity: 1 !important;
    background-color: #e9d8fd !important;
    background-color: rgba(233, 216, 253, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-purple-300:hover {
    --bg-opacity: 1 !important;
    background-color: #d6bcfa !important;
    background-color: rgba(214, 188, 250, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-purple-400:hover {
    --bg-opacity: 1 !important;
    background-color: #b794f4 !important;
    background-color: rgba(183, 148, 244, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-purple-500:hover {
    --bg-opacity: 1 !important;
    background-color: #9f7aea !important;
    background-color: rgba(159, 122, 234, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-purple-600:hover {
    --bg-opacity: 1 !important;
    background-color: #805ad5 !important;
    background-color: rgba(128, 90, 213, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-purple-700:hover {
    --bg-opacity: 1 !important;
    background-color: #6b46c1 !important;
    background-color: rgba(107, 70, 193, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-purple-800:hover {
    --bg-opacity: 1 !important;
    background-color: #553c9a !important;
    background-color: rgba(85, 60, 154, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-purple-900:hover {
    --bg-opacity: 1 !important;
    background-color: #44337a !important;
    background-color: rgba(68, 51, 122, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-pink-100:hover {
    --bg-opacity: 1 !important;
    background-color: #fff5f7 !important;
    background-color: rgba(255, 245, 247, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-pink-200:hover {
    --bg-opacity: 1 !important;
    background-color: #fed7e2 !important;
    background-color: rgba(254, 215, 226, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-pink-300:hover {
    --bg-opacity: 1 !important;
    background-color: #fbb6ce !important;
    background-color: rgba(251, 182, 206, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-pink-400:hover {
    --bg-opacity: 1 !important;
    background-color: #f687b3 !important;
    background-color: rgba(246, 135, 179, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-pink-500:hover {
    --bg-opacity: 1 !important;
    background-color: #ed64a6 !important;
    background-color: rgba(237, 100, 166, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-pink-600:hover {
    --bg-opacity: 1 !important;
    background-color: #d53f8c !important;
    background-color: rgba(213, 63, 140, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-pink-700:hover {
    --bg-opacity: 1 !important;
    background-color: #b83280 !important;
    background-color: rgba(184, 50, 128, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-pink-800:hover {
    --bg-opacity: 1 !important;
    background-color: #97266d !important;
    background-color: rgba(151, 38, 109, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-pink-900:hover {
    --bg-opacity: 1 !important;
    background-color: #702459 !important;
    background-color: rgba(112, 36, 89, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-ui-gray-100:hover {
    --bg-opacity: 1 !important;
    background-color: #f1f1f1 !important;
    background-color: rgba(241, 241, 241, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-ui-brown-100:hover {
    --bg-opacity: 1 !important;
    background-color: #f3ecdc !important;
    background-color: rgba(243, 236, 220, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-ui-brown-200:hover {
    --bg-opacity: 1 !important;
    background-color: #e8e0c9 !important;
    background-color: rgba(232, 224, 201, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-ui-brown-300:hover {
    --bg-opacity: 1 !important;
    background-color: #d0c095 !important;
    background-color: rgba(208, 192, 149, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-ui-brown-700:hover {
    --bg-opacity: 1 !important;
    background-color: #bd6005 !important;
    background-color: rgba(189, 96, 5, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-ui-green-300:hover {
    --bg-opacity: 1 !important;
    background-color: #aac74c !important;
    background-color: rgba(170, 199, 76, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-ui-green-400:hover {
    --bg-opacity: 1 !important;
    background-color: #71893e !important;
    background-color: rgba(113, 137, 62, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-ui-orange-500:hover {
    --bg-opacity: 1 !important;
    background-color: #e27212 !important;
    background-color: rgba(226, 114, 18, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-facebook:hover {
    --bg-opacity: 1 !important;
    background-color: #3b5998 !important;
    background-color: rgba(59, 89, 152, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-twitter:hover {
    --bg-opacity: 1 !important;
    background-color: #00acee !important;
    background-color: rgba(0, 172, 238, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-twitch:hover {
    --bg-opacity: 1 !important;
    background-color: #6441a5 !important;
    background-color: rgba(100, 65, 165, var(--bg-opacity)) !important;
  }

  .md\:hover\:cl-bg-youtube:hover {
    --bg-opacity: 1 !important;
    background-color: #FF0000 !important;
    background-color: rgba(255, 0, 0, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-transparent:focus {
    background-color: transparent !important;
  }

  .md\:focus\:cl-bg-current:focus {
    background-color: currentColor !important;
  }

  .md\:focus\:cl-bg-black:focus {
    --bg-opacity: 1 !important;
    background-color: #000 !important;
    background-color: rgba(0, 0, 0, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-white:focus {
    --bg-opacity: 1 !important;
    background-color: #fff !important;
    background-color: rgba(255, 255, 255, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-gray-100:focus {
    --bg-opacity: 1 !important;
    background-color: #f7fafc !important;
    background-color: rgba(247, 250, 252, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-gray-200:focus {
    --bg-opacity: 1 !important;
    background-color: #edf2f7 !important;
    background-color: rgba(237, 242, 247, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-gray-300:focus {
    --bg-opacity: 1 !important;
    background-color: #e2e8f0 !important;
    background-color: rgba(226, 232, 240, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-gray-400:focus {
    --bg-opacity: 1 !important;
    background-color: #cbd5e0 !important;
    background-color: rgba(203, 213, 224, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-gray-500:focus {
    --bg-opacity: 1 !important;
    background-color: #a0aec0 !important;
    background-color: rgba(160, 174, 192, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-gray-600:focus {
    --bg-opacity: 1 !important;
    background-color: #718096 !important;
    background-color: rgba(113, 128, 150, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-gray-700:focus {
    --bg-opacity: 1 !important;
    background-color: #4a5568 !important;
    background-color: rgba(74, 85, 104, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-gray-800:focus {
    --bg-opacity: 1 !important;
    background-color: #2d3748 !important;
    background-color: rgba(45, 55, 72, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-gray-900:focus {
    --bg-opacity: 1 !important;
    background-color: #1a202c !important;
    background-color: rgba(26, 32, 44, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-red-100:focus {
    --bg-opacity: 1 !important;
    background-color: #fff5f5 !important;
    background-color: rgba(255, 245, 245, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-red-200:focus {
    --bg-opacity: 1 !important;
    background-color: #fed7d7 !important;
    background-color: rgba(254, 215, 215, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-red-300:focus {
    --bg-opacity: 1 !important;
    background-color: #feb2b2 !important;
    background-color: rgba(254, 178, 178, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-red-400:focus {
    --bg-opacity: 1 !important;
    background-color: #fc8181 !important;
    background-color: rgba(252, 129, 129, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-red-500:focus {
    --bg-opacity: 1 !important;
    background-color: #f56565 !important;
    background-color: rgba(245, 101, 101, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-red-600:focus {
    --bg-opacity: 1 !important;
    background-color: #e53e3e !important;
    background-color: rgba(229, 62, 62, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-red-700:focus {
    --bg-opacity: 1 !important;
    background-color: #c53030 !important;
    background-color: rgba(197, 48, 48, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-red-800:focus {
    --bg-opacity: 1 !important;
    background-color: #9b2c2c !important;
    background-color: rgba(155, 44, 44, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-red-900:focus {
    --bg-opacity: 1 !important;
    background-color: #742a2a !important;
    background-color: rgba(116, 42, 42, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-orange-100:focus {
    --bg-opacity: 1 !important;
    background-color: #fffaf0 !important;
    background-color: rgba(255, 250, 240, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-orange-200:focus {
    --bg-opacity: 1 !important;
    background-color: #feebc8 !important;
    background-color: rgba(254, 235, 200, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-orange-300:focus {
    --bg-opacity: 1 !important;
    background-color: #fbd38d !important;
    background-color: rgba(251, 211, 141, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-orange-400:focus {
    --bg-opacity: 1 !important;
    background-color: #f6ad55 !important;
    background-color: rgba(246, 173, 85, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-orange-500:focus {
    --bg-opacity: 1 !important;
    background-color: #ed8936 !important;
    background-color: rgba(237, 137, 54, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-orange-600:focus {
    --bg-opacity: 1 !important;
    background-color: #dd6b20 !important;
    background-color: rgba(221, 107, 32, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-orange-700:focus {
    --bg-opacity: 1 !important;
    background-color: #c05621 !important;
    background-color: rgba(192, 86, 33, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-orange-800:focus {
    --bg-opacity: 1 !important;
    background-color: #9c4221 !important;
    background-color: rgba(156, 66, 33, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-orange-900:focus {
    --bg-opacity: 1 !important;
    background-color: #7b341e !important;
    background-color: rgba(123, 52, 30, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-yellow-100:focus {
    --bg-opacity: 1 !important;
    background-color: #fffff0 !important;
    background-color: rgba(255, 255, 240, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-yellow-200:focus {
    --bg-opacity: 1 !important;
    background-color: #fefcbf !important;
    background-color: rgba(254, 252, 191, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-yellow-300:focus {
    --bg-opacity: 1 !important;
    background-color: #faf089 !important;
    background-color: rgba(250, 240, 137, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-yellow-400:focus {
    --bg-opacity: 1 !important;
    background-color: #f6e05e !important;
    background-color: rgba(246, 224, 94, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-yellow-500:focus {
    --bg-opacity: 1 !important;
    background-color: #ecc94b !important;
    background-color: rgba(236, 201, 75, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-yellow-600:focus {
    --bg-opacity: 1 !important;
    background-color: #d69e2e !important;
    background-color: rgba(214, 158, 46, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-yellow-700:focus {
    --bg-opacity: 1 !important;
    background-color: #b7791f !important;
    background-color: rgba(183, 121, 31, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-yellow-800:focus {
    --bg-opacity: 1 !important;
    background-color: #975a16 !important;
    background-color: rgba(151, 90, 22, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-yellow-900:focus {
    --bg-opacity: 1 !important;
    background-color: #744210 !important;
    background-color: rgba(116, 66, 16, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-green-100:focus {
    --bg-opacity: 1 !important;
    background-color: #f0fff4 !important;
    background-color: rgba(240, 255, 244, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-green-200:focus {
    --bg-opacity: 1 !important;
    background-color: #c6f6d5 !important;
    background-color: rgba(198, 246, 213, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-green-300:focus {
    --bg-opacity: 1 !important;
    background-color: #9ae6b4 !important;
    background-color: rgba(154, 230, 180, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-green-400:focus {
    --bg-opacity: 1 !important;
    background-color: #68d391 !important;
    background-color: rgba(104, 211, 145, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-green-500:focus {
    --bg-opacity: 1 !important;
    background-color: #48bb78 !important;
    background-color: rgba(72, 187, 120, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-green-600:focus {
    --bg-opacity: 1 !important;
    background-color: #38a169 !important;
    background-color: rgba(56, 161, 105, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-green-700:focus {
    --bg-opacity: 1 !important;
    background-color: #2f855a !important;
    background-color: rgba(47, 133, 90, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-green-800:focus {
    --bg-opacity: 1 !important;
    background-color: #276749 !important;
    background-color: rgba(39, 103, 73, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-green-900:focus {
    --bg-opacity: 1 !important;
    background-color: #22543d !important;
    background-color: rgba(34, 84, 61, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-teal-100:focus {
    --bg-opacity: 1 !important;
    background-color: #e6fffa !important;
    background-color: rgba(230, 255, 250, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-teal-200:focus {
    --bg-opacity: 1 !important;
    background-color: #b2f5ea !important;
    background-color: rgba(178, 245, 234, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-teal-300:focus {
    --bg-opacity: 1 !important;
    background-color: #81e6d9 !important;
    background-color: rgba(129, 230, 217, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-teal-400:focus {
    --bg-opacity: 1 !important;
    background-color: #4fd1c5 !important;
    background-color: rgba(79, 209, 197, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-teal-500:focus {
    --bg-opacity: 1 !important;
    background-color: #38b2ac !important;
    background-color: rgba(56, 178, 172, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-teal-600:focus {
    --bg-opacity: 1 !important;
    background-color: #319795 !important;
    background-color: rgba(49, 151, 149, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-teal-700:focus {
    --bg-opacity: 1 !important;
    background-color: #2c7a7b !important;
    background-color: rgba(44, 122, 123, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-teal-800:focus {
    --bg-opacity: 1 !important;
    background-color: #285e61 !important;
    background-color: rgba(40, 94, 97, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-teal-900:focus {
    --bg-opacity: 1 !important;
    background-color: #234e52 !important;
    background-color: rgba(35, 78, 82, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-blue-100:focus {
    --bg-opacity: 1 !important;
    background-color: #ebf8ff !important;
    background-color: rgba(235, 248, 255, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-blue-200:focus {
    --bg-opacity: 1 !important;
    background-color: #bee3f8 !important;
    background-color: rgba(190, 227, 248, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-blue-300:focus {
    --bg-opacity: 1 !important;
    background-color: #90cdf4 !important;
    background-color: rgba(144, 205, 244, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-blue-400:focus {
    --bg-opacity: 1 !important;
    background-color: #63b3ed !important;
    background-color: rgba(99, 179, 237, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-blue-500:focus {
    --bg-opacity: 1 !important;
    background-color: #4299e1 !important;
    background-color: rgba(66, 153, 225, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-blue-600:focus {
    --bg-opacity: 1 !important;
    background-color: #3182ce !important;
    background-color: rgba(49, 130, 206, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-blue-700:focus {
    --bg-opacity: 1 !important;
    background-color: #2b6cb0 !important;
    background-color: rgba(43, 108, 176, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-blue-800:focus {
    --bg-opacity: 1 !important;
    background-color: #2c5282 !important;
    background-color: rgba(44, 82, 130, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-blue-900:focus {
    --bg-opacity: 1 !important;
    background-color: #2a4365 !important;
    background-color: rgba(42, 67, 101, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-indigo-100:focus {
    --bg-opacity: 1 !important;
    background-color: #ebf4ff !important;
    background-color: rgba(235, 244, 255, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-indigo-200:focus {
    --bg-opacity: 1 !important;
    background-color: #c3dafe !important;
    background-color: rgba(195, 218, 254, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-indigo-300:focus {
    --bg-opacity: 1 !important;
    background-color: #a3bffa !important;
    background-color: rgba(163, 191, 250, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-indigo-400:focus {
    --bg-opacity: 1 !important;
    background-color: #7f9cf5 !important;
    background-color: rgba(127, 156, 245, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-indigo-500:focus {
    --bg-opacity: 1 !important;
    background-color: #667eea !important;
    background-color: rgba(102, 126, 234, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-indigo-600:focus {
    --bg-opacity: 1 !important;
    background-color: #5a67d8 !important;
    background-color: rgba(90, 103, 216, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-indigo-700:focus {
    --bg-opacity: 1 !important;
    background-color: #4c51bf !important;
    background-color: rgba(76, 81, 191, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-indigo-800:focus {
    --bg-opacity: 1 !important;
    background-color: #434190 !important;
    background-color: rgba(67, 65, 144, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-indigo-900:focus {
    --bg-opacity: 1 !important;
    background-color: #3c366b !important;
    background-color: rgba(60, 54, 107, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-purple-100:focus {
    --bg-opacity: 1 !important;
    background-color: #faf5ff !important;
    background-color: rgba(250, 245, 255, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-purple-200:focus {
    --bg-opacity: 1 !important;
    background-color: #e9d8fd !important;
    background-color: rgba(233, 216, 253, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-purple-300:focus {
    --bg-opacity: 1 !important;
    background-color: #d6bcfa !important;
    background-color: rgba(214, 188, 250, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-purple-400:focus {
    --bg-opacity: 1 !important;
    background-color: #b794f4 !important;
    background-color: rgba(183, 148, 244, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-purple-500:focus {
    --bg-opacity: 1 !important;
    background-color: #9f7aea !important;
    background-color: rgba(159, 122, 234, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-purple-600:focus {
    --bg-opacity: 1 !important;
    background-color: #805ad5 !important;
    background-color: rgba(128, 90, 213, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-purple-700:focus {
    --bg-opacity: 1 !important;
    background-color: #6b46c1 !important;
    background-color: rgba(107, 70, 193, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-purple-800:focus {
    --bg-opacity: 1 !important;
    background-color: #553c9a !important;
    background-color: rgba(85, 60, 154, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-purple-900:focus {
    --bg-opacity: 1 !important;
    background-color: #44337a !important;
    background-color: rgba(68, 51, 122, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-pink-100:focus {
    --bg-opacity: 1 !important;
    background-color: #fff5f7 !important;
    background-color: rgba(255, 245, 247, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-pink-200:focus {
    --bg-opacity: 1 !important;
    background-color: #fed7e2 !important;
    background-color: rgba(254, 215, 226, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-pink-300:focus {
    --bg-opacity: 1 !important;
    background-color: #fbb6ce !important;
    background-color: rgba(251, 182, 206, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-pink-400:focus {
    --bg-opacity: 1 !important;
    background-color: #f687b3 !important;
    background-color: rgba(246, 135, 179, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-pink-500:focus {
    --bg-opacity: 1 !important;
    background-color: #ed64a6 !important;
    background-color: rgba(237, 100, 166, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-pink-600:focus {
    --bg-opacity: 1 !important;
    background-color: #d53f8c !important;
    background-color: rgba(213, 63, 140, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-pink-700:focus {
    --bg-opacity: 1 !important;
    background-color: #b83280 !important;
    background-color: rgba(184, 50, 128, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-pink-800:focus {
    --bg-opacity: 1 !important;
    background-color: #97266d !important;
    background-color: rgba(151, 38, 109, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-pink-900:focus {
    --bg-opacity: 1 !important;
    background-color: #702459 !important;
    background-color: rgba(112, 36, 89, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-ui-gray-100:focus {
    --bg-opacity: 1 !important;
    background-color: #f1f1f1 !important;
    background-color: rgba(241, 241, 241, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-ui-brown-100:focus {
    --bg-opacity: 1 !important;
    background-color: #f3ecdc !important;
    background-color: rgba(243, 236, 220, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-ui-brown-200:focus {
    --bg-opacity: 1 !important;
    background-color: #e8e0c9 !important;
    background-color: rgba(232, 224, 201, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-ui-brown-300:focus {
    --bg-opacity: 1 !important;
    background-color: #d0c095 !important;
    background-color: rgba(208, 192, 149, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-ui-brown-700:focus {
    --bg-opacity: 1 !important;
    background-color: #bd6005 !important;
    background-color: rgba(189, 96, 5, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-ui-green-300:focus {
    --bg-opacity: 1 !important;
    background-color: #aac74c !important;
    background-color: rgba(170, 199, 76, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-ui-green-400:focus {
    --bg-opacity: 1 !important;
    background-color: #71893e !important;
    background-color: rgba(113, 137, 62, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-ui-orange-500:focus {
    --bg-opacity: 1 !important;
    background-color: #e27212 !important;
    background-color: rgba(226, 114, 18, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-facebook:focus {
    --bg-opacity: 1 !important;
    background-color: #3b5998 !important;
    background-color: rgba(59, 89, 152, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-twitter:focus {
    --bg-opacity: 1 !important;
    background-color: #00acee !important;
    background-color: rgba(0, 172, 238, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-twitch:focus {
    --bg-opacity: 1 !important;
    background-color: #6441a5 !important;
    background-color: rgba(100, 65, 165, var(--bg-opacity)) !important;
  }

  .md\:focus\:cl-bg-youtube:focus {
    --bg-opacity: 1 !important;
    background-color: #FF0000 !important;
    background-color: rgba(255, 0, 0, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-transparent {
    background-color: transparent !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-current {
    background-color: currentColor !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-black {
    --bg-opacity: 1 !important;
    background-color: #000 !important;
    background-color: rgba(0, 0, 0, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-white {
    --bg-opacity: 1 !important;
    background-color: #fff !important;
    background-color: rgba(255, 255, 255, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-gray-100 {
    --bg-opacity: 1 !important;
    background-color: #f7fafc !important;
    background-color: rgba(247, 250, 252, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-gray-200 {
    --bg-opacity: 1 !important;
    background-color: #edf2f7 !important;
    background-color: rgba(237, 242, 247, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-gray-300 {
    --bg-opacity: 1 !important;
    background-color: #e2e8f0 !important;
    background-color: rgba(226, 232, 240, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-gray-400 {
    --bg-opacity: 1 !important;
    background-color: #cbd5e0 !important;
    background-color: rgba(203, 213, 224, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-gray-500 {
    --bg-opacity: 1 !important;
    background-color: #a0aec0 !important;
    background-color: rgba(160, 174, 192, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-gray-600 {
    --bg-opacity: 1 !important;
    background-color: #718096 !important;
    background-color: rgba(113, 128, 150, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-gray-700 {
    --bg-opacity: 1 !important;
    background-color: #4a5568 !important;
    background-color: rgba(74, 85, 104, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-gray-800 {
    --bg-opacity: 1 !important;
    background-color: #2d3748 !important;
    background-color: rgba(45, 55, 72, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-gray-900 {
    --bg-opacity: 1 !important;
    background-color: #1a202c !important;
    background-color: rgba(26, 32, 44, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-red-100 {
    --bg-opacity: 1 !important;
    background-color: #fff5f5 !important;
    background-color: rgba(255, 245, 245, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-red-200 {
    --bg-opacity: 1 !important;
    background-color: #fed7d7 !important;
    background-color: rgba(254, 215, 215, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-red-300 {
    --bg-opacity: 1 !important;
    background-color: #feb2b2 !important;
    background-color: rgba(254, 178, 178, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-red-400 {
    --bg-opacity: 1 !important;
    background-color: #fc8181 !important;
    background-color: rgba(252, 129, 129, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-red-500 {
    --bg-opacity: 1 !important;
    background-color: #f56565 !important;
    background-color: rgba(245, 101, 101, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-red-600 {
    --bg-opacity: 1 !important;
    background-color: #e53e3e !important;
    background-color: rgba(229, 62, 62, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-red-700 {
    --bg-opacity: 1 !important;
    background-color: #c53030 !important;
    background-color: rgba(197, 48, 48, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-red-800 {
    --bg-opacity: 1 !important;
    background-color: #9b2c2c !important;
    background-color: rgba(155, 44, 44, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-red-900 {
    --bg-opacity: 1 !important;
    background-color: #742a2a !important;
    background-color: rgba(116, 42, 42, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-orange-100 {
    --bg-opacity: 1 !important;
    background-color: #fffaf0 !important;
    background-color: rgba(255, 250, 240, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-orange-200 {
    --bg-opacity: 1 !important;
    background-color: #feebc8 !important;
    background-color: rgba(254, 235, 200, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-orange-300 {
    --bg-opacity: 1 !important;
    background-color: #fbd38d !important;
    background-color: rgba(251, 211, 141, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-orange-400 {
    --bg-opacity: 1 !important;
    background-color: #f6ad55 !important;
    background-color: rgba(246, 173, 85, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-orange-500 {
    --bg-opacity: 1 !important;
    background-color: #ed8936 !important;
    background-color: rgba(237, 137, 54, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-orange-600 {
    --bg-opacity: 1 !important;
    background-color: #dd6b20 !important;
    background-color: rgba(221, 107, 32, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-orange-700 {
    --bg-opacity: 1 !important;
    background-color: #c05621 !important;
    background-color: rgba(192, 86, 33, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-orange-800 {
    --bg-opacity: 1 !important;
    background-color: #9c4221 !important;
    background-color: rgba(156, 66, 33, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-orange-900 {
    --bg-opacity: 1 !important;
    background-color: #7b341e !important;
    background-color: rgba(123, 52, 30, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-yellow-100 {
    --bg-opacity: 1 !important;
    background-color: #fffff0 !important;
    background-color: rgba(255, 255, 240, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-yellow-200 {
    --bg-opacity: 1 !important;
    background-color: #fefcbf !important;
    background-color: rgba(254, 252, 191, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-yellow-300 {
    --bg-opacity: 1 !important;
    background-color: #faf089 !important;
    background-color: rgba(250, 240, 137, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-yellow-400 {
    --bg-opacity: 1 !important;
    background-color: #f6e05e !important;
    background-color: rgba(246, 224, 94, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-yellow-500 {
    --bg-opacity: 1 !important;
    background-color: #ecc94b !important;
    background-color: rgba(236, 201, 75, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-yellow-600 {
    --bg-opacity: 1 !important;
    background-color: #d69e2e !important;
    background-color: rgba(214, 158, 46, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-yellow-700 {
    --bg-opacity: 1 !important;
    background-color: #b7791f !important;
    background-color: rgba(183, 121, 31, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-yellow-800 {
    --bg-opacity: 1 !important;
    background-color: #975a16 !important;
    background-color: rgba(151, 90, 22, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-yellow-900 {
    --bg-opacity: 1 !important;
    background-color: #744210 !important;
    background-color: rgba(116, 66, 16, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-green-100 {
    --bg-opacity: 1 !important;
    background-color: #f0fff4 !important;
    background-color: rgba(240, 255, 244, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-green-200 {
    --bg-opacity: 1 !important;
    background-color: #c6f6d5 !important;
    background-color: rgba(198, 246, 213, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-green-300 {
    --bg-opacity: 1 !important;
    background-color: #9ae6b4 !important;
    background-color: rgba(154, 230, 180, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-green-400 {
    --bg-opacity: 1 !important;
    background-color: #68d391 !important;
    background-color: rgba(104, 211, 145, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-green-500 {
    --bg-opacity: 1 !important;
    background-color: #48bb78 !important;
    background-color: rgba(72, 187, 120, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-green-600 {
    --bg-opacity: 1 !important;
    background-color: #38a169 !important;
    background-color: rgba(56, 161, 105, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-green-700 {
    --bg-opacity: 1 !important;
    background-color: #2f855a !important;
    background-color: rgba(47, 133, 90, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-green-800 {
    --bg-opacity: 1 !important;
    background-color: #276749 !important;
    background-color: rgba(39, 103, 73, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-green-900 {
    --bg-opacity: 1 !important;
    background-color: #22543d !important;
    background-color: rgba(34, 84, 61, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-teal-100 {
    --bg-opacity: 1 !important;
    background-color: #e6fffa !important;
    background-color: rgba(230, 255, 250, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-teal-200 {
    --bg-opacity: 1 !important;
    background-color: #b2f5ea !important;
    background-color: rgba(178, 245, 234, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-teal-300 {
    --bg-opacity: 1 !important;
    background-color: #81e6d9 !important;
    background-color: rgba(129, 230, 217, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-teal-400 {
    --bg-opacity: 1 !important;
    background-color: #4fd1c5 !important;
    background-color: rgba(79, 209, 197, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-teal-500 {
    --bg-opacity: 1 !important;
    background-color: #38b2ac !important;
    background-color: rgba(56, 178, 172, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-teal-600 {
    --bg-opacity: 1 !important;
    background-color: #319795 !important;
    background-color: rgba(49, 151, 149, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-teal-700 {
    --bg-opacity: 1 !important;
    background-color: #2c7a7b !important;
    background-color: rgba(44, 122, 123, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-teal-800 {
    --bg-opacity: 1 !important;
    background-color: #285e61 !important;
    background-color: rgba(40, 94, 97, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-teal-900 {
    --bg-opacity: 1 !important;
    background-color: #234e52 !important;
    background-color: rgba(35, 78, 82, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-blue-100 {
    --bg-opacity: 1 !important;
    background-color: #ebf8ff !important;
    background-color: rgba(235, 248, 255, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-blue-200 {
    --bg-opacity: 1 !important;
    background-color: #bee3f8 !important;
    background-color: rgba(190, 227, 248, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-blue-300 {
    --bg-opacity: 1 !important;
    background-color: #90cdf4 !important;
    background-color: rgba(144, 205, 244, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-blue-400 {
    --bg-opacity: 1 !important;
    background-color: #63b3ed !important;
    background-color: rgba(99, 179, 237, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-blue-500 {
    --bg-opacity: 1 !important;
    background-color: #4299e1 !important;
    background-color: rgba(66, 153, 225, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-blue-600 {
    --bg-opacity: 1 !important;
    background-color: #3182ce !important;
    background-color: rgba(49, 130, 206, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-blue-700 {
    --bg-opacity: 1 !important;
    background-color: #2b6cb0 !important;
    background-color: rgba(43, 108, 176, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-blue-800 {
    --bg-opacity: 1 !important;
    background-color: #2c5282 !important;
    background-color: rgba(44, 82, 130, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-blue-900 {
    --bg-opacity: 1 !important;
    background-color: #2a4365 !important;
    background-color: rgba(42, 67, 101, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-indigo-100 {
    --bg-opacity: 1 !important;
    background-color: #ebf4ff !important;
    background-color: rgba(235, 244, 255, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-indigo-200 {
    --bg-opacity: 1 !important;
    background-color: #c3dafe !important;
    background-color: rgba(195, 218, 254, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-indigo-300 {
    --bg-opacity: 1 !important;
    background-color: #a3bffa !important;
    background-color: rgba(163, 191, 250, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-indigo-400 {
    --bg-opacity: 1 !important;
    background-color: #7f9cf5 !important;
    background-color: rgba(127, 156, 245, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-indigo-500 {
    --bg-opacity: 1 !important;
    background-color: #667eea !important;
    background-color: rgba(102, 126, 234, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-indigo-600 {
    --bg-opacity: 1 !important;
    background-color: #5a67d8 !important;
    background-color: rgba(90, 103, 216, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-indigo-700 {
    --bg-opacity: 1 !important;
    background-color: #4c51bf !important;
    background-color: rgba(76, 81, 191, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-indigo-800 {
    --bg-opacity: 1 !important;
    background-color: #434190 !important;
    background-color: rgba(67, 65, 144, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-indigo-900 {
    --bg-opacity: 1 !important;
    background-color: #3c366b !important;
    background-color: rgba(60, 54, 107, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-purple-100 {
    --bg-opacity: 1 !important;
    background-color: #faf5ff !important;
    background-color: rgba(250, 245, 255, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-purple-200 {
    --bg-opacity: 1 !important;
    background-color: #e9d8fd !important;
    background-color: rgba(233, 216, 253, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-purple-300 {
    --bg-opacity: 1 !important;
    background-color: #d6bcfa !important;
    background-color: rgba(214, 188, 250, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-purple-400 {
    --bg-opacity: 1 !important;
    background-color: #b794f4 !important;
    background-color: rgba(183, 148, 244, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-purple-500 {
    --bg-opacity: 1 !important;
    background-color: #9f7aea !important;
    background-color: rgba(159, 122, 234, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-purple-600 {
    --bg-opacity: 1 !important;
    background-color: #805ad5 !important;
    background-color: rgba(128, 90, 213, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-purple-700 {
    --bg-opacity: 1 !important;
    background-color: #6b46c1 !important;
    background-color: rgba(107, 70, 193, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-purple-800 {
    --bg-opacity: 1 !important;
    background-color: #553c9a !important;
    background-color: rgba(85, 60, 154, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-purple-900 {
    --bg-opacity: 1 !important;
    background-color: #44337a !important;
    background-color: rgba(68, 51, 122, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-pink-100 {
    --bg-opacity: 1 !important;
    background-color: #fff5f7 !important;
    background-color: rgba(255, 245, 247, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-pink-200 {
    --bg-opacity: 1 !important;
    background-color: #fed7e2 !important;
    background-color: rgba(254, 215, 226, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-pink-300 {
    --bg-opacity: 1 !important;
    background-color: #fbb6ce !important;
    background-color: rgba(251, 182, 206, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-pink-400 {
    --bg-opacity: 1 !important;
    background-color: #f687b3 !important;
    background-color: rgba(246, 135, 179, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-pink-500 {
    --bg-opacity: 1 !important;
    background-color: #ed64a6 !important;
    background-color: rgba(237, 100, 166, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-pink-600 {
    --bg-opacity: 1 !important;
    background-color: #d53f8c !important;
    background-color: rgba(213, 63, 140, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-pink-700 {
    --bg-opacity: 1 !important;
    background-color: #b83280 !important;
    background-color: rgba(184, 50, 128, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-pink-800 {
    --bg-opacity: 1 !important;
    background-color: #97266d !important;
    background-color: rgba(151, 38, 109, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-pink-900 {
    --bg-opacity: 1 !important;
    background-color: #702459 !important;
    background-color: rgba(112, 36, 89, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-ui-gray-100 {
    --bg-opacity: 1 !important;
    background-color: #f1f1f1 !important;
    background-color: rgba(241, 241, 241, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-ui-brown-100 {
    --bg-opacity: 1 !important;
    background-color: #f3ecdc !important;
    background-color: rgba(243, 236, 220, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-ui-brown-200 {
    --bg-opacity: 1 !important;
    background-color: #e8e0c9 !important;
    background-color: rgba(232, 224, 201, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-ui-brown-300 {
    --bg-opacity: 1 !important;
    background-color: #d0c095 !important;
    background-color: rgba(208, 192, 149, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-ui-brown-700 {
    --bg-opacity: 1 !important;
    background-color: #bd6005 !important;
    background-color: rgba(189, 96, 5, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-ui-green-300 {
    --bg-opacity: 1 !important;
    background-color: #aac74c !important;
    background-color: rgba(170, 199, 76, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-ui-green-400 {
    --bg-opacity: 1 !important;
    background-color: #71893e !important;
    background-color: rgba(113, 137, 62, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-ui-orange-500 {
    --bg-opacity: 1 !important;
    background-color: #e27212 !important;
    background-color: rgba(226, 114, 18, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-facebook {
    --bg-opacity: 1 !important;
    background-color: #3b5998 !important;
    background-color: rgba(59, 89, 152, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-twitter {
    --bg-opacity: 1 !important;
    background-color: #00acee !important;
    background-color: rgba(0, 172, 238, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-twitch {
    --bg-opacity: 1 !important;
    background-color: #6441a5 !important;
    background-color: rgba(100, 65, 165, var(--bg-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-bg-youtube {
    --bg-opacity: 1 !important;
    background-color: #FF0000 !important;
    background-color: rgba(255, 0, 0, var(--bg-opacity)) !important;
  }

  .md\:cl-bg-none {
    background-image: none !important;
  }

  .md\:cl-bg-gradient-to-t {
    background-image: linear-gradient(to top, var(--gradient-color-stops)) !important;
  }

  .md\:cl-bg-gradient-to-tr {
    background-image: linear-gradient(to top right, var(--gradient-color-stops)) !important;
  }

  .md\:cl-bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--gradient-color-stops)) !important;
  }

  .md\:cl-bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--gradient-color-stops)) !important;
  }

  .md\:cl-bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--gradient-color-stops)) !important;
  }

  .md\:cl-bg-gradient-to-bl {
    background-image: linear-gradient(to bottom left, var(--gradient-color-stops)) !important;
  }

  .md\:cl-bg-gradient-to-l {
    background-image: linear-gradient(to left, var(--gradient-color-stops)) !important;
  }

  .md\:cl-bg-gradient-to-tl {
    background-image: linear-gradient(to top left, var(--gradient-color-stops)) !important;
  }

  .md\:cl-from-transparent {
    --gradient-from-color: transparent !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .md\:cl-from-current {
    --gradient-from-color: currentColor !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .md\:cl-from-black {
    --gradient-from-color: #000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .md\:cl-from-white {
    --gradient-from-color: #fff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .md\:cl-from-gray-100 {
    --gradient-from-color: #f7fafc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 250, 252, 0)) !important;
  }

  .md\:cl-from-gray-200 {
    --gradient-from-color: #edf2f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 242, 247, 0)) !important;
  }

  .md\:cl-from-gray-300 {
    --gradient-from-color: #e2e8f0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 232, 240, 0)) !important;
  }

  .md\:cl-from-gray-400 {
    --gradient-from-color: #cbd5e0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(203, 213, 224, 0)) !important;
  }

  .md\:cl-from-gray-500 {
    --gradient-from-color: #a0aec0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 174, 192, 0)) !important;
  }

  .md\:cl-from-gray-600 {
    --gradient-from-color: #718096 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(113, 128, 150, 0)) !important;
  }

  .md\:cl-from-gray-700 {
    --gradient-from-color: #4a5568 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 85, 104, 0)) !important;
  }

  .md\:cl-from-gray-800 {
    --gradient-from-color: #2d3748 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(45, 55, 72, 0)) !important;
  }

  .md\:cl-from-gray-900 {
    --gradient-from-color: #1a202c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 32, 44, 0)) !important;
  }

  .md\:cl-from-red-100 {
    --gradient-from-color: #fff5f5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 245, 245, 0)) !important;
  }

  .md\:cl-from-red-200 {
    --gradient-from-color: #fed7d7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 215, 215, 0)) !important;
  }

  .md\:cl-from-red-300 {
    --gradient-from-color: #feb2b2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 178, 178, 0)) !important;
  }

  .md\:cl-from-red-400 {
    --gradient-from-color: #fc8181 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(252, 129, 129, 0)) !important;
  }

  .md\:cl-from-red-500 {
    --gradient-from-color: #f56565 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(245, 101, 101, 0)) !important;
  }

  .md\:cl-from-red-600 {
    --gradient-from-color: #e53e3e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(229, 62, 62, 0)) !important;
  }

  .md\:cl-from-red-700 {
    --gradient-from-color: #c53030 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(197, 48, 48, 0)) !important;
  }

  .md\:cl-from-red-800 {
    --gradient-from-color: #9b2c2c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(155, 44, 44, 0)) !important;
  }

  .md\:cl-from-red-900 {
    --gradient-from-color: #742a2a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(116, 42, 42, 0)) !important;
  }

  .md\:cl-from-orange-100 {
    --gradient-from-color: #fffaf0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 240, 0)) !important;
  }

  .md\:cl-from-orange-200 {
    --gradient-from-color: #feebc8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 235, 200, 0)) !important;
  }

  .md\:cl-from-orange-300 {
    --gradient-from-color: #fbd38d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 211, 141, 0)) !important;
  }

  .md\:cl-from-orange-400 {
    --gradient-from-color: #f6ad55 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 173, 85, 0)) !important;
  }

  .md\:cl-from-orange-500 {
    --gradient-from-color: #ed8936 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 137, 54, 0)) !important;
  }

  .md\:cl-from-orange-600 {
    --gradient-from-color: #dd6b20 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(221, 107, 32, 0)) !important;
  }

  .md\:cl-from-orange-700 {
    --gradient-from-color: #c05621 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(192, 86, 33, 0)) !important;
  }

  .md\:cl-from-orange-800 {
    --gradient-from-color: #9c4221 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 66, 33, 0)) !important;
  }

  .md\:cl-from-orange-900 {
    --gradient-from-color: #7b341e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(123, 52, 30, 0)) !important;
  }

  .md\:cl-from-yellow-100 {
    --gradient-from-color: #fffff0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 240, 0)) !important;
  }

  .md\:cl-from-yellow-200 {
    --gradient-from-color: #fefcbf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 252, 191, 0)) !important;
  }

  .md\:cl-from-yellow-300 {
    --gradient-from-color: #faf089 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 240, 137, 0)) !important;
  }

  .md\:cl-from-yellow-400 {
    --gradient-from-color: #f6e05e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 224, 94, 0)) !important;
  }

  .md\:cl-from-yellow-500 {
    --gradient-from-color: #ecc94b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 201, 75, 0)) !important;
  }

  .md\:cl-from-yellow-600 {
    --gradient-from-color: #d69e2e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(214, 158, 46, 0)) !important;
  }

  .md\:cl-from-yellow-700 {
    --gradient-from-color: #b7791f !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(183, 121, 31, 0)) !important;
  }

  .md\:cl-from-yellow-800 {
    --gradient-from-color: #975a16 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(151, 90, 22, 0)) !important;
  }

  .md\:cl-from-yellow-900 {
    --gradient-from-color: #744210 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(116, 66, 16, 0)) !important;
  }

  .md\:cl-from-green-100 {
    --gradient-from-color: #f0fff4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(240, 255, 244, 0)) !important;
  }

  .md\:cl-from-green-200 {
    --gradient-from-color: #c6f6d5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(198, 246, 213, 0)) !important;
  }

  .md\:cl-from-green-300 {
    --gradient-from-color: #9ae6b4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 230, 180, 0)) !important;
  }

  .md\:cl-from-green-400 {
    --gradient-from-color: #68d391 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(104, 211, 145, 0)) !important;
  }

  .md\:cl-from-green-500 {
    --gradient-from-color: #48bb78 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(72, 187, 120, 0)) !important;
  }

  .md\:cl-from-green-600 {
    --gradient-from-color: #38a169 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(56, 161, 105, 0)) !important;
  }

  .md\:cl-from-green-700 {
    --gradient-from-color: #2f855a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(47, 133, 90, 0)) !important;
  }

  .md\:cl-from-green-800 {
    --gradient-from-color: #276749 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(39, 103, 73, 0)) !important;
  }

  .md\:cl-from-green-900 {
    --gradient-from-color: #22543d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(34, 84, 61, 0)) !important;
  }

  .md\:cl-from-teal-100 {
    --gradient-from-color: #e6fffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 255, 250, 0)) !important;
  }

  .md\:cl-from-teal-200 {
    --gradient-from-color: #b2f5ea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(178, 245, 234, 0)) !important;
  }

  .md\:cl-from-teal-300 {
    --gradient-from-color: #81e6d9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(129, 230, 217, 0)) !important;
  }

  .md\:cl-from-teal-400 {
    --gradient-from-color: #4fd1c5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(79, 209, 197, 0)) !important;
  }

  .md\:cl-from-teal-500 {
    --gradient-from-color: #38b2ac !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(56, 178, 172, 0)) !important;
  }

  .md\:cl-from-teal-600 {
    --gradient-from-color: #319795 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(49, 151, 149, 0)) !important;
  }

  .md\:cl-from-teal-700 {
    --gradient-from-color: #2c7a7b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(44, 122, 123, 0)) !important;
  }

  .md\:cl-from-teal-800 {
    --gradient-from-color: #285e61 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(40, 94, 97, 0)) !important;
  }

  .md\:cl-from-teal-900 {
    --gradient-from-color: #234e52 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(35, 78, 82, 0)) !important;
  }

  .md\:cl-from-blue-100 {
    --gradient-from-color: #ebf8ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(235, 248, 255, 0)) !important;
  }

  .md\:cl-from-blue-200 {
    --gradient-from-color: #bee3f8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(190, 227, 248, 0)) !important;
  }

  .md\:cl-from-blue-300 {
    --gradient-from-color: #90cdf4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 205, 244, 0)) !important;
  }

  .md\:cl-from-blue-400 {
    --gradient-from-color: #63b3ed !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(99, 179, 237, 0)) !important;
  }

  .md\:cl-from-blue-500 {
    --gradient-from-color: #4299e1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 153, 225, 0)) !important;
  }

  .md\:cl-from-blue-600 {
    --gradient-from-color: #3182ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(49, 130, 206, 0)) !important;
  }

  .md\:cl-from-blue-700 {
    --gradient-from-color: #2b6cb0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(43, 108, 176, 0)) !important;
  }

  .md\:cl-from-blue-800 {
    --gradient-from-color: #2c5282 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(44, 82, 130, 0)) !important;
  }

  .md\:cl-from-blue-900 {
    --gradient-from-color: #2a4365 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(42, 67, 101, 0)) !important;
  }

  .md\:cl-from-indigo-100 {
    --gradient-from-color: #ebf4ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(235, 244, 255, 0)) !important;
  }

  .md\:cl-from-indigo-200 {
    --gradient-from-color: #c3dafe !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(195, 218, 254, 0)) !important;
  }

  .md\:cl-from-indigo-300 {
    --gradient-from-color: #a3bffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(163, 191, 250, 0)) !important;
  }

  .md\:cl-from-indigo-400 {
    --gradient-from-color: #7f9cf5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(127, 156, 245, 0)) !important;
  }

  .md\:cl-from-indigo-500 {
    --gradient-from-color: #667eea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 126, 234, 0)) !important;
  }

  .md\:cl-from-indigo-600 {
    --gradient-from-color: #5a67d8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 103, 216, 0)) !important;
  }

  .md\:cl-from-indigo-700 {
    --gradient-from-color: #4c51bf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(76, 81, 191, 0)) !important;
  }

  .md\:cl-from-indigo-800 {
    --gradient-from-color: #434190 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(67, 65, 144, 0)) !important;
  }

  .md\:cl-from-indigo-900 {
    --gradient-from-color: #3c366b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(60, 54, 107, 0)) !important;
  }

  .md\:cl-from-purple-100 {
    --gradient-from-color: #faf5ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 245, 255, 0)) !important;
  }

  .md\:cl-from-purple-200 {
    --gradient-from-color: #e9d8fd !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(233, 216, 253, 0)) !important;
  }

  .md\:cl-from-purple-300 {
    --gradient-from-color: #d6bcfa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(214, 188, 250, 0)) !important;
  }

  .md\:cl-from-purple-400 {
    --gradient-from-color: #b794f4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(183, 148, 244, 0)) !important;
  }

  .md\:cl-from-purple-500 {
    --gradient-from-color: #9f7aea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(159, 122, 234, 0)) !important;
  }

  .md\:cl-from-purple-600 {
    --gradient-from-color: #805ad5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(128, 90, 213, 0)) !important;
  }

  .md\:cl-from-purple-700 {
    --gradient-from-color: #6b46c1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(107, 70, 193, 0)) !important;
  }

  .md\:cl-from-purple-800 {
    --gradient-from-color: #553c9a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(85, 60, 154, 0)) !important;
  }

  .md\:cl-from-purple-900 {
    --gradient-from-color: #44337a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(68, 51, 122, 0)) !important;
  }

  .md\:cl-from-pink-100 {
    --gradient-from-color: #fff5f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 245, 247, 0)) !important;
  }

  .md\:cl-from-pink-200 {
    --gradient-from-color: #fed7e2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 215, 226, 0)) !important;
  }

  .md\:cl-from-pink-300 {
    --gradient-from-color: #fbb6ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 182, 206, 0)) !important;
  }

  .md\:cl-from-pink-400 {
    --gradient-from-color: #f687b3 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 135, 179, 0)) !important;
  }

  .md\:cl-from-pink-500 {
    --gradient-from-color: #ed64a6 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 100, 166, 0)) !important;
  }

  .md\:cl-from-pink-600 {
    --gradient-from-color: #d53f8c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(213, 63, 140, 0)) !important;
  }

  .md\:cl-from-pink-700 {
    --gradient-from-color: #b83280 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(184, 50, 128, 0)) !important;
  }

  .md\:cl-from-pink-800 {
    --gradient-from-color: #97266d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(151, 38, 109, 0)) !important;
  }

  .md\:cl-from-pink-900 {
    --gradient-from-color: #702459 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(112, 36, 89, 0)) !important;
  }

  .md\:cl-from-ui-gray-100 {
    --gradient-from-color: #f1f1f1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(241, 241, 241, 0)) !important;
  }

  .md\:cl-from-ui-brown-100 {
    --gradient-from-color: #f3ecdc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(243, 236, 220, 0)) !important;
  }

  .md\:cl-from-ui-brown-200 {
    --gradient-from-color: #e8e0c9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(232, 224, 201, 0)) !important;
  }

  .md\:cl-from-ui-brown-300 {
    --gradient-from-color: #d0c095 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(208, 192, 149, 0)) !important;
  }

  .md\:cl-from-ui-brown-700 {
    --gradient-from-color: #bd6005 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(189, 96, 5, 0)) !important;
  }

  .md\:cl-from-ui-green-300 {
    --gradient-from-color: #aac74c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(170, 199, 76, 0)) !important;
  }

  .md\:cl-from-ui-green-400 {
    --gradient-from-color: #71893e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(113, 137, 62, 0)) !important;
  }

  .md\:cl-from-ui-orange-500 {
    --gradient-from-color: #e27212 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 114, 18, 0)) !important;
  }

  .md\:cl-from-facebook {
    --gradient-from-color: #3b5998 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(59, 89, 152, 0)) !important;
  }

  .md\:cl-from-twitter {
    --gradient-from-color: #00acee !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 172, 238, 0)) !important;
  }

  .md\:cl-from-twitch {
    --gradient-from-color: #6441a5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 65, 165, 0)) !important;
  }

  .md\:cl-from-youtube {
    --gradient-from-color: #FF0000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 0, 0, 0)) !important;
  }

  .md\:cl-via-transparent {
    --gradient-via-color: transparent !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .md\:cl-via-current {
    --gradient-via-color: currentColor !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .md\:cl-via-black {
    --gradient-via-color: #000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .md\:cl-via-white {
    --gradient-via-color: #fff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .md\:cl-via-gray-100 {
    --gradient-via-color: #f7fafc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 250, 252, 0)) !important;
  }

  .md\:cl-via-gray-200 {
    --gradient-via-color: #edf2f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 242, 247, 0)) !important;
  }

  .md\:cl-via-gray-300 {
    --gradient-via-color: #e2e8f0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 232, 240, 0)) !important;
  }

  .md\:cl-via-gray-400 {
    --gradient-via-color: #cbd5e0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(203, 213, 224, 0)) !important;
  }

  .md\:cl-via-gray-500 {
    --gradient-via-color: #a0aec0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 174, 192, 0)) !important;
  }

  .md\:cl-via-gray-600 {
    --gradient-via-color: #718096 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(113, 128, 150, 0)) !important;
  }

  .md\:cl-via-gray-700 {
    --gradient-via-color: #4a5568 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 85, 104, 0)) !important;
  }

  .md\:cl-via-gray-800 {
    --gradient-via-color: #2d3748 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(45, 55, 72, 0)) !important;
  }

  .md\:cl-via-gray-900 {
    --gradient-via-color: #1a202c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 32, 44, 0)) !important;
  }

  .md\:cl-via-red-100 {
    --gradient-via-color: #fff5f5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 245, 245, 0)) !important;
  }

  .md\:cl-via-red-200 {
    --gradient-via-color: #fed7d7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 215, 215, 0)) !important;
  }

  .md\:cl-via-red-300 {
    --gradient-via-color: #feb2b2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 178, 178, 0)) !important;
  }

  .md\:cl-via-red-400 {
    --gradient-via-color: #fc8181 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(252, 129, 129, 0)) !important;
  }

  .md\:cl-via-red-500 {
    --gradient-via-color: #f56565 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(245, 101, 101, 0)) !important;
  }

  .md\:cl-via-red-600 {
    --gradient-via-color: #e53e3e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(229, 62, 62, 0)) !important;
  }

  .md\:cl-via-red-700 {
    --gradient-via-color: #c53030 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(197, 48, 48, 0)) !important;
  }

  .md\:cl-via-red-800 {
    --gradient-via-color: #9b2c2c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(155, 44, 44, 0)) !important;
  }

  .md\:cl-via-red-900 {
    --gradient-via-color: #742a2a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(116, 42, 42, 0)) !important;
  }

  .md\:cl-via-orange-100 {
    --gradient-via-color: #fffaf0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 240, 0)) !important;
  }

  .md\:cl-via-orange-200 {
    --gradient-via-color: #feebc8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 235, 200, 0)) !important;
  }

  .md\:cl-via-orange-300 {
    --gradient-via-color: #fbd38d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 211, 141, 0)) !important;
  }

  .md\:cl-via-orange-400 {
    --gradient-via-color: #f6ad55 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 173, 85, 0)) !important;
  }

  .md\:cl-via-orange-500 {
    --gradient-via-color: #ed8936 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 137, 54, 0)) !important;
  }

  .md\:cl-via-orange-600 {
    --gradient-via-color: #dd6b20 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(221, 107, 32, 0)) !important;
  }

  .md\:cl-via-orange-700 {
    --gradient-via-color: #c05621 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(192, 86, 33, 0)) !important;
  }

  .md\:cl-via-orange-800 {
    --gradient-via-color: #9c4221 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 66, 33, 0)) !important;
  }

  .md\:cl-via-orange-900 {
    --gradient-via-color: #7b341e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(123, 52, 30, 0)) !important;
  }

  .md\:cl-via-yellow-100 {
    --gradient-via-color: #fffff0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 240, 0)) !important;
  }

  .md\:cl-via-yellow-200 {
    --gradient-via-color: #fefcbf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 252, 191, 0)) !important;
  }

  .md\:cl-via-yellow-300 {
    --gradient-via-color: #faf089 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 240, 137, 0)) !important;
  }

  .md\:cl-via-yellow-400 {
    --gradient-via-color: #f6e05e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 224, 94, 0)) !important;
  }

  .md\:cl-via-yellow-500 {
    --gradient-via-color: #ecc94b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 201, 75, 0)) !important;
  }

  .md\:cl-via-yellow-600 {
    --gradient-via-color: #d69e2e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(214, 158, 46, 0)) !important;
  }

  .md\:cl-via-yellow-700 {
    --gradient-via-color: #b7791f !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(183, 121, 31, 0)) !important;
  }

  .md\:cl-via-yellow-800 {
    --gradient-via-color: #975a16 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(151, 90, 22, 0)) !important;
  }

  .md\:cl-via-yellow-900 {
    --gradient-via-color: #744210 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(116, 66, 16, 0)) !important;
  }

  .md\:cl-via-green-100 {
    --gradient-via-color: #f0fff4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(240, 255, 244, 0)) !important;
  }

  .md\:cl-via-green-200 {
    --gradient-via-color: #c6f6d5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(198, 246, 213, 0)) !important;
  }

  .md\:cl-via-green-300 {
    --gradient-via-color: #9ae6b4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 230, 180, 0)) !important;
  }

  .md\:cl-via-green-400 {
    --gradient-via-color: #68d391 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(104, 211, 145, 0)) !important;
  }

  .md\:cl-via-green-500 {
    --gradient-via-color: #48bb78 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(72, 187, 120, 0)) !important;
  }

  .md\:cl-via-green-600 {
    --gradient-via-color: #38a169 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(56, 161, 105, 0)) !important;
  }

  .md\:cl-via-green-700 {
    --gradient-via-color: #2f855a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(47, 133, 90, 0)) !important;
  }

  .md\:cl-via-green-800 {
    --gradient-via-color: #276749 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(39, 103, 73, 0)) !important;
  }

  .md\:cl-via-green-900 {
    --gradient-via-color: #22543d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(34, 84, 61, 0)) !important;
  }

  .md\:cl-via-teal-100 {
    --gradient-via-color: #e6fffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 255, 250, 0)) !important;
  }

  .md\:cl-via-teal-200 {
    --gradient-via-color: #b2f5ea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(178, 245, 234, 0)) !important;
  }

  .md\:cl-via-teal-300 {
    --gradient-via-color: #81e6d9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(129, 230, 217, 0)) !important;
  }

  .md\:cl-via-teal-400 {
    --gradient-via-color: #4fd1c5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(79, 209, 197, 0)) !important;
  }

  .md\:cl-via-teal-500 {
    --gradient-via-color: #38b2ac !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(56, 178, 172, 0)) !important;
  }

  .md\:cl-via-teal-600 {
    --gradient-via-color: #319795 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(49, 151, 149, 0)) !important;
  }

  .md\:cl-via-teal-700 {
    --gradient-via-color: #2c7a7b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(44, 122, 123, 0)) !important;
  }

  .md\:cl-via-teal-800 {
    --gradient-via-color: #285e61 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(40, 94, 97, 0)) !important;
  }

  .md\:cl-via-teal-900 {
    --gradient-via-color: #234e52 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(35, 78, 82, 0)) !important;
  }

  .md\:cl-via-blue-100 {
    --gradient-via-color: #ebf8ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(235, 248, 255, 0)) !important;
  }

  .md\:cl-via-blue-200 {
    --gradient-via-color: #bee3f8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(190, 227, 248, 0)) !important;
  }

  .md\:cl-via-blue-300 {
    --gradient-via-color: #90cdf4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 205, 244, 0)) !important;
  }

  .md\:cl-via-blue-400 {
    --gradient-via-color: #63b3ed !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(99, 179, 237, 0)) !important;
  }

  .md\:cl-via-blue-500 {
    --gradient-via-color: #4299e1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 153, 225, 0)) !important;
  }

  .md\:cl-via-blue-600 {
    --gradient-via-color: #3182ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(49, 130, 206, 0)) !important;
  }

  .md\:cl-via-blue-700 {
    --gradient-via-color: #2b6cb0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(43, 108, 176, 0)) !important;
  }

  .md\:cl-via-blue-800 {
    --gradient-via-color: #2c5282 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(44, 82, 130, 0)) !important;
  }

  .md\:cl-via-blue-900 {
    --gradient-via-color: #2a4365 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(42, 67, 101, 0)) !important;
  }

  .md\:cl-via-indigo-100 {
    --gradient-via-color: #ebf4ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(235, 244, 255, 0)) !important;
  }

  .md\:cl-via-indigo-200 {
    --gradient-via-color: #c3dafe !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(195, 218, 254, 0)) !important;
  }

  .md\:cl-via-indigo-300 {
    --gradient-via-color: #a3bffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(163, 191, 250, 0)) !important;
  }

  .md\:cl-via-indigo-400 {
    --gradient-via-color: #7f9cf5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(127, 156, 245, 0)) !important;
  }

  .md\:cl-via-indigo-500 {
    --gradient-via-color: #667eea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 126, 234, 0)) !important;
  }

  .md\:cl-via-indigo-600 {
    --gradient-via-color: #5a67d8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 103, 216, 0)) !important;
  }

  .md\:cl-via-indigo-700 {
    --gradient-via-color: #4c51bf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(76, 81, 191, 0)) !important;
  }

  .md\:cl-via-indigo-800 {
    --gradient-via-color: #434190 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(67, 65, 144, 0)) !important;
  }

  .md\:cl-via-indigo-900 {
    --gradient-via-color: #3c366b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(60, 54, 107, 0)) !important;
  }

  .md\:cl-via-purple-100 {
    --gradient-via-color: #faf5ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 245, 255, 0)) !important;
  }

  .md\:cl-via-purple-200 {
    --gradient-via-color: #e9d8fd !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(233, 216, 253, 0)) !important;
  }

  .md\:cl-via-purple-300 {
    --gradient-via-color: #d6bcfa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(214, 188, 250, 0)) !important;
  }

  .md\:cl-via-purple-400 {
    --gradient-via-color: #b794f4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(183, 148, 244, 0)) !important;
  }

  .md\:cl-via-purple-500 {
    --gradient-via-color: #9f7aea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(159, 122, 234, 0)) !important;
  }

  .md\:cl-via-purple-600 {
    --gradient-via-color: #805ad5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(128, 90, 213, 0)) !important;
  }

  .md\:cl-via-purple-700 {
    --gradient-via-color: #6b46c1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(107, 70, 193, 0)) !important;
  }

  .md\:cl-via-purple-800 {
    --gradient-via-color: #553c9a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(85, 60, 154, 0)) !important;
  }

  .md\:cl-via-purple-900 {
    --gradient-via-color: #44337a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(68, 51, 122, 0)) !important;
  }

  .md\:cl-via-pink-100 {
    --gradient-via-color: #fff5f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 245, 247, 0)) !important;
  }

  .md\:cl-via-pink-200 {
    --gradient-via-color: #fed7e2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 215, 226, 0)) !important;
  }

  .md\:cl-via-pink-300 {
    --gradient-via-color: #fbb6ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 182, 206, 0)) !important;
  }

  .md\:cl-via-pink-400 {
    --gradient-via-color: #f687b3 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 135, 179, 0)) !important;
  }

  .md\:cl-via-pink-500 {
    --gradient-via-color: #ed64a6 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 100, 166, 0)) !important;
  }

  .md\:cl-via-pink-600 {
    --gradient-via-color: #d53f8c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(213, 63, 140, 0)) !important;
  }

  .md\:cl-via-pink-700 {
    --gradient-via-color: #b83280 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(184, 50, 128, 0)) !important;
  }

  .md\:cl-via-pink-800 {
    --gradient-via-color: #97266d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(151, 38, 109, 0)) !important;
  }

  .md\:cl-via-pink-900 {
    --gradient-via-color: #702459 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(112, 36, 89, 0)) !important;
  }

  .md\:cl-via-ui-gray-100 {
    --gradient-via-color: #f1f1f1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(241, 241, 241, 0)) !important;
  }

  .md\:cl-via-ui-brown-100 {
    --gradient-via-color: #f3ecdc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(243, 236, 220, 0)) !important;
  }

  .md\:cl-via-ui-brown-200 {
    --gradient-via-color: #e8e0c9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(232, 224, 201, 0)) !important;
  }

  .md\:cl-via-ui-brown-300 {
    --gradient-via-color: #d0c095 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(208, 192, 149, 0)) !important;
  }

  .md\:cl-via-ui-brown-700 {
    --gradient-via-color: #bd6005 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(189, 96, 5, 0)) !important;
  }

  .md\:cl-via-ui-green-300 {
    --gradient-via-color: #aac74c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(170, 199, 76, 0)) !important;
  }

  .md\:cl-via-ui-green-400 {
    --gradient-via-color: #71893e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(113, 137, 62, 0)) !important;
  }

  .md\:cl-via-ui-orange-500 {
    --gradient-via-color: #e27212 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 114, 18, 0)) !important;
  }

  .md\:cl-via-facebook {
    --gradient-via-color: #3b5998 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(59, 89, 152, 0)) !important;
  }

  .md\:cl-via-twitter {
    --gradient-via-color: #00acee !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 172, 238, 0)) !important;
  }

  .md\:cl-via-twitch {
    --gradient-via-color: #6441a5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 65, 165, 0)) !important;
  }

  .md\:cl-via-youtube {
    --gradient-via-color: #FF0000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 0, 0, 0)) !important;
  }

  .md\:cl-to-transparent {
    --gradient-to-color: transparent !important;
  }

  .md\:cl-to-current {
    --gradient-to-color: currentColor !important;
  }

  .md\:cl-to-black {
    --gradient-to-color: #000 !important;
  }

  .md\:cl-to-white {
    --gradient-to-color: #fff !important;
  }

  .md\:cl-to-gray-100 {
    --gradient-to-color: #f7fafc !important;
  }

  .md\:cl-to-gray-200 {
    --gradient-to-color: #edf2f7 !important;
  }

  .md\:cl-to-gray-300 {
    --gradient-to-color: #e2e8f0 !important;
  }

  .md\:cl-to-gray-400 {
    --gradient-to-color: #cbd5e0 !important;
  }

  .md\:cl-to-gray-500 {
    --gradient-to-color: #a0aec0 !important;
  }

  .md\:cl-to-gray-600 {
    --gradient-to-color: #718096 !important;
  }

  .md\:cl-to-gray-700 {
    --gradient-to-color: #4a5568 !important;
  }

  .md\:cl-to-gray-800 {
    --gradient-to-color: #2d3748 !important;
  }

  .md\:cl-to-gray-900 {
    --gradient-to-color: #1a202c !important;
  }

  .md\:cl-to-red-100 {
    --gradient-to-color: #fff5f5 !important;
  }

  .md\:cl-to-red-200 {
    --gradient-to-color: #fed7d7 !important;
  }

  .md\:cl-to-red-300 {
    --gradient-to-color: #feb2b2 !important;
  }

  .md\:cl-to-red-400 {
    --gradient-to-color: #fc8181 !important;
  }

  .md\:cl-to-red-500 {
    --gradient-to-color: #f56565 !important;
  }

  .md\:cl-to-red-600 {
    --gradient-to-color: #e53e3e !important;
  }

  .md\:cl-to-red-700 {
    --gradient-to-color: #c53030 !important;
  }

  .md\:cl-to-red-800 {
    --gradient-to-color: #9b2c2c !important;
  }

  .md\:cl-to-red-900 {
    --gradient-to-color: #742a2a !important;
  }

  .md\:cl-to-orange-100 {
    --gradient-to-color: #fffaf0 !important;
  }

  .md\:cl-to-orange-200 {
    --gradient-to-color: #feebc8 !important;
  }

  .md\:cl-to-orange-300 {
    --gradient-to-color: #fbd38d !important;
  }

  .md\:cl-to-orange-400 {
    --gradient-to-color: #f6ad55 !important;
  }

  .md\:cl-to-orange-500 {
    --gradient-to-color: #ed8936 !important;
  }

  .md\:cl-to-orange-600 {
    --gradient-to-color: #dd6b20 !important;
  }

  .md\:cl-to-orange-700 {
    --gradient-to-color: #c05621 !important;
  }

  .md\:cl-to-orange-800 {
    --gradient-to-color: #9c4221 !important;
  }

  .md\:cl-to-orange-900 {
    --gradient-to-color: #7b341e !important;
  }

  .md\:cl-to-yellow-100 {
    --gradient-to-color: #fffff0 !important;
  }

  .md\:cl-to-yellow-200 {
    --gradient-to-color: #fefcbf !important;
  }

  .md\:cl-to-yellow-300 {
    --gradient-to-color: #faf089 !important;
  }

  .md\:cl-to-yellow-400 {
    --gradient-to-color: #f6e05e !important;
  }

  .md\:cl-to-yellow-500 {
    --gradient-to-color: #ecc94b !important;
  }

  .md\:cl-to-yellow-600 {
    --gradient-to-color: #d69e2e !important;
  }

  .md\:cl-to-yellow-700 {
    --gradient-to-color: #b7791f !important;
  }

  .md\:cl-to-yellow-800 {
    --gradient-to-color: #975a16 !important;
  }

  .md\:cl-to-yellow-900 {
    --gradient-to-color: #744210 !important;
  }

  .md\:cl-to-green-100 {
    --gradient-to-color: #f0fff4 !important;
  }

  .md\:cl-to-green-200 {
    --gradient-to-color: #c6f6d5 !important;
  }

  .md\:cl-to-green-300 {
    --gradient-to-color: #9ae6b4 !important;
  }

  .md\:cl-to-green-400 {
    --gradient-to-color: #68d391 !important;
  }

  .md\:cl-to-green-500 {
    --gradient-to-color: #48bb78 !important;
  }

  .md\:cl-to-green-600 {
    --gradient-to-color: #38a169 !important;
  }

  .md\:cl-to-green-700 {
    --gradient-to-color: #2f855a !important;
  }

  .md\:cl-to-green-800 {
    --gradient-to-color: #276749 !important;
  }

  .md\:cl-to-green-900 {
    --gradient-to-color: #22543d !important;
  }

  .md\:cl-to-teal-100 {
    --gradient-to-color: #e6fffa !important;
  }

  .md\:cl-to-teal-200 {
    --gradient-to-color: #b2f5ea !important;
  }

  .md\:cl-to-teal-300 {
    --gradient-to-color: #81e6d9 !important;
  }

  .md\:cl-to-teal-400 {
    --gradient-to-color: #4fd1c5 !important;
  }

  .md\:cl-to-teal-500 {
    --gradient-to-color: #38b2ac !important;
  }

  .md\:cl-to-teal-600 {
    --gradient-to-color: #319795 !important;
  }

  .md\:cl-to-teal-700 {
    --gradient-to-color: #2c7a7b !important;
  }

  .md\:cl-to-teal-800 {
    --gradient-to-color: #285e61 !important;
  }

  .md\:cl-to-teal-900 {
    --gradient-to-color: #234e52 !important;
  }

  .md\:cl-to-blue-100 {
    --gradient-to-color: #ebf8ff !important;
  }

  .md\:cl-to-blue-200 {
    --gradient-to-color: #bee3f8 !important;
  }

  .md\:cl-to-blue-300 {
    --gradient-to-color: #90cdf4 !important;
  }

  .md\:cl-to-blue-400 {
    --gradient-to-color: #63b3ed !important;
  }

  .md\:cl-to-blue-500 {
    --gradient-to-color: #4299e1 !important;
  }

  .md\:cl-to-blue-600 {
    --gradient-to-color: #3182ce !important;
  }

  .md\:cl-to-blue-700 {
    --gradient-to-color: #2b6cb0 !important;
  }

  .md\:cl-to-blue-800 {
    --gradient-to-color: #2c5282 !important;
  }

  .md\:cl-to-blue-900 {
    --gradient-to-color: #2a4365 !important;
  }

  .md\:cl-to-indigo-100 {
    --gradient-to-color: #ebf4ff !important;
  }

  .md\:cl-to-indigo-200 {
    --gradient-to-color: #c3dafe !important;
  }

  .md\:cl-to-indigo-300 {
    --gradient-to-color: #a3bffa !important;
  }

  .md\:cl-to-indigo-400 {
    --gradient-to-color: #7f9cf5 !important;
  }

  .md\:cl-to-indigo-500 {
    --gradient-to-color: #667eea !important;
  }

  .md\:cl-to-indigo-600 {
    --gradient-to-color: #5a67d8 !important;
  }

  .md\:cl-to-indigo-700 {
    --gradient-to-color: #4c51bf !important;
  }

  .md\:cl-to-indigo-800 {
    --gradient-to-color: #434190 !important;
  }

  .md\:cl-to-indigo-900 {
    --gradient-to-color: #3c366b !important;
  }

  .md\:cl-to-purple-100 {
    --gradient-to-color: #faf5ff !important;
  }

  .md\:cl-to-purple-200 {
    --gradient-to-color: #e9d8fd !important;
  }

  .md\:cl-to-purple-300 {
    --gradient-to-color: #d6bcfa !important;
  }

  .md\:cl-to-purple-400 {
    --gradient-to-color: #b794f4 !important;
  }

  .md\:cl-to-purple-500 {
    --gradient-to-color: #9f7aea !important;
  }

  .md\:cl-to-purple-600 {
    --gradient-to-color: #805ad5 !important;
  }

  .md\:cl-to-purple-700 {
    --gradient-to-color: #6b46c1 !important;
  }

  .md\:cl-to-purple-800 {
    --gradient-to-color: #553c9a !important;
  }

  .md\:cl-to-purple-900 {
    --gradient-to-color: #44337a !important;
  }

  .md\:cl-to-pink-100 {
    --gradient-to-color: #fff5f7 !important;
  }

  .md\:cl-to-pink-200 {
    --gradient-to-color: #fed7e2 !important;
  }

  .md\:cl-to-pink-300 {
    --gradient-to-color: #fbb6ce !important;
  }

  .md\:cl-to-pink-400 {
    --gradient-to-color: #f687b3 !important;
  }

  .md\:cl-to-pink-500 {
    --gradient-to-color: #ed64a6 !important;
  }

  .md\:cl-to-pink-600 {
    --gradient-to-color: #d53f8c !important;
  }

  .md\:cl-to-pink-700 {
    --gradient-to-color: #b83280 !important;
  }

  .md\:cl-to-pink-800 {
    --gradient-to-color: #97266d !important;
  }

  .md\:cl-to-pink-900 {
    --gradient-to-color: #702459 !important;
  }

  .md\:cl-to-ui-gray-100 {
    --gradient-to-color: #f1f1f1 !important;
  }

  .md\:cl-to-ui-brown-100 {
    --gradient-to-color: #f3ecdc !important;
  }

  .md\:cl-to-ui-brown-200 {
    --gradient-to-color: #e8e0c9 !important;
  }

  .md\:cl-to-ui-brown-300 {
    --gradient-to-color: #d0c095 !important;
  }

  .md\:cl-to-ui-brown-700 {
    --gradient-to-color: #bd6005 !important;
  }

  .md\:cl-to-ui-green-300 {
    --gradient-to-color: #aac74c !important;
  }

  .md\:cl-to-ui-green-400 {
    --gradient-to-color: #71893e !important;
  }

  .md\:cl-to-ui-orange-500 {
    --gradient-to-color: #e27212 !important;
  }

  .md\:cl-to-facebook {
    --gradient-to-color: #3b5998 !important;
  }

  .md\:cl-to-twitter {
    --gradient-to-color: #00acee !important;
  }

  .md\:cl-to-twitch {
    --gradient-to-color: #6441a5 !important;
  }

  .md\:cl-to-youtube {
    --gradient-to-color: #FF0000 !important;
  }

  .md\:hover\:cl-from-transparent:hover {
    --gradient-from-color: transparent !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .md\:hover\:cl-from-current:hover {
    --gradient-from-color: currentColor !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .md\:hover\:cl-from-black:hover {
    --gradient-from-color: #000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .md\:hover\:cl-from-white:hover {
    --gradient-from-color: #fff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .md\:hover\:cl-from-gray-100:hover {
    --gradient-from-color: #f7fafc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 250, 252, 0)) !important;
  }

  .md\:hover\:cl-from-gray-200:hover {
    --gradient-from-color: #edf2f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 242, 247, 0)) !important;
  }

  .md\:hover\:cl-from-gray-300:hover {
    --gradient-from-color: #e2e8f0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 232, 240, 0)) !important;
  }

  .md\:hover\:cl-from-gray-400:hover {
    --gradient-from-color: #cbd5e0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(203, 213, 224, 0)) !important;
  }

  .md\:hover\:cl-from-gray-500:hover {
    --gradient-from-color: #a0aec0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 174, 192, 0)) !important;
  }

  .md\:hover\:cl-from-gray-600:hover {
    --gradient-from-color: #718096 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(113, 128, 150, 0)) !important;
  }

  .md\:hover\:cl-from-gray-700:hover {
    --gradient-from-color: #4a5568 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 85, 104, 0)) !important;
  }

  .md\:hover\:cl-from-gray-800:hover {
    --gradient-from-color: #2d3748 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(45, 55, 72, 0)) !important;
  }

  .md\:hover\:cl-from-gray-900:hover {
    --gradient-from-color: #1a202c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 32, 44, 0)) !important;
  }

  .md\:hover\:cl-from-red-100:hover {
    --gradient-from-color: #fff5f5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 245, 245, 0)) !important;
  }

  .md\:hover\:cl-from-red-200:hover {
    --gradient-from-color: #fed7d7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 215, 215, 0)) !important;
  }

  .md\:hover\:cl-from-red-300:hover {
    --gradient-from-color: #feb2b2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 178, 178, 0)) !important;
  }

  .md\:hover\:cl-from-red-400:hover {
    --gradient-from-color: #fc8181 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(252, 129, 129, 0)) !important;
  }

  .md\:hover\:cl-from-red-500:hover {
    --gradient-from-color: #f56565 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(245, 101, 101, 0)) !important;
  }

  .md\:hover\:cl-from-red-600:hover {
    --gradient-from-color: #e53e3e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(229, 62, 62, 0)) !important;
  }

  .md\:hover\:cl-from-red-700:hover {
    --gradient-from-color: #c53030 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(197, 48, 48, 0)) !important;
  }

  .md\:hover\:cl-from-red-800:hover {
    --gradient-from-color: #9b2c2c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(155, 44, 44, 0)) !important;
  }

  .md\:hover\:cl-from-red-900:hover {
    --gradient-from-color: #742a2a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(116, 42, 42, 0)) !important;
  }

  .md\:hover\:cl-from-orange-100:hover {
    --gradient-from-color: #fffaf0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 240, 0)) !important;
  }

  .md\:hover\:cl-from-orange-200:hover {
    --gradient-from-color: #feebc8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 235, 200, 0)) !important;
  }

  .md\:hover\:cl-from-orange-300:hover {
    --gradient-from-color: #fbd38d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 211, 141, 0)) !important;
  }

  .md\:hover\:cl-from-orange-400:hover {
    --gradient-from-color: #f6ad55 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 173, 85, 0)) !important;
  }

  .md\:hover\:cl-from-orange-500:hover {
    --gradient-from-color: #ed8936 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 137, 54, 0)) !important;
  }

  .md\:hover\:cl-from-orange-600:hover {
    --gradient-from-color: #dd6b20 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(221, 107, 32, 0)) !important;
  }

  .md\:hover\:cl-from-orange-700:hover {
    --gradient-from-color: #c05621 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(192, 86, 33, 0)) !important;
  }

  .md\:hover\:cl-from-orange-800:hover {
    --gradient-from-color: #9c4221 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 66, 33, 0)) !important;
  }

  .md\:hover\:cl-from-orange-900:hover {
    --gradient-from-color: #7b341e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(123, 52, 30, 0)) !important;
  }

  .md\:hover\:cl-from-yellow-100:hover {
    --gradient-from-color: #fffff0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 240, 0)) !important;
  }

  .md\:hover\:cl-from-yellow-200:hover {
    --gradient-from-color: #fefcbf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 252, 191, 0)) !important;
  }

  .md\:hover\:cl-from-yellow-300:hover {
    --gradient-from-color: #faf089 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 240, 137, 0)) !important;
  }

  .md\:hover\:cl-from-yellow-400:hover {
    --gradient-from-color: #f6e05e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 224, 94, 0)) !important;
  }

  .md\:hover\:cl-from-yellow-500:hover {
    --gradient-from-color: #ecc94b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 201, 75, 0)) !important;
  }

  .md\:hover\:cl-from-yellow-600:hover {
    --gradient-from-color: #d69e2e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(214, 158, 46, 0)) !important;
  }

  .md\:hover\:cl-from-yellow-700:hover {
    --gradient-from-color: #b7791f !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(183, 121, 31, 0)) !important;
  }

  .md\:hover\:cl-from-yellow-800:hover {
    --gradient-from-color: #975a16 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(151, 90, 22, 0)) !important;
  }

  .md\:hover\:cl-from-yellow-900:hover {
    --gradient-from-color: #744210 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(116, 66, 16, 0)) !important;
  }

  .md\:hover\:cl-from-green-100:hover {
    --gradient-from-color: #f0fff4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(240, 255, 244, 0)) !important;
  }

  .md\:hover\:cl-from-green-200:hover {
    --gradient-from-color: #c6f6d5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(198, 246, 213, 0)) !important;
  }

  .md\:hover\:cl-from-green-300:hover {
    --gradient-from-color: #9ae6b4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 230, 180, 0)) !important;
  }

  .md\:hover\:cl-from-green-400:hover {
    --gradient-from-color: #68d391 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(104, 211, 145, 0)) !important;
  }

  .md\:hover\:cl-from-green-500:hover {
    --gradient-from-color: #48bb78 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(72, 187, 120, 0)) !important;
  }

  .md\:hover\:cl-from-green-600:hover {
    --gradient-from-color: #38a169 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(56, 161, 105, 0)) !important;
  }

  .md\:hover\:cl-from-green-700:hover {
    --gradient-from-color: #2f855a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(47, 133, 90, 0)) !important;
  }

  .md\:hover\:cl-from-green-800:hover {
    --gradient-from-color: #276749 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(39, 103, 73, 0)) !important;
  }

  .md\:hover\:cl-from-green-900:hover {
    --gradient-from-color: #22543d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(34, 84, 61, 0)) !important;
  }

  .md\:hover\:cl-from-teal-100:hover {
    --gradient-from-color: #e6fffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 255, 250, 0)) !important;
  }

  .md\:hover\:cl-from-teal-200:hover {
    --gradient-from-color: #b2f5ea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(178, 245, 234, 0)) !important;
  }

  .md\:hover\:cl-from-teal-300:hover {
    --gradient-from-color: #81e6d9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(129, 230, 217, 0)) !important;
  }

  .md\:hover\:cl-from-teal-400:hover {
    --gradient-from-color: #4fd1c5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(79, 209, 197, 0)) !important;
  }

  .md\:hover\:cl-from-teal-500:hover {
    --gradient-from-color: #38b2ac !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(56, 178, 172, 0)) !important;
  }

  .md\:hover\:cl-from-teal-600:hover {
    --gradient-from-color: #319795 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(49, 151, 149, 0)) !important;
  }

  .md\:hover\:cl-from-teal-700:hover {
    --gradient-from-color: #2c7a7b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(44, 122, 123, 0)) !important;
  }

  .md\:hover\:cl-from-teal-800:hover {
    --gradient-from-color: #285e61 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(40, 94, 97, 0)) !important;
  }

  .md\:hover\:cl-from-teal-900:hover {
    --gradient-from-color: #234e52 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(35, 78, 82, 0)) !important;
  }

  .md\:hover\:cl-from-blue-100:hover {
    --gradient-from-color: #ebf8ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(235, 248, 255, 0)) !important;
  }

  .md\:hover\:cl-from-blue-200:hover {
    --gradient-from-color: #bee3f8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(190, 227, 248, 0)) !important;
  }

  .md\:hover\:cl-from-blue-300:hover {
    --gradient-from-color: #90cdf4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 205, 244, 0)) !important;
  }

  .md\:hover\:cl-from-blue-400:hover {
    --gradient-from-color: #63b3ed !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(99, 179, 237, 0)) !important;
  }

  .md\:hover\:cl-from-blue-500:hover {
    --gradient-from-color: #4299e1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 153, 225, 0)) !important;
  }

  .md\:hover\:cl-from-blue-600:hover {
    --gradient-from-color: #3182ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(49, 130, 206, 0)) !important;
  }

  .md\:hover\:cl-from-blue-700:hover {
    --gradient-from-color: #2b6cb0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(43, 108, 176, 0)) !important;
  }

  .md\:hover\:cl-from-blue-800:hover {
    --gradient-from-color: #2c5282 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(44, 82, 130, 0)) !important;
  }

  .md\:hover\:cl-from-blue-900:hover {
    --gradient-from-color: #2a4365 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(42, 67, 101, 0)) !important;
  }

  .md\:hover\:cl-from-indigo-100:hover {
    --gradient-from-color: #ebf4ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(235, 244, 255, 0)) !important;
  }

  .md\:hover\:cl-from-indigo-200:hover {
    --gradient-from-color: #c3dafe !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(195, 218, 254, 0)) !important;
  }

  .md\:hover\:cl-from-indigo-300:hover {
    --gradient-from-color: #a3bffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(163, 191, 250, 0)) !important;
  }

  .md\:hover\:cl-from-indigo-400:hover {
    --gradient-from-color: #7f9cf5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(127, 156, 245, 0)) !important;
  }

  .md\:hover\:cl-from-indigo-500:hover {
    --gradient-from-color: #667eea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 126, 234, 0)) !important;
  }

  .md\:hover\:cl-from-indigo-600:hover {
    --gradient-from-color: #5a67d8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 103, 216, 0)) !important;
  }

  .md\:hover\:cl-from-indigo-700:hover {
    --gradient-from-color: #4c51bf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(76, 81, 191, 0)) !important;
  }

  .md\:hover\:cl-from-indigo-800:hover {
    --gradient-from-color: #434190 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(67, 65, 144, 0)) !important;
  }

  .md\:hover\:cl-from-indigo-900:hover {
    --gradient-from-color: #3c366b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(60, 54, 107, 0)) !important;
  }

  .md\:hover\:cl-from-purple-100:hover {
    --gradient-from-color: #faf5ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 245, 255, 0)) !important;
  }

  .md\:hover\:cl-from-purple-200:hover {
    --gradient-from-color: #e9d8fd !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(233, 216, 253, 0)) !important;
  }

  .md\:hover\:cl-from-purple-300:hover {
    --gradient-from-color: #d6bcfa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(214, 188, 250, 0)) !important;
  }

  .md\:hover\:cl-from-purple-400:hover {
    --gradient-from-color: #b794f4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(183, 148, 244, 0)) !important;
  }

  .md\:hover\:cl-from-purple-500:hover {
    --gradient-from-color: #9f7aea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(159, 122, 234, 0)) !important;
  }

  .md\:hover\:cl-from-purple-600:hover {
    --gradient-from-color: #805ad5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(128, 90, 213, 0)) !important;
  }

  .md\:hover\:cl-from-purple-700:hover {
    --gradient-from-color: #6b46c1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(107, 70, 193, 0)) !important;
  }

  .md\:hover\:cl-from-purple-800:hover {
    --gradient-from-color: #553c9a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(85, 60, 154, 0)) !important;
  }

  .md\:hover\:cl-from-purple-900:hover {
    --gradient-from-color: #44337a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(68, 51, 122, 0)) !important;
  }

  .md\:hover\:cl-from-pink-100:hover {
    --gradient-from-color: #fff5f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 245, 247, 0)) !important;
  }

  .md\:hover\:cl-from-pink-200:hover {
    --gradient-from-color: #fed7e2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 215, 226, 0)) !important;
  }

  .md\:hover\:cl-from-pink-300:hover {
    --gradient-from-color: #fbb6ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 182, 206, 0)) !important;
  }

  .md\:hover\:cl-from-pink-400:hover {
    --gradient-from-color: #f687b3 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 135, 179, 0)) !important;
  }

  .md\:hover\:cl-from-pink-500:hover {
    --gradient-from-color: #ed64a6 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 100, 166, 0)) !important;
  }

  .md\:hover\:cl-from-pink-600:hover {
    --gradient-from-color: #d53f8c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(213, 63, 140, 0)) !important;
  }

  .md\:hover\:cl-from-pink-700:hover {
    --gradient-from-color: #b83280 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(184, 50, 128, 0)) !important;
  }

  .md\:hover\:cl-from-pink-800:hover {
    --gradient-from-color: #97266d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(151, 38, 109, 0)) !important;
  }

  .md\:hover\:cl-from-pink-900:hover {
    --gradient-from-color: #702459 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(112, 36, 89, 0)) !important;
  }

  .md\:hover\:cl-from-ui-gray-100:hover {
    --gradient-from-color: #f1f1f1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(241, 241, 241, 0)) !important;
  }

  .md\:hover\:cl-from-ui-brown-100:hover {
    --gradient-from-color: #f3ecdc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(243, 236, 220, 0)) !important;
  }

  .md\:hover\:cl-from-ui-brown-200:hover {
    --gradient-from-color: #e8e0c9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(232, 224, 201, 0)) !important;
  }

  .md\:hover\:cl-from-ui-brown-300:hover {
    --gradient-from-color: #d0c095 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(208, 192, 149, 0)) !important;
  }

  .md\:hover\:cl-from-ui-brown-700:hover {
    --gradient-from-color: #bd6005 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(189, 96, 5, 0)) !important;
  }

  .md\:hover\:cl-from-ui-green-300:hover {
    --gradient-from-color: #aac74c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(170, 199, 76, 0)) !important;
  }

  .md\:hover\:cl-from-ui-green-400:hover {
    --gradient-from-color: #71893e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(113, 137, 62, 0)) !important;
  }

  .md\:hover\:cl-from-ui-orange-500:hover {
    --gradient-from-color: #e27212 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 114, 18, 0)) !important;
  }

  .md\:hover\:cl-from-facebook:hover {
    --gradient-from-color: #3b5998 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(59, 89, 152, 0)) !important;
  }

  .md\:hover\:cl-from-twitter:hover {
    --gradient-from-color: #00acee !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 172, 238, 0)) !important;
  }

  .md\:hover\:cl-from-twitch:hover {
    --gradient-from-color: #6441a5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 65, 165, 0)) !important;
  }

  .md\:hover\:cl-from-youtube:hover {
    --gradient-from-color: #FF0000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 0, 0, 0)) !important;
  }

  .md\:hover\:cl-via-transparent:hover {
    --gradient-via-color: transparent !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .md\:hover\:cl-via-current:hover {
    --gradient-via-color: currentColor !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .md\:hover\:cl-via-black:hover {
    --gradient-via-color: #000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .md\:hover\:cl-via-white:hover {
    --gradient-via-color: #fff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .md\:hover\:cl-via-gray-100:hover {
    --gradient-via-color: #f7fafc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 250, 252, 0)) !important;
  }

  .md\:hover\:cl-via-gray-200:hover {
    --gradient-via-color: #edf2f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 242, 247, 0)) !important;
  }

  .md\:hover\:cl-via-gray-300:hover {
    --gradient-via-color: #e2e8f0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 232, 240, 0)) !important;
  }

  .md\:hover\:cl-via-gray-400:hover {
    --gradient-via-color: #cbd5e0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(203, 213, 224, 0)) !important;
  }

  .md\:hover\:cl-via-gray-500:hover {
    --gradient-via-color: #a0aec0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 174, 192, 0)) !important;
  }

  .md\:hover\:cl-via-gray-600:hover {
    --gradient-via-color: #718096 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(113, 128, 150, 0)) !important;
  }

  .md\:hover\:cl-via-gray-700:hover {
    --gradient-via-color: #4a5568 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 85, 104, 0)) !important;
  }

  .md\:hover\:cl-via-gray-800:hover {
    --gradient-via-color: #2d3748 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(45, 55, 72, 0)) !important;
  }

  .md\:hover\:cl-via-gray-900:hover {
    --gradient-via-color: #1a202c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 32, 44, 0)) !important;
  }

  .md\:hover\:cl-via-red-100:hover {
    --gradient-via-color: #fff5f5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 245, 245, 0)) !important;
  }

  .md\:hover\:cl-via-red-200:hover {
    --gradient-via-color: #fed7d7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 215, 215, 0)) !important;
  }

  .md\:hover\:cl-via-red-300:hover {
    --gradient-via-color: #feb2b2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 178, 178, 0)) !important;
  }

  .md\:hover\:cl-via-red-400:hover {
    --gradient-via-color: #fc8181 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(252, 129, 129, 0)) !important;
  }

  .md\:hover\:cl-via-red-500:hover {
    --gradient-via-color: #f56565 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(245, 101, 101, 0)) !important;
  }

  .md\:hover\:cl-via-red-600:hover {
    --gradient-via-color: #e53e3e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(229, 62, 62, 0)) !important;
  }

  .md\:hover\:cl-via-red-700:hover {
    --gradient-via-color: #c53030 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(197, 48, 48, 0)) !important;
  }

  .md\:hover\:cl-via-red-800:hover {
    --gradient-via-color: #9b2c2c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(155, 44, 44, 0)) !important;
  }

  .md\:hover\:cl-via-red-900:hover {
    --gradient-via-color: #742a2a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(116, 42, 42, 0)) !important;
  }

  .md\:hover\:cl-via-orange-100:hover {
    --gradient-via-color: #fffaf0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 240, 0)) !important;
  }

  .md\:hover\:cl-via-orange-200:hover {
    --gradient-via-color: #feebc8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 235, 200, 0)) !important;
  }

  .md\:hover\:cl-via-orange-300:hover {
    --gradient-via-color: #fbd38d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 211, 141, 0)) !important;
  }

  .md\:hover\:cl-via-orange-400:hover {
    --gradient-via-color: #f6ad55 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 173, 85, 0)) !important;
  }

  .md\:hover\:cl-via-orange-500:hover {
    --gradient-via-color: #ed8936 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 137, 54, 0)) !important;
  }

  .md\:hover\:cl-via-orange-600:hover {
    --gradient-via-color: #dd6b20 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(221, 107, 32, 0)) !important;
  }

  .md\:hover\:cl-via-orange-700:hover {
    --gradient-via-color: #c05621 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(192, 86, 33, 0)) !important;
  }

  .md\:hover\:cl-via-orange-800:hover {
    --gradient-via-color: #9c4221 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 66, 33, 0)) !important;
  }

  .md\:hover\:cl-via-orange-900:hover {
    --gradient-via-color: #7b341e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(123, 52, 30, 0)) !important;
  }

  .md\:hover\:cl-via-yellow-100:hover {
    --gradient-via-color: #fffff0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 240, 0)) !important;
  }

  .md\:hover\:cl-via-yellow-200:hover {
    --gradient-via-color: #fefcbf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 252, 191, 0)) !important;
  }

  .md\:hover\:cl-via-yellow-300:hover {
    --gradient-via-color: #faf089 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 240, 137, 0)) !important;
  }

  .md\:hover\:cl-via-yellow-400:hover {
    --gradient-via-color: #f6e05e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 224, 94, 0)) !important;
  }

  .md\:hover\:cl-via-yellow-500:hover {
    --gradient-via-color: #ecc94b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 201, 75, 0)) !important;
  }

  .md\:hover\:cl-via-yellow-600:hover {
    --gradient-via-color: #d69e2e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(214, 158, 46, 0)) !important;
  }

  .md\:hover\:cl-via-yellow-700:hover {
    --gradient-via-color: #b7791f !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(183, 121, 31, 0)) !important;
  }

  .md\:hover\:cl-via-yellow-800:hover {
    --gradient-via-color: #975a16 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(151, 90, 22, 0)) !important;
  }

  .md\:hover\:cl-via-yellow-900:hover {
    --gradient-via-color: #744210 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(116, 66, 16, 0)) !important;
  }

  .md\:hover\:cl-via-green-100:hover {
    --gradient-via-color: #f0fff4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(240, 255, 244, 0)) !important;
  }

  .md\:hover\:cl-via-green-200:hover {
    --gradient-via-color: #c6f6d5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(198, 246, 213, 0)) !important;
  }

  .md\:hover\:cl-via-green-300:hover {
    --gradient-via-color: #9ae6b4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 230, 180, 0)) !important;
  }

  .md\:hover\:cl-via-green-400:hover {
    --gradient-via-color: #68d391 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(104, 211, 145, 0)) !important;
  }

  .md\:hover\:cl-via-green-500:hover {
    --gradient-via-color: #48bb78 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(72, 187, 120, 0)) !important;
  }

  .md\:hover\:cl-via-green-600:hover {
    --gradient-via-color: #38a169 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(56, 161, 105, 0)) !important;
  }

  .md\:hover\:cl-via-green-700:hover {
    --gradient-via-color: #2f855a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(47, 133, 90, 0)) !important;
  }

  .md\:hover\:cl-via-green-800:hover {
    --gradient-via-color: #276749 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(39, 103, 73, 0)) !important;
  }

  .md\:hover\:cl-via-green-900:hover {
    --gradient-via-color: #22543d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(34, 84, 61, 0)) !important;
  }

  .md\:hover\:cl-via-teal-100:hover {
    --gradient-via-color: #e6fffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 255, 250, 0)) !important;
  }

  .md\:hover\:cl-via-teal-200:hover {
    --gradient-via-color: #b2f5ea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(178, 245, 234, 0)) !important;
  }

  .md\:hover\:cl-via-teal-300:hover {
    --gradient-via-color: #81e6d9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(129, 230, 217, 0)) !important;
  }

  .md\:hover\:cl-via-teal-400:hover {
    --gradient-via-color: #4fd1c5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(79, 209, 197, 0)) !important;
  }

  .md\:hover\:cl-via-teal-500:hover {
    --gradient-via-color: #38b2ac !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(56, 178, 172, 0)) !important;
  }

  .md\:hover\:cl-via-teal-600:hover {
    --gradient-via-color: #319795 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(49, 151, 149, 0)) !important;
  }

  .md\:hover\:cl-via-teal-700:hover {
    --gradient-via-color: #2c7a7b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(44, 122, 123, 0)) !important;
  }

  .md\:hover\:cl-via-teal-800:hover {
    --gradient-via-color: #285e61 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(40, 94, 97, 0)) !important;
  }

  .md\:hover\:cl-via-teal-900:hover {
    --gradient-via-color: #234e52 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(35, 78, 82, 0)) !important;
  }

  .md\:hover\:cl-via-blue-100:hover {
    --gradient-via-color: #ebf8ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(235, 248, 255, 0)) !important;
  }

  .md\:hover\:cl-via-blue-200:hover {
    --gradient-via-color: #bee3f8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(190, 227, 248, 0)) !important;
  }

  .md\:hover\:cl-via-blue-300:hover {
    --gradient-via-color: #90cdf4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 205, 244, 0)) !important;
  }

  .md\:hover\:cl-via-blue-400:hover {
    --gradient-via-color: #63b3ed !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(99, 179, 237, 0)) !important;
  }

  .md\:hover\:cl-via-blue-500:hover {
    --gradient-via-color: #4299e1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 153, 225, 0)) !important;
  }

  .md\:hover\:cl-via-blue-600:hover {
    --gradient-via-color: #3182ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(49, 130, 206, 0)) !important;
  }

  .md\:hover\:cl-via-blue-700:hover {
    --gradient-via-color: #2b6cb0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(43, 108, 176, 0)) !important;
  }

  .md\:hover\:cl-via-blue-800:hover {
    --gradient-via-color: #2c5282 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(44, 82, 130, 0)) !important;
  }

  .md\:hover\:cl-via-blue-900:hover {
    --gradient-via-color: #2a4365 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(42, 67, 101, 0)) !important;
  }

  .md\:hover\:cl-via-indigo-100:hover {
    --gradient-via-color: #ebf4ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(235, 244, 255, 0)) !important;
  }

  .md\:hover\:cl-via-indigo-200:hover {
    --gradient-via-color: #c3dafe !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(195, 218, 254, 0)) !important;
  }

  .md\:hover\:cl-via-indigo-300:hover {
    --gradient-via-color: #a3bffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(163, 191, 250, 0)) !important;
  }

  .md\:hover\:cl-via-indigo-400:hover {
    --gradient-via-color: #7f9cf5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(127, 156, 245, 0)) !important;
  }

  .md\:hover\:cl-via-indigo-500:hover {
    --gradient-via-color: #667eea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 126, 234, 0)) !important;
  }

  .md\:hover\:cl-via-indigo-600:hover {
    --gradient-via-color: #5a67d8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 103, 216, 0)) !important;
  }

  .md\:hover\:cl-via-indigo-700:hover {
    --gradient-via-color: #4c51bf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(76, 81, 191, 0)) !important;
  }

  .md\:hover\:cl-via-indigo-800:hover {
    --gradient-via-color: #434190 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(67, 65, 144, 0)) !important;
  }

  .md\:hover\:cl-via-indigo-900:hover {
    --gradient-via-color: #3c366b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(60, 54, 107, 0)) !important;
  }

  .md\:hover\:cl-via-purple-100:hover {
    --gradient-via-color: #faf5ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 245, 255, 0)) !important;
  }

  .md\:hover\:cl-via-purple-200:hover {
    --gradient-via-color: #e9d8fd !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(233, 216, 253, 0)) !important;
  }

  .md\:hover\:cl-via-purple-300:hover {
    --gradient-via-color: #d6bcfa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(214, 188, 250, 0)) !important;
  }

  .md\:hover\:cl-via-purple-400:hover {
    --gradient-via-color: #b794f4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(183, 148, 244, 0)) !important;
  }

  .md\:hover\:cl-via-purple-500:hover {
    --gradient-via-color: #9f7aea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(159, 122, 234, 0)) !important;
  }

  .md\:hover\:cl-via-purple-600:hover {
    --gradient-via-color: #805ad5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(128, 90, 213, 0)) !important;
  }

  .md\:hover\:cl-via-purple-700:hover {
    --gradient-via-color: #6b46c1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(107, 70, 193, 0)) !important;
  }

  .md\:hover\:cl-via-purple-800:hover {
    --gradient-via-color: #553c9a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(85, 60, 154, 0)) !important;
  }

  .md\:hover\:cl-via-purple-900:hover {
    --gradient-via-color: #44337a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(68, 51, 122, 0)) !important;
  }

  .md\:hover\:cl-via-pink-100:hover {
    --gradient-via-color: #fff5f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 245, 247, 0)) !important;
  }

  .md\:hover\:cl-via-pink-200:hover {
    --gradient-via-color: #fed7e2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 215, 226, 0)) !important;
  }

  .md\:hover\:cl-via-pink-300:hover {
    --gradient-via-color: #fbb6ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 182, 206, 0)) !important;
  }

  .md\:hover\:cl-via-pink-400:hover {
    --gradient-via-color: #f687b3 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 135, 179, 0)) !important;
  }

  .md\:hover\:cl-via-pink-500:hover {
    --gradient-via-color: #ed64a6 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 100, 166, 0)) !important;
  }

  .md\:hover\:cl-via-pink-600:hover {
    --gradient-via-color: #d53f8c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(213, 63, 140, 0)) !important;
  }

  .md\:hover\:cl-via-pink-700:hover {
    --gradient-via-color: #b83280 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(184, 50, 128, 0)) !important;
  }

  .md\:hover\:cl-via-pink-800:hover {
    --gradient-via-color: #97266d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(151, 38, 109, 0)) !important;
  }

  .md\:hover\:cl-via-pink-900:hover {
    --gradient-via-color: #702459 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(112, 36, 89, 0)) !important;
  }

  .md\:hover\:cl-via-ui-gray-100:hover {
    --gradient-via-color: #f1f1f1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(241, 241, 241, 0)) !important;
  }

  .md\:hover\:cl-via-ui-brown-100:hover {
    --gradient-via-color: #f3ecdc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(243, 236, 220, 0)) !important;
  }

  .md\:hover\:cl-via-ui-brown-200:hover {
    --gradient-via-color: #e8e0c9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(232, 224, 201, 0)) !important;
  }

  .md\:hover\:cl-via-ui-brown-300:hover {
    --gradient-via-color: #d0c095 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(208, 192, 149, 0)) !important;
  }

  .md\:hover\:cl-via-ui-brown-700:hover {
    --gradient-via-color: #bd6005 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(189, 96, 5, 0)) !important;
  }

  .md\:hover\:cl-via-ui-green-300:hover {
    --gradient-via-color: #aac74c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(170, 199, 76, 0)) !important;
  }

  .md\:hover\:cl-via-ui-green-400:hover {
    --gradient-via-color: #71893e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(113, 137, 62, 0)) !important;
  }

  .md\:hover\:cl-via-ui-orange-500:hover {
    --gradient-via-color: #e27212 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 114, 18, 0)) !important;
  }

  .md\:hover\:cl-via-facebook:hover {
    --gradient-via-color: #3b5998 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(59, 89, 152, 0)) !important;
  }

  .md\:hover\:cl-via-twitter:hover {
    --gradient-via-color: #00acee !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 172, 238, 0)) !important;
  }

  .md\:hover\:cl-via-twitch:hover {
    --gradient-via-color: #6441a5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 65, 165, 0)) !important;
  }

  .md\:hover\:cl-via-youtube:hover {
    --gradient-via-color: #FF0000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 0, 0, 0)) !important;
  }

  .md\:hover\:cl-to-transparent:hover {
    --gradient-to-color: transparent !important;
  }

  .md\:hover\:cl-to-current:hover {
    --gradient-to-color: currentColor !important;
  }

  .md\:hover\:cl-to-black:hover {
    --gradient-to-color: #000 !important;
  }

  .md\:hover\:cl-to-white:hover {
    --gradient-to-color: #fff !important;
  }

  .md\:hover\:cl-to-gray-100:hover {
    --gradient-to-color: #f7fafc !important;
  }

  .md\:hover\:cl-to-gray-200:hover {
    --gradient-to-color: #edf2f7 !important;
  }

  .md\:hover\:cl-to-gray-300:hover {
    --gradient-to-color: #e2e8f0 !important;
  }

  .md\:hover\:cl-to-gray-400:hover {
    --gradient-to-color: #cbd5e0 !important;
  }

  .md\:hover\:cl-to-gray-500:hover {
    --gradient-to-color: #a0aec0 !important;
  }

  .md\:hover\:cl-to-gray-600:hover {
    --gradient-to-color: #718096 !important;
  }

  .md\:hover\:cl-to-gray-700:hover {
    --gradient-to-color: #4a5568 !important;
  }

  .md\:hover\:cl-to-gray-800:hover {
    --gradient-to-color: #2d3748 !important;
  }

  .md\:hover\:cl-to-gray-900:hover {
    --gradient-to-color: #1a202c !important;
  }

  .md\:hover\:cl-to-red-100:hover {
    --gradient-to-color: #fff5f5 !important;
  }

  .md\:hover\:cl-to-red-200:hover {
    --gradient-to-color: #fed7d7 !important;
  }

  .md\:hover\:cl-to-red-300:hover {
    --gradient-to-color: #feb2b2 !important;
  }

  .md\:hover\:cl-to-red-400:hover {
    --gradient-to-color: #fc8181 !important;
  }

  .md\:hover\:cl-to-red-500:hover {
    --gradient-to-color: #f56565 !important;
  }

  .md\:hover\:cl-to-red-600:hover {
    --gradient-to-color: #e53e3e !important;
  }

  .md\:hover\:cl-to-red-700:hover {
    --gradient-to-color: #c53030 !important;
  }

  .md\:hover\:cl-to-red-800:hover {
    --gradient-to-color: #9b2c2c !important;
  }

  .md\:hover\:cl-to-red-900:hover {
    --gradient-to-color: #742a2a !important;
  }

  .md\:hover\:cl-to-orange-100:hover {
    --gradient-to-color: #fffaf0 !important;
  }

  .md\:hover\:cl-to-orange-200:hover {
    --gradient-to-color: #feebc8 !important;
  }

  .md\:hover\:cl-to-orange-300:hover {
    --gradient-to-color: #fbd38d !important;
  }

  .md\:hover\:cl-to-orange-400:hover {
    --gradient-to-color: #f6ad55 !important;
  }

  .md\:hover\:cl-to-orange-500:hover {
    --gradient-to-color: #ed8936 !important;
  }

  .md\:hover\:cl-to-orange-600:hover {
    --gradient-to-color: #dd6b20 !important;
  }

  .md\:hover\:cl-to-orange-700:hover {
    --gradient-to-color: #c05621 !important;
  }

  .md\:hover\:cl-to-orange-800:hover {
    --gradient-to-color: #9c4221 !important;
  }

  .md\:hover\:cl-to-orange-900:hover {
    --gradient-to-color: #7b341e !important;
  }

  .md\:hover\:cl-to-yellow-100:hover {
    --gradient-to-color: #fffff0 !important;
  }

  .md\:hover\:cl-to-yellow-200:hover {
    --gradient-to-color: #fefcbf !important;
  }

  .md\:hover\:cl-to-yellow-300:hover {
    --gradient-to-color: #faf089 !important;
  }

  .md\:hover\:cl-to-yellow-400:hover {
    --gradient-to-color: #f6e05e !important;
  }

  .md\:hover\:cl-to-yellow-500:hover {
    --gradient-to-color: #ecc94b !important;
  }

  .md\:hover\:cl-to-yellow-600:hover {
    --gradient-to-color: #d69e2e !important;
  }

  .md\:hover\:cl-to-yellow-700:hover {
    --gradient-to-color: #b7791f !important;
  }

  .md\:hover\:cl-to-yellow-800:hover {
    --gradient-to-color: #975a16 !important;
  }

  .md\:hover\:cl-to-yellow-900:hover {
    --gradient-to-color: #744210 !important;
  }

  .md\:hover\:cl-to-green-100:hover {
    --gradient-to-color: #f0fff4 !important;
  }

  .md\:hover\:cl-to-green-200:hover {
    --gradient-to-color: #c6f6d5 !important;
  }

  .md\:hover\:cl-to-green-300:hover {
    --gradient-to-color: #9ae6b4 !important;
  }

  .md\:hover\:cl-to-green-400:hover {
    --gradient-to-color: #68d391 !important;
  }

  .md\:hover\:cl-to-green-500:hover {
    --gradient-to-color: #48bb78 !important;
  }

  .md\:hover\:cl-to-green-600:hover {
    --gradient-to-color: #38a169 !important;
  }

  .md\:hover\:cl-to-green-700:hover {
    --gradient-to-color: #2f855a !important;
  }

  .md\:hover\:cl-to-green-800:hover {
    --gradient-to-color: #276749 !important;
  }

  .md\:hover\:cl-to-green-900:hover {
    --gradient-to-color: #22543d !important;
  }

  .md\:hover\:cl-to-teal-100:hover {
    --gradient-to-color: #e6fffa !important;
  }

  .md\:hover\:cl-to-teal-200:hover {
    --gradient-to-color: #b2f5ea !important;
  }

  .md\:hover\:cl-to-teal-300:hover {
    --gradient-to-color: #81e6d9 !important;
  }

  .md\:hover\:cl-to-teal-400:hover {
    --gradient-to-color: #4fd1c5 !important;
  }

  .md\:hover\:cl-to-teal-500:hover {
    --gradient-to-color: #38b2ac !important;
  }

  .md\:hover\:cl-to-teal-600:hover {
    --gradient-to-color: #319795 !important;
  }

  .md\:hover\:cl-to-teal-700:hover {
    --gradient-to-color: #2c7a7b !important;
  }

  .md\:hover\:cl-to-teal-800:hover {
    --gradient-to-color: #285e61 !important;
  }

  .md\:hover\:cl-to-teal-900:hover {
    --gradient-to-color: #234e52 !important;
  }

  .md\:hover\:cl-to-blue-100:hover {
    --gradient-to-color: #ebf8ff !important;
  }

  .md\:hover\:cl-to-blue-200:hover {
    --gradient-to-color: #bee3f8 !important;
  }

  .md\:hover\:cl-to-blue-300:hover {
    --gradient-to-color: #90cdf4 !important;
  }

  .md\:hover\:cl-to-blue-400:hover {
    --gradient-to-color: #63b3ed !important;
  }

  .md\:hover\:cl-to-blue-500:hover {
    --gradient-to-color: #4299e1 !important;
  }

  .md\:hover\:cl-to-blue-600:hover {
    --gradient-to-color: #3182ce !important;
  }

  .md\:hover\:cl-to-blue-700:hover {
    --gradient-to-color: #2b6cb0 !important;
  }

  .md\:hover\:cl-to-blue-800:hover {
    --gradient-to-color: #2c5282 !important;
  }

  .md\:hover\:cl-to-blue-900:hover {
    --gradient-to-color: #2a4365 !important;
  }

  .md\:hover\:cl-to-indigo-100:hover {
    --gradient-to-color: #ebf4ff !important;
  }

  .md\:hover\:cl-to-indigo-200:hover {
    --gradient-to-color: #c3dafe !important;
  }

  .md\:hover\:cl-to-indigo-300:hover {
    --gradient-to-color: #a3bffa !important;
  }

  .md\:hover\:cl-to-indigo-400:hover {
    --gradient-to-color: #7f9cf5 !important;
  }

  .md\:hover\:cl-to-indigo-500:hover {
    --gradient-to-color: #667eea !important;
  }

  .md\:hover\:cl-to-indigo-600:hover {
    --gradient-to-color: #5a67d8 !important;
  }

  .md\:hover\:cl-to-indigo-700:hover {
    --gradient-to-color: #4c51bf !important;
  }

  .md\:hover\:cl-to-indigo-800:hover {
    --gradient-to-color: #434190 !important;
  }

  .md\:hover\:cl-to-indigo-900:hover {
    --gradient-to-color: #3c366b !important;
  }

  .md\:hover\:cl-to-purple-100:hover {
    --gradient-to-color: #faf5ff !important;
  }

  .md\:hover\:cl-to-purple-200:hover {
    --gradient-to-color: #e9d8fd !important;
  }

  .md\:hover\:cl-to-purple-300:hover {
    --gradient-to-color: #d6bcfa !important;
  }

  .md\:hover\:cl-to-purple-400:hover {
    --gradient-to-color: #b794f4 !important;
  }

  .md\:hover\:cl-to-purple-500:hover {
    --gradient-to-color: #9f7aea !important;
  }

  .md\:hover\:cl-to-purple-600:hover {
    --gradient-to-color: #805ad5 !important;
  }

  .md\:hover\:cl-to-purple-700:hover {
    --gradient-to-color: #6b46c1 !important;
  }

  .md\:hover\:cl-to-purple-800:hover {
    --gradient-to-color: #553c9a !important;
  }

  .md\:hover\:cl-to-purple-900:hover {
    --gradient-to-color: #44337a !important;
  }

  .md\:hover\:cl-to-pink-100:hover {
    --gradient-to-color: #fff5f7 !important;
  }

  .md\:hover\:cl-to-pink-200:hover {
    --gradient-to-color: #fed7e2 !important;
  }

  .md\:hover\:cl-to-pink-300:hover {
    --gradient-to-color: #fbb6ce !important;
  }

  .md\:hover\:cl-to-pink-400:hover {
    --gradient-to-color: #f687b3 !important;
  }

  .md\:hover\:cl-to-pink-500:hover {
    --gradient-to-color: #ed64a6 !important;
  }

  .md\:hover\:cl-to-pink-600:hover {
    --gradient-to-color: #d53f8c !important;
  }

  .md\:hover\:cl-to-pink-700:hover {
    --gradient-to-color: #b83280 !important;
  }

  .md\:hover\:cl-to-pink-800:hover {
    --gradient-to-color: #97266d !important;
  }

  .md\:hover\:cl-to-pink-900:hover {
    --gradient-to-color: #702459 !important;
  }

  .md\:hover\:cl-to-ui-gray-100:hover {
    --gradient-to-color: #f1f1f1 !important;
  }

  .md\:hover\:cl-to-ui-brown-100:hover {
    --gradient-to-color: #f3ecdc !important;
  }

  .md\:hover\:cl-to-ui-brown-200:hover {
    --gradient-to-color: #e8e0c9 !important;
  }

  .md\:hover\:cl-to-ui-brown-300:hover {
    --gradient-to-color: #d0c095 !important;
  }

  .md\:hover\:cl-to-ui-brown-700:hover {
    --gradient-to-color: #bd6005 !important;
  }

  .md\:hover\:cl-to-ui-green-300:hover {
    --gradient-to-color: #aac74c !important;
  }

  .md\:hover\:cl-to-ui-green-400:hover {
    --gradient-to-color: #71893e !important;
  }

  .md\:hover\:cl-to-ui-orange-500:hover {
    --gradient-to-color: #e27212 !important;
  }

  .md\:hover\:cl-to-facebook:hover {
    --gradient-to-color: #3b5998 !important;
  }

  .md\:hover\:cl-to-twitter:hover {
    --gradient-to-color: #00acee !important;
  }

  .md\:hover\:cl-to-twitch:hover {
    --gradient-to-color: #6441a5 !important;
  }

  .md\:hover\:cl-to-youtube:hover {
    --gradient-to-color: #FF0000 !important;
  }

  .md\:focus\:cl-from-transparent:focus {
    --gradient-from-color: transparent !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .md\:focus\:cl-from-current:focus {
    --gradient-from-color: currentColor !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .md\:focus\:cl-from-black:focus {
    --gradient-from-color: #000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .md\:focus\:cl-from-white:focus {
    --gradient-from-color: #fff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .md\:focus\:cl-from-gray-100:focus {
    --gradient-from-color: #f7fafc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 250, 252, 0)) !important;
  }

  .md\:focus\:cl-from-gray-200:focus {
    --gradient-from-color: #edf2f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 242, 247, 0)) !important;
  }

  .md\:focus\:cl-from-gray-300:focus {
    --gradient-from-color: #e2e8f0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 232, 240, 0)) !important;
  }

  .md\:focus\:cl-from-gray-400:focus {
    --gradient-from-color: #cbd5e0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(203, 213, 224, 0)) !important;
  }

  .md\:focus\:cl-from-gray-500:focus {
    --gradient-from-color: #a0aec0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 174, 192, 0)) !important;
  }

  .md\:focus\:cl-from-gray-600:focus {
    --gradient-from-color: #718096 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(113, 128, 150, 0)) !important;
  }

  .md\:focus\:cl-from-gray-700:focus {
    --gradient-from-color: #4a5568 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 85, 104, 0)) !important;
  }

  .md\:focus\:cl-from-gray-800:focus {
    --gradient-from-color: #2d3748 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(45, 55, 72, 0)) !important;
  }

  .md\:focus\:cl-from-gray-900:focus {
    --gradient-from-color: #1a202c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 32, 44, 0)) !important;
  }

  .md\:focus\:cl-from-red-100:focus {
    --gradient-from-color: #fff5f5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 245, 245, 0)) !important;
  }

  .md\:focus\:cl-from-red-200:focus {
    --gradient-from-color: #fed7d7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 215, 215, 0)) !important;
  }

  .md\:focus\:cl-from-red-300:focus {
    --gradient-from-color: #feb2b2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 178, 178, 0)) !important;
  }

  .md\:focus\:cl-from-red-400:focus {
    --gradient-from-color: #fc8181 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(252, 129, 129, 0)) !important;
  }

  .md\:focus\:cl-from-red-500:focus {
    --gradient-from-color: #f56565 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(245, 101, 101, 0)) !important;
  }

  .md\:focus\:cl-from-red-600:focus {
    --gradient-from-color: #e53e3e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(229, 62, 62, 0)) !important;
  }

  .md\:focus\:cl-from-red-700:focus {
    --gradient-from-color: #c53030 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(197, 48, 48, 0)) !important;
  }

  .md\:focus\:cl-from-red-800:focus {
    --gradient-from-color: #9b2c2c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(155, 44, 44, 0)) !important;
  }

  .md\:focus\:cl-from-red-900:focus {
    --gradient-from-color: #742a2a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(116, 42, 42, 0)) !important;
  }

  .md\:focus\:cl-from-orange-100:focus {
    --gradient-from-color: #fffaf0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 240, 0)) !important;
  }

  .md\:focus\:cl-from-orange-200:focus {
    --gradient-from-color: #feebc8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 235, 200, 0)) !important;
  }

  .md\:focus\:cl-from-orange-300:focus {
    --gradient-from-color: #fbd38d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 211, 141, 0)) !important;
  }

  .md\:focus\:cl-from-orange-400:focus {
    --gradient-from-color: #f6ad55 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 173, 85, 0)) !important;
  }

  .md\:focus\:cl-from-orange-500:focus {
    --gradient-from-color: #ed8936 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 137, 54, 0)) !important;
  }

  .md\:focus\:cl-from-orange-600:focus {
    --gradient-from-color: #dd6b20 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(221, 107, 32, 0)) !important;
  }

  .md\:focus\:cl-from-orange-700:focus {
    --gradient-from-color: #c05621 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(192, 86, 33, 0)) !important;
  }

  .md\:focus\:cl-from-orange-800:focus {
    --gradient-from-color: #9c4221 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 66, 33, 0)) !important;
  }

  .md\:focus\:cl-from-orange-900:focus {
    --gradient-from-color: #7b341e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(123, 52, 30, 0)) !important;
  }

  .md\:focus\:cl-from-yellow-100:focus {
    --gradient-from-color: #fffff0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 240, 0)) !important;
  }

  .md\:focus\:cl-from-yellow-200:focus {
    --gradient-from-color: #fefcbf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 252, 191, 0)) !important;
  }

  .md\:focus\:cl-from-yellow-300:focus {
    --gradient-from-color: #faf089 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 240, 137, 0)) !important;
  }

  .md\:focus\:cl-from-yellow-400:focus {
    --gradient-from-color: #f6e05e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 224, 94, 0)) !important;
  }

  .md\:focus\:cl-from-yellow-500:focus {
    --gradient-from-color: #ecc94b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 201, 75, 0)) !important;
  }

  .md\:focus\:cl-from-yellow-600:focus {
    --gradient-from-color: #d69e2e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(214, 158, 46, 0)) !important;
  }

  .md\:focus\:cl-from-yellow-700:focus {
    --gradient-from-color: #b7791f !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(183, 121, 31, 0)) !important;
  }

  .md\:focus\:cl-from-yellow-800:focus {
    --gradient-from-color: #975a16 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(151, 90, 22, 0)) !important;
  }

  .md\:focus\:cl-from-yellow-900:focus {
    --gradient-from-color: #744210 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(116, 66, 16, 0)) !important;
  }

  .md\:focus\:cl-from-green-100:focus {
    --gradient-from-color: #f0fff4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(240, 255, 244, 0)) !important;
  }

  .md\:focus\:cl-from-green-200:focus {
    --gradient-from-color: #c6f6d5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(198, 246, 213, 0)) !important;
  }

  .md\:focus\:cl-from-green-300:focus {
    --gradient-from-color: #9ae6b4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 230, 180, 0)) !important;
  }

  .md\:focus\:cl-from-green-400:focus {
    --gradient-from-color: #68d391 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(104, 211, 145, 0)) !important;
  }

  .md\:focus\:cl-from-green-500:focus {
    --gradient-from-color: #48bb78 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(72, 187, 120, 0)) !important;
  }

  .md\:focus\:cl-from-green-600:focus {
    --gradient-from-color: #38a169 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(56, 161, 105, 0)) !important;
  }

  .md\:focus\:cl-from-green-700:focus {
    --gradient-from-color: #2f855a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(47, 133, 90, 0)) !important;
  }

  .md\:focus\:cl-from-green-800:focus {
    --gradient-from-color: #276749 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(39, 103, 73, 0)) !important;
  }

  .md\:focus\:cl-from-green-900:focus {
    --gradient-from-color: #22543d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(34, 84, 61, 0)) !important;
  }

  .md\:focus\:cl-from-teal-100:focus {
    --gradient-from-color: #e6fffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 255, 250, 0)) !important;
  }

  .md\:focus\:cl-from-teal-200:focus {
    --gradient-from-color: #b2f5ea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(178, 245, 234, 0)) !important;
  }

  .md\:focus\:cl-from-teal-300:focus {
    --gradient-from-color: #81e6d9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(129, 230, 217, 0)) !important;
  }

  .md\:focus\:cl-from-teal-400:focus {
    --gradient-from-color: #4fd1c5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(79, 209, 197, 0)) !important;
  }

  .md\:focus\:cl-from-teal-500:focus {
    --gradient-from-color: #38b2ac !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(56, 178, 172, 0)) !important;
  }

  .md\:focus\:cl-from-teal-600:focus {
    --gradient-from-color: #319795 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(49, 151, 149, 0)) !important;
  }

  .md\:focus\:cl-from-teal-700:focus {
    --gradient-from-color: #2c7a7b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(44, 122, 123, 0)) !important;
  }

  .md\:focus\:cl-from-teal-800:focus {
    --gradient-from-color: #285e61 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(40, 94, 97, 0)) !important;
  }

  .md\:focus\:cl-from-teal-900:focus {
    --gradient-from-color: #234e52 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(35, 78, 82, 0)) !important;
  }

  .md\:focus\:cl-from-blue-100:focus {
    --gradient-from-color: #ebf8ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(235, 248, 255, 0)) !important;
  }

  .md\:focus\:cl-from-blue-200:focus {
    --gradient-from-color: #bee3f8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(190, 227, 248, 0)) !important;
  }

  .md\:focus\:cl-from-blue-300:focus {
    --gradient-from-color: #90cdf4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 205, 244, 0)) !important;
  }

  .md\:focus\:cl-from-blue-400:focus {
    --gradient-from-color: #63b3ed !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(99, 179, 237, 0)) !important;
  }

  .md\:focus\:cl-from-blue-500:focus {
    --gradient-from-color: #4299e1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 153, 225, 0)) !important;
  }

  .md\:focus\:cl-from-blue-600:focus {
    --gradient-from-color: #3182ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(49, 130, 206, 0)) !important;
  }

  .md\:focus\:cl-from-blue-700:focus {
    --gradient-from-color: #2b6cb0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(43, 108, 176, 0)) !important;
  }

  .md\:focus\:cl-from-blue-800:focus {
    --gradient-from-color: #2c5282 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(44, 82, 130, 0)) !important;
  }

  .md\:focus\:cl-from-blue-900:focus {
    --gradient-from-color: #2a4365 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(42, 67, 101, 0)) !important;
  }

  .md\:focus\:cl-from-indigo-100:focus {
    --gradient-from-color: #ebf4ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(235, 244, 255, 0)) !important;
  }

  .md\:focus\:cl-from-indigo-200:focus {
    --gradient-from-color: #c3dafe !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(195, 218, 254, 0)) !important;
  }

  .md\:focus\:cl-from-indigo-300:focus {
    --gradient-from-color: #a3bffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(163, 191, 250, 0)) !important;
  }

  .md\:focus\:cl-from-indigo-400:focus {
    --gradient-from-color: #7f9cf5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(127, 156, 245, 0)) !important;
  }

  .md\:focus\:cl-from-indigo-500:focus {
    --gradient-from-color: #667eea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 126, 234, 0)) !important;
  }

  .md\:focus\:cl-from-indigo-600:focus {
    --gradient-from-color: #5a67d8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 103, 216, 0)) !important;
  }

  .md\:focus\:cl-from-indigo-700:focus {
    --gradient-from-color: #4c51bf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(76, 81, 191, 0)) !important;
  }

  .md\:focus\:cl-from-indigo-800:focus {
    --gradient-from-color: #434190 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(67, 65, 144, 0)) !important;
  }

  .md\:focus\:cl-from-indigo-900:focus {
    --gradient-from-color: #3c366b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(60, 54, 107, 0)) !important;
  }

  .md\:focus\:cl-from-purple-100:focus {
    --gradient-from-color: #faf5ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 245, 255, 0)) !important;
  }

  .md\:focus\:cl-from-purple-200:focus {
    --gradient-from-color: #e9d8fd !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(233, 216, 253, 0)) !important;
  }

  .md\:focus\:cl-from-purple-300:focus {
    --gradient-from-color: #d6bcfa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(214, 188, 250, 0)) !important;
  }

  .md\:focus\:cl-from-purple-400:focus {
    --gradient-from-color: #b794f4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(183, 148, 244, 0)) !important;
  }

  .md\:focus\:cl-from-purple-500:focus {
    --gradient-from-color: #9f7aea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(159, 122, 234, 0)) !important;
  }

  .md\:focus\:cl-from-purple-600:focus {
    --gradient-from-color: #805ad5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(128, 90, 213, 0)) !important;
  }

  .md\:focus\:cl-from-purple-700:focus {
    --gradient-from-color: #6b46c1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(107, 70, 193, 0)) !important;
  }

  .md\:focus\:cl-from-purple-800:focus {
    --gradient-from-color: #553c9a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(85, 60, 154, 0)) !important;
  }

  .md\:focus\:cl-from-purple-900:focus {
    --gradient-from-color: #44337a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(68, 51, 122, 0)) !important;
  }

  .md\:focus\:cl-from-pink-100:focus {
    --gradient-from-color: #fff5f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 245, 247, 0)) !important;
  }

  .md\:focus\:cl-from-pink-200:focus {
    --gradient-from-color: #fed7e2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 215, 226, 0)) !important;
  }

  .md\:focus\:cl-from-pink-300:focus {
    --gradient-from-color: #fbb6ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 182, 206, 0)) !important;
  }

  .md\:focus\:cl-from-pink-400:focus {
    --gradient-from-color: #f687b3 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 135, 179, 0)) !important;
  }

  .md\:focus\:cl-from-pink-500:focus {
    --gradient-from-color: #ed64a6 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 100, 166, 0)) !important;
  }

  .md\:focus\:cl-from-pink-600:focus {
    --gradient-from-color: #d53f8c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(213, 63, 140, 0)) !important;
  }

  .md\:focus\:cl-from-pink-700:focus {
    --gradient-from-color: #b83280 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(184, 50, 128, 0)) !important;
  }

  .md\:focus\:cl-from-pink-800:focus {
    --gradient-from-color: #97266d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(151, 38, 109, 0)) !important;
  }

  .md\:focus\:cl-from-pink-900:focus {
    --gradient-from-color: #702459 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(112, 36, 89, 0)) !important;
  }

  .md\:focus\:cl-from-ui-gray-100:focus {
    --gradient-from-color: #f1f1f1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(241, 241, 241, 0)) !important;
  }

  .md\:focus\:cl-from-ui-brown-100:focus {
    --gradient-from-color: #f3ecdc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(243, 236, 220, 0)) !important;
  }

  .md\:focus\:cl-from-ui-brown-200:focus {
    --gradient-from-color: #e8e0c9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(232, 224, 201, 0)) !important;
  }

  .md\:focus\:cl-from-ui-brown-300:focus {
    --gradient-from-color: #d0c095 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(208, 192, 149, 0)) !important;
  }

  .md\:focus\:cl-from-ui-brown-700:focus {
    --gradient-from-color: #bd6005 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(189, 96, 5, 0)) !important;
  }

  .md\:focus\:cl-from-ui-green-300:focus {
    --gradient-from-color: #aac74c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(170, 199, 76, 0)) !important;
  }

  .md\:focus\:cl-from-ui-green-400:focus {
    --gradient-from-color: #71893e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(113, 137, 62, 0)) !important;
  }

  .md\:focus\:cl-from-ui-orange-500:focus {
    --gradient-from-color: #e27212 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 114, 18, 0)) !important;
  }

  .md\:focus\:cl-from-facebook:focus {
    --gradient-from-color: #3b5998 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(59, 89, 152, 0)) !important;
  }

  .md\:focus\:cl-from-twitter:focus {
    --gradient-from-color: #00acee !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 172, 238, 0)) !important;
  }

  .md\:focus\:cl-from-twitch:focus {
    --gradient-from-color: #6441a5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 65, 165, 0)) !important;
  }

  .md\:focus\:cl-from-youtube:focus {
    --gradient-from-color: #FF0000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 0, 0, 0)) !important;
  }

  .md\:focus\:cl-via-transparent:focus {
    --gradient-via-color: transparent !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .md\:focus\:cl-via-current:focus {
    --gradient-via-color: currentColor !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .md\:focus\:cl-via-black:focus {
    --gradient-via-color: #000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .md\:focus\:cl-via-white:focus {
    --gradient-via-color: #fff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .md\:focus\:cl-via-gray-100:focus {
    --gradient-via-color: #f7fafc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 250, 252, 0)) !important;
  }

  .md\:focus\:cl-via-gray-200:focus {
    --gradient-via-color: #edf2f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 242, 247, 0)) !important;
  }

  .md\:focus\:cl-via-gray-300:focus {
    --gradient-via-color: #e2e8f0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 232, 240, 0)) !important;
  }

  .md\:focus\:cl-via-gray-400:focus {
    --gradient-via-color: #cbd5e0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(203, 213, 224, 0)) !important;
  }

  .md\:focus\:cl-via-gray-500:focus {
    --gradient-via-color: #a0aec0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 174, 192, 0)) !important;
  }

  .md\:focus\:cl-via-gray-600:focus {
    --gradient-via-color: #718096 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(113, 128, 150, 0)) !important;
  }

  .md\:focus\:cl-via-gray-700:focus {
    --gradient-via-color: #4a5568 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 85, 104, 0)) !important;
  }

  .md\:focus\:cl-via-gray-800:focus {
    --gradient-via-color: #2d3748 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(45, 55, 72, 0)) !important;
  }

  .md\:focus\:cl-via-gray-900:focus {
    --gradient-via-color: #1a202c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 32, 44, 0)) !important;
  }

  .md\:focus\:cl-via-red-100:focus {
    --gradient-via-color: #fff5f5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 245, 245, 0)) !important;
  }

  .md\:focus\:cl-via-red-200:focus {
    --gradient-via-color: #fed7d7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 215, 215, 0)) !important;
  }

  .md\:focus\:cl-via-red-300:focus {
    --gradient-via-color: #feb2b2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 178, 178, 0)) !important;
  }

  .md\:focus\:cl-via-red-400:focus {
    --gradient-via-color: #fc8181 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(252, 129, 129, 0)) !important;
  }

  .md\:focus\:cl-via-red-500:focus {
    --gradient-via-color: #f56565 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(245, 101, 101, 0)) !important;
  }

  .md\:focus\:cl-via-red-600:focus {
    --gradient-via-color: #e53e3e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(229, 62, 62, 0)) !important;
  }

  .md\:focus\:cl-via-red-700:focus {
    --gradient-via-color: #c53030 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(197, 48, 48, 0)) !important;
  }

  .md\:focus\:cl-via-red-800:focus {
    --gradient-via-color: #9b2c2c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(155, 44, 44, 0)) !important;
  }

  .md\:focus\:cl-via-red-900:focus {
    --gradient-via-color: #742a2a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(116, 42, 42, 0)) !important;
  }

  .md\:focus\:cl-via-orange-100:focus {
    --gradient-via-color: #fffaf0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 240, 0)) !important;
  }

  .md\:focus\:cl-via-orange-200:focus {
    --gradient-via-color: #feebc8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 235, 200, 0)) !important;
  }

  .md\:focus\:cl-via-orange-300:focus {
    --gradient-via-color: #fbd38d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 211, 141, 0)) !important;
  }

  .md\:focus\:cl-via-orange-400:focus {
    --gradient-via-color: #f6ad55 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 173, 85, 0)) !important;
  }

  .md\:focus\:cl-via-orange-500:focus {
    --gradient-via-color: #ed8936 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 137, 54, 0)) !important;
  }

  .md\:focus\:cl-via-orange-600:focus {
    --gradient-via-color: #dd6b20 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(221, 107, 32, 0)) !important;
  }

  .md\:focus\:cl-via-orange-700:focus {
    --gradient-via-color: #c05621 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(192, 86, 33, 0)) !important;
  }

  .md\:focus\:cl-via-orange-800:focus {
    --gradient-via-color: #9c4221 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 66, 33, 0)) !important;
  }

  .md\:focus\:cl-via-orange-900:focus {
    --gradient-via-color: #7b341e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(123, 52, 30, 0)) !important;
  }

  .md\:focus\:cl-via-yellow-100:focus {
    --gradient-via-color: #fffff0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 240, 0)) !important;
  }

  .md\:focus\:cl-via-yellow-200:focus {
    --gradient-via-color: #fefcbf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 252, 191, 0)) !important;
  }

  .md\:focus\:cl-via-yellow-300:focus {
    --gradient-via-color: #faf089 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 240, 137, 0)) !important;
  }

  .md\:focus\:cl-via-yellow-400:focus {
    --gradient-via-color: #f6e05e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 224, 94, 0)) !important;
  }

  .md\:focus\:cl-via-yellow-500:focus {
    --gradient-via-color: #ecc94b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 201, 75, 0)) !important;
  }

  .md\:focus\:cl-via-yellow-600:focus {
    --gradient-via-color: #d69e2e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(214, 158, 46, 0)) !important;
  }

  .md\:focus\:cl-via-yellow-700:focus {
    --gradient-via-color: #b7791f !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(183, 121, 31, 0)) !important;
  }

  .md\:focus\:cl-via-yellow-800:focus {
    --gradient-via-color: #975a16 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(151, 90, 22, 0)) !important;
  }

  .md\:focus\:cl-via-yellow-900:focus {
    --gradient-via-color: #744210 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(116, 66, 16, 0)) !important;
  }

  .md\:focus\:cl-via-green-100:focus {
    --gradient-via-color: #f0fff4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(240, 255, 244, 0)) !important;
  }

  .md\:focus\:cl-via-green-200:focus {
    --gradient-via-color: #c6f6d5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(198, 246, 213, 0)) !important;
  }

  .md\:focus\:cl-via-green-300:focus {
    --gradient-via-color: #9ae6b4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 230, 180, 0)) !important;
  }

  .md\:focus\:cl-via-green-400:focus {
    --gradient-via-color: #68d391 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(104, 211, 145, 0)) !important;
  }

  .md\:focus\:cl-via-green-500:focus {
    --gradient-via-color: #48bb78 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(72, 187, 120, 0)) !important;
  }

  .md\:focus\:cl-via-green-600:focus {
    --gradient-via-color: #38a169 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(56, 161, 105, 0)) !important;
  }

  .md\:focus\:cl-via-green-700:focus {
    --gradient-via-color: #2f855a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(47, 133, 90, 0)) !important;
  }

  .md\:focus\:cl-via-green-800:focus {
    --gradient-via-color: #276749 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(39, 103, 73, 0)) !important;
  }

  .md\:focus\:cl-via-green-900:focus {
    --gradient-via-color: #22543d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(34, 84, 61, 0)) !important;
  }

  .md\:focus\:cl-via-teal-100:focus {
    --gradient-via-color: #e6fffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 255, 250, 0)) !important;
  }

  .md\:focus\:cl-via-teal-200:focus {
    --gradient-via-color: #b2f5ea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(178, 245, 234, 0)) !important;
  }

  .md\:focus\:cl-via-teal-300:focus {
    --gradient-via-color: #81e6d9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(129, 230, 217, 0)) !important;
  }

  .md\:focus\:cl-via-teal-400:focus {
    --gradient-via-color: #4fd1c5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(79, 209, 197, 0)) !important;
  }

  .md\:focus\:cl-via-teal-500:focus {
    --gradient-via-color: #38b2ac !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(56, 178, 172, 0)) !important;
  }

  .md\:focus\:cl-via-teal-600:focus {
    --gradient-via-color: #319795 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(49, 151, 149, 0)) !important;
  }

  .md\:focus\:cl-via-teal-700:focus {
    --gradient-via-color: #2c7a7b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(44, 122, 123, 0)) !important;
  }

  .md\:focus\:cl-via-teal-800:focus {
    --gradient-via-color: #285e61 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(40, 94, 97, 0)) !important;
  }

  .md\:focus\:cl-via-teal-900:focus {
    --gradient-via-color: #234e52 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(35, 78, 82, 0)) !important;
  }

  .md\:focus\:cl-via-blue-100:focus {
    --gradient-via-color: #ebf8ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(235, 248, 255, 0)) !important;
  }

  .md\:focus\:cl-via-blue-200:focus {
    --gradient-via-color: #bee3f8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(190, 227, 248, 0)) !important;
  }

  .md\:focus\:cl-via-blue-300:focus {
    --gradient-via-color: #90cdf4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 205, 244, 0)) !important;
  }

  .md\:focus\:cl-via-blue-400:focus {
    --gradient-via-color: #63b3ed !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(99, 179, 237, 0)) !important;
  }

  .md\:focus\:cl-via-blue-500:focus {
    --gradient-via-color: #4299e1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 153, 225, 0)) !important;
  }

  .md\:focus\:cl-via-blue-600:focus {
    --gradient-via-color: #3182ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(49, 130, 206, 0)) !important;
  }

  .md\:focus\:cl-via-blue-700:focus {
    --gradient-via-color: #2b6cb0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(43, 108, 176, 0)) !important;
  }

  .md\:focus\:cl-via-blue-800:focus {
    --gradient-via-color: #2c5282 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(44, 82, 130, 0)) !important;
  }

  .md\:focus\:cl-via-blue-900:focus {
    --gradient-via-color: #2a4365 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(42, 67, 101, 0)) !important;
  }

  .md\:focus\:cl-via-indigo-100:focus {
    --gradient-via-color: #ebf4ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(235, 244, 255, 0)) !important;
  }

  .md\:focus\:cl-via-indigo-200:focus {
    --gradient-via-color: #c3dafe !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(195, 218, 254, 0)) !important;
  }

  .md\:focus\:cl-via-indigo-300:focus {
    --gradient-via-color: #a3bffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(163, 191, 250, 0)) !important;
  }

  .md\:focus\:cl-via-indigo-400:focus {
    --gradient-via-color: #7f9cf5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(127, 156, 245, 0)) !important;
  }

  .md\:focus\:cl-via-indigo-500:focus {
    --gradient-via-color: #667eea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 126, 234, 0)) !important;
  }

  .md\:focus\:cl-via-indigo-600:focus {
    --gradient-via-color: #5a67d8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 103, 216, 0)) !important;
  }

  .md\:focus\:cl-via-indigo-700:focus {
    --gradient-via-color: #4c51bf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(76, 81, 191, 0)) !important;
  }

  .md\:focus\:cl-via-indigo-800:focus {
    --gradient-via-color: #434190 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(67, 65, 144, 0)) !important;
  }

  .md\:focus\:cl-via-indigo-900:focus {
    --gradient-via-color: #3c366b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(60, 54, 107, 0)) !important;
  }

  .md\:focus\:cl-via-purple-100:focus {
    --gradient-via-color: #faf5ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 245, 255, 0)) !important;
  }

  .md\:focus\:cl-via-purple-200:focus {
    --gradient-via-color: #e9d8fd !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(233, 216, 253, 0)) !important;
  }

  .md\:focus\:cl-via-purple-300:focus {
    --gradient-via-color: #d6bcfa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(214, 188, 250, 0)) !important;
  }

  .md\:focus\:cl-via-purple-400:focus {
    --gradient-via-color: #b794f4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(183, 148, 244, 0)) !important;
  }

  .md\:focus\:cl-via-purple-500:focus {
    --gradient-via-color: #9f7aea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(159, 122, 234, 0)) !important;
  }

  .md\:focus\:cl-via-purple-600:focus {
    --gradient-via-color: #805ad5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(128, 90, 213, 0)) !important;
  }

  .md\:focus\:cl-via-purple-700:focus {
    --gradient-via-color: #6b46c1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(107, 70, 193, 0)) !important;
  }

  .md\:focus\:cl-via-purple-800:focus {
    --gradient-via-color: #553c9a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(85, 60, 154, 0)) !important;
  }

  .md\:focus\:cl-via-purple-900:focus {
    --gradient-via-color: #44337a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(68, 51, 122, 0)) !important;
  }

  .md\:focus\:cl-via-pink-100:focus {
    --gradient-via-color: #fff5f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 245, 247, 0)) !important;
  }

  .md\:focus\:cl-via-pink-200:focus {
    --gradient-via-color: #fed7e2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 215, 226, 0)) !important;
  }

  .md\:focus\:cl-via-pink-300:focus {
    --gradient-via-color: #fbb6ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 182, 206, 0)) !important;
  }

  .md\:focus\:cl-via-pink-400:focus {
    --gradient-via-color: #f687b3 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 135, 179, 0)) !important;
  }

  .md\:focus\:cl-via-pink-500:focus {
    --gradient-via-color: #ed64a6 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 100, 166, 0)) !important;
  }

  .md\:focus\:cl-via-pink-600:focus {
    --gradient-via-color: #d53f8c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(213, 63, 140, 0)) !important;
  }

  .md\:focus\:cl-via-pink-700:focus {
    --gradient-via-color: #b83280 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(184, 50, 128, 0)) !important;
  }

  .md\:focus\:cl-via-pink-800:focus {
    --gradient-via-color: #97266d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(151, 38, 109, 0)) !important;
  }

  .md\:focus\:cl-via-pink-900:focus {
    --gradient-via-color: #702459 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(112, 36, 89, 0)) !important;
  }

  .md\:focus\:cl-via-ui-gray-100:focus {
    --gradient-via-color: #f1f1f1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(241, 241, 241, 0)) !important;
  }

  .md\:focus\:cl-via-ui-brown-100:focus {
    --gradient-via-color: #f3ecdc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(243, 236, 220, 0)) !important;
  }

  .md\:focus\:cl-via-ui-brown-200:focus {
    --gradient-via-color: #e8e0c9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(232, 224, 201, 0)) !important;
  }

  .md\:focus\:cl-via-ui-brown-300:focus {
    --gradient-via-color: #d0c095 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(208, 192, 149, 0)) !important;
  }

  .md\:focus\:cl-via-ui-brown-700:focus {
    --gradient-via-color: #bd6005 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(189, 96, 5, 0)) !important;
  }

  .md\:focus\:cl-via-ui-green-300:focus {
    --gradient-via-color: #aac74c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(170, 199, 76, 0)) !important;
  }

  .md\:focus\:cl-via-ui-green-400:focus {
    --gradient-via-color: #71893e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(113, 137, 62, 0)) !important;
  }

  .md\:focus\:cl-via-ui-orange-500:focus {
    --gradient-via-color: #e27212 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 114, 18, 0)) !important;
  }

  .md\:focus\:cl-via-facebook:focus {
    --gradient-via-color: #3b5998 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(59, 89, 152, 0)) !important;
  }

  .md\:focus\:cl-via-twitter:focus {
    --gradient-via-color: #00acee !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 172, 238, 0)) !important;
  }

  .md\:focus\:cl-via-twitch:focus {
    --gradient-via-color: #6441a5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 65, 165, 0)) !important;
  }

  .md\:focus\:cl-via-youtube:focus {
    --gradient-via-color: #FF0000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 0, 0, 0)) !important;
  }

  .md\:focus\:cl-to-transparent:focus {
    --gradient-to-color: transparent !important;
  }

  .md\:focus\:cl-to-current:focus {
    --gradient-to-color: currentColor !important;
  }

  .md\:focus\:cl-to-black:focus {
    --gradient-to-color: #000 !important;
  }

  .md\:focus\:cl-to-white:focus {
    --gradient-to-color: #fff !important;
  }

  .md\:focus\:cl-to-gray-100:focus {
    --gradient-to-color: #f7fafc !important;
  }

  .md\:focus\:cl-to-gray-200:focus {
    --gradient-to-color: #edf2f7 !important;
  }

  .md\:focus\:cl-to-gray-300:focus {
    --gradient-to-color: #e2e8f0 !important;
  }

  .md\:focus\:cl-to-gray-400:focus {
    --gradient-to-color: #cbd5e0 !important;
  }

  .md\:focus\:cl-to-gray-500:focus {
    --gradient-to-color: #a0aec0 !important;
  }

  .md\:focus\:cl-to-gray-600:focus {
    --gradient-to-color: #718096 !important;
  }

  .md\:focus\:cl-to-gray-700:focus {
    --gradient-to-color: #4a5568 !important;
  }

  .md\:focus\:cl-to-gray-800:focus {
    --gradient-to-color: #2d3748 !important;
  }

  .md\:focus\:cl-to-gray-900:focus {
    --gradient-to-color: #1a202c !important;
  }

  .md\:focus\:cl-to-red-100:focus {
    --gradient-to-color: #fff5f5 !important;
  }

  .md\:focus\:cl-to-red-200:focus {
    --gradient-to-color: #fed7d7 !important;
  }

  .md\:focus\:cl-to-red-300:focus {
    --gradient-to-color: #feb2b2 !important;
  }

  .md\:focus\:cl-to-red-400:focus {
    --gradient-to-color: #fc8181 !important;
  }

  .md\:focus\:cl-to-red-500:focus {
    --gradient-to-color: #f56565 !important;
  }

  .md\:focus\:cl-to-red-600:focus {
    --gradient-to-color: #e53e3e !important;
  }

  .md\:focus\:cl-to-red-700:focus {
    --gradient-to-color: #c53030 !important;
  }

  .md\:focus\:cl-to-red-800:focus {
    --gradient-to-color: #9b2c2c !important;
  }

  .md\:focus\:cl-to-red-900:focus {
    --gradient-to-color: #742a2a !important;
  }

  .md\:focus\:cl-to-orange-100:focus {
    --gradient-to-color: #fffaf0 !important;
  }

  .md\:focus\:cl-to-orange-200:focus {
    --gradient-to-color: #feebc8 !important;
  }

  .md\:focus\:cl-to-orange-300:focus {
    --gradient-to-color: #fbd38d !important;
  }

  .md\:focus\:cl-to-orange-400:focus {
    --gradient-to-color: #f6ad55 !important;
  }

  .md\:focus\:cl-to-orange-500:focus {
    --gradient-to-color: #ed8936 !important;
  }

  .md\:focus\:cl-to-orange-600:focus {
    --gradient-to-color: #dd6b20 !important;
  }

  .md\:focus\:cl-to-orange-700:focus {
    --gradient-to-color: #c05621 !important;
  }

  .md\:focus\:cl-to-orange-800:focus {
    --gradient-to-color: #9c4221 !important;
  }

  .md\:focus\:cl-to-orange-900:focus {
    --gradient-to-color: #7b341e !important;
  }

  .md\:focus\:cl-to-yellow-100:focus {
    --gradient-to-color: #fffff0 !important;
  }

  .md\:focus\:cl-to-yellow-200:focus {
    --gradient-to-color: #fefcbf !important;
  }

  .md\:focus\:cl-to-yellow-300:focus {
    --gradient-to-color: #faf089 !important;
  }

  .md\:focus\:cl-to-yellow-400:focus {
    --gradient-to-color: #f6e05e !important;
  }

  .md\:focus\:cl-to-yellow-500:focus {
    --gradient-to-color: #ecc94b !important;
  }

  .md\:focus\:cl-to-yellow-600:focus {
    --gradient-to-color: #d69e2e !important;
  }

  .md\:focus\:cl-to-yellow-700:focus {
    --gradient-to-color: #b7791f !important;
  }

  .md\:focus\:cl-to-yellow-800:focus {
    --gradient-to-color: #975a16 !important;
  }

  .md\:focus\:cl-to-yellow-900:focus {
    --gradient-to-color: #744210 !important;
  }

  .md\:focus\:cl-to-green-100:focus {
    --gradient-to-color: #f0fff4 !important;
  }

  .md\:focus\:cl-to-green-200:focus {
    --gradient-to-color: #c6f6d5 !important;
  }

  .md\:focus\:cl-to-green-300:focus {
    --gradient-to-color: #9ae6b4 !important;
  }

  .md\:focus\:cl-to-green-400:focus {
    --gradient-to-color: #68d391 !important;
  }

  .md\:focus\:cl-to-green-500:focus {
    --gradient-to-color: #48bb78 !important;
  }

  .md\:focus\:cl-to-green-600:focus {
    --gradient-to-color: #38a169 !important;
  }

  .md\:focus\:cl-to-green-700:focus {
    --gradient-to-color: #2f855a !important;
  }

  .md\:focus\:cl-to-green-800:focus {
    --gradient-to-color: #276749 !important;
  }

  .md\:focus\:cl-to-green-900:focus {
    --gradient-to-color: #22543d !important;
  }

  .md\:focus\:cl-to-teal-100:focus {
    --gradient-to-color: #e6fffa !important;
  }

  .md\:focus\:cl-to-teal-200:focus {
    --gradient-to-color: #b2f5ea !important;
  }

  .md\:focus\:cl-to-teal-300:focus {
    --gradient-to-color: #81e6d9 !important;
  }

  .md\:focus\:cl-to-teal-400:focus {
    --gradient-to-color: #4fd1c5 !important;
  }

  .md\:focus\:cl-to-teal-500:focus {
    --gradient-to-color: #38b2ac !important;
  }

  .md\:focus\:cl-to-teal-600:focus {
    --gradient-to-color: #319795 !important;
  }

  .md\:focus\:cl-to-teal-700:focus {
    --gradient-to-color: #2c7a7b !important;
  }

  .md\:focus\:cl-to-teal-800:focus {
    --gradient-to-color: #285e61 !important;
  }

  .md\:focus\:cl-to-teal-900:focus {
    --gradient-to-color: #234e52 !important;
  }

  .md\:focus\:cl-to-blue-100:focus {
    --gradient-to-color: #ebf8ff !important;
  }

  .md\:focus\:cl-to-blue-200:focus {
    --gradient-to-color: #bee3f8 !important;
  }

  .md\:focus\:cl-to-blue-300:focus {
    --gradient-to-color: #90cdf4 !important;
  }

  .md\:focus\:cl-to-blue-400:focus {
    --gradient-to-color: #63b3ed !important;
  }

  .md\:focus\:cl-to-blue-500:focus {
    --gradient-to-color: #4299e1 !important;
  }

  .md\:focus\:cl-to-blue-600:focus {
    --gradient-to-color: #3182ce !important;
  }

  .md\:focus\:cl-to-blue-700:focus {
    --gradient-to-color: #2b6cb0 !important;
  }

  .md\:focus\:cl-to-blue-800:focus {
    --gradient-to-color: #2c5282 !important;
  }

  .md\:focus\:cl-to-blue-900:focus {
    --gradient-to-color: #2a4365 !important;
  }

  .md\:focus\:cl-to-indigo-100:focus {
    --gradient-to-color: #ebf4ff !important;
  }

  .md\:focus\:cl-to-indigo-200:focus {
    --gradient-to-color: #c3dafe !important;
  }

  .md\:focus\:cl-to-indigo-300:focus {
    --gradient-to-color: #a3bffa !important;
  }

  .md\:focus\:cl-to-indigo-400:focus {
    --gradient-to-color: #7f9cf5 !important;
  }

  .md\:focus\:cl-to-indigo-500:focus {
    --gradient-to-color: #667eea !important;
  }

  .md\:focus\:cl-to-indigo-600:focus {
    --gradient-to-color: #5a67d8 !important;
  }

  .md\:focus\:cl-to-indigo-700:focus {
    --gradient-to-color: #4c51bf !important;
  }

  .md\:focus\:cl-to-indigo-800:focus {
    --gradient-to-color: #434190 !important;
  }

  .md\:focus\:cl-to-indigo-900:focus {
    --gradient-to-color: #3c366b !important;
  }

  .md\:focus\:cl-to-purple-100:focus {
    --gradient-to-color: #faf5ff !important;
  }

  .md\:focus\:cl-to-purple-200:focus {
    --gradient-to-color: #e9d8fd !important;
  }

  .md\:focus\:cl-to-purple-300:focus {
    --gradient-to-color: #d6bcfa !important;
  }

  .md\:focus\:cl-to-purple-400:focus {
    --gradient-to-color: #b794f4 !important;
  }

  .md\:focus\:cl-to-purple-500:focus {
    --gradient-to-color: #9f7aea !important;
  }

  .md\:focus\:cl-to-purple-600:focus {
    --gradient-to-color: #805ad5 !important;
  }

  .md\:focus\:cl-to-purple-700:focus {
    --gradient-to-color: #6b46c1 !important;
  }

  .md\:focus\:cl-to-purple-800:focus {
    --gradient-to-color: #553c9a !important;
  }

  .md\:focus\:cl-to-purple-900:focus {
    --gradient-to-color: #44337a !important;
  }

  .md\:focus\:cl-to-pink-100:focus {
    --gradient-to-color: #fff5f7 !important;
  }

  .md\:focus\:cl-to-pink-200:focus {
    --gradient-to-color: #fed7e2 !important;
  }

  .md\:focus\:cl-to-pink-300:focus {
    --gradient-to-color: #fbb6ce !important;
  }

  .md\:focus\:cl-to-pink-400:focus {
    --gradient-to-color: #f687b3 !important;
  }

  .md\:focus\:cl-to-pink-500:focus {
    --gradient-to-color: #ed64a6 !important;
  }

  .md\:focus\:cl-to-pink-600:focus {
    --gradient-to-color: #d53f8c !important;
  }

  .md\:focus\:cl-to-pink-700:focus {
    --gradient-to-color: #b83280 !important;
  }

  .md\:focus\:cl-to-pink-800:focus {
    --gradient-to-color: #97266d !important;
  }

  .md\:focus\:cl-to-pink-900:focus {
    --gradient-to-color: #702459 !important;
  }

  .md\:focus\:cl-to-ui-gray-100:focus {
    --gradient-to-color: #f1f1f1 !important;
  }

  .md\:focus\:cl-to-ui-brown-100:focus {
    --gradient-to-color: #f3ecdc !important;
  }

  .md\:focus\:cl-to-ui-brown-200:focus {
    --gradient-to-color: #e8e0c9 !important;
  }

  .md\:focus\:cl-to-ui-brown-300:focus {
    --gradient-to-color: #d0c095 !important;
  }

  .md\:focus\:cl-to-ui-brown-700:focus {
    --gradient-to-color: #bd6005 !important;
  }

  .md\:focus\:cl-to-ui-green-300:focus {
    --gradient-to-color: #aac74c !important;
  }

  .md\:focus\:cl-to-ui-green-400:focus {
    --gradient-to-color: #71893e !important;
  }

  .md\:focus\:cl-to-ui-orange-500:focus {
    --gradient-to-color: #e27212 !important;
  }

  .md\:focus\:cl-to-facebook:focus {
    --gradient-to-color: #3b5998 !important;
  }

  .md\:focus\:cl-to-twitter:focus {
    --gradient-to-color: #00acee !important;
  }

  .md\:focus\:cl-to-twitch:focus {
    --gradient-to-color: #6441a5 !important;
  }

  .md\:focus\:cl-to-youtube:focus {
    --gradient-to-color: #FF0000 !important;
  }

  .md\:cl-bg-opacity-0 {
    --bg-opacity: 0 !important;
  }

  .md\:cl-bg-opacity-25 {
    --bg-opacity: 0.25 !important;
  }

  .md\:cl-bg-opacity-50 {
    --bg-opacity: 0.5 !important;
  }

  .md\:cl-bg-opacity-75 {
    --bg-opacity: 0.75 !important;
  }

  .md\:cl-bg-opacity-100 {
    --bg-opacity: 1 !important;
  }

  .md\:hover\:cl-bg-opacity-0:hover {
    --bg-opacity: 0 !important;
  }

  .md\:hover\:cl-bg-opacity-25:hover {
    --bg-opacity: 0.25 !important;
  }

  .md\:hover\:cl-bg-opacity-50:hover {
    --bg-opacity: 0.5 !important;
  }

  .md\:hover\:cl-bg-opacity-75:hover {
    --bg-opacity: 0.75 !important;
  }

  .md\:hover\:cl-bg-opacity-100:hover {
    --bg-opacity: 1 !important;
  }

  .md\:focus\:cl-bg-opacity-0:focus {
    --bg-opacity: 0 !important;
  }

  .md\:focus\:cl-bg-opacity-25:focus {
    --bg-opacity: 0.25 !important;
  }

  .md\:focus\:cl-bg-opacity-50:focus {
    --bg-opacity: 0.5 !important;
  }

  .md\:focus\:cl-bg-opacity-75:focus {
    --bg-opacity: 0.75 !important;
  }

  .md\:focus\:cl-bg-opacity-100:focus {
    --bg-opacity: 1 !important;
  }

  .md\:cl-bg-bottom {
    background-position: bottom !important;
  }

  .md\:cl-bg-center {
    background-position: center !important;
  }

  .md\:cl-bg-left {
    background-position: left !important;
  }

  .md\:cl-bg-left-bottom {
    background-position: left bottom !important;
  }

  .md\:cl-bg-left-top {
    background-position: left top !important;
  }

  .md\:cl-bg-right {
    background-position: right !important;
  }

  .md\:cl-bg-right-bottom {
    background-position: right bottom !important;
  }

  .md\:cl-bg-right-top {
    background-position: right top !important;
  }

  .md\:cl-bg-top {
    background-position: top !important;
  }

  .md\:cl-bg-repeat {
    background-repeat: repeat !important;
  }

  .md\:cl-bg-no-repeat {
    background-repeat: no-repeat !important;
  }

  .md\:cl-bg-repeat-x {
    background-repeat: repeat-x !important;
  }

  .md\:cl-bg-repeat-y {
    background-repeat: repeat-y !important;
  }

  .md\:cl-bg-repeat-round {
    background-repeat: round !important;
  }

  .md\:cl-bg-repeat-space {
    background-repeat: space !important;
  }

  .md\:cl-bg-auto {
    background-size: auto !important;
  }

  .md\:cl-bg-cover {
    background-size: cover !important;
  }

  .md\:cl-bg-contain {
    background-size: contain !important;
  }

  .md\:cl-border-collapse {
    border-collapse: collapse !important;
  }

  .md\:cl-border-separate {
    border-collapse: separate !important;
  }

  .md\:cl-border-transparent {
    border-color: transparent !important;
  }

  .md\:cl-border-current {
    border-color: currentColor !important;
  }

  .md\:cl-border-black {
    --border-opacity: 1 !important;
    border-color: #000 !important;
    border-color: rgba(0, 0, 0, var(--border-opacity)) !important;
  }

  .md\:cl-border-white {
    --border-opacity: 1 !important;
    border-color: #fff !important;
    border-color: rgba(255, 255, 255, var(--border-opacity)) !important;
  }

  .md\:cl-border-gray-100 {
    --border-opacity: 1 !important;
    border-color: #f7fafc !important;
    border-color: rgba(247, 250, 252, var(--border-opacity)) !important;
  }

  .md\:cl-border-gray-200 {
    --border-opacity: 1 !important;
    border-color: #edf2f7 !important;
    border-color: rgba(237, 242, 247, var(--border-opacity)) !important;
  }

  .md\:cl-border-gray-300 {
    --border-opacity: 1 !important;
    border-color: #e2e8f0 !important;
    border-color: rgba(226, 232, 240, var(--border-opacity)) !important;
  }

  .md\:cl-border-gray-400 {
    --border-opacity: 1 !important;
    border-color: #cbd5e0 !important;
    border-color: rgba(203, 213, 224, var(--border-opacity)) !important;
  }

  .md\:cl-border-gray-500 {
    --border-opacity: 1 !important;
    border-color: #a0aec0 !important;
    border-color: rgba(160, 174, 192, var(--border-opacity)) !important;
  }

  .md\:cl-border-gray-600 {
    --border-opacity: 1 !important;
    border-color: #718096 !important;
    border-color: rgba(113, 128, 150, var(--border-opacity)) !important;
  }

  .md\:cl-border-gray-700 {
    --border-opacity: 1 !important;
    border-color: #4a5568 !important;
    border-color: rgba(74, 85, 104, var(--border-opacity)) !important;
  }

  .md\:cl-border-gray-800 {
    --border-opacity: 1 !important;
    border-color: #2d3748 !important;
    border-color: rgba(45, 55, 72, var(--border-opacity)) !important;
  }

  .md\:cl-border-gray-900 {
    --border-opacity: 1 !important;
    border-color: #1a202c !important;
    border-color: rgba(26, 32, 44, var(--border-opacity)) !important;
  }

  .md\:cl-border-red-100 {
    --border-opacity: 1 !important;
    border-color: #fff5f5 !important;
    border-color: rgba(255, 245, 245, var(--border-opacity)) !important;
  }

  .md\:cl-border-red-200 {
    --border-opacity: 1 !important;
    border-color: #fed7d7 !important;
    border-color: rgba(254, 215, 215, var(--border-opacity)) !important;
  }

  .md\:cl-border-red-300 {
    --border-opacity: 1 !important;
    border-color: #feb2b2 !important;
    border-color: rgba(254, 178, 178, var(--border-opacity)) !important;
  }

  .md\:cl-border-red-400 {
    --border-opacity: 1 !important;
    border-color: #fc8181 !important;
    border-color: rgba(252, 129, 129, var(--border-opacity)) !important;
  }

  .md\:cl-border-red-500 {
    --border-opacity: 1 !important;
    border-color: #f56565 !important;
    border-color: rgba(245, 101, 101, var(--border-opacity)) !important;
  }

  .md\:cl-border-red-600 {
    --border-opacity: 1 !important;
    border-color: #e53e3e !important;
    border-color: rgba(229, 62, 62, var(--border-opacity)) !important;
  }

  .md\:cl-border-red-700 {
    --border-opacity: 1 !important;
    border-color: #c53030 !important;
    border-color: rgba(197, 48, 48, var(--border-opacity)) !important;
  }

  .md\:cl-border-red-800 {
    --border-opacity: 1 !important;
    border-color: #9b2c2c !important;
    border-color: rgba(155, 44, 44, var(--border-opacity)) !important;
  }

  .md\:cl-border-red-900 {
    --border-opacity: 1 !important;
    border-color: #742a2a !important;
    border-color: rgba(116, 42, 42, var(--border-opacity)) !important;
  }

  .md\:cl-border-orange-100 {
    --border-opacity: 1 !important;
    border-color: #fffaf0 !important;
    border-color: rgba(255, 250, 240, var(--border-opacity)) !important;
  }

  .md\:cl-border-orange-200 {
    --border-opacity: 1 !important;
    border-color: #feebc8 !important;
    border-color: rgba(254, 235, 200, var(--border-opacity)) !important;
  }

  .md\:cl-border-orange-300 {
    --border-opacity: 1 !important;
    border-color: #fbd38d !important;
    border-color: rgba(251, 211, 141, var(--border-opacity)) !important;
  }

  .md\:cl-border-orange-400 {
    --border-opacity: 1 !important;
    border-color: #f6ad55 !important;
    border-color: rgba(246, 173, 85, var(--border-opacity)) !important;
  }

  .md\:cl-border-orange-500 {
    --border-opacity: 1 !important;
    border-color: #ed8936 !important;
    border-color: rgba(237, 137, 54, var(--border-opacity)) !important;
  }

  .md\:cl-border-orange-600 {
    --border-opacity: 1 !important;
    border-color: #dd6b20 !important;
    border-color: rgba(221, 107, 32, var(--border-opacity)) !important;
  }

  .md\:cl-border-orange-700 {
    --border-opacity: 1 !important;
    border-color: #c05621 !important;
    border-color: rgba(192, 86, 33, var(--border-opacity)) !important;
  }

  .md\:cl-border-orange-800 {
    --border-opacity: 1 !important;
    border-color: #9c4221 !important;
    border-color: rgba(156, 66, 33, var(--border-opacity)) !important;
  }

  .md\:cl-border-orange-900 {
    --border-opacity: 1 !important;
    border-color: #7b341e !important;
    border-color: rgba(123, 52, 30, var(--border-opacity)) !important;
  }

  .md\:cl-border-yellow-100 {
    --border-opacity: 1 !important;
    border-color: #fffff0 !important;
    border-color: rgba(255, 255, 240, var(--border-opacity)) !important;
  }

  .md\:cl-border-yellow-200 {
    --border-opacity: 1 !important;
    border-color: #fefcbf !important;
    border-color: rgba(254, 252, 191, var(--border-opacity)) !important;
  }

  .md\:cl-border-yellow-300 {
    --border-opacity: 1 !important;
    border-color: #faf089 !important;
    border-color: rgba(250, 240, 137, var(--border-opacity)) !important;
  }

  .md\:cl-border-yellow-400 {
    --border-opacity: 1 !important;
    border-color: #f6e05e !important;
    border-color: rgba(246, 224, 94, var(--border-opacity)) !important;
  }

  .md\:cl-border-yellow-500 {
    --border-opacity: 1 !important;
    border-color: #ecc94b !important;
    border-color: rgba(236, 201, 75, var(--border-opacity)) !important;
  }

  .md\:cl-border-yellow-600 {
    --border-opacity: 1 !important;
    border-color: #d69e2e !important;
    border-color: rgba(214, 158, 46, var(--border-opacity)) !important;
  }

  .md\:cl-border-yellow-700 {
    --border-opacity: 1 !important;
    border-color: #b7791f !important;
    border-color: rgba(183, 121, 31, var(--border-opacity)) !important;
  }

  .md\:cl-border-yellow-800 {
    --border-opacity: 1 !important;
    border-color: #975a16 !important;
    border-color: rgba(151, 90, 22, var(--border-opacity)) !important;
  }

  .md\:cl-border-yellow-900 {
    --border-opacity: 1 !important;
    border-color: #744210 !important;
    border-color: rgba(116, 66, 16, var(--border-opacity)) !important;
  }

  .md\:cl-border-green-100 {
    --border-opacity: 1 !important;
    border-color: #f0fff4 !important;
    border-color: rgba(240, 255, 244, var(--border-opacity)) !important;
  }

  .md\:cl-border-green-200 {
    --border-opacity: 1 !important;
    border-color: #c6f6d5 !important;
    border-color: rgba(198, 246, 213, var(--border-opacity)) !important;
  }

  .md\:cl-border-green-300 {
    --border-opacity: 1 !important;
    border-color: #9ae6b4 !important;
    border-color: rgba(154, 230, 180, var(--border-opacity)) !important;
  }

  .md\:cl-border-green-400 {
    --border-opacity: 1 !important;
    border-color: #68d391 !important;
    border-color: rgba(104, 211, 145, var(--border-opacity)) !important;
  }

  .md\:cl-border-green-500 {
    --border-opacity: 1 !important;
    border-color: #48bb78 !important;
    border-color: rgba(72, 187, 120, var(--border-opacity)) !important;
  }

  .md\:cl-border-green-600 {
    --border-opacity: 1 !important;
    border-color: #38a169 !important;
    border-color: rgba(56, 161, 105, var(--border-opacity)) !important;
  }

  .md\:cl-border-green-700 {
    --border-opacity: 1 !important;
    border-color: #2f855a !important;
    border-color: rgba(47, 133, 90, var(--border-opacity)) !important;
  }

  .md\:cl-border-green-800 {
    --border-opacity: 1 !important;
    border-color: #276749 !important;
    border-color: rgba(39, 103, 73, var(--border-opacity)) !important;
  }

  .md\:cl-border-green-900 {
    --border-opacity: 1 !important;
    border-color: #22543d !important;
    border-color: rgba(34, 84, 61, var(--border-opacity)) !important;
  }

  .md\:cl-border-teal-100 {
    --border-opacity: 1 !important;
    border-color: #e6fffa !important;
    border-color: rgba(230, 255, 250, var(--border-opacity)) !important;
  }

  .md\:cl-border-teal-200 {
    --border-opacity: 1 !important;
    border-color: #b2f5ea !important;
    border-color: rgba(178, 245, 234, var(--border-opacity)) !important;
  }

  .md\:cl-border-teal-300 {
    --border-opacity: 1 !important;
    border-color: #81e6d9 !important;
    border-color: rgba(129, 230, 217, var(--border-opacity)) !important;
  }

  .md\:cl-border-teal-400 {
    --border-opacity: 1 !important;
    border-color: #4fd1c5 !important;
    border-color: rgba(79, 209, 197, var(--border-opacity)) !important;
  }

  .md\:cl-border-teal-500 {
    --border-opacity: 1 !important;
    border-color: #38b2ac !important;
    border-color: rgba(56, 178, 172, var(--border-opacity)) !important;
  }

  .md\:cl-border-teal-600 {
    --border-opacity: 1 !important;
    border-color: #319795 !important;
    border-color: rgba(49, 151, 149, var(--border-opacity)) !important;
  }

  .md\:cl-border-teal-700 {
    --border-opacity: 1 !important;
    border-color: #2c7a7b !important;
    border-color: rgba(44, 122, 123, var(--border-opacity)) !important;
  }

  .md\:cl-border-teal-800 {
    --border-opacity: 1 !important;
    border-color: #285e61 !important;
    border-color: rgba(40, 94, 97, var(--border-opacity)) !important;
  }

  .md\:cl-border-teal-900 {
    --border-opacity: 1 !important;
    border-color: #234e52 !important;
    border-color: rgba(35, 78, 82, var(--border-opacity)) !important;
  }

  .md\:cl-border-blue-100 {
    --border-opacity: 1 !important;
    border-color: #ebf8ff !important;
    border-color: rgba(235, 248, 255, var(--border-opacity)) !important;
  }

  .md\:cl-border-blue-200 {
    --border-opacity: 1 !important;
    border-color: #bee3f8 !important;
    border-color: rgba(190, 227, 248, var(--border-opacity)) !important;
  }

  .md\:cl-border-blue-300 {
    --border-opacity: 1 !important;
    border-color: #90cdf4 !important;
    border-color: rgba(144, 205, 244, var(--border-opacity)) !important;
  }

  .md\:cl-border-blue-400 {
    --border-opacity: 1 !important;
    border-color: #63b3ed !important;
    border-color: rgba(99, 179, 237, var(--border-opacity)) !important;
  }

  .md\:cl-border-blue-500 {
    --border-opacity: 1 !important;
    border-color: #4299e1 !important;
    border-color: rgba(66, 153, 225, var(--border-opacity)) !important;
  }

  .md\:cl-border-blue-600 {
    --border-opacity: 1 !important;
    border-color: #3182ce !important;
    border-color: rgba(49, 130, 206, var(--border-opacity)) !important;
  }

  .md\:cl-border-blue-700 {
    --border-opacity: 1 !important;
    border-color: #2b6cb0 !important;
    border-color: rgba(43, 108, 176, var(--border-opacity)) !important;
  }

  .md\:cl-border-blue-800 {
    --border-opacity: 1 !important;
    border-color: #2c5282 !important;
    border-color: rgba(44, 82, 130, var(--border-opacity)) !important;
  }

  .md\:cl-border-blue-900 {
    --border-opacity: 1 !important;
    border-color: #2a4365 !important;
    border-color: rgba(42, 67, 101, var(--border-opacity)) !important;
  }

  .md\:cl-border-indigo-100 {
    --border-opacity: 1 !important;
    border-color: #ebf4ff !important;
    border-color: rgba(235, 244, 255, var(--border-opacity)) !important;
  }

  .md\:cl-border-indigo-200 {
    --border-opacity: 1 !important;
    border-color: #c3dafe !important;
    border-color: rgba(195, 218, 254, var(--border-opacity)) !important;
  }

  .md\:cl-border-indigo-300 {
    --border-opacity: 1 !important;
    border-color: #a3bffa !important;
    border-color: rgba(163, 191, 250, var(--border-opacity)) !important;
  }

  .md\:cl-border-indigo-400 {
    --border-opacity: 1 !important;
    border-color: #7f9cf5 !important;
    border-color: rgba(127, 156, 245, var(--border-opacity)) !important;
  }

  .md\:cl-border-indigo-500 {
    --border-opacity: 1 !important;
    border-color: #667eea !important;
    border-color: rgba(102, 126, 234, var(--border-opacity)) !important;
  }

  .md\:cl-border-indigo-600 {
    --border-opacity: 1 !important;
    border-color: #5a67d8 !important;
    border-color: rgba(90, 103, 216, var(--border-opacity)) !important;
  }

  .md\:cl-border-indigo-700 {
    --border-opacity: 1 !important;
    border-color: #4c51bf !important;
    border-color: rgba(76, 81, 191, var(--border-opacity)) !important;
  }

  .md\:cl-border-indigo-800 {
    --border-opacity: 1 !important;
    border-color: #434190 !important;
    border-color: rgba(67, 65, 144, var(--border-opacity)) !important;
  }

  .md\:cl-border-indigo-900 {
    --border-opacity: 1 !important;
    border-color: #3c366b !important;
    border-color: rgba(60, 54, 107, var(--border-opacity)) !important;
  }

  .md\:cl-border-purple-100 {
    --border-opacity: 1 !important;
    border-color: #faf5ff !important;
    border-color: rgba(250, 245, 255, var(--border-opacity)) !important;
  }

  .md\:cl-border-purple-200 {
    --border-opacity: 1 !important;
    border-color: #e9d8fd !important;
    border-color: rgba(233, 216, 253, var(--border-opacity)) !important;
  }

  .md\:cl-border-purple-300 {
    --border-opacity: 1 !important;
    border-color: #d6bcfa !important;
    border-color: rgba(214, 188, 250, var(--border-opacity)) !important;
  }

  .md\:cl-border-purple-400 {
    --border-opacity: 1 !important;
    border-color: #b794f4 !important;
    border-color: rgba(183, 148, 244, var(--border-opacity)) !important;
  }

  .md\:cl-border-purple-500 {
    --border-opacity: 1 !important;
    border-color: #9f7aea !important;
    border-color: rgba(159, 122, 234, var(--border-opacity)) !important;
  }

  .md\:cl-border-purple-600 {
    --border-opacity: 1 !important;
    border-color: #805ad5 !important;
    border-color: rgba(128, 90, 213, var(--border-opacity)) !important;
  }

  .md\:cl-border-purple-700 {
    --border-opacity: 1 !important;
    border-color: #6b46c1 !important;
    border-color: rgba(107, 70, 193, var(--border-opacity)) !important;
  }

  .md\:cl-border-purple-800 {
    --border-opacity: 1 !important;
    border-color: #553c9a !important;
    border-color: rgba(85, 60, 154, var(--border-opacity)) !important;
  }

  .md\:cl-border-purple-900 {
    --border-opacity: 1 !important;
    border-color: #44337a !important;
    border-color: rgba(68, 51, 122, var(--border-opacity)) !important;
  }

  .md\:cl-border-pink-100 {
    --border-opacity: 1 !important;
    border-color: #fff5f7 !important;
    border-color: rgba(255, 245, 247, var(--border-opacity)) !important;
  }

  .md\:cl-border-pink-200 {
    --border-opacity: 1 !important;
    border-color: #fed7e2 !important;
    border-color: rgba(254, 215, 226, var(--border-opacity)) !important;
  }

  .md\:cl-border-pink-300 {
    --border-opacity: 1 !important;
    border-color: #fbb6ce !important;
    border-color: rgba(251, 182, 206, var(--border-opacity)) !important;
  }

  .md\:cl-border-pink-400 {
    --border-opacity: 1 !important;
    border-color: #f687b3 !important;
    border-color: rgba(246, 135, 179, var(--border-opacity)) !important;
  }

  .md\:cl-border-pink-500 {
    --border-opacity: 1 !important;
    border-color: #ed64a6 !important;
    border-color: rgba(237, 100, 166, var(--border-opacity)) !important;
  }

  .md\:cl-border-pink-600 {
    --border-opacity: 1 !important;
    border-color: #d53f8c !important;
    border-color: rgba(213, 63, 140, var(--border-opacity)) !important;
  }

  .md\:cl-border-pink-700 {
    --border-opacity: 1 !important;
    border-color: #b83280 !important;
    border-color: rgba(184, 50, 128, var(--border-opacity)) !important;
  }

  .md\:cl-border-pink-800 {
    --border-opacity: 1 !important;
    border-color: #97266d !important;
    border-color: rgba(151, 38, 109, var(--border-opacity)) !important;
  }

  .md\:cl-border-pink-900 {
    --border-opacity: 1 !important;
    border-color: #702459 !important;
    border-color: rgba(112, 36, 89, var(--border-opacity)) !important;
  }

  .md\:cl-border-ui-gray-100 {
    --border-opacity: 1 !important;
    border-color: #f1f1f1 !important;
    border-color: rgba(241, 241, 241, var(--border-opacity)) !important;
  }

  .md\:cl-border-ui-brown-100 {
    --border-opacity: 1 !important;
    border-color: #f3ecdc !important;
    border-color: rgba(243, 236, 220, var(--border-opacity)) !important;
  }

  .md\:cl-border-ui-brown-200 {
    --border-opacity: 1 !important;
    border-color: #e8e0c9 !important;
    border-color: rgba(232, 224, 201, var(--border-opacity)) !important;
  }

  .md\:cl-border-ui-brown-300 {
    --border-opacity: 1 !important;
    border-color: #d0c095 !important;
    border-color: rgba(208, 192, 149, var(--border-opacity)) !important;
  }

  .md\:cl-border-ui-brown-700 {
    --border-opacity: 1 !important;
    border-color: #bd6005 !important;
    border-color: rgba(189, 96, 5, var(--border-opacity)) !important;
  }

  .md\:cl-border-ui-green-300 {
    --border-opacity: 1 !important;
    border-color: #aac74c !important;
    border-color: rgba(170, 199, 76, var(--border-opacity)) !important;
  }

  .md\:cl-border-ui-green-400 {
    --border-opacity: 1 !important;
    border-color: #71893e !important;
    border-color: rgba(113, 137, 62, var(--border-opacity)) !important;
  }

  .md\:cl-border-ui-orange-500 {
    --border-opacity: 1 !important;
    border-color: #e27212 !important;
    border-color: rgba(226, 114, 18, var(--border-opacity)) !important;
  }

  .md\:cl-border-facebook {
    --border-opacity: 1 !important;
    border-color: #3b5998 !important;
    border-color: rgba(59, 89, 152, var(--border-opacity)) !important;
  }

  .md\:cl-border-twitter {
    --border-opacity: 1 !important;
    border-color: #00acee !important;
    border-color: rgba(0, 172, 238, var(--border-opacity)) !important;
  }

  .md\:cl-border-twitch {
    --border-opacity: 1 !important;
    border-color: #6441a5 !important;
    border-color: rgba(100, 65, 165, var(--border-opacity)) !important;
  }

  .md\:cl-border-youtube {
    --border-opacity: 1 !important;
    border-color: #FF0000 !important;
    border-color: rgba(255, 0, 0, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-transparent:hover {
    border-color: transparent !important;
  }

  .md\:hover\:cl-border-current:hover {
    border-color: currentColor !important;
  }

  .md\:hover\:cl-border-black:hover {
    --border-opacity: 1 !important;
    border-color: #000 !important;
    border-color: rgba(0, 0, 0, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-white:hover {
    --border-opacity: 1 !important;
    border-color: #fff !important;
    border-color: rgba(255, 255, 255, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-gray-100:hover {
    --border-opacity: 1 !important;
    border-color: #f7fafc !important;
    border-color: rgba(247, 250, 252, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-gray-200:hover {
    --border-opacity: 1 !important;
    border-color: #edf2f7 !important;
    border-color: rgba(237, 242, 247, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-gray-300:hover {
    --border-opacity: 1 !important;
    border-color: #e2e8f0 !important;
    border-color: rgba(226, 232, 240, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-gray-400:hover {
    --border-opacity: 1 !important;
    border-color: #cbd5e0 !important;
    border-color: rgba(203, 213, 224, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-gray-500:hover {
    --border-opacity: 1 !important;
    border-color: #a0aec0 !important;
    border-color: rgba(160, 174, 192, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-gray-600:hover {
    --border-opacity: 1 !important;
    border-color: #718096 !important;
    border-color: rgba(113, 128, 150, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-gray-700:hover {
    --border-opacity: 1 !important;
    border-color: #4a5568 !important;
    border-color: rgba(74, 85, 104, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-gray-800:hover {
    --border-opacity: 1 !important;
    border-color: #2d3748 !important;
    border-color: rgba(45, 55, 72, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-gray-900:hover {
    --border-opacity: 1 !important;
    border-color: #1a202c !important;
    border-color: rgba(26, 32, 44, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-red-100:hover {
    --border-opacity: 1 !important;
    border-color: #fff5f5 !important;
    border-color: rgba(255, 245, 245, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-red-200:hover {
    --border-opacity: 1 !important;
    border-color: #fed7d7 !important;
    border-color: rgba(254, 215, 215, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-red-300:hover {
    --border-opacity: 1 !important;
    border-color: #feb2b2 !important;
    border-color: rgba(254, 178, 178, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-red-400:hover {
    --border-opacity: 1 !important;
    border-color: #fc8181 !important;
    border-color: rgba(252, 129, 129, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-red-500:hover {
    --border-opacity: 1 !important;
    border-color: #f56565 !important;
    border-color: rgba(245, 101, 101, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-red-600:hover {
    --border-opacity: 1 !important;
    border-color: #e53e3e !important;
    border-color: rgba(229, 62, 62, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-red-700:hover {
    --border-opacity: 1 !important;
    border-color: #c53030 !important;
    border-color: rgba(197, 48, 48, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-red-800:hover {
    --border-opacity: 1 !important;
    border-color: #9b2c2c !important;
    border-color: rgba(155, 44, 44, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-red-900:hover {
    --border-opacity: 1 !important;
    border-color: #742a2a !important;
    border-color: rgba(116, 42, 42, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-orange-100:hover {
    --border-opacity: 1 !important;
    border-color: #fffaf0 !important;
    border-color: rgba(255, 250, 240, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-orange-200:hover {
    --border-opacity: 1 !important;
    border-color: #feebc8 !important;
    border-color: rgba(254, 235, 200, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-orange-300:hover {
    --border-opacity: 1 !important;
    border-color: #fbd38d !important;
    border-color: rgba(251, 211, 141, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-orange-400:hover {
    --border-opacity: 1 !important;
    border-color: #f6ad55 !important;
    border-color: rgba(246, 173, 85, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-orange-500:hover {
    --border-opacity: 1 !important;
    border-color: #ed8936 !important;
    border-color: rgba(237, 137, 54, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-orange-600:hover {
    --border-opacity: 1 !important;
    border-color: #dd6b20 !important;
    border-color: rgba(221, 107, 32, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-orange-700:hover {
    --border-opacity: 1 !important;
    border-color: #c05621 !important;
    border-color: rgba(192, 86, 33, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-orange-800:hover {
    --border-opacity: 1 !important;
    border-color: #9c4221 !important;
    border-color: rgba(156, 66, 33, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-orange-900:hover {
    --border-opacity: 1 !important;
    border-color: #7b341e !important;
    border-color: rgba(123, 52, 30, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-yellow-100:hover {
    --border-opacity: 1 !important;
    border-color: #fffff0 !important;
    border-color: rgba(255, 255, 240, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-yellow-200:hover {
    --border-opacity: 1 !important;
    border-color: #fefcbf !important;
    border-color: rgba(254, 252, 191, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-yellow-300:hover {
    --border-opacity: 1 !important;
    border-color: #faf089 !important;
    border-color: rgba(250, 240, 137, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-yellow-400:hover {
    --border-opacity: 1 !important;
    border-color: #f6e05e !important;
    border-color: rgba(246, 224, 94, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-yellow-500:hover {
    --border-opacity: 1 !important;
    border-color: #ecc94b !important;
    border-color: rgba(236, 201, 75, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-yellow-600:hover {
    --border-opacity: 1 !important;
    border-color: #d69e2e !important;
    border-color: rgba(214, 158, 46, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-yellow-700:hover {
    --border-opacity: 1 !important;
    border-color: #b7791f !important;
    border-color: rgba(183, 121, 31, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-yellow-800:hover {
    --border-opacity: 1 !important;
    border-color: #975a16 !important;
    border-color: rgba(151, 90, 22, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-yellow-900:hover {
    --border-opacity: 1 !important;
    border-color: #744210 !important;
    border-color: rgba(116, 66, 16, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-green-100:hover {
    --border-opacity: 1 !important;
    border-color: #f0fff4 !important;
    border-color: rgba(240, 255, 244, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-green-200:hover {
    --border-opacity: 1 !important;
    border-color: #c6f6d5 !important;
    border-color: rgba(198, 246, 213, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-green-300:hover {
    --border-opacity: 1 !important;
    border-color: #9ae6b4 !important;
    border-color: rgba(154, 230, 180, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-green-400:hover {
    --border-opacity: 1 !important;
    border-color: #68d391 !important;
    border-color: rgba(104, 211, 145, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-green-500:hover {
    --border-opacity: 1 !important;
    border-color: #48bb78 !important;
    border-color: rgba(72, 187, 120, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-green-600:hover {
    --border-opacity: 1 !important;
    border-color: #38a169 !important;
    border-color: rgba(56, 161, 105, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-green-700:hover {
    --border-opacity: 1 !important;
    border-color: #2f855a !important;
    border-color: rgba(47, 133, 90, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-green-800:hover {
    --border-opacity: 1 !important;
    border-color: #276749 !important;
    border-color: rgba(39, 103, 73, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-green-900:hover {
    --border-opacity: 1 !important;
    border-color: #22543d !important;
    border-color: rgba(34, 84, 61, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-teal-100:hover {
    --border-opacity: 1 !important;
    border-color: #e6fffa !important;
    border-color: rgba(230, 255, 250, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-teal-200:hover {
    --border-opacity: 1 !important;
    border-color: #b2f5ea !important;
    border-color: rgba(178, 245, 234, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-teal-300:hover {
    --border-opacity: 1 !important;
    border-color: #81e6d9 !important;
    border-color: rgba(129, 230, 217, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-teal-400:hover {
    --border-opacity: 1 !important;
    border-color: #4fd1c5 !important;
    border-color: rgba(79, 209, 197, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-teal-500:hover {
    --border-opacity: 1 !important;
    border-color: #38b2ac !important;
    border-color: rgba(56, 178, 172, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-teal-600:hover {
    --border-opacity: 1 !important;
    border-color: #319795 !important;
    border-color: rgba(49, 151, 149, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-teal-700:hover {
    --border-opacity: 1 !important;
    border-color: #2c7a7b !important;
    border-color: rgba(44, 122, 123, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-teal-800:hover {
    --border-opacity: 1 !important;
    border-color: #285e61 !important;
    border-color: rgba(40, 94, 97, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-teal-900:hover {
    --border-opacity: 1 !important;
    border-color: #234e52 !important;
    border-color: rgba(35, 78, 82, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-blue-100:hover {
    --border-opacity: 1 !important;
    border-color: #ebf8ff !important;
    border-color: rgba(235, 248, 255, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-blue-200:hover {
    --border-opacity: 1 !important;
    border-color: #bee3f8 !important;
    border-color: rgba(190, 227, 248, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-blue-300:hover {
    --border-opacity: 1 !important;
    border-color: #90cdf4 !important;
    border-color: rgba(144, 205, 244, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-blue-400:hover {
    --border-opacity: 1 !important;
    border-color: #63b3ed !important;
    border-color: rgba(99, 179, 237, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-blue-500:hover {
    --border-opacity: 1 !important;
    border-color: #4299e1 !important;
    border-color: rgba(66, 153, 225, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-blue-600:hover {
    --border-opacity: 1 !important;
    border-color: #3182ce !important;
    border-color: rgba(49, 130, 206, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-blue-700:hover {
    --border-opacity: 1 !important;
    border-color: #2b6cb0 !important;
    border-color: rgba(43, 108, 176, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-blue-800:hover {
    --border-opacity: 1 !important;
    border-color: #2c5282 !important;
    border-color: rgba(44, 82, 130, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-blue-900:hover {
    --border-opacity: 1 !important;
    border-color: #2a4365 !important;
    border-color: rgba(42, 67, 101, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-indigo-100:hover {
    --border-opacity: 1 !important;
    border-color: #ebf4ff !important;
    border-color: rgba(235, 244, 255, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-indigo-200:hover {
    --border-opacity: 1 !important;
    border-color: #c3dafe !important;
    border-color: rgba(195, 218, 254, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-indigo-300:hover {
    --border-opacity: 1 !important;
    border-color: #a3bffa !important;
    border-color: rgba(163, 191, 250, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-indigo-400:hover {
    --border-opacity: 1 !important;
    border-color: #7f9cf5 !important;
    border-color: rgba(127, 156, 245, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-indigo-500:hover {
    --border-opacity: 1 !important;
    border-color: #667eea !important;
    border-color: rgba(102, 126, 234, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-indigo-600:hover {
    --border-opacity: 1 !important;
    border-color: #5a67d8 !important;
    border-color: rgba(90, 103, 216, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-indigo-700:hover {
    --border-opacity: 1 !important;
    border-color: #4c51bf !important;
    border-color: rgba(76, 81, 191, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-indigo-800:hover {
    --border-opacity: 1 !important;
    border-color: #434190 !important;
    border-color: rgba(67, 65, 144, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-indigo-900:hover {
    --border-opacity: 1 !important;
    border-color: #3c366b !important;
    border-color: rgba(60, 54, 107, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-purple-100:hover {
    --border-opacity: 1 !important;
    border-color: #faf5ff !important;
    border-color: rgba(250, 245, 255, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-purple-200:hover {
    --border-opacity: 1 !important;
    border-color: #e9d8fd !important;
    border-color: rgba(233, 216, 253, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-purple-300:hover {
    --border-opacity: 1 !important;
    border-color: #d6bcfa !important;
    border-color: rgba(214, 188, 250, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-purple-400:hover {
    --border-opacity: 1 !important;
    border-color: #b794f4 !important;
    border-color: rgba(183, 148, 244, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-purple-500:hover {
    --border-opacity: 1 !important;
    border-color: #9f7aea !important;
    border-color: rgba(159, 122, 234, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-purple-600:hover {
    --border-opacity: 1 !important;
    border-color: #805ad5 !important;
    border-color: rgba(128, 90, 213, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-purple-700:hover {
    --border-opacity: 1 !important;
    border-color: #6b46c1 !important;
    border-color: rgba(107, 70, 193, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-purple-800:hover {
    --border-opacity: 1 !important;
    border-color: #553c9a !important;
    border-color: rgba(85, 60, 154, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-purple-900:hover {
    --border-opacity: 1 !important;
    border-color: #44337a !important;
    border-color: rgba(68, 51, 122, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-pink-100:hover {
    --border-opacity: 1 !important;
    border-color: #fff5f7 !important;
    border-color: rgba(255, 245, 247, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-pink-200:hover {
    --border-opacity: 1 !important;
    border-color: #fed7e2 !important;
    border-color: rgba(254, 215, 226, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-pink-300:hover {
    --border-opacity: 1 !important;
    border-color: #fbb6ce !important;
    border-color: rgba(251, 182, 206, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-pink-400:hover {
    --border-opacity: 1 !important;
    border-color: #f687b3 !important;
    border-color: rgba(246, 135, 179, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-pink-500:hover {
    --border-opacity: 1 !important;
    border-color: #ed64a6 !important;
    border-color: rgba(237, 100, 166, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-pink-600:hover {
    --border-opacity: 1 !important;
    border-color: #d53f8c !important;
    border-color: rgba(213, 63, 140, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-pink-700:hover {
    --border-opacity: 1 !important;
    border-color: #b83280 !important;
    border-color: rgba(184, 50, 128, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-pink-800:hover {
    --border-opacity: 1 !important;
    border-color: #97266d !important;
    border-color: rgba(151, 38, 109, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-pink-900:hover {
    --border-opacity: 1 !important;
    border-color: #702459 !important;
    border-color: rgba(112, 36, 89, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-ui-gray-100:hover {
    --border-opacity: 1 !important;
    border-color: #f1f1f1 !important;
    border-color: rgba(241, 241, 241, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-ui-brown-100:hover {
    --border-opacity: 1 !important;
    border-color: #f3ecdc !important;
    border-color: rgba(243, 236, 220, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-ui-brown-200:hover {
    --border-opacity: 1 !important;
    border-color: #e8e0c9 !important;
    border-color: rgba(232, 224, 201, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-ui-brown-300:hover {
    --border-opacity: 1 !important;
    border-color: #d0c095 !important;
    border-color: rgba(208, 192, 149, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-ui-brown-700:hover {
    --border-opacity: 1 !important;
    border-color: #bd6005 !important;
    border-color: rgba(189, 96, 5, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-ui-green-300:hover {
    --border-opacity: 1 !important;
    border-color: #aac74c !important;
    border-color: rgba(170, 199, 76, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-ui-green-400:hover {
    --border-opacity: 1 !important;
    border-color: #71893e !important;
    border-color: rgba(113, 137, 62, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-ui-orange-500:hover {
    --border-opacity: 1 !important;
    border-color: #e27212 !important;
    border-color: rgba(226, 114, 18, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-facebook:hover {
    --border-opacity: 1 !important;
    border-color: #3b5998 !important;
    border-color: rgba(59, 89, 152, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-twitter:hover {
    --border-opacity: 1 !important;
    border-color: #00acee !important;
    border-color: rgba(0, 172, 238, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-twitch:hover {
    --border-opacity: 1 !important;
    border-color: #6441a5 !important;
    border-color: rgba(100, 65, 165, var(--border-opacity)) !important;
  }

  .md\:hover\:cl-border-youtube:hover {
    --border-opacity: 1 !important;
    border-color: #FF0000 !important;
    border-color: rgba(255, 0, 0, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-transparent:focus {
    border-color: transparent !important;
  }

  .md\:focus\:cl-border-current:focus {
    border-color: currentColor !important;
  }

  .md\:focus\:cl-border-black:focus {
    --border-opacity: 1 !important;
    border-color: #000 !important;
    border-color: rgba(0, 0, 0, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-white:focus {
    --border-opacity: 1 !important;
    border-color: #fff !important;
    border-color: rgba(255, 255, 255, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-gray-100:focus {
    --border-opacity: 1 !important;
    border-color: #f7fafc !important;
    border-color: rgba(247, 250, 252, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-gray-200:focus {
    --border-opacity: 1 !important;
    border-color: #edf2f7 !important;
    border-color: rgba(237, 242, 247, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-gray-300:focus {
    --border-opacity: 1 !important;
    border-color: #e2e8f0 !important;
    border-color: rgba(226, 232, 240, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-gray-400:focus {
    --border-opacity: 1 !important;
    border-color: #cbd5e0 !important;
    border-color: rgba(203, 213, 224, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-gray-500:focus {
    --border-opacity: 1 !important;
    border-color: #a0aec0 !important;
    border-color: rgba(160, 174, 192, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-gray-600:focus {
    --border-opacity: 1 !important;
    border-color: #718096 !important;
    border-color: rgba(113, 128, 150, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-gray-700:focus {
    --border-opacity: 1 !important;
    border-color: #4a5568 !important;
    border-color: rgba(74, 85, 104, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-gray-800:focus {
    --border-opacity: 1 !important;
    border-color: #2d3748 !important;
    border-color: rgba(45, 55, 72, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-gray-900:focus {
    --border-opacity: 1 !important;
    border-color: #1a202c !important;
    border-color: rgba(26, 32, 44, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-red-100:focus {
    --border-opacity: 1 !important;
    border-color: #fff5f5 !important;
    border-color: rgba(255, 245, 245, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-red-200:focus {
    --border-opacity: 1 !important;
    border-color: #fed7d7 !important;
    border-color: rgba(254, 215, 215, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-red-300:focus {
    --border-opacity: 1 !important;
    border-color: #feb2b2 !important;
    border-color: rgba(254, 178, 178, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-red-400:focus {
    --border-opacity: 1 !important;
    border-color: #fc8181 !important;
    border-color: rgba(252, 129, 129, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-red-500:focus {
    --border-opacity: 1 !important;
    border-color: #f56565 !important;
    border-color: rgba(245, 101, 101, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-red-600:focus {
    --border-opacity: 1 !important;
    border-color: #e53e3e !important;
    border-color: rgba(229, 62, 62, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-red-700:focus {
    --border-opacity: 1 !important;
    border-color: #c53030 !important;
    border-color: rgba(197, 48, 48, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-red-800:focus {
    --border-opacity: 1 !important;
    border-color: #9b2c2c !important;
    border-color: rgba(155, 44, 44, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-red-900:focus {
    --border-opacity: 1 !important;
    border-color: #742a2a !important;
    border-color: rgba(116, 42, 42, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-orange-100:focus {
    --border-opacity: 1 !important;
    border-color: #fffaf0 !important;
    border-color: rgba(255, 250, 240, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-orange-200:focus {
    --border-opacity: 1 !important;
    border-color: #feebc8 !important;
    border-color: rgba(254, 235, 200, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-orange-300:focus {
    --border-opacity: 1 !important;
    border-color: #fbd38d !important;
    border-color: rgba(251, 211, 141, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-orange-400:focus {
    --border-opacity: 1 !important;
    border-color: #f6ad55 !important;
    border-color: rgba(246, 173, 85, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-orange-500:focus {
    --border-opacity: 1 !important;
    border-color: #ed8936 !important;
    border-color: rgba(237, 137, 54, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-orange-600:focus {
    --border-opacity: 1 !important;
    border-color: #dd6b20 !important;
    border-color: rgba(221, 107, 32, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-orange-700:focus {
    --border-opacity: 1 !important;
    border-color: #c05621 !important;
    border-color: rgba(192, 86, 33, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-orange-800:focus {
    --border-opacity: 1 !important;
    border-color: #9c4221 !important;
    border-color: rgba(156, 66, 33, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-orange-900:focus {
    --border-opacity: 1 !important;
    border-color: #7b341e !important;
    border-color: rgba(123, 52, 30, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-yellow-100:focus {
    --border-opacity: 1 !important;
    border-color: #fffff0 !important;
    border-color: rgba(255, 255, 240, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-yellow-200:focus {
    --border-opacity: 1 !important;
    border-color: #fefcbf !important;
    border-color: rgba(254, 252, 191, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-yellow-300:focus {
    --border-opacity: 1 !important;
    border-color: #faf089 !important;
    border-color: rgba(250, 240, 137, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-yellow-400:focus {
    --border-opacity: 1 !important;
    border-color: #f6e05e !important;
    border-color: rgba(246, 224, 94, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-yellow-500:focus {
    --border-opacity: 1 !important;
    border-color: #ecc94b !important;
    border-color: rgba(236, 201, 75, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-yellow-600:focus {
    --border-opacity: 1 !important;
    border-color: #d69e2e !important;
    border-color: rgba(214, 158, 46, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-yellow-700:focus {
    --border-opacity: 1 !important;
    border-color: #b7791f !important;
    border-color: rgba(183, 121, 31, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-yellow-800:focus {
    --border-opacity: 1 !important;
    border-color: #975a16 !important;
    border-color: rgba(151, 90, 22, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-yellow-900:focus {
    --border-opacity: 1 !important;
    border-color: #744210 !important;
    border-color: rgba(116, 66, 16, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-green-100:focus {
    --border-opacity: 1 !important;
    border-color: #f0fff4 !important;
    border-color: rgba(240, 255, 244, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-green-200:focus {
    --border-opacity: 1 !important;
    border-color: #c6f6d5 !important;
    border-color: rgba(198, 246, 213, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-green-300:focus {
    --border-opacity: 1 !important;
    border-color: #9ae6b4 !important;
    border-color: rgba(154, 230, 180, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-green-400:focus {
    --border-opacity: 1 !important;
    border-color: #68d391 !important;
    border-color: rgba(104, 211, 145, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-green-500:focus {
    --border-opacity: 1 !important;
    border-color: #48bb78 !important;
    border-color: rgba(72, 187, 120, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-green-600:focus {
    --border-opacity: 1 !important;
    border-color: #38a169 !important;
    border-color: rgba(56, 161, 105, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-green-700:focus {
    --border-opacity: 1 !important;
    border-color: #2f855a !important;
    border-color: rgba(47, 133, 90, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-green-800:focus {
    --border-opacity: 1 !important;
    border-color: #276749 !important;
    border-color: rgba(39, 103, 73, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-green-900:focus {
    --border-opacity: 1 !important;
    border-color: #22543d !important;
    border-color: rgba(34, 84, 61, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-teal-100:focus {
    --border-opacity: 1 !important;
    border-color: #e6fffa !important;
    border-color: rgba(230, 255, 250, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-teal-200:focus {
    --border-opacity: 1 !important;
    border-color: #b2f5ea !important;
    border-color: rgba(178, 245, 234, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-teal-300:focus {
    --border-opacity: 1 !important;
    border-color: #81e6d9 !important;
    border-color: rgba(129, 230, 217, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-teal-400:focus {
    --border-opacity: 1 !important;
    border-color: #4fd1c5 !important;
    border-color: rgba(79, 209, 197, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-teal-500:focus {
    --border-opacity: 1 !important;
    border-color: #38b2ac !important;
    border-color: rgba(56, 178, 172, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-teal-600:focus {
    --border-opacity: 1 !important;
    border-color: #319795 !important;
    border-color: rgba(49, 151, 149, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-teal-700:focus {
    --border-opacity: 1 !important;
    border-color: #2c7a7b !important;
    border-color: rgba(44, 122, 123, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-teal-800:focus {
    --border-opacity: 1 !important;
    border-color: #285e61 !important;
    border-color: rgba(40, 94, 97, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-teal-900:focus {
    --border-opacity: 1 !important;
    border-color: #234e52 !important;
    border-color: rgba(35, 78, 82, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-blue-100:focus {
    --border-opacity: 1 !important;
    border-color: #ebf8ff !important;
    border-color: rgba(235, 248, 255, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-blue-200:focus {
    --border-opacity: 1 !important;
    border-color: #bee3f8 !important;
    border-color: rgba(190, 227, 248, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-blue-300:focus {
    --border-opacity: 1 !important;
    border-color: #90cdf4 !important;
    border-color: rgba(144, 205, 244, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-blue-400:focus {
    --border-opacity: 1 !important;
    border-color: #63b3ed !important;
    border-color: rgba(99, 179, 237, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-blue-500:focus {
    --border-opacity: 1 !important;
    border-color: #4299e1 !important;
    border-color: rgba(66, 153, 225, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-blue-600:focus {
    --border-opacity: 1 !important;
    border-color: #3182ce !important;
    border-color: rgba(49, 130, 206, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-blue-700:focus {
    --border-opacity: 1 !important;
    border-color: #2b6cb0 !important;
    border-color: rgba(43, 108, 176, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-blue-800:focus {
    --border-opacity: 1 !important;
    border-color: #2c5282 !important;
    border-color: rgba(44, 82, 130, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-blue-900:focus {
    --border-opacity: 1 !important;
    border-color: #2a4365 !important;
    border-color: rgba(42, 67, 101, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-indigo-100:focus {
    --border-opacity: 1 !important;
    border-color: #ebf4ff !important;
    border-color: rgba(235, 244, 255, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-indigo-200:focus {
    --border-opacity: 1 !important;
    border-color: #c3dafe !important;
    border-color: rgba(195, 218, 254, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-indigo-300:focus {
    --border-opacity: 1 !important;
    border-color: #a3bffa !important;
    border-color: rgba(163, 191, 250, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-indigo-400:focus {
    --border-opacity: 1 !important;
    border-color: #7f9cf5 !important;
    border-color: rgba(127, 156, 245, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-indigo-500:focus {
    --border-opacity: 1 !important;
    border-color: #667eea !important;
    border-color: rgba(102, 126, 234, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-indigo-600:focus {
    --border-opacity: 1 !important;
    border-color: #5a67d8 !important;
    border-color: rgba(90, 103, 216, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-indigo-700:focus {
    --border-opacity: 1 !important;
    border-color: #4c51bf !important;
    border-color: rgba(76, 81, 191, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-indigo-800:focus {
    --border-opacity: 1 !important;
    border-color: #434190 !important;
    border-color: rgba(67, 65, 144, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-indigo-900:focus {
    --border-opacity: 1 !important;
    border-color: #3c366b !important;
    border-color: rgba(60, 54, 107, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-purple-100:focus {
    --border-opacity: 1 !important;
    border-color: #faf5ff !important;
    border-color: rgba(250, 245, 255, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-purple-200:focus {
    --border-opacity: 1 !important;
    border-color: #e9d8fd !important;
    border-color: rgba(233, 216, 253, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-purple-300:focus {
    --border-opacity: 1 !important;
    border-color: #d6bcfa !important;
    border-color: rgba(214, 188, 250, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-purple-400:focus {
    --border-opacity: 1 !important;
    border-color: #b794f4 !important;
    border-color: rgba(183, 148, 244, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-purple-500:focus {
    --border-opacity: 1 !important;
    border-color: #9f7aea !important;
    border-color: rgba(159, 122, 234, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-purple-600:focus {
    --border-opacity: 1 !important;
    border-color: #805ad5 !important;
    border-color: rgba(128, 90, 213, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-purple-700:focus {
    --border-opacity: 1 !important;
    border-color: #6b46c1 !important;
    border-color: rgba(107, 70, 193, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-purple-800:focus {
    --border-opacity: 1 !important;
    border-color: #553c9a !important;
    border-color: rgba(85, 60, 154, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-purple-900:focus {
    --border-opacity: 1 !important;
    border-color: #44337a !important;
    border-color: rgba(68, 51, 122, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-pink-100:focus {
    --border-opacity: 1 !important;
    border-color: #fff5f7 !important;
    border-color: rgba(255, 245, 247, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-pink-200:focus {
    --border-opacity: 1 !important;
    border-color: #fed7e2 !important;
    border-color: rgba(254, 215, 226, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-pink-300:focus {
    --border-opacity: 1 !important;
    border-color: #fbb6ce !important;
    border-color: rgba(251, 182, 206, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-pink-400:focus {
    --border-opacity: 1 !important;
    border-color: #f687b3 !important;
    border-color: rgba(246, 135, 179, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-pink-500:focus {
    --border-opacity: 1 !important;
    border-color: #ed64a6 !important;
    border-color: rgba(237, 100, 166, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-pink-600:focus {
    --border-opacity: 1 !important;
    border-color: #d53f8c !important;
    border-color: rgba(213, 63, 140, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-pink-700:focus {
    --border-opacity: 1 !important;
    border-color: #b83280 !important;
    border-color: rgba(184, 50, 128, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-pink-800:focus {
    --border-opacity: 1 !important;
    border-color: #97266d !important;
    border-color: rgba(151, 38, 109, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-pink-900:focus {
    --border-opacity: 1 !important;
    border-color: #702459 !important;
    border-color: rgba(112, 36, 89, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-ui-gray-100:focus {
    --border-opacity: 1 !important;
    border-color: #f1f1f1 !important;
    border-color: rgba(241, 241, 241, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-ui-brown-100:focus {
    --border-opacity: 1 !important;
    border-color: #f3ecdc !important;
    border-color: rgba(243, 236, 220, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-ui-brown-200:focus {
    --border-opacity: 1 !important;
    border-color: #e8e0c9 !important;
    border-color: rgba(232, 224, 201, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-ui-brown-300:focus {
    --border-opacity: 1 !important;
    border-color: #d0c095 !important;
    border-color: rgba(208, 192, 149, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-ui-brown-700:focus {
    --border-opacity: 1 !important;
    border-color: #bd6005 !important;
    border-color: rgba(189, 96, 5, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-ui-green-300:focus {
    --border-opacity: 1 !important;
    border-color: #aac74c !important;
    border-color: rgba(170, 199, 76, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-ui-green-400:focus {
    --border-opacity: 1 !important;
    border-color: #71893e !important;
    border-color: rgba(113, 137, 62, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-ui-orange-500:focus {
    --border-opacity: 1 !important;
    border-color: #e27212 !important;
    border-color: rgba(226, 114, 18, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-facebook:focus {
    --border-opacity: 1 !important;
    border-color: #3b5998 !important;
    border-color: rgba(59, 89, 152, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-twitter:focus {
    --border-opacity: 1 !important;
    border-color: #00acee !important;
    border-color: rgba(0, 172, 238, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-twitch:focus {
    --border-opacity: 1 !important;
    border-color: #6441a5 !important;
    border-color: rgba(100, 65, 165, var(--border-opacity)) !important;
  }

  .md\:focus\:cl-border-youtube:focus {
    --border-opacity: 1 !important;
    border-color: #FF0000 !important;
    border-color: rgba(255, 0, 0, var(--border-opacity)) !important;
  }

  .md\:cl-border-opacity-0 {
    --border-opacity: 0 !important;
  }

  .md\:cl-border-opacity-25 {
    --border-opacity: 0.25 !important;
  }

  .md\:cl-border-opacity-50 {
    --border-opacity: 0.5 !important;
  }

  .md\:cl-border-opacity-75 {
    --border-opacity: 0.75 !important;
  }

  .md\:cl-border-opacity-100 {
    --border-opacity: 1 !important;
  }

  .md\:hover\:cl-border-opacity-0:hover {
    --border-opacity: 0 !important;
  }

  .md\:hover\:cl-border-opacity-25:hover {
    --border-opacity: 0.25 !important;
  }

  .md\:hover\:cl-border-opacity-50:hover {
    --border-opacity: 0.5 !important;
  }

  .md\:hover\:cl-border-opacity-75:hover {
    --border-opacity: 0.75 !important;
  }

  .md\:hover\:cl-border-opacity-100:hover {
    --border-opacity: 1 !important;
  }

  .md\:focus\:cl-border-opacity-0:focus {
    --border-opacity: 0 !important;
  }

  .md\:focus\:cl-border-opacity-25:focus {
    --border-opacity: 0.25 !important;
  }

  .md\:focus\:cl-border-opacity-50:focus {
    --border-opacity: 0.5 !important;
  }

  .md\:focus\:cl-border-opacity-75:focus {
    --border-opacity: 0.75 !important;
  }

  .md\:focus\:cl-border-opacity-100:focus {
    --border-opacity: 1 !important;
  }

  .md\:cl-rounded-none {
    border-radius: 0 !important;
  }

  .md\:cl-rounded-sm {
    border-radius: 0.125rem !important;
  }

  .md\:cl-rounded {
    border-radius: 0.25rem !important;
  }

  .md\:cl-rounded-md {
    border-radius: 0.375rem !important;
  }

  .md\:cl-rounded-lg {
    border-radius: 0.5rem !important;
  }

  .md\:cl-rounded-xl {
    border-radius: 0.75rem !important;
  }

  .md\:cl-rounded-2xl {
    border-radius: 1rem !important;
  }

  .md\:cl-rounded-3xl {
    border-radius: 1.5rem !important;
  }

  .md\:cl-rounded-full {
    border-radius: 9999px !important;
  }

  .md\:cl-rounded-t-none {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .md\:cl-rounded-r-none {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .md\:cl-rounded-b-none {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .md\:cl-rounded-l-none {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .md\:cl-rounded-t-sm {
    border-top-left-radius: 0.125rem !important;
    border-top-right-radius: 0.125rem !important;
  }

  .md\:cl-rounded-r-sm {
    border-top-right-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }

  .md\:cl-rounded-b-sm {
    border-bottom-right-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .md\:cl-rounded-l-sm {
    border-top-left-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .md\:cl-rounded-t {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
  }

  .md\:cl-rounded-r {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }

  .md\:cl-rounded-b {
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .md\:cl-rounded-l {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .md\:cl-rounded-t-md {
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
  }

  .md\:cl-rounded-r-md {
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }

  .md\:cl-rounded-b-md {
    border-bottom-right-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .md\:cl-rounded-l-md {
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .md\:cl-rounded-t-lg {
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
  }

  .md\:cl-rounded-r-lg {
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }

  .md\:cl-rounded-b-lg {
    border-bottom-right-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .md\:cl-rounded-l-lg {
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .md\:cl-rounded-t-xl {
    border-top-left-radius: 0.75rem !important;
    border-top-right-radius: 0.75rem !important;
  }

  .md\:cl-rounded-r-xl {
    border-top-right-radius: 0.75rem !important;
    border-bottom-right-radius: 0.75rem !important;
  }

  .md\:cl-rounded-b-xl {
    border-bottom-right-radius: 0.75rem !important;
    border-bottom-left-radius: 0.75rem !important;
  }

  .md\:cl-rounded-l-xl {
    border-top-left-radius: 0.75rem !important;
    border-bottom-left-radius: 0.75rem !important;
  }

  .md\:cl-rounded-t-2xl {
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
  }

  .md\:cl-rounded-r-2xl {
    border-top-right-radius: 1rem !important;
    border-bottom-right-radius: 1rem !important;
  }

  .md\:cl-rounded-b-2xl {
    border-bottom-right-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
  }

  .md\:cl-rounded-l-2xl {
    border-top-left-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
  }

  .md\:cl-rounded-t-3xl {
    border-top-left-radius: 1.5rem !important;
    border-top-right-radius: 1.5rem !important;
  }

  .md\:cl-rounded-r-3xl {
    border-top-right-radius: 1.5rem !important;
    border-bottom-right-radius: 1.5rem !important;
  }

  .md\:cl-rounded-b-3xl {
    border-bottom-right-radius: 1.5rem !important;
    border-bottom-left-radius: 1.5rem !important;
  }

  .md\:cl-rounded-l-3xl {
    border-top-left-radius: 1.5rem !important;
    border-bottom-left-radius: 1.5rem !important;
  }

  .md\:cl-rounded-t-full {
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .md\:cl-rounded-r-full {
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .md\:cl-rounded-b-full {
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .md\:cl-rounded-l-full {
    border-top-left-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .md\:cl-rounded-tl-none {
    border-top-left-radius: 0 !important;
  }

  .md\:cl-rounded-tr-none {
    border-top-right-radius: 0 !important;
  }

  .md\:cl-rounded-br-none {
    border-bottom-right-radius: 0 !important;
  }

  .md\:cl-rounded-bl-none {
    border-bottom-left-radius: 0 !important;
  }

  .md\:cl-rounded-tl-sm {
    border-top-left-radius: 0.125rem !important;
  }

  .md\:cl-rounded-tr-sm {
    border-top-right-radius: 0.125rem !important;
  }

  .md\:cl-rounded-br-sm {
    border-bottom-right-radius: 0.125rem !important;
  }

  .md\:cl-rounded-bl-sm {
    border-bottom-left-radius: 0.125rem !important;
  }

  .md\:cl-rounded-tl {
    border-top-left-radius: 0.25rem !important;
  }

  .md\:cl-rounded-tr {
    border-top-right-radius: 0.25rem !important;
  }

  .md\:cl-rounded-br {
    border-bottom-right-radius: 0.25rem !important;
  }

  .md\:cl-rounded-bl {
    border-bottom-left-radius: 0.25rem !important;
  }

  .md\:cl-rounded-tl-md {
    border-top-left-radius: 0.375rem !important;
  }

  .md\:cl-rounded-tr-md {
    border-top-right-radius: 0.375rem !important;
  }

  .md\:cl-rounded-br-md {
    border-bottom-right-radius: 0.375rem !important;
  }

  .md\:cl-rounded-bl-md {
    border-bottom-left-radius: 0.375rem !important;
  }

  .md\:cl-rounded-tl-lg {
    border-top-left-radius: 0.5rem !important;
  }

  .md\:cl-rounded-tr-lg {
    border-top-right-radius: 0.5rem !important;
  }

  .md\:cl-rounded-br-lg {
    border-bottom-right-radius: 0.5rem !important;
  }

  .md\:cl-rounded-bl-lg {
    border-bottom-left-radius: 0.5rem !important;
  }

  .md\:cl-rounded-tl-xl {
    border-top-left-radius: 0.75rem !important;
  }

  .md\:cl-rounded-tr-xl {
    border-top-right-radius: 0.75rem !important;
  }

  .md\:cl-rounded-br-xl {
    border-bottom-right-radius: 0.75rem !important;
  }

  .md\:cl-rounded-bl-xl {
    border-bottom-left-radius: 0.75rem !important;
  }

  .md\:cl-rounded-tl-2xl {
    border-top-left-radius: 1rem !important;
  }

  .md\:cl-rounded-tr-2xl {
    border-top-right-radius: 1rem !important;
  }

  .md\:cl-rounded-br-2xl {
    border-bottom-right-radius: 1rem !important;
  }

  .md\:cl-rounded-bl-2xl {
    border-bottom-left-radius: 1rem !important;
  }

  .md\:cl-rounded-tl-3xl {
    border-top-left-radius: 1.5rem !important;
  }

  .md\:cl-rounded-tr-3xl {
    border-top-right-radius: 1.5rem !important;
  }

  .md\:cl-rounded-br-3xl {
    border-bottom-right-radius: 1.5rem !important;
  }

  .md\:cl-rounded-bl-3xl {
    border-bottom-left-radius: 1.5rem !important;
  }

  .md\:cl-rounded-tl-full {
    border-top-left-radius: 9999px !important;
  }

  .md\:cl-rounded-tr-full {
    border-top-right-radius: 9999px !important;
  }

  .md\:cl-rounded-br-full {
    border-bottom-right-radius: 9999px !important;
  }

  .md\:cl-rounded-bl-full {
    border-bottom-left-radius: 9999px !important;
  }

  .md\:cl-border-solid {
    border-style: solid !important;
  }

  .md\:cl-border-dashed {
    border-style: dashed !important;
  }

  .md\:cl-border-dotted {
    border-style: dotted !important;
  }

  .md\:cl-border-double {
    border-style: double !important;
  }

  .md\:cl-border-none {
    border-style: none !important;
  }

  .md\:cl-border-0 {
    border-width: 0 !important;
  }

  .md\:cl-border-2 {
    border-width: 2px !important;
  }

  .md\:cl-border-4 {
    border-width: 4px !important;
  }

  .md\:cl-border-8 {
    border-width: 8px !important;
  }

  .md\:cl-border-15 {
    border-width: 15px !important;
  }

  .md\:cl-border {
    border-width: 1px !important;
  }

  .md\:cl-border-t-0 {
    border-top-width: 0 !important;
  }

  .md\:cl-border-r-0 {
    border-right-width: 0 !important;
  }

  .md\:cl-border-b-0 {
    border-bottom-width: 0 !important;
  }

  .md\:cl-border-l-0 {
    border-left-width: 0 !important;
  }

  .md\:cl-border-t-2 {
    border-top-width: 2px !important;
  }

  .md\:cl-border-r-2 {
    border-right-width: 2px !important;
  }

  .md\:cl-border-b-2 {
    border-bottom-width: 2px !important;
  }

  .md\:cl-border-l-2 {
    border-left-width: 2px !important;
  }

  .md\:cl-border-t-4 {
    border-top-width: 4px !important;
  }

  .md\:cl-border-r-4 {
    border-right-width: 4px !important;
  }

  .md\:cl-border-b-4 {
    border-bottom-width: 4px !important;
  }

  .md\:cl-border-l-4 {
    border-left-width: 4px !important;
  }

  .md\:cl-border-t-8 {
    border-top-width: 8px !important;
  }

  .md\:cl-border-r-8 {
    border-right-width: 8px !important;
  }

  .md\:cl-border-b-8 {
    border-bottom-width: 8px !important;
  }

  .md\:cl-border-l-8 {
    border-left-width: 8px !important;
  }

  .md\:cl-border-t-15 {
    border-top-width: 15px !important;
  }

  .md\:cl-border-r-15 {
    border-right-width: 15px !important;
  }

  .md\:cl-border-b-15 {
    border-bottom-width: 15px !important;
  }

  .md\:cl-border-l-15 {
    border-left-width: 15px !important;
  }

  .md\:cl-border-t {
    border-top-width: 1px !important;
  }

  .md\:cl-border-r {
    border-right-width: 1px !important;
  }

  .md\:cl-border-b {
    border-bottom-width: 1px !important;
  }

  .md\:cl-border-l {
    border-left-width: 1px !important;
  }

  .md\:cl-box-border {
    box-sizing: border-box !important;
  }

  .md\:cl-box-content {
    box-sizing: content-box !important;
  }

  .md\:cl-cursor-auto {
    cursor: auto !important;
  }

  .md\:cl-cursor-default {
    cursor: default !important;
  }

  .md\:cl-cursor-pointer {
    cursor: pointer !important;
  }

  .md\:cl-cursor-wait {
    cursor: wait !important;
  }

  .md\:cl-cursor-text {
    cursor: text !important;
  }

  .md\:cl-cursor-move {
    cursor: move !important;
  }

  .md\:cl-cursor-not-allowed {
    cursor: not-allowed !important;
  }

  .md\:cl-block {
    display: block !important;
  }

  .md\:cl-inline-block {
    display: inline-block !important;
  }

  .md\:cl-inline {
    display: inline !important;
  }

  .md\:cl-flex {
    display: flex !important;
  }

  .md\:cl-inline-flex {
    display: inline-flex !important;
  }

  .md\:cl-table {
    display: table !important;
  }

  .md\:cl-table-caption {
    display: table-caption !important;
  }

  .md\:cl-table-cell {
    display: table-cell !important;
  }

  .md\:cl-table-column {
    display: table-column !important;
  }

  .md\:cl-table-column-group {
    display: table-column-group !important;
  }

  .md\:cl-table-footer-group {
    display: table-footer-group !important;
  }

  .md\:cl-table-header-group {
    display: table-header-group !important;
  }

  .md\:cl-table-row-group {
    display: table-row-group !important;
  }

  .md\:cl-table-row {
    display: table-row !important;
  }

  .md\:cl-flow-root {
    display: flow-root !important;
  }

  .md\:cl-grid {
    display: grid !important;
  }

  .md\:cl-inline-grid {
    display: inline-grid !important;
  }

  .md\:cl-contents {
    display: contents !important;
  }

  .md\:cl-hidden {
    display: none !important;
  }

  .md\:cl-flex-row {
    flex-direction: row !important;
  }

  .md\:cl-flex-row-reverse {
    flex-direction: row-reverse !important;
  }

  .md\:cl-flex-col {
    flex-direction: column !important;
  }

  .md\:cl-flex-col-reverse {
    flex-direction: column-reverse !important;
  }

  .md\:cl-flex-wrap {
    flex-wrap: wrap !important;
  }

  .md\:cl-flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .md\:cl-flex-no-wrap {
    flex-wrap: nowrap !important;
  }

  .md\:cl-place-items-auto {
    place-items: auto !important;
  }

  .md\:cl-place-items-start {
    place-items: start !important;
  }

  .md\:cl-place-items-end {
    place-items: end !important;
  }

  .md\:cl-place-items-center {
    place-items: center !important;
  }

  .md\:cl-place-items-stretch {
    place-items: stretch !important;
  }

  .md\:cl-place-content-center {
    place-content: center !important;
  }

  .md\:cl-place-content-start {
    place-content: start !important;
  }

  .md\:cl-place-content-end {
    place-content: end !important;
  }

  .md\:cl-place-content-between {
    place-content: space-between !important;
  }

  .md\:cl-place-content-around {
    place-content: space-around !important;
  }

  .md\:cl-place-content-evenly {
    place-content: space-evenly !important;
  }

  .md\:cl-place-content-stretch {
    place-content: stretch !important;
  }

  .md\:cl-place-self-auto {
    place-self: auto !important;
  }

  .md\:cl-place-self-start {
    place-self: start !important;
  }

  .md\:cl-place-self-end {
    place-self: end !important;
  }

  .md\:cl-place-self-center {
    place-self: center !important;
  }

  .md\:cl-place-self-stretch {
    place-self: stretch !important;
  }

  .md\:cl-items-start {
    align-items: flex-start !important;
  }

  .md\:cl-items-end {
    align-items: flex-end !important;
  }

  .md\:cl-items-center {
    align-items: center !important;
  }

  .md\:cl-items-baseline {
    align-items: baseline !important;
  }

  .md\:cl-items-stretch {
    align-items: stretch !important;
  }

  .md\:cl-content-center {
    align-content: center !important;
  }

  .md\:cl-content-start {
    align-content: flex-start !important;
  }

  .md\:cl-content-end {
    align-content: flex-end !important;
  }

  .md\:cl-content-between {
    align-content: space-between !important;
  }

  .md\:cl-content-around {
    align-content: space-around !important;
  }

  .md\:cl-content-evenly {
    align-content: space-evenly !important;
  }

  .md\:cl-self-auto {
    align-self: auto !important;
  }

  .md\:cl-self-start {
    align-self: flex-start !important;
  }

  .md\:cl-self-end {
    align-self: flex-end !important;
  }

  .md\:cl-self-center {
    align-self: center !important;
  }

  .md\:cl-self-stretch {
    align-self: stretch !important;
  }

  .md\:cl-justify-items-auto {
    justify-items: auto !important;
  }

  .md\:cl-justify-items-start {
    justify-items: start !important;
  }

  .md\:cl-justify-items-end {
    justify-items: end !important;
  }

  .md\:cl-justify-items-center {
    justify-items: center !important;
  }

  .md\:cl-justify-items-stretch {
    justify-items: stretch !important;
  }

  .md\:cl-justify-start {
    justify-content: flex-start !important;
  }

  .md\:cl-justify-end {
    justify-content: flex-end !important;
  }

  .md\:cl-justify-center {
    justify-content: center !important;
  }

  .md\:cl-justify-between {
    justify-content: space-between !important;
  }

  .md\:cl-justify-around {
    justify-content: space-around !important;
  }

  .md\:cl-justify-evenly {
    justify-content: space-evenly !important;
  }

  .md\:cl-justify-self-auto {
    justify-self: auto !important;
  }

  .md\:cl-justify-self-start {
    justify-self: start !important;
  }

  .md\:cl-justify-self-end {
    justify-self: end !important;
  }

  .md\:cl-justify-self-center {
    justify-self: center !important;
  }

  .md\:cl-justify-self-stretch {
    justify-self: stretch !important;
  }

  .md\:cl-flex-1 {
    flex: 1 1 0% !important;
  }

  .md\:cl-flex-auto {
    flex: 1 1 auto !important;
  }

  .md\:cl-flex-initial {
    flex: 0 1 auto !important;
  }

  .md\:cl-flex-none {
    flex: none !important;
  }

  .md\:cl-flex-grow-0 {
    flex-grow: 0 !important;
  }

  .md\:cl-flex-grow {
    flex-grow: 1 !important;
  }

  .md\:cl-flex-shrink-0 {
    flex-shrink: 0 !important;
  }

  .md\:cl-flex-shrink {
    flex-shrink: 1 !important;
  }

  .md\:cl-order-1 {
    order: 1 !important;
  }

  .md\:cl-order-2 {
    order: 2 !important;
  }

  .md\:cl-order-3 {
    order: 3 !important;
  }

  .md\:cl-order-4 {
    order: 4 !important;
  }

  .md\:cl-order-5 {
    order: 5 !important;
  }

  .md\:cl-order-6 {
    order: 6 !important;
  }

  .md\:cl-order-7 {
    order: 7 !important;
  }

  .md\:cl-order-8 {
    order: 8 !important;
  }

  .md\:cl-order-9 {
    order: 9 !important;
  }

  .md\:cl-order-10 {
    order: 10 !important;
  }

  .md\:cl-order-11 {
    order: 11 !important;
  }

  .md\:cl-order-12 {
    order: 12 !important;
  }

  .md\:cl-order-first {
    order: -9999 !important;
  }

  .md\:cl-order-last {
    order: 9999 !important;
  }

  .md\:cl-order-none {
    order: 0 !important;
  }

  .md\:cl-float-right {
    float: right !important;
  }

  .md\:cl-float-left {
    float: left !important;
  }

  .md\:cl-float-none {
    float: none !important;
  }

  .md\:cl-clearfix:after {
    content: "" !important;
    display: table !important;
    clear: both !important;
  }

  .md\:cl-clear-left {
    clear: left !important;
  }

  .md\:cl-clear-right {
    clear: right !important;
  }

  .md\:cl-clear-both {
    clear: both !important;
  }

  .md\:cl-clear-none {
    clear: none !important;
  }

  .md\:cl-font-sans {
    font-family: Lato, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  }

  .md\:cl-font-serif {
    font-family: Georgia, Cambria, "Times New Roman", Times, serif !important;
  }

  .md\:cl-font-mono {
    font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
  }

  .md\:cl-font-heading {
    font-family: Corben, cursive, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  }

  .md\:cl-font-hairline {
    font-weight: 100 !important;
  }

  .md\:cl-font-thin {
    font-weight: 200 !important;
  }

  .md\:cl-font-light {
    font-weight: 300 !important;
  }

  .md\:cl-font-normal {
    font-weight: 400 !important;
  }

  .md\:cl-font-medium {
    font-weight: 500 !important;
  }

  .md\:cl-font-semibold {
    font-weight: 600 !important;
  }

  .md\:cl-font-bold {
    font-weight: 700 !important;
  }

  .md\:cl-font-extrabold {
    font-weight: 800 !important;
  }

  .md\:cl-font-black {
    font-weight: 900 !important;
  }

  .md\:hover\:cl-font-hairline:hover {
    font-weight: 100 !important;
  }

  .md\:hover\:cl-font-thin:hover {
    font-weight: 200 !important;
  }

  .md\:hover\:cl-font-light:hover {
    font-weight: 300 !important;
  }

  .md\:hover\:cl-font-normal:hover {
    font-weight: 400 !important;
  }

  .md\:hover\:cl-font-medium:hover {
    font-weight: 500 !important;
  }

  .md\:hover\:cl-font-semibold:hover {
    font-weight: 600 !important;
  }

  .md\:hover\:cl-font-bold:hover {
    font-weight: 700 !important;
  }

  .md\:hover\:cl-font-extrabold:hover {
    font-weight: 800 !important;
  }

  .md\:hover\:cl-font-black:hover {
    font-weight: 900 !important;
  }

  .md\:focus\:cl-font-hairline:focus {
    font-weight: 100 !important;
  }

  .md\:focus\:cl-font-thin:focus {
    font-weight: 200 !important;
  }

  .md\:focus\:cl-font-light:focus {
    font-weight: 300 !important;
  }

  .md\:focus\:cl-font-normal:focus {
    font-weight: 400 !important;
  }

  .md\:focus\:cl-font-medium:focus {
    font-weight: 500 !important;
  }

  .md\:focus\:cl-font-semibold:focus {
    font-weight: 600 !important;
  }

  .md\:focus\:cl-font-bold:focus {
    font-weight: 700 !important;
  }

  .md\:focus\:cl-font-extrabold:focus {
    font-weight: 800 !important;
  }

  .md\:focus\:cl-font-black:focus {
    font-weight: 900 !important;
  }

  .md\:cl-h-0 {
    height: 0 !important;
  }

  .md\:cl-h-1 {
    height: 4px !important;
  }

  .md\:cl-h-2 {
    height: 8px !important;
  }

  .md\:cl-h-3 {
    height: 12px !important;
  }

  .md\:cl-h-4 {
    height: 16px !important;
  }

  .md\:cl-h-5 {
    height: 20px !important;
  }

  .md\:cl-h-6 {
    height: 24px !important;
  }

  .md\:cl-h-8 {
    height: 32px !important;
  }

  .md\:cl-h-10 {
    height: 40px !important;
  }

  .md\:cl-h-12 {
    height: 48px !important;
  }

  .md\:cl-h-16 {
    height: 64px !important;
  }

  .md\:cl-h-20 {
    height: 80px !important;
  }

  .md\:cl-h-24 {
    height: 96px !important;
  }

  .md\:cl-h-26 {
    height: 100px !important;
  }

  .md\:cl-h-28 {
    height: 110px !important;
  }

  .md\:cl-h-32 {
    height: 128px !important;
  }

  .md\:cl-h-40 {
    height: 160px !important;
  }

  .md\:cl-h-48 {
    height: 192px !important;
  }

  .md\:cl-h-56 {
    height: 224px !important;
  }

  .md\:cl-h-64 {
    height: 256px !important;
  }

  .md\:cl-h-auto {
    height: auto !important;
  }

  .md\:cl-h-px {
    height: 1px !important;
  }

  .md\:cl-h-full {
    height: 100% !important;
  }

  .md\:cl-h-screen {
    height: 100vh !important;
  }

  .md\:cl-h-1\/2 {
    height: 50% !important;
  }

  .md\:cl-h-1\/3 {
    height: 33.333333% !important;
  }

  .md\:cl-h-2\/3 {
    height: 66.666667% !important;
  }

  .md\:cl-h-1\/4 {
    height: 25% !important;
  }

  .md\:cl-h-2\/4 {
    height: 50% !important;
  }

  .md\:cl-h-3\/4 {
    height: 75% !important;
  }

  .md\:cl-h-1\/5 {
    height: 20% !important;
  }

  .md\:cl-h-2\/5 {
    height: 40% !important;
  }

  .md\:cl-h-3\/5 {
    height: 60% !important;
  }

  .md\:cl-h-4\/5 {
    height: 80% !important;
  }

  .md\:cl-h-1\/6 {
    height: 16.666667% !important;
  }

  .md\:cl-h-2\/6 {
    height: 33.333333% !important;
  }

  .md\:cl-h-3\/6 {
    height: 50% !important;
  }

  .md\:cl-h-4\/6 {
    height: 66.666667% !important;
  }

  .md\:cl-h-5\/6 {
    height: 83.333333% !important;
  }

  .md\:cl-h-1\/12 {
    height: 8.333333% !important;
  }

  .md\:cl-h-2\/12 {
    height: 16.666667% !important;
  }

  .md\:cl-h-3\/12 {
    height: 25% !important;
  }

  .md\:cl-h-4\/12 {
    height: 33.333333% !important;
  }

  .md\:cl-h-5\/12 {
    height: 41.666667% !important;
  }

  .md\:cl-h-6\/12 {
    height: 50% !important;
  }

  .md\:cl-h-7\/12 {
    height: 58.333333% !important;
  }

  .md\:cl-h-8\/12 {
    height: 66.666667% !important;
  }

  .md\:cl-h-9\/12 {
    height: 75% !important;
  }

  .md\:cl-h-10\/12 {
    height: 83.333333% !important;
  }

  .md\:cl-h-11\/12 {
    height: 91.666667% !important;
  }

  .md\:cl-text-xxs {
    font-size: 10px !important;
  }

  .md\:cl-text-xs {
    font-size: 12px !important;
  }

  .md\:cl-text-sm {
    font-size: 14px !important;
  }

  .md\:cl-text-base {
    font-size: 16px !important;
  }

  .md\:cl-text-lg {
    font-size: 18px !important;
  }

  .md\:cl-text-xl {
    font-size: 20px !important;
  }

  .md\:cl-text-2xl {
    font-size: 24px !important;
  }

  .md\:cl-text-3xl {
    font-size: 30px !important;
  }

  .md\:cl-text-4xl {
    font-size: 36px !important;
  }

  .md\:cl-text-5xl {
    font-size: 48px !important;
  }

  .md\:cl-text-6xl {
    font-size: 64px !important;
  }

  .md\:cl-leading-3 {
    line-height: .75rem !important;
  }

  .md\:cl-leading-4 {
    line-height: 1rem !important;
  }

  .md\:cl-leading-5 {
    line-height: 1.25rem !important;
  }

  .md\:cl-leading-6 {
    line-height: 1.5rem !important;
  }

  .md\:cl-leading-7 {
    line-height: 1.75rem !important;
  }

  .md\:cl-leading-8 {
    line-height: 2rem !important;
  }

  .md\:cl-leading-9 {
    line-height: 2.25rem !important;
  }

  .md\:cl-leading-10 {
    line-height: 2.5rem !important;
  }

  .md\:cl-leading-none {
    line-height: 1 !important;
  }

  .md\:cl-leading-tight {
    line-height: 1.25 !important;
  }

  .md\:cl-leading-snug {
    line-height: 1.375 !important;
  }

  .md\:cl-leading-normal {
    line-height: 1.5 !important;
  }

  .md\:cl-leading-relaxed {
    line-height: 1.625 !important;
  }

  .md\:cl-leading-loose {
    line-height: 2 !important;
  }

  .md\:cl-list-inside {
    list-style-position: inside !important;
  }

  .md\:cl-list-outside {
    list-style-position: outside !important;
  }

  .md\:cl-list-none {
    list-style-type: none !important;
  }

  .md\:cl-list-disc {
    list-style-type: disc !important;
  }

  .md\:cl-list-decimal {
    list-style-type: decimal !important;
  }

  .md\:cl-m-0 {
    margin: 0 !important;
  }

  .md\:cl-m-1 {
    margin: 4px !important;
  }

  .md\:cl-m-2 {
    margin: 8px !important;
  }

  .md\:cl-m-3 {
    margin: 12px !important;
  }

  .md\:cl-m-4 {
    margin: 16px !important;
  }

  .md\:cl-m-5 {
    margin: 20px !important;
  }

  .md\:cl-m-6 {
    margin: 24px !important;
  }

  .md\:cl-m-8 {
    margin: 32px !important;
  }

  .md\:cl-m-10 {
    margin: 40px !important;
  }

  .md\:cl-m-12 {
    margin: 48px !important;
  }

  .md\:cl-m-16 {
    margin: 64px !important;
  }

  .md\:cl-m-20 {
    margin: 80px !important;
  }

  .md\:cl-m-24 {
    margin: 96px !important;
  }

  .md\:cl-m-26 {
    margin: 100px !important;
  }

  .md\:cl-m-28 {
    margin: 110px !important;
  }

  .md\:cl-m-32 {
    margin: 128px !important;
  }

  .md\:cl-m-40 {
    margin: 160px !important;
  }

  .md\:cl-m-48 {
    margin: 192px !important;
  }

  .md\:cl-m-56 {
    margin: 224px !important;
  }

  .md\:cl-m-64 {
    margin: 256px !important;
  }

  .md\:cl-m-auto {
    margin: auto !important;
  }

  .md\:cl-m-px {
    margin: 1px !important;
  }

  .md\:cl--m-1 {
    margin: -4px !important;
  }

  .md\:cl--m-2 {
    margin: -8px !important;
  }

  .md\:cl--m-3 {
    margin: -12px !important;
  }

  .md\:cl--m-4 {
    margin: -16px !important;
  }

  .md\:cl--m-5 {
    margin: -20px !important;
  }

  .md\:cl--m-6 {
    margin: -24px !important;
  }

  .md\:cl--m-8 {
    margin: -32px !important;
  }

  .md\:cl--m-10 {
    margin: -40px !important;
  }

  .md\:cl--m-12 {
    margin: -48px !important;
  }

  .md\:cl--m-16 {
    margin: -64px !important;
  }

  .md\:cl--m-20 {
    margin: -80px !important;
  }

  .md\:cl--m-24 {
    margin: -96px !important;
  }

  .md\:cl--m-26 {
    margin: -100px !important;
  }

  .md\:cl--m-28 {
    margin: -110px !important;
  }

  .md\:cl--m-32 {
    margin: -128px !important;
  }

  .md\:cl--m-40 {
    margin: -160px !important;
  }

  .md\:cl--m-48 {
    margin: -192px !important;
  }

  .md\:cl--m-56 {
    margin: -224px !important;
  }

  .md\:cl--m-64 {
    margin: -256px !important;
  }

  .md\:cl--m-px {
    margin: -1px !important;
  }

  .md\:cl-my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .md\:cl-mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .md\:cl-my-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  .md\:cl-mx-1 {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }

  .md\:cl-my-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  .md\:cl-mx-2 {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }

  .md\:cl-my-3 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }

  .md\:cl-mx-3 {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }

  .md\:cl-my-4 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }

  .md\:cl-mx-4 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }

  .md\:cl-my-5 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .md\:cl-mx-5 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }

  .md\:cl-my-6 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }

  .md\:cl-mx-6 {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }

  .md\:cl-my-8 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }

  .md\:cl-mx-8 {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }

  .md\:cl-my-10 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  .md\:cl-mx-10 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }

  .md\:cl-my-12 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }

  .md\:cl-mx-12 {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }

  .md\:cl-my-16 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }

  .md\:cl-mx-16 {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }

  .md\:cl-my-20 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }

  .md\:cl-mx-20 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }

  .md\:cl-my-24 {
    margin-top: 96px !important;
    margin-bottom: 96px !important;
  }

  .md\:cl-mx-24 {
    margin-left: 96px !important;
    margin-right: 96px !important;
  }

  .md\:cl-my-26 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }

  .md\:cl-mx-26 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }

  .md\:cl-my-28 {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
  }

  .md\:cl-mx-28 {
    margin-left: 110px !important;
    margin-right: 110px !important;
  }

  .md\:cl-my-32 {
    margin-top: 128px !important;
    margin-bottom: 128px !important;
  }

  .md\:cl-mx-32 {
    margin-left: 128px !important;
    margin-right: 128px !important;
  }

  .md\:cl-my-40 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }

  .md\:cl-mx-40 {
    margin-left: 160px !important;
    margin-right: 160px !important;
  }

  .md\:cl-my-48 {
    margin-top: 192px !important;
    margin-bottom: 192px !important;
  }

  .md\:cl-mx-48 {
    margin-left: 192px !important;
    margin-right: 192px !important;
  }

  .md\:cl-my-56 {
    margin-top: 224px !important;
    margin-bottom: 224px !important;
  }

  .md\:cl-mx-56 {
    margin-left: 224px !important;
    margin-right: 224px !important;
  }

  .md\:cl-my-64 {
    margin-top: 256px !important;
    margin-bottom: 256px !important;
  }

  .md\:cl-mx-64 {
    margin-left: 256px !important;
    margin-right: 256px !important;
  }

  .md\:cl-my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .md\:cl-mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .md\:cl-my-px {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .md\:cl-mx-px {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .md\:cl--my-1 {
    margin-top: -4px !important;
    margin-bottom: -4px !important;
  }

  .md\:cl--mx-1 {
    margin-left: -4px !important;
    margin-right: -4px !important;
  }

  .md\:cl--my-2 {
    margin-top: -8px !important;
    margin-bottom: -8px !important;
  }

  .md\:cl--mx-2 {
    margin-left: -8px !important;
    margin-right: -8px !important;
  }

  .md\:cl--my-3 {
    margin-top: -12px !important;
    margin-bottom: -12px !important;
  }

  .md\:cl--mx-3 {
    margin-left: -12px !important;
    margin-right: -12px !important;
  }

  .md\:cl--my-4 {
    margin-top: -16px !important;
    margin-bottom: -16px !important;
  }

  .md\:cl--mx-4 {
    margin-left: -16px !important;
    margin-right: -16px !important;
  }

  .md\:cl--my-5 {
    margin-top: -20px !important;
    margin-bottom: -20px !important;
  }

  .md\:cl--mx-5 {
    margin-left: -20px !important;
    margin-right: -20px !important;
  }

  .md\:cl--my-6 {
    margin-top: -24px !important;
    margin-bottom: -24px !important;
  }

  .md\:cl--mx-6 {
    margin-left: -24px !important;
    margin-right: -24px !important;
  }

  .md\:cl--my-8 {
    margin-top: -32px !important;
    margin-bottom: -32px !important;
  }

  .md\:cl--mx-8 {
    margin-left: -32px !important;
    margin-right: -32px !important;
  }

  .md\:cl--my-10 {
    margin-top: -40px !important;
    margin-bottom: -40px !important;
  }

  .md\:cl--mx-10 {
    margin-left: -40px !important;
    margin-right: -40px !important;
  }

  .md\:cl--my-12 {
    margin-top: -48px !important;
    margin-bottom: -48px !important;
  }

  .md\:cl--mx-12 {
    margin-left: -48px !important;
    margin-right: -48px !important;
  }

  .md\:cl--my-16 {
    margin-top: -64px !important;
    margin-bottom: -64px !important;
  }

  .md\:cl--mx-16 {
    margin-left: -64px !important;
    margin-right: -64px !important;
  }

  .md\:cl--my-20 {
    margin-top: -80px !important;
    margin-bottom: -80px !important;
  }

  .md\:cl--mx-20 {
    margin-left: -80px !important;
    margin-right: -80px !important;
  }

  .md\:cl--my-24 {
    margin-top: -96px !important;
    margin-bottom: -96px !important;
  }

  .md\:cl--mx-24 {
    margin-left: -96px !important;
    margin-right: -96px !important;
  }

  .md\:cl--my-26 {
    margin-top: -100px !important;
    margin-bottom: -100px !important;
  }

  .md\:cl--mx-26 {
    margin-left: -100px !important;
    margin-right: -100px !important;
  }

  .md\:cl--my-28 {
    margin-top: -110px !important;
    margin-bottom: -110px !important;
  }

  .md\:cl--mx-28 {
    margin-left: -110px !important;
    margin-right: -110px !important;
  }

  .md\:cl--my-32 {
    margin-top: -128px !important;
    margin-bottom: -128px !important;
  }

  .md\:cl--mx-32 {
    margin-left: -128px !important;
    margin-right: -128px !important;
  }

  .md\:cl--my-40 {
    margin-top: -160px !important;
    margin-bottom: -160px !important;
  }

  .md\:cl--mx-40 {
    margin-left: -160px !important;
    margin-right: -160px !important;
  }

  .md\:cl--my-48 {
    margin-top: -192px !important;
    margin-bottom: -192px !important;
  }

  .md\:cl--mx-48 {
    margin-left: -192px !important;
    margin-right: -192px !important;
  }

  .md\:cl--my-56 {
    margin-top: -224px !important;
    margin-bottom: -224px !important;
  }

  .md\:cl--mx-56 {
    margin-left: -224px !important;
    margin-right: -224px !important;
  }

  .md\:cl--my-64 {
    margin-top: -256px !important;
    margin-bottom: -256px !important;
  }

  .md\:cl--mx-64 {
    margin-left: -256px !important;
    margin-right: -256px !important;
  }

  .md\:cl--my-px {
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .md\:cl--mx-px {
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .md\:cl-mt-0 {
    margin-top: 0 !important;
  }

  .md\:cl-mr-0 {
    margin-right: 0 !important;
  }

  .md\:cl-mb-0 {
    margin-bottom: 0 !important;
  }

  .md\:cl-ml-0 {
    margin-left: 0 !important;
  }

  .md\:cl-mt-1 {
    margin-top: 4px !important;
  }

  .md\:cl-mr-1 {
    margin-right: 4px !important;
  }

  .md\:cl-mb-1 {
    margin-bottom: 4px !important;
  }

  .md\:cl-ml-1 {
    margin-left: 4px !important;
  }

  .md\:cl-mt-2 {
    margin-top: 8px !important;
  }

  .md\:cl-mr-2 {
    margin-right: 8px !important;
  }

  .md\:cl-mb-2 {
    margin-bottom: 8px !important;
  }

  .md\:cl-ml-2 {
    margin-left: 8px !important;
  }

  .md\:cl-mt-3 {
    margin-top: 12px !important;
  }

  .md\:cl-mr-3 {
    margin-right: 12px !important;
  }

  .md\:cl-mb-3 {
    margin-bottom: 12px !important;
  }

  .md\:cl-ml-3 {
    margin-left: 12px !important;
  }

  .md\:cl-mt-4 {
    margin-top: 16px !important;
  }

  .md\:cl-mr-4 {
    margin-right: 16px !important;
  }

  .md\:cl-mb-4 {
    margin-bottom: 16px !important;
  }

  .md\:cl-ml-4 {
    margin-left: 16px !important;
  }

  .md\:cl-mt-5 {
    margin-top: 20px !important;
  }

  .md\:cl-mr-5 {
    margin-right: 20px !important;
  }

  .md\:cl-mb-5 {
    margin-bottom: 20px !important;
  }

  .md\:cl-ml-5 {
    margin-left: 20px !important;
  }

  .md\:cl-mt-6 {
    margin-top: 24px !important;
  }

  .md\:cl-mr-6 {
    margin-right: 24px !important;
  }

  .md\:cl-mb-6 {
    margin-bottom: 24px !important;
  }

  .md\:cl-ml-6 {
    margin-left: 24px !important;
  }

  .md\:cl-mt-8 {
    margin-top: 32px !important;
  }

  .md\:cl-mr-8 {
    margin-right: 32px !important;
  }

  .md\:cl-mb-8 {
    margin-bottom: 32px !important;
  }

  .md\:cl-ml-8 {
    margin-left: 32px !important;
  }

  .md\:cl-mt-10 {
    margin-top: 40px !important;
  }

  .md\:cl-mr-10 {
    margin-right: 40px !important;
  }

  .md\:cl-mb-10 {
    margin-bottom: 40px !important;
  }

  .md\:cl-ml-10 {
    margin-left: 40px !important;
  }

  .md\:cl-mt-12 {
    margin-top: 48px !important;
  }

  .md\:cl-mr-12 {
    margin-right: 48px !important;
  }

  .md\:cl-mb-12 {
    margin-bottom: 48px !important;
  }

  .md\:cl-ml-12 {
    margin-left: 48px !important;
  }

  .md\:cl-mt-16 {
    margin-top: 64px !important;
  }

  .md\:cl-mr-16 {
    margin-right: 64px !important;
  }

  .md\:cl-mb-16 {
    margin-bottom: 64px !important;
  }

  .md\:cl-ml-16 {
    margin-left: 64px !important;
  }

  .md\:cl-mt-20 {
    margin-top: 80px !important;
  }

  .md\:cl-mr-20 {
    margin-right: 80px !important;
  }

  .md\:cl-mb-20 {
    margin-bottom: 80px !important;
  }

  .md\:cl-ml-20 {
    margin-left: 80px !important;
  }

  .md\:cl-mt-24 {
    margin-top: 96px !important;
  }

  .md\:cl-mr-24 {
    margin-right: 96px !important;
  }

  .md\:cl-mb-24 {
    margin-bottom: 96px !important;
  }

  .md\:cl-ml-24 {
    margin-left: 96px !important;
  }

  .md\:cl-mt-26 {
    margin-top: 100px !important;
  }

  .md\:cl-mr-26 {
    margin-right: 100px !important;
  }

  .md\:cl-mb-26 {
    margin-bottom: 100px !important;
  }

  .md\:cl-ml-26 {
    margin-left: 100px !important;
  }

  .md\:cl-mt-28 {
    margin-top: 110px !important;
  }

  .md\:cl-mr-28 {
    margin-right: 110px !important;
  }

  .md\:cl-mb-28 {
    margin-bottom: 110px !important;
  }

  .md\:cl-ml-28 {
    margin-left: 110px !important;
  }

  .md\:cl-mt-32 {
    margin-top: 128px !important;
  }

  .md\:cl-mr-32 {
    margin-right: 128px !important;
  }

  .md\:cl-mb-32 {
    margin-bottom: 128px !important;
  }

  .md\:cl-ml-32 {
    margin-left: 128px !important;
  }

  .md\:cl-mt-40 {
    margin-top: 160px !important;
  }

  .md\:cl-mr-40 {
    margin-right: 160px !important;
  }

  .md\:cl-mb-40 {
    margin-bottom: 160px !important;
  }

  .md\:cl-ml-40 {
    margin-left: 160px !important;
  }

  .md\:cl-mt-48 {
    margin-top: 192px !important;
  }

  .md\:cl-mr-48 {
    margin-right: 192px !important;
  }

  .md\:cl-mb-48 {
    margin-bottom: 192px !important;
  }

  .md\:cl-ml-48 {
    margin-left: 192px !important;
  }

  .md\:cl-mt-56 {
    margin-top: 224px !important;
  }

  .md\:cl-mr-56 {
    margin-right: 224px !important;
  }

  .md\:cl-mb-56 {
    margin-bottom: 224px !important;
  }

  .md\:cl-ml-56 {
    margin-left: 224px !important;
  }

  .md\:cl-mt-64 {
    margin-top: 256px !important;
  }

  .md\:cl-mr-64 {
    margin-right: 256px !important;
  }

  .md\:cl-mb-64 {
    margin-bottom: 256px !important;
  }

  .md\:cl-ml-64 {
    margin-left: 256px !important;
  }

  .md\:cl-mt-auto {
    margin-top: auto !important;
  }

  .md\:cl-mr-auto {
    margin-right: auto !important;
  }

  .md\:cl-mb-auto {
    margin-bottom: auto !important;
  }

  .md\:cl-ml-auto {
    margin-left: auto !important;
  }

  .md\:cl-mt-px {
    margin-top: 1px !important;
  }

  .md\:cl-mr-px {
    margin-right: 1px !important;
  }

  .md\:cl-mb-px {
    margin-bottom: 1px !important;
  }

  .md\:cl-ml-px {
    margin-left: 1px !important;
  }

  .md\:cl--mt-1 {
    margin-top: -4px !important;
  }

  .md\:cl--mr-1 {
    margin-right: -4px !important;
  }

  .md\:cl--mb-1 {
    margin-bottom: -4px !important;
  }

  .md\:cl--ml-1 {
    margin-left: -4px !important;
  }

  .md\:cl--mt-2 {
    margin-top: -8px !important;
  }

  .md\:cl--mr-2 {
    margin-right: -8px !important;
  }

  .md\:cl--mb-2 {
    margin-bottom: -8px !important;
  }

  .md\:cl--ml-2 {
    margin-left: -8px !important;
  }

  .md\:cl--mt-3 {
    margin-top: -12px !important;
  }

  .md\:cl--mr-3 {
    margin-right: -12px !important;
  }

  .md\:cl--mb-3 {
    margin-bottom: -12px !important;
  }

  .md\:cl--ml-3 {
    margin-left: -12px !important;
  }

  .md\:cl--mt-4 {
    margin-top: -16px !important;
  }

  .md\:cl--mr-4 {
    margin-right: -16px !important;
  }

  .md\:cl--mb-4 {
    margin-bottom: -16px !important;
  }

  .md\:cl--ml-4 {
    margin-left: -16px !important;
  }

  .md\:cl--mt-5 {
    margin-top: -20px !important;
  }

  .md\:cl--mr-5 {
    margin-right: -20px !important;
  }

  .md\:cl--mb-5 {
    margin-bottom: -20px !important;
  }

  .md\:cl--ml-5 {
    margin-left: -20px !important;
  }

  .md\:cl--mt-6 {
    margin-top: -24px !important;
  }

  .md\:cl--mr-6 {
    margin-right: -24px !important;
  }

  .md\:cl--mb-6 {
    margin-bottom: -24px !important;
  }

  .md\:cl--ml-6 {
    margin-left: -24px !important;
  }

  .md\:cl--mt-8 {
    margin-top: -32px !important;
  }

  .md\:cl--mr-8 {
    margin-right: -32px !important;
  }

  .md\:cl--mb-8 {
    margin-bottom: -32px !important;
  }

  .md\:cl--ml-8 {
    margin-left: -32px !important;
  }

  .md\:cl--mt-10 {
    margin-top: -40px !important;
  }

  .md\:cl--mr-10 {
    margin-right: -40px !important;
  }

  .md\:cl--mb-10 {
    margin-bottom: -40px !important;
  }

  .md\:cl--ml-10 {
    margin-left: -40px !important;
  }

  .md\:cl--mt-12 {
    margin-top: -48px !important;
  }

  .md\:cl--mr-12 {
    margin-right: -48px !important;
  }

  .md\:cl--mb-12 {
    margin-bottom: -48px !important;
  }

  .md\:cl--ml-12 {
    margin-left: -48px !important;
  }

  .md\:cl--mt-16 {
    margin-top: -64px !important;
  }

  .md\:cl--mr-16 {
    margin-right: -64px !important;
  }

  .md\:cl--mb-16 {
    margin-bottom: -64px !important;
  }

  .md\:cl--ml-16 {
    margin-left: -64px !important;
  }

  .md\:cl--mt-20 {
    margin-top: -80px !important;
  }

  .md\:cl--mr-20 {
    margin-right: -80px !important;
  }

  .md\:cl--mb-20 {
    margin-bottom: -80px !important;
  }

  .md\:cl--ml-20 {
    margin-left: -80px !important;
  }

  .md\:cl--mt-24 {
    margin-top: -96px !important;
  }

  .md\:cl--mr-24 {
    margin-right: -96px !important;
  }

  .md\:cl--mb-24 {
    margin-bottom: -96px !important;
  }

  .md\:cl--ml-24 {
    margin-left: -96px !important;
  }

  .md\:cl--mt-26 {
    margin-top: -100px !important;
  }

  .md\:cl--mr-26 {
    margin-right: -100px !important;
  }

  .md\:cl--mb-26 {
    margin-bottom: -100px !important;
  }

  .md\:cl--ml-26 {
    margin-left: -100px !important;
  }

  .md\:cl--mt-28 {
    margin-top: -110px !important;
  }

  .md\:cl--mr-28 {
    margin-right: -110px !important;
  }

  .md\:cl--mb-28 {
    margin-bottom: -110px !important;
  }

  .md\:cl--ml-28 {
    margin-left: -110px !important;
  }

  .md\:cl--mt-32 {
    margin-top: -128px !important;
  }

  .md\:cl--mr-32 {
    margin-right: -128px !important;
  }

  .md\:cl--mb-32 {
    margin-bottom: -128px !important;
  }

  .md\:cl--ml-32 {
    margin-left: -128px !important;
  }

  .md\:cl--mt-40 {
    margin-top: -160px !important;
  }

  .md\:cl--mr-40 {
    margin-right: -160px !important;
  }

  .md\:cl--mb-40 {
    margin-bottom: -160px !important;
  }

  .md\:cl--ml-40 {
    margin-left: -160px !important;
  }

  .md\:cl--mt-48 {
    margin-top: -192px !important;
  }

  .md\:cl--mr-48 {
    margin-right: -192px !important;
  }

  .md\:cl--mb-48 {
    margin-bottom: -192px !important;
  }

  .md\:cl--ml-48 {
    margin-left: -192px !important;
  }

  .md\:cl--mt-56 {
    margin-top: -224px !important;
  }

  .md\:cl--mr-56 {
    margin-right: -224px !important;
  }

  .md\:cl--mb-56 {
    margin-bottom: -224px !important;
  }

  .md\:cl--ml-56 {
    margin-left: -224px !important;
  }

  .md\:cl--mt-64 {
    margin-top: -256px !important;
  }

  .md\:cl--mr-64 {
    margin-right: -256px !important;
  }

  .md\:cl--mb-64 {
    margin-bottom: -256px !important;
  }

  .md\:cl--ml-64 {
    margin-left: -256px !important;
  }

  .md\:cl--mt-px {
    margin-top: -1px !important;
  }

  .md\:cl--mr-px {
    margin-right: -1px !important;
  }

  .md\:cl--mb-px {
    margin-bottom: -1px !important;
  }

  .md\:cl--ml-px {
    margin-left: -1px !important;
  }

  .md\:active\:cl-m-0:active {
    margin: 0 !important;
  }

  .md\:active\:cl-m-1:active {
    margin: 4px !important;
  }

  .md\:active\:cl-m-2:active {
    margin: 8px !important;
  }

  .md\:active\:cl-m-3:active {
    margin: 12px !important;
  }

  .md\:active\:cl-m-4:active {
    margin: 16px !important;
  }

  .md\:active\:cl-m-5:active {
    margin: 20px !important;
  }

  .md\:active\:cl-m-6:active {
    margin: 24px !important;
  }

  .md\:active\:cl-m-8:active {
    margin: 32px !important;
  }

  .md\:active\:cl-m-10:active {
    margin: 40px !important;
  }

  .md\:active\:cl-m-12:active {
    margin: 48px !important;
  }

  .md\:active\:cl-m-16:active {
    margin: 64px !important;
  }

  .md\:active\:cl-m-20:active {
    margin: 80px !important;
  }

  .md\:active\:cl-m-24:active {
    margin: 96px !important;
  }

  .md\:active\:cl-m-26:active {
    margin: 100px !important;
  }

  .md\:active\:cl-m-28:active {
    margin: 110px !important;
  }

  .md\:active\:cl-m-32:active {
    margin: 128px !important;
  }

  .md\:active\:cl-m-40:active {
    margin: 160px !important;
  }

  .md\:active\:cl-m-48:active {
    margin: 192px !important;
  }

  .md\:active\:cl-m-56:active {
    margin: 224px !important;
  }

  .md\:active\:cl-m-64:active {
    margin: 256px !important;
  }

  .md\:active\:cl-m-auto:active {
    margin: auto !important;
  }

  .md\:active\:cl-m-px:active {
    margin: 1px !important;
  }

  .md\:active\:cl--m-1:active {
    margin: -4px !important;
  }

  .md\:active\:cl--m-2:active {
    margin: -8px !important;
  }

  .md\:active\:cl--m-3:active {
    margin: -12px !important;
  }

  .md\:active\:cl--m-4:active {
    margin: -16px !important;
  }

  .md\:active\:cl--m-5:active {
    margin: -20px !important;
  }

  .md\:active\:cl--m-6:active {
    margin: -24px !important;
  }

  .md\:active\:cl--m-8:active {
    margin: -32px !important;
  }

  .md\:active\:cl--m-10:active {
    margin: -40px !important;
  }

  .md\:active\:cl--m-12:active {
    margin: -48px !important;
  }

  .md\:active\:cl--m-16:active {
    margin: -64px !important;
  }

  .md\:active\:cl--m-20:active {
    margin: -80px !important;
  }

  .md\:active\:cl--m-24:active {
    margin: -96px !important;
  }

  .md\:active\:cl--m-26:active {
    margin: -100px !important;
  }

  .md\:active\:cl--m-28:active {
    margin: -110px !important;
  }

  .md\:active\:cl--m-32:active {
    margin: -128px !important;
  }

  .md\:active\:cl--m-40:active {
    margin: -160px !important;
  }

  .md\:active\:cl--m-48:active {
    margin: -192px !important;
  }

  .md\:active\:cl--m-56:active {
    margin: -224px !important;
  }

  .md\:active\:cl--m-64:active {
    margin: -256px !important;
  }

  .md\:active\:cl--m-px:active {
    margin: -1px !important;
  }

  .md\:active\:cl-my-0:active {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .md\:active\:cl-mx-0:active {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .md\:active\:cl-my-1:active {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  .md\:active\:cl-mx-1:active {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }

  .md\:active\:cl-my-2:active {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  .md\:active\:cl-mx-2:active {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }

  .md\:active\:cl-my-3:active {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }

  .md\:active\:cl-mx-3:active {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }

  .md\:active\:cl-my-4:active {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }

  .md\:active\:cl-mx-4:active {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }

  .md\:active\:cl-my-5:active {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .md\:active\:cl-mx-5:active {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }

  .md\:active\:cl-my-6:active {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }

  .md\:active\:cl-mx-6:active {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }

  .md\:active\:cl-my-8:active {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }

  .md\:active\:cl-mx-8:active {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }

  .md\:active\:cl-my-10:active {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  .md\:active\:cl-mx-10:active {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }

  .md\:active\:cl-my-12:active {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }

  .md\:active\:cl-mx-12:active {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }

  .md\:active\:cl-my-16:active {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }

  .md\:active\:cl-mx-16:active {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }

  .md\:active\:cl-my-20:active {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }

  .md\:active\:cl-mx-20:active {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }

  .md\:active\:cl-my-24:active {
    margin-top: 96px !important;
    margin-bottom: 96px !important;
  }

  .md\:active\:cl-mx-24:active {
    margin-left: 96px !important;
    margin-right: 96px !important;
  }

  .md\:active\:cl-my-26:active {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }

  .md\:active\:cl-mx-26:active {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }

  .md\:active\:cl-my-28:active {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
  }

  .md\:active\:cl-mx-28:active {
    margin-left: 110px !important;
    margin-right: 110px !important;
  }

  .md\:active\:cl-my-32:active {
    margin-top: 128px !important;
    margin-bottom: 128px !important;
  }

  .md\:active\:cl-mx-32:active {
    margin-left: 128px !important;
    margin-right: 128px !important;
  }

  .md\:active\:cl-my-40:active {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }

  .md\:active\:cl-mx-40:active {
    margin-left: 160px !important;
    margin-right: 160px !important;
  }

  .md\:active\:cl-my-48:active {
    margin-top: 192px !important;
    margin-bottom: 192px !important;
  }

  .md\:active\:cl-mx-48:active {
    margin-left: 192px !important;
    margin-right: 192px !important;
  }

  .md\:active\:cl-my-56:active {
    margin-top: 224px !important;
    margin-bottom: 224px !important;
  }

  .md\:active\:cl-mx-56:active {
    margin-left: 224px !important;
    margin-right: 224px !important;
  }

  .md\:active\:cl-my-64:active {
    margin-top: 256px !important;
    margin-bottom: 256px !important;
  }

  .md\:active\:cl-mx-64:active {
    margin-left: 256px !important;
    margin-right: 256px !important;
  }

  .md\:active\:cl-my-auto:active {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .md\:active\:cl-mx-auto:active {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .md\:active\:cl-my-px:active {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .md\:active\:cl-mx-px:active {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .md\:active\:cl--my-1:active {
    margin-top: -4px !important;
    margin-bottom: -4px !important;
  }

  .md\:active\:cl--mx-1:active {
    margin-left: -4px !important;
    margin-right: -4px !important;
  }

  .md\:active\:cl--my-2:active {
    margin-top: -8px !important;
    margin-bottom: -8px !important;
  }

  .md\:active\:cl--mx-2:active {
    margin-left: -8px !important;
    margin-right: -8px !important;
  }

  .md\:active\:cl--my-3:active {
    margin-top: -12px !important;
    margin-bottom: -12px !important;
  }

  .md\:active\:cl--mx-3:active {
    margin-left: -12px !important;
    margin-right: -12px !important;
  }

  .md\:active\:cl--my-4:active {
    margin-top: -16px !important;
    margin-bottom: -16px !important;
  }

  .md\:active\:cl--mx-4:active {
    margin-left: -16px !important;
    margin-right: -16px !important;
  }

  .md\:active\:cl--my-5:active {
    margin-top: -20px !important;
    margin-bottom: -20px !important;
  }

  .md\:active\:cl--mx-5:active {
    margin-left: -20px !important;
    margin-right: -20px !important;
  }

  .md\:active\:cl--my-6:active {
    margin-top: -24px !important;
    margin-bottom: -24px !important;
  }

  .md\:active\:cl--mx-6:active {
    margin-left: -24px !important;
    margin-right: -24px !important;
  }

  .md\:active\:cl--my-8:active {
    margin-top: -32px !important;
    margin-bottom: -32px !important;
  }

  .md\:active\:cl--mx-8:active {
    margin-left: -32px !important;
    margin-right: -32px !important;
  }

  .md\:active\:cl--my-10:active {
    margin-top: -40px !important;
    margin-bottom: -40px !important;
  }

  .md\:active\:cl--mx-10:active {
    margin-left: -40px !important;
    margin-right: -40px !important;
  }

  .md\:active\:cl--my-12:active {
    margin-top: -48px !important;
    margin-bottom: -48px !important;
  }

  .md\:active\:cl--mx-12:active {
    margin-left: -48px !important;
    margin-right: -48px !important;
  }

  .md\:active\:cl--my-16:active {
    margin-top: -64px !important;
    margin-bottom: -64px !important;
  }

  .md\:active\:cl--mx-16:active {
    margin-left: -64px !important;
    margin-right: -64px !important;
  }

  .md\:active\:cl--my-20:active {
    margin-top: -80px !important;
    margin-bottom: -80px !important;
  }

  .md\:active\:cl--mx-20:active {
    margin-left: -80px !important;
    margin-right: -80px !important;
  }

  .md\:active\:cl--my-24:active {
    margin-top: -96px !important;
    margin-bottom: -96px !important;
  }

  .md\:active\:cl--mx-24:active {
    margin-left: -96px !important;
    margin-right: -96px !important;
  }

  .md\:active\:cl--my-26:active {
    margin-top: -100px !important;
    margin-bottom: -100px !important;
  }

  .md\:active\:cl--mx-26:active {
    margin-left: -100px !important;
    margin-right: -100px !important;
  }

  .md\:active\:cl--my-28:active {
    margin-top: -110px !important;
    margin-bottom: -110px !important;
  }

  .md\:active\:cl--mx-28:active {
    margin-left: -110px !important;
    margin-right: -110px !important;
  }

  .md\:active\:cl--my-32:active {
    margin-top: -128px !important;
    margin-bottom: -128px !important;
  }

  .md\:active\:cl--mx-32:active {
    margin-left: -128px !important;
    margin-right: -128px !important;
  }

  .md\:active\:cl--my-40:active {
    margin-top: -160px !important;
    margin-bottom: -160px !important;
  }

  .md\:active\:cl--mx-40:active {
    margin-left: -160px !important;
    margin-right: -160px !important;
  }

  .md\:active\:cl--my-48:active {
    margin-top: -192px !important;
    margin-bottom: -192px !important;
  }

  .md\:active\:cl--mx-48:active {
    margin-left: -192px !important;
    margin-right: -192px !important;
  }

  .md\:active\:cl--my-56:active {
    margin-top: -224px !important;
    margin-bottom: -224px !important;
  }

  .md\:active\:cl--mx-56:active {
    margin-left: -224px !important;
    margin-right: -224px !important;
  }

  .md\:active\:cl--my-64:active {
    margin-top: -256px !important;
    margin-bottom: -256px !important;
  }

  .md\:active\:cl--mx-64:active {
    margin-left: -256px !important;
    margin-right: -256px !important;
  }

  .md\:active\:cl--my-px:active {
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .md\:active\:cl--mx-px:active {
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .md\:active\:cl-mt-0:active {
    margin-top: 0 !important;
  }

  .md\:active\:cl-mr-0:active {
    margin-right: 0 !important;
  }

  .md\:active\:cl-mb-0:active {
    margin-bottom: 0 !important;
  }

  .md\:active\:cl-ml-0:active {
    margin-left: 0 !important;
  }

  .md\:active\:cl-mt-1:active {
    margin-top: 4px !important;
  }

  .md\:active\:cl-mr-1:active {
    margin-right: 4px !important;
  }

  .md\:active\:cl-mb-1:active {
    margin-bottom: 4px !important;
  }

  .md\:active\:cl-ml-1:active {
    margin-left: 4px !important;
  }

  .md\:active\:cl-mt-2:active {
    margin-top: 8px !important;
  }

  .md\:active\:cl-mr-2:active {
    margin-right: 8px !important;
  }

  .md\:active\:cl-mb-2:active {
    margin-bottom: 8px !important;
  }

  .md\:active\:cl-ml-2:active {
    margin-left: 8px !important;
  }

  .md\:active\:cl-mt-3:active {
    margin-top: 12px !important;
  }

  .md\:active\:cl-mr-3:active {
    margin-right: 12px !important;
  }

  .md\:active\:cl-mb-3:active {
    margin-bottom: 12px !important;
  }

  .md\:active\:cl-ml-3:active {
    margin-left: 12px !important;
  }

  .md\:active\:cl-mt-4:active {
    margin-top: 16px !important;
  }

  .md\:active\:cl-mr-4:active {
    margin-right: 16px !important;
  }

  .md\:active\:cl-mb-4:active {
    margin-bottom: 16px !important;
  }

  .md\:active\:cl-ml-4:active {
    margin-left: 16px !important;
  }

  .md\:active\:cl-mt-5:active {
    margin-top: 20px !important;
  }

  .md\:active\:cl-mr-5:active {
    margin-right: 20px !important;
  }

  .md\:active\:cl-mb-5:active {
    margin-bottom: 20px !important;
  }

  .md\:active\:cl-ml-5:active {
    margin-left: 20px !important;
  }

  .md\:active\:cl-mt-6:active {
    margin-top: 24px !important;
  }

  .md\:active\:cl-mr-6:active {
    margin-right: 24px !important;
  }

  .md\:active\:cl-mb-6:active {
    margin-bottom: 24px !important;
  }

  .md\:active\:cl-ml-6:active {
    margin-left: 24px !important;
  }

  .md\:active\:cl-mt-8:active {
    margin-top: 32px !important;
  }

  .md\:active\:cl-mr-8:active {
    margin-right: 32px !important;
  }

  .md\:active\:cl-mb-8:active {
    margin-bottom: 32px !important;
  }

  .md\:active\:cl-ml-8:active {
    margin-left: 32px !important;
  }

  .md\:active\:cl-mt-10:active {
    margin-top: 40px !important;
  }

  .md\:active\:cl-mr-10:active {
    margin-right: 40px !important;
  }

  .md\:active\:cl-mb-10:active {
    margin-bottom: 40px !important;
  }

  .md\:active\:cl-ml-10:active {
    margin-left: 40px !important;
  }

  .md\:active\:cl-mt-12:active {
    margin-top: 48px !important;
  }

  .md\:active\:cl-mr-12:active {
    margin-right: 48px !important;
  }

  .md\:active\:cl-mb-12:active {
    margin-bottom: 48px !important;
  }

  .md\:active\:cl-ml-12:active {
    margin-left: 48px !important;
  }

  .md\:active\:cl-mt-16:active {
    margin-top: 64px !important;
  }

  .md\:active\:cl-mr-16:active {
    margin-right: 64px !important;
  }

  .md\:active\:cl-mb-16:active {
    margin-bottom: 64px !important;
  }

  .md\:active\:cl-ml-16:active {
    margin-left: 64px !important;
  }

  .md\:active\:cl-mt-20:active {
    margin-top: 80px !important;
  }

  .md\:active\:cl-mr-20:active {
    margin-right: 80px !important;
  }

  .md\:active\:cl-mb-20:active {
    margin-bottom: 80px !important;
  }

  .md\:active\:cl-ml-20:active {
    margin-left: 80px !important;
  }

  .md\:active\:cl-mt-24:active {
    margin-top: 96px !important;
  }

  .md\:active\:cl-mr-24:active {
    margin-right: 96px !important;
  }

  .md\:active\:cl-mb-24:active {
    margin-bottom: 96px !important;
  }

  .md\:active\:cl-ml-24:active {
    margin-left: 96px !important;
  }

  .md\:active\:cl-mt-26:active {
    margin-top: 100px !important;
  }

  .md\:active\:cl-mr-26:active {
    margin-right: 100px !important;
  }

  .md\:active\:cl-mb-26:active {
    margin-bottom: 100px !important;
  }

  .md\:active\:cl-ml-26:active {
    margin-left: 100px !important;
  }

  .md\:active\:cl-mt-28:active {
    margin-top: 110px !important;
  }

  .md\:active\:cl-mr-28:active {
    margin-right: 110px !important;
  }

  .md\:active\:cl-mb-28:active {
    margin-bottom: 110px !important;
  }

  .md\:active\:cl-ml-28:active {
    margin-left: 110px !important;
  }

  .md\:active\:cl-mt-32:active {
    margin-top: 128px !important;
  }

  .md\:active\:cl-mr-32:active {
    margin-right: 128px !important;
  }

  .md\:active\:cl-mb-32:active {
    margin-bottom: 128px !important;
  }

  .md\:active\:cl-ml-32:active {
    margin-left: 128px !important;
  }

  .md\:active\:cl-mt-40:active {
    margin-top: 160px !important;
  }

  .md\:active\:cl-mr-40:active {
    margin-right: 160px !important;
  }

  .md\:active\:cl-mb-40:active {
    margin-bottom: 160px !important;
  }

  .md\:active\:cl-ml-40:active {
    margin-left: 160px !important;
  }

  .md\:active\:cl-mt-48:active {
    margin-top: 192px !important;
  }

  .md\:active\:cl-mr-48:active {
    margin-right: 192px !important;
  }

  .md\:active\:cl-mb-48:active {
    margin-bottom: 192px !important;
  }

  .md\:active\:cl-ml-48:active {
    margin-left: 192px !important;
  }

  .md\:active\:cl-mt-56:active {
    margin-top: 224px !important;
  }

  .md\:active\:cl-mr-56:active {
    margin-right: 224px !important;
  }

  .md\:active\:cl-mb-56:active {
    margin-bottom: 224px !important;
  }

  .md\:active\:cl-ml-56:active {
    margin-left: 224px !important;
  }

  .md\:active\:cl-mt-64:active {
    margin-top: 256px !important;
  }

  .md\:active\:cl-mr-64:active {
    margin-right: 256px !important;
  }

  .md\:active\:cl-mb-64:active {
    margin-bottom: 256px !important;
  }

  .md\:active\:cl-ml-64:active {
    margin-left: 256px !important;
  }

  .md\:active\:cl-mt-auto:active {
    margin-top: auto !important;
  }

  .md\:active\:cl-mr-auto:active {
    margin-right: auto !important;
  }

  .md\:active\:cl-mb-auto:active {
    margin-bottom: auto !important;
  }

  .md\:active\:cl-ml-auto:active {
    margin-left: auto !important;
  }

  .md\:active\:cl-mt-px:active {
    margin-top: 1px !important;
  }

  .md\:active\:cl-mr-px:active {
    margin-right: 1px !important;
  }

  .md\:active\:cl-mb-px:active {
    margin-bottom: 1px !important;
  }

  .md\:active\:cl-ml-px:active {
    margin-left: 1px !important;
  }

  .md\:active\:cl--mt-1:active {
    margin-top: -4px !important;
  }

  .md\:active\:cl--mr-1:active {
    margin-right: -4px !important;
  }

  .md\:active\:cl--mb-1:active {
    margin-bottom: -4px !important;
  }

  .md\:active\:cl--ml-1:active {
    margin-left: -4px !important;
  }

  .md\:active\:cl--mt-2:active {
    margin-top: -8px !important;
  }

  .md\:active\:cl--mr-2:active {
    margin-right: -8px !important;
  }

  .md\:active\:cl--mb-2:active {
    margin-bottom: -8px !important;
  }

  .md\:active\:cl--ml-2:active {
    margin-left: -8px !important;
  }

  .md\:active\:cl--mt-3:active {
    margin-top: -12px !important;
  }

  .md\:active\:cl--mr-3:active {
    margin-right: -12px !important;
  }

  .md\:active\:cl--mb-3:active {
    margin-bottom: -12px !important;
  }

  .md\:active\:cl--ml-3:active {
    margin-left: -12px !important;
  }

  .md\:active\:cl--mt-4:active {
    margin-top: -16px !important;
  }

  .md\:active\:cl--mr-4:active {
    margin-right: -16px !important;
  }

  .md\:active\:cl--mb-4:active {
    margin-bottom: -16px !important;
  }

  .md\:active\:cl--ml-4:active {
    margin-left: -16px !important;
  }

  .md\:active\:cl--mt-5:active {
    margin-top: -20px !important;
  }

  .md\:active\:cl--mr-5:active {
    margin-right: -20px !important;
  }

  .md\:active\:cl--mb-5:active {
    margin-bottom: -20px !important;
  }

  .md\:active\:cl--ml-5:active {
    margin-left: -20px !important;
  }

  .md\:active\:cl--mt-6:active {
    margin-top: -24px !important;
  }

  .md\:active\:cl--mr-6:active {
    margin-right: -24px !important;
  }

  .md\:active\:cl--mb-6:active {
    margin-bottom: -24px !important;
  }

  .md\:active\:cl--ml-6:active {
    margin-left: -24px !important;
  }

  .md\:active\:cl--mt-8:active {
    margin-top: -32px !important;
  }

  .md\:active\:cl--mr-8:active {
    margin-right: -32px !important;
  }

  .md\:active\:cl--mb-8:active {
    margin-bottom: -32px !important;
  }

  .md\:active\:cl--ml-8:active {
    margin-left: -32px !important;
  }

  .md\:active\:cl--mt-10:active {
    margin-top: -40px !important;
  }

  .md\:active\:cl--mr-10:active {
    margin-right: -40px !important;
  }

  .md\:active\:cl--mb-10:active {
    margin-bottom: -40px !important;
  }

  .md\:active\:cl--ml-10:active {
    margin-left: -40px !important;
  }

  .md\:active\:cl--mt-12:active {
    margin-top: -48px !important;
  }

  .md\:active\:cl--mr-12:active {
    margin-right: -48px !important;
  }

  .md\:active\:cl--mb-12:active {
    margin-bottom: -48px !important;
  }

  .md\:active\:cl--ml-12:active {
    margin-left: -48px !important;
  }

  .md\:active\:cl--mt-16:active {
    margin-top: -64px !important;
  }

  .md\:active\:cl--mr-16:active {
    margin-right: -64px !important;
  }

  .md\:active\:cl--mb-16:active {
    margin-bottom: -64px !important;
  }

  .md\:active\:cl--ml-16:active {
    margin-left: -64px !important;
  }

  .md\:active\:cl--mt-20:active {
    margin-top: -80px !important;
  }

  .md\:active\:cl--mr-20:active {
    margin-right: -80px !important;
  }

  .md\:active\:cl--mb-20:active {
    margin-bottom: -80px !important;
  }

  .md\:active\:cl--ml-20:active {
    margin-left: -80px !important;
  }

  .md\:active\:cl--mt-24:active {
    margin-top: -96px !important;
  }

  .md\:active\:cl--mr-24:active {
    margin-right: -96px !important;
  }

  .md\:active\:cl--mb-24:active {
    margin-bottom: -96px !important;
  }

  .md\:active\:cl--ml-24:active {
    margin-left: -96px !important;
  }

  .md\:active\:cl--mt-26:active {
    margin-top: -100px !important;
  }

  .md\:active\:cl--mr-26:active {
    margin-right: -100px !important;
  }

  .md\:active\:cl--mb-26:active {
    margin-bottom: -100px !important;
  }

  .md\:active\:cl--ml-26:active {
    margin-left: -100px !important;
  }

  .md\:active\:cl--mt-28:active {
    margin-top: -110px !important;
  }

  .md\:active\:cl--mr-28:active {
    margin-right: -110px !important;
  }

  .md\:active\:cl--mb-28:active {
    margin-bottom: -110px !important;
  }

  .md\:active\:cl--ml-28:active {
    margin-left: -110px !important;
  }

  .md\:active\:cl--mt-32:active {
    margin-top: -128px !important;
  }

  .md\:active\:cl--mr-32:active {
    margin-right: -128px !important;
  }

  .md\:active\:cl--mb-32:active {
    margin-bottom: -128px !important;
  }

  .md\:active\:cl--ml-32:active {
    margin-left: -128px !important;
  }

  .md\:active\:cl--mt-40:active {
    margin-top: -160px !important;
  }

  .md\:active\:cl--mr-40:active {
    margin-right: -160px !important;
  }

  .md\:active\:cl--mb-40:active {
    margin-bottom: -160px !important;
  }

  .md\:active\:cl--ml-40:active {
    margin-left: -160px !important;
  }

  .md\:active\:cl--mt-48:active {
    margin-top: -192px !important;
  }

  .md\:active\:cl--mr-48:active {
    margin-right: -192px !important;
  }

  .md\:active\:cl--mb-48:active {
    margin-bottom: -192px !important;
  }

  .md\:active\:cl--ml-48:active {
    margin-left: -192px !important;
  }

  .md\:active\:cl--mt-56:active {
    margin-top: -224px !important;
  }

  .md\:active\:cl--mr-56:active {
    margin-right: -224px !important;
  }

  .md\:active\:cl--mb-56:active {
    margin-bottom: -224px !important;
  }

  .md\:active\:cl--ml-56:active {
    margin-left: -224px !important;
  }

  .md\:active\:cl--mt-64:active {
    margin-top: -256px !important;
  }

  .md\:active\:cl--mr-64:active {
    margin-right: -256px !important;
  }

  .md\:active\:cl--mb-64:active {
    margin-bottom: -256px !important;
  }

  .md\:active\:cl--ml-64:active {
    margin-left: -256px !important;
  }

  .md\:active\:cl--mt-px:active {
    margin-top: -1px !important;
  }

  .md\:active\:cl--mr-px:active {
    margin-right: -1px !important;
  }

  .md\:active\:cl--mb-px:active {
    margin-bottom: -1px !important;
  }

  .md\:active\:cl--ml-px:active {
    margin-left: -1px !important;
  }

  .md\:cl-max-h-full {
    max-height: 100% !important;
  }

  .md\:cl-max-h-screen {
    max-height: 100vh !important;
  }

  .md\:cl-max-w-none {
    max-width: none !important;
  }

  .md\:cl-max-w-xs {
    max-width: 20rem !important;
  }

  .md\:cl-max-w-sm {
    max-width: 24rem !important;
  }

  .md\:cl-max-w-md {
    max-width: 28rem !important;
  }

  .md\:cl-max-w-lg {
    max-width: 32rem !important;
  }

  .md\:cl-max-w-xl {
    max-width: 36rem !important;
  }

  .md\:cl-max-w-2xl {
    max-width: 42rem !important;
  }

  .md\:cl-max-w-3xl {
    max-width: 48rem !important;
  }

  .md\:cl-max-w-4xl {
    max-width: 56rem !important;
  }

  .md\:cl-max-w-5xl {
    max-width: 64rem !important;
  }

  .md\:cl-max-w-6xl {
    max-width: 72rem !important;
  }

  .md\:cl-max-w-full {
    max-width: 100% !important;
  }

  .md\:cl-max-w-screen-sm {
    max-width: 640px !important;
  }

  .md\:cl-max-w-screen-md {
    max-width: 768px !important;
  }

  .md\:cl-max-w-screen-lg {
    max-width: 1024px !important;
  }

  .md\:cl-max-w-screen-xl {
    max-width: 1280px !important;
  }

  .md\:cl-min-h-0 {
    min-height: 0 !important;
  }

  .md\:cl-min-h-full {
    min-height: 100% !important;
  }

  .md\:cl-min-h-screen {
    min-height: 100vh !important;
  }

  .md\:cl-min-w-0 {
    min-width: 0 !important;
  }

  .md\:cl-min-w-full {
    min-width: 100% !important;
  }

  .md\:cl-object-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }

  .md\:cl-object-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }

  .md\:cl-object-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }

  .md\:cl-object-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }

  .md\:cl-object-scale-down {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }

  .md\:cl-object-bottom {
    -o-object-position: bottom !important;
       object-position: bottom !important;
  }

  .md\:cl-object-center {
    -o-object-position: center !important;
       object-position: center !important;
  }

  .md\:cl-object-left {
    -o-object-position: left !important;
       object-position: left !important;
  }

  .md\:cl-object-left-bottom {
    -o-object-position: left bottom !important;
       object-position: left bottom !important;
  }

  .md\:cl-object-left-top {
    -o-object-position: left top !important;
       object-position: left top !important;
  }

  .md\:cl-object-right {
    -o-object-position: right !important;
       object-position: right !important;
  }

  .md\:cl-object-right-bottom {
    -o-object-position: right bottom !important;
       object-position: right bottom !important;
  }

  .md\:cl-object-right-top {
    -o-object-position: right top !important;
       object-position: right top !important;
  }

  .md\:cl-object-top {
    -o-object-position: top !important;
       object-position: top !important;
  }

  .md\:cl-opacity-0 {
    opacity: 0 !important;
  }

  .md\:cl-opacity-25 {
    opacity: 0.25 !important;
  }

  .md\:cl-opacity-50 {
    opacity: 0.5 !important;
  }

  .md\:cl-opacity-75 {
    opacity: 0.75 !important;
  }

  .md\:cl-opacity-100 {
    opacity: 1 !important;
  }

  .md\:hover\:cl-opacity-0:hover {
    opacity: 0 !important;
  }

  .md\:hover\:cl-opacity-25:hover {
    opacity: 0.25 !important;
  }

  .md\:hover\:cl-opacity-50:hover {
    opacity: 0.5 !important;
  }

  .md\:hover\:cl-opacity-75:hover {
    opacity: 0.75 !important;
  }

  .md\:hover\:cl-opacity-100:hover {
    opacity: 1 !important;
  }

  .md\:focus\:cl-opacity-0:focus {
    opacity: 0 !important;
  }

  .md\:focus\:cl-opacity-25:focus {
    opacity: 0.25 !important;
  }

  .md\:focus\:cl-opacity-50:focus {
    opacity: 0.5 !important;
  }

  .md\:focus\:cl-opacity-75:focus {
    opacity: 0.75 !important;
  }

  .md\:focus\:cl-opacity-100:focus {
    opacity: 1 !important;
  }

  .md\:cl-outline-none {
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .md\:cl-outline-white {
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .md\:cl-outline-black {
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .md\:focus\:cl-outline-none:focus {
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .md\:focus\:cl-outline-white:focus {
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .md\:focus\:cl-outline-black:focus {
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .md\:cl-overflow-auto {
    overflow: auto !important;
  }

  .md\:cl-overflow-hidden {
    overflow: hidden !important;
  }

  .md\:cl-overflow-visible {
    overflow: visible !important;
  }

  .md\:cl-overflow-scroll {
    overflow: scroll !important;
  }

  .md\:cl-overflow-x-auto {
    overflow-x: auto !important;
  }

  .md\:cl-overflow-y-auto {
    overflow-y: auto !important;
  }

  .md\:cl-overflow-x-hidden {
    overflow-x: hidden !important;
  }

  .md\:cl-overflow-y-hidden {
    overflow-y: hidden !important;
  }

  .md\:cl-overflow-x-visible {
    overflow-x: visible !important;
  }

  .md\:cl-overflow-y-visible {
    overflow-y: visible !important;
  }

  .md\:cl-overflow-x-scroll {
    overflow-x: scroll !important;
  }

  .md\:cl-overflow-y-scroll {
    overflow-y: scroll !important;
  }

  .md\:cl-scrolling-touch {
    -webkit-overflow-scrolling: touch !important;
  }

  .md\:cl-scrolling-auto {
    -webkit-overflow-scrolling: auto !important;
  }

  .md\:cl-overscroll-auto {
    overscroll-behavior: auto !important;
  }

  .md\:cl-overscroll-contain {
    overscroll-behavior: contain !important;
  }

  .md\:cl-overscroll-none {
    overscroll-behavior: none !important;
  }

  .md\:cl-overscroll-y-auto {
    overscroll-behavior-y: auto !important;
  }

  .md\:cl-overscroll-y-contain {
    overscroll-behavior-y: contain !important;
  }

  .md\:cl-overscroll-y-none {
    overscroll-behavior-y: none !important;
  }

  .md\:cl-overscroll-x-auto {
    overscroll-behavior-x: auto !important;
  }

  .md\:cl-overscroll-x-contain {
    overscroll-behavior-x: contain !important;
  }

  .md\:cl-overscroll-x-none {
    overscroll-behavior-x: none !important;
  }

  .md\:cl-p-0 {
    padding: 0 !important;
  }

  .md\:cl-p-1 {
    padding: 4px !important;
  }

  .md\:cl-p-2 {
    padding: 8px !important;
  }

  .md\:cl-p-3 {
    padding: 12px !important;
  }

  .md\:cl-p-4 {
    padding: 16px !important;
  }

  .md\:cl-p-5 {
    padding: 20px !important;
  }

  .md\:cl-p-6 {
    padding: 24px !important;
  }

  .md\:cl-p-8 {
    padding: 32px !important;
  }

  .md\:cl-p-10 {
    padding: 40px !important;
  }

  .md\:cl-p-12 {
    padding: 48px !important;
  }

  .md\:cl-p-16 {
    padding: 64px !important;
  }

  .md\:cl-p-20 {
    padding: 80px !important;
  }

  .md\:cl-p-24 {
    padding: 96px !important;
  }

  .md\:cl-p-26 {
    padding: 100px !important;
  }

  .md\:cl-p-28 {
    padding: 110px !important;
  }

  .md\:cl-p-32 {
    padding: 128px !important;
  }

  .md\:cl-p-40 {
    padding: 160px !important;
  }

  .md\:cl-p-48 {
    padding: 192px !important;
  }

  .md\:cl-p-56 {
    padding: 224px !important;
  }

  .md\:cl-p-64 {
    padding: 256px !important;
  }

  .md\:cl-p-px {
    padding: 1px !important;
  }

  .md\:cl-py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .md\:cl-px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .md\:cl-py-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  .md\:cl-px-1 {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }

  .md\:cl-py-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .md\:cl-px-2 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .md\:cl-py-3 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  .md\:cl-px-3 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .md\:cl-py-4 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }

  .md\:cl-px-4 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .md\:cl-py-5 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .md\:cl-px-5 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .md\:cl-py-6 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  .md\:cl-px-6 {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .md\:cl-py-8 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }

  .md\:cl-px-8 {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }

  .md\:cl-py-10 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .md\:cl-px-10 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .md\:cl-py-12 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  .md\:cl-px-12 {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }

  .md\:cl-py-16 {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  .md\:cl-px-16 {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }

  .md\:cl-py-20 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  .md\:cl-px-20 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }

  .md\:cl-py-24 {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
  }

  .md\:cl-px-24 {
    padding-left: 96px !important;
    padding-right: 96px !important;
  }

  .md\:cl-py-26 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }

  .md\:cl-px-26 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }

  .md\:cl-py-28 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
  }

  .md\:cl-px-28 {
    padding-left: 110px !important;
    padding-right: 110px !important;
  }

  .md\:cl-py-32 {
    padding-top: 128px !important;
    padding-bottom: 128px !important;
  }

  .md\:cl-px-32 {
    padding-left: 128px !important;
    padding-right: 128px !important;
  }

  .md\:cl-py-40 {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
  }

  .md\:cl-px-40 {
    padding-left: 160px !important;
    padding-right: 160px !important;
  }

  .md\:cl-py-48 {
    padding-top: 192px !important;
    padding-bottom: 192px !important;
  }

  .md\:cl-px-48 {
    padding-left: 192px !important;
    padding-right: 192px !important;
  }

  .md\:cl-py-56 {
    padding-top: 224px !important;
    padding-bottom: 224px !important;
  }

  .md\:cl-px-56 {
    padding-left: 224px !important;
    padding-right: 224px !important;
  }

  .md\:cl-py-64 {
    padding-top: 256px !important;
    padding-bottom: 256px !important;
  }

  .md\:cl-px-64 {
    padding-left: 256px !important;
    padding-right: 256px !important;
  }

  .md\:cl-py-px {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .md\:cl-px-px {
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .md\:cl-pt-0 {
    padding-top: 0 !important;
  }

  .md\:cl-pr-0 {
    padding-right: 0 !important;
  }

  .md\:cl-pb-0 {
    padding-bottom: 0 !important;
  }

  .md\:cl-pl-0 {
    padding-left: 0 !important;
  }

  .md\:cl-pt-1 {
    padding-top: 4px !important;
  }

  .md\:cl-pr-1 {
    padding-right: 4px !important;
  }

  .md\:cl-pb-1 {
    padding-bottom: 4px !important;
  }

  .md\:cl-pl-1 {
    padding-left: 4px !important;
  }

  .md\:cl-pt-2 {
    padding-top: 8px !important;
  }

  .md\:cl-pr-2 {
    padding-right: 8px !important;
  }

  .md\:cl-pb-2 {
    padding-bottom: 8px !important;
  }

  .md\:cl-pl-2 {
    padding-left: 8px !important;
  }

  .md\:cl-pt-3 {
    padding-top: 12px !important;
  }

  .md\:cl-pr-3 {
    padding-right: 12px !important;
  }

  .md\:cl-pb-3 {
    padding-bottom: 12px !important;
  }

  .md\:cl-pl-3 {
    padding-left: 12px !important;
  }

  .md\:cl-pt-4 {
    padding-top: 16px !important;
  }

  .md\:cl-pr-4 {
    padding-right: 16px !important;
  }

  .md\:cl-pb-4 {
    padding-bottom: 16px !important;
  }

  .md\:cl-pl-4 {
    padding-left: 16px !important;
  }

  .md\:cl-pt-5 {
    padding-top: 20px !important;
  }

  .md\:cl-pr-5 {
    padding-right: 20px !important;
  }

  .md\:cl-pb-5 {
    padding-bottom: 20px !important;
  }

  .md\:cl-pl-5 {
    padding-left: 20px !important;
  }

  .md\:cl-pt-6 {
    padding-top: 24px !important;
  }

  .md\:cl-pr-6 {
    padding-right: 24px !important;
  }

  .md\:cl-pb-6 {
    padding-bottom: 24px !important;
  }

  .md\:cl-pl-6 {
    padding-left: 24px !important;
  }

  .md\:cl-pt-8 {
    padding-top: 32px !important;
  }

  .md\:cl-pr-8 {
    padding-right: 32px !important;
  }

  .md\:cl-pb-8 {
    padding-bottom: 32px !important;
  }

  .md\:cl-pl-8 {
    padding-left: 32px !important;
  }

  .md\:cl-pt-10 {
    padding-top: 40px !important;
  }

  .md\:cl-pr-10 {
    padding-right: 40px !important;
  }

  .md\:cl-pb-10 {
    padding-bottom: 40px !important;
  }

  .md\:cl-pl-10 {
    padding-left: 40px !important;
  }

  .md\:cl-pt-12 {
    padding-top: 48px !important;
  }

  .md\:cl-pr-12 {
    padding-right: 48px !important;
  }

  .md\:cl-pb-12 {
    padding-bottom: 48px !important;
  }

  .md\:cl-pl-12 {
    padding-left: 48px !important;
  }

  .md\:cl-pt-16 {
    padding-top: 64px !important;
  }

  .md\:cl-pr-16 {
    padding-right: 64px !important;
  }

  .md\:cl-pb-16 {
    padding-bottom: 64px !important;
  }

  .md\:cl-pl-16 {
    padding-left: 64px !important;
  }

  .md\:cl-pt-20 {
    padding-top: 80px !important;
  }

  .md\:cl-pr-20 {
    padding-right: 80px !important;
  }

  .md\:cl-pb-20 {
    padding-bottom: 80px !important;
  }

  .md\:cl-pl-20 {
    padding-left: 80px !important;
  }

  .md\:cl-pt-24 {
    padding-top: 96px !important;
  }

  .md\:cl-pr-24 {
    padding-right: 96px !important;
  }

  .md\:cl-pb-24 {
    padding-bottom: 96px !important;
  }

  .md\:cl-pl-24 {
    padding-left: 96px !important;
  }

  .md\:cl-pt-26 {
    padding-top: 100px !important;
  }

  .md\:cl-pr-26 {
    padding-right: 100px !important;
  }

  .md\:cl-pb-26 {
    padding-bottom: 100px !important;
  }

  .md\:cl-pl-26 {
    padding-left: 100px !important;
  }

  .md\:cl-pt-28 {
    padding-top: 110px !important;
  }

  .md\:cl-pr-28 {
    padding-right: 110px !important;
  }

  .md\:cl-pb-28 {
    padding-bottom: 110px !important;
  }

  .md\:cl-pl-28 {
    padding-left: 110px !important;
  }

  .md\:cl-pt-32 {
    padding-top: 128px !important;
  }

  .md\:cl-pr-32 {
    padding-right: 128px !important;
  }

  .md\:cl-pb-32 {
    padding-bottom: 128px !important;
  }

  .md\:cl-pl-32 {
    padding-left: 128px !important;
  }

  .md\:cl-pt-40 {
    padding-top: 160px !important;
  }

  .md\:cl-pr-40 {
    padding-right: 160px !important;
  }

  .md\:cl-pb-40 {
    padding-bottom: 160px !important;
  }

  .md\:cl-pl-40 {
    padding-left: 160px !important;
  }

  .md\:cl-pt-48 {
    padding-top: 192px !important;
  }

  .md\:cl-pr-48 {
    padding-right: 192px !important;
  }

  .md\:cl-pb-48 {
    padding-bottom: 192px !important;
  }

  .md\:cl-pl-48 {
    padding-left: 192px !important;
  }

  .md\:cl-pt-56 {
    padding-top: 224px !important;
  }

  .md\:cl-pr-56 {
    padding-right: 224px !important;
  }

  .md\:cl-pb-56 {
    padding-bottom: 224px !important;
  }

  .md\:cl-pl-56 {
    padding-left: 224px !important;
  }

  .md\:cl-pt-64 {
    padding-top: 256px !important;
  }

  .md\:cl-pr-64 {
    padding-right: 256px !important;
  }

  .md\:cl-pb-64 {
    padding-bottom: 256px !important;
  }

  .md\:cl-pl-64 {
    padding-left: 256px !important;
  }

  .md\:cl-pt-px {
    padding-top: 1px !important;
  }

  .md\:cl-pr-px {
    padding-right: 1px !important;
  }

  .md\:cl-pb-px {
    padding-bottom: 1px !important;
  }

  .md\:cl-pl-px {
    padding-left: 1px !important;
  }

  .md\:cl-placeholder-transparent::-moz-placeholder {
    color: transparent !important;
  }

  .md\:cl-placeholder-transparent::placeholder {
    color: transparent !important;
  }

  .md\:cl-placeholder-current::-moz-placeholder {
    color: currentColor !important;
  }

  .md\:cl-placeholder-current::placeholder {
    color: currentColor !important;
  }

  .md\:cl-placeholder-black::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #000 !important;
    color: rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-black::placeholder {
    --placeholder-opacity: 1 !important;
    color: #000 !important;
    color: rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-white::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff !important;
    color: rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-white::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff !important;
    color: rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-gray-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f7fafc !important;
    color: rgba(247, 250, 252, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-gray-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f7fafc !important;
    color: rgba(247, 250, 252, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-gray-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #edf2f7 !important;
    color: rgba(237, 242, 247, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-gray-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #edf2f7 !important;
    color: rgba(237, 242, 247, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-gray-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e2e8f0 !important;
    color: rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-gray-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e2e8f0 !important;
    color: rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-gray-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #cbd5e0 !important;
    color: rgba(203, 213, 224, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-gray-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #cbd5e0 !important;
    color: rgba(203, 213, 224, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-gray-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #a0aec0 !important;
    color: rgba(160, 174, 192, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-gray-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #a0aec0 !important;
    color: rgba(160, 174, 192, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-gray-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #718096 !important;
    color: rgba(113, 128, 150, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-gray-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #718096 !important;
    color: rgba(113, 128, 150, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-gray-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #4a5568 !important;
    color: rgba(74, 85, 104, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-gray-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #4a5568 !important;
    color: rgba(74, 85, 104, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-gray-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2d3748 !important;
    color: rgba(45, 55, 72, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-gray-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2d3748 !important;
    color: rgba(45, 55, 72, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-gray-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #1a202c !important;
    color: rgba(26, 32, 44, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-gray-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #1a202c !important;
    color: rgba(26, 32, 44, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-red-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff5f5 !important;
    color: rgba(255, 245, 245, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-red-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff5f5 !important;
    color: rgba(255, 245, 245, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-red-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fed7d7 !important;
    color: rgba(254, 215, 215, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-red-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fed7d7 !important;
    color: rgba(254, 215, 215, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-red-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #feb2b2 !important;
    color: rgba(254, 178, 178, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-red-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #feb2b2 !important;
    color: rgba(254, 178, 178, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-red-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fc8181 !important;
    color: rgba(252, 129, 129, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-red-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fc8181 !important;
    color: rgba(252, 129, 129, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-red-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f56565 !important;
    color: rgba(245, 101, 101, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-red-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f56565 !important;
    color: rgba(245, 101, 101, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-red-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e53e3e !important;
    color: rgba(229, 62, 62, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-red-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e53e3e !important;
    color: rgba(229, 62, 62, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-red-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #c53030 !important;
    color: rgba(197, 48, 48, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-red-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #c53030 !important;
    color: rgba(197, 48, 48, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-red-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #9b2c2c !important;
    color: rgba(155, 44, 44, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-red-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #9b2c2c !important;
    color: rgba(155, 44, 44, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-red-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #742a2a !important;
    color: rgba(116, 42, 42, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-red-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #742a2a !important;
    color: rgba(116, 42, 42, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-orange-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fffaf0 !important;
    color: rgba(255, 250, 240, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-orange-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fffaf0 !important;
    color: rgba(255, 250, 240, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-orange-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #feebc8 !important;
    color: rgba(254, 235, 200, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-orange-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #feebc8 !important;
    color: rgba(254, 235, 200, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-orange-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fbd38d !important;
    color: rgba(251, 211, 141, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-orange-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fbd38d !important;
    color: rgba(251, 211, 141, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-orange-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f6ad55 !important;
    color: rgba(246, 173, 85, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-orange-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f6ad55 !important;
    color: rgba(246, 173, 85, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-orange-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ed8936 !important;
    color: rgba(237, 137, 54, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-orange-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ed8936 !important;
    color: rgba(237, 137, 54, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-orange-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #dd6b20 !important;
    color: rgba(221, 107, 32, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-orange-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #dd6b20 !important;
    color: rgba(221, 107, 32, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-orange-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #c05621 !important;
    color: rgba(192, 86, 33, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-orange-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #c05621 !important;
    color: rgba(192, 86, 33, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-orange-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #9c4221 !important;
    color: rgba(156, 66, 33, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-orange-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #9c4221 !important;
    color: rgba(156, 66, 33, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-orange-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #7b341e !important;
    color: rgba(123, 52, 30, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-orange-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #7b341e !important;
    color: rgba(123, 52, 30, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-yellow-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fffff0 !important;
    color: rgba(255, 255, 240, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-yellow-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fffff0 !important;
    color: rgba(255, 255, 240, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-yellow-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fefcbf !important;
    color: rgba(254, 252, 191, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-yellow-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fefcbf !important;
    color: rgba(254, 252, 191, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-yellow-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #faf089 !important;
    color: rgba(250, 240, 137, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-yellow-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #faf089 !important;
    color: rgba(250, 240, 137, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-yellow-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f6e05e !important;
    color: rgba(246, 224, 94, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-yellow-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f6e05e !important;
    color: rgba(246, 224, 94, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-yellow-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ecc94b !important;
    color: rgba(236, 201, 75, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-yellow-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ecc94b !important;
    color: rgba(236, 201, 75, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-yellow-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #d69e2e !important;
    color: rgba(214, 158, 46, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-yellow-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #d69e2e !important;
    color: rgba(214, 158, 46, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-yellow-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #b7791f !important;
    color: rgba(183, 121, 31, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-yellow-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #b7791f !important;
    color: rgba(183, 121, 31, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-yellow-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #975a16 !important;
    color: rgba(151, 90, 22, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-yellow-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #975a16 !important;
    color: rgba(151, 90, 22, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-yellow-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #744210 !important;
    color: rgba(116, 66, 16, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-yellow-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #744210 !important;
    color: rgba(116, 66, 16, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-green-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f0fff4 !important;
    color: rgba(240, 255, 244, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-green-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f0fff4 !important;
    color: rgba(240, 255, 244, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-green-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #c6f6d5 !important;
    color: rgba(198, 246, 213, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-green-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #c6f6d5 !important;
    color: rgba(198, 246, 213, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-green-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #9ae6b4 !important;
    color: rgba(154, 230, 180, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-green-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #9ae6b4 !important;
    color: rgba(154, 230, 180, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-green-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #68d391 !important;
    color: rgba(104, 211, 145, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-green-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #68d391 !important;
    color: rgba(104, 211, 145, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-green-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #48bb78 !important;
    color: rgba(72, 187, 120, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-green-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #48bb78 !important;
    color: rgba(72, 187, 120, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-green-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #38a169 !important;
    color: rgba(56, 161, 105, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-green-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #38a169 !important;
    color: rgba(56, 161, 105, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-green-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2f855a !important;
    color: rgba(47, 133, 90, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-green-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2f855a !important;
    color: rgba(47, 133, 90, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-green-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #276749 !important;
    color: rgba(39, 103, 73, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-green-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #276749 !important;
    color: rgba(39, 103, 73, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-green-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #22543d !important;
    color: rgba(34, 84, 61, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-green-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #22543d !important;
    color: rgba(34, 84, 61, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-teal-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e6fffa !important;
    color: rgba(230, 255, 250, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-teal-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e6fffa !important;
    color: rgba(230, 255, 250, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-teal-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #b2f5ea !important;
    color: rgba(178, 245, 234, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-teal-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #b2f5ea !important;
    color: rgba(178, 245, 234, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-teal-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #81e6d9 !important;
    color: rgba(129, 230, 217, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-teal-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #81e6d9 !important;
    color: rgba(129, 230, 217, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-teal-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #4fd1c5 !important;
    color: rgba(79, 209, 197, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-teal-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #4fd1c5 !important;
    color: rgba(79, 209, 197, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-teal-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #38b2ac !important;
    color: rgba(56, 178, 172, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-teal-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #38b2ac !important;
    color: rgba(56, 178, 172, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-teal-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #319795 !important;
    color: rgba(49, 151, 149, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-teal-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #319795 !important;
    color: rgba(49, 151, 149, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-teal-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2c7a7b !important;
    color: rgba(44, 122, 123, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-teal-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2c7a7b !important;
    color: rgba(44, 122, 123, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-teal-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #285e61 !important;
    color: rgba(40, 94, 97, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-teal-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #285e61 !important;
    color: rgba(40, 94, 97, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-teal-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #234e52 !important;
    color: rgba(35, 78, 82, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-teal-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #234e52 !important;
    color: rgba(35, 78, 82, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-blue-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ebf8ff !important;
    color: rgba(235, 248, 255, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-blue-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ebf8ff !important;
    color: rgba(235, 248, 255, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-blue-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #bee3f8 !important;
    color: rgba(190, 227, 248, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-blue-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #bee3f8 !important;
    color: rgba(190, 227, 248, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-blue-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #90cdf4 !important;
    color: rgba(144, 205, 244, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-blue-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #90cdf4 !important;
    color: rgba(144, 205, 244, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-blue-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #63b3ed !important;
    color: rgba(99, 179, 237, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-blue-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #63b3ed !important;
    color: rgba(99, 179, 237, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-blue-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #4299e1 !important;
    color: rgba(66, 153, 225, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-blue-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #4299e1 !important;
    color: rgba(66, 153, 225, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-blue-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #3182ce !important;
    color: rgba(49, 130, 206, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-blue-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #3182ce !important;
    color: rgba(49, 130, 206, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-blue-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2b6cb0 !important;
    color: rgba(43, 108, 176, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-blue-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2b6cb0 !important;
    color: rgba(43, 108, 176, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-blue-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2c5282 !important;
    color: rgba(44, 82, 130, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-blue-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2c5282 !important;
    color: rgba(44, 82, 130, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-blue-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2a4365 !important;
    color: rgba(42, 67, 101, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-blue-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2a4365 !important;
    color: rgba(42, 67, 101, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-indigo-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ebf4ff !important;
    color: rgba(235, 244, 255, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-indigo-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ebf4ff !important;
    color: rgba(235, 244, 255, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-indigo-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #c3dafe !important;
    color: rgba(195, 218, 254, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-indigo-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #c3dafe !important;
    color: rgba(195, 218, 254, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-indigo-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #a3bffa !important;
    color: rgba(163, 191, 250, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-indigo-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #a3bffa !important;
    color: rgba(163, 191, 250, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-indigo-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #7f9cf5 !important;
    color: rgba(127, 156, 245, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-indigo-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #7f9cf5 !important;
    color: rgba(127, 156, 245, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-indigo-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #667eea !important;
    color: rgba(102, 126, 234, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-indigo-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #667eea !important;
    color: rgba(102, 126, 234, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-indigo-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #5a67d8 !important;
    color: rgba(90, 103, 216, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-indigo-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #5a67d8 !important;
    color: rgba(90, 103, 216, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-indigo-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #4c51bf !important;
    color: rgba(76, 81, 191, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-indigo-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #4c51bf !important;
    color: rgba(76, 81, 191, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-indigo-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #434190 !important;
    color: rgba(67, 65, 144, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-indigo-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #434190 !important;
    color: rgba(67, 65, 144, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-indigo-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #3c366b !important;
    color: rgba(60, 54, 107, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-indigo-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #3c366b !important;
    color: rgba(60, 54, 107, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-purple-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #faf5ff !important;
    color: rgba(250, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-purple-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #faf5ff !important;
    color: rgba(250, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-purple-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e9d8fd !important;
    color: rgba(233, 216, 253, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-purple-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e9d8fd !important;
    color: rgba(233, 216, 253, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-purple-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #d6bcfa !important;
    color: rgba(214, 188, 250, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-purple-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #d6bcfa !important;
    color: rgba(214, 188, 250, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-purple-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #b794f4 !important;
    color: rgba(183, 148, 244, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-purple-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #b794f4 !important;
    color: rgba(183, 148, 244, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-purple-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #9f7aea !important;
    color: rgba(159, 122, 234, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-purple-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #9f7aea !important;
    color: rgba(159, 122, 234, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-purple-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #805ad5 !important;
    color: rgba(128, 90, 213, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-purple-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #805ad5 !important;
    color: rgba(128, 90, 213, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-purple-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #6b46c1 !important;
    color: rgba(107, 70, 193, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-purple-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #6b46c1 !important;
    color: rgba(107, 70, 193, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-purple-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #553c9a !important;
    color: rgba(85, 60, 154, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-purple-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #553c9a !important;
    color: rgba(85, 60, 154, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-purple-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #44337a !important;
    color: rgba(68, 51, 122, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-purple-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #44337a !important;
    color: rgba(68, 51, 122, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-pink-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff5f7 !important;
    color: rgba(255, 245, 247, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-pink-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff5f7 !important;
    color: rgba(255, 245, 247, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-pink-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fed7e2 !important;
    color: rgba(254, 215, 226, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-pink-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fed7e2 !important;
    color: rgba(254, 215, 226, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-pink-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fbb6ce !important;
    color: rgba(251, 182, 206, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-pink-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fbb6ce !important;
    color: rgba(251, 182, 206, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-pink-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f687b3 !important;
    color: rgba(246, 135, 179, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-pink-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f687b3 !important;
    color: rgba(246, 135, 179, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-pink-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ed64a6 !important;
    color: rgba(237, 100, 166, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-pink-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ed64a6 !important;
    color: rgba(237, 100, 166, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-pink-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #d53f8c !important;
    color: rgba(213, 63, 140, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-pink-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #d53f8c !important;
    color: rgba(213, 63, 140, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-pink-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #b83280 !important;
    color: rgba(184, 50, 128, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-pink-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #b83280 !important;
    color: rgba(184, 50, 128, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-pink-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #97266d !important;
    color: rgba(151, 38, 109, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-pink-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #97266d !important;
    color: rgba(151, 38, 109, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-pink-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #702459 !important;
    color: rgba(112, 36, 89, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-pink-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #702459 !important;
    color: rgba(112, 36, 89, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-ui-gray-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f1f1f1 !important;
    color: rgba(241, 241, 241, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-ui-gray-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f1f1f1 !important;
    color: rgba(241, 241, 241, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-ui-brown-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f3ecdc !important;
    color: rgba(243, 236, 220, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-ui-brown-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f3ecdc !important;
    color: rgba(243, 236, 220, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-ui-brown-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e8e0c9 !important;
    color: rgba(232, 224, 201, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-ui-brown-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e8e0c9 !important;
    color: rgba(232, 224, 201, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-ui-brown-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #d0c095 !important;
    color: rgba(208, 192, 149, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-ui-brown-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #d0c095 !important;
    color: rgba(208, 192, 149, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-ui-brown-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #bd6005 !important;
    color: rgba(189, 96, 5, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-ui-brown-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #bd6005 !important;
    color: rgba(189, 96, 5, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-ui-green-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #aac74c !important;
    color: rgba(170, 199, 76, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-ui-green-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #aac74c !important;
    color: rgba(170, 199, 76, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-ui-green-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #71893e !important;
    color: rgba(113, 137, 62, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-ui-green-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #71893e !important;
    color: rgba(113, 137, 62, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-ui-orange-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e27212 !important;
    color: rgba(226, 114, 18, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-ui-orange-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e27212 !important;
    color: rgba(226, 114, 18, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-facebook::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #3b5998 !important;
    color: rgba(59, 89, 152, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-facebook::placeholder {
    --placeholder-opacity: 1 !important;
    color: #3b5998 !important;
    color: rgba(59, 89, 152, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-twitter::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #00acee !important;
    color: rgba(0, 172, 238, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-twitter::placeholder {
    --placeholder-opacity: 1 !important;
    color: #00acee !important;
    color: rgba(0, 172, 238, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-twitch::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #6441a5 !important;
    color: rgba(100, 65, 165, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-twitch::placeholder {
    --placeholder-opacity: 1 !important;
    color: #6441a5 !important;
    color: rgba(100, 65, 165, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-youtube::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #FF0000 !important;
    color: rgba(255, 0, 0, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-youtube::placeholder {
    --placeholder-opacity: 1 !important;
    color: #FF0000 !important;
    color: rgba(255, 0, 0, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-transparent:focus::-moz-placeholder {
    color: transparent !important;
  }

  .md\:focus\:cl-placeholder-transparent:focus::placeholder {
    color: transparent !important;
  }

  .md\:focus\:cl-placeholder-current:focus::-moz-placeholder {
    color: currentColor !important;
  }

  .md\:focus\:cl-placeholder-current:focus::placeholder {
    color: currentColor !important;
  }

  .md\:focus\:cl-placeholder-black:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #000 !important;
    color: rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-black:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #000 !important;
    color: rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-white:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff !important;
    color: rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-white:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff !important;
    color: rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-gray-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f7fafc !important;
    color: rgba(247, 250, 252, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-gray-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f7fafc !important;
    color: rgba(247, 250, 252, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-gray-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #edf2f7 !important;
    color: rgba(237, 242, 247, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-gray-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #edf2f7 !important;
    color: rgba(237, 242, 247, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-gray-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e2e8f0 !important;
    color: rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-gray-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e2e8f0 !important;
    color: rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-gray-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #cbd5e0 !important;
    color: rgba(203, 213, 224, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-gray-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #cbd5e0 !important;
    color: rgba(203, 213, 224, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-gray-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #a0aec0 !important;
    color: rgba(160, 174, 192, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-gray-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #a0aec0 !important;
    color: rgba(160, 174, 192, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-gray-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #718096 !important;
    color: rgba(113, 128, 150, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-gray-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #718096 !important;
    color: rgba(113, 128, 150, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-gray-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #4a5568 !important;
    color: rgba(74, 85, 104, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-gray-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #4a5568 !important;
    color: rgba(74, 85, 104, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-gray-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2d3748 !important;
    color: rgba(45, 55, 72, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-gray-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2d3748 !important;
    color: rgba(45, 55, 72, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-gray-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #1a202c !important;
    color: rgba(26, 32, 44, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-gray-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #1a202c !important;
    color: rgba(26, 32, 44, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-red-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff5f5 !important;
    color: rgba(255, 245, 245, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-red-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff5f5 !important;
    color: rgba(255, 245, 245, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-red-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fed7d7 !important;
    color: rgba(254, 215, 215, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-red-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fed7d7 !important;
    color: rgba(254, 215, 215, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-red-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #feb2b2 !important;
    color: rgba(254, 178, 178, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-red-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #feb2b2 !important;
    color: rgba(254, 178, 178, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-red-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fc8181 !important;
    color: rgba(252, 129, 129, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-red-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fc8181 !important;
    color: rgba(252, 129, 129, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-red-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f56565 !important;
    color: rgba(245, 101, 101, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-red-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f56565 !important;
    color: rgba(245, 101, 101, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-red-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e53e3e !important;
    color: rgba(229, 62, 62, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-red-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e53e3e !important;
    color: rgba(229, 62, 62, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-red-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #c53030 !important;
    color: rgba(197, 48, 48, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-red-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #c53030 !important;
    color: rgba(197, 48, 48, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-red-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #9b2c2c !important;
    color: rgba(155, 44, 44, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-red-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #9b2c2c !important;
    color: rgba(155, 44, 44, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-red-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #742a2a !important;
    color: rgba(116, 42, 42, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-red-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #742a2a !important;
    color: rgba(116, 42, 42, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-orange-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fffaf0 !important;
    color: rgba(255, 250, 240, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-orange-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fffaf0 !important;
    color: rgba(255, 250, 240, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-orange-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #feebc8 !important;
    color: rgba(254, 235, 200, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-orange-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #feebc8 !important;
    color: rgba(254, 235, 200, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-orange-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fbd38d !important;
    color: rgba(251, 211, 141, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-orange-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fbd38d !important;
    color: rgba(251, 211, 141, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-orange-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f6ad55 !important;
    color: rgba(246, 173, 85, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-orange-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f6ad55 !important;
    color: rgba(246, 173, 85, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-orange-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ed8936 !important;
    color: rgba(237, 137, 54, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-orange-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ed8936 !important;
    color: rgba(237, 137, 54, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-orange-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #dd6b20 !important;
    color: rgba(221, 107, 32, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-orange-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #dd6b20 !important;
    color: rgba(221, 107, 32, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-orange-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #c05621 !important;
    color: rgba(192, 86, 33, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-orange-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #c05621 !important;
    color: rgba(192, 86, 33, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-orange-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #9c4221 !important;
    color: rgba(156, 66, 33, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-orange-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #9c4221 !important;
    color: rgba(156, 66, 33, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-orange-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #7b341e !important;
    color: rgba(123, 52, 30, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-orange-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #7b341e !important;
    color: rgba(123, 52, 30, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-yellow-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fffff0 !important;
    color: rgba(255, 255, 240, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-yellow-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fffff0 !important;
    color: rgba(255, 255, 240, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-yellow-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fefcbf !important;
    color: rgba(254, 252, 191, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-yellow-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fefcbf !important;
    color: rgba(254, 252, 191, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-yellow-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #faf089 !important;
    color: rgba(250, 240, 137, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-yellow-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #faf089 !important;
    color: rgba(250, 240, 137, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-yellow-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f6e05e !important;
    color: rgba(246, 224, 94, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-yellow-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f6e05e !important;
    color: rgba(246, 224, 94, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-yellow-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ecc94b !important;
    color: rgba(236, 201, 75, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-yellow-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ecc94b !important;
    color: rgba(236, 201, 75, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-yellow-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #d69e2e !important;
    color: rgba(214, 158, 46, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-yellow-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #d69e2e !important;
    color: rgba(214, 158, 46, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-yellow-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #b7791f !important;
    color: rgba(183, 121, 31, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-yellow-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #b7791f !important;
    color: rgba(183, 121, 31, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-yellow-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #975a16 !important;
    color: rgba(151, 90, 22, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-yellow-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #975a16 !important;
    color: rgba(151, 90, 22, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-yellow-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #744210 !important;
    color: rgba(116, 66, 16, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-yellow-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #744210 !important;
    color: rgba(116, 66, 16, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-green-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f0fff4 !important;
    color: rgba(240, 255, 244, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-green-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f0fff4 !important;
    color: rgba(240, 255, 244, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-green-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #c6f6d5 !important;
    color: rgba(198, 246, 213, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-green-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #c6f6d5 !important;
    color: rgba(198, 246, 213, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-green-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #9ae6b4 !important;
    color: rgba(154, 230, 180, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-green-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #9ae6b4 !important;
    color: rgba(154, 230, 180, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-green-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #68d391 !important;
    color: rgba(104, 211, 145, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-green-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #68d391 !important;
    color: rgba(104, 211, 145, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-green-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #48bb78 !important;
    color: rgba(72, 187, 120, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-green-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #48bb78 !important;
    color: rgba(72, 187, 120, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-green-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #38a169 !important;
    color: rgba(56, 161, 105, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-green-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #38a169 !important;
    color: rgba(56, 161, 105, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-green-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2f855a !important;
    color: rgba(47, 133, 90, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-green-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2f855a !important;
    color: rgba(47, 133, 90, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-green-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #276749 !important;
    color: rgba(39, 103, 73, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-green-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #276749 !important;
    color: rgba(39, 103, 73, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-green-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #22543d !important;
    color: rgba(34, 84, 61, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-green-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #22543d !important;
    color: rgba(34, 84, 61, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-teal-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e6fffa !important;
    color: rgba(230, 255, 250, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-teal-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e6fffa !important;
    color: rgba(230, 255, 250, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-teal-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #b2f5ea !important;
    color: rgba(178, 245, 234, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-teal-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #b2f5ea !important;
    color: rgba(178, 245, 234, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-teal-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #81e6d9 !important;
    color: rgba(129, 230, 217, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-teal-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #81e6d9 !important;
    color: rgba(129, 230, 217, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-teal-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #4fd1c5 !important;
    color: rgba(79, 209, 197, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-teal-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #4fd1c5 !important;
    color: rgba(79, 209, 197, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-teal-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #38b2ac !important;
    color: rgba(56, 178, 172, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-teal-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #38b2ac !important;
    color: rgba(56, 178, 172, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-teal-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #319795 !important;
    color: rgba(49, 151, 149, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-teal-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #319795 !important;
    color: rgba(49, 151, 149, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-teal-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2c7a7b !important;
    color: rgba(44, 122, 123, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-teal-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2c7a7b !important;
    color: rgba(44, 122, 123, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-teal-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #285e61 !important;
    color: rgba(40, 94, 97, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-teal-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #285e61 !important;
    color: rgba(40, 94, 97, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-teal-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #234e52 !important;
    color: rgba(35, 78, 82, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-teal-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #234e52 !important;
    color: rgba(35, 78, 82, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-blue-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ebf8ff !important;
    color: rgba(235, 248, 255, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-blue-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ebf8ff !important;
    color: rgba(235, 248, 255, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-blue-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #bee3f8 !important;
    color: rgba(190, 227, 248, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-blue-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #bee3f8 !important;
    color: rgba(190, 227, 248, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-blue-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #90cdf4 !important;
    color: rgba(144, 205, 244, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-blue-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #90cdf4 !important;
    color: rgba(144, 205, 244, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-blue-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #63b3ed !important;
    color: rgba(99, 179, 237, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-blue-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #63b3ed !important;
    color: rgba(99, 179, 237, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-blue-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #4299e1 !important;
    color: rgba(66, 153, 225, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-blue-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #4299e1 !important;
    color: rgba(66, 153, 225, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-blue-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #3182ce !important;
    color: rgba(49, 130, 206, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-blue-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #3182ce !important;
    color: rgba(49, 130, 206, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-blue-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2b6cb0 !important;
    color: rgba(43, 108, 176, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-blue-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2b6cb0 !important;
    color: rgba(43, 108, 176, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-blue-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2c5282 !important;
    color: rgba(44, 82, 130, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-blue-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2c5282 !important;
    color: rgba(44, 82, 130, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-blue-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2a4365 !important;
    color: rgba(42, 67, 101, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-blue-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2a4365 !important;
    color: rgba(42, 67, 101, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-indigo-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ebf4ff !important;
    color: rgba(235, 244, 255, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-indigo-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ebf4ff !important;
    color: rgba(235, 244, 255, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-indigo-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #c3dafe !important;
    color: rgba(195, 218, 254, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-indigo-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #c3dafe !important;
    color: rgba(195, 218, 254, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-indigo-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #a3bffa !important;
    color: rgba(163, 191, 250, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-indigo-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #a3bffa !important;
    color: rgba(163, 191, 250, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-indigo-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #7f9cf5 !important;
    color: rgba(127, 156, 245, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-indigo-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #7f9cf5 !important;
    color: rgba(127, 156, 245, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-indigo-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #667eea !important;
    color: rgba(102, 126, 234, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-indigo-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #667eea !important;
    color: rgba(102, 126, 234, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-indigo-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #5a67d8 !important;
    color: rgba(90, 103, 216, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-indigo-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #5a67d8 !important;
    color: rgba(90, 103, 216, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-indigo-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #4c51bf !important;
    color: rgba(76, 81, 191, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-indigo-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #4c51bf !important;
    color: rgba(76, 81, 191, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-indigo-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #434190 !important;
    color: rgba(67, 65, 144, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-indigo-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #434190 !important;
    color: rgba(67, 65, 144, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-indigo-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #3c366b !important;
    color: rgba(60, 54, 107, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-indigo-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #3c366b !important;
    color: rgba(60, 54, 107, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-purple-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #faf5ff !important;
    color: rgba(250, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-purple-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #faf5ff !important;
    color: rgba(250, 245, 255, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-purple-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e9d8fd !important;
    color: rgba(233, 216, 253, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-purple-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e9d8fd !important;
    color: rgba(233, 216, 253, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-purple-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #d6bcfa !important;
    color: rgba(214, 188, 250, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-purple-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #d6bcfa !important;
    color: rgba(214, 188, 250, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-purple-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #b794f4 !important;
    color: rgba(183, 148, 244, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-purple-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #b794f4 !important;
    color: rgba(183, 148, 244, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-purple-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #9f7aea !important;
    color: rgba(159, 122, 234, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-purple-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #9f7aea !important;
    color: rgba(159, 122, 234, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-purple-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #805ad5 !important;
    color: rgba(128, 90, 213, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-purple-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #805ad5 !important;
    color: rgba(128, 90, 213, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-purple-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #6b46c1 !important;
    color: rgba(107, 70, 193, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-purple-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #6b46c1 !important;
    color: rgba(107, 70, 193, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-purple-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #553c9a !important;
    color: rgba(85, 60, 154, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-purple-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #553c9a !important;
    color: rgba(85, 60, 154, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-purple-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #44337a !important;
    color: rgba(68, 51, 122, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-purple-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #44337a !important;
    color: rgba(68, 51, 122, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-pink-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff5f7 !important;
    color: rgba(255, 245, 247, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-pink-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff5f7 !important;
    color: rgba(255, 245, 247, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-pink-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fed7e2 !important;
    color: rgba(254, 215, 226, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-pink-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fed7e2 !important;
    color: rgba(254, 215, 226, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-pink-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fbb6ce !important;
    color: rgba(251, 182, 206, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-pink-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fbb6ce !important;
    color: rgba(251, 182, 206, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-pink-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f687b3 !important;
    color: rgba(246, 135, 179, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-pink-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f687b3 !important;
    color: rgba(246, 135, 179, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-pink-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ed64a6 !important;
    color: rgba(237, 100, 166, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-pink-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ed64a6 !important;
    color: rgba(237, 100, 166, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-pink-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #d53f8c !important;
    color: rgba(213, 63, 140, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-pink-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #d53f8c !important;
    color: rgba(213, 63, 140, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-pink-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #b83280 !important;
    color: rgba(184, 50, 128, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-pink-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #b83280 !important;
    color: rgba(184, 50, 128, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-pink-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #97266d !important;
    color: rgba(151, 38, 109, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-pink-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #97266d !important;
    color: rgba(151, 38, 109, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-pink-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #702459 !important;
    color: rgba(112, 36, 89, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-pink-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #702459 !important;
    color: rgba(112, 36, 89, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-ui-gray-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f1f1f1 !important;
    color: rgba(241, 241, 241, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-ui-gray-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f1f1f1 !important;
    color: rgba(241, 241, 241, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-ui-brown-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f3ecdc !important;
    color: rgba(243, 236, 220, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-ui-brown-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f3ecdc !important;
    color: rgba(243, 236, 220, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-ui-brown-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e8e0c9 !important;
    color: rgba(232, 224, 201, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-ui-brown-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e8e0c9 !important;
    color: rgba(232, 224, 201, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-ui-brown-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #d0c095 !important;
    color: rgba(208, 192, 149, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-ui-brown-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #d0c095 !important;
    color: rgba(208, 192, 149, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-ui-brown-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #bd6005 !important;
    color: rgba(189, 96, 5, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-ui-brown-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #bd6005 !important;
    color: rgba(189, 96, 5, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-ui-green-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #aac74c !important;
    color: rgba(170, 199, 76, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-ui-green-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #aac74c !important;
    color: rgba(170, 199, 76, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-ui-green-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #71893e !important;
    color: rgba(113, 137, 62, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-ui-green-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #71893e !important;
    color: rgba(113, 137, 62, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-ui-orange-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e27212 !important;
    color: rgba(226, 114, 18, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-ui-orange-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e27212 !important;
    color: rgba(226, 114, 18, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-facebook:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #3b5998 !important;
    color: rgba(59, 89, 152, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-facebook:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #3b5998 !important;
    color: rgba(59, 89, 152, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-twitter:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #00acee !important;
    color: rgba(0, 172, 238, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-twitter:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #00acee !important;
    color: rgba(0, 172, 238, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-twitch:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #6441a5 !important;
    color: rgba(100, 65, 165, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-twitch:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #6441a5 !important;
    color: rgba(100, 65, 165, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-youtube:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #FF0000 !important;
    color: rgba(255, 0, 0, var(--placeholder-opacity)) !important;
  }

  .md\:focus\:cl-placeholder-youtube:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #FF0000 !important;
    color: rgba(255, 0, 0, var(--placeholder-opacity)) !important;
  }

  .md\:cl-placeholder-opacity-0::-moz-placeholder {
    --placeholder-opacity: 0 !important;
  }

  .md\:cl-placeholder-opacity-0::placeholder {
    --placeholder-opacity: 0 !important;
  }

  .md\:cl-placeholder-opacity-25::-moz-placeholder {
    --placeholder-opacity: 0.25 !important;
  }

  .md\:cl-placeholder-opacity-25::placeholder {
    --placeholder-opacity: 0.25 !important;
  }

  .md\:cl-placeholder-opacity-50::-moz-placeholder {
    --placeholder-opacity: 0.5 !important;
  }

  .md\:cl-placeholder-opacity-50::placeholder {
    --placeholder-opacity: 0.5 !important;
  }

  .md\:cl-placeholder-opacity-75::-moz-placeholder {
    --placeholder-opacity: 0.75 !important;
  }

  .md\:cl-placeholder-opacity-75::placeholder {
    --placeholder-opacity: 0.75 !important;
  }

  .md\:cl-placeholder-opacity-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
  }

  .md\:cl-placeholder-opacity-100::placeholder {
    --placeholder-opacity: 1 !important;
  }

  .md\:focus\:cl-placeholder-opacity-0:focus::-moz-placeholder {
    --placeholder-opacity: 0 !important;
  }

  .md\:focus\:cl-placeholder-opacity-0:focus::placeholder {
    --placeholder-opacity: 0 !important;
  }

  .md\:focus\:cl-placeholder-opacity-25:focus::-moz-placeholder {
    --placeholder-opacity: 0.25 !important;
  }

  .md\:focus\:cl-placeholder-opacity-25:focus::placeholder {
    --placeholder-opacity: 0.25 !important;
  }

  .md\:focus\:cl-placeholder-opacity-50:focus::-moz-placeholder {
    --placeholder-opacity: 0.5 !important;
  }

  .md\:focus\:cl-placeholder-opacity-50:focus::placeholder {
    --placeholder-opacity: 0.5 !important;
  }

  .md\:focus\:cl-placeholder-opacity-75:focus::-moz-placeholder {
    --placeholder-opacity: 0.75 !important;
  }

  .md\:focus\:cl-placeholder-opacity-75:focus::placeholder {
    --placeholder-opacity: 0.75 !important;
  }

  .md\:focus\:cl-placeholder-opacity-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
  }

  .md\:focus\:cl-placeholder-opacity-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
  }

  .md\:cl-pointer-events-none {
    pointer-events: none !important;
  }

  .md\:cl-pointer-events-auto {
    pointer-events: auto !important;
  }

  .md\:cl-static {
    position: static !important;
  }

  .md\:cl-fixed {
    position: fixed !important;
  }

  .md\:cl-absolute {
    position: absolute !important;
  }

  .md\:cl-relative {
    position: relative !important;
  }

  .md\:cl-sticky {
    position: sticky !important;
  }

  .md\:cl-inset-0 {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
  }

  .md\:cl-inset-auto {
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }

  .md\:cl-inset-y-0 {
    top: 0 !important;
    bottom: 0 !important;
  }

  .md\:cl-inset-x-0 {
    right: 0 !important;
    left: 0 !important;
  }

  .md\:cl-inset-y-auto {
    top: auto !important;
    bottom: auto !important;
  }

  .md\:cl-inset-x-auto {
    right: auto !important;
    left: auto !important;
  }

  .md\:cl-top-0 {
    top: 0 !important;
  }

  .md\:cl-right-0 {
    right: 0 !important;
  }

  .md\:cl-bottom-0 {
    bottom: 0 !important;
  }

  .md\:cl-left-0 {
    left: 0 !important;
  }

  .md\:cl-top-auto {
    top: auto !important;
  }

  .md\:cl-right-auto {
    right: auto !important;
  }

  .md\:cl-bottom-auto {
    bottom: auto !important;
  }

  .md\:cl-left-auto {
    left: auto !important;
  }

  .md\:cl-resize-none {
    resize: none !important;
  }

  .md\:cl-resize-y {
    resize: vertical !important;
  }

  .md\:cl-resize-x {
    resize: horizontal !important;
  }

  .md\:cl-resize {
    resize: both !important;
  }

  .md\:cl-shadow-xs {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  }

  .md\:cl-shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .md\:cl-shadow {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .md\:cl-shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  }

  .md\:cl-shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  }

  .md\:cl-shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  }

  .md\:cl-shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  }

  .md\:cl-shadow-inner {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .md\:cl-shadow-outline {
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5) !important;
  }

  .md\:cl-shadow-none {
    box-shadow: none !important;
  }

  .md\:cl-shadow-ui-wrapper {
    box-shadow: 2px 0 4px 1px #4b4b4b42 !important;
  }

  .md\:cl-shadow-ui-btn-lg {
    box-shadow: 0 8px 0 0 #c9c3b0 !important;
  }

  .md\:cl-shadow-ui-btn {
    box-shadow: 0 5px 0 0 #c9c3b0 !important;
  }

  .md\:cl-shadow-ui-leaderboard {
    box-shadow: 0 7px 0 0 #a76d28 !important;
  }

  .md\:cl-shadow-ui-leaderboard-normal {
    box-shadow: 0 5px 0 0 #c3c3c3 !important;
  }

  .md\:cl-shadow-ui-divider-l {
    box-shadow: -1px 0 0 0 #b5a881 !important;
  }

  .md\:hover\:cl-shadow-xs:hover {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  }

  .md\:hover\:cl-shadow-sm:hover {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .md\:hover\:cl-shadow:hover {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .md\:hover\:cl-shadow-md:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  }

  .md\:hover\:cl-shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  }

  .md\:hover\:cl-shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  }

  .md\:hover\:cl-shadow-2xl:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  }

  .md\:hover\:cl-shadow-inner:hover {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .md\:hover\:cl-shadow-outline:hover {
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5) !important;
  }

  .md\:hover\:cl-shadow-none:hover {
    box-shadow: none !important;
  }

  .md\:hover\:cl-shadow-ui-wrapper:hover {
    box-shadow: 2px 0 4px 1px #4b4b4b42 !important;
  }

  .md\:hover\:cl-shadow-ui-btn-lg:hover {
    box-shadow: 0 8px 0 0 #c9c3b0 !important;
  }

  .md\:hover\:cl-shadow-ui-btn:hover {
    box-shadow: 0 5px 0 0 #c9c3b0 !important;
  }

  .md\:hover\:cl-shadow-ui-leaderboard:hover {
    box-shadow: 0 7px 0 0 #a76d28 !important;
  }

  .md\:hover\:cl-shadow-ui-leaderboard-normal:hover {
    box-shadow: 0 5px 0 0 #c3c3c3 !important;
  }

  .md\:hover\:cl-shadow-ui-divider-l:hover {
    box-shadow: -1px 0 0 0 #b5a881 !important;
  }

  .md\:focus\:cl-shadow-xs:focus {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  }

  .md\:focus\:cl-shadow-sm:focus {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .md\:focus\:cl-shadow:focus {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .md\:focus\:cl-shadow-md:focus {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  }

  .md\:focus\:cl-shadow-lg:focus {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  }

  .md\:focus\:cl-shadow-xl:focus {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  }

  .md\:focus\:cl-shadow-2xl:focus {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  }

  .md\:focus\:cl-shadow-inner:focus {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .md\:focus\:cl-shadow-outline:focus {
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5) !important;
  }

  .md\:focus\:cl-shadow-none:focus {
    box-shadow: none !important;
  }

  .md\:focus\:cl-shadow-ui-wrapper:focus {
    box-shadow: 2px 0 4px 1px #4b4b4b42 !important;
  }

  .md\:focus\:cl-shadow-ui-btn-lg:focus {
    box-shadow: 0 8px 0 0 #c9c3b0 !important;
  }

  .md\:focus\:cl-shadow-ui-btn:focus {
    box-shadow: 0 5px 0 0 #c9c3b0 !important;
  }

  .md\:focus\:cl-shadow-ui-leaderboard:focus {
    box-shadow: 0 7px 0 0 #a76d28 !important;
  }

  .md\:focus\:cl-shadow-ui-leaderboard-normal:focus {
    box-shadow: 0 5px 0 0 #c3c3c3 !important;
  }

  .md\:focus\:cl-shadow-ui-divider-l:focus {
    box-shadow: -1px 0 0 0 #b5a881 !important;
  }

  .md\:active\:cl-shadow-xs:active {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  }

  .md\:active\:cl-shadow-sm:active {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .md\:active\:cl-shadow:active {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .md\:active\:cl-shadow-md:active {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  }

  .md\:active\:cl-shadow-lg:active {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  }

  .md\:active\:cl-shadow-xl:active {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  }

  .md\:active\:cl-shadow-2xl:active {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  }

  .md\:active\:cl-shadow-inner:active {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .md\:active\:cl-shadow-outline:active {
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5) !important;
  }

  .md\:active\:cl-shadow-none:active {
    box-shadow: none !important;
  }

  .md\:active\:cl-shadow-ui-wrapper:active {
    box-shadow: 2px 0 4px 1px #4b4b4b42 !important;
  }

  .md\:active\:cl-shadow-ui-btn-lg:active {
    box-shadow: 0 8px 0 0 #c9c3b0 !important;
  }

  .md\:active\:cl-shadow-ui-btn:active {
    box-shadow: 0 5px 0 0 #c9c3b0 !important;
  }

  .md\:active\:cl-shadow-ui-leaderboard:active {
    box-shadow: 0 7px 0 0 #a76d28 !important;
  }

  .md\:active\:cl-shadow-ui-leaderboard-normal:active {
    box-shadow: 0 5px 0 0 #c3c3c3 !important;
  }

  .md\:active\:cl-shadow-ui-divider-l:active {
    box-shadow: -1px 0 0 0 #b5a881 !important;
  }

  .md\:cl-fill-current {
    fill: currentColor !important;
  }

  .md\:cl-stroke-current {
    stroke: currentColor !important;
  }

  .md\:cl-stroke-0 {
    stroke-width: 0 !important;
  }

  .md\:cl-stroke-1 {
    stroke-width: 1 !important;
  }

  .md\:cl-stroke-2 {
    stroke-width: 2 !important;
  }

  .md\:cl-table-auto {
    table-layout: auto !important;
  }

  .md\:cl-table-fixed {
    table-layout: fixed !important;
  }

  .md\:cl-text-left {
    text-align: left !important;
  }

  .md\:cl-text-center {
    text-align: center !important;
  }

  .md\:cl-text-right {
    text-align: right !important;
  }

  .md\:cl-text-justify {
    text-align: justify !important;
  }

  .md\:cl-text-transparent {
    color: transparent !important;
  }

  .md\:cl-text-current {
    color: currentColor !important;
  }

  .md\:cl-text-black {
    --text-opacity: 1 !important;
    color: #000 !important;
    color: rgba(0, 0, 0, var(--text-opacity)) !important;
  }

  .md\:cl-text-white {
    --text-opacity: 1 !important;
    color: #fff !important;
    color: rgba(255, 255, 255, var(--text-opacity)) !important;
  }

  .md\:cl-text-gray-100 {
    --text-opacity: 1 !important;
    color: #f7fafc !important;
    color: rgba(247, 250, 252, var(--text-opacity)) !important;
  }

  .md\:cl-text-gray-200 {
    --text-opacity: 1 !important;
    color: #edf2f7 !important;
    color: rgba(237, 242, 247, var(--text-opacity)) !important;
  }

  .md\:cl-text-gray-300 {
    --text-opacity: 1 !important;
    color: #e2e8f0 !important;
    color: rgba(226, 232, 240, var(--text-opacity)) !important;
  }

  .md\:cl-text-gray-400 {
    --text-opacity: 1 !important;
    color: #cbd5e0 !important;
    color: rgba(203, 213, 224, var(--text-opacity)) !important;
  }

  .md\:cl-text-gray-500 {
    --text-opacity: 1 !important;
    color: #a0aec0 !important;
    color: rgba(160, 174, 192, var(--text-opacity)) !important;
  }

  .md\:cl-text-gray-600 {
    --text-opacity: 1 !important;
    color: #718096 !important;
    color: rgba(113, 128, 150, var(--text-opacity)) !important;
  }

  .md\:cl-text-gray-700 {
    --text-opacity: 1 !important;
    color: #4a5568 !important;
    color: rgba(74, 85, 104, var(--text-opacity)) !important;
  }

  .md\:cl-text-gray-800 {
    --text-opacity: 1 !important;
    color: #2d3748 !important;
    color: rgba(45, 55, 72, var(--text-opacity)) !important;
  }

  .md\:cl-text-gray-900 {
    --text-opacity: 1 !important;
    color: #1a202c !important;
    color: rgba(26, 32, 44, var(--text-opacity)) !important;
  }

  .md\:cl-text-red-100 {
    --text-opacity: 1 !important;
    color: #fff5f5 !important;
    color: rgba(255, 245, 245, var(--text-opacity)) !important;
  }

  .md\:cl-text-red-200 {
    --text-opacity: 1 !important;
    color: #fed7d7 !important;
    color: rgba(254, 215, 215, var(--text-opacity)) !important;
  }

  .md\:cl-text-red-300 {
    --text-opacity: 1 !important;
    color: #feb2b2 !important;
    color: rgba(254, 178, 178, var(--text-opacity)) !important;
  }

  .md\:cl-text-red-400 {
    --text-opacity: 1 !important;
    color: #fc8181 !important;
    color: rgba(252, 129, 129, var(--text-opacity)) !important;
  }

  .md\:cl-text-red-500 {
    --text-opacity: 1 !important;
    color: #f56565 !important;
    color: rgba(245, 101, 101, var(--text-opacity)) !important;
  }

  .md\:cl-text-red-600 {
    --text-opacity: 1 !important;
    color: #e53e3e !important;
    color: rgba(229, 62, 62, var(--text-opacity)) !important;
  }

  .md\:cl-text-red-700 {
    --text-opacity: 1 !important;
    color: #c53030 !important;
    color: rgba(197, 48, 48, var(--text-opacity)) !important;
  }

  .md\:cl-text-red-800 {
    --text-opacity: 1 !important;
    color: #9b2c2c !important;
    color: rgba(155, 44, 44, var(--text-opacity)) !important;
  }

  .md\:cl-text-red-900 {
    --text-opacity: 1 !important;
    color: #742a2a !important;
    color: rgba(116, 42, 42, var(--text-opacity)) !important;
  }

  .md\:cl-text-orange-100 {
    --text-opacity: 1 !important;
    color: #fffaf0 !important;
    color: rgba(255, 250, 240, var(--text-opacity)) !important;
  }

  .md\:cl-text-orange-200 {
    --text-opacity: 1 !important;
    color: #feebc8 !important;
    color: rgba(254, 235, 200, var(--text-opacity)) !important;
  }

  .md\:cl-text-orange-300 {
    --text-opacity: 1 !important;
    color: #fbd38d !important;
    color: rgba(251, 211, 141, var(--text-opacity)) !important;
  }

  .md\:cl-text-orange-400 {
    --text-opacity: 1 !important;
    color: #f6ad55 !important;
    color: rgba(246, 173, 85, var(--text-opacity)) !important;
  }

  .md\:cl-text-orange-500 {
    --text-opacity: 1 !important;
    color: #ed8936 !important;
    color: rgba(237, 137, 54, var(--text-opacity)) !important;
  }

  .md\:cl-text-orange-600 {
    --text-opacity: 1 !important;
    color: #dd6b20 !important;
    color: rgba(221, 107, 32, var(--text-opacity)) !important;
  }

  .md\:cl-text-orange-700 {
    --text-opacity: 1 !important;
    color: #c05621 !important;
    color: rgba(192, 86, 33, var(--text-opacity)) !important;
  }

  .md\:cl-text-orange-800 {
    --text-opacity: 1 !important;
    color: #9c4221 !important;
    color: rgba(156, 66, 33, var(--text-opacity)) !important;
  }

  .md\:cl-text-orange-900 {
    --text-opacity: 1 !important;
    color: #7b341e !important;
    color: rgba(123, 52, 30, var(--text-opacity)) !important;
  }

  .md\:cl-text-yellow-100 {
    --text-opacity: 1 !important;
    color: #fffff0 !important;
    color: rgba(255, 255, 240, var(--text-opacity)) !important;
  }

  .md\:cl-text-yellow-200 {
    --text-opacity: 1 !important;
    color: #fefcbf !important;
    color: rgba(254, 252, 191, var(--text-opacity)) !important;
  }

  .md\:cl-text-yellow-300 {
    --text-opacity: 1 !important;
    color: #faf089 !important;
    color: rgba(250, 240, 137, var(--text-opacity)) !important;
  }

  .md\:cl-text-yellow-400 {
    --text-opacity: 1 !important;
    color: #f6e05e !important;
    color: rgba(246, 224, 94, var(--text-opacity)) !important;
  }

  .md\:cl-text-yellow-500 {
    --text-opacity: 1 !important;
    color: #ecc94b !important;
    color: rgba(236, 201, 75, var(--text-opacity)) !important;
  }

  .md\:cl-text-yellow-600 {
    --text-opacity: 1 !important;
    color: #d69e2e !important;
    color: rgba(214, 158, 46, var(--text-opacity)) !important;
  }

  .md\:cl-text-yellow-700 {
    --text-opacity: 1 !important;
    color: #b7791f !important;
    color: rgba(183, 121, 31, var(--text-opacity)) !important;
  }

  .md\:cl-text-yellow-800 {
    --text-opacity: 1 !important;
    color: #975a16 !important;
    color: rgba(151, 90, 22, var(--text-opacity)) !important;
  }

  .md\:cl-text-yellow-900 {
    --text-opacity: 1 !important;
    color: #744210 !important;
    color: rgba(116, 66, 16, var(--text-opacity)) !important;
  }

  .md\:cl-text-green-100 {
    --text-opacity: 1 !important;
    color: #f0fff4 !important;
    color: rgba(240, 255, 244, var(--text-opacity)) !important;
  }

  .md\:cl-text-green-200 {
    --text-opacity: 1 !important;
    color: #c6f6d5 !important;
    color: rgba(198, 246, 213, var(--text-opacity)) !important;
  }

  .md\:cl-text-green-300 {
    --text-opacity: 1 !important;
    color: #9ae6b4 !important;
    color: rgba(154, 230, 180, var(--text-opacity)) !important;
  }

  .md\:cl-text-green-400 {
    --text-opacity: 1 !important;
    color: #68d391 !important;
    color: rgba(104, 211, 145, var(--text-opacity)) !important;
  }

  .md\:cl-text-green-500 {
    --text-opacity: 1 !important;
    color: #48bb78 !important;
    color: rgba(72, 187, 120, var(--text-opacity)) !important;
  }

  .md\:cl-text-green-600 {
    --text-opacity: 1 !important;
    color: #38a169 !important;
    color: rgba(56, 161, 105, var(--text-opacity)) !important;
  }

  .md\:cl-text-green-700 {
    --text-opacity: 1 !important;
    color: #2f855a !important;
    color: rgba(47, 133, 90, var(--text-opacity)) !important;
  }

  .md\:cl-text-green-800 {
    --text-opacity: 1 !important;
    color: #276749 !important;
    color: rgba(39, 103, 73, var(--text-opacity)) !important;
  }

  .md\:cl-text-green-900 {
    --text-opacity: 1 !important;
    color: #22543d !important;
    color: rgba(34, 84, 61, var(--text-opacity)) !important;
  }

  .md\:cl-text-teal-100 {
    --text-opacity: 1 !important;
    color: #e6fffa !important;
    color: rgba(230, 255, 250, var(--text-opacity)) !important;
  }

  .md\:cl-text-teal-200 {
    --text-opacity: 1 !important;
    color: #b2f5ea !important;
    color: rgba(178, 245, 234, var(--text-opacity)) !important;
  }

  .md\:cl-text-teal-300 {
    --text-opacity: 1 !important;
    color: #81e6d9 !important;
    color: rgba(129, 230, 217, var(--text-opacity)) !important;
  }

  .md\:cl-text-teal-400 {
    --text-opacity: 1 !important;
    color: #4fd1c5 !important;
    color: rgba(79, 209, 197, var(--text-opacity)) !important;
  }

  .md\:cl-text-teal-500 {
    --text-opacity: 1 !important;
    color: #38b2ac !important;
    color: rgba(56, 178, 172, var(--text-opacity)) !important;
  }

  .md\:cl-text-teal-600 {
    --text-opacity: 1 !important;
    color: #319795 !important;
    color: rgba(49, 151, 149, var(--text-opacity)) !important;
  }

  .md\:cl-text-teal-700 {
    --text-opacity: 1 !important;
    color: #2c7a7b !important;
    color: rgba(44, 122, 123, var(--text-opacity)) !important;
  }

  .md\:cl-text-teal-800 {
    --text-opacity: 1 !important;
    color: #285e61 !important;
    color: rgba(40, 94, 97, var(--text-opacity)) !important;
  }

  .md\:cl-text-teal-900 {
    --text-opacity: 1 !important;
    color: #234e52 !important;
    color: rgba(35, 78, 82, var(--text-opacity)) !important;
  }

  .md\:cl-text-blue-100 {
    --text-opacity: 1 !important;
    color: #ebf8ff !important;
    color: rgba(235, 248, 255, var(--text-opacity)) !important;
  }

  .md\:cl-text-blue-200 {
    --text-opacity: 1 !important;
    color: #bee3f8 !important;
    color: rgba(190, 227, 248, var(--text-opacity)) !important;
  }

  .md\:cl-text-blue-300 {
    --text-opacity: 1 !important;
    color: #90cdf4 !important;
    color: rgba(144, 205, 244, var(--text-opacity)) !important;
  }

  .md\:cl-text-blue-400 {
    --text-opacity: 1 !important;
    color: #63b3ed !important;
    color: rgba(99, 179, 237, var(--text-opacity)) !important;
  }

  .md\:cl-text-blue-500 {
    --text-opacity: 1 !important;
    color: #4299e1 !important;
    color: rgba(66, 153, 225, var(--text-opacity)) !important;
  }

  .md\:cl-text-blue-600 {
    --text-opacity: 1 !important;
    color: #3182ce !important;
    color: rgba(49, 130, 206, var(--text-opacity)) !important;
  }

  .md\:cl-text-blue-700 {
    --text-opacity: 1 !important;
    color: #2b6cb0 !important;
    color: rgba(43, 108, 176, var(--text-opacity)) !important;
  }

  .md\:cl-text-blue-800 {
    --text-opacity: 1 !important;
    color: #2c5282 !important;
    color: rgba(44, 82, 130, var(--text-opacity)) !important;
  }

  .md\:cl-text-blue-900 {
    --text-opacity: 1 !important;
    color: #2a4365 !important;
    color: rgba(42, 67, 101, var(--text-opacity)) !important;
  }

  .md\:cl-text-indigo-100 {
    --text-opacity: 1 !important;
    color: #ebf4ff !important;
    color: rgba(235, 244, 255, var(--text-opacity)) !important;
  }

  .md\:cl-text-indigo-200 {
    --text-opacity: 1 !important;
    color: #c3dafe !important;
    color: rgba(195, 218, 254, var(--text-opacity)) !important;
  }

  .md\:cl-text-indigo-300 {
    --text-opacity: 1 !important;
    color: #a3bffa !important;
    color: rgba(163, 191, 250, var(--text-opacity)) !important;
  }

  .md\:cl-text-indigo-400 {
    --text-opacity: 1 !important;
    color: #7f9cf5 !important;
    color: rgba(127, 156, 245, var(--text-opacity)) !important;
  }

  .md\:cl-text-indigo-500 {
    --text-opacity: 1 !important;
    color: #667eea !important;
    color: rgba(102, 126, 234, var(--text-opacity)) !important;
  }

  .md\:cl-text-indigo-600 {
    --text-opacity: 1 !important;
    color: #5a67d8 !important;
    color: rgba(90, 103, 216, var(--text-opacity)) !important;
  }

  .md\:cl-text-indigo-700 {
    --text-opacity: 1 !important;
    color: #4c51bf !important;
    color: rgba(76, 81, 191, var(--text-opacity)) !important;
  }

  .md\:cl-text-indigo-800 {
    --text-opacity: 1 !important;
    color: #434190 !important;
    color: rgba(67, 65, 144, var(--text-opacity)) !important;
  }

  .md\:cl-text-indigo-900 {
    --text-opacity: 1 !important;
    color: #3c366b !important;
    color: rgba(60, 54, 107, var(--text-opacity)) !important;
  }

  .md\:cl-text-purple-100 {
    --text-opacity: 1 !important;
    color: #faf5ff !important;
    color: rgba(250, 245, 255, var(--text-opacity)) !important;
  }

  .md\:cl-text-purple-200 {
    --text-opacity: 1 !important;
    color: #e9d8fd !important;
    color: rgba(233, 216, 253, var(--text-opacity)) !important;
  }

  .md\:cl-text-purple-300 {
    --text-opacity: 1 !important;
    color: #d6bcfa !important;
    color: rgba(214, 188, 250, var(--text-opacity)) !important;
  }

  .md\:cl-text-purple-400 {
    --text-opacity: 1 !important;
    color: #b794f4 !important;
    color: rgba(183, 148, 244, var(--text-opacity)) !important;
  }

  .md\:cl-text-purple-500 {
    --text-opacity: 1 !important;
    color: #9f7aea !important;
    color: rgba(159, 122, 234, var(--text-opacity)) !important;
  }

  .md\:cl-text-purple-600 {
    --text-opacity: 1 !important;
    color: #805ad5 !important;
    color: rgba(128, 90, 213, var(--text-opacity)) !important;
  }

  .md\:cl-text-purple-700 {
    --text-opacity: 1 !important;
    color: #6b46c1 !important;
    color: rgba(107, 70, 193, var(--text-opacity)) !important;
  }

  .md\:cl-text-purple-800 {
    --text-opacity: 1 !important;
    color: #553c9a !important;
    color: rgba(85, 60, 154, var(--text-opacity)) !important;
  }

  .md\:cl-text-purple-900 {
    --text-opacity: 1 !important;
    color: #44337a !important;
    color: rgba(68, 51, 122, var(--text-opacity)) !important;
  }

  .md\:cl-text-pink-100 {
    --text-opacity: 1 !important;
    color: #fff5f7 !important;
    color: rgba(255, 245, 247, var(--text-opacity)) !important;
  }

  .md\:cl-text-pink-200 {
    --text-opacity: 1 !important;
    color: #fed7e2 !important;
    color: rgba(254, 215, 226, var(--text-opacity)) !important;
  }

  .md\:cl-text-pink-300 {
    --text-opacity: 1 !important;
    color: #fbb6ce !important;
    color: rgba(251, 182, 206, var(--text-opacity)) !important;
  }

  .md\:cl-text-pink-400 {
    --text-opacity: 1 !important;
    color: #f687b3 !important;
    color: rgba(246, 135, 179, var(--text-opacity)) !important;
  }

  .md\:cl-text-pink-500 {
    --text-opacity: 1 !important;
    color: #ed64a6 !important;
    color: rgba(237, 100, 166, var(--text-opacity)) !important;
  }

  .md\:cl-text-pink-600 {
    --text-opacity: 1 !important;
    color: #d53f8c !important;
    color: rgba(213, 63, 140, var(--text-opacity)) !important;
  }

  .md\:cl-text-pink-700 {
    --text-opacity: 1 !important;
    color: #b83280 !important;
    color: rgba(184, 50, 128, var(--text-opacity)) !important;
  }

  .md\:cl-text-pink-800 {
    --text-opacity: 1 !important;
    color: #97266d !important;
    color: rgba(151, 38, 109, var(--text-opacity)) !important;
  }

  .md\:cl-text-pink-900 {
    --text-opacity: 1 !important;
    color: #702459 !important;
    color: rgba(112, 36, 89, var(--text-opacity)) !important;
  }

  .md\:cl-text-ui-gray-100 {
    --text-opacity: 1 !important;
    color: #f1f1f1 !important;
    color: rgba(241, 241, 241, var(--text-opacity)) !important;
  }

  .md\:cl-text-ui-brown-100 {
    --text-opacity: 1 !important;
    color: #f3ecdc !important;
    color: rgba(243, 236, 220, var(--text-opacity)) !important;
  }

  .md\:cl-text-ui-brown-200 {
    --text-opacity: 1 !important;
    color: #e8e0c9 !important;
    color: rgba(232, 224, 201, var(--text-opacity)) !important;
  }

  .md\:cl-text-ui-brown-300 {
    --text-opacity: 1 !important;
    color: #d0c095 !important;
    color: rgba(208, 192, 149, var(--text-opacity)) !important;
  }

  .md\:cl-text-ui-brown-700 {
    --text-opacity: 1 !important;
    color: #bd6005 !important;
    color: rgba(189, 96, 5, var(--text-opacity)) !important;
  }

  .md\:cl-text-ui-green-300 {
    --text-opacity: 1 !important;
    color: #aac74c !important;
    color: rgba(170, 199, 76, var(--text-opacity)) !important;
  }

  .md\:cl-text-ui-green-400 {
    --text-opacity: 1 !important;
    color: #71893e !important;
    color: rgba(113, 137, 62, var(--text-opacity)) !important;
  }

  .md\:cl-text-ui-orange-500 {
    --text-opacity: 1 !important;
    color: #e27212 !important;
    color: rgba(226, 114, 18, var(--text-opacity)) !important;
  }

  .md\:cl-text-facebook {
    --text-opacity: 1 !important;
    color: #3b5998 !important;
    color: rgba(59, 89, 152, var(--text-opacity)) !important;
  }

  .md\:cl-text-twitter {
    --text-opacity: 1 !important;
    color: #00acee !important;
    color: rgba(0, 172, 238, var(--text-opacity)) !important;
  }

  .md\:cl-text-twitch {
    --text-opacity: 1 !important;
    color: #6441a5 !important;
    color: rgba(100, 65, 165, var(--text-opacity)) !important;
  }

  .md\:cl-text-youtube {
    --text-opacity: 1 !important;
    color: #FF0000 !important;
    color: rgba(255, 0, 0, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-transparent:hover {
    color: transparent !important;
  }

  .md\:hover\:cl-text-current:hover {
    color: currentColor !important;
  }

  .md\:hover\:cl-text-black:hover {
    --text-opacity: 1 !important;
    color: #000 !important;
    color: rgba(0, 0, 0, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-white:hover {
    --text-opacity: 1 !important;
    color: #fff !important;
    color: rgba(255, 255, 255, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-gray-100:hover {
    --text-opacity: 1 !important;
    color: #f7fafc !important;
    color: rgba(247, 250, 252, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-gray-200:hover {
    --text-opacity: 1 !important;
    color: #edf2f7 !important;
    color: rgba(237, 242, 247, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-gray-300:hover {
    --text-opacity: 1 !important;
    color: #e2e8f0 !important;
    color: rgba(226, 232, 240, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-gray-400:hover {
    --text-opacity: 1 !important;
    color: #cbd5e0 !important;
    color: rgba(203, 213, 224, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-gray-500:hover {
    --text-opacity: 1 !important;
    color: #a0aec0 !important;
    color: rgba(160, 174, 192, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-gray-600:hover {
    --text-opacity: 1 !important;
    color: #718096 !important;
    color: rgba(113, 128, 150, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-gray-700:hover {
    --text-opacity: 1 !important;
    color: #4a5568 !important;
    color: rgba(74, 85, 104, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-gray-800:hover {
    --text-opacity: 1 !important;
    color: #2d3748 !important;
    color: rgba(45, 55, 72, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-gray-900:hover {
    --text-opacity: 1 !important;
    color: #1a202c !important;
    color: rgba(26, 32, 44, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-red-100:hover {
    --text-opacity: 1 !important;
    color: #fff5f5 !important;
    color: rgba(255, 245, 245, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-red-200:hover {
    --text-opacity: 1 !important;
    color: #fed7d7 !important;
    color: rgba(254, 215, 215, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-red-300:hover {
    --text-opacity: 1 !important;
    color: #feb2b2 !important;
    color: rgba(254, 178, 178, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-red-400:hover {
    --text-opacity: 1 !important;
    color: #fc8181 !important;
    color: rgba(252, 129, 129, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-red-500:hover {
    --text-opacity: 1 !important;
    color: #f56565 !important;
    color: rgba(245, 101, 101, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-red-600:hover {
    --text-opacity: 1 !important;
    color: #e53e3e !important;
    color: rgba(229, 62, 62, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-red-700:hover {
    --text-opacity: 1 !important;
    color: #c53030 !important;
    color: rgba(197, 48, 48, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-red-800:hover {
    --text-opacity: 1 !important;
    color: #9b2c2c !important;
    color: rgba(155, 44, 44, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-red-900:hover {
    --text-opacity: 1 !important;
    color: #742a2a !important;
    color: rgba(116, 42, 42, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-orange-100:hover {
    --text-opacity: 1 !important;
    color: #fffaf0 !important;
    color: rgba(255, 250, 240, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-orange-200:hover {
    --text-opacity: 1 !important;
    color: #feebc8 !important;
    color: rgba(254, 235, 200, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-orange-300:hover {
    --text-opacity: 1 !important;
    color: #fbd38d !important;
    color: rgba(251, 211, 141, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-orange-400:hover {
    --text-opacity: 1 !important;
    color: #f6ad55 !important;
    color: rgba(246, 173, 85, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-orange-500:hover {
    --text-opacity: 1 !important;
    color: #ed8936 !important;
    color: rgba(237, 137, 54, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-orange-600:hover {
    --text-opacity: 1 !important;
    color: #dd6b20 !important;
    color: rgba(221, 107, 32, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-orange-700:hover {
    --text-opacity: 1 !important;
    color: #c05621 !important;
    color: rgba(192, 86, 33, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-orange-800:hover {
    --text-opacity: 1 !important;
    color: #9c4221 !important;
    color: rgba(156, 66, 33, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-orange-900:hover {
    --text-opacity: 1 !important;
    color: #7b341e !important;
    color: rgba(123, 52, 30, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-yellow-100:hover {
    --text-opacity: 1 !important;
    color: #fffff0 !important;
    color: rgba(255, 255, 240, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-yellow-200:hover {
    --text-opacity: 1 !important;
    color: #fefcbf !important;
    color: rgba(254, 252, 191, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-yellow-300:hover {
    --text-opacity: 1 !important;
    color: #faf089 !important;
    color: rgba(250, 240, 137, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-yellow-400:hover {
    --text-opacity: 1 !important;
    color: #f6e05e !important;
    color: rgba(246, 224, 94, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-yellow-500:hover {
    --text-opacity: 1 !important;
    color: #ecc94b !important;
    color: rgba(236, 201, 75, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-yellow-600:hover {
    --text-opacity: 1 !important;
    color: #d69e2e !important;
    color: rgba(214, 158, 46, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-yellow-700:hover {
    --text-opacity: 1 !important;
    color: #b7791f !important;
    color: rgba(183, 121, 31, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-yellow-800:hover {
    --text-opacity: 1 !important;
    color: #975a16 !important;
    color: rgba(151, 90, 22, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-yellow-900:hover {
    --text-opacity: 1 !important;
    color: #744210 !important;
    color: rgba(116, 66, 16, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-green-100:hover {
    --text-opacity: 1 !important;
    color: #f0fff4 !important;
    color: rgba(240, 255, 244, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-green-200:hover {
    --text-opacity: 1 !important;
    color: #c6f6d5 !important;
    color: rgba(198, 246, 213, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-green-300:hover {
    --text-opacity: 1 !important;
    color: #9ae6b4 !important;
    color: rgba(154, 230, 180, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-green-400:hover {
    --text-opacity: 1 !important;
    color: #68d391 !important;
    color: rgba(104, 211, 145, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-green-500:hover {
    --text-opacity: 1 !important;
    color: #48bb78 !important;
    color: rgba(72, 187, 120, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-green-600:hover {
    --text-opacity: 1 !important;
    color: #38a169 !important;
    color: rgba(56, 161, 105, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-green-700:hover {
    --text-opacity: 1 !important;
    color: #2f855a !important;
    color: rgba(47, 133, 90, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-green-800:hover {
    --text-opacity: 1 !important;
    color: #276749 !important;
    color: rgba(39, 103, 73, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-green-900:hover {
    --text-opacity: 1 !important;
    color: #22543d !important;
    color: rgba(34, 84, 61, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-teal-100:hover {
    --text-opacity: 1 !important;
    color: #e6fffa !important;
    color: rgba(230, 255, 250, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-teal-200:hover {
    --text-opacity: 1 !important;
    color: #b2f5ea !important;
    color: rgba(178, 245, 234, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-teal-300:hover {
    --text-opacity: 1 !important;
    color: #81e6d9 !important;
    color: rgba(129, 230, 217, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-teal-400:hover {
    --text-opacity: 1 !important;
    color: #4fd1c5 !important;
    color: rgba(79, 209, 197, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-teal-500:hover {
    --text-opacity: 1 !important;
    color: #38b2ac !important;
    color: rgba(56, 178, 172, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-teal-600:hover {
    --text-opacity: 1 !important;
    color: #319795 !important;
    color: rgba(49, 151, 149, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-teal-700:hover {
    --text-opacity: 1 !important;
    color: #2c7a7b !important;
    color: rgba(44, 122, 123, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-teal-800:hover {
    --text-opacity: 1 !important;
    color: #285e61 !important;
    color: rgba(40, 94, 97, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-teal-900:hover {
    --text-opacity: 1 !important;
    color: #234e52 !important;
    color: rgba(35, 78, 82, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-blue-100:hover {
    --text-opacity: 1 !important;
    color: #ebf8ff !important;
    color: rgba(235, 248, 255, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-blue-200:hover {
    --text-opacity: 1 !important;
    color: #bee3f8 !important;
    color: rgba(190, 227, 248, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-blue-300:hover {
    --text-opacity: 1 !important;
    color: #90cdf4 !important;
    color: rgba(144, 205, 244, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-blue-400:hover {
    --text-opacity: 1 !important;
    color: #63b3ed !important;
    color: rgba(99, 179, 237, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-blue-500:hover {
    --text-opacity: 1 !important;
    color: #4299e1 !important;
    color: rgba(66, 153, 225, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-blue-600:hover {
    --text-opacity: 1 !important;
    color: #3182ce !important;
    color: rgba(49, 130, 206, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-blue-700:hover {
    --text-opacity: 1 !important;
    color: #2b6cb0 !important;
    color: rgba(43, 108, 176, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-blue-800:hover {
    --text-opacity: 1 !important;
    color: #2c5282 !important;
    color: rgba(44, 82, 130, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-blue-900:hover {
    --text-opacity: 1 !important;
    color: #2a4365 !important;
    color: rgba(42, 67, 101, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-indigo-100:hover {
    --text-opacity: 1 !important;
    color: #ebf4ff !important;
    color: rgba(235, 244, 255, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-indigo-200:hover {
    --text-opacity: 1 !important;
    color: #c3dafe !important;
    color: rgba(195, 218, 254, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-indigo-300:hover {
    --text-opacity: 1 !important;
    color: #a3bffa !important;
    color: rgba(163, 191, 250, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-indigo-400:hover {
    --text-opacity: 1 !important;
    color: #7f9cf5 !important;
    color: rgba(127, 156, 245, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-indigo-500:hover {
    --text-opacity: 1 !important;
    color: #667eea !important;
    color: rgba(102, 126, 234, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-indigo-600:hover {
    --text-opacity: 1 !important;
    color: #5a67d8 !important;
    color: rgba(90, 103, 216, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-indigo-700:hover {
    --text-opacity: 1 !important;
    color: #4c51bf !important;
    color: rgba(76, 81, 191, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-indigo-800:hover {
    --text-opacity: 1 !important;
    color: #434190 !important;
    color: rgba(67, 65, 144, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-indigo-900:hover {
    --text-opacity: 1 !important;
    color: #3c366b !important;
    color: rgba(60, 54, 107, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-purple-100:hover {
    --text-opacity: 1 !important;
    color: #faf5ff !important;
    color: rgba(250, 245, 255, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-purple-200:hover {
    --text-opacity: 1 !important;
    color: #e9d8fd !important;
    color: rgba(233, 216, 253, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-purple-300:hover {
    --text-opacity: 1 !important;
    color: #d6bcfa !important;
    color: rgba(214, 188, 250, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-purple-400:hover {
    --text-opacity: 1 !important;
    color: #b794f4 !important;
    color: rgba(183, 148, 244, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-purple-500:hover {
    --text-opacity: 1 !important;
    color: #9f7aea !important;
    color: rgba(159, 122, 234, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-purple-600:hover {
    --text-opacity: 1 !important;
    color: #805ad5 !important;
    color: rgba(128, 90, 213, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-purple-700:hover {
    --text-opacity: 1 !important;
    color: #6b46c1 !important;
    color: rgba(107, 70, 193, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-purple-800:hover {
    --text-opacity: 1 !important;
    color: #553c9a !important;
    color: rgba(85, 60, 154, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-purple-900:hover {
    --text-opacity: 1 !important;
    color: #44337a !important;
    color: rgba(68, 51, 122, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-pink-100:hover {
    --text-opacity: 1 !important;
    color: #fff5f7 !important;
    color: rgba(255, 245, 247, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-pink-200:hover {
    --text-opacity: 1 !important;
    color: #fed7e2 !important;
    color: rgba(254, 215, 226, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-pink-300:hover {
    --text-opacity: 1 !important;
    color: #fbb6ce !important;
    color: rgba(251, 182, 206, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-pink-400:hover {
    --text-opacity: 1 !important;
    color: #f687b3 !important;
    color: rgba(246, 135, 179, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-pink-500:hover {
    --text-opacity: 1 !important;
    color: #ed64a6 !important;
    color: rgba(237, 100, 166, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-pink-600:hover {
    --text-opacity: 1 !important;
    color: #d53f8c !important;
    color: rgba(213, 63, 140, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-pink-700:hover {
    --text-opacity: 1 !important;
    color: #b83280 !important;
    color: rgba(184, 50, 128, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-pink-800:hover {
    --text-opacity: 1 !important;
    color: #97266d !important;
    color: rgba(151, 38, 109, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-pink-900:hover {
    --text-opacity: 1 !important;
    color: #702459 !important;
    color: rgba(112, 36, 89, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-ui-gray-100:hover {
    --text-opacity: 1 !important;
    color: #f1f1f1 !important;
    color: rgba(241, 241, 241, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-ui-brown-100:hover {
    --text-opacity: 1 !important;
    color: #f3ecdc !important;
    color: rgba(243, 236, 220, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-ui-brown-200:hover {
    --text-opacity: 1 !important;
    color: #e8e0c9 !important;
    color: rgba(232, 224, 201, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-ui-brown-300:hover {
    --text-opacity: 1 !important;
    color: #d0c095 !important;
    color: rgba(208, 192, 149, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-ui-brown-700:hover {
    --text-opacity: 1 !important;
    color: #bd6005 !important;
    color: rgba(189, 96, 5, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-ui-green-300:hover {
    --text-opacity: 1 !important;
    color: #aac74c !important;
    color: rgba(170, 199, 76, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-ui-green-400:hover {
    --text-opacity: 1 !important;
    color: #71893e !important;
    color: rgba(113, 137, 62, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-ui-orange-500:hover {
    --text-opacity: 1 !important;
    color: #e27212 !important;
    color: rgba(226, 114, 18, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-facebook:hover {
    --text-opacity: 1 !important;
    color: #3b5998 !important;
    color: rgba(59, 89, 152, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-twitter:hover {
    --text-opacity: 1 !important;
    color: #00acee !important;
    color: rgba(0, 172, 238, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-twitch:hover {
    --text-opacity: 1 !important;
    color: #6441a5 !important;
    color: rgba(100, 65, 165, var(--text-opacity)) !important;
  }

  .md\:hover\:cl-text-youtube:hover {
    --text-opacity: 1 !important;
    color: #FF0000 !important;
    color: rgba(255, 0, 0, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-transparent:focus {
    color: transparent !important;
  }

  .md\:focus\:cl-text-current:focus {
    color: currentColor !important;
  }

  .md\:focus\:cl-text-black:focus {
    --text-opacity: 1 !important;
    color: #000 !important;
    color: rgba(0, 0, 0, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-white:focus {
    --text-opacity: 1 !important;
    color: #fff !important;
    color: rgba(255, 255, 255, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-gray-100:focus {
    --text-opacity: 1 !important;
    color: #f7fafc !important;
    color: rgba(247, 250, 252, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-gray-200:focus {
    --text-opacity: 1 !important;
    color: #edf2f7 !important;
    color: rgba(237, 242, 247, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-gray-300:focus {
    --text-opacity: 1 !important;
    color: #e2e8f0 !important;
    color: rgba(226, 232, 240, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-gray-400:focus {
    --text-opacity: 1 !important;
    color: #cbd5e0 !important;
    color: rgba(203, 213, 224, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-gray-500:focus {
    --text-opacity: 1 !important;
    color: #a0aec0 !important;
    color: rgba(160, 174, 192, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-gray-600:focus {
    --text-opacity: 1 !important;
    color: #718096 !important;
    color: rgba(113, 128, 150, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-gray-700:focus {
    --text-opacity: 1 !important;
    color: #4a5568 !important;
    color: rgba(74, 85, 104, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-gray-800:focus {
    --text-opacity: 1 !important;
    color: #2d3748 !important;
    color: rgba(45, 55, 72, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-gray-900:focus {
    --text-opacity: 1 !important;
    color: #1a202c !important;
    color: rgba(26, 32, 44, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-red-100:focus {
    --text-opacity: 1 !important;
    color: #fff5f5 !important;
    color: rgba(255, 245, 245, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-red-200:focus {
    --text-opacity: 1 !important;
    color: #fed7d7 !important;
    color: rgba(254, 215, 215, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-red-300:focus {
    --text-opacity: 1 !important;
    color: #feb2b2 !important;
    color: rgba(254, 178, 178, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-red-400:focus {
    --text-opacity: 1 !important;
    color: #fc8181 !important;
    color: rgba(252, 129, 129, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-red-500:focus {
    --text-opacity: 1 !important;
    color: #f56565 !important;
    color: rgba(245, 101, 101, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-red-600:focus {
    --text-opacity: 1 !important;
    color: #e53e3e !important;
    color: rgba(229, 62, 62, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-red-700:focus {
    --text-opacity: 1 !important;
    color: #c53030 !important;
    color: rgba(197, 48, 48, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-red-800:focus {
    --text-opacity: 1 !important;
    color: #9b2c2c !important;
    color: rgba(155, 44, 44, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-red-900:focus {
    --text-opacity: 1 !important;
    color: #742a2a !important;
    color: rgba(116, 42, 42, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-orange-100:focus {
    --text-opacity: 1 !important;
    color: #fffaf0 !important;
    color: rgba(255, 250, 240, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-orange-200:focus {
    --text-opacity: 1 !important;
    color: #feebc8 !important;
    color: rgba(254, 235, 200, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-orange-300:focus {
    --text-opacity: 1 !important;
    color: #fbd38d !important;
    color: rgba(251, 211, 141, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-orange-400:focus {
    --text-opacity: 1 !important;
    color: #f6ad55 !important;
    color: rgba(246, 173, 85, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-orange-500:focus {
    --text-opacity: 1 !important;
    color: #ed8936 !important;
    color: rgba(237, 137, 54, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-orange-600:focus {
    --text-opacity: 1 !important;
    color: #dd6b20 !important;
    color: rgba(221, 107, 32, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-orange-700:focus {
    --text-opacity: 1 !important;
    color: #c05621 !important;
    color: rgba(192, 86, 33, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-orange-800:focus {
    --text-opacity: 1 !important;
    color: #9c4221 !important;
    color: rgba(156, 66, 33, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-orange-900:focus {
    --text-opacity: 1 !important;
    color: #7b341e !important;
    color: rgba(123, 52, 30, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-yellow-100:focus {
    --text-opacity: 1 !important;
    color: #fffff0 !important;
    color: rgba(255, 255, 240, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-yellow-200:focus {
    --text-opacity: 1 !important;
    color: #fefcbf !important;
    color: rgba(254, 252, 191, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-yellow-300:focus {
    --text-opacity: 1 !important;
    color: #faf089 !important;
    color: rgba(250, 240, 137, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-yellow-400:focus {
    --text-opacity: 1 !important;
    color: #f6e05e !important;
    color: rgba(246, 224, 94, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-yellow-500:focus {
    --text-opacity: 1 !important;
    color: #ecc94b !important;
    color: rgba(236, 201, 75, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-yellow-600:focus {
    --text-opacity: 1 !important;
    color: #d69e2e !important;
    color: rgba(214, 158, 46, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-yellow-700:focus {
    --text-opacity: 1 !important;
    color: #b7791f !important;
    color: rgba(183, 121, 31, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-yellow-800:focus {
    --text-opacity: 1 !important;
    color: #975a16 !important;
    color: rgba(151, 90, 22, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-yellow-900:focus {
    --text-opacity: 1 !important;
    color: #744210 !important;
    color: rgba(116, 66, 16, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-green-100:focus {
    --text-opacity: 1 !important;
    color: #f0fff4 !important;
    color: rgba(240, 255, 244, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-green-200:focus {
    --text-opacity: 1 !important;
    color: #c6f6d5 !important;
    color: rgba(198, 246, 213, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-green-300:focus {
    --text-opacity: 1 !important;
    color: #9ae6b4 !important;
    color: rgba(154, 230, 180, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-green-400:focus {
    --text-opacity: 1 !important;
    color: #68d391 !important;
    color: rgba(104, 211, 145, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-green-500:focus {
    --text-opacity: 1 !important;
    color: #48bb78 !important;
    color: rgba(72, 187, 120, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-green-600:focus {
    --text-opacity: 1 !important;
    color: #38a169 !important;
    color: rgba(56, 161, 105, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-green-700:focus {
    --text-opacity: 1 !important;
    color: #2f855a !important;
    color: rgba(47, 133, 90, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-green-800:focus {
    --text-opacity: 1 !important;
    color: #276749 !important;
    color: rgba(39, 103, 73, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-green-900:focus {
    --text-opacity: 1 !important;
    color: #22543d !important;
    color: rgba(34, 84, 61, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-teal-100:focus {
    --text-opacity: 1 !important;
    color: #e6fffa !important;
    color: rgba(230, 255, 250, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-teal-200:focus {
    --text-opacity: 1 !important;
    color: #b2f5ea !important;
    color: rgba(178, 245, 234, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-teal-300:focus {
    --text-opacity: 1 !important;
    color: #81e6d9 !important;
    color: rgba(129, 230, 217, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-teal-400:focus {
    --text-opacity: 1 !important;
    color: #4fd1c5 !important;
    color: rgba(79, 209, 197, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-teal-500:focus {
    --text-opacity: 1 !important;
    color: #38b2ac !important;
    color: rgba(56, 178, 172, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-teal-600:focus {
    --text-opacity: 1 !important;
    color: #319795 !important;
    color: rgba(49, 151, 149, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-teal-700:focus {
    --text-opacity: 1 !important;
    color: #2c7a7b !important;
    color: rgba(44, 122, 123, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-teal-800:focus {
    --text-opacity: 1 !important;
    color: #285e61 !important;
    color: rgba(40, 94, 97, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-teal-900:focus {
    --text-opacity: 1 !important;
    color: #234e52 !important;
    color: rgba(35, 78, 82, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-blue-100:focus {
    --text-opacity: 1 !important;
    color: #ebf8ff !important;
    color: rgba(235, 248, 255, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-blue-200:focus {
    --text-opacity: 1 !important;
    color: #bee3f8 !important;
    color: rgba(190, 227, 248, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-blue-300:focus {
    --text-opacity: 1 !important;
    color: #90cdf4 !important;
    color: rgba(144, 205, 244, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-blue-400:focus {
    --text-opacity: 1 !important;
    color: #63b3ed !important;
    color: rgba(99, 179, 237, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-blue-500:focus {
    --text-opacity: 1 !important;
    color: #4299e1 !important;
    color: rgba(66, 153, 225, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-blue-600:focus {
    --text-opacity: 1 !important;
    color: #3182ce !important;
    color: rgba(49, 130, 206, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-blue-700:focus {
    --text-opacity: 1 !important;
    color: #2b6cb0 !important;
    color: rgba(43, 108, 176, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-blue-800:focus {
    --text-opacity: 1 !important;
    color: #2c5282 !important;
    color: rgba(44, 82, 130, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-blue-900:focus {
    --text-opacity: 1 !important;
    color: #2a4365 !important;
    color: rgba(42, 67, 101, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-indigo-100:focus {
    --text-opacity: 1 !important;
    color: #ebf4ff !important;
    color: rgba(235, 244, 255, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-indigo-200:focus {
    --text-opacity: 1 !important;
    color: #c3dafe !important;
    color: rgba(195, 218, 254, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-indigo-300:focus {
    --text-opacity: 1 !important;
    color: #a3bffa !important;
    color: rgba(163, 191, 250, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-indigo-400:focus {
    --text-opacity: 1 !important;
    color: #7f9cf5 !important;
    color: rgba(127, 156, 245, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-indigo-500:focus {
    --text-opacity: 1 !important;
    color: #667eea !important;
    color: rgba(102, 126, 234, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-indigo-600:focus {
    --text-opacity: 1 !important;
    color: #5a67d8 !important;
    color: rgba(90, 103, 216, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-indigo-700:focus {
    --text-opacity: 1 !important;
    color: #4c51bf !important;
    color: rgba(76, 81, 191, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-indigo-800:focus {
    --text-opacity: 1 !important;
    color: #434190 !important;
    color: rgba(67, 65, 144, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-indigo-900:focus {
    --text-opacity: 1 !important;
    color: #3c366b !important;
    color: rgba(60, 54, 107, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-purple-100:focus {
    --text-opacity: 1 !important;
    color: #faf5ff !important;
    color: rgba(250, 245, 255, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-purple-200:focus {
    --text-opacity: 1 !important;
    color: #e9d8fd !important;
    color: rgba(233, 216, 253, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-purple-300:focus {
    --text-opacity: 1 !important;
    color: #d6bcfa !important;
    color: rgba(214, 188, 250, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-purple-400:focus {
    --text-opacity: 1 !important;
    color: #b794f4 !important;
    color: rgba(183, 148, 244, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-purple-500:focus {
    --text-opacity: 1 !important;
    color: #9f7aea !important;
    color: rgba(159, 122, 234, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-purple-600:focus {
    --text-opacity: 1 !important;
    color: #805ad5 !important;
    color: rgba(128, 90, 213, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-purple-700:focus {
    --text-opacity: 1 !important;
    color: #6b46c1 !important;
    color: rgba(107, 70, 193, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-purple-800:focus {
    --text-opacity: 1 !important;
    color: #553c9a !important;
    color: rgba(85, 60, 154, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-purple-900:focus {
    --text-opacity: 1 !important;
    color: #44337a !important;
    color: rgba(68, 51, 122, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-pink-100:focus {
    --text-opacity: 1 !important;
    color: #fff5f7 !important;
    color: rgba(255, 245, 247, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-pink-200:focus {
    --text-opacity: 1 !important;
    color: #fed7e2 !important;
    color: rgba(254, 215, 226, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-pink-300:focus {
    --text-opacity: 1 !important;
    color: #fbb6ce !important;
    color: rgba(251, 182, 206, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-pink-400:focus {
    --text-opacity: 1 !important;
    color: #f687b3 !important;
    color: rgba(246, 135, 179, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-pink-500:focus {
    --text-opacity: 1 !important;
    color: #ed64a6 !important;
    color: rgba(237, 100, 166, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-pink-600:focus {
    --text-opacity: 1 !important;
    color: #d53f8c !important;
    color: rgba(213, 63, 140, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-pink-700:focus {
    --text-opacity: 1 !important;
    color: #b83280 !important;
    color: rgba(184, 50, 128, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-pink-800:focus {
    --text-opacity: 1 !important;
    color: #97266d !important;
    color: rgba(151, 38, 109, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-pink-900:focus {
    --text-opacity: 1 !important;
    color: #702459 !important;
    color: rgba(112, 36, 89, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-ui-gray-100:focus {
    --text-opacity: 1 !important;
    color: #f1f1f1 !important;
    color: rgba(241, 241, 241, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-ui-brown-100:focus {
    --text-opacity: 1 !important;
    color: #f3ecdc !important;
    color: rgba(243, 236, 220, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-ui-brown-200:focus {
    --text-opacity: 1 !important;
    color: #e8e0c9 !important;
    color: rgba(232, 224, 201, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-ui-brown-300:focus {
    --text-opacity: 1 !important;
    color: #d0c095 !important;
    color: rgba(208, 192, 149, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-ui-brown-700:focus {
    --text-opacity: 1 !important;
    color: #bd6005 !important;
    color: rgba(189, 96, 5, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-ui-green-300:focus {
    --text-opacity: 1 !important;
    color: #aac74c !important;
    color: rgba(170, 199, 76, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-ui-green-400:focus {
    --text-opacity: 1 !important;
    color: #71893e !important;
    color: rgba(113, 137, 62, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-ui-orange-500:focus {
    --text-opacity: 1 !important;
    color: #e27212 !important;
    color: rgba(226, 114, 18, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-facebook:focus {
    --text-opacity: 1 !important;
    color: #3b5998 !important;
    color: rgba(59, 89, 152, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-twitter:focus {
    --text-opacity: 1 !important;
    color: #00acee !important;
    color: rgba(0, 172, 238, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-twitch:focus {
    --text-opacity: 1 !important;
    color: #6441a5 !important;
    color: rgba(100, 65, 165, var(--text-opacity)) !important;
  }

  .md\:focus\:cl-text-youtube:focus {
    --text-opacity: 1 !important;
    color: #FF0000 !important;
    color: rgba(255, 0, 0, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-transparent {
    color: transparent !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-current {
    color: currentColor !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-black {
    --text-opacity: 1 !important;
    color: #000 !important;
    color: rgba(0, 0, 0, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-white {
    --text-opacity: 1 !important;
    color: #fff !important;
    color: rgba(255, 255, 255, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-gray-100 {
    --text-opacity: 1 !important;
    color: #f7fafc !important;
    color: rgba(247, 250, 252, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-gray-200 {
    --text-opacity: 1 !important;
    color: #edf2f7 !important;
    color: rgba(237, 242, 247, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-gray-300 {
    --text-opacity: 1 !important;
    color: #e2e8f0 !important;
    color: rgba(226, 232, 240, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-gray-400 {
    --text-opacity: 1 !important;
    color: #cbd5e0 !important;
    color: rgba(203, 213, 224, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-gray-500 {
    --text-opacity: 1 !important;
    color: #a0aec0 !important;
    color: rgba(160, 174, 192, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-gray-600 {
    --text-opacity: 1 !important;
    color: #718096 !important;
    color: rgba(113, 128, 150, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-gray-700 {
    --text-opacity: 1 !important;
    color: #4a5568 !important;
    color: rgba(74, 85, 104, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-gray-800 {
    --text-opacity: 1 !important;
    color: #2d3748 !important;
    color: rgba(45, 55, 72, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-gray-900 {
    --text-opacity: 1 !important;
    color: #1a202c !important;
    color: rgba(26, 32, 44, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-red-100 {
    --text-opacity: 1 !important;
    color: #fff5f5 !important;
    color: rgba(255, 245, 245, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-red-200 {
    --text-opacity: 1 !important;
    color: #fed7d7 !important;
    color: rgba(254, 215, 215, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-red-300 {
    --text-opacity: 1 !important;
    color: #feb2b2 !important;
    color: rgba(254, 178, 178, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-red-400 {
    --text-opacity: 1 !important;
    color: #fc8181 !important;
    color: rgba(252, 129, 129, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-red-500 {
    --text-opacity: 1 !important;
    color: #f56565 !important;
    color: rgba(245, 101, 101, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-red-600 {
    --text-opacity: 1 !important;
    color: #e53e3e !important;
    color: rgba(229, 62, 62, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-red-700 {
    --text-opacity: 1 !important;
    color: #c53030 !important;
    color: rgba(197, 48, 48, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-red-800 {
    --text-opacity: 1 !important;
    color: #9b2c2c !important;
    color: rgba(155, 44, 44, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-red-900 {
    --text-opacity: 1 !important;
    color: #742a2a !important;
    color: rgba(116, 42, 42, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-orange-100 {
    --text-opacity: 1 !important;
    color: #fffaf0 !important;
    color: rgba(255, 250, 240, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-orange-200 {
    --text-opacity: 1 !important;
    color: #feebc8 !important;
    color: rgba(254, 235, 200, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-orange-300 {
    --text-opacity: 1 !important;
    color: #fbd38d !important;
    color: rgba(251, 211, 141, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-orange-400 {
    --text-opacity: 1 !important;
    color: #f6ad55 !important;
    color: rgba(246, 173, 85, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-orange-500 {
    --text-opacity: 1 !important;
    color: #ed8936 !important;
    color: rgba(237, 137, 54, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-orange-600 {
    --text-opacity: 1 !important;
    color: #dd6b20 !important;
    color: rgba(221, 107, 32, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-orange-700 {
    --text-opacity: 1 !important;
    color: #c05621 !important;
    color: rgba(192, 86, 33, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-orange-800 {
    --text-opacity: 1 !important;
    color: #9c4221 !important;
    color: rgba(156, 66, 33, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-orange-900 {
    --text-opacity: 1 !important;
    color: #7b341e !important;
    color: rgba(123, 52, 30, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-yellow-100 {
    --text-opacity: 1 !important;
    color: #fffff0 !important;
    color: rgba(255, 255, 240, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-yellow-200 {
    --text-opacity: 1 !important;
    color: #fefcbf !important;
    color: rgba(254, 252, 191, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-yellow-300 {
    --text-opacity: 1 !important;
    color: #faf089 !important;
    color: rgba(250, 240, 137, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-yellow-400 {
    --text-opacity: 1 !important;
    color: #f6e05e !important;
    color: rgba(246, 224, 94, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-yellow-500 {
    --text-opacity: 1 !important;
    color: #ecc94b !important;
    color: rgba(236, 201, 75, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-yellow-600 {
    --text-opacity: 1 !important;
    color: #d69e2e !important;
    color: rgba(214, 158, 46, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-yellow-700 {
    --text-opacity: 1 !important;
    color: #b7791f !important;
    color: rgba(183, 121, 31, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-yellow-800 {
    --text-opacity: 1 !important;
    color: #975a16 !important;
    color: rgba(151, 90, 22, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-yellow-900 {
    --text-opacity: 1 !important;
    color: #744210 !important;
    color: rgba(116, 66, 16, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-green-100 {
    --text-opacity: 1 !important;
    color: #f0fff4 !important;
    color: rgba(240, 255, 244, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-green-200 {
    --text-opacity: 1 !important;
    color: #c6f6d5 !important;
    color: rgba(198, 246, 213, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-green-300 {
    --text-opacity: 1 !important;
    color: #9ae6b4 !important;
    color: rgba(154, 230, 180, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-green-400 {
    --text-opacity: 1 !important;
    color: #68d391 !important;
    color: rgba(104, 211, 145, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-green-500 {
    --text-opacity: 1 !important;
    color: #48bb78 !important;
    color: rgba(72, 187, 120, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-green-600 {
    --text-opacity: 1 !important;
    color: #38a169 !important;
    color: rgba(56, 161, 105, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-green-700 {
    --text-opacity: 1 !important;
    color: #2f855a !important;
    color: rgba(47, 133, 90, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-green-800 {
    --text-opacity: 1 !important;
    color: #276749 !important;
    color: rgba(39, 103, 73, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-green-900 {
    --text-opacity: 1 !important;
    color: #22543d !important;
    color: rgba(34, 84, 61, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-teal-100 {
    --text-opacity: 1 !important;
    color: #e6fffa !important;
    color: rgba(230, 255, 250, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-teal-200 {
    --text-opacity: 1 !important;
    color: #b2f5ea !important;
    color: rgba(178, 245, 234, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-teal-300 {
    --text-opacity: 1 !important;
    color: #81e6d9 !important;
    color: rgba(129, 230, 217, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-teal-400 {
    --text-opacity: 1 !important;
    color: #4fd1c5 !important;
    color: rgba(79, 209, 197, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-teal-500 {
    --text-opacity: 1 !important;
    color: #38b2ac !important;
    color: rgba(56, 178, 172, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-teal-600 {
    --text-opacity: 1 !important;
    color: #319795 !important;
    color: rgba(49, 151, 149, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-teal-700 {
    --text-opacity: 1 !important;
    color: #2c7a7b !important;
    color: rgba(44, 122, 123, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-teal-800 {
    --text-opacity: 1 !important;
    color: #285e61 !important;
    color: rgba(40, 94, 97, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-teal-900 {
    --text-opacity: 1 !important;
    color: #234e52 !important;
    color: rgba(35, 78, 82, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-blue-100 {
    --text-opacity: 1 !important;
    color: #ebf8ff !important;
    color: rgba(235, 248, 255, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-blue-200 {
    --text-opacity: 1 !important;
    color: #bee3f8 !important;
    color: rgba(190, 227, 248, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-blue-300 {
    --text-opacity: 1 !important;
    color: #90cdf4 !important;
    color: rgba(144, 205, 244, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-blue-400 {
    --text-opacity: 1 !important;
    color: #63b3ed !important;
    color: rgba(99, 179, 237, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-blue-500 {
    --text-opacity: 1 !important;
    color: #4299e1 !important;
    color: rgba(66, 153, 225, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-blue-600 {
    --text-opacity: 1 !important;
    color: #3182ce !important;
    color: rgba(49, 130, 206, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-blue-700 {
    --text-opacity: 1 !important;
    color: #2b6cb0 !important;
    color: rgba(43, 108, 176, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-blue-800 {
    --text-opacity: 1 !important;
    color: #2c5282 !important;
    color: rgba(44, 82, 130, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-blue-900 {
    --text-opacity: 1 !important;
    color: #2a4365 !important;
    color: rgba(42, 67, 101, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-indigo-100 {
    --text-opacity: 1 !important;
    color: #ebf4ff !important;
    color: rgba(235, 244, 255, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-indigo-200 {
    --text-opacity: 1 !important;
    color: #c3dafe !important;
    color: rgba(195, 218, 254, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-indigo-300 {
    --text-opacity: 1 !important;
    color: #a3bffa !important;
    color: rgba(163, 191, 250, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-indigo-400 {
    --text-opacity: 1 !important;
    color: #7f9cf5 !important;
    color: rgba(127, 156, 245, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-indigo-500 {
    --text-opacity: 1 !important;
    color: #667eea !important;
    color: rgba(102, 126, 234, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-indigo-600 {
    --text-opacity: 1 !important;
    color: #5a67d8 !important;
    color: rgba(90, 103, 216, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-indigo-700 {
    --text-opacity: 1 !important;
    color: #4c51bf !important;
    color: rgba(76, 81, 191, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-indigo-800 {
    --text-opacity: 1 !important;
    color: #434190 !important;
    color: rgba(67, 65, 144, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-indigo-900 {
    --text-opacity: 1 !important;
    color: #3c366b !important;
    color: rgba(60, 54, 107, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-purple-100 {
    --text-opacity: 1 !important;
    color: #faf5ff !important;
    color: rgba(250, 245, 255, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-purple-200 {
    --text-opacity: 1 !important;
    color: #e9d8fd !important;
    color: rgba(233, 216, 253, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-purple-300 {
    --text-opacity: 1 !important;
    color: #d6bcfa !important;
    color: rgba(214, 188, 250, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-purple-400 {
    --text-opacity: 1 !important;
    color: #b794f4 !important;
    color: rgba(183, 148, 244, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-purple-500 {
    --text-opacity: 1 !important;
    color: #9f7aea !important;
    color: rgba(159, 122, 234, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-purple-600 {
    --text-opacity: 1 !important;
    color: #805ad5 !important;
    color: rgba(128, 90, 213, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-purple-700 {
    --text-opacity: 1 !important;
    color: #6b46c1 !important;
    color: rgba(107, 70, 193, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-purple-800 {
    --text-opacity: 1 !important;
    color: #553c9a !important;
    color: rgba(85, 60, 154, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-purple-900 {
    --text-opacity: 1 !important;
    color: #44337a !important;
    color: rgba(68, 51, 122, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-pink-100 {
    --text-opacity: 1 !important;
    color: #fff5f7 !important;
    color: rgba(255, 245, 247, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-pink-200 {
    --text-opacity: 1 !important;
    color: #fed7e2 !important;
    color: rgba(254, 215, 226, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-pink-300 {
    --text-opacity: 1 !important;
    color: #fbb6ce !important;
    color: rgba(251, 182, 206, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-pink-400 {
    --text-opacity: 1 !important;
    color: #f687b3 !important;
    color: rgba(246, 135, 179, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-pink-500 {
    --text-opacity: 1 !important;
    color: #ed64a6 !important;
    color: rgba(237, 100, 166, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-pink-600 {
    --text-opacity: 1 !important;
    color: #d53f8c !important;
    color: rgba(213, 63, 140, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-pink-700 {
    --text-opacity: 1 !important;
    color: #b83280 !important;
    color: rgba(184, 50, 128, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-pink-800 {
    --text-opacity: 1 !important;
    color: #97266d !important;
    color: rgba(151, 38, 109, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-pink-900 {
    --text-opacity: 1 !important;
    color: #702459 !important;
    color: rgba(112, 36, 89, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-ui-gray-100 {
    --text-opacity: 1 !important;
    color: #f1f1f1 !important;
    color: rgba(241, 241, 241, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-ui-brown-100 {
    --text-opacity: 1 !important;
    color: #f3ecdc !important;
    color: rgba(243, 236, 220, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-ui-brown-200 {
    --text-opacity: 1 !important;
    color: #e8e0c9 !important;
    color: rgba(232, 224, 201, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-ui-brown-300 {
    --text-opacity: 1 !important;
    color: #d0c095 !important;
    color: rgba(208, 192, 149, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-ui-brown-700 {
    --text-opacity: 1 !important;
    color: #bd6005 !important;
    color: rgba(189, 96, 5, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-ui-green-300 {
    --text-opacity: 1 !important;
    color: #aac74c !important;
    color: rgba(170, 199, 76, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-ui-green-400 {
    --text-opacity: 1 !important;
    color: #71893e !important;
    color: rgba(113, 137, 62, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-ui-orange-500 {
    --text-opacity: 1 !important;
    color: #e27212 !important;
    color: rgba(226, 114, 18, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-facebook {
    --text-opacity: 1 !important;
    color: #3b5998 !important;
    color: rgba(59, 89, 152, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-twitter {
    --text-opacity: 1 !important;
    color: #00acee !important;
    color: rgba(0, 172, 238, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-twitch {
    --text-opacity: 1 !important;
    color: #6441a5 !important;
    color: rgba(100, 65, 165, var(--text-opacity)) !important;
  }

  .cl-group:hover .md\:group-hover\:cl-text-youtube {
    --text-opacity: 1 !important;
    color: #FF0000 !important;
    color: rgba(255, 0, 0, var(--text-opacity)) !important;
  }

  .md\:cl-text-opacity-0 {
    --text-opacity: 0 !important;
  }

  .md\:cl-text-opacity-25 {
    --text-opacity: 0.25 !important;
  }

  .md\:cl-text-opacity-50 {
    --text-opacity: 0.5 !important;
  }

  .md\:cl-text-opacity-75 {
    --text-opacity: 0.75 !important;
  }

  .md\:cl-text-opacity-100 {
    --text-opacity: 1 !important;
  }

  .md\:hover\:cl-text-opacity-0:hover {
    --text-opacity: 0 !important;
  }

  .md\:hover\:cl-text-opacity-25:hover {
    --text-opacity: 0.25 !important;
  }

  .md\:hover\:cl-text-opacity-50:hover {
    --text-opacity: 0.5 !important;
  }

  .md\:hover\:cl-text-opacity-75:hover {
    --text-opacity: 0.75 !important;
  }

  .md\:hover\:cl-text-opacity-100:hover {
    --text-opacity: 1 !important;
  }

  .md\:focus\:cl-text-opacity-0:focus {
    --text-opacity: 0 !important;
  }

  .md\:focus\:cl-text-opacity-25:focus {
    --text-opacity: 0.25 !important;
  }

  .md\:focus\:cl-text-opacity-50:focus {
    --text-opacity: 0.5 !important;
  }

  .md\:focus\:cl-text-opacity-75:focus {
    --text-opacity: 0.75 !important;
  }

  .md\:focus\:cl-text-opacity-100:focus {
    --text-opacity: 1 !important;
  }

  .md\:cl-italic {
    font-style: italic !important;
  }

  .md\:cl-not-italic {
    font-style: normal !important;
  }

  .md\:cl-uppercase {
    text-transform: uppercase !important;
  }

  .md\:cl-lowercase {
    text-transform: lowercase !important;
  }

  .md\:cl-capitalize {
    text-transform: capitalize !important;
  }

  .md\:cl-normal-case {
    text-transform: none !important;
  }

  .md\:cl-underline {
    text-decoration: underline !important;
  }

  .md\:cl-line-through {
    text-decoration: line-through !important;
  }

  .md\:cl-no-underline {
    text-decoration: none !important;
  }

  .md\:hover\:cl-underline:hover {
    text-decoration: underline !important;
  }

  .md\:hover\:cl-line-through:hover {
    text-decoration: line-through !important;
  }

  .md\:hover\:cl-no-underline:hover {
    text-decoration: none !important;
  }

  .md\:focus\:cl-underline:focus {
    text-decoration: underline !important;
  }

  .md\:focus\:cl-line-through:focus {
    text-decoration: line-through !important;
  }

  .md\:focus\:cl-no-underline:focus {
    text-decoration: none !important;
  }

  .md\:cl-antialiased {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
  }

  .md\:cl-subpixel-antialiased {
    -webkit-font-smoothing: auto !important;
    -moz-osx-font-smoothing: auto !important;
  }

  .md\:cl-ordinal, .md\:cl-slashed-zero, .md\:cl-lining-nums, .md\:cl-oldstyle-nums, .md\:cl-proportional-nums, .md\:cl-tabular-nums, .md\:cl-diagonal-fractions, .md\:cl-stacked-fractions {
    --font-variant-numeric-ordinal: var(--tailwind-empty,/*!*/ /*!*/) !important;
    --font-variant-numeric-slashed-zero: var(--tailwind-empty,/*!*/ /*!*/) !important;
    --font-variant-numeric-figure: var(--tailwind-empty,/*!*/ /*!*/) !important;
    --font-variant-numeric-spacing: var(--tailwind-empty,/*!*/ /*!*/) !important;
    --font-variant-numeric-fraction: var(--tailwind-empty,/*!*/ /*!*/) !important;
    font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction) !important;
  }

  .md\:cl-normal-nums {
    font-variant-numeric: normal !important;
  }

  .md\:cl-ordinal {
    --font-variant-numeric-ordinal: ordinal !important;
  }

  .md\:cl-slashed-zero {
    --font-variant-numeric-slashed-zero: slashed-zero !important;
  }

  .md\:cl-lining-nums {
    --font-variant-numeric-figure: lining-nums !important;
  }

  .md\:cl-oldstyle-nums {
    --font-variant-numeric-figure: oldstyle-nums !important;
  }

  .md\:cl-proportional-nums {
    --font-variant-numeric-spacing: proportional-nums !important;
  }

  .md\:cl-tabular-nums {
    --font-variant-numeric-spacing: tabular-nums !important;
  }

  .md\:cl-diagonal-fractions {
    --font-variant-numeric-fraction: diagonal-fractions !important;
  }

  .md\:cl-stacked-fractions {
    --font-variant-numeric-fraction: stacked-fractions !important;
  }

  .md\:cl-tracking-tighter {
    letter-spacing: -0.05em !important;
  }

  .md\:cl-tracking-tight {
    letter-spacing: -0.025em !important;
  }

  .md\:cl-tracking-normal {
    letter-spacing: 0 !important;
  }

  .md\:cl-tracking-wide {
    letter-spacing: 0.025em !important;
  }

  .md\:cl-tracking-wider {
    letter-spacing: 0.05em !important;
  }

  .md\:cl-tracking-widest {
    letter-spacing: 0.1em !important;
  }

  .md\:cl-select-none {
    -webkit-user-select: none !important;
       -moz-user-select: none !important;
            user-select: none !important;
  }

  .md\:cl-select-text {
    -webkit-user-select: text !important;
       -moz-user-select: text !important;
            user-select: text !important;
  }

  .md\:cl-select-all {
    -webkit-user-select: all !important;
       -moz-user-select: all !important;
            user-select: all !important;
  }

  .md\:cl-select-auto {
    -webkit-user-select: auto !important;
       -moz-user-select: auto !important;
            user-select: auto !important;
  }

  .md\:cl-align-baseline {
    vertical-align: baseline !important;
  }

  .md\:cl-align-top {
    vertical-align: top !important;
  }

  .md\:cl-align-middle {
    vertical-align: middle !important;
  }

  .md\:cl-align-bottom {
    vertical-align: bottom !important;
  }

  .md\:cl-align-text-top {
    vertical-align: text-top !important;
  }

  .md\:cl-align-text-bottom {
    vertical-align: text-bottom !important;
  }

  .md\:cl-visible {
    visibility: visible !important;
  }

  .md\:cl-invisible {
    visibility: hidden !important;
  }

  .md\:cl-whitespace-normal {
    white-space: normal !important;
  }

  .md\:cl-whitespace-no-wrap {
    white-space: nowrap !important;
  }

  .md\:cl-whitespace-pre {
    white-space: pre !important;
  }

  .md\:cl-whitespace-pre-line {
    white-space: pre-line !important;
  }

  .md\:cl-whitespace-pre-wrap {
    white-space: pre-wrap !important;
  }

  .md\:cl-break-normal {
    word-wrap: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .md\:cl-break-words {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  .md\:cl-break-all {
    word-break: break-all !important;
  }

  .md\:cl-truncate {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .md\:cl-w-0 {
    width: 0 !important;
  }

  .md\:cl-w-1 {
    width: 4px !important;
  }

  .md\:cl-w-2 {
    width: 8px !important;
  }

  .md\:cl-w-3 {
    width: 12px !important;
  }

  .md\:cl-w-4 {
    width: 16px !important;
  }

  .md\:cl-w-5 {
    width: 20px !important;
  }

  .md\:cl-w-6 {
    width: 24px !important;
  }

  .md\:cl-w-8 {
    width: 32px !important;
  }

  .md\:cl-w-10 {
    width: 40px !important;
  }

  .md\:cl-w-12 {
    width: 48px !important;
  }

  .md\:cl-w-16 {
    width: 64px !important;
  }

  .md\:cl-w-20 {
    width: 80px !important;
  }

  .md\:cl-w-24 {
    width: 96px !important;
  }

  .md\:cl-w-26 {
    width: 100px !important;
  }

  .md\:cl-w-28 {
    width: 110px !important;
  }

  .md\:cl-w-32 {
    width: 128px !important;
  }

  .md\:cl-w-40 {
    width: 160px !important;
  }

  .md\:cl-w-48 {
    width: 192px !important;
  }

  .md\:cl-w-56 {
    width: 224px !important;
  }

  .md\:cl-w-64 {
    width: 256px !important;
  }

  .md\:cl-w-auto {
    width: auto !important;
  }

  .md\:cl-w-px {
    width: 1px !important;
  }

  .md\:cl-w-1\/2 {
    width: 50% !important;
  }

  .md\:cl-w-1\/3 {
    width: 33.333333% !important;
  }

  .md\:cl-w-2\/3 {
    width: 66.666667% !important;
  }

  .md\:cl-w-1\/4 {
    width: 25% !important;
  }

  .md\:cl-w-2\/4 {
    width: 50% !important;
  }

  .md\:cl-w-3\/4 {
    width: 75% !important;
  }

  .md\:cl-w-1\/5 {
    width: 20% !important;
  }

  .md\:cl-w-2\/5 {
    width: 40% !important;
  }

  .md\:cl-w-3\/5 {
    width: 60% !important;
  }

  .md\:cl-w-4\/5 {
    width: 80% !important;
  }

  .md\:cl-w-1\/6 {
    width: 16.666667% !important;
  }

  .md\:cl-w-2\/6 {
    width: 33.333333% !important;
  }

  .md\:cl-w-3\/6 {
    width: 50% !important;
  }

  .md\:cl-w-4\/6 {
    width: 66.666667% !important;
  }

  .md\:cl-w-5\/6 {
    width: 83.333333% !important;
  }

  .md\:cl-w-1\/12 {
    width: 8.333333% !important;
  }

  .md\:cl-w-2\/12 {
    width: 16.666667% !important;
  }

  .md\:cl-w-3\/12 {
    width: 25% !important;
  }

  .md\:cl-w-4\/12 {
    width: 33.333333% !important;
  }

  .md\:cl-w-5\/12 {
    width: 41.666667% !important;
  }

  .md\:cl-w-6\/12 {
    width: 50% !important;
  }

  .md\:cl-w-7\/12 {
    width: 58.333333% !important;
  }

  .md\:cl-w-8\/12 {
    width: 66.666667% !important;
  }

  .md\:cl-w-9\/12 {
    width: 75% !important;
  }

  .md\:cl-w-10\/12 {
    width: 83.333333% !important;
  }

  .md\:cl-w-11\/12 {
    width: 91.666667% !important;
  }

  .md\:cl-w-full {
    width: 100% !important;
  }

  .md\:cl-w-screen {
    width: 100vw !important;
  }

  .md\:cl-z-0 {
    z-index: 0 !important;
  }

  .md\:cl-z-10 {
    z-index: 10 !important;
  }

  .md\:cl-z-20 {
    z-index: 20 !important;
  }

  .md\:cl-z-30 {
    z-index: 30 !important;
  }

  .md\:cl-z-40 {
    z-index: 40 !important;
  }

  .md\:cl-z-50 {
    z-index: 50 !important;
  }

  .md\:cl-z-auto {
    z-index: auto !important;
  }

  .md\:cl-gap-0 {
    grid-gap: 0 !important;
    gap: 0 !important;
  }

  .md\:cl-gap-1 {
    grid-gap: 4px !important;
    gap: 4px !important;
  }

  .md\:cl-gap-2 {
    grid-gap: 8px !important;
    gap: 8px !important;
  }

  .md\:cl-gap-3 {
    grid-gap: 12px !important;
    gap: 12px !important;
  }

  .md\:cl-gap-4 {
    grid-gap: 16px !important;
    gap: 16px !important;
  }

  .md\:cl-gap-5 {
    grid-gap: 20px !important;
    gap: 20px !important;
  }

  .md\:cl-gap-6 {
    grid-gap: 24px !important;
    gap: 24px !important;
  }

  .md\:cl-gap-8 {
    grid-gap: 32px !important;
    gap: 32px !important;
  }

  .md\:cl-gap-10 {
    grid-gap: 40px !important;
    gap: 40px !important;
  }

  .md\:cl-gap-12 {
    grid-gap: 48px !important;
    gap: 48px !important;
  }

  .md\:cl-gap-16 {
    grid-gap: 64px !important;
    gap: 64px !important;
  }

  .md\:cl-gap-20 {
    grid-gap: 80px !important;
    gap: 80px !important;
  }

  .md\:cl-gap-24 {
    grid-gap: 96px !important;
    gap: 96px !important;
  }

  .md\:cl-gap-26 {
    grid-gap: 100px !important;
    gap: 100px !important;
  }

  .md\:cl-gap-28 {
    grid-gap: 110px !important;
    gap: 110px !important;
  }

  .md\:cl-gap-32 {
    grid-gap: 128px !important;
    gap: 128px !important;
  }

  .md\:cl-gap-40 {
    grid-gap: 160px !important;
    gap: 160px !important;
  }

  .md\:cl-gap-48 {
    grid-gap: 192px !important;
    gap: 192px !important;
  }

  .md\:cl-gap-56 {
    grid-gap: 224px !important;
    gap: 224px !important;
  }

  .md\:cl-gap-64 {
    grid-gap: 256px !important;
    gap: 256px !important;
  }

  .md\:cl-gap-px {
    grid-gap: 1px !important;
    gap: 1px !important;
  }

  .md\:cl-col-gap-0 {
    grid-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
         column-gap: 0 !important;
  }

  .md\:cl-col-gap-1 {
    grid-column-gap: 4px !important;
    -moz-column-gap: 4px !important;
         column-gap: 4px !important;
  }

  .md\:cl-col-gap-2 {
    grid-column-gap: 8px !important;
    -moz-column-gap: 8px !important;
         column-gap: 8px !important;
  }

  .md\:cl-col-gap-3 {
    grid-column-gap: 12px !important;
    -moz-column-gap: 12px !important;
         column-gap: 12px !important;
  }

  .md\:cl-col-gap-4 {
    grid-column-gap: 16px !important;
    -moz-column-gap: 16px !important;
         column-gap: 16px !important;
  }

  .md\:cl-col-gap-5 {
    grid-column-gap: 20px !important;
    -moz-column-gap: 20px !important;
         column-gap: 20px !important;
  }

  .md\:cl-col-gap-6 {
    grid-column-gap: 24px !important;
    -moz-column-gap: 24px !important;
         column-gap: 24px !important;
  }

  .md\:cl-col-gap-8 {
    grid-column-gap: 32px !important;
    -moz-column-gap: 32px !important;
         column-gap: 32px !important;
  }

  .md\:cl-col-gap-10 {
    grid-column-gap: 40px !important;
    -moz-column-gap: 40px !important;
         column-gap: 40px !important;
  }

  .md\:cl-col-gap-12 {
    grid-column-gap: 48px !important;
    -moz-column-gap: 48px !important;
         column-gap: 48px !important;
  }

  .md\:cl-col-gap-16 {
    grid-column-gap: 64px !important;
    -moz-column-gap: 64px !important;
         column-gap: 64px !important;
  }

  .md\:cl-col-gap-20 {
    grid-column-gap: 80px !important;
    -moz-column-gap: 80px !important;
         column-gap: 80px !important;
  }

  .md\:cl-col-gap-24 {
    grid-column-gap: 96px !important;
    -moz-column-gap: 96px !important;
         column-gap: 96px !important;
  }

  .md\:cl-col-gap-26 {
    grid-column-gap: 100px !important;
    -moz-column-gap: 100px !important;
         column-gap: 100px !important;
  }

  .md\:cl-col-gap-28 {
    grid-column-gap: 110px !important;
    -moz-column-gap: 110px !important;
         column-gap: 110px !important;
  }

  .md\:cl-col-gap-32 {
    grid-column-gap: 128px !important;
    -moz-column-gap: 128px !important;
         column-gap: 128px !important;
  }

  .md\:cl-col-gap-40 {
    grid-column-gap: 160px !important;
    -moz-column-gap: 160px !important;
         column-gap: 160px !important;
  }

  .md\:cl-col-gap-48 {
    grid-column-gap: 192px !important;
    -moz-column-gap: 192px !important;
         column-gap: 192px !important;
  }

  .md\:cl-col-gap-56 {
    grid-column-gap: 224px !important;
    -moz-column-gap: 224px !important;
         column-gap: 224px !important;
  }

  .md\:cl-col-gap-64 {
    grid-column-gap: 256px !important;
    -moz-column-gap: 256px !important;
         column-gap: 256px !important;
  }

  .md\:cl-col-gap-px {
    grid-column-gap: 1px !important;
    -moz-column-gap: 1px !important;
         column-gap: 1px !important;
  }

  .md\:cl-gap-x-0 {
    grid-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
         column-gap: 0 !important;
  }

  .md\:cl-gap-x-1 {
    grid-column-gap: 4px !important;
    -moz-column-gap: 4px !important;
         column-gap: 4px !important;
  }

  .md\:cl-gap-x-2 {
    grid-column-gap: 8px !important;
    -moz-column-gap: 8px !important;
         column-gap: 8px !important;
  }

  .md\:cl-gap-x-3 {
    grid-column-gap: 12px !important;
    -moz-column-gap: 12px !important;
         column-gap: 12px !important;
  }

  .md\:cl-gap-x-4 {
    grid-column-gap: 16px !important;
    -moz-column-gap: 16px !important;
         column-gap: 16px !important;
  }

  .md\:cl-gap-x-5 {
    grid-column-gap: 20px !important;
    -moz-column-gap: 20px !important;
         column-gap: 20px !important;
  }

  .md\:cl-gap-x-6 {
    grid-column-gap: 24px !important;
    -moz-column-gap: 24px !important;
         column-gap: 24px !important;
  }

  .md\:cl-gap-x-8 {
    grid-column-gap: 32px !important;
    -moz-column-gap: 32px !important;
         column-gap: 32px !important;
  }

  .md\:cl-gap-x-10 {
    grid-column-gap: 40px !important;
    -moz-column-gap: 40px !important;
         column-gap: 40px !important;
  }

  .md\:cl-gap-x-12 {
    grid-column-gap: 48px !important;
    -moz-column-gap: 48px !important;
         column-gap: 48px !important;
  }

  .md\:cl-gap-x-16 {
    grid-column-gap: 64px !important;
    -moz-column-gap: 64px !important;
         column-gap: 64px !important;
  }

  .md\:cl-gap-x-20 {
    grid-column-gap: 80px !important;
    -moz-column-gap: 80px !important;
         column-gap: 80px !important;
  }

  .md\:cl-gap-x-24 {
    grid-column-gap: 96px !important;
    -moz-column-gap: 96px !important;
         column-gap: 96px !important;
  }

  .md\:cl-gap-x-26 {
    grid-column-gap: 100px !important;
    -moz-column-gap: 100px !important;
         column-gap: 100px !important;
  }

  .md\:cl-gap-x-28 {
    grid-column-gap: 110px !important;
    -moz-column-gap: 110px !important;
         column-gap: 110px !important;
  }

  .md\:cl-gap-x-32 {
    grid-column-gap: 128px !important;
    -moz-column-gap: 128px !important;
         column-gap: 128px !important;
  }

  .md\:cl-gap-x-40 {
    grid-column-gap: 160px !important;
    -moz-column-gap: 160px !important;
         column-gap: 160px !important;
  }

  .md\:cl-gap-x-48 {
    grid-column-gap: 192px !important;
    -moz-column-gap: 192px !important;
         column-gap: 192px !important;
  }

  .md\:cl-gap-x-56 {
    grid-column-gap: 224px !important;
    -moz-column-gap: 224px !important;
         column-gap: 224px !important;
  }

  .md\:cl-gap-x-64 {
    grid-column-gap: 256px !important;
    -moz-column-gap: 256px !important;
         column-gap: 256px !important;
  }

  .md\:cl-gap-x-px {
    grid-column-gap: 1px !important;
    -moz-column-gap: 1px !important;
         column-gap: 1px !important;
  }

  .md\:cl-row-gap-0 {
    grid-row-gap: 0 !important;
    row-gap: 0 !important;
  }

  .md\:cl-row-gap-1 {
    grid-row-gap: 4px !important;
    row-gap: 4px !important;
  }

  .md\:cl-row-gap-2 {
    grid-row-gap: 8px !important;
    row-gap: 8px !important;
  }

  .md\:cl-row-gap-3 {
    grid-row-gap: 12px !important;
    row-gap: 12px !important;
  }

  .md\:cl-row-gap-4 {
    grid-row-gap: 16px !important;
    row-gap: 16px !important;
  }

  .md\:cl-row-gap-5 {
    grid-row-gap: 20px !important;
    row-gap: 20px !important;
  }

  .md\:cl-row-gap-6 {
    grid-row-gap: 24px !important;
    row-gap: 24px !important;
  }

  .md\:cl-row-gap-8 {
    grid-row-gap: 32px !important;
    row-gap: 32px !important;
  }

  .md\:cl-row-gap-10 {
    grid-row-gap: 40px !important;
    row-gap: 40px !important;
  }

  .md\:cl-row-gap-12 {
    grid-row-gap: 48px !important;
    row-gap: 48px !important;
  }

  .md\:cl-row-gap-16 {
    grid-row-gap: 64px !important;
    row-gap: 64px !important;
  }

  .md\:cl-row-gap-20 {
    grid-row-gap: 80px !important;
    row-gap: 80px !important;
  }

  .md\:cl-row-gap-24 {
    grid-row-gap: 96px !important;
    row-gap: 96px !important;
  }

  .md\:cl-row-gap-26 {
    grid-row-gap: 100px !important;
    row-gap: 100px !important;
  }

  .md\:cl-row-gap-28 {
    grid-row-gap: 110px !important;
    row-gap: 110px !important;
  }

  .md\:cl-row-gap-32 {
    grid-row-gap: 128px !important;
    row-gap: 128px !important;
  }

  .md\:cl-row-gap-40 {
    grid-row-gap: 160px !important;
    row-gap: 160px !important;
  }

  .md\:cl-row-gap-48 {
    grid-row-gap: 192px !important;
    row-gap: 192px !important;
  }

  .md\:cl-row-gap-56 {
    grid-row-gap: 224px !important;
    row-gap: 224px !important;
  }

  .md\:cl-row-gap-64 {
    grid-row-gap: 256px !important;
    row-gap: 256px !important;
  }

  .md\:cl-row-gap-px {
    grid-row-gap: 1px !important;
    row-gap: 1px !important;
  }

  .md\:cl-gap-y-0 {
    grid-row-gap: 0 !important;
    row-gap: 0 !important;
  }

  .md\:cl-gap-y-1 {
    grid-row-gap: 4px !important;
    row-gap: 4px !important;
  }

  .md\:cl-gap-y-2 {
    grid-row-gap: 8px !important;
    row-gap: 8px !important;
  }

  .md\:cl-gap-y-3 {
    grid-row-gap: 12px !important;
    row-gap: 12px !important;
  }

  .md\:cl-gap-y-4 {
    grid-row-gap: 16px !important;
    row-gap: 16px !important;
  }

  .md\:cl-gap-y-5 {
    grid-row-gap: 20px !important;
    row-gap: 20px !important;
  }

  .md\:cl-gap-y-6 {
    grid-row-gap: 24px !important;
    row-gap: 24px !important;
  }

  .md\:cl-gap-y-8 {
    grid-row-gap: 32px !important;
    row-gap: 32px !important;
  }

  .md\:cl-gap-y-10 {
    grid-row-gap: 40px !important;
    row-gap: 40px !important;
  }

  .md\:cl-gap-y-12 {
    grid-row-gap: 48px !important;
    row-gap: 48px !important;
  }

  .md\:cl-gap-y-16 {
    grid-row-gap: 64px !important;
    row-gap: 64px !important;
  }

  .md\:cl-gap-y-20 {
    grid-row-gap: 80px !important;
    row-gap: 80px !important;
  }

  .md\:cl-gap-y-24 {
    grid-row-gap: 96px !important;
    row-gap: 96px !important;
  }

  .md\:cl-gap-y-26 {
    grid-row-gap: 100px !important;
    row-gap: 100px !important;
  }

  .md\:cl-gap-y-28 {
    grid-row-gap: 110px !important;
    row-gap: 110px !important;
  }

  .md\:cl-gap-y-32 {
    grid-row-gap: 128px !important;
    row-gap: 128px !important;
  }

  .md\:cl-gap-y-40 {
    grid-row-gap: 160px !important;
    row-gap: 160px !important;
  }

  .md\:cl-gap-y-48 {
    grid-row-gap: 192px !important;
    row-gap: 192px !important;
  }

  .md\:cl-gap-y-56 {
    grid-row-gap: 224px !important;
    row-gap: 224px !important;
  }

  .md\:cl-gap-y-64 {
    grid-row-gap: 256px !important;
    row-gap: 256px !important;
  }

  .md\:cl-gap-y-px {
    grid-row-gap: 1px !important;
    row-gap: 1px !important;
  }

  .md\:cl-grid-flow-row {
    grid-auto-flow: row !important;
  }

  .md\:cl-grid-flow-col {
    grid-auto-flow: column !important;
  }

  .md\:cl-grid-flow-row-dense {
    grid-auto-flow: row dense !important;
  }

  .md\:cl-grid-flow-col-dense {
    grid-auto-flow: column dense !important;
  }

  .md\:cl-grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }

  .md\:cl-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .md\:cl-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .md\:cl-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .md\:cl-grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }

  .md\:cl-grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }

  .md\:cl-grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }

  .md\:cl-grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }

  .md\:cl-grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }

  .md\:cl-grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }

  .md\:cl-grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
  }

  .md\:cl-grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }

  .md\:cl-grid-cols-none {
    grid-template-columns: none !important;
  }

  .md\:cl-auto-cols-auto {
    grid-auto-columns: auto !important;
  }

  .md\:cl-auto-cols-min {
    grid-auto-columns: min-content !important;
  }

  .md\:cl-auto-cols-max {
    grid-auto-columns: max-content !important;
  }

  .md\:cl-auto-cols-fr {
    grid-auto-columns: minmax(0, 1fr) !important;
  }

  .md\:cl-col-auto {
    grid-column: auto !important;
  }

  .md\:cl-col-span-1 {
    grid-column: span 1 / span 1 !important;
  }

  .md\:cl-col-span-2 {
    grid-column: span 2 / span 2 !important;
  }

  .md\:cl-col-span-3 {
    grid-column: span 3 / span 3 !important;
  }

  .md\:cl-col-span-4 {
    grid-column: span 4 / span 4 !important;
  }

  .md\:cl-col-span-5 {
    grid-column: span 5 / span 5 !important;
  }

  .md\:cl-col-span-6 {
    grid-column: span 6 / span 6 !important;
  }

  .md\:cl-col-span-7 {
    grid-column: span 7 / span 7 !important;
  }

  .md\:cl-col-span-8 {
    grid-column: span 8 / span 8 !important;
  }

  .md\:cl-col-span-9 {
    grid-column: span 9 / span 9 !important;
  }

  .md\:cl-col-span-10 {
    grid-column: span 10 / span 10 !important;
  }

  .md\:cl-col-span-11 {
    grid-column: span 11 / span 11 !important;
  }

  .md\:cl-col-span-12 {
    grid-column: span 12 / span 12 !important;
  }

  .md\:cl-col-span-full {
    grid-column: 1 / -1 !important;
  }

  .md\:cl-col-start-1 {
    grid-column-start: 1 !important;
  }

  .md\:cl-col-start-2 {
    grid-column-start: 2 !important;
  }

  .md\:cl-col-start-3 {
    grid-column-start: 3 !important;
  }

  .md\:cl-col-start-4 {
    grid-column-start: 4 !important;
  }

  .md\:cl-col-start-5 {
    grid-column-start: 5 !important;
  }

  .md\:cl-col-start-6 {
    grid-column-start: 6 !important;
  }

  .md\:cl-col-start-7 {
    grid-column-start: 7 !important;
  }

  .md\:cl-col-start-8 {
    grid-column-start: 8 !important;
  }

  .md\:cl-col-start-9 {
    grid-column-start: 9 !important;
  }

  .md\:cl-col-start-10 {
    grid-column-start: 10 !important;
  }

  .md\:cl-col-start-11 {
    grid-column-start: 11 !important;
  }

  .md\:cl-col-start-12 {
    grid-column-start: 12 !important;
  }

  .md\:cl-col-start-13 {
    grid-column-start: 13 !important;
  }

  .md\:cl-col-start-auto {
    grid-column-start: auto !important;
  }

  .md\:cl-col-end-1 {
    grid-column-end: 1 !important;
  }

  .md\:cl-col-end-2 {
    grid-column-end: 2 !important;
  }

  .md\:cl-col-end-3 {
    grid-column-end: 3 !important;
  }

  .md\:cl-col-end-4 {
    grid-column-end: 4 !important;
  }

  .md\:cl-col-end-5 {
    grid-column-end: 5 !important;
  }

  .md\:cl-col-end-6 {
    grid-column-end: 6 !important;
  }

  .md\:cl-col-end-7 {
    grid-column-end: 7 !important;
  }

  .md\:cl-col-end-8 {
    grid-column-end: 8 !important;
  }

  .md\:cl-col-end-9 {
    grid-column-end: 9 !important;
  }

  .md\:cl-col-end-10 {
    grid-column-end: 10 !important;
  }

  .md\:cl-col-end-11 {
    grid-column-end: 11 !important;
  }

  .md\:cl-col-end-12 {
    grid-column-end: 12 !important;
  }

  .md\:cl-col-end-13 {
    grid-column-end: 13 !important;
  }

  .md\:cl-col-end-auto {
    grid-column-end: auto !important;
  }

  .md\:cl-grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }

  .md\:cl-grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }

  .md\:cl-grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }

  .md\:cl-grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  }

  .md\:cl-grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
  }

  .md\:cl-grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }

  .md\:cl-grid-rows-none {
    grid-template-rows: none !important;
  }

  .md\:cl-auto-rows-auto {
    grid-auto-rows: auto !important;
  }

  .md\:cl-auto-rows-min {
    grid-auto-rows: min-content !important;
  }

  .md\:cl-auto-rows-max {
    grid-auto-rows: max-content !important;
  }

  .md\:cl-auto-rows-fr {
    grid-auto-rows: minmax(0, 1fr) !important;
  }

  .md\:cl-row-auto {
    grid-row: auto !important;
  }

  .md\:cl-row-span-1 {
    grid-row: span 1 / span 1 !important;
  }

  .md\:cl-row-span-2 {
    grid-row: span 2 / span 2 !important;
  }

  .md\:cl-row-span-3 {
    grid-row: span 3 / span 3 !important;
  }

  .md\:cl-row-span-4 {
    grid-row: span 4 / span 4 !important;
  }

  .md\:cl-row-span-5 {
    grid-row: span 5 / span 5 !important;
  }

  .md\:cl-row-span-6 {
    grid-row: span 6 / span 6 !important;
  }

  .md\:cl-row-span-full {
    grid-row: 1 / -1 !important;
  }

  .md\:cl-row-start-1 {
    grid-row-start: 1 !important;
  }

  .md\:cl-row-start-2 {
    grid-row-start: 2 !important;
  }

  .md\:cl-row-start-3 {
    grid-row-start: 3 !important;
  }

  .md\:cl-row-start-4 {
    grid-row-start: 4 !important;
  }

  .md\:cl-row-start-5 {
    grid-row-start: 5 !important;
  }

  .md\:cl-row-start-6 {
    grid-row-start: 6 !important;
  }

  .md\:cl-row-start-7 {
    grid-row-start: 7 !important;
  }

  .md\:cl-row-start-auto {
    grid-row-start: auto !important;
  }

  .md\:cl-row-end-1 {
    grid-row-end: 1 !important;
  }

  .md\:cl-row-end-2 {
    grid-row-end: 2 !important;
  }

  .md\:cl-row-end-3 {
    grid-row-end: 3 !important;
  }

  .md\:cl-row-end-4 {
    grid-row-end: 4 !important;
  }

  .md\:cl-row-end-5 {
    grid-row-end: 5 !important;
  }

  .md\:cl-row-end-6 {
    grid-row-end: 6 !important;
  }

  .md\:cl-row-end-7 {
    grid-row-end: 7 !important;
  }

  .md\:cl-row-end-auto {
    grid-row-end: auto !important;
  }

  .md\:cl-transform {
    --transform-translate-x: 0 !important;
    --transform-translate-y: 0 !important;
    --transform-rotate: 0 !important;
    --transform-skew-x: 0 !important;
    --transform-skew-y: 0 !important;
    --transform-scale-x: 1 !important;
    --transform-scale-y: 1 !important;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y)) !important;
  }

  .md\:cl-transform-none {
    transform: none !important;
  }

  .md\:cl-origin-center {
    transform-origin: center !important;
  }

  .md\:cl-origin-top {
    transform-origin: top !important;
  }

  .md\:cl-origin-top-right {
    transform-origin: top right !important;
  }

  .md\:cl-origin-right {
    transform-origin: right !important;
  }

  .md\:cl-origin-bottom-right {
    transform-origin: bottom right !important;
  }

  .md\:cl-origin-bottom {
    transform-origin: bottom !important;
  }

  .md\:cl-origin-bottom-left {
    transform-origin: bottom left !important;
  }

  .md\:cl-origin-left {
    transform-origin: left !important;
  }

  .md\:cl-origin-top-left {
    transform-origin: top left !important;
  }

  .md\:cl-scale-0 {
    --transform-scale-x: 0 !important;
    --transform-scale-y: 0 !important;
  }

  .md\:cl-scale-50 {
    --transform-scale-x: .5 !important;
    --transform-scale-y: .5 !important;
  }

  .md\:cl-scale-75 {
    --transform-scale-x: .75 !important;
    --transform-scale-y: .75 !important;
  }

  .md\:cl-scale-90 {
    --transform-scale-x: .9 !important;
    --transform-scale-y: .9 !important;
  }

  .md\:cl-scale-95 {
    --transform-scale-x: .95 !important;
    --transform-scale-y: .95 !important;
  }

  .md\:cl-scale-100 {
    --transform-scale-x: 1 !important;
    --transform-scale-y: 1 !important;
  }

  .md\:cl-scale-105 {
    --transform-scale-x: 1.05 !important;
    --transform-scale-y: 1.05 !important;
  }

  .md\:cl-scale-110 {
    --transform-scale-x: 1.1 !important;
    --transform-scale-y: 1.1 !important;
  }

  .md\:cl-scale-125 {
    --transform-scale-x: 1.25 !important;
    --transform-scale-y: 1.25 !important;
  }

  .md\:cl-scale-150 {
    --transform-scale-x: 1.5 !important;
    --transform-scale-y: 1.5 !important;
  }

  .md\:cl-scale-x-0 {
    --transform-scale-x: 0 !important;
  }

  .md\:cl-scale-x-50 {
    --transform-scale-x: .5 !important;
  }

  .md\:cl-scale-x-75 {
    --transform-scale-x: .75 !important;
  }

  .md\:cl-scale-x-90 {
    --transform-scale-x: .9 !important;
  }

  .md\:cl-scale-x-95 {
    --transform-scale-x: .95 !important;
  }

  .md\:cl-scale-x-100 {
    --transform-scale-x: 1 !important;
  }

  .md\:cl-scale-x-105 {
    --transform-scale-x: 1.05 !important;
  }

  .md\:cl-scale-x-110 {
    --transform-scale-x: 1.1 !important;
  }

  .md\:cl-scale-x-125 {
    --transform-scale-x: 1.25 !important;
  }

  .md\:cl-scale-x-150 {
    --transform-scale-x: 1.5 !important;
  }

  .md\:cl-scale-y-0 {
    --transform-scale-y: 0 !important;
  }

  .md\:cl-scale-y-50 {
    --transform-scale-y: .5 !important;
  }

  .md\:cl-scale-y-75 {
    --transform-scale-y: .75 !important;
  }

  .md\:cl-scale-y-90 {
    --transform-scale-y: .9 !important;
  }

  .md\:cl-scale-y-95 {
    --transform-scale-y: .95 !important;
  }

  .md\:cl-scale-y-100 {
    --transform-scale-y: 1 !important;
  }

  .md\:cl-scale-y-105 {
    --transform-scale-y: 1.05 !important;
  }

  .md\:cl-scale-y-110 {
    --transform-scale-y: 1.1 !important;
  }

  .md\:cl-scale-y-125 {
    --transform-scale-y: 1.25 !important;
  }

  .md\:cl-scale-y-150 {
    --transform-scale-y: 1.5 !important;
  }

  .md\:hover\:cl-scale-0:hover {
    --transform-scale-x: 0 !important;
    --transform-scale-y: 0 !important;
  }

  .md\:hover\:cl-scale-50:hover {
    --transform-scale-x: .5 !important;
    --transform-scale-y: .5 !important;
  }

  .md\:hover\:cl-scale-75:hover {
    --transform-scale-x: .75 !important;
    --transform-scale-y: .75 !important;
  }

  .md\:hover\:cl-scale-90:hover {
    --transform-scale-x: .9 !important;
    --transform-scale-y: .9 !important;
  }

  .md\:hover\:cl-scale-95:hover {
    --transform-scale-x: .95 !important;
    --transform-scale-y: .95 !important;
  }

  .md\:hover\:cl-scale-100:hover {
    --transform-scale-x: 1 !important;
    --transform-scale-y: 1 !important;
  }

  .md\:hover\:cl-scale-105:hover {
    --transform-scale-x: 1.05 !important;
    --transform-scale-y: 1.05 !important;
  }

  .md\:hover\:cl-scale-110:hover {
    --transform-scale-x: 1.1 !important;
    --transform-scale-y: 1.1 !important;
  }

  .md\:hover\:cl-scale-125:hover {
    --transform-scale-x: 1.25 !important;
    --transform-scale-y: 1.25 !important;
  }

  .md\:hover\:cl-scale-150:hover {
    --transform-scale-x: 1.5 !important;
    --transform-scale-y: 1.5 !important;
  }

  .md\:hover\:cl-scale-x-0:hover {
    --transform-scale-x: 0 !important;
  }

  .md\:hover\:cl-scale-x-50:hover {
    --transform-scale-x: .5 !important;
  }

  .md\:hover\:cl-scale-x-75:hover {
    --transform-scale-x: .75 !important;
  }

  .md\:hover\:cl-scale-x-90:hover {
    --transform-scale-x: .9 !important;
  }

  .md\:hover\:cl-scale-x-95:hover {
    --transform-scale-x: .95 !important;
  }

  .md\:hover\:cl-scale-x-100:hover {
    --transform-scale-x: 1 !important;
  }

  .md\:hover\:cl-scale-x-105:hover {
    --transform-scale-x: 1.05 !important;
  }

  .md\:hover\:cl-scale-x-110:hover {
    --transform-scale-x: 1.1 !important;
  }

  .md\:hover\:cl-scale-x-125:hover {
    --transform-scale-x: 1.25 !important;
  }

  .md\:hover\:cl-scale-x-150:hover {
    --transform-scale-x: 1.5 !important;
  }

  .md\:hover\:cl-scale-y-0:hover {
    --transform-scale-y: 0 !important;
  }

  .md\:hover\:cl-scale-y-50:hover {
    --transform-scale-y: .5 !important;
  }

  .md\:hover\:cl-scale-y-75:hover {
    --transform-scale-y: .75 !important;
  }

  .md\:hover\:cl-scale-y-90:hover {
    --transform-scale-y: .9 !important;
  }

  .md\:hover\:cl-scale-y-95:hover {
    --transform-scale-y: .95 !important;
  }

  .md\:hover\:cl-scale-y-100:hover {
    --transform-scale-y: 1 !important;
  }

  .md\:hover\:cl-scale-y-105:hover {
    --transform-scale-y: 1.05 !important;
  }

  .md\:hover\:cl-scale-y-110:hover {
    --transform-scale-y: 1.1 !important;
  }

  .md\:hover\:cl-scale-y-125:hover {
    --transform-scale-y: 1.25 !important;
  }

  .md\:hover\:cl-scale-y-150:hover {
    --transform-scale-y: 1.5 !important;
  }

  .md\:focus\:cl-scale-0:focus {
    --transform-scale-x: 0 !important;
    --transform-scale-y: 0 !important;
  }

  .md\:focus\:cl-scale-50:focus {
    --transform-scale-x: .5 !important;
    --transform-scale-y: .5 !important;
  }

  .md\:focus\:cl-scale-75:focus {
    --transform-scale-x: .75 !important;
    --transform-scale-y: .75 !important;
  }

  .md\:focus\:cl-scale-90:focus {
    --transform-scale-x: .9 !important;
    --transform-scale-y: .9 !important;
  }

  .md\:focus\:cl-scale-95:focus {
    --transform-scale-x: .95 !important;
    --transform-scale-y: .95 !important;
  }

  .md\:focus\:cl-scale-100:focus {
    --transform-scale-x: 1 !important;
    --transform-scale-y: 1 !important;
  }

  .md\:focus\:cl-scale-105:focus {
    --transform-scale-x: 1.05 !important;
    --transform-scale-y: 1.05 !important;
  }

  .md\:focus\:cl-scale-110:focus {
    --transform-scale-x: 1.1 !important;
    --transform-scale-y: 1.1 !important;
  }

  .md\:focus\:cl-scale-125:focus {
    --transform-scale-x: 1.25 !important;
    --transform-scale-y: 1.25 !important;
  }

  .md\:focus\:cl-scale-150:focus {
    --transform-scale-x: 1.5 !important;
    --transform-scale-y: 1.5 !important;
  }

  .md\:focus\:cl-scale-x-0:focus {
    --transform-scale-x: 0 !important;
  }

  .md\:focus\:cl-scale-x-50:focus {
    --transform-scale-x: .5 !important;
  }

  .md\:focus\:cl-scale-x-75:focus {
    --transform-scale-x: .75 !important;
  }

  .md\:focus\:cl-scale-x-90:focus {
    --transform-scale-x: .9 !important;
  }

  .md\:focus\:cl-scale-x-95:focus {
    --transform-scale-x: .95 !important;
  }

  .md\:focus\:cl-scale-x-100:focus {
    --transform-scale-x: 1 !important;
  }

  .md\:focus\:cl-scale-x-105:focus {
    --transform-scale-x: 1.05 !important;
  }

  .md\:focus\:cl-scale-x-110:focus {
    --transform-scale-x: 1.1 !important;
  }

  .md\:focus\:cl-scale-x-125:focus {
    --transform-scale-x: 1.25 !important;
  }

  .md\:focus\:cl-scale-x-150:focus {
    --transform-scale-x: 1.5 !important;
  }

  .md\:focus\:cl-scale-y-0:focus {
    --transform-scale-y: 0 !important;
  }

  .md\:focus\:cl-scale-y-50:focus {
    --transform-scale-y: .5 !important;
  }

  .md\:focus\:cl-scale-y-75:focus {
    --transform-scale-y: .75 !important;
  }

  .md\:focus\:cl-scale-y-90:focus {
    --transform-scale-y: .9 !important;
  }

  .md\:focus\:cl-scale-y-95:focus {
    --transform-scale-y: .95 !important;
  }

  .md\:focus\:cl-scale-y-100:focus {
    --transform-scale-y: 1 !important;
  }

  .md\:focus\:cl-scale-y-105:focus {
    --transform-scale-y: 1.05 !important;
  }

  .md\:focus\:cl-scale-y-110:focus {
    --transform-scale-y: 1.1 !important;
  }

  .md\:focus\:cl-scale-y-125:focus {
    --transform-scale-y: 1.25 !important;
  }

  .md\:focus\:cl-scale-y-150:focus {
    --transform-scale-y: 1.5 !important;
  }

  .md\:cl-rotate-0 {
    --transform-rotate: 0 !important;
  }

  .md\:cl-rotate-1 {
    --transform-rotate: 1deg !important;
  }

  .md\:cl-rotate-2 {
    --transform-rotate: 2deg !important;
  }

  .md\:cl-rotate-3 {
    --transform-rotate: 3deg !important;
  }

  .md\:cl-rotate-6 {
    --transform-rotate: 6deg !important;
  }

  .md\:cl-rotate-12 {
    --transform-rotate: 12deg !important;
  }

  .md\:cl-rotate-45 {
    --transform-rotate: 45deg !important;
  }

  .md\:cl-rotate-90 {
    --transform-rotate: 90deg !important;
  }

  .md\:cl-rotate-180 {
    --transform-rotate: 180deg !important;
  }

  .md\:cl--rotate-180 {
    --transform-rotate: -180deg !important;
  }

  .md\:cl--rotate-90 {
    --transform-rotate: -90deg !important;
  }

  .md\:cl--rotate-45 {
    --transform-rotate: -45deg !important;
  }

  .md\:cl--rotate-12 {
    --transform-rotate: -12deg !important;
  }

  .md\:cl--rotate-6 {
    --transform-rotate: -6deg !important;
  }

  .md\:cl--rotate-3 {
    --transform-rotate: -3deg !important;
  }

  .md\:cl--rotate-2 {
    --transform-rotate: -2deg !important;
  }

  .md\:cl--rotate-1 {
    --transform-rotate: -1deg !important;
  }

  .md\:hover\:cl-rotate-0:hover {
    --transform-rotate: 0 !important;
  }

  .md\:hover\:cl-rotate-1:hover {
    --transform-rotate: 1deg !important;
  }

  .md\:hover\:cl-rotate-2:hover {
    --transform-rotate: 2deg !important;
  }

  .md\:hover\:cl-rotate-3:hover {
    --transform-rotate: 3deg !important;
  }

  .md\:hover\:cl-rotate-6:hover {
    --transform-rotate: 6deg !important;
  }

  .md\:hover\:cl-rotate-12:hover {
    --transform-rotate: 12deg !important;
  }

  .md\:hover\:cl-rotate-45:hover {
    --transform-rotate: 45deg !important;
  }

  .md\:hover\:cl-rotate-90:hover {
    --transform-rotate: 90deg !important;
  }

  .md\:hover\:cl-rotate-180:hover {
    --transform-rotate: 180deg !important;
  }

  .md\:hover\:cl--rotate-180:hover {
    --transform-rotate: -180deg !important;
  }

  .md\:hover\:cl--rotate-90:hover {
    --transform-rotate: -90deg !important;
  }

  .md\:hover\:cl--rotate-45:hover {
    --transform-rotate: -45deg !important;
  }

  .md\:hover\:cl--rotate-12:hover {
    --transform-rotate: -12deg !important;
  }

  .md\:hover\:cl--rotate-6:hover {
    --transform-rotate: -6deg !important;
  }

  .md\:hover\:cl--rotate-3:hover {
    --transform-rotate: -3deg !important;
  }

  .md\:hover\:cl--rotate-2:hover {
    --transform-rotate: -2deg !important;
  }

  .md\:hover\:cl--rotate-1:hover {
    --transform-rotate: -1deg !important;
  }

  .md\:focus\:cl-rotate-0:focus {
    --transform-rotate: 0 !important;
  }

  .md\:focus\:cl-rotate-1:focus {
    --transform-rotate: 1deg !important;
  }

  .md\:focus\:cl-rotate-2:focus {
    --transform-rotate: 2deg !important;
  }

  .md\:focus\:cl-rotate-3:focus {
    --transform-rotate: 3deg !important;
  }

  .md\:focus\:cl-rotate-6:focus {
    --transform-rotate: 6deg !important;
  }

  .md\:focus\:cl-rotate-12:focus {
    --transform-rotate: 12deg !important;
  }

  .md\:focus\:cl-rotate-45:focus {
    --transform-rotate: 45deg !important;
  }

  .md\:focus\:cl-rotate-90:focus {
    --transform-rotate: 90deg !important;
  }

  .md\:focus\:cl-rotate-180:focus {
    --transform-rotate: 180deg !important;
  }

  .md\:focus\:cl--rotate-180:focus {
    --transform-rotate: -180deg !important;
  }

  .md\:focus\:cl--rotate-90:focus {
    --transform-rotate: -90deg !important;
  }

  .md\:focus\:cl--rotate-45:focus {
    --transform-rotate: -45deg !important;
  }

  .md\:focus\:cl--rotate-12:focus {
    --transform-rotate: -12deg !important;
  }

  .md\:focus\:cl--rotate-6:focus {
    --transform-rotate: -6deg !important;
  }

  .md\:focus\:cl--rotate-3:focus {
    --transform-rotate: -3deg !important;
  }

  .md\:focus\:cl--rotate-2:focus {
    --transform-rotate: -2deg !important;
  }

  .md\:focus\:cl--rotate-1:focus {
    --transform-rotate: -1deg !important;
  }

  .md\:cl-translate-x-0 {
    --transform-translate-x: 0 !important;
  }

  .md\:cl-translate-x-1 {
    --transform-translate-x: 4px !important;
  }

  .md\:cl-translate-x-2 {
    --transform-translate-x: 8px !important;
  }

  .md\:cl-translate-x-3 {
    --transform-translate-x: 12px !important;
  }

  .md\:cl-translate-x-4 {
    --transform-translate-x: 16px !important;
  }

  .md\:cl-translate-x-5 {
    --transform-translate-x: 20px !important;
  }

  .md\:cl-translate-x-6 {
    --transform-translate-x: 24px !important;
  }

  .md\:cl-translate-x-8 {
    --transform-translate-x: 32px !important;
  }

  .md\:cl-translate-x-10 {
    --transform-translate-x: 40px !important;
  }

  .md\:cl-translate-x-12 {
    --transform-translate-x: 48px !important;
  }

  .md\:cl-translate-x-16 {
    --transform-translate-x: 64px !important;
  }

  .md\:cl-translate-x-20 {
    --transform-translate-x: 80px !important;
  }

  .md\:cl-translate-x-24 {
    --transform-translate-x: 96px !important;
  }

  .md\:cl-translate-x-26 {
    --transform-translate-x: 100px !important;
  }

  .md\:cl-translate-x-28 {
    --transform-translate-x: 110px !important;
  }

  .md\:cl-translate-x-32 {
    --transform-translate-x: 128px !important;
  }

  .md\:cl-translate-x-40 {
    --transform-translate-x: 160px !important;
  }

  .md\:cl-translate-x-48 {
    --transform-translate-x: 192px !important;
  }

  .md\:cl-translate-x-56 {
    --transform-translate-x: 224px !important;
  }

  .md\:cl-translate-x-64 {
    --transform-translate-x: 256px !important;
  }

  .md\:cl-translate-x-px {
    --transform-translate-x: 1px !important;
  }

  .md\:cl--translate-x-1 {
    --transform-translate-x: -4px !important;
  }

  .md\:cl--translate-x-2 {
    --transform-translate-x: -8px !important;
  }

  .md\:cl--translate-x-3 {
    --transform-translate-x: -12px !important;
  }

  .md\:cl--translate-x-4 {
    --transform-translate-x: -16px !important;
  }

  .md\:cl--translate-x-5 {
    --transform-translate-x: -20px !important;
  }

  .md\:cl--translate-x-6 {
    --transform-translate-x: -24px !important;
  }

  .md\:cl--translate-x-8 {
    --transform-translate-x: -32px !important;
  }

  .md\:cl--translate-x-10 {
    --transform-translate-x: -40px !important;
  }

  .md\:cl--translate-x-12 {
    --transform-translate-x: -48px !important;
  }

  .md\:cl--translate-x-16 {
    --transform-translate-x: -64px !important;
  }

  .md\:cl--translate-x-20 {
    --transform-translate-x: -80px !important;
  }

  .md\:cl--translate-x-24 {
    --transform-translate-x: -96px !important;
  }

  .md\:cl--translate-x-26 {
    --transform-translate-x: -100px !important;
  }

  .md\:cl--translate-x-28 {
    --transform-translate-x: -110px !important;
  }

  .md\:cl--translate-x-32 {
    --transform-translate-x: -128px !important;
  }

  .md\:cl--translate-x-40 {
    --transform-translate-x: -160px !important;
  }

  .md\:cl--translate-x-48 {
    --transform-translate-x: -192px !important;
  }

  .md\:cl--translate-x-56 {
    --transform-translate-x: -224px !important;
  }

  .md\:cl--translate-x-64 {
    --transform-translate-x: -256px !important;
  }

  .md\:cl--translate-x-px {
    --transform-translate-x: -1px !important;
  }

  .md\:cl--translate-x-full {
    --transform-translate-x: -100% !important;
  }

  .md\:cl--translate-x-1\/2 {
    --transform-translate-x: -50% !important;
  }

  .md\:cl-translate-x-1\/2 {
    --transform-translate-x: 50% !important;
  }

  .md\:cl-translate-x-full {
    --transform-translate-x: 100% !important;
  }

  .md\:cl-translate-y-0 {
    --transform-translate-y: 0 !important;
  }

  .md\:cl-translate-y-1 {
    --transform-translate-y: 4px !important;
  }

  .md\:cl-translate-y-2 {
    --transform-translate-y: 8px !important;
  }

  .md\:cl-translate-y-3 {
    --transform-translate-y: 12px !important;
  }

  .md\:cl-translate-y-4 {
    --transform-translate-y: 16px !important;
  }

  .md\:cl-translate-y-5 {
    --transform-translate-y: 20px !important;
  }

  .md\:cl-translate-y-6 {
    --transform-translate-y: 24px !important;
  }

  .md\:cl-translate-y-8 {
    --transform-translate-y: 32px !important;
  }

  .md\:cl-translate-y-10 {
    --transform-translate-y: 40px !important;
  }

  .md\:cl-translate-y-12 {
    --transform-translate-y: 48px !important;
  }

  .md\:cl-translate-y-16 {
    --transform-translate-y: 64px !important;
  }

  .md\:cl-translate-y-20 {
    --transform-translate-y: 80px !important;
  }

  .md\:cl-translate-y-24 {
    --transform-translate-y: 96px !important;
  }

  .md\:cl-translate-y-26 {
    --transform-translate-y: 100px !important;
  }

  .md\:cl-translate-y-28 {
    --transform-translate-y: 110px !important;
  }

  .md\:cl-translate-y-32 {
    --transform-translate-y: 128px !important;
  }

  .md\:cl-translate-y-40 {
    --transform-translate-y: 160px !important;
  }

  .md\:cl-translate-y-48 {
    --transform-translate-y: 192px !important;
  }

  .md\:cl-translate-y-56 {
    --transform-translate-y: 224px !important;
  }

  .md\:cl-translate-y-64 {
    --transform-translate-y: 256px !important;
  }

  .md\:cl-translate-y-px {
    --transform-translate-y: 1px !important;
  }

  .md\:cl--translate-y-1 {
    --transform-translate-y: -4px !important;
  }

  .md\:cl--translate-y-2 {
    --transform-translate-y: -8px !important;
  }

  .md\:cl--translate-y-3 {
    --transform-translate-y: -12px !important;
  }

  .md\:cl--translate-y-4 {
    --transform-translate-y: -16px !important;
  }

  .md\:cl--translate-y-5 {
    --transform-translate-y: -20px !important;
  }

  .md\:cl--translate-y-6 {
    --transform-translate-y: -24px !important;
  }

  .md\:cl--translate-y-8 {
    --transform-translate-y: -32px !important;
  }

  .md\:cl--translate-y-10 {
    --transform-translate-y: -40px !important;
  }

  .md\:cl--translate-y-12 {
    --transform-translate-y: -48px !important;
  }

  .md\:cl--translate-y-16 {
    --transform-translate-y: -64px !important;
  }

  .md\:cl--translate-y-20 {
    --transform-translate-y: -80px !important;
  }

  .md\:cl--translate-y-24 {
    --transform-translate-y: -96px !important;
  }

  .md\:cl--translate-y-26 {
    --transform-translate-y: -100px !important;
  }

  .md\:cl--translate-y-28 {
    --transform-translate-y: -110px !important;
  }

  .md\:cl--translate-y-32 {
    --transform-translate-y: -128px !important;
  }

  .md\:cl--translate-y-40 {
    --transform-translate-y: -160px !important;
  }

  .md\:cl--translate-y-48 {
    --transform-translate-y: -192px !important;
  }

  .md\:cl--translate-y-56 {
    --transform-translate-y: -224px !important;
  }

  .md\:cl--translate-y-64 {
    --transform-translate-y: -256px !important;
  }

  .md\:cl--translate-y-px {
    --transform-translate-y: -1px !important;
  }

  .md\:cl--translate-y-full {
    --transform-translate-y: -100% !important;
  }

  .md\:cl--translate-y-1\/2 {
    --transform-translate-y: -50% !important;
  }

  .md\:cl-translate-y-1\/2 {
    --transform-translate-y: 50% !important;
  }

  .md\:cl-translate-y-full {
    --transform-translate-y: 100% !important;
  }

  .md\:hover\:cl-translate-x-0:hover {
    --transform-translate-x: 0 !important;
  }

  .md\:hover\:cl-translate-x-1:hover {
    --transform-translate-x: 4px !important;
  }

  .md\:hover\:cl-translate-x-2:hover {
    --transform-translate-x: 8px !important;
  }

  .md\:hover\:cl-translate-x-3:hover {
    --transform-translate-x: 12px !important;
  }

  .md\:hover\:cl-translate-x-4:hover {
    --transform-translate-x: 16px !important;
  }

  .md\:hover\:cl-translate-x-5:hover {
    --transform-translate-x: 20px !important;
  }

  .md\:hover\:cl-translate-x-6:hover {
    --transform-translate-x: 24px !important;
  }

  .md\:hover\:cl-translate-x-8:hover {
    --transform-translate-x: 32px !important;
  }

  .md\:hover\:cl-translate-x-10:hover {
    --transform-translate-x: 40px !important;
  }

  .md\:hover\:cl-translate-x-12:hover {
    --transform-translate-x: 48px !important;
  }

  .md\:hover\:cl-translate-x-16:hover {
    --transform-translate-x: 64px !important;
  }

  .md\:hover\:cl-translate-x-20:hover {
    --transform-translate-x: 80px !important;
  }

  .md\:hover\:cl-translate-x-24:hover {
    --transform-translate-x: 96px !important;
  }

  .md\:hover\:cl-translate-x-26:hover {
    --transform-translate-x: 100px !important;
  }

  .md\:hover\:cl-translate-x-28:hover {
    --transform-translate-x: 110px !important;
  }

  .md\:hover\:cl-translate-x-32:hover {
    --transform-translate-x: 128px !important;
  }

  .md\:hover\:cl-translate-x-40:hover {
    --transform-translate-x: 160px !important;
  }

  .md\:hover\:cl-translate-x-48:hover {
    --transform-translate-x: 192px !important;
  }

  .md\:hover\:cl-translate-x-56:hover {
    --transform-translate-x: 224px !important;
  }

  .md\:hover\:cl-translate-x-64:hover {
    --transform-translate-x: 256px !important;
  }

  .md\:hover\:cl-translate-x-px:hover {
    --transform-translate-x: 1px !important;
  }

  .md\:hover\:cl--translate-x-1:hover {
    --transform-translate-x: -4px !important;
  }

  .md\:hover\:cl--translate-x-2:hover {
    --transform-translate-x: -8px !important;
  }

  .md\:hover\:cl--translate-x-3:hover {
    --transform-translate-x: -12px !important;
  }

  .md\:hover\:cl--translate-x-4:hover {
    --transform-translate-x: -16px !important;
  }

  .md\:hover\:cl--translate-x-5:hover {
    --transform-translate-x: -20px !important;
  }

  .md\:hover\:cl--translate-x-6:hover {
    --transform-translate-x: -24px !important;
  }

  .md\:hover\:cl--translate-x-8:hover {
    --transform-translate-x: -32px !important;
  }

  .md\:hover\:cl--translate-x-10:hover {
    --transform-translate-x: -40px !important;
  }

  .md\:hover\:cl--translate-x-12:hover {
    --transform-translate-x: -48px !important;
  }

  .md\:hover\:cl--translate-x-16:hover {
    --transform-translate-x: -64px !important;
  }

  .md\:hover\:cl--translate-x-20:hover {
    --transform-translate-x: -80px !important;
  }

  .md\:hover\:cl--translate-x-24:hover {
    --transform-translate-x: -96px !important;
  }

  .md\:hover\:cl--translate-x-26:hover {
    --transform-translate-x: -100px !important;
  }

  .md\:hover\:cl--translate-x-28:hover {
    --transform-translate-x: -110px !important;
  }

  .md\:hover\:cl--translate-x-32:hover {
    --transform-translate-x: -128px !important;
  }

  .md\:hover\:cl--translate-x-40:hover {
    --transform-translate-x: -160px !important;
  }

  .md\:hover\:cl--translate-x-48:hover {
    --transform-translate-x: -192px !important;
  }

  .md\:hover\:cl--translate-x-56:hover {
    --transform-translate-x: -224px !important;
  }

  .md\:hover\:cl--translate-x-64:hover {
    --transform-translate-x: -256px !important;
  }

  .md\:hover\:cl--translate-x-px:hover {
    --transform-translate-x: -1px !important;
  }

  .md\:hover\:cl--translate-x-full:hover {
    --transform-translate-x: -100% !important;
  }

  .md\:hover\:cl--translate-x-1\/2:hover {
    --transform-translate-x: -50% !important;
  }

  .md\:hover\:cl-translate-x-1\/2:hover {
    --transform-translate-x: 50% !important;
  }

  .md\:hover\:cl-translate-x-full:hover {
    --transform-translate-x: 100% !important;
  }

  .md\:hover\:cl-translate-y-0:hover {
    --transform-translate-y: 0 !important;
  }

  .md\:hover\:cl-translate-y-1:hover {
    --transform-translate-y: 4px !important;
  }

  .md\:hover\:cl-translate-y-2:hover {
    --transform-translate-y: 8px !important;
  }

  .md\:hover\:cl-translate-y-3:hover {
    --transform-translate-y: 12px !important;
  }

  .md\:hover\:cl-translate-y-4:hover {
    --transform-translate-y: 16px !important;
  }

  .md\:hover\:cl-translate-y-5:hover {
    --transform-translate-y: 20px !important;
  }

  .md\:hover\:cl-translate-y-6:hover {
    --transform-translate-y: 24px !important;
  }

  .md\:hover\:cl-translate-y-8:hover {
    --transform-translate-y: 32px !important;
  }

  .md\:hover\:cl-translate-y-10:hover {
    --transform-translate-y: 40px !important;
  }

  .md\:hover\:cl-translate-y-12:hover {
    --transform-translate-y: 48px !important;
  }

  .md\:hover\:cl-translate-y-16:hover {
    --transform-translate-y: 64px !important;
  }

  .md\:hover\:cl-translate-y-20:hover {
    --transform-translate-y: 80px !important;
  }

  .md\:hover\:cl-translate-y-24:hover {
    --transform-translate-y: 96px !important;
  }

  .md\:hover\:cl-translate-y-26:hover {
    --transform-translate-y: 100px !important;
  }

  .md\:hover\:cl-translate-y-28:hover {
    --transform-translate-y: 110px !important;
  }

  .md\:hover\:cl-translate-y-32:hover {
    --transform-translate-y: 128px !important;
  }

  .md\:hover\:cl-translate-y-40:hover {
    --transform-translate-y: 160px !important;
  }

  .md\:hover\:cl-translate-y-48:hover {
    --transform-translate-y: 192px !important;
  }

  .md\:hover\:cl-translate-y-56:hover {
    --transform-translate-y: 224px !important;
  }

  .md\:hover\:cl-translate-y-64:hover {
    --transform-translate-y: 256px !important;
  }

  .md\:hover\:cl-translate-y-px:hover {
    --transform-translate-y: 1px !important;
  }

  .md\:hover\:cl--translate-y-1:hover {
    --transform-translate-y: -4px !important;
  }

  .md\:hover\:cl--translate-y-2:hover {
    --transform-translate-y: -8px !important;
  }

  .md\:hover\:cl--translate-y-3:hover {
    --transform-translate-y: -12px !important;
  }

  .md\:hover\:cl--translate-y-4:hover {
    --transform-translate-y: -16px !important;
  }

  .md\:hover\:cl--translate-y-5:hover {
    --transform-translate-y: -20px !important;
  }

  .md\:hover\:cl--translate-y-6:hover {
    --transform-translate-y: -24px !important;
  }

  .md\:hover\:cl--translate-y-8:hover {
    --transform-translate-y: -32px !important;
  }

  .md\:hover\:cl--translate-y-10:hover {
    --transform-translate-y: -40px !important;
  }

  .md\:hover\:cl--translate-y-12:hover {
    --transform-translate-y: -48px !important;
  }

  .md\:hover\:cl--translate-y-16:hover {
    --transform-translate-y: -64px !important;
  }

  .md\:hover\:cl--translate-y-20:hover {
    --transform-translate-y: -80px !important;
  }

  .md\:hover\:cl--translate-y-24:hover {
    --transform-translate-y: -96px !important;
  }

  .md\:hover\:cl--translate-y-26:hover {
    --transform-translate-y: -100px !important;
  }

  .md\:hover\:cl--translate-y-28:hover {
    --transform-translate-y: -110px !important;
  }

  .md\:hover\:cl--translate-y-32:hover {
    --transform-translate-y: -128px !important;
  }

  .md\:hover\:cl--translate-y-40:hover {
    --transform-translate-y: -160px !important;
  }

  .md\:hover\:cl--translate-y-48:hover {
    --transform-translate-y: -192px !important;
  }

  .md\:hover\:cl--translate-y-56:hover {
    --transform-translate-y: -224px !important;
  }

  .md\:hover\:cl--translate-y-64:hover {
    --transform-translate-y: -256px !important;
  }

  .md\:hover\:cl--translate-y-px:hover {
    --transform-translate-y: -1px !important;
  }

  .md\:hover\:cl--translate-y-full:hover {
    --transform-translate-y: -100% !important;
  }

  .md\:hover\:cl--translate-y-1\/2:hover {
    --transform-translate-y: -50% !important;
  }

  .md\:hover\:cl-translate-y-1\/2:hover {
    --transform-translate-y: 50% !important;
  }

  .md\:hover\:cl-translate-y-full:hover {
    --transform-translate-y: 100% !important;
  }

  .md\:focus\:cl-translate-x-0:focus {
    --transform-translate-x: 0 !important;
  }

  .md\:focus\:cl-translate-x-1:focus {
    --transform-translate-x: 4px !important;
  }

  .md\:focus\:cl-translate-x-2:focus {
    --transform-translate-x: 8px !important;
  }

  .md\:focus\:cl-translate-x-3:focus {
    --transform-translate-x: 12px !important;
  }

  .md\:focus\:cl-translate-x-4:focus {
    --transform-translate-x: 16px !important;
  }

  .md\:focus\:cl-translate-x-5:focus {
    --transform-translate-x: 20px !important;
  }

  .md\:focus\:cl-translate-x-6:focus {
    --transform-translate-x: 24px !important;
  }

  .md\:focus\:cl-translate-x-8:focus {
    --transform-translate-x: 32px !important;
  }

  .md\:focus\:cl-translate-x-10:focus {
    --transform-translate-x: 40px !important;
  }

  .md\:focus\:cl-translate-x-12:focus {
    --transform-translate-x: 48px !important;
  }

  .md\:focus\:cl-translate-x-16:focus {
    --transform-translate-x: 64px !important;
  }

  .md\:focus\:cl-translate-x-20:focus {
    --transform-translate-x: 80px !important;
  }

  .md\:focus\:cl-translate-x-24:focus {
    --transform-translate-x: 96px !important;
  }

  .md\:focus\:cl-translate-x-26:focus {
    --transform-translate-x: 100px !important;
  }

  .md\:focus\:cl-translate-x-28:focus {
    --transform-translate-x: 110px !important;
  }

  .md\:focus\:cl-translate-x-32:focus {
    --transform-translate-x: 128px !important;
  }

  .md\:focus\:cl-translate-x-40:focus {
    --transform-translate-x: 160px !important;
  }

  .md\:focus\:cl-translate-x-48:focus {
    --transform-translate-x: 192px !important;
  }

  .md\:focus\:cl-translate-x-56:focus {
    --transform-translate-x: 224px !important;
  }

  .md\:focus\:cl-translate-x-64:focus {
    --transform-translate-x: 256px !important;
  }

  .md\:focus\:cl-translate-x-px:focus {
    --transform-translate-x: 1px !important;
  }

  .md\:focus\:cl--translate-x-1:focus {
    --transform-translate-x: -4px !important;
  }

  .md\:focus\:cl--translate-x-2:focus {
    --transform-translate-x: -8px !important;
  }

  .md\:focus\:cl--translate-x-3:focus {
    --transform-translate-x: -12px !important;
  }

  .md\:focus\:cl--translate-x-4:focus {
    --transform-translate-x: -16px !important;
  }

  .md\:focus\:cl--translate-x-5:focus {
    --transform-translate-x: -20px !important;
  }

  .md\:focus\:cl--translate-x-6:focus {
    --transform-translate-x: -24px !important;
  }

  .md\:focus\:cl--translate-x-8:focus {
    --transform-translate-x: -32px !important;
  }

  .md\:focus\:cl--translate-x-10:focus {
    --transform-translate-x: -40px !important;
  }

  .md\:focus\:cl--translate-x-12:focus {
    --transform-translate-x: -48px !important;
  }

  .md\:focus\:cl--translate-x-16:focus {
    --transform-translate-x: -64px !important;
  }

  .md\:focus\:cl--translate-x-20:focus {
    --transform-translate-x: -80px !important;
  }

  .md\:focus\:cl--translate-x-24:focus {
    --transform-translate-x: -96px !important;
  }

  .md\:focus\:cl--translate-x-26:focus {
    --transform-translate-x: -100px !important;
  }

  .md\:focus\:cl--translate-x-28:focus {
    --transform-translate-x: -110px !important;
  }

  .md\:focus\:cl--translate-x-32:focus {
    --transform-translate-x: -128px !important;
  }

  .md\:focus\:cl--translate-x-40:focus {
    --transform-translate-x: -160px !important;
  }

  .md\:focus\:cl--translate-x-48:focus {
    --transform-translate-x: -192px !important;
  }

  .md\:focus\:cl--translate-x-56:focus {
    --transform-translate-x: -224px !important;
  }

  .md\:focus\:cl--translate-x-64:focus {
    --transform-translate-x: -256px !important;
  }

  .md\:focus\:cl--translate-x-px:focus {
    --transform-translate-x: -1px !important;
  }

  .md\:focus\:cl--translate-x-full:focus {
    --transform-translate-x: -100% !important;
  }

  .md\:focus\:cl--translate-x-1\/2:focus {
    --transform-translate-x: -50% !important;
  }

  .md\:focus\:cl-translate-x-1\/2:focus {
    --transform-translate-x: 50% !important;
  }

  .md\:focus\:cl-translate-x-full:focus {
    --transform-translate-x: 100% !important;
  }

  .md\:focus\:cl-translate-y-0:focus {
    --transform-translate-y: 0 !important;
  }

  .md\:focus\:cl-translate-y-1:focus {
    --transform-translate-y: 4px !important;
  }

  .md\:focus\:cl-translate-y-2:focus {
    --transform-translate-y: 8px !important;
  }

  .md\:focus\:cl-translate-y-3:focus {
    --transform-translate-y: 12px !important;
  }

  .md\:focus\:cl-translate-y-4:focus {
    --transform-translate-y: 16px !important;
  }

  .md\:focus\:cl-translate-y-5:focus {
    --transform-translate-y: 20px !important;
  }

  .md\:focus\:cl-translate-y-6:focus {
    --transform-translate-y: 24px !important;
  }

  .md\:focus\:cl-translate-y-8:focus {
    --transform-translate-y: 32px !important;
  }

  .md\:focus\:cl-translate-y-10:focus {
    --transform-translate-y: 40px !important;
  }

  .md\:focus\:cl-translate-y-12:focus {
    --transform-translate-y: 48px !important;
  }

  .md\:focus\:cl-translate-y-16:focus {
    --transform-translate-y: 64px !important;
  }

  .md\:focus\:cl-translate-y-20:focus {
    --transform-translate-y: 80px !important;
  }

  .md\:focus\:cl-translate-y-24:focus {
    --transform-translate-y: 96px !important;
  }

  .md\:focus\:cl-translate-y-26:focus {
    --transform-translate-y: 100px !important;
  }

  .md\:focus\:cl-translate-y-28:focus {
    --transform-translate-y: 110px !important;
  }

  .md\:focus\:cl-translate-y-32:focus {
    --transform-translate-y: 128px !important;
  }

  .md\:focus\:cl-translate-y-40:focus {
    --transform-translate-y: 160px !important;
  }

  .md\:focus\:cl-translate-y-48:focus {
    --transform-translate-y: 192px !important;
  }

  .md\:focus\:cl-translate-y-56:focus {
    --transform-translate-y: 224px !important;
  }

  .md\:focus\:cl-translate-y-64:focus {
    --transform-translate-y: 256px !important;
  }

  .md\:focus\:cl-translate-y-px:focus {
    --transform-translate-y: 1px !important;
  }

  .md\:focus\:cl--translate-y-1:focus {
    --transform-translate-y: -4px !important;
  }

  .md\:focus\:cl--translate-y-2:focus {
    --transform-translate-y: -8px !important;
  }

  .md\:focus\:cl--translate-y-3:focus {
    --transform-translate-y: -12px !important;
  }

  .md\:focus\:cl--translate-y-4:focus {
    --transform-translate-y: -16px !important;
  }

  .md\:focus\:cl--translate-y-5:focus {
    --transform-translate-y: -20px !important;
  }

  .md\:focus\:cl--translate-y-6:focus {
    --transform-translate-y: -24px !important;
  }

  .md\:focus\:cl--translate-y-8:focus {
    --transform-translate-y: -32px !important;
  }

  .md\:focus\:cl--translate-y-10:focus {
    --transform-translate-y: -40px !important;
  }

  .md\:focus\:cl--translate-y-12:focus {
    --transform-translate-y: -48px !important;
  }

  .md\:focus\:cl--translate-y-16:focus {
    --transform-translate-y: -64px !important;
  }

  .md\:focus\:cl--translate-y-20:focus {
    --transform-translate-y: -80px !important;
  }

  .md\:focus\:cl--translate-y-24:focus {
    --transform-translate-y: -96px !important;
  }

  .md\:focus\:cl--translate-y-26:focus {
    --transform-translate-y: -100px !important;
  }

  .md\:focus\:cl--translate-y-28:focus {
    --transform-translate-y: -110px !important;
  }

  .md\:focus\:cl--translate-y-32:focus {
    --transform-translate-y: -128px !important;
  }

  .md\:focus\:cl--translate-y-40:focus {
    --transform-translate-y: -160px !important;
  }

  .md\:focus\:cl--translate-y-48:focus {
    --transform-translate-y: -192px !important;
  }

  .md\:focus\:cl--translate-y-56:focus {
    --transform-translate-y: -224px !important;
  }

  .md\:focus\:cl--translate-y-64:focus {
    --transform-translate-y: -256px !important;
  }

  .md\:focus\:cl--translate-y-px:focus {
    --transform-translate-y: -1px !important;
  }

  .md\:focus\:cl--translate-y-full:focus {
    --transform-translate-y: -100% !important;
  }

  .md\:focus\:cl--translate-y-1\/2:focus {
    --transform-translate-y: -50% !important;
  }

  .md\:focus\:cl-translate-y-1\/2:focus {
    --transform-translate-y: 50% !important;
  }

  .md\:focus\:cl-translate-y-full:focus {
    --transform-translate-y: 100% !important;
  }

  .md\:cl-skew-x-0 {
    --transform-skew-x: 0 !important;
  }

  .md\:cl-skew-x-1 {
    --transform-skew-x: 1deg !important;
  }

  .md\:cl-skew-x-2 {
    --transform-skew-x: 2deg !important;
  }

  .md\:cl-skew-x-3 {
    --transform-skew-x: 3deg !important;
  }

  .md\:cl-skew-x-6 {
    --transform-skew-x: 6deg !important;
  }

  .md\:cl-skew-x-12 {
    --transform-skew-x: 12deg !important;
  }

  .md\:cl--skew-x-12 {
    --transform-skew-x: -12deg !important;
  }

  .md\:cl--skew-x-6 {
    --transform-skew-x: -6deg !important;
  }

  .md\:cl--skew-x-3 {
    --transform-skew-x: -3deg !important;
  }

  .md\:cl--skew-x-2 {
    --transform-skew-x: -2deg !important;
  }

  .md\:cl--skew-x-1 {
    --transform-skew-x: -1deg !important;
  }

  .md\:cl-skew-y-0 {
    --transform-skew-y: 0 !important;
  }

  .md\:cl-skew-y-1 {
    --transform-skew-y: 1deg !important;
  }

  .md\:cl-skew-y-2 {
    --transform-skew-y: 2deg !important;
  }

  .md\:cl-skew-y-3 {
    --transform-skew-y: 3deg !important;
  }

  .md\:cl-skew-y-6 {
    --transform-skew-y: 6deg !important;
  }

  .md\:cl-skew-y-12 {
    --transform-skew-y: 12deg !important;
  }

  .md\:cl--skew-y-12 {
    --transform-skew-y: -12deg !important;
  }

  .md\:cl--skew-y-6 {
    --transform-skew-y: -6deg !important;
  }

  .md\:cl--skew-y-3 {
    --transform-skew-y: -3deg !important;
  }

  .md\:cl--skew-y-2 {
    --transform-skew-y: -2deg !important;
  }

  .md\:cl--skew-y-1 {
    --transform-skew-y: -1deg !important;
  }

  .md\:hover\:cl-skew-x-0:hover {
    --transform-skew-x: 0 !important;
  }

  .md\:hover\:cl-skew-x-1:hover {
    --transform-skew-x: 1deg !important;
  }

  .md\:hover\:cl-skew-x-2:hover {
    --transform-skew-x: 2deg !important;
  }

  .md\:hover\:cl-skew-x-3:hover {
    --transform-skew-x: 3deg !important;
  }

  .md\:hover\:cl-skew-x-6:hover {
    --transform-skew-x: 6deg !important;
  }

  .md\:hover\:cl-skew-x-12:hover {
    --transform-skew-x: 12deg !important;
  }

  .md\:hover\:cl--skew-x-12:hover {
    --transform-skew-x: -12deg !important;
  }

  .md\:hover\:cl--skew-x-6:hover {
    --transform-skew-x: -6deg !important;
  }

  .md\:hover\:cl--skew-x-3:hover {
    --transform-skew-x: -3deg !important;
  }

  .md\:hover\:cl--skew-x-2:hover {
    --transform-skew-x: -2deg !important;
  }

  .md\:hover\:cl--skew-x-1:hover {
    --transform-skew-x: -1deg !important;
  }

  .md\:hover\:cl-skew-y-0:hover {
    --transform-skew-y: 0 !important;
  }

  .md\:hover\:cl-skew-y-1:hover {
    --transform-skew-y: 1deg !important;
  }

  .md\:hover\:cl-skew-y-2:hover {
    --transform-skew-y: 2deg !important;
  }

  .md\:hover\:cl-skew-y-3:hover {
    --transform-skew-y: 3deg !important;
  }

  .md\:hover\:cl-skew-y-6:hover {
    --transform-skew-y: 6deg !important;
  }

  .md\:hover\:cl-skew-y-12:hover {
    --transform-skew-y: 12deg !important;
  }

  .md\:hover\:cl--skew-y-12:hover {
    --transform-skew-y: -12deg !important;
  }

  .md\:hover\:cl--skew-y-6:hover {
    --transform-skew-y: -6deg !important;
  }

  .md\:hover\:cl--skew-y-3:hover {
    --transform-skew-y: -3deg !important;
  }

  .md\:hover\:cl--skew-y-2:hover {
    --transform-skew-y: -2deg !important;
  }

  .md\:hover\:cl--skew-y-1:hover {
    --transform-skew-y: -1deg !important;
  }

  .md\:focus\:cl-skew-x-0:focus {
    --transform-skew-x: 0 !important;
  }

  .md\:focus\:cl-skew-x-1:focus {
    --transform-skew-x: 1deg !important;
  }

  .md\:focus\:cl-skew-x-2:focus {
    --transform-skew-x: 2deg !important;
  }

  .md\:focus\:cl-skew-x-3:focus {
    --transform-skew-x: 3deg !important;
  }

  .md\:focus\:cl-skew-x-6:focus {
    --transform-skew-x: 6deg !important;
  }

  .md\:focus\:cl-skew-x-12:focus {
    --transform-skew-x: 12deg !important;
  }

  .md\:focus\:cl--skew-x-12:focus {
    --transform-skew-x: -12deg !important;
  }

  .md\:focus\:cl--skew-x-6:focus {
    --transform-skew-x: -6deg !important;
  }

  .md\:focus\:cl--skew-x-3:focus {
    --transform-skew-x: -3deg !important;
  }

  .md\:focus\:cl--skew-x-2:focus {
    --transform-skew-x: -2deg !important;
  }

  .md\:focus\:cl--skew-x-1:focus {
    --transform-skew-x: -1deg !important;
  }

  .md\:focus\:cl-skew-y-0:focus {
    --transform-skew-y: 0 !important;
  }

  .md\:focus\:cl-skew-y-1:focus {
    --transform-skew-y: 1deg !important;
  }

  .md\:focus\:cl-skew-y-2:focus {
    --transform-skew-y: 2deg !important;
  }

  .md\:focus\:cl-skew-y-3:focus {
    --transform-skew-y: 3deg !important;
  }

  .md\:focus\:cl-skew-y-6:focus {
    --transform-skew-y: 6deg !important;
  }

  .md\:focus\:cl-skew-y-12:focus {
    --transform-skew-y: 12deg !important;
  }

  .md\:focus\:cl--skew-y-12:focus {
    --transform-skew-y: -12deg !important;
  }

  .md\:focus\:cl--skew-y-6:focus {
    --transform-skew-y: -6deg !important;
  }

  .md\:focus\:cl--skew-y-3:focus {
    --transform-skew-y: -3deg !important;
  }

  .md\:focus\:cl--skew-y-2:focus {
    --transform-skew-y: -2deg !important;
  }

  .md\:focus\:cl--skew-y-1:focus {
    --transform-skew-y: -1deg !important;
  }

  .md\:cl-transition-none {
    transition-property: none !important;
  }

  .md\:cl-transition-all {
    transition-property: all !important;
  }

  .md\:cl-transition {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
  }

  .md\:cl-transition-colors {
    transition-property: background-color, border-color, color, fill, stroke !important;
  }

  .md\:cl-transition-opacity {
    transition-property: opacity !important;
  }

  .md\:cl-transition-shadow {
    transition-property: box-shadow !important;
  }

  .md\:cl-transition-transform {
    transition-property: transform !important;
  }

  .md\:cl-ease-linear {
    transition-timing-function: linear !important;
  }

  .md\:cl-ease-in {
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important;
  }

  .md\:cl-ease-out {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important;
  }

  .md\:cl-ease-in-out {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .md\:cl-duration-75 {
    transition-duration: 75ms !important;
  }

  .md\:cl-duration-100 {
    transition-duration: 100ms !important;
  }

  .md\:cl-duration-150 {
    transition-duration: 150ms !important;
  }

  .md\:cl-duration-200 {
    transition-duration: 200ms !important;
  }

  .md\:cl-duration-300 {
    transition-duration: 300ms !important;
  }

  .md\:cl-duration-500 {
    transition-duration: 500ms !important;
  }

  .md\:cl-duration-700 {
    transition-duration: 700ms !important;
  }

  .md\:cl-duration-1000 {
    transition-duration: 1000ms !important;
  }

  .md\:cl-delay-75 {
    transition-delay: 75ms !important;
  }

  .md\:cl-delay-100 {
    transition-delay: 100ms !important;
  }

  .md\:cl-delay-150 {
    transition-delay: 150ms !important;
  }

  .md\:cl-delay-200 {
    transition-delay: 200ms !important;
  }

  .md\:cl-delay-300 {
    transition-delay: 300ms !important;
  }

  .md\:cl-delay-500 {
    transition-delay: 500ms !important;
  }

  .md\:cl-delay-700 {
    transition-delay: 700ms !important;
  }

  .md\:cl-delay-1000 {
    transition-delay: 1000ms !important;
  }

  .md\:cl-animate-none {
    animation: none !important;
  }

  .md\:cl-animate-spin {
    animation: spin 1s linear infinite !important;
  }

  .md\:cl-animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
  }

  .md\:cl-animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
  }

  .md\:cl-animate-bounce {
    animation: bounce 1s infinite !important;
  }
}

@media (min-width: 1024px) {
  .lg\:cl-container {
    width: 100%;
  }

  @media (min-width: 640px) {
    .lg\:cl-container {
      max-width: 640px;
    }
  }

  @media (min-width: 768px) {
    .lg\:cl-container {
      max-width: 768px;
    }
  }

  @media (min-width: 1024px) {
    .lg\:cl-container {
      max-width: 1024px;
    }
  }

  @media (min-width: 1280px) {
    .lg\:cl-container {
      max-width: 1280px;
    }
  }

  .lg\:cl-space-y-0 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--space-y-reverse)) !important;
  }

  .lg\:cl-space-x-0 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl-space-y-1 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(4px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(4px * var(--space-y-reverse)) !important;
  }

  .lg\:cl-space-x-1 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(4px * var(--space-x-reverse)) !important;
    margin-left: calc(4px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl-space-y-2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(8px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(8px * var(--space-y-reverse)) !important;
  }

  .lg\:cl-space-x-2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(8px * var(--space-x-reverse)) !important;
    margin-left: calc(8px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl-space-y-3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(12px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(12px * var(--space-y-reverse)) !important;
  }

  .lg\:cl-space-x-3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(12px * var(--space-x-reverse)) !important;
    margin-left: calc(12px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl-space-y-4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16px * var(--space-y-reverse)) !important;
  }

  .lg\:cl-space-x-4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16px * var(--space-x-reverse)) !important;
    margin-left: calc(16px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl-space-y-5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(20px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(20px * var(--space-y-reverse)) !important;
  }

  .lg\:cl-space-x-5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(20px * var(--space-x-reverse)) !important;
    margin-left: calc(20px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl-space-y-6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(24px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(24px * var(--space-y-reverse)) !important;
  }

  .lg\:cl-space-x-6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(24px * var(--space-x-reverse)) !important;
    margin-left: calc(24px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl-space-y-8 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(32px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(32px * var(--space-y-reverse)) !important;
  }

  .lg\:cl-space-x-8 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(32px * var(--space-x-reverse)) !important;
    margin-left: calc(32px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl-space-y-10 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(40px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(40px * var(--space-y-reverse)) !important;
  }

  .lg\:cl-space-x-10 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(40px * var(--space-x-reverse)) !important;
    margin-left: calc(40px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl-space-y-12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(48px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(48px * var(--space-y-reverse)) !important;
  }

  .lg\:cl-space-x-12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(48px * var(--space-x-reverse)) !important;
    margin-left: calc(48px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl-space-y-16 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(64px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(64px * var(--space-y-reverse)) !important;
  }

  .lg\:cl-space-x-16 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(64px * var(--space-x-reverse)) !important;
    margin-left: calc(64px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl-space-y-20 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(80px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(80px * var(--space-y-reverse)) !important;
  }

  .lg\:cl-space-x-20 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(80px * var(--space-x-reverse)) !important;
    margin-left: calc(80px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl-space-y-24 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(96px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(96px * var(--space-y-reverse)) !important;
  }

  .lg\:cl-space-x-24 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(96px * var(--space-x-reverse)) !important;
    margin-left: calc(96px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl-space-y-26 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(100px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(100px * var(--space-y-reverse)) !important;
  }

  .lg\:cl-space-x-26 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(100px * var(--space-x-reverse)) !important;
    margin-left: calc(100px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl-space-y-28 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(110px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(110px * var(--space-y-reverse)) !important;
  }

  .lg\:cl-space-x-28 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(110px * var(--space-x-reverse)) !important;
    margin-left: calc(110px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl-space-y-32 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(128px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(128px * var(--space-y-reverse)) !important;
  }

  .lg\:cl-space-x-32 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(128px * var(--space-x-reverse)) !important;
    margin-left: calc(128px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl-space-y-40 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(160px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(160px * var(--space-y-reverse)) !important;
  }

  .lg\:cl-space-x-40 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(160px * var(--space-x-reverse)) !important;
    margin-left: calc(160px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl-space-y-48 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(192px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(192px * var(--space-y-reverse)) !important;
  }

  .lg\:cl-space-x-48 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(192px * var(--space-x-reverse)) !important;
    margin-left: calc(192px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl-space-y-56 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(224px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(224px * var(--space-y-reverse)) !important;
  }

  .lg\:cl-space-x-56 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(224px * var(--space-x-reverse)) !important;
    margin-left: calc(224px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl-space-y-64 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(256px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(256px * var(--space-y-reverse)) !important;
  }

  .lg\:cl-space-x-64 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(256px * var(--space-x-reverse)) !important;
    margin-left: calc(256px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl-space-y-px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1px * var(--space-y-reverse)) !important;
  }

  .lg\:cl-space-x-px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1px * var(--space-x-reverse)) !important;
    margin-left: calc(1px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl--space-y-1 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-4px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-4px * var(--space-y-reverse)) !important;
  }

  .lg\:cl--space-x-1 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-4px * var(--space-x-reverse)) !important;
    margin-left: calc(-4px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl--space-y-2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-8px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-8px * var(--space-y-reverse)) !important;
  }

  .lg\:cl--space-x-2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-8px * var(--space-x-reverse)) !important;
    margin-left: calc(-8px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl--space-y-3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-12px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-12px * var(--space-y-reverse)) !important;
  }

  .lg\:cl--space-x-3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-12px * var(--space-x-reverse)) !important;
    margin-left: calc(-12px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl--space-y-4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16px * var(--space-y-reverse)) !important;
  }

  .lg\:cl--space-x-4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16px * var(--space-x-reverse)) !important;
    margin-left: calc(-16px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl--space-y-5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-20px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-20px * var(--space-y-reverse)) !important;
  }

  .lg\:cl--space-x-5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-20px * var(--space-x-reverse)) !important;
    margin-left: calc(-20px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl--space-y-6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-24px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-24px * var(--space-y-reverse)) !important;
  }

  .lg\:cl--space-x-6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-24px * var(--space-x-reverse)) !important;
    margin-left: calc(-24px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl--space-y-8 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-32px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-32px * var(--space-y-reverse)) !important;
  }

  .lg\:cl--space-x-8 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-32px * var(--space-x-reverse)) !important;
    margin-left: calc(-32px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl--space-y-10 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-40px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-40px * var(--space-y-reverse)) !important;
  }

  .lg\:cl--space-x-10 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-40px * var(--space-x-reverse)) !important;
    margin-left: calc(-40px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl--space-y-12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-48px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-48px * var(--space-y-reverse)) !important;
  }

  .lg\:cl--space-x-12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-48px * var(--space-x-reverse)) !important;
    margin-left: calc(-48px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl--space-y-16 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-64px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-64px * var(--space-y-reverse)) !important;
  }

  .lg\:cl--space-x-16 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-64px * var(--space-x-reverse)) !important;
    margin-left: calc(-64px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl--space-y-20 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-80px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-80px * var(--space-y-reverse)) !important;
  }

  .lg\:cl--space-x-20 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-80px * var(--space-x-reverse)) !important;
    margin-left: calc(-80px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl--space-y-24 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-96px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-96px * var(--space-y-reverse)) !important;
  }

  .lg\:cl--space-x-24 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-96px * var(--space-x-reverse)) !important;
    margin-left: calc(-96px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl--space-y-26 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-100px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-100px * var(--space-y-reverse)) !important;
  }

  .lg\:cl--space-x-26 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-100px * var(--space-x-reverse)) !important;
    margin-left: calc(-100px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl--space-y-28 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-110px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-110px * var(--space-y-reverse)) !important;
  }

  .lg\:cl--space-x-28 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-110px * var(--space-x-reverse)) !important;
    margin-left: calc(-110px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl--space-y-32 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-128px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-128px * var(--space-y-reverse)) !important;
  }

  .lg\:cl--space-x-32 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-128px * var(--space-x-reverse)) !important;
    margin-left: calc(-128px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl--space-y-40 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-160px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-160px * var(--space-y-reverse)) !important;
  }

  .lg\:cl--space-x-40 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-160px * var(--space-x-reverse)) !important;
    margin-left: calc(-160px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl--space-y-48 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-192px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-192px * var(--space-y-reverse)) !important;
  }

  .lg\:cl--space-x-48 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-192px * var(--space-x-reverse)) !important;
    margin-left: calc(-192px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl--space-y-56 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-224px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-224px * var(--space-y-reverse)) !important;
  }

  .lg\:cl--space-x-56 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-224px * var(--space-x-reverse)) !important;
    margin-left: calc(-224px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl--space-y-64 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-256px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-256px * var(--space-y-reverse)) !important;
  }

  .lg\:cl--space-x-64 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-256px * var(--space-x-reverse)) !important;
    margin-left: calc(-256px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl--space-y-px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1px * var(--space-y-reverse)) !important;
  }

  .lg\:cl--space-x-px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1px * var(--space-x-reverse)) !important;
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse))) !important;
  }

  .lg\:cl-space-y-reverse > :not(template) ~ :not(template) {
    --space-y-reverse: 1 !important;
  }

  .lg\:cl-space-x-reverse > :not(template) ~ :not(template) {
    --space-x-reverse: 1 !important;
  }

  .lg\:cl-divide-y-0 > :not(template) ~ :not(template) {
    --divide-y-reverse: 0 !important;
    border-top-width: calc(0px * calc(1 - var(--divide-y-reverse))) !important;
    border-bottom-width: calc(0px * var(--divide-y-reverse)) !important;
  }

  .lg\:cl-divide-x-0 > :not(template) ~ :not(template) {
    --divide-x-reverse: 0 !important;
    border-right-width: calc(0px * var(--divide-x-reverse)) !important;
    border-left-width: calc(0px * calc(1 - var(--divide-x-reverse))) !important;
  }

  .lg\:cl-divide-y-2 > :not(template) ~ :not(template) {
    --divide-y-reverse: 0 !important;
    border-top-width: calc(2px * calc(1 - var(--divide-y-reverse))) !important;
    border-bottom-width: calc(2px * var(--divide-y-reverse)) !important;
  }

  .lg\:cl-divide-x-2 > :not(template) ~ :not(template) {
    --divide-x-reverse: 0 !important;
    border-right-width: calc(2px * var(--divide-x-reverse)) !important;
    border-left-width: calc(2px * calc(1 - var(--divide-x-reverse))) !important;
  }

  .lg\:cl-divide-y-4 > :not(template) ~ :not(template) {
    --divide-y-reverse: 0 !important;
    border-top-width: calc(4px * calc(1 - var(--divide-y-reverse))) !important;
    border-bottom-width: calc(4px * var(--divide-y-reverse)) !important;
  }

  .lg\:cl-divide-x-4 > :not(template) ~ :not(template) {
    --divide-x-reverse: 0 !important;
    border-right-width: calc(4px * var(--divide-x-reverse)) !important;
    border-left-width: calc(4px * calc(1 - var(--divide-x-reverse))) !important;
  }

  .lg\:cl-divide-y-8 > :not(template) ~ :not(template) {
    --divide-y-reverse: 0 !important;
    border-top-width: calc(8px * calc(1 - var(--divide-y-reverse))) !important;
    border-bottom-width: calc(8px * var(--divide-y-reverse)) !important;
  }

  .lg\:cl-divide-x-8 > :not(template) ~ :not(template) {
    --divide-x-reverse: 0 !important;
    border-right-width: calc(8px * var(--divide-x-reverse)) !important;
    border-left-width: calc(8px * calc(1 - var(--divide-x-reverse))) !important;
  }

  .lg\:cl-divide-y-15 > :not(template) ~ :not(template) {
    --divide-y-reverse: 0 !important;
    border-top-width: calc(15px * calc(1 - var(--divide-y-reverse))) !important;
    border-bottom-width: calc(15px * var(--divide-y-reverse)) !important;
  }

  .lg\:cl-divide-x-15 > :not(template) ~ :not(template) {
    --divide-x-reverse: 0 !important;
    border-right-width: calc(15px * var(--divide-x-reverse)) !important;
    border-left-width: calc(15px * calc(1 - var(--divide-x-reverse))) !important;
  }

  .lg\:cl-divide-y > :not(template) ~ :not(template) {
    --divide-y-reverse: 0 !important;
    border-top-width: calc(1px * calc(1 - var(--divide-y-reverse))) !important;
    border-bottom-width: calc(1px * var(--divide-y-reverse)) !important;
  }

  .lg\:cl-divide-x > :not(template) ~ :not(template) {
    --divide-x-reverse: 0 !important;
    border-right-width: calc(1px * var(--divide-x-reverse)) !important;
    border-left-width: calc(1px * calc(1 - var(--divide-x-reverse))) !important;
  }

  .lg\:cl-divide-y-reverse > :not(template) ~ :not(template) {
    --divide-y-reverse: 1 !important;
  }

  .lg\:cl-divide-x-reverse > :not(template) ~ :not(template) {
    --divide-x-reverse: 1 !important;
  }

  .lg\:cl-divide-transparent > :not(template) ~ :not(template) {
    border-color: transparent !important;
  }

  .lg\:cl-divide-current > :not(template) ~ :not(template) {
    border-color: currentColor !important;
  }

  .lg\:cl-divide-black > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #000 !important;
    border-color: rgba(0, 0, 0, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-white > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fff !important;
    border-color: rgba(255, 255, 255, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-gray-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #f7fafc !important;
    border-color: rgba(247, 250, 252, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-gray-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #edf2f7 !important;
    border-color: rgba(237, 242, 247, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-gray-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #e2e8f0 !important;
    border-color: rgba(226, 232, 240, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-gray-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #cbd5e0 !important;
    border-color: rgba(203, 213, 224, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-gray-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #a0aec0 !important;
    border-color: rgba(160, 174, 192, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-gray-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #718096 !important;
    border-color: rgba(113, 128, 150, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-gray-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #4a5568 !important;
    border-color: rgba(74, 85, 104, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-gray-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #2d3748 !important;
    border-color: rgba(45, 55, 72, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-gray-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #1a202c !important;
    border-color: rgba(26, 32, 44, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-red-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fff5f5 !important;
    border-color: rgba(255, 245, 245, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-red-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fed7d7 !important;
    border-color: rgba(254, 215, 215, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-red-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #feb2b2 !important;
    border-color: rgba(254, 178, 178, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-red-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fc8181 !important;
    border-color: rgba(252, 129, 129, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-red-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #f56565 !important;
    border-color: rgba(245, 101, 101, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-red-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #e53e3e !important;
    border-color: rgba(229, 62, 62, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-red-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #c53030 !important;
    border-color: rgba(197, 48, 48, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-red-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #9b2c2c !important;
    border-color: rgba(155, 44, 44, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-red-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #742a2a !important;
    border-color: rgba(116, 42, 42, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-orange-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fffaf0 !important;
    border-color: rgba(255, 250, 240, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-orange-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #feebc8 !important;
    border-color: rgba(254, 235, 200, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-orange-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fbd38d !important;
    border-color: rgba(251, 211, 141, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-orange-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #f6ad55 !important;
    border-color: rgba(246, 173, 85, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-orange-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #ed8936 !important;
    border-color: rgba(237, 137, 54, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-orange-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #dd6b20 !important;
    border-color: rgba(221, 107, 32, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-orange-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #c05621 !important;
    border-color: rgba(192, 86, 33, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-orange-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #9c4221 !important;
    border-color: rgba(156, 66, 33, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-orange-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #7b341e !important;
    border-color: rgba(123, 52, 30, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-yellow-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fffff0 !important;
    border-color: rgba(255, 255, 240, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-yellow-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fefcbf !important;
    border-color: rgba(254, 252, 191, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-yellow-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #faf089 !important;
    border-color: rgba(250, 240, 137, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-yellow-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #f6e05e !important;
    border-color: rgba(246, 224, 94, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-yellow-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #ecc94b !important;
    border-color: rgba(236, 201, 75, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-yellow-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #d69e2e !important;
    border-color: rgba(214, 158, 46, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-yellow-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #b7791f !important;
    border-color: rgba(183, 121, 31, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-yellow-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #975a16 !important;
    border-color: rgba(151, 90, 22, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-yellow-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #744210 !important;
    border-color: rgba(116, 66, 16, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-green-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #f0fff4 !important;
    border-color: rgba(240, 255, 244, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-green-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #c6f6d5 !important;
    border-color: rgba(198, 246, 213, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-green-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #9ae6b4 !important;
    border-color: rgba(154, 230, 180, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-green-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #68d391 !important;
    border-color: rgba(104, 211, 145, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-green-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #48bb78 !important;
    border-color: rgba(72, 187, 120, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-green-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #38a169 !important;
    border-color: rgba(56, 161, 105, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-green-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #2f855a !important;
    border-color: rgba(47, 133, 90, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-green-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #276749 !important;
    border-color: rgba(39, 103, 73, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-green-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #22543d !important;
    border-color: rgba(34, 84, 61, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-teal-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #e6fffa !important;
    border-color: rgba(230, 255, 250, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-teal-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #b2f5ea !important;
    border-color: rgba(178, 245, 234, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-teal-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #81e6d9 !important;
    border-color: rgba(129, 230, 217, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-teal-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #4fd1c5 !important;
    border-color: rgba(79, 209, 197, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-teal-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #38b2ac !important;
    border-color: rgba(56, 178, 172, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-teal-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #319795 !important;
    border-color: rgba(49, 151, 149, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-teal-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #2c7a7b !important;
    border-color: rgba(44, 122, 123, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-teal-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #285e61 !important;
    border-color: rgba(40, 94, 97, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-teal-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #234e52 !important;
    border-color: rgba(35, 78, 82, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-blue-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #ebf8ff !important;
    border-color: rgba(235, 248, 255, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-blue-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #bee3f8 !important;
    border-color: rgba(190, 227, 248, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-blue-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #90cdf4 !important;
    border-color: rgba(144, 205, 244, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-blue-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #63b3ed !important;
    border-color: rgba(99, 179, 237, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-blue-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #4299e1 !important;
    border-color: rgba(66, 153, 225, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-blue-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #3182ce !important;
    border-color: rgba(49, 130, 206, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-blue-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #2b6cb0 !important;
    border-color: rgba(43, 108, 176, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-blue-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #2c5282 !important;
    border-color: rgba(44, 82, 130, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-blue-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #2a4365 !important;
    border-color: rgba(42, 67, 101, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-indigo-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #ebf4ff !important;
    border-color: rgba(235, 244, 255, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-indigo-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #c3dafe !important;
    border-color: rgba(195, 218, 254, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-indigo-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #a3bffa !important;
    border-color: rgba(163, 191, 250, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-indigo-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #7f9cf5 !important;
    border-color: rgba(127, 156, 245, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-indigo-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #667eea !important;
    border-color: rgba(102, 126, 234, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-indigo-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #5a67d8 !important;
    border-color: rgba(90, 103, 216, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-indigo-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #4c51bf !important;
    border-color: rgba(76, 81, 191, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-indigo-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #434190 !important;
    border-color: rgba(67, 65, 144, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-indigo-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #3c366b !important;
    border-color: rgba(60, 54, 107, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-purple-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #faf5ff !important;
    border-color: rgba(250, 245, 255, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-purple-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #e9d8fd !important;
    border-color: rgba(233, 216, 253, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-purple-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #d6bcfa !important;
    border-color: rgba(214, 188, 250, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-purple-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #b794f4 !important;
    border-color: rgba(183, 148, 244, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-purple-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #9f7aea !important;
    border-color: rgba(159, 122, 234, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-purple-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #805ad5 !important;
    border-color: rgba(128, 90, 213, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-purple-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #6b46c1 !important;
    border-color: rgba(107, 70, 193, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-purple-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #553c9a !important;
    border-color: rgba(85, 60, 154, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-purple-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #44337a !important;
    border-color: rgba(68, 51, 122, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-pink-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fff5f7 !important;
    border-color: rgba(255, 245, 247, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-pink-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fed7e2 !important;
    border-color: rgba(254, 215, 226, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-pink-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fbb6ce !important;
    border-color: rgba(251, 182, 206, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-pink-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #f687b3 !important;
    border-color: rgba(246, 135, 179, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-pink-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #ed64a6 !important;
    border-color: rgba(237, 100, 166, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-pink-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #d53f8c !important;
    border-color: rgba(213, 63, 140, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-pink-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #b83280 !important;
    border-color: rgba(184, 50, 128, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-pink-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #97266d !important;
    border-color: rgba(151, 38, 109, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-pink-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #702459 !important;
    border-color: rgba(112, 36, 89, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-ui-gray-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #f1f1f1 !important;
    border-color: rgba(241, 241, 241, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-ui-brown-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #f3ecdc !important;
    border-color: rgba(243, 236, 220, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-ui-brown-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #e8e0c9 !important;
    border-color: rgba(232, 224, 201, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-ui-brown-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #d0c095 !important;
    border-color: rgba(208, 192, 149, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-ui-brown-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #bd6005 !important;
    border-color: rgba(189, 96, 5, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-ui-green-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #aac74c !important;
    border-color: rgba(170, 199, 76, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-ui-green-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #71893e !important;
    border-color: rgba(113, 137, 62, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-ui-orange-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #e27212 !important;
    border-color: rgba(226, 114, 18, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-facebook > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #3b5998 !important;
    border-color: rgba(59, 89, 152, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-twitter > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #00acee !important;
    border-color: rgba(0, 172, 238, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-twitch > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #6441a5 !important;
    border-color: rgba(100, 65, 165, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-youtube > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #FF0000 !important;
    border-color: rgba(255, 0, 0, var(--divide-opacity)) !important;
  }

  .lg\:cl-divide-solid > :not(template) ~ :not(template) {
    border-style: solid !important;
  }

  .lg\:cl-divide-dashed > :not(template) ~ :not(template) {
    border-style: dashed !important;
  }

  .lg\:cl-divide-dotted > :not(template) ~ :not(template) {
    border-style: dotted !important;
  }

  .lg\:cl-divide-double > :not(template) ~ :not(template) {
    border-style: double !important;
  }

  .lg\:cl-divide-none > :not(template) ~ :not(template) {
    border-style: none !important;
  }

  .lg\:cl-divide-opacity-0 > :not(template) ~ :not(template) {
    --divide-opacity: 0 !important;
  }

  .lg\:cl-divide-opacity-25 > :not(template) ~ :not(template) {
    --divide-opacity: 0.25 !important;
  }

  .lg\:cl-divide-opacity-50 > :not(template) ~ :not(template) {
    --divide-opacity: 0.5 !important;
  }

  .lg\:cl-divide-opacity-75 > :not(template) ~ :not(template) {
    --divide-opacity: 0.75 !important;
  }

  .lg\:cl-divide-opacity-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
  }

  .lg\:cl-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .lg\:cl-not-sr-only {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .lg\:focus\:cl-sr-only:focus {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .lg\:focus\:cl-not-sr-only:focus {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .lg\:cl-appearance-none {
    -webkit-appearance: none !important;
       -moz-appearance: none !important;
            appearance: none !important;
  }

  .lg\:cl-bg-fixed {
    background-attachment: fixed !important;
  }

  .lg\:cl-bg-local {
    background-attachment: local !important;
  }

  .lg\:cl-bg-scroll {
    background-attachment: scroll !important;
  }

  .lg\:cl-bg-clip-border {
    background-clip: border-box !important;
  }

  .lg\:cl-bg-clip-padding {
    background-clip: padding-box !important;
  }

  .lg\:cl-bg-clip-content {
    background-clip: content-box !important;
  }

  .lg\:cl-bg-clip-text {
    -webkit-background-clip: text !important;
            background-clip: text !important;
  }

  .lg\:cl-bg-transparent {
    background-color: transparent !important;
  }

  .lg\:cl-bg-current {
    background-color: currentColor !important;
  }

  .lg\:cl-bg-black {
    --bg-opacity: 1 !important;
    background-color: #000 !important;
    background-color: rgba(0, 0, 0, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-white {
    --bg-opacity: 1 !important;
    background-color: #fff !important;
    background-color: rgba(255, 255, 255, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-gray-100 {
    --bg-opacity: 1 !important;
    background-color: #f7fafc !important;
    background-color: rgba(247, 250, 252, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-gray-200 {
    --bg-opacity: 1 !important;
    background-color: #edf2f7 !important;
    background-color: rgba(237, 242, 247, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-gray-300 {
    --bg-opacity: 1 !important;
    background-color: #e2e8f0 !important;
    background-color: rgba(226, 232, 240, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-gray-400 {
    --bg-opacity: 1 !important;
    background-color: #cbd5e0 !important;
    background-color: rgba(203, 213, 224, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-gray-500 {
    --bg-opacity: 1 !important;
    background-color: #a0aec0 !important;
    background-color: rgba(160, 174, 192, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-gray-600 {
    --bg-opacity: 1 !important;
    background-color: #718096 !important;
    background-color: rgba(113, 128, 150, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-gray-700 {
    --bg-opacity: 1 !important;
    background-color: #4a5568 !important;
    background-color: rgba(74, 85, 104, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-gray-800 {
    --bg-opacity: 1 !important;
    background-color: #2d3748 !important;
    background-color: rgba(45, 55, 72, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-gray-900 {
    --bg-opacity: 1 !important;
    background-color: #1a202c !important;
    background-color: rgba(26, 32, 44, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-red-100 {
    --bg-opacity: 1 !important;
    background-color: #fff5f5 !important;
    background-color: rgba(255, 245, 245, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-red-200 {
    --bg-opacity: 1 !important;
    background-color: #fed7d7 !important;
    background-color: rgba(254, 215, 215, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-red-300 {
    --bg-opacity: 1 !important;
    background-color: #feb2b2 !important;
    background-color: rgba(254, 178, 178, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-red-400 {
    --bg-opacity: 1 !important;
    background-color: #fc8181 !important;
    background-color: rgba(252, 129, 129, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-red-500 {
    --bg-opacity: 1 !important;
    background-color: #f56565 !important;
    background-color: rgba(245, 101, 101, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-red-600 {
    --bg-opacity: 1 !important;
    background-color: #e53e3e !important;
    background-color: rgba(229, 62, 62, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-red-700 {
    --bg-opacity: 1 !important;
    background-color: #c53030 !important;
    background-color: rgba(197, 48, 48, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-red-800 {
    --bg-opacity: 1 !important;
    background-color: #9b2c2c !important;
    background-color: rgba(155, 44, 44, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-red-900 {
    --bg-opacity: 1 !important;
    background-color: #742a2a !important;
    background-color: rgba(116, 42, 42, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-orange-100 {
    --bg-opacity: 1 !important;
    background-color: #fffaf0 !important;
    background-color: rgba(255, 250, 240, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-orange-200 {
    --bg-opacity: 1 !important;
    background-color: #feebc8 !important;
    background-color: rgba(254, 235, 200, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-orange-300 {
    --bg-opacity: 1 !important;
    background-color: #fbd38d !important;
    background-color: rgba(251, 211, 141, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-orange-400 {
    --bg-opacity: 1 !important;
    background-color: #f6ad55 !important;
    background-color: rgba(246, 173, 85, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-orange-500 {
    --bg-opacity: 1 !important;
    background-color: #ed8936 !important;
    background-color: rgba(237, 137, 54, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-orange-600 {
    --bg-opacity: 1 !important;
    background-color: #dd6b20 !important;
    background-color: rgba(221, 107, 32, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-orange-700 {
    --bg-opacity: 1 !important;
    background-color: #c05621 !important;
    background-color: rgba(192, 86, 33, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-orange-800 {
    --bg-opacity: 1 !important;
    background-color: #9c4221 !important;
    background-color: rgba(156, 66, 33, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-orange-900 {
    --bg-opacity: 1 !important;
    background-color: #7b341e !important;
    background-color: rgba(123, 52, 30, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-yellow-100 {
    --bg-opacity: 1 !important;
    background-color: #fffff0 !important;
    background-color: rgba(255, 255, 240, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-yellow-200 {
    --bg-opacity: 1 !important;
    background-color: #fefcbf !important;
    background-color: rgba(254, 252, 191, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-yellow-300 {
    --bg-opacity: 1 !important;
    background-color: #faf089 !important;
    background-color: rgba(250, 240, 137, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-yellow-400 {
    --bg-opacity: 1 !important;
    background-color: #f6e05e !important;
    background-color: rgba(246, 224, 94, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-yellow-500 {
    --bg-opacity: 1 !important;
    background-color: #ecc94b !important;
    background-color: rgba(236, 201, 75, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-yellow-600 {
    --bg-opacity: 1 !important;
    background-color: #d69e2e !important;
    background-color: rgba(214, 158, 46, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-yellow-700 {
    --bg-opacity: 1 !important;
    background-color: #b7791f !important;
    background-color: rgba(183, 121, 31, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-yellow-800 {
    --bg-opacity: 1 !important;
    background-color: #975a16 !important;
    background-color: rgba(151, 90, 22, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-yellow-900 {
    --bg-opacity: 1 !important;
    background-color: #744210 !important;
    background-color: rgba(116, 66, 16, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-green-100 {
    --bg-opacity: 1 !important;
    background-color: #f0fff4 !important;
    background-color: rgba(240, 255, 244, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-green-200 {
    --bg-opacity: 1 !important;
    background-color: #c6f6d5 !important;
    background-color: rgba(198, 246, 213, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-green-300 {
    --bg-opacity: 1 !important;
    background-color: #9ae6b4 !important;
    background-color: rgba(154, 230, 180, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-green-400 {
    --bg-opacity: 1 !important;
    background-color: #68d391 !important;
    background-color: rgba(104, 211, 145, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-green-500 {
    --bg-opacity: 1 !important;
    background-color: #48bb78 !important;
    background-color: rgba(72, 187, 120, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-green-600 {
    --bg-opacity: 1 !important;
    background-color: #38a169 !important;
    background-color: rgba(56, 161, 105, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-green-700 {
    --bg-opacity: 1 !important;
    background-color: #2f855a !important;
    background-color: rgba(47, 133, 90, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-green-800 {
    --bg-opacity: 1 !important;
    background-color: #276749 !important;
    background-color: rgba(39, 103, 73, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-green-900 {
    --bg-opacity: 1 !important;
    background-color: #22543d !important;
    background-color: rgba(34, 84, 61, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-teal-100 {
    --bg-opacity: 1 !important;
    background-color: #e6fffa !important;
    background-color: rgba(230, 255, 250, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-teal-200 {
    --bg-opacity: 1 !important;
    background-color: #b2f5ea !important;
    background-color: rgba(178, 245, 234, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-teal-300 {
    --bg-opacity: 1 !important;
    background-color: #81e6d9 !important;
    background-color: rgba(129, 230, 217, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-teal-400 {
    --bg-opacity: 1 !important;
    background-color: #4fd1c5 !important;
    background-color: rgba(79, 209, 197, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-teal-500 {
    --bg-opacity: 1 !important;
    background-color: #38b2ac !important;
    background-color: rgba(56, 178, 172, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-teal-600 {
    --bg-opacity: 1 !important;
    background-color: #319795 !important;
    background-color: rgba(49, 151, 149, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-teal-700 {
    --bg-opacity: 1 !important;
    background-color: #2c7a7b !important;
    background-color: rgba(44, 122, 123, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-teal-800 {
    --bg-opacity: 1 !important;
    background-color: #285e61 !important;
    background-color: rgba(40, 94, 97, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-teal-900 {
    --bg-opacity: 1 !important;
    background-color: #234e52 !important;
    background-color: rgba(35, 78, 82, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-blue-100 {
    --bg-opacity: 1 !important;
    background-color: #ebf8ff !important;
    background-color: rgba(235, 248, 255, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-blue-200 {
    --bg-opacity: 1 !important;
    background-color: #bee3f8 !important;
    background-color: rgba(190, 227, 248, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-blue-300 {
    --bg-opacity: 1 !important;
    background-color: #90cdf4 !important;
    background-color: rgba(144, 205, 244, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-blue-400 {
    --bg-opacity: 1 !important;
    background-color: #63b3ed !important;
    background-color: rgba(99, 179, 237, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-blue-500 {
    --bg-opacity: 1 !important;
    background-color: #4299e1 !important;
    background-color: rgba(66, 153, 225, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-blue-600 {
    --bg-opacity: 1 !important;
    background-color: #3182ce !important;
    background-color: rgba(49, 130, 206, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-blue-700 {
    --bg-opacity: 1 !important;
    background-color: #2b6cb0 !important;
    background-color: rgba(43, 108, 176, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-blue-800 {
    --bg-opacity: 1 !important;
    background-color: #2c5282 !important;
    background-color: rgba(44, 82, 130, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-blue-900 {
    --bg-opacity: 1 !important;
    background-color: #2a4365 !important;
    background-color: rgba(42, 67, 101, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-indigo-100 {
    --bg-opacity: 1 !important;
    background-color: #ebf4ff !important;
    background-color: rgba(235, 244, 255, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-indigo-200 {
    --bg-opacity: 1 !important;
    background-color: #c3dafe !important;
    background-color: rgba(195, 218, 254, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-indigo-300 {
    --bg-opacity: 1 !important;
    background-color: #a3bffa !important;
    background-color: rgba(163, 191, 250, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-indigo-400 {
    --bg-opacity: 1 !important;
    background-color: #7f9cf5 !important;
    background-color: rgba(127, 156, 245, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-indigo-500 {
    --bg-opacity: 1 !important;
    background-color: #667eea !important;
    background-color: rgba(102, 126, 234, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-indigo-600 {
    --bg-opacity: 1 !important;
    background-color: #5a67d8 !important;
    background-color: rgba(90, 103, 216, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-indigo-700 {
    --bg-opacity: 1 !important;
    background-color: #4c51bf !important;
    background-color: rgba(76, 81, 191, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-indigo-800 {
    --bg-opacity: 1 !important;
    background-color: #434190 !important;
    background-color: rgba(67, 65, 144, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-indigo-900 {
    --bg-opacity: 1 !important;
    background-color: #3c366b !important;
    background-color: rgba(60, 54, 107, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-purple-100 {
    --bg-opacity: 1 !important;
    background-color: #faf5ff !important;
    background-color: rgba(250, 245, 255, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-purple-200 {
    --bg-opacity: 1 !important;
    background-color: #e9d8fd !important;
    background-color: rgba(233, 216, 253, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-purple-300 {
    --bg-opacity: 1 !important;
    background-color: #d6bcfa !important;
    background-color: rgba(214, 188, 250, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-purple-400 {
    --bg-opacity: 1 !important;
    background-color: #b794f4 !important;
    background-color: rgba(183, 148, 244, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-purple-500 {
    --bg-opacity: 1 !important;
    background-color: #9f7aea !important;
    background-color: rgba(159, 122, 234, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-purple-600 {
    --bg-opacity: 1 !important;
    background-color: #805ad5 !important;
    background-color: rgba(128, 90, 213, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-purple-700 {
    --bg-opacity: 1 !important;
    background-color: #6b46c1 !important;
    background-color: rgba(107, 70, 193, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-purple-800 {
    --bg-opacity: 1 !important;
    background-color: #553c9a !important;
    background-color: rgba(85, 60, 154, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-purple-900 {
    --bg-opacity: 1 !important;
    background-color: #44337a !important;
    background-color: rgba(68, 51, 122, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-pink-100 {
    --bg-opacity: 1 !important;
    background-color: #fff5f7 !important;
    background-color: rgba(255, 245, 247, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-pink-200 {
    --bg-opacity: 1 !important;
    background-color: #fed7e2 !important;
    background-color: rgba(254, 215, 226, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-pink-300 {
    --bg-opacity: 1 !important;
    background-color: #fbb6ce !important;
    background-color: rgba(251, 182, 206, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-pink-400 {
    --bg-opacity: 1 !important;
    background-color: #f687b3 !important;
    background-color: rgba(246, 135, 179, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-pink-500 {
    --bg-opacity: 1 !important;
    background-color: #ed64a6 !important;
    background-color: rgba(237, 100, 166, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-pink-600 {
    --bg-opacity: 1 !important;
    background-color: #d53f8c !important;
    background-color: rgba(213, 63, 140, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-pink-700 {
    --bg-opacity: 1 !important;
    background-color: #b83280 !important;
    background-color: rgba(184, 50, 128, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-pink-800 {
    --bg-opacity: 1 !important;
    background-color: #97266d !important;
    background-color: rgba(151, 38, 109, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-pink-900 {
    --bg-opacity: 1 !important;
    background-color: #702459 !important;
    background-color: rgba(112, 36, 89, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-ui-gray-100 {
    --bg-opacity: 1 !important;
    background-color: #f1f1f1 !important;
    background-color: rgba(241, 241, 241, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-ui-brown-100 {
    --bg-opacity: 1 !important;
    background-color: #f3ecdc !important;
    background-color: rgba(243, 236, 220, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-ui-brown-200 {
    --bg-opacity: 1 !important;
    background-color: #e8e0c9 !important;
    background-color: rgba(232, 224, 201, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-ui-brown-300 {
    --bg-opacity: 1 !important;
    background-color: #d0c095 !important;
    background-color: rgba(208, 192, 149, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-ui-brown-700 {
    --bg-opacity: 1 !important;
    background-color: #bd6005 !important;
    background-color: rgba(189, 96, 5, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-ui-green-300 {
    --bg-opacity: 1 !important;
    background-color: #aac74c !important;
    background-color: rgba(170, 199, 76, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-ui-green-400 {
    --bg-opacity: 1 !important;
    background-color: #71893e !important;
    background-color: rgba(113, 137, 62, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-ui-orange-500 {
    --bg-opacity: 1 !important;
    background-color: #e27212 !important;
    background-color: rgba(226, 114, 18, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-facebook {
    --bg-opacity: 1 !important;
    background-color: #3b5998 !important;
    background-color: rgba(59, 89, 152, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-twitter {
    --bg-opacity: 1 !important;
    background-color: #00acee !important;
    background-color: rgba(0, 172, 238, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-twitch {
    --bg-opacity: 1 !important;
    background-color: #6441a5 !important;
    background-color: rgba(100, 65, 165, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-youtube {
    --bg-opacity: 1 !important;
    background-color: #FF0000 !important;
    background-color: rgba(255, 0, 0, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-transparent:hover {
    background-color: transparent !important;
  }

  .lg\:hover\:cl-bg-current:hover {
    background-color: currentColor !important;
  }

  .lg\:hover\:cl-bg-black:hover {
    --bg-opacity: 1 !important;
    background-color: #000 !important;
    background-color: rgba(0, 0, 0, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-white:hover {
    --bg-opacity: 1 !important;
    background-color: #fff !important;
    background-color: rgba(255, 255, 255, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-gray-100:hover {
    --bg-opacity: 1 !important;
    background-color: #f7fafc !important;
    background-color: rgba(247, 250, 252, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-gray-200:hover {
    --bg-opacity: 1 !important;
    background-color: #edf2f7 !important;
    background-color: rgba(237, 242, 247, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-gray-300:hover {
    --bg-opacity: 1 !important;
    background-color: #e2e8f0 !important;
    background-color: rgba(226, 232, 240, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-gray-400:hover {
    --bg-opacity: 1 !important;
    background-color: #cbd5e0 !important;
    background-color: rgba(203, 213, 224, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-gray-500:hover {
    --bg-opacity: 1 !important;
    background-color: #a0aec0 !important;
    background-color: rgba(160, 174, 192, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-gray-600:hover {
    --bg-opacity: 1 !important;
    background-color: #718096 !important;
    background-color: rgba(113, 128, 150, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-gray-700:hover {
    --bg-opacity: 1 !important;
    background-color: #4a5568 !important;
    background-color: rgba(74, 85, 104, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-gray-800:hover {
    --bg-opacity: 1 !important;
    background-color: #2d3748 !important;
    background-color: rgba(45, 55, 72, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-gray-900:hover {
    --bg-opacity: 1 !important;
    background-color: #1a202c !important;
    background-color: rgba(26, 32, 44, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-red-100:hover {
    --bg-opacity: 1 !important;
    background-color: #fff5f5 !important;
    background-color: rgba(255, 245, 245, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-red-200:hover {
    --bg-opacity: 1 !important;
    background-color: #fed7d7 !important;
    background-color: rgba(254, 215, 215, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-red-300:hover {
    --bg-opacity: 1 !important;
    background-color: #feb2b2 !important;
    background-color: rgba(254, 178, 178, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-red-400:hover {
    --bg-opacity: 1 !important;
    background-color: #fc8181 !important;
    background-color: rgba(252, 129, 129, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-red-500:hover {
    --bg-opacity: 1 !important;
    background-color: #f56565 !important;
    background-color: rgba(245, 101, 101, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-red-600:hover {
    --bg-opacity: 1 !important;
    background-color: #e53e3e !important;
    background-color: rgba(229, 62, 62, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-red-700:hover {
    --bg-opacity: 1 !important;
    background-color: #c53030 !important;
    background-color: rgba(197, 48, 48, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-red-800:hover {
    --bg-opacity: 1 !important;
    background-color: #9b2c2c !important;
    background-color: rgba(155, 44, 44, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-red-900:hover {
    --bg-opacity: 1 !important;
    background-color: #742a2a !important;
    background-color: rgba(116, 42, 42, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-orange-100:hover {
    --bg-opacity: 1 !important;
    background-color: #fffaf0 !important;
    background-color: rgba(255, 250, 240, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-orange-200:hover {
    --bg-opacity: 1 !important;
    background-color: #feebc8 !important;
    background-color: rgba(254, 235, 200, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-orange-300:hover {
    --bg-opacity: 1 !important;
    background-color: #fbd38d !important;
    background-color: rgba(251, 211, 141, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-orange-400:hover {
    --bg-opacity: 1 !important;
    background-color: #f6ad55 !important;
    background-color: rgba(246, 173, 85, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-orange-500:hover {
    --bg-opacity: 1 !important;
    background-color: #ed8936 !important;
    background-color: rgba(237, 137, 54, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-orange-600:hover {
    --bg-opacity: 1 !important;
    background-color: #dd6b20 !important;
    background-color: rgba(221, 107, 32, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-orange-700:hover {
    --bg-opacity: 1 !important;
    background-color: #c05621 !important;
    background-color: rgba(192, 86, 33, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-orange-800:hover {
    --bg-opacity: 1 !important;
    background-color: #9c4221 !important;
    background-color: rgba(156, 66, 33, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-orange-900:hover {
    --bg-opacity: 1 !important;
    background-color: #7b341e !important;
    background-color: rgba(123, 52, 30, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-yellow-100:hover {
    --bg-opacity: 1 !important;
    background-color: #fffff0 !important;
    background-color: rgba(255, 255, 240, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-yellow-200:hover {
    --bg-opacity: 1 !important;
    background-color: #fefcbf !important;
    background-color: rgba(254, 252, 191, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-yellow-300:hover {
    --bg-opacity: 1 !important;
    background-color: #faf089 !important;
    background-color: rgba(250, 240, 137, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-yellow-400:hover {
    --bg-opacity: 1 !important;
    background-color: #f6e05e !important;
    background-color: rgba(246, 224, 94, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-yellow-500:hover {
    --bg-opacity: 1 !important;
    background-color: #ecc94b !important;
    background-color: rgba(236, 201, 75, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-yellow-600:hover {
    --bg-opacity: 1 !important;
    background-color: #d69e2e !important;
    background-color: rgba(214, 158, 46, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-yellow-700:hover {
    --bg-opacity: 1 !important;
    background-color: #b7791f !important;
    background-color: rgba(183, 121, 31, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-yellow-800:hover {
    --bg-opacity: 1 !important;
    background-color: #975a16 !important;
    background-color: rgba(151, 90, 22, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-yellow-900:hover {
    --bg-opacity: 1 !important;
    background-color: #744210 !important;
    background-color: rgba(116, 66, 16, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-green-100:hover {
    --bg-opacity: 1 !important;
    background-color: #f0fff4 !important;
    background-color: rgba(240, 255, 244, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-green-200:hover {
    --bg-opacity: 1 !important;
    background-color: #c6f6d5 !important;
    background-color: rgba(198, 246, 213, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-green-300:hover {
    --bg-opacity: 1 !important;
    background-color: #9ae6b4 !important;
    background-color: rgba(154, 230, 180, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-green-400:hover {
    --bg-opacity: 1 !important;
    background-color: #68d391 !important;
    background-color: rgba(104, 211, 145, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-green-500:hover {
    --bg-opacity: 1 !important;
    background-color: #48bb78 !important;
    background-color: rgba(72, 187, 120, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-green-600:hover {
    --bg-opacity: 1 !important;
    background-color: #38a169 !important;
    background-color: rgba(56, 161, 105, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-green-700:hover {
    --bg-opacity: 1 !important;
    background-color: #2f855a !important;
    background-color: rgba(47, 133, 90, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-green-800:hover {
    --bg-opacity: 1 !important;
    background-color: #276749 !important;
    background-color: rgba(39, 103, 73, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-green-900:hover {
    --bg-opacity: 1 !important;
    background-color: #22543d !important;
    background-color: rgba(34, 84, 61, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-teal-100:hover {
    --bg-opacity: 1 !important;
    background-color: #e6fffa !important;
    background-color: rgba(230, 255, 250, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-teal-200:hover {
    --bg-opacity: 1 !important;
    background-color: #b2f5ea !important;
    background-color: rgba(178, 245, 234, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-teal-300:hover {
    --bg-opacity: 1 !important;
    background-color: #81e6d9 !important;
    background-color: rgba(129, 230, 217, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-teal-400:hover {
    --bg-opacity: 1 !important;
    background-color: #4fd1c5 !important;
    background-color: rgba(79, 209, 197, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-teal-500:hover {
    --bg-opacity: 1 !important;
    background-color: #38b2ac !important;
    background-color: rgba(56, 178, 172, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-teal-600:hover {
    --bg-opacity: 1 !important;
    background-color: #319795 !important;
    background-color: rgba(49, 151, 149, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-teal-700:hover {
    --bg-opacity: 1 !important;
    background-color: #2c7a7b !important;
    background-color: rgba(44, 122, 123, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-teal-800:hover {
    --bg-opacity: 1 !important;
    background-color: #285e61 !important;
    background-color: rgba(40, 94, 97, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-teal-900:hover {
    --bg-opacity: 1 !important;
    background-color: #234e52 !important;
    background-color: rgba(35, 78, 82, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-blue-100:hover {
    --bg-opacity: 1 !important;
    background-color: #ebf8ff !important;
    background-color: rgba(235, 248, 255, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-blue-200:hover {
    --bg-opacity: 1 !important;
    background-color: #bee3f8 !important;
    background-color: rgba(190, 227, 248, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-blue-300:hover {
    --bg-opacity: 1 !important;
    background-color: #90cdf4 !important;
    background-color: rgba(144, 205, 244, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-blue-400:hover {
    --bg-opacity: 1 !important;
    background-color: #63b3ed !important;
    background-color: rgba(99, 179, 237, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-blue-500:hover {
    --bg-opacity: 1 !important;
    background-color: #4299e1 !important;
    background-color: rgba(66, 153, 225, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-blue-600:hover {
    --bg-opacity: 1 !important;
    background-color: #3182ce !important;
    background-color: rgba(49, 130, 206, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-blue-700:hover {
    --bg-opacity: 1 !important;
    background-color: #2b6cb0 !important;
    background-color: rgba(43, 108, 176, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-blue-800:hover {
    --bg-opacity: 1 !important;
    background-color: #2c5282 !important;
    background-color: rgba(44, 82, 130, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-blue-900:hover {
    --bg-opacity: 1 !important;
    background-color: #2a4365 !important;
    background-color: rgba(42, 67, 101, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-indigo-100:hover {
    --bg-opacity: 1 !important;
    background-color: #ebf4ff !important;
    background-color: rgba(235, 244, 255, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-indigo-200:hover {
    --bg-opacity: 1 !important;
    background-color: #c3dafe !important;
    background-color: rgba(195, 218, 254, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-indigo-300:hover {
    --bg-opacity: 1 !important;
    background-color: #a3bffa !important;
    background-color: rgba(163, 191, 250, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-indigo-400:hover {
    --bg-opacity: 1 !important;
    background-color: #7f9cf5 !important;
    background-color: rgba(127, 156, 245, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-indigo-500:hover {
    --bg-opacity: 1 !important;
    background-color: #667eea !important;
    background-color: rgba(102, 126, 234, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-indigo-600:hover {
    --bg-opacity: 1 !important;
    background-color: #5a67d8 !important;
    background-color: rgba(90, 103, 216, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-indigo-700:hover {
    --bg-opacity: 1 !important;
    background-color: #4c51bf !important;
    background-color: rgba(76, 81, 191, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-indigo-800:hover {
    --bg-opacity: 1 !important;
    background-color: #434190 !important;
    background-color: rgba(67, 65, 144, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-indigo-900:hover {
    --bg-opacity: 1 !important;
    background-color: #3c366b !important;
    background-color: rgba(60, 54, 107, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-purple-100:hover {
    --bg-opacity: 1 !important;
    background-color: #faf5ff !important;
    background-color: rgba(250, 245, 255, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-purple-200:hover {
    --bg-opacity: 1 !important;
    background-color: #e9d8fd !important;
    background-color: rgba(233, 216, 253, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-purple-300:hover {
    --bg-opacity: 1 !important;
    background-color: #d6bcfa !important;
    background-color: rgba(214, 188, 250, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-purple-400:hover {
    --bg-opacity: 1 !important;
    background-color: #b794f4 !important;
    background-color: rgba(183, 148, 244, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-purple-500:hover {
    --bg-opacity: 1 !important;
    background-color: #9f7aea !important;
    background-color: rgba(159, 122, 234, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-purple-600:hover {
    --bg-opacity: 1 !important;
    background-color: #805ad5 !important;
    background-color: rgba(128, 90, 213, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-purple-700:hover {
    --bg-opacity: 1 !important;
    background-color: #6b46c1 !important;
    background-color: rgba(107, 70, 193, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-purple-800:hover {
    --bg-opacity: 1 !important;
    background-color: #553c9a !important;
    background-color: rgba(85, 60, 154, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-purple-900:hover {
    --bg-opacity: 1 !important;
    background-color: #44337a !important;
    background-color: rgba(68, 51, 122, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-pink-100:hover {
    --bg-opacity: 1 !important;
    background-color: #fff5f7 !important;
    background-color: rgba(255, 245, 247, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-pink-200:hover {
    --bg-opacity: 1 !important;
    background-color: #fed7e2 !important;
    background-color: rgba(254, 215, 226, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-pink-300:hover {
    --bg-opacity: 1 !important;
    background-color: #fbb6ce !important;
    background-color: rgba(251, 182, 206, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-pink-400:hover {
    --bg-opacity: 1 !important;
    background-color: #f687b3 !important;
    background-color: rgba(246, 135, 179, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-pink-500:hover {
    --bg-opacity: 1 !important;
    background-color: #ed64a6 !important;
    background-color: rgba(237, 100, 166, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-pink-600:hover {
    --bg-opacity: 1 !important;
    background-color: #d53f8c !important;
    background-color: rgba(213, 63, 140, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-pink-700:hover {
    --bg-opacity: 1 !important;
    background-color: #b83280 !important;
    background-color: rgba(184, 50, 128, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-pink-800:hover {
    --bg-opacity: 1 !important;
    background-color: #97266d !important;
    background-color: rgba(151, 38, 109, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-pink-900:hover {
    --bg-opacity: 1 !important;
    background-color: #702459 !important;
    background-color: rgba(112, 36, 89, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-ui-gray-100:hover {
    --bg-opacity: 1 !important;
    background-color: #f1f1f1 !important;
    background-color: rgba(241, 241, 241, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-ui-brown-100:hover {
    --bg-opacity: 1 !important;
    background-color: #f3ecdc !important;
    background-color: rgba(243, 236, 220, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-ui-brown-200:hover {
    --bg-opacity: 1 !important;
    background-color: #e8e0c9 !important;
    background-color: rgba(232, 224, 201, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-ui-brown-300:hover {
    --bg-opacity: 1 !important;
    background-color: #d0c095 !important;
    background-color: rgba(208, 192, 149, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-ui-brown-700:hover {
    --bg-opacity: 1 !important;
    background-color: #bd6005 !important;
    background-color: rgba(189, 96, 5, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-ui-green-300:hover {
    --bg-opacity: 1 !important;
    background-color: #aac74c !important;
    background-color: rgba(170, 199, 76, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-ui-green-400:hover {
    --bg-opacity: 1 !important;
    background-color: #71893e !important;
    background-color: rgba(113, 137, 62, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-ui-orange-500:hover {
    --bg-opacity: 1 !important;
    background-color: #e27212 !important;
    background-color: rgba(226, 114, 18, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-facebook:hover {
    --bg-opacity: 1 !important;
    background-color: #3b5998 !important;
    background-color: rgba(59, 89, 152, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-twitter:hover {
    --bg-opacity: 1 !important;
    background-color: #00acee !important;
    background-color: rgba(0, 172, 238, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-twitch:hover {
    --bg-opacity: 1 !important;
    background-color: #6441a5 !important;
    background-color: rgba(100, 65, 165, var(--bg-opacity)) !important;
  }

  .lg\:hover\:cl-bg-youtube:hover {
    --bg-opacity: 1 !important;
    background-color: #FF0000 !important;
    background-color: rgba(255, 0, 0, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-transparent:focus {
    background-color: transparent !important;
  }

  .lg\:focus\:cl-bg-current:focus {
    background-color: currentColor !important;
  }

  .lg\:focus\:cl-bg-black:focus {
    --bg-opacity: 1 !important;
    background-color: #000 !important;
    background-color: rgba(0, 0, 0, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-white:focus {
    --bg-opacity: 1 !important;
    background-color: #fff !important;
    background-color: rgba(255, 255, 255, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-gray-100:focus {
    --bg-opacity: 1 !important;
    background-color: #f7fafc !important;
    background-color: rgba(247, 250, 252, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-gray-200:focus {
    --bg-opacity: 1 !important;
    background-color: #edf2f7 !important;
    background-color: rgba(237, 242, 247, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-gray-300:focus {
    --bg-opacity: 1 !important;
    background-color: #e2e8f0 !important;
    background-color: rgba(226, 232, 240, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-gray-400:focus {
    --bg-opacity: 1 !important;
    background-color: #cbd5e0 !important;
    background-color: rgba(203, 213, 224, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-gray-500:focus {
    --bg-opacity: 1 !important;
    background-color: #a0aec0 !important;
    background-color: rgba(160, 174, 192, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-gray-600:focus {
    --bg-opacity: 1 !important;
    background-color: #718096 !important;
    background-color: rgba(113, 128, 150, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-gray-700:focus {
    --bg-opacity: 1 !important;
    background-color: #4a5568 !important;
    background-color: rgba(74, 85, 104, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-gray-800:focus {
    --bg-opacity: 1 !important;
    background-color: #2d3748 !important;
    background-color: rgba(45, 55, 72, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-gray-900:focus {
    --bg-opacity: 1 !important;
    background-color: #1a202c !important;
    background-color: rgba(26, 32, 44, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-red-100:focus {
    --bg-opacity: 1 !important;
    background-color: #fff5f5 !important;
    background-color: rgba(255, 245, 245, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-red-200:focus {
    --bg-opacity: 1 !important;
    background-color: #fed7d7 !important;
    background-color: rgba(254, 215, 215, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-red-300:focus {
    --bg-opacity: 1 !important;
    background-color: #feb2b2 !important;
    background-color: rgba(254, 178, 178, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-red-400:focus {
    --bg-opacity: 1 !important;
    background-color: #fc8181 !important;
    background-color: rgba(252, 129, 129, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-red-500:focus {
    --bg-opacity: 1 !important;
    background-color: #f56565 !important;
    background-color: rgba(245, 101, 101, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-red-600:focus {
    --bg-opacity: 1 !important;
    background-color: #e53e3e !important;
    background-color: rgba(229, 62, 62, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-red-700:focus {
    --bg-opacity: 1 !important;
    background-color: #c53030 !important;
    background-color: rgba(197, 48, 48, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-red-800:focus {
    --bg-opacity: 1 !important;
    background-color: #9b2c2c !important;
    background-color: rgba(155, 44, 44, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-red-900:focus {
    --bg-opacity: 1 !important;
    background-color: #742a2a !important;
    background-color: rgba(116, 42, 42, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-orange-100:focus {
    --bg-opacity: 1 !important;
    background-color: #fffaf0 !important;
    background-color: rgba(255, 250, 240, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-orange-200:focus {
    --bg-opacity: 1 !important;
    background-color: #feebc8 !important;
    background-color: rgba(254, 235, 200, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-orange-300:focus {
    --bg-opacity: 1 !important;
    background-color: #fbd38d !important;
    background-color: rgba(251, 211, 141, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-orange-400:focus {
    --bg-opacity: 1 !important;
    background-color: #f6ad55 !important;
    background-color: rgba(246, 173, 85, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-orange-500:focus {
    --bg-opacity: 1 !important;
    background-color: #ed8936 !important;
    background-color: rgba(237, 137, 54, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-orange-600:focus {
    --bg-opacity: 1 !important;
    background-color: #dd6b20 !important;
    background-color: rgba(221, 107, 32, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-orange-700:focus {
    --bg-opacity: 1 !important;
    background-color: #c05621 !important;
    background-color: rgba(192, 86, 33, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-orange-800:focus {
    --bg-opacity: 1 !important;
    background-color: #9c4221 !important;
    background-color: rgba(156, 66, 33, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-orange-900:focus {
    --bg-opacity: 1 !important;
    background-color: #7b341e !important;
    background-color: rgba(123, 52, 30, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-yellow-100:focus {
    --bg-opacity: 1 !important;
    background-color: #fffff0 !important;
    background-color: rgba(255, 255, 240, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-yellow-200:focus {
    --bg-opacity: 1 !important;
    background-color: #fefcbf !important;
    background-color: rgba(254, 252, 191, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-yellow-300:focus {
    --bg-opacity: 1 !important;
    background-color: #faf089 !important;
    background-color: rgba(250, 240, 137, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-yellow-400:focus {
    --bg-opacity: 1 !important;
    background-color: #f6e05e !important;
    background-color: rgba(246, 224, 94, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-yellow-500:focus {
    --bg-opacity: 1 !important;
    background-color: #ecc94b !important;
    background-color: rgba(236, 201, 75, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-yellow-600:focus {
    --bg-opacity: 1 !important;
    background-color: #d69e2e !important;
    background-color: rgba(214, 158, 46, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-yellow-700:focus {
    --bg-opacity: 1 !important;
    background-color: #b7791f !important;
    background-color: rgba(183, 121, 31, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-yellow-800:focus {
    --bg-opacity: 1 !important;
    background-color: #975a16 !important;
    background-color: rgba(151, 90, 22, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-yellow-900:focus {
    --bg-opacity: 1 !important;
    background-color: #744210 !important;
    background-color: rgba(116, 66, 16, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-green-100:focus {
    --bg-opacity: 1 !important;
    background-color: #f0fff4 !important;
    background-color: rgba(240, 255, 244, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-green-200:focus {
    --bg-opacity: 1 !important;
    background-color: #c6f6d5 !important;
    background-color: rgba(198, 246, 213, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-green-300:focus {
    --bg-opacity: 1 !important;
    background-color: #9ae6b4 !important;
    background-color: rgba(154, 230, 180, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-green-400:focus {
    --bg-opacity: 1 !important;
    background-color: #68d391 !important;
    background-color: rgba(104, 211, 145, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-green-500:focus {
    --bg-opacity: 1 !important;
    background-color: #48bb78 !important;
    background-color: rgba(72, 187, 120, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-green-600:focus {
    --bg-opacity: 1 !important;
    background-color: #38a169 !important;
    background-color: rgba(56, 161, 105, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-green-700:focus {
    --bg-opacity: 1 !important;
    background-color: #2f855a !important;
    background-color: rgba(47, 133, 90, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-green-800:focus {
    --bg-opacity: 1 !important;
    background-color: #276749 !important;
    background-color: rgba(39, 103, 73, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-green-900:focus {
    --bg-opacity: 1 !important;
    background-color: #22543d !important;
    background-color: rgba(34, 84, 61, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-teal-100:focus {
    --bg-opacity: 1 !important;
    background-color: #e6fffa !important;
    background-color: rgba(230, 255, 250, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-teal-200:focus {
    --bg-opacity: 1 !important;
    background-color: #b2f5ea !important;
    background-color: rgba(178, 245, 234, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-teal-300:focus {
    --bg-opacity: 1 !important;
    background-color: #81e6d9 !important;
    background-color: rgba(129, 230, 217, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-teal-400:focus {
    --bg-opacity: 1 !important;
    background-color: #4fd1c5 !important;
    background-color: rgba(79, 209, 197, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-teal-500:focus {
    --bg-opacity: 1 !important;
    background-color: #38b2ac !important;
    background-color: rgba(56, 178, 172, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-teal-600:focus {
    --bg-opacity: 1 !important;
    background-color: #319795 !important;
    background-color: rgba(49, 151, 149, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-teal-700:focus {
    --bg-opacity: 1 !important;
    background-color: #2c7a7b !important;
    background-color: rgba(44, 122, 123, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-teal-800:focus {
    --bg-opacity: 1 !important;
    background-color: #285e61 !important;
    background-color: rgba(40, 94, 97, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-teal-900:focus {
    --bg-opacity: 1 !important;
    background-color: #234e52 !important;
    background-color: rgba(35, 78, 82, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-blue-100:focus {
    --bg-opacity: 1 !important;
    background-color: #ebf8ff !important;
    background-color: rgba(235, 248, 255, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-blue-200:focus {
    --bg-opacity: 1 !important;
    background-color: #bee3f8 !important;
    background-color: rgba(190, 227, 248, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-blue-300:focus {
    --bg-opacity: 1 !important;
    background-color: #90cdf4 !important;
    background-color: rgba(144, 205, 244, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-blue-400:focus {
    --bg-opacity: 1 !important;
    background-color: #63b3ed !important;
    background-color: rgba(99, 179, 237, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-blue-500:focus {
    --bg-opacity: 1 !important;
    background-color: #4299e1 !important;
    background-color: rgba(66, 153, 225, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-blue-600:focus {
    --bg-opacity: 1 !important;
    background-color: #3182ce !important;
    background-color: rgba(49, 130, 206, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-blue-700:focus {
    --bg-opacity: 1 !important;
    background-color: #2b6cb0 !important;
    background-color: rgba(43, 108, 176, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-blue-800:focus {
    --bg-opacity: 1 !important;
    background-color: #2c5282 !important;
    background-color: rgba(44, 82, 130, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-blue-900:focus {
    --bg-opacity: 1 !important;
    background-color: #2a4365 !important;
    background-color: rgba(42, 67, 101, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-indigo-100:focus {
    --bg-opacity: 1 !important;
    background-color: #ebf4ff !important;
    background-color: rgba(235, 244, 255, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-indigo-200:focus {
    --bg-opacity: 1 !important;
    background-color: #c3dafe !important;
    background-color: rgba(195, 218, 254, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-indigo-300:focus {
    --bg-opacity: 1 !important;
    background-color: #a3bffa !important;
    background-color: rgba(163, 191, 250, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-indigo-400:focus {
    --bg-opacity: 1 !important;
    background-color: #7f9cf5 !important;
    background-color: rgba(127, 156, 245, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-indigo-500:focus {
    --bg-opacity: 1 !important;
    background-color: #667eea !important;
    background-color: rgba(102, 126, 234, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-indigo-600:focus {
    --bg-opacity: 1 !important;
    background-color: #5a67d8 !important;
    background-color: rgba(90, 103, 216, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-indigo-700:focus {
    --bg-opacity: 1 !important;
    background-color: #4c51bf !important;
    background-color: rgba(76, 81, 191, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-indigo-800:focus {
    --bg-opacity: 1 !important;
    background-color: #434190 !important;
    background-color: rgba(67, 65, 144, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-indigo-900:focus {
    --bg-opacity: 1 !important;
    background-color: #3c366b !important;
    background-color: rgba(60, 54, 107, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-purple-100:focus {
    --bg-opacity: 1 !important;
    background-color: #faf5ff !important;
    background-color: rgba(250, 245, 255, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-purple-200:focus {
    --bg-opacity: 1 !important;
    background-color: #e9d8fd !important;
    background-color: rgba(233, 216, 253, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-purple-300:focus {
    --bg-opacity: 1 !important;
    background-color: #d6bcfa !important;
    background-color: rgba(214, 188, 250, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-purple-400:focus {
    --bg-opacity: 1 !important;
    background-color: #b794f4 !important;
    background-color: rgba(183, 148, 244, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-purple-500:focus {
    --bg-opacity: 1 !important;
    background-color: #9f7aea !important;
    background-color: rgba(159, 122, 234, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-purple-600:focus {
    --bg-opacity: 1 !important;
    background-color: #805ad5 !important;
    background-color: rgba(128, 90, 213, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-purple-700:focus {
    --bg-opacity: 1 !important;
    background-color: #6b46c1 !important;
    background-color: rgba(107, 70, 193, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-purple-800:focus {
    --bg-opacity: 1 !important;
    background-color: #553c9a !important;
    background-color: rgba(85, 60, 154, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-purple-900:focus {
    --bg-opacity: 1 !important;
    background-color: #44337a !important;
    background-color: rgba(68, 51, 122, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-pink-100:focus {
    --bg-opacity: 1 !important;
    background-color: #fff5f7 !important;
    background-color: rgba(255, 245, 247, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-pink-200:focus {
    --bg-opacity: 1 !important;
    background-color: #fed7e2 !important;
    background-color: rgba(254, 215, 226, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-pink-300:focus {
    --bg-opacity: 1 !important;
    background-color: #fbb6ce !important;
    background-color: rgba(251, 182, 206, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-pink-400:focus {
    --bg-opacity: 1 !important;
    background-color: #f687b3 !important;
    background-color: rgba(246, 135, 179, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-pink-500:focus {
    --bg-opacity: 1 !important;
    background-color: #ed64a6 !important;
    background-color: rgba(237, 100, 166, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-pink-600:focus {
    --bg-opacity: 1 !important;
    background-color: #d53f8c !important;
    background-color: rgba(213, 63, 140, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-pink-700:focus {
    --bg-opacity: 1 !important;
    background-color: #b83280 !important;
    background-color: rgba(184, 50, 128, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-pink-800:focus {
    --bg-opacity: 1 !important;
    background-color: #97266d !important;
    background-color: rgba(151, 38, 109, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-pink-900:focus {
    --bg-opacity: 1 !important;
    background-color: #702459 !important;
    background-color: rgba(112, 36, 89, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-ui-gray-100:focus {
    --bg-opacity: 1 !important;
    background-color: #f1f1f1 !important;
    background-color: rgba(241, 241, 241, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-ui-brown-100:focus {
    --bg-opacity: 1 !important;
    background-color: #f3ecdc !important;
    background-color: rgba(243, 236, 220, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-ui-brown-200:focus {
    --bg-opacity: 1 !important;
    background-color: #e8e0c9 !important;
    background-color: rgba(232, 224, 201, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-ui-brown-300:focus {
    --bg-opacity: 1 !important;
    background-color: #d0c095 !important;
    background-color: rgba(208, 192, 149, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-ui-brown-700:focus {
    --bg-opacity: 1 !important;
    background-color: #bd6005 !important;
    background-color: rgba(189, 96, 5, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-ui-green-300:focus {
    --bg-opacity: 1 !important;
    background-color: #aac74c !important;
    background-color: rgba(170, 199, 76, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-ui-green-400:focus {
    --bg-opacity: 1 !important;
    background-color: #71893e !important;
    background-color: rgba(113, 137, 62, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-ui-orange-500:focus {
    --bg-opacity: 1 !important;
    background-color: #e27212 !important;
    background-color: rgba(226, 114, 18, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-facebook:focus {
    --bg-opacity: 1 !important;
    background-color: #3b5998 !important;
    background-color: rgba(59, 89, 152, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-twitter:focus {
    --bg-opacity: 1 !important;
    background-color: #00acee !important;
    background-color: rgba(0, 172, 238, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-twitch:focus {
    --bg-opacity: 1 !important;
    background-color: #6441a5 !important;
    background-color: rgba(100, 65, 165, var(--bg-opacity)) !important;
  }

  .lg\:focus\:cl-bg-youtube:focus {
    --bg-opacity: 1 !important;
    background-color: #FF0000 !important;
    background-color: rgba(255, 0, 0, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-transparent {
    background-color: transparent !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-current {
    background-color: currentColor !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-black {
    --bg-opacity: 1 !important;
    background-color: #000 !important;
    background-color: rgba(0, 0, 0, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-white {
    --bg-opacity: 1 !important;
    background-color: #fff !important;
    background-color: rgba(255, 255, 255, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-gray-100 {
    --bg-opacity: 1 !important;
    background-color: #f7fafc !important;
    background-color: rgba(247, 250, 252, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-gray-200 {
    --bg-opacity: 1 !important;
    background-color: #edf2f7 !important;
    background-color: rgba(237, 242, 247, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-gray-300 {
    --bg-opacity: 1 !important;
    background-color: #e2e8f0 !important;
    background-color: rgba(226, 232, 240, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-gray-400 {
    --bg-opacity: 1 !important;
    background-color: #cbd5e0 !important;
    background-color: rgba(203, 213, 224, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-gray-500 {
    --bg-opacity: 1 !important;
    background-color: #a0aec0 !important;
    background-color: rgba(160, 174, 192, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-gray-600 {
    --bg-opacity: 1 !important;
    background-color: #718096 !important;
    background-color: rgba(113, 128, 150, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-gray-700 {
    --bg-opacity: 1 !important;
    background-color: #4a5568 !important;
    background-color: rgba(74, 85, 104, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-gray-800 {
    --bg-opacity: 1 !important;
    background-color: #2d3748 !important;
    background-color: rgba(45, 55, 72, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-gray-900 {
    --bg-opacity: 1 !important;
    background-color: #1a202c !important;
    background-color: rgba(26, 32, 44, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-red-100 {
    --bg-opacity: 1 !important;
    background-color: #fff5f5 !important;
    background-color: rgba(255, 245, 245, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-red-200 {
    --bg-opacity: 1 !important;
    background-color: #fed7d7 !important;
    background-color: rgba(254, 215, 215, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-red-300 {
    --bg-opacity: 1 !important;
    background-color: #feb2b2 !important;
    background-color: rgba(254, 178, 178, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-red-400 {
    --bg-opacity: 1 !important;
    background-color: #fc8181 !important;
    background-color: rgba(252, 129, 129, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-red-500 {
    --bg-opacity: 1 !important;
    background-color: #f56565 !important;
    background-color: rgba(245, 101, 101, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-red-600 {
    --bg-opacity: 1 !important;
    background-color: #e53e3e !important;
    background-color: rgba(229, 62, 62, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-red-700 {
    --bg-opacity: 1 !important;
    background-color: #c53030 !important;
    background-color: rgba(197, 48, 48, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-red-800 {
    --bg-opacity: 1 !important;
    background-color: #9b2c2c !important;
    background-color: rgba(155, 44, 44, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-red-900 {
    --bg-opacity: 1 !important;
    background-color: #742a2a !important;
    background-color: rgba(116, 42, 42, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-orange-100 {
    --bg-opacity: 1 !important;
    background-color: #fffaf0 !important;
    background-color: rgba(255, 250, 240, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-orange-200 {
    --bg-opacity: 1 !important;
    background-color: #feebc8 !important;
    background-color: rgba(254, 235, 200, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-orange-300 {
    --bg-opacity: 1 !important;
    background-color: #fbd38d !important;
    background-color: rgba(251, 211, 141, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-orange-400 {
    --bg-opacity: 1 !important;
    background-color: #f6ad55 !important;
    background-color: rgba(246, 173, 85, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-orange-500 {
    --bg-opacity: 1 !important;
    background-color: #ed8936 !important;
    background-color: rgba(237, 137, 54, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-orange-600 {
    --bg-opacity: 1 !important;
    background-color: #dd6b20 !important;
    background-color: rgba(221, 107, 32, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-orange-700 {
    --bg-opacity: 1 !important;
    background-color: #c05621 !important;
    background-color: rgba(192, 86, 33, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-orange-800 {
    --bg-opacity: 1 !important;
    background-color: #9c4221 !important;
    background-color: rgba(156, 66, 33, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-orange-900 {
    --bg-opacity: 1 !important;
    background-color: #7b341e !important;
    background-color: rgba(123, 52, 30, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-yellow-100 {
    --bg-opacity: 1 !important;
    background-color: #fffff0 !important;
    background-color: rgba(255, 255, 240, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-yellow-200 {
    --bg-opacity: 1 !important;
    background-color: #fefcbf !important;
    background-color: rgba(254, 252, 191, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-yellow-300 {
    --bg-opacity: 1 !important;
    background-color: #faf089 !important;
    background-color: rgba(250, 240, 137, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-yellow-400 {
    --bg-opacity: 1 !important;
    background-color: #f6e05e !important;
    background-color: rgba(246, 224, 94, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-yellow-500 {
    --bg-opacity: 1 !important;
    background-color: #ecc94b !important;
    background-color: rgba(236, 201, 75, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-yellow-600 {
    --bg-opacity: 1 !important;
    background-color: #d69e2e !important;
    background-color: rgba(214, 158, 46, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-yellow-700 {
    --bg-opacity: 1 !important;
    background-color: #b7791f !important;
    background-color: rgba(183, 121, 31, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-yellow-800 {
    --bg-opacity: 1 !important;
    background-color: #975a16 !important;
    background-color: rgba(151, 90, 22, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-yellow-900 {
    --bg-opacity: 1 !important;
    background-color: #744210 !important;
    background-color: rgba(116, 66, 16, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-green-100 {
    --bg-opacity: 1 !important;
    background-color: #f0fff4 !important;
    background-color: rgba(240, 255, 244, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-green-200 {
    --bg-opacity: 1 !important;
    background-color: #c6f6d5 !important;
    background-color: rgba(198, 246, 213, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-green-300 {
    --bg-opacity: 1 !important;
    background-color: #9ae6b4 !important;
    background-color: rgba(154, 230, 180, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-green-400 {
    --bg-opacity: 1 !important;
    background-color: #68d391 !important;
    background-color: rgba(104, 211, 145, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-green-500 {
    --bg-opacity: 1 !important;
    background-color: #48bb78 !important;
    background-color: rgba(72, 187, 120, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-green-600 {
    --bg-opacity: 1 !important;
    background-color: #38a169 !important;
    background-color: rgba(56, 161, 105, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-green-700 {
    --bg-opacity: 1 !important;
    background-color: #2f855a !important;
    background-color: rgba(47, 133, 90, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-green-800 {
    --bg-opacity: 1 !important;
    background-color: #276749 !important;
    background-color: rgba(39, 103, 73, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-green-900 {
    --bg-opacity: 1 !important;
    background-color: #22543d !important;
    background-color: rgba(34, 84, 61, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-teal-100 {
    --bg-opacity: 1 !important;
    background-color: #e6fffa !important;
    background-color: rgba(230, 255, 250, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-teal-200 {
    --bg-opacity: 1 !important;
    background-color: #b2f5ea !important;
    background-color: rgba(178, 245, 234, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-teal-300 {
    --bg-opacity: 1 !important;
    background-color: #81e6d9 !important;
    background-color: rgba(129, 230, 217, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-teal-400 {
    --bg-opacity: 1 !important;
    background-color: #4fd1c5 !important;
    background-color: rgba(79, 209, 197, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-teal-500 {
    --bg-opacity: 1 !important;
    background-color: #38b2ac !important;
    background-color: rgba(56, 178, 172, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-teal-600 {
    --bg-opacity: 1 !important;
    background-color: #319795 !important;
    background-color: rgba(49, 151, 149, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-teal-700 {
    --bg-opacity: 1 !important;
    background-color: #2c7a7b !important;
    background-color: rgba(44, 122, 123, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-teal-800 {
    --bg-opacity: 1 !important;
    background-color: #285e61 !important;
    background-color: rgba(40, 94, 97, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-teal-900 {
    --bg-opacity: 1 !important;
    background-color: #234e52 !important;
    background-color: rgba(35, 78, 82, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-blue-100 {
    --bg-opacity: 1 !important;
    background-color: #ebf8ff !important;
    background-color: rgba(235, 248, 255, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-blue-200 {
    --bg-opacity: 1 !important;
    background-color: #bee3f8 !important;
    background-color: rgba(190, 227, 248, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-blue-300 {
    --bg-opacity: 1 !important;
    background-color: #90cdf4 !important;
    background-color: rgba(144, 205, 244, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-blue-400 {
    --bg-opacity: 1 !important;
    background-color: #63b3ed !important;
    background-color: rgba(99, 179, 237, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-blue-500 {
    --bg-opacity: 1 !important;
    background-color: #4299e1 !important;
    background-color: rgba(66, 153, 225, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-blue-600 {
    --bg-opacity: 1 !important;
    background-color: #3182ce !important;
    background-color: rgba(49, 130, 206, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-blue-700 {
    --bg-opacity: 1 !important;
    background-color: #2b6cb0 !important;
    background-color: rgba(43, 108, 176, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-blue-800 {
    --bg-opacity: 1 !important;
    background-color: #2c5282 !important;
    background-color: rgba(44, 82, 130, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-blue-900 {
    --bg-opacity: 1 !important;
    background-color: #2a4365 !important;
    background-color: rgba(42, 67, 101, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-indigo-100 {
    --bg-opacity: 1 !important;
    background-color: #ebf4ff !important;
    background-color: rgba(235, 244, 255, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-indigo-200 {
    --bg-opacity: 1 !important;
    background-color: #c3dafe !important;
    background-color: rgba(195, 218, 254, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-indigo-300 {
    --bg-opacity: 1 !important;
    background-color: #a3bffa !important;
    background-color: rgba(163, 191, 250, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-indigo-400 {
    --bg-opacity: 1 !important;
    background-color: #7f9cf5 !important;
    background-color: rgba(127, 156, 245, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-indigo-500 {
    --bg-opacity: 1 !important;
    background-color: #667eea !important;
    background-color: rgba(102, 126, 234, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-indigo-600 {
    --bg-opacity: 1 !important;
    background-color: #5a67d8 !important;
    background-color: rgba(90, 103, 216, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-indigo-700 {
    --bg-opacity: 1 !important;
    background-color: #4c51bf !important;
    background-color: rgba(76, 81, 191, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-indigo-800 {
    --bg-opacity: 1 !important;
    background-color: #434190 !important;
    background-color: rgba(67, 65, 144, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-indigo-900 {
    --bg-opacity: 1 !important;
    background-color: #3c366b !important;
    background-color: rgba(60, 54, 107, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-purple-100 {
    --bg-opacity: 1 !important;
    background-color: #faf5ff !important;
    background-color: rgba(250, 245, 255, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-purple-200 {
    --bg-opacity: 1 !important;
    background-color: #e9d8fd !important;
    background-color: rgba(233, 216, 253, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-purple-300 {
    --bg-opacity: 1 !important;
    background-color: #d6bcfa !important;
    background-color: rgba(214, 188, 250, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-purple-400 {
    --bg-opacity: 1 !important;
    background-color: #b794f4 !important;
    background-color: rgba(183, 148, 244, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-purple-500 {
    --bg-opacity: 1 !important;
    background-color: #9f7aea !important;
    background-color: rgba(159, 122, 234, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-purple-600 {
    --bg-opacity: 1 !important;
    background-color: #805ad5 !important;
    background-color: rgba(128, 90, 213, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-purple-700 {
    --bg-opacity: 1 !important;
    background-color: #6b46c1 !important;
    background-color: rgba(107, 70, 193, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-purple-800 {
    --bg-opacity: 1 !important;
    background-color: #553c9a !important;
    background-color: rgba(85, 60, 154, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-purple-900 {
    --bg-opacity: 1 !important;
    background-color: #44337a !important;
    background-color: rgba(68, 51, 122, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-pink-100 {
    --bg-opacity: 1 !important;
    background-color: #fff5f7 !important;
    background-color: rgba(255, 245, 247, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-pink-200 {
    --bg-opacity: 1 !important;
    background-color: #fed7e2 !important;
    background-color: rgba(254, 215, 226, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-pink-300 {
    --bg-opacity: 1 !important;
    background-color: #fbb6ce !important;
    background-color: rgba(251, 182, 206, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-pink-400 {
    --bg-opacity: 1 !important;
    background-color: #f687b3 !important;
    background-color: rgba(246, 135, 179, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-pink-500 {
    --bg-opacity: 1 !important;
    background-color: #ed64a6 !important;
    background-color: rgba(237, 100, 166, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-pink-600 {
    --bg-opacity: 1 !important;
    background-color: #d53f8c !important;
    background-color: rgba(213, 63, 140, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-pink-700 {
    --bg-opacity: 1 !important;
    background-color: #b83280 !important;
    background-color: rgba(184, 50, 128, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-pink-800 {
    --bg-opacity: 1 !important;
    background-color: #97266d !important;
    background-color: rgba(151, 38, 109, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-pink-900 {
    --bg-opacity: 1 !important;
    background-color: #702459 !important;
    background-color: rgba(112, 36, 89, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-ui-gray-100 {
    --bg-opacity: 1 !important;
    background-color: #f1f1f1 !important;
    background-color: rgba(241, 241, 241, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-ui-brown-100 {
    --bg-opacity: 1 !important;
    background-color: #f3ecdc !important;
    background-color: rgba(243, 236, 220, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-ui-brown-200 {
    --bg-opacity: 1 !important;
    background-color: #e8e0c9 !important;
    background-color: rgba(232, 224, 201, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-ui-brown-300 {
    --bg-opacity: 1 !important;
    background-color: #d0c095 !important;
    background-color: rgba(208, 192, 149, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-ui-brown-700 {
    --bg-opacity: 1 !important;
    background-color: #bd6005 !important;
    background-color: rgba(189, 96, 5, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-ui-green-300 {
    --bg-opacity: 1 !important;
    background-color: #aac74c !important;
    background-color: rgba(170, 199, 76, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-ui-green-400 {
    --bg-opacity: 1 !important;
    background-color: #71893e !important;
    background-color: rgba(113, 137, 62, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-ui-orange-500 {
    --bg-opacity: 1 !important;
    background-color: #e27212 !important;
    background-color: rgba(226, 114, 18, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-facebook {
    --bg-opacity: 1 !important;
    background-color: #3b5998 !important;
    background-color: rgba(59, 89, 152, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-twitter {
    --bg-opacity: 1 !important;
    background-color: #00acee !important;
    background-color: rgba(0, 172, 238, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-twitch {
    --bg-opacity: 1 !important;
    background-color: #6441a5 !important;
    background-color: rgba(100, 65, 165, var(--bg-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-bg-youtube {
    --bg-opacity: 1 !important;
    background-color: #FF0000 !important;
    background-color: rgba(255, 0, 0, var(--bg-opacity)) !important;
  }

  .lg\:cl-bg-none {
    background-image: none !important;
  }

  .lg\:cl-bg-gradient-to-t {
    background-image: linear-gradient(to top, var(--gradient-color-stops)) !important;
  }

  .lg\:cl-bg-gradient-to-tr {
    background-image: linear-gradient(to top right, var(--gradient-color-stops)) !important;
  }

  .lg\:cl-bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--gradient-color-stops)) !important;
  }

  .lg\:cl-bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--gradient-color-stops)) !important;
  }

  .lg\:cl-bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--gradient-color-stops)) !important;
  }

  .lg\:cl-bg-gradient-to-bl {
    background-image: linear-gradient(to bottom left, var(--gradient-color-stops)) !important;
  }

  .lg\:cl-bg-gradient-to-l {
    background-image: linear-gradient(to left, var(--gradient-color-stops)) !important;
  }

  .lg\:cl-bg-gradient-to-tl {
    background-image: linear-gradient(to top left, var(--gradient-color-stops)) !important;
  }

  .lg\:cl-from-transparent {
    --gradient-from-color: transparent !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .lg\:cl-from-current {
    --gradient-from-color: currentColor !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .lg\:cl-from-black {
    --gradient-from-color: #000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .lg\:cl-from-white {
    --gradient-from-color: #fff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .lg\:cl-from-gray-100 {
    --gradient-from-color: #f7fafc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 250, 252, 0)) !important;
  }

  .lg\:cl-from-gray-200 {
    --gradient-from-color: #edf2f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 242, 247, 0)) !important;
  }

  .lg\:cl-from-gray-300 {
    --gradient-from-color: #e2e8f0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 232, 240, 0)) !important;
  }

  .lg\:cl-from-gray-400 {
    --gradient-from-color: #cbd5e0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(203, 213, 224, 0)) !important;
  }

  .lg\:cl-from-gray-500 {
    --gradient-from-color: #a0aec0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 174, 192, 0)) !important;
  }

  .lg\:cl-from-gray-600 {
    --gradient-from-color: #718096 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(113, 128, 150, 0)) !important;
  }

  .lg\:cl-from-gray-700 {
    --gradient-from-color: #4a5568 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 85, 104, 0)) !important;
  }

  .lg\:cl-from-gray-800 {
    --gradient-from-color: #2d3748 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(45, 55, 72, 0)) !important;
  }

  .lg\:cl-from-gray-900 {
    --gradient-from-color: #1a202c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 32, 44, 0)) !important;
  }

  .lg\:cl-from-red-100 {
    --gradient-from-color: #fff5f5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 245, 245, 0)) !important;
  }

  .lg\:cl-from-red-200 {
    --gradient-from-color: #fed7d7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 215, 215, 0)) !important;
  }

  .lg\:cl-from-red-300 {
    --gradient-from-color: #feb2b2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 178, 178, 0)) !important;
  }

  .lg\:cl-from-red-400 {
    --gradient-from-color: #fc8181 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(252, 129, 129, 0)) !important;
  }

  .lg\:cl-from-red-500 {
    --gradient-from-color: #f56565 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(245, 101, 101, 0)) !important;
  }

  .lg\:cl-from-red-600 {
    --gradient-from-color: #e53e3e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(229, 62, 62, 0)) !important;
  }

  .lg\:cl-from-red-700 {
    --gradient-from-color: #c53030 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(197, 48, 48, 0)) !important;
  }

  .lg\:cl-from-red-800 {
    --gradient-from-color: #9b2c2c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(155, 44, 44, 0)) !important;
  }

  .lg\:cl-from-red-900 {
    --gradient-from-color: #742a2a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(116, 42, 42, 0)) !important;
  }

  .lg\:cl-from-orange-100 {
    --gradient-from-color: #fffaf0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 240, 0)) !important;
  }

  .lg\:cl-from-orange-200 {
    --gradient-from-color: #feebc8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 235, 200, 0)) !important;
  }

  .lg\:cl-from-orange-300 {
    --gradient-from-color: #fbd38d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 211, 141, 0)) !important;
  }

  .lg\:cl-from-orange-400 {
    --gradient-from-color: #f6ad55 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 173, 85, 0)) !important;
  }

  .lg\:cl-from-orange-500 {
    --gradient-from-color: #ed8936 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 137, 54, 0)) !important;
  }

  .lg\:cl-from-orange-600 {
    --gradient-from-color: #dd6b20 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(221, 107, 32, 0)) !important;
  }

  .lg\:cl-from-orange-700 {
    --gradient-from-color: #c05621 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(192, 86, 33, 0)) !important;
  }

  .lg\:cl-from-orange-800 {
    --gradient-from-color: #9c4221 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 66, 33, 0)) !important;
  }

  .lg\:cl-from-orange-900 {
    --gradient-from-color: #7b341e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(123, 52, 30, 0)) !important;
  }

  .lg\:cl-from-yellow-100 {
    --gradient-from-color: #fffff0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 240, 0)) !important;
  }

  .lg\:cl-from-yellow-200 {
    --gradient-from-color: #fefcbf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 252, 191, 0)) !important;
  }

  .lg\:cl-from-yellow-300 {
    --gradient-from-color: #faf089 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 240, 137, 0)) !important;
  }

  .lg\:cl-from-yellow-400 {
    --gradient-from-color: #f6e05e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 224, 94, 0)) !important;
  }

  .lg\:cl-from-yellow-500 {
    --gradient-from-color: #ecc94b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 201, 75, 0)) !important;
  }

  .lg\:cl-from-yellow-600 {
    --gradient-from-color: #d69e2e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(214, 158, 46, 0)) !important;
  }

  .lg\:cl-from-yellow-700 {
    --gradient-from-color: #b7791f !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(183, 121, 31, 0)) !important;
  }

  .lg\:cl-from-yellow-800 {
    --gradient-from-color: #975a16 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(151, 90, 22, 0)) !important;
  }

  .lg\:cl-from-yellow-900 {
    --gradient-from-color: #744210 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(116, 66, 16, 0)) !important;
  }

  .lg\:cl-from-green-100 {
    --gradient-from-color: #f0fff4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(240, 255, 244, 0)) !important;
  }

  .lg\:cl-from-green-200 {
    --gradient-from-color: #c6f6d5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(198, 246, 213, 0)) !important;
  }

  .lg\:cl-from-green-300 {
    --gradient-from-color: #9ae6b4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 230, 180, 0)) !important;
  }

  .lg\:cl-from-green-400 {
    --gradient-from-color: #68d391 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(104, 211, 145, 0)) !important;
  }

  .lg\:cl-from-green-500 {
    --gradient-from-color: #48bb78 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(72, 187, 120, 0)) !important;
  }

  .lg\:cl-from-green-600 {
    --gradient-from-color: #38a169 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(56, 161, 105, 0)) !important;
  }

  .lg\:cl-from-green-700 {
    --gradient-from-color: #2f855a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(47, 133, 90, 0)) !important;
  }

  .lg\:cl-from-green-800 {
    --gradient-from-color: #276749 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(39, 103, 73, 0)) !important;
  }

  .lg\:cl-from-green-900 {
    --gradient-from-color: #22543d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(34, 84, 61, 0)) !important;
  }

  .lg\:cl-from-teal-100 {
    --gradient-from-color: #e6fffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 255, 250, 0)) !important;
  }

  .lg\:cl-from-teal-200 {
    --gradient-from-color: #b2f5ea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(178, 245, 234, 0)) !important;
  }

  .lg\:cl-from-teal-300 {
    --gradient-from-color: #81e6d9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(129, 230, 217, 0)) !important;
  }

  .lg\:cl-from-teal-400 {
    --gradient-from-color: #4fd1c5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(79, 209, 197, 0)) !important;
  }

  .lg\:cl-from-teal-500 {
    --gradient-from-color: #38b2ac !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(56, 178, 172, 0)) !important;
  }

  .lg\:cl-from-teal-600 {
    --gradient-from-color: #319795 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(49, 151, 149, 0)) !important;
  }

  .lg\:cl-from-teal-700 {
    --gradient-from-color: #2c7a7b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(44, 122, 123, 0)) !important;
  }

  .lg\:cl-from-teal-800 {
    --gradient-from-color: #285e61 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(40, 94, 97, 0)) !important;
  }

  .lg\:cl-from-teal-900 {
    --gradient-from-color: #234e52 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(35, 78, 82, 0)) !important;
  }

  .lg\:cl-from-blue-100 {
    --gradient-from-color: #ebf8ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(235, 248, 255, 0)) !important;
  }

  .lg\:cl-from-blue-200 {
    --gradient-from-color: #bee3f8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(190, 227, 248, 0)) !important;
  }

  .lg\:cl-from-blue-300 {
    --gradient-from-color: #90cdf4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 205, 244, 0)) !important;
  }

  .lg\:cl-from-blue-400 {
    --gradient-from-color: #63b3ed !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(99, 179, 237, 0)) !important;
  }

  .lg\:cl-from-blue-500 {
    --gradient-from-color: #4299e1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 153, 225, 0)) !important;
  }

  .lg\:cl-from-blue-600 {
    --gradient-from-color: #3182ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(49, 130, 206, 0)) !important;
  }

  .lg\:cl-from-blue-700 {
    --gradient-from-color: #2b6cb0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(43, 108, 176, 0)) !important;
  }

  .lg\:cl-from-blue-800 {
    --gradient-from-color: #2c5282 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(44, 82, 130, 0)) !important;
  }

  .lg\:cl-from-blue-900 {
    --gradient-from-color: #2a4365 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(42, 67, 101, 0)) !important;
  }

  .lg\:cl-from-indigo-100 {
    --gradient-from-color: #ebf4ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(235, 244, 255, 0)) !important;
  }

  .lg\:cl-from-indigo-200 {
    --gradient-from-color: #c3dafe !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(195, 218, 254, 0)) !important;
  }

  .lg\:cl-from-indigo-300 {
    --gradient-from-color: #a3bffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(163, 191, 250, 0)) !important;
  }

  .lg\:cl-from-indigo-400 {
    --gradient-from-color: #7f9cf5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(127, 156, 245, 0)) !important;
  }

  .lg\:cl-from-indigo-500 {
    --gradient-from-color: #667eea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 126, 234, 0)) !important;
  }

  .lg\:cl-from-indigo-600 {
    --gradient-from-color: #5a67d8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 103, 216, 0)) !important;
  }

  .lg\:cl-from-indigo-700 {
    --gradient-from-color: #4c51bf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(76, 81, 191, 0)) !important;
  }

  .lg\:cl-from-indigo-800 {
    --gradient-from-color: #434190 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(67, 65, 144, 0)) !important;
  }

  .lg\:cl-from-indigo-900 {
    --gradient-from-color: #3c366b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(60, 54, 107, 0)) !important;
  }

  .lg\:cl-from-purple-100 {
    --gradient-from-color: #faf5ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 245, 255, 0)) !important;
  }

  .lg\:cl-from-purple-200 {
    --gradient-from-color: #e9d8fd !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(233, 216, 253, 0)) !important;
  }

  .lg\:cl-from-purple-300 {
    --gradient-from-color: #d6bcfa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(214, 188, 250, 0)) !important;
  }

  .lg\:cl-from-purple-400 {
    --gradient-from-color: #b794f4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(183, 148, 244, 0)) !important;
  }

  .lg\:cl-from-purple-500 {
    --gradient-from-color: #9f7aea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(159, 122, 234, 0)) !important;
  }

  .lg\:cl-from-purple-600 {
    --gradient-from-color: #805ad5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(128, 90, 213, 0)) !important;
  }

  .lg\:cl-from-purple-700 {
    --gradient-from-color: #6b46c1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(107, 70, 193, 0)) !important;
  }

  .lg\:cl-from-purple-800 {
    --gradient-from-color: #553c9a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(85, 60, 154, 0)) !important;
  }

  .lg\:cl-from-purple-900 {
    --gradient-from-color: #44337a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(68, 51, 122, 0)) !important;
  }

  .lg\:cl-from-pink-100 {
    --gradient-from-color: #fff5f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 245, 247, 0)) !important;
  }

  .lg\:cl-from-pink-200 {
    --gradient-from-color: #fed7e2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 215, 226, 0)) !important;
  }

  .lg\:cl-from-pink-300 {
    --gradient-from-color: #fbb6ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 182, 206, 0)) !important;
  }

  .lg\:cl-from-pink-400 {
    --gradient-from-color: #f687b3 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 135, 179, 0)) !important;
  }

  .lg\:cl-from-pink-500 {
    --gradient-from-color: #ed64a6 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 100, 166, 0)) !important;
  }

  .lg\:cl-from-pink-600 {
    --gradient-from-color: #d53f8c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(213, 63, 140, 0)) !important;
  }

  .lg\:cl-from-pink-700 {
    --gradient-from-color: #b83280 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(184, 50, 128, 0)) !important;
  }

  .lg\:cl-from-pink-800 {
    --gradient-from-color: #97266d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(151, 38, 109, 0)) !important;
  }

  .lg\:cl-from-pink-900 {
    --gradient-from-color: #702459 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(112, 36, 89, 0)) !important;
  }

  .lg\:cl-from-ui-gray-100 {
    --gradient-from-color: #f1f1f1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(241, 241, 241, 0)) !important;
  }

  .lg\:cl-from-ui-brown-100 {
    --gradient-from-color: #f3ecdc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(243, 236, 220, 0)) !important;
  }

  .lg\:cl-from-ui-brown-200 {
    --gradient-from-color: #e8e0c9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(232, 224, 201, 0)) !important;
  }

  .lg\:cl-from-ui-brown-300 {
    --gradient-from-color: #d0c095 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(208, 192, 149, 0)) !important;
  }

  .lg\:cl-from-ui-brown-700 {
    --gradient-from-color: #bd6005 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(189, 96, 5, 0)) !important;
  }

  .lg\:cl-from-ui-green-300 {
    --gradient-from-color: #aac74c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(170, 199, 76, 0)) !important;
  }

  .lg\:cl-from-ui-green-400 {
    --gradient-from-color: #71893e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(113, 137, 62, 0)) !important;
  }

  .lg\:cl-from-ui-orange-500 {
    --gradient-from-color: #e27212 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 114, 18, 0)) !important;
  }

  .lg\:cl-from-facebook {
    --gradient-from-color: #3b5998 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(59, 89, 152, 0)) !important;
  }

  .lg\:cl-from-twitter {
    --gradient-from-color: #00acee !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 172, 238, 0)) !important;
  }

  .lg\:cl-from-twitch {
    --gradient-from-color: #6441a5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 65, 165, 0)) !important;
  }

  .lg\:cl-from-youtube {
    --gradient-from-color: #FF0000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 0, 0, 0)) !important;
  }

  .lg\:cl-via-transparent {
    --gradient-via-color: transparent !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .lg\:cl-via-current {
    --gradient-via-color: currentColor !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .lg\:cl-via-black {
    --gradient-via-color: #000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .lg\:cl-via-white {
    --gradient-via-color: #fff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .lg\:cl-via-gray-100 {
    --gradient-via-color: #f7fafc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 250, 252, 0)) !important;
  }

  .lg\:cl-via-gray-200 {
    --gradient-via-color: #edf2f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 242, 247, 0)) !important;
  }

  .lg\:cl-via-gray-300 {
    --gradient-via-color: #e2e8f0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 232, 240, 0)) !important;
  }

  .lg\:cl-via-gray-400 {
    --gradient-via-color: #cbd5e0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(203, 213, 224, 0)) !important;
  }

  .lg\:cl-via-gray-500 {
    --gradient-via-color: #a0aec0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 174, 192, 0)) !important;
  }

  .lg\:cl-via-gray-600 {
    --gradient-via-color: #718096 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(113, 128, 150, 0)) !important;
  }

  .lg\:cl-via-gray-700 {
    --gradient-via-color: #4a5568 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 85, 104, 0)) !important;
  }

  .lg\:cl-via-gray-800 {
    --gradient-via-color: #2d3748 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(45, 55, 72, 0)) !important;
  }

  .lg\:cl-via-gray-900 {
    --gradient-via-color: #1a202c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 32, 44, 0)) !important;
  }

  .lg\:cl-via-red-100 {
    --gradient-via-color: #fff5f5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 245, 245, 0)) !important;
  }

  .lg\:cl-via-red-200 {
    --gradient-via-color: #fed7d7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 215, 215, 0)) !important;
  }

  .lg\:cl-via-red-300 {
    --gradient-via-color: #feb2b2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 178, 178, 0)) !important;
  }

  .lg\:cl-via-red-400 {
    --gradient-via-color: #fc8181 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(252, 129, 129, 0)) !important;
  }

  .lg\:cl-via-red-500 {
    --gradient-via-color: #f56565 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(245, 101, 101, 0)) !important;
  }

  .lg\:cl-via-red-600 {
    --gradient-via-color: #e53e3e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(229, 62, 62, 0)) !important;
  }

  .lg\:cl-via-red-700 {
    --gradient-via-color: #c53030 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(197, 48, 48, 0)) !important;
  }

  .lg\:cl-via-red-800 {
    --gradient-via-color: #9b2c2c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(155, 44, 44, 0)) !important;
  }

  .lg\:cl-via-red-900 {
    --gradient-via-color: #742a2a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(116, 42, 42, 0)) !important;
  }

  .lg\:cl-via-orange-100 {
    --gradient-via-color: #fffaf0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 240, 0)) !important;
  }

  .lg\:cl-via-orange-200 {
    --gradient-via-color: #feebc8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 235, 200, 0)) !important;
  }

  .lg\:cl-via-orange-300 {
    --gradient-via-color: #fbd38d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 211, 141, 0)) !important;
  }

  .lg\:cl-via-orange-400 {
    --gradient-via-color: #f6ad55 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 173, 85, 0)) !important;
  }

  .lg\:cl-via-orange-500 {
    --gradient-via-color: #ed8936 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 137, 54, 0)) !important;
  }

  .lg\:cl-via-orange-600 {
    --gradient-via-color: #dd6b20 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(221, 107, 32, 0)) !important;
  }

  .lg\:cl-via-orange-700 {
    --gradient-via-color: #c05621 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(192, 86, 33, 0)) !important;
  }

  .lg\:cl-via-orange-800 {
    --gradient-via-color: #9c4221 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 66, 33, 0)) !important;
  }

  .lg\:cl-via-orange-900 {
    --gradient-via-color: #7b341e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(123, 52, 30, 0)) !important;
  }

  .lg\:cl-via-yellow-100 {
    --gradient-via-color: #fffff0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 240, 0)) !important;
  }

  .lg\:cl-via-yellow-200 {
    --gradient-via-color: #fefcbf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 252, 191, 0)) !important;
  }

  .lg\:cl-via-yellow-300 {
    --gradient-via-color: #faf089 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 240, 137, 0)) !important;
  }

  .lg\:cl-via-yellow-400 {
    --gradient-via-color: #f6e05e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 224, 94, 0)) !important;
  }

  .lg\:cl-via-yellow-500 {
    --gradient-via-color: #ecc94b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 201, 75, 0)) !important;
  }

  .lg\:cl-via-yellow-600 {
    --gradient-via-color: #d69e2e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(214, 158, 46, 0)) !important;
  }

  .lg\:cl-via-yellow-700 {
    --gradient-via-color: #b7791f !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(183, 121, 31, 0)) !important;
  }

  .lg\:cl-via-yellow-800 {
    --gradient-via-color: #975a16 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(151, 90, 22, 0)) !important;
  }

  .lg\:cl-via-yellow-900 {
    --gradient-via-color: #744210 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(116, 66, 16, 0)) !important;
  }

  .lg\:cl-via-green-100 {
    --gradient-via-color: #f0fff4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(240, 255, 244, 0)) !important;
  }

  .lg\:cl-via-green-200 {
    --gradient-via-color: #c6f6d5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(198, 246, 213, 0)) !important;
  }

  .lg\:cl-via-green-300 {
    --gradient-via-color: #9ae6b4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 230, 180, 0)) !important;
  }

  .lg\:cl-via-green-400 {
    --gradient-via-color: #68d391 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(104, 211, 145, 0)) !important;
  }

  .lg\:cl-via-green-500 {
    --gradient-via-color: #48bb78 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(72, 187, 120, 0)) !important;
  }

  .lg\:cl-via-green-600 {
    --gradient-via-color: #38a169 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(56, 161, 105, 0)) !important;
  }

  .lg\:cl-via-green-700 {
    --gradient-via-color: #2f855a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(47, 133, 90, 0)) !important;
  }

  .lg\:cl-via-green-800 {
    --gradient-via-color: #276749 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(39, 103, 73, 0)) !important;
  }

  .lg\:cl-via-green-900 {
    --gradient-via-color: #22543d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(34, 84, 61, 0)) !important;
  }

  .lg\:cl-via-teal-100 {
    --gradient-via-color: #e6fffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 255, 250, 0)) !important;
  }

  .lg\:cl-via-teal-200 {
    --gradient-via-color: #b2f5ea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(178, 245, 234, 0)) !important;
  }

  .lg\:cl-via-teal-300 {
    --gradient-via-color: #81e6d9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(129, 230, 217, 0)) !important;
  }

  .lg\:cl-via-teal-400 {
    --gradient-via-color: #4fd1c5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(79, 209, 197, 0)) !important;
  }

  .lg\:cl-via-teal-500 {
    --gradient-via-color: #38b2ac !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(56, 178, 172, 0)) !important;
  }

  .lg\:cl-via-teal-600 {
    --gradient-via-color: #319795 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(49, 151, 149, 0)) !important;
  }

  .lg\:cl-via-teal-700 {
    --gradient-via-color: #2c7a7b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(44, 122, 123, 0)) !important;
  }

  .lg\:cl-via-teal-800 {
    --gradient-via-color: #285e61 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(40, 94, 97, 0)) !important;
  }

  .lg\:cl-via-teal-900 {
    --gradient-via-color: #234e52 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(35, 78, 82, 0)) !important;
  }

  .lg\:cl-via-blue-100 {
    --gradient-via-color: #ebf8ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(235, 248, 255, 0)) !important;
  }

  .lg\:cl-via-blue-200 {
    --gradient-via-color: #bee3f8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(190, 227, 248, 0)) !important;
  }

  .lg\:cl-via-blue-300 {
    --gradient-via-color: #90cdf4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 205, 244, 0)) !important;
  }

  .lg\:cl-via-blue-400 {
    --gradient-via-color: #63b3ed !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(99, 179, 237, 0)) !important;
  }

  .lg\:cl-via-blue-500 {
    --gradient-via-color: #4299e1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 153, 225, 0)) !important;
  }

  .lg\:cl-via-blue-600 {
    --gradient-via-color: #3182ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(49, 130, 206, 0)) !important;
  }

  .lg\:cl-via-blue-700 {
    --gradient-via-color: #2b6cb0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(43, 108, 176, 0)) !important;
  }

  .lg\:cl-via-blue-800 {
    --gradient-via-color: #2c5282 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(44, 82, 130, 0)) !important;
  }

  .lg\:cl-via-blue-900 {
    --gradient-via-color: #2a4365 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(42, 67, 101, 0)) !important;
  }

  .lg\:cl-via-indigo-100 {
    --gradient-via-color: #ebf4ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(235, 244, 255, 0)) !important;
  }

  .lg\:cl-via-indigo-200 {
    --gradient-via-color: #c3dafe !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(195, 218, 254, 0)) !important;
  }

  .lg\:cl-via-indigo-300 {
    --gradient-via-color: #a3bffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(163, 191, 250, 0)) !important;
  }

  .lg\:cl-via-indigo-400 {
    --gradient-via-color: #7f9cf5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(127, 156, 245, 0)) !important;
  }

  .lg\:cl-via-indigo-500 {
    --gradient-via-color: #667eea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 126, 234, 0)) !important;
  }

  .lg\:cl-via-indigo-600 {
    --gradient-via-color: #5a67d8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 103, 216, 0)) !important;
  }

  .lg\:cl-via-indigo-700 {
    --gradient-via-color: #4c51bf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(76, 81, 191, 0)) !important;
  }

  .lg\:cl-via-indigo-800 {
    --gradient-via-color: #434190 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(67, 65, 144, 0)) !important;
  }

  .lg\:cl-via-indigo-900 {
    --gradient-via-color: #3c366b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(60, 54, 107, 0)) !important;
  }

  .lg\:cl-via-purple-100 {
    --gradient-via-color: #faf5ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 245, 255, 0)) !important;
  }

  .lg\:cl-via-purple-200 {
    --gradient-via-color: #e9d8fd !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(233, 216, 253, 0)) !important;
  }

  .lg\:cl-via-purple-300 {
    --gradient-via-color: #d6bcfa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(214, 188, 250, 0)) !important;
  }

  .lg\:cl-via-purple-400 {
    --gradient-via-color: #b794f4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(183, 148, 244, 0)) !important;
  }

  .lg\:cl-via-purple-500 {
    --gradient-via-color: #9f7aea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(159, 122, 234, 0)) !important;
  }

  .lg\:cl-via-purple-600 {
    --gradient-via-color: #805ad5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(128, 90, 213, 0)) !important;
  }

  .lg\:cl-via-purple-700 {
    --gradient-via-color: #6b46c1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(107, 70, 193, 0)) !important;
  }

  .lg\:cl-via-purple-800 {
    --gradient-via-color: #553c9a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(85, 60, 154, 0)) !important;
  }

  .lg\:cl-via-purple-900 {
    --gradient-via-color: #44337a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(68, 51, 122, 0)) !important;
  }

  .lg\:cl-via-pink-100 {
    --gradient-via-color: #fff5f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 245, 247, 0)) !important;
  }

  .lg\:cl-via-pink-200 {
    --gradient-via-color: #fed7e2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 215, 226, 0)) !important;
  }

  .lg\:cl-via-pink-300 {
    --gradient-via-color: #fbb6ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 182, 206, 0)) !important;
  }

  .lg\:cl-via-pink-400 {
    --gradient-via-color: #f687b3 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 135, 179, 0)) !important;
  }

  .lg\:cl-via-pink-500 {
    --gradient-via-color: #ed64a6 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 100, 166, 0)) !important;
  }

  .lg\:cl-via-pink-600 {
    --gradient-via-color: #d53f8c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(213, 63, 140, 0)) !important;
  }

  .lg\:cl-via-pink-700 {
    --gradient-via-color: #b83280 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(184, 50, 128, 0)) !important;
  }

  .lg\:cl-via-pink-800 {
    --gradient-via-color: #97266d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(151, 38, 109, 0)) !important;
  }

  .lg\:cl-via-pink-900 {
    --gradient-via-color: #702459 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(112, 36, 89, 0)) !important;
  }

  .lg\:cl-via-ui-gray-100 {
    --gradient-via-color: #f1f1f1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(241, 241, 241, 0)) !important;
  }

  .lg\:cl-via-ui-brown-100 {
    --gradient-via-color: #f3ecdc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(243, 236, 220, 0)) !important;
  }

  .lg\:cl-via-ui-brown-200 {
    --gradient-via-color: #e8e0c9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(232, 224, 201, 0)) !important;
  }

  .lg\:cl-via-ui-brown-300 {
    --gradient-via-color: #d0c095 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(208, 192, 149, 0)) !important;
  }

  .lg\:cl-via-ui-brown-700 {
    --gradient-via-color: #bd6005 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(189, 96, 5, 0)) !important;
  }

  .lg\:cl-via-ui-green-300 {
    --gradient-via-color: #aac74c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(170, 199, 76, 0)) !important;
  }

  .lg\:cl-via-ui-green-400 {
    --gradient-via-color: #71893e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(113, 137, 62, 0)) !important;
  }

  .lg\:cl-via-ui-orange-500 {
    --gradient-via-color: #e27212 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 114, 18, 0)) !important;
  }

  .lg\:cl-via-facebook {
    --gradient-via-color: #3b5998 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(59, 89, 152, 0)) !important;
  }

  .lg\:cl-via-twitter {
    --gradient-via-color: #00acee !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 172, 238, 0)) !important;
  }

  .lg\:cl-via-twitch {
    --gradient-via-color: #6441a5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 65, 165, 0)) !important;
  }

  .lg\:cl-via-youtube {
    --gradient-via-color: #FF0000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 0, 0, 0)) !important;
  }

  .lg\:cl-to-transparent {
    --gradient-to-color: transparent !important;
  }

  .lg\:cl-to-current {
    --gradient-to-color: currentColor !important;
  }

  .lg\:cl-to-black {
    --gradient-to-color: #000 !important;
  }

  .lg\:cl-to-white {
    --gradient-to-color: #fff !important;
  }

  .lg\:cl-to-gray-100 {
    --gradient-to-color: #f7fafc !important;
  }

  .lg\:cl-to-gray-200 {
    --gradient-to-color: #edf2f7 !important;
  }

  .lg\:cl-to-gray-300 {
    --gradient-to-color: #e2e8f0 !important;
  }

  .lg\:cl-to-gray-400 {
    --gradient-to-color: #cbd5e0 !important;
  }

  .lg\:cl-to-gray-500 {
    --gradient-to-color: #a0aec0 !important;
  }

  .lg\:cl-to-gray-600 {
    --gradient-to-color: #718096 !important;
  }

  .lg\:cl-to-gray-700 {
    --gradient-to-color: #4a5568 !important;
  }

  .lg\:cl-to-gray-800 {
    --gradient-to-color: #2d3748 !important;
  }

  .lg\:cl-to-gray-900 {
    --gradient-to-color: #1a202c !important;
  }

  .lg\:cl-to-red-100 {
    --gradient-to-color: #fff5f5 !important;
  }

  .lg\:cl-to-red-200 {
    --gradient-to-color: #fed7d7 !important;
  }

  .lg\:cl-to-red-300 {
    --gradient-to-color: #feb2b2 !important;
  }

  .lg\:cl-to-red-400 {
    --gradient-to-color: #fc8181 !important;
  }

  .lg\:cl-to-red-500 {
    --gradient-to-color: #f56565 !important;
  }

  .lg\:cl-to-red-600 {
    --gradient-to-color: #e53e3e !important;
  }

  .lg\:cl-to-red-700 {
    --gradient-to-color: #c53030 !important;
  }

  .lg\:cl-to-red-800 {
    --gradient-to-color: #9b2c2c !important;
  }

  .lg\:cl-to-red-900 {
    --gradient-to-color: #742a2a !important;
  }

  .lg\:cl-to-orange-100 {
    --gradient-to-color: #fffaf0 !important;
  }

  .lg\:cl-to-orange-200 {
    --gradient-to-color: #feebc8 !important;
  }

  .lg\:cl-to-orange-300 {
    --gradient-to-color: #fbd38d !important;
  }

  .lg\:cl-to-orange-400 {
    --gradient-to-color: #f6ad55 !important;
  }

  .lg\:cl-to-orange-500 {
    --gradient-to-color: #ed8936 !important;
  }

  .lg\:cl-to-orange-600 {
    --gradient-to-color: #dd6b20 !important;
  }

  .lg\:cl-to-orange-700 {
    --gradient-to-color: #c05621 !important;
  }

  .lg\:cl-to-orange-800 {
    --gradient-to-color: #9c4221 !important;
  }

  .lg\:cl-to-orange-900 {
    --gradient-to-color: #7b341e !important;
  }

  .lg\:cl-to-yellow-100 {
    --gradient-to-color: #fffff0 !important;
  }

  .lg\:cl-to-yellow-200 {
    --gradient-to-color: #fefcbf !important;
  }

  .lg\:cl-to-yellow-300 {
    --gradient-to-color: #faf089 !important;
  }

  .lg\:cl-to-yellow-400 {
    --gradient-to-color: #f6e05e !important;
  }

  .lg\:cl-to-yellow-500 {
    --gradient-to-color: #ecc94b !important;
  }

  .lg\:cl-to-yellow-600 {
    --gradient-to-color: #d69e2e !important;
  }

  .lg\:cl-to-yellow-700 {
    --gradient-to-color: #b7791f !important;
  }

  .lg\:cl-to-yellow-800 {
    --gradient-to-color: #975a16 !important;
  }

  .lg\:cl-to-yellow-900 {
    --gradient-to-color: #744210 !important;
  }

  .lg\:cl-to-green-100 {
    --gradient-to-color: #f0fff4 !important;
  }

  .lg\:cl-to-green-200 {
    --gradient-to-color: #c6f6d5 !important;
  }

  .lg\:cl-to-green-300 {
    --gradient-to-color: #9ae6b4 !important;
  }

  .lg\:cl-to-green-400 {
    --gradient-to-color: #68d391 !important;
  }

  .lg\:cl-to-green-500 {
    --gradient-to-color: #48bb78 !important;
  }

  .lg\:cl-to-green-600 {
    --gradient-to-color: #38a169 !important;
  }

  .lg\:cl-to-green-700 {
    --gradient-to-color: #2f855a !important;
  }

  .lg\:cl-to-green-800 {
    --gradient-to-color: #276749 !important;
  }

  .lg\:cl-to-green-900 {
    --gradient-to-color: #22543d !important;
  }

  .lg\:cl-to-teal-100 {
    --gradient-to-color: #e6fffa !important;
  }

  .lg\:cl-to-teal-200 {
    --gradient-to-color: #b2f5ea !important;
  }

  .lg\:cl-to-teal-300 {
    --gradient-to-color: #81e6d9 !important;
  }

  .lg\:cl-to-teal-400 {
    --gradient-to-color: #4fd1c5 !important;
  }

  .lg\:cl-to-teal-500 {
    --gradient-to-color: #38b2ac !important;
  }

  .lg\:cl-to-teal-600 {
    --gradient-to-color: #319795 !important;
  }

  .lg\:cl-to-teal-700 {
    --gradient-to-color: #2c7a7b !important;
  }

  .lg\:cl-to-teal-800 {
    --gradient-to-color: #285e61 !important;
  }

  .lg\:cl-to-teal-900 {
    --gradient-to-color: #234e52 !important;
  }

  .lg\:cl-to-blue-100 {
    --gradient-to-color: #ebf8ff !important;
  }

  .lg\:cl-to-blue-200 {
    --gradient-to-color: #bee3f8 !important;
  }

  .lg\:cl-to-blue-300 {
    --gradient-to-color: #90cdf4 !important;
  }

  .lg\:cl-to-blue-400 {
    --gradient-to-color: #63b3ed !important;
  }

  .lg\:cl-to-blue-500 {
    --gradient-to-color: #4299e1 !important;
  }

  .lg\:cl-to-blue-600 {
    --gradient-to-color: #3182ce !important;
  }

  .lg\:cl-to-blue-700 {
    --gradient-to-color: #2b6cb0 !important;
  }

  .lg\:cl-to-blue-800 {
    --gradient-to-color: #2c5282 !important;
  }

  .lg\:cl-to-blue-900 {
    --gradient-to-color: #2a4365 !important;
  }

  .lg\:cl-to-indigo-100 {
    --gradient-to-color: #ebf4ff !important;
  }

  .lg\:cl-to-indigo-200 {
    --gradient-to-color: #c3dafe !important;
  }

  .lg\:cl-to-indigo-300 {
    --gradient-to-color: #a3bffa !important;
  }

  .lg\:cl-to-indigo-400 {
    --gradient-to-color: #7f9cf5 !important;
  }

  .lg\:cl-to-indigo-500 {
    --gradient-to-color: #667eea !important;
  }

  .lg\:cl-to-indigo-600 {
    --gradient-to-color: #5a67d8 !important;
  }

  .lg\:cl-to-indigo-700 {
    --gradient-to-color: #4c51bf !important;
  }

  .lg\:cl-to-indigo-800 {
    --gradient-to-color: #434190 !important;
  }

  .lg\:cl-to-indigo-900 {
    --gradient-to-color: #3c366b !important;
  }

  .lg\:cl-to-purple-100 {
    --gradient-to-color: #faf5ff !important;
  }

  .lg\:cl-to-purple-200 {
    --gradient-to-color: #e9d8fd !important;
  }

  .lg\:cl-to-purple-300 {
    --gradient-to-color: #d6bcfa !important;
  }

  .lg\:cl-to-purple-400 {
    --gradient-to-color: #b794f4 !important;
  }

  .lg\:cl-to-purple-500 {
    --gradient-to-color: #9f7aea !important;
  }

  .lg\:cl-to-purple-600 {
    --gradient-to-color: #805ad5 !important;
  }

  .lg\:cl-to-purple-700 {
    --gradient-to-color: #6b46c1 !important;
  }

  .lg\:cl-to-purple-800 {
    --gradient-to-color: #553c9a !important;
  }

  .lg\:cl-to-purple-900 {
    --gradient-to-color: #44337a !important;
  }

  .lg\:cl-to-pink-100 {
    --gradient-to-color: #fff5f7 !important;
  }

  .lg\:cl-to-pink-200 {
    --gradient-to-color: #fed7e2 !important;
  }

  .lg\:cl-to-pink-300 {
    --gradient-to-color: #fbb6ce !important;
  }

  .lg\:cl-to-pink-400 {
    --gradient-to-color: #f687b3 !important;
  }

  .lg\:cl-to-pink-500 {
    --gradient-to-color: #ed64a6 !important;
  }

  .lg\:cl-to-pink-600 {
    --gradient-to-color: #d53f8c !important;
  }

  .lg\:cl-to-pink-700 {
    --gradient-to-color: #b83280 !important;
  }

  .lg\:cl-to-pink-800 {
    --gradient-to-color: #97266d !important;
  }

  .lg\:cl-to-pink-900 {
    --gradient-to-color: #702459 !important;
  }

  .lg\:cl-to-ui-gray-100 {
    --gradient-to-color: #f1f1f1 !important;
  }

  .lg\:cl-to-ui-brown-100 {
    --gradient-to-color: #f3ecdc !important;
  }

  .lg\:cl-to-ui-brown-200 {
    --gradient-to-color: #e8e0c9 !important;
  }

  .lg\:cl-to-ui-brown-300 {
    --gradient-to-color: #d0c095 !important;
  }

  .lg\:cl-to-ui-brown-700 {
    --gradient-to-color: #bd6005 !important;
  }

  .lg\:cl-to-ui-green-300 {
    --gradient-to-color: #aac74c !important;
  }

  .lg\:cl-to-ui-green-400 {
    --gradient-to-color: #71893e !important;
  }

  .lg\:cl-to-ui-orange-500 {
    --gradient-to-color: #e27212 !important;
  }

  .lg\:cl-to-facebook {
    --gradient-to-color: #3b5998 !important;
  }

  .lg\:cl-to-twitter {
    --gradient-to-color: #00acee !important;
  }

  .lg\:cl-to-twitch {
    --gradient-to-color: #6441a5 !important;
  }

  .lg\:cl-to-youtube {
    --gradient-to-color: #FF0000 !important;
  }

  .lg\:hover\:cl-from-transparent:hover {
    --gradient-from-color: transparent !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .lg\:hover\:cl-from-current:hover {
    --gradient-from-color: currentColor !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .lg\:hover\:cl-from-black:hover {
    --gradient-from-color: #000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .lg\:hover\:cl-from-white:hover {
    --gradient-from-color: #fff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .lg\:hover\:cl-from-gray-100:hover {
    --gradient-from-color: #f7fafc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 250, 252, 0)) !important;
  }

  .lg\:hover\:cl-from-gray-200:hover {
    --gradient-from-color: #edf2f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 242, 247, 0)) !important;
  }

  .lg\:hover\:cl-from-gray-300:hover {
    --gradient-from-color: #e2e8f0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 232, 240, 0)) !important;
  }

  .lg\:hover\:cl-from-gray-400:hover {
    --gradient-from-color: #cbd5e0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(203, 213, 224, 0)) !important;
  }

  .lg\:hover\:cl-from-gray-500:hover {
    --gradient-from-color: #a0aec0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 174, 192, 0)) !important;
  }

  .lg\:hover\:cl-from-gray-600:hover {
    --gradient-from-color: #718096 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(113, 128, 150, 0)) !important;
  }

  .lg\:hover\:cl-from-gray-700:hover {
    --gradient-from-color: #4a5568 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 85, 104, 0)) !important;
  }

  .lg\:hover\:cl-from-gray-800:hover {
    --gradient-from-color: #2d3748 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(45, 55, 72, 0)) !important;
  }

  .lg\:hover\:cl-from-gray-900:hover {
    --gradient-from-color: #1a202c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 32, 44, 0)) !important;
  }

  .lg\:hover\:cl-from-red-100:hover {
    --gradient-from-color: #fff5f5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 245, 245, 0)) !important;
  }

  .lg\:hover\:cl-from-red-200:hover {
    --gradient-from-color: #fed7d7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 215, 215, 0)) !important;
  }

  .lg\:hover\:cl-from-red-300:hover {
    --gradient-from-color: #feb2b2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 178, 178, 0)) !important;
  }

  .lg\:hover\:cl-from-red-400:hover {
    --gradient-from-color: #fc8181 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(252, 129, 129, 0)) !important;
  }

  .lg\:hover\:cl-from-red-500:hover {
    --gradient-from-color: #f56565 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(245, 101, 101, 0)) !important;
  }

  .lg\:hover\:cl-from-red-600:hover {
    --gradient-from-color: #e53e3e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(229, 62, 62, 0)) !important;
  }

  .lg\:hover\:cl-from-red-700:hover {
    --gradient-from-color: #c53030 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(197, 48, 48, 0)) !important;
  }

  .lg\:hover\:cl-from-red-800:hover {
    --gradient-from-color: #9b2c2c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(155, 44, 44, 0)) !important;
  }

  .lg\:hover\:cl-from-red-900:hover {
    --gradient-from-color: #742a2a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(116, 42, 42, 0)) !important;
  }

  .lg\:hover\:cl-from-orange-100:hover {
    --gradient-from-color: #fffaf0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 240, 0)) !important;
  }

  .lg\:hover\:cl-from-orange-200:hover {
    --gradient-from-color: #feebc8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 235, 200, 0)) !important;
  }

  .lg\:hover\:cl-from-orange-300:hover {
    --gradient-from-color: #fbd38d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 211, 141, 0)) !important;
  }

  .lg\:hover\:cl-from-orange-400:hover {
    --gradient-from-color: #f6ad55 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 173, 85, 0)) !important;
  }

  .lg\:hover\:cl-from-orange-500:hover {
    --gradient-from-color: #ed8936 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 137, 54, 0)) !important;
  }

  .lg\:hover\:cl-from-orange-600:hover {
    --gradient-from-color: #dd6b20 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(221, 107, 32, 0)) !important;
  }

  .lg\:hover\:cl-from-orange-700:hover {
    --gradient-from-color: #c05621 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(192, 86, 33, 0)) !important;
  }

  .lg\:hover\:cl-from-orange-800:hover {
    --gradient-from-color: #9c4221 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 66, 33, 0)) !important;
  }

  .lg\:hover\:cl-from-orange-900:hover {
    --gradient-from-color: #7b341e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(123, 52, 30, 0)) !important;
  }

  .lg\:hover\:cl-from-yellow-100:hover {
    --gradient-from-color: #fffff0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 240, 0)) !important;
  }

  .lg\:hover\:cl-from-yellow-200:hover {
    --gradient-from-color: #fefcbf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 252, 191, 0)) !important;
  }

  .lg\:hover\:cl-from-yellow-300:hover {
    --gradient-from-color: #faf089 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 240, 137, 0)) !important;
  }

  .lg\:hover\:cl-from-yellow-400:hover {
    --gradient-from-color: #f6e05e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 224, 94, 0)) !important;
  }

  .lg\:hover\:cl-from-yellow-500:hover {
    --gradient-from-color: #ecc94b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 201, 75, 0)) !important;
  }

  .lg\:hover\:cl-from-yellow-600:hover {
    --gradient-from-color: #d69e2e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(214, 158, 46, 0)) !important;
  }

  .lg\:hover\:cl-from-yellow-700:hover {
    --gradient-from-color: #b7791f !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(183, 121, 31, 0)) !important;
  }

  .lg\:hover\:cl-from-yellow-800:hover {
    --gradient-from-color: #975a16 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(151, 90, 22, 0)) !important;
  }

  .lg\:hover\:cl-from-yellow-900:hover {
    --gradient-from-color: #744210 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(116, 66, 16, 0)) !important;
  }

  .lg\:hover\:cl-from-green-100:hover {
    --gradient-from-color: #f0fff4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(240, 255, 244, 0)) !important;
  }

  .lg\:hover\:cl-from-green-200:hover {
    --gradient-from-color: #c6f6d5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(198, 246, 213, 0)) !important;
  }

  .lg\:hover\:cl-from-green-300:hover {
    --gradient-from-color: #9ae6b4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 230, 180, 0)) !important;
  }

  .lg\:hover\:cl-from-green-400:hover {
    --gradient-from-color: #68d391 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(104, 211, 145, 0)) !important;
  }

  .lg\:hover\:cl-from-green-500:hover {
    --gradient-from-color: #48bb78 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(72, 187, 120, 0)) !important;
  }

  .lg\:hover\:cl-from-green-600:hover {
    --gradient-from-color: #38a169 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(56, 161, 105, 0)) !important;
  }

  .lg\:hover\:cl-from-green-700:hover {
    --gradient-from-color: #2f855a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(47, 133, 90, 0)) !important;
  }

  .lg\:hover\:cl-from-green-800:hover {
    --gradient-from-color: #276749 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(39, 103, 73, 0)) !important;
  }

  .lg\:hover\:cl-from-green-900:hover {
    --gradient-from-color: #22543d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(34, 84, 61, 0)) !important;
  }

  .lg\:hover\:cl-from-teal-100:hover {
    --gradient-from-color: #e6fffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 255, 250, 0)) !important;
  }

  .lg\:hover\:cl-from-teal-200:hover {
    --gradient-from-color: #b2f5ea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(178, 245, 234, 0)) !important;
  }

  .lg\:hover\:cl-from-teal-300:hover {
    --gradient-from-color: #81e6d9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(129, 230, 217, 0)) !important;
  }

  .lg\:hover\:cl-from-teal-400:hover {
    --gradient-from-color: #4fd1c5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(79, 209, 197, 0)) !important;
  }

  .lg\:hover\:cl-from-teal-500:hover {
    --gradient-from-color: #38b2ac !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(56, 178, 172, 0)) !important;
  }

  .lg\:hover\:cl-from-teal-600:hover {
    --gradient-from-color: #319795 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(49, 151, 149, 0)) !important;
  }

  .lg\:hover\:cl-from-teal-700:hover {
    --gradient-from-color: #2c7a7b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(44, 122, 123, 0)) !important;
  }

  .lg\:hover\:cl-from-teal-800:hover {
    --gradient-from-color: #285e61 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(40, 94, 97, 0)) !important;
  }

  .lg\:hover\:cl-from-teal-900:hover {
    --gradient-from-color: #234e52 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(35, 78, 82, 0)) !important;
  }

  .lg\:hover\:cl-from-blue-100:hover {
    --gradient-from-color: #ebf8ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(235, 248, 255, 0)) !important;
  }

  .lg\:hover\:cl-from-blue-200:hover {
    --gradient-from-color: #bee3f8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(190, 227, 248, 0)) !important;
  }

  .lg\:hover\:cl-from-blue-300:hover {
    --gradient-from-color: #90cdf4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 205, 244, 0)) !important;
  }

  .lg\:hover\:cl-from-blue-400:hover {
    --gradient-from-color: #63b3ed !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(99, 179, 237, 0)) !important;
  }

  .lg\:hover\:cl-from-blue-500:hover {
    --gradient-from-color: #4299e1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 153, 225, 0)) !important;
  }

  .lg\:hover\:cl-from-blue-600:hover {
    --gradient-from-color: #3182ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(49, 130, 206, 0)) !important;
  }

  .lg\:hover\:cl-from-blue-700:hover {
    --gradient-from-color: #2b6cb0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(43, 108, 176, 0)) !important;
  }

  .lg\:hover\:cl-from-blue-800:hover {
    --gradient-from-color: #2c5282 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(44, 82, 130, 0)) !important;
  }

  .lg\:hover\:cl-from-blue-900:hover {
    --gradient-from-color: #2a4365 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(42, 67, 101, 0)) !important;
  }

  .lg\:hover\:cl-from-indigo-100:hover {
    --gradient-from-color: #ebf4ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(235, 244, 255, 0)) !important;
  }

  .lg\:hover\:cl-from-indigo-200:hover {
    --gradient-from-color: #c3dafe !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(195, 218, 254, 0)) !important;
  }

  .lg\:hover\:cl-from-indigo-300:hover {
    --gradient-from-color: #a3bffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(163, 191, 250, 0)) !important;
  }

  .lg\:hover\:cl-from-indigo-400:hover {
    --gradient-from-color: #7f9cf5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(127, 156, 245, 0)) !important;
  }

  .lg\:hover\:cl-from-indigo-500:hover {
    --gradient-from-color: #667eea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 126, 234, 0)) !important;
  }

  .lg\:hover\:cl-from-indigo-600:hover {
    --gradient-from-color: #5a67d8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 103, 216, 0)) !important;
  }

  .lg\:hover\:cl-from-indigo-700:hover {
    --gradient-from-color: #4c51bf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(76, 81, 191, 0)) !important;
  }

  .lg\:hover\:cl-from-indigo-800:hover {
    --gradient-from-color: #434190 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(67, 65, 144, 0)) !important;
  }

  .lg\:hover\:cl-from-indigo-900:hover {
    --gradient-from-color: #3c366b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(60, 54, 107, 0)) !important;
  }

  .lg\:hover\:cl-from-purple-100:hover {
    --gradient-from-color: #faf5ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 245, 255, 0)) !important;
  }

  .lg\:hover\:cl-from-purple-200:hover {
    --gradient-from-color: #e9d8fd !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(233, 216, 253, 0)) !important;
  }

  .lg\:hover\:cl-from-purple-300:hover {
    --gradient-from-color: #d6bcfa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(214, 188, 250, 0)) !important;
  }

  .lg\:hover\:cl-from-purple-400:hover {
    --gradient-from-color: #b794f4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(183, 148, 244, 0)) !important;
  }

  .lg\:hover\:cl-from-purple-500:hover {
    --gradient-from-color: #9f7aea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(159, 122, 234, 0)) !important;
  }

  .lg\:hover\:cl-from-purple-600:hover {
    --gradient-from-color: #805ad5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(128, 90, 213, 0)) !important;
  }

  .lg\:hover\:cl-from-purple-700:hover {
    --gradient-from-color: #6b46c1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(107, 70, 193, 0)) !important;
  }

  .lg\:hover\:cl-from-purple-800:hover {
    --gradient-from-color: #553c9a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(85, 60, 154, 0)) !important;
  }

  .lg\:hover\:cl-from-purple-900:hover {
    --gradient-from-color: #44337a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(68, 51, 122, 0)) !important;
  }

  .lg\:hover\:cl-from-pink-100:hover {
    --gradient-from-color: #fff5f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 245, 247, 0)) !important;
  }

  .lg\:hover\:cl-from-pink-200:hover {
    --gradient-from-color: #fed7e2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 215, 226, 0)) !important;
  }

  .lg\:hover\:cl-from-pink-300:hover {
    --gradient-from-color: #fbb6ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 182, 206, 0)) !important;
  }

  .lg\:hover\:cl-from-pink-400:hover {
    --gradient-from-color: #f687b3 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 135, 179, 0)) !important;
  }

  .lg\:hover\:cl-from-pink-500:hover {
    --gradient-from-color: #ed64a6 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 100, 166, 0)) !important;
  }

  .lg\:hover\:cl-from-pink-600:hover {
    --gradient-from-color: #d53f8c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(213, 63, 140, 0)) !important;
  }

  .lg\:hover\:cl-from-pink-700:hover {
    --gradient-from-color: #b83280 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(184, 50, 128, 0)) !important;
  }

  .lg\:hover\:cl-from-pink-800:hover {
    --gradient-from-color: #97266d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(151, 38, 109, 0)) !important;
  }

  .lg\:hover\:cl-from-pink-900:hover {
    --gradient-from-color: #702459 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(112, 36, 89, 0)) !important;
  }

  .lg\:hover\:cl-from-ui-gray-100:hover {
    --gradient-from-color: #f1f1f1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(241, 241, 241, 0)) !important;
  }

  .lg\:hover\:cl-from-ui-brown-100:hover {
    --gradient-from-color: #f3ecdc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(243, 236, 220, 0)) !important;
  }

  .lg\:hover\:cl-from-ui-brown-200:hover {
    --gradient-from-color: #e8e0c9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(232, 224, 201, 0)) !important;
  }

  .lg\:hover\:cl-from-ui-brown-300:hover {
    --gradient-from-color: #d0c095 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(208, 192, 149, 0)) !important;
  }

  .lg\:hover\:cl-from-ui-brown-700:hover {
    --gradient-from-color: #bd6005 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(189, 96, 5, 0)) !important;
  }

  .lg\:hover\:cl-from-ui-green-300:hover {
    --gradient-from-color: #aac74c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(170, 199, 76, 0)) !important;
  }

  .lg\:hover\:cl-from-ui-green-400:hover {
    --gradient-from-color: #71893e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(113, 137, 62, 0)) !important;
  }

  .lg\:hover\:cl-from-ui-orange-500:hover {
    --gradient-from-color: #e27212 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 114, 18, 0)) !important;
  }

  .lg\:hover\:cl-from-facebook:hover {
    --gradient-from-color: #3b5998 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(59, 89, 152, 0)) !important;
  }

  .lg\:hover\:cl-from-twitter:hover {
    --gradient-from-color: #00acee !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 172, 238, 0)) !important;
  }

  .lg\:hover\:cl-from-twitch:hover {
    --gradient-from-color: #6441a5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 65, 165, 0)) !important;
  }

  .lg\:hover\:cl-from-youtube:hover {
    --gradient-from-color: #FF0000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 0, 0, 0)) !important;
  }

  .lg\:hover\:cl-via-transparent:hover {
    --gradient-via-color: transparent !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .lg\:hover\:cl-via-current:hover {
    --gradient-via-color: currentColor !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .lg\:hover\:cl-via-black:hover {
    --gradient-via-color: #000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .lg\:hover\:cl-via-white:hover {
    --gradient-via-color: #fff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .lg\:hover\:cl-via-gray-100:hover {
    --gradient-via-color: #f7fafc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 250, 252, 0)) !important;
  }

  .lg\:hover\:cl-via-gray-200:hover {
    --gradient-via-color: #edf2f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 242, 247, 0)) !important;
  }

  .lg\:hover\:cl-via-gray-300:hover {
    --gradient-via-color: #e2e8f0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 232, 240, 0)) !important;
  }

  .lg\:hover\:cl-via-gray-400:hover {
    --gradient-via-color: #cbd5e0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(203, 213, 224, 0)) !important;
  }

  .lg\:hover\:cl-via-gray-500:hover {
    --gradient-via-color: #a0aec0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 174, 192, 0)) !important;
  }

  .lg\:hover\:cl-via-gray-600:hover {
    --gradient-via-color: #718096 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(113, 128, 150, 0)) !important;
  }

  .lg\:hover\:cl-via-gray-700:hover {
    --gradient-via-color: #4a5568 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 85, 104, 0)) !important;
  }

  .lg\:hover\:cl-via-gray-800:hover {
    --gradient-via-color: #2d3748 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(45, 55, 72, 0)) !important;
  }

  .lg\:hover\:cl-via-gray-900:hover {
    --gradient-via-color: #1a202c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 32, 44, 0)) !important;
  }

  .lg\:hover\:cl-via-red-100:hover {
    --gradient-via-color: #fff5f5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 245, 245, 0)) !important;
  }

  .lg\:hover\:cl-via-red-200:hover {
    --gradient-via-color: #fed7d7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 215, 215, 0)) !important;
  }

  .lg\:hover\:cl-via-red-300:hover {
    --gradient-via-color: #feb2b2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 178, 178, 0)) !important;
  }

  .lg\:hover\:cl-via-red-400:hover {
    --gradient-via-color: #fc8181 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(252, 129, 129, 0)) !important;
  }

  .lg\:hover\:cl-via-red-500:hover {
    --gradient-via-color: #f56565 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(245, 101, 101, 0)) !important;
  }

  .lg\:hover\:cl-via-red-600:hover {
    --gradient-via-color: #e53e3e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(229, 62, 62, 0)) !important;
  }

  .lg\:hover\:cl-via-red-700:hover {
    --gradient-via-color: #c53030 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(197, 48, 48, 0)) !important;
  }

  .lg\:hover\:cl-via-red-800:hover {
    --gradient-via-color: #9b2c2c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(155, 44, 44, 0)) !important;
  }

  .lg\:hover\:cl-via-red-900:hover {
    --gradient-via-color: #742a2a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(116, 42, 42, 0)) !important;
  }

  .lg\:hover\:cl-via-orange-100:hover {
    --gradient-via-color: #fffaf0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 240, 0)) !important;
  }

  .lg\:hover\:cl-via-orange-200:hover {
    --gradient-via-color: #feebc8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 235, 200, 0)) !important;
  }

  .lg\:hover\:cl-via-orange-300:hover {
    --gradient-via-color: #fbd38d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 211, 141, 0)) !important;
  }

  .lg\:hover\:cl-via-orange-400:hover {
    --gradient-via-color: #f6ad55 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 173, 85, 0)) !important;
  }

  .lg\:hover\:cl-via-orange-500:hover {
    --gradient-via-color: #ed8936 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 137, 54, 0)) !important;
  }

  .lg\:hover\:cl-via-orange-600:hover {
    --gradient-via-color: #dd6b20 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(221, 107, 32, 0)) !important;
  }

  .lg\:hover\:cl-via-orange-700:hover {
    --gradient-via-color: #c05621 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(192, 86, 33, 0)) !important;
  }

  .lg\:hover\:cl-via-orange-800:hover {
    --gradient-via-color: #9c4221 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 66, 33, 0)) !important;
  }

  .lg\:hover\:cl-via-orange-900:hover {
    --gradient-via-color: #7b341e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(123, 52, 30, 0)) !important;
  }

  .lg\:hover\:cl-via-yellow-100:hover {
    --gradient-via-color: #fffff0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 240, 0)) !important;
  }

  .lg\:hover\:cl-via-yellow-200:hover {
    --gradient-via-color: #fefcbf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 252, 191, 0)) !important;
  }

  .lg\:hover\:cl-via-yellow-300:hover {
    --gradient-via-color: #faf089 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 240, 137, 0)) !important;
  }

  .lg\:hover\:cl-via-yellow-400:hover {
    --gradient-via-color: #f6e05e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 224, 94, 0)) !important;
  }

  .lg\:hover\:cl-via-yellow-500:hover {
    --gradient-via-color: #ecc94b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 201, 75, 0)) !important;
  }

  .lg\:hover\:cl-via-yellow-600:hover {
    --gradient-via-color: #d69e2e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(214, 158, 46, 0)) !important;
  }

  .lg\:hover\:cl-via-yellow-700:hover {
    --gradient-via-color: #b7791f !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(183, 121, 31, 0)) !important;
  }

  .lg\:hover\:cl-via-yellow-800:hover {
    --gradient-via-color: #975a16 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(151, 90, 22, 0)) !important;
  }

  .lg\:hover\:cl-via-yellow-900:hover {
    --gradient-via-color: #744210 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(116, 66, 16, 0)) !important;
  }

  .lg\:hover\:cl-via-green-100:hover {
    --gradient-via-color: #f0fff4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(240, 255, 244, 0)) !important;
  }

  .lg\:hover\:cl-via-green-200:hover {
    --gradient-via-color: #c6f6d5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(198, 246, 213, 0)) !important;
  }

  .lg\:hover\:cl-via-green-300:hover {
    --gradient-via-color: #9ae6b4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 230, 180, 0)) !important;
  }

  .lg\:hover\:cl-via-green-400:hover {
    --gradient-via-color: #68d391 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(104, 211, 145, 0)) !important;
  }

  .lg\:hover\:cl-via-green-500:hover {
    --gradient-via-color: #48bb78 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(72, 187, 120, 0)) !important;
  }

  .lg\:hover\:cl-via-green-600:hover {
    --gradient-via-color: #38a169 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(56, 161, 105, 0)) !important;
  }

  .lg\:hover\:cl-via-green-700:hover {
    --gradient-via-color: #2f855a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(47, 133, 90, 0)) !important;
  }

  .lg\:hover\:cl-via-green-800:hover {
    --gradient-via-color: #276749 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(39, 103, 73, 0)) !important;
  }

  .lg\:hover\:cl-via-green-900:hover {
    --gradient-via-color: #22543d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(34, 84, 61, 0)) !important;
  }

  .lg\:hover\:cl-via-teal-100:hover {
    --gradient-via-color: #e6fffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 255, 250, 0)) !important;
  }

  .lg\:hover\:cl-via-teal-200:hover {
    --gradient-via-color: #b2f5ea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(178, 245, 234, 0)) !important;
  }

  .lg\:hover\:cl-via-teal-300:hover {
    --gradient-via-color: #81e6d9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(129, 230, 217, 0)) !important;
  }

  .lg\:hover\:cl-via-teal-400:hover {
    --gradient-via-color: #4fd1c5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(79, 209, 197, 0)) !important;
  }

  .lg\:hover\:cl-via-teal-500:hover {
    --gradient-via-color: #38b2ac !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(56, 178, 172, 0)) !important;
  }

  .lg\:hover\:cl-via-teal-600:hover {
    --gradient-via-color: #319795 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(49, 151, 149, 0)) !important;
  }

  .lg\:hover\:cl-via-teal-700:hover {
    --gradient-via-color: #2c7a7b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(44, 122, 123, 0)) !important;
  }

  .lg\:hover\:cl-via-teal-800:hover {
    --gradient-via-color: #285e61 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(40, 94, 97, 0)) !important;
  }

  .lg\:hover\:cl-via-teal-900:hover {
    --gradient-via-color: #234e52 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(35, 78, 82, 0)) !important;
  }

  .lg\:hover\:cl-via-blue-100:hover {
    --gradient-via-color: #ebf8ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(235, 248, 255, 0)) !important;
  }

  .lg\:hover\:cl-via-blue-200:hover {
    --gradient-via-color: #bee3f8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(190, 227, 248, 0)) !important;
  }

  .lg\:hover\:cl-via-blue-300:hover {
    --gradient-via-color: #90cdf4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 205, 244, 0)) !important;
  }

  .lg\:hover\:cl-via-blue-400:hover {
    --gradient-via-color: #63b3ed !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(99, 179, 237, 0)) !important;
  }

  .lg\:hover\:cl-via-blue-500:hover {
    --gradient-via-color: #4299e1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 153, 225, 0)) !important;
  }

  .lg\:hover\:cl-via-blue-600:hover {
    --gradient-via-color: #3182ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(49, 130, 206, 0)) !important;
  }

  .lg\:hover\:cl-via-blue-700:hover {
    --gradient-via-color: #2b6cb0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(43, 108, 176, 0)) !important;
  }

  .lg\:hover\:cl-via-blue-800:hover {
    --gradient-via-color: #2c5282 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(44, 82, 130, 0)) !important;
  }

  .lg\:hover\:cl-via-blue-900:hover {
    --gradient-via-color: #2a4365 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(42, 67, 101, 0)) !important;
  }

  .lg\:hover\:cl-via-indigo-100:hover {
    --gradient-via-color: #ebf4ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(235, 244, 255, 0)) !important;
  }

  .lg\:hover\:cl-via-indigo-200:hover {
    --gradient-via-color: #c3dafe !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(195, 218, 254, 0)) !important;
  }

  .lg\:hover\:cl-via-indigo-300:hover {
    --gradient-via-color: #a3bffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(163, 191, 250, 0)) !important;
  }

  .lg\:hover\:cl-via-indigo-400:hover {
    --gradient-via-color: #7f9cf5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(127, 156, 245, 0)) !important;
  }

  .lg\:hover\:cl-via-indigo-500:hover {
    --gradient-via-color: #667eea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 126, 234, 0)) !important;
  }

  .lg\:hover\:cl-via-indigo-600:hover {
    --gradient-via-color: #5a67d8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 103, 216, 0)) !important;
  }

  .lg\:hover\:cl-via-indigo-700:hover {
    --gradient-via-color: #4c51bf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(76, 81, 191, 0)) !important;
  }

  .lg\:hover\:cl-via-indigo-800:hover {
    --gradient-via-color: #434190 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(67, 65, 144, 0)) !important;
  }

  .lg\:hover\:cl-via-indigo-900:hover {
    --gradient-via-color: #3c366b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(60, 54, 107, 0)) !important;
  }

  .lg\:hover\:cl-via-purple-100:hover {
    --gradient-via-color: #faf5ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 245, 255, 0)) !important;
  }

  .lg\:hover\:cl-via-purple-200:hover {
    --gradient-via-color: #e9d8fd !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(233, 216, 253, 0)) !important;
  }

  .lg\:hover\:cl-via-purple-300:hover {
    --gradient-via-color: #d6bcfa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(214, 188, 250, 0)) !important;
  }

  .lg\:hover\:cl-via-purple-400:hover {
    --gradient-via-color: #b794f4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(183, 148, 244, 0)) !important;
  }

  .lg\:hover\:cl-via-purple-500:hover {
    --gradient-via-color: #9f7aea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(159, 122, 234, 0)) !important;
  }

  .lg\:hover\:cl-via-purple-600:hover {
    --gradient-via-color: #805ad5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(128, 90, 213, 0)) !important;
  }

  .lg\:hover\:cl-via-purple-700:hover {
    --gradient-via-color: #6b46c1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(107, 70, 193, 0)) !important;
  }

  .lg\:hover\:cl-via-purple-800:hover {
    --gradient-via-color: #553c9a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(85, 60, 154, 0)) !important;
  }

  .lg\:hover\:cl-via-purple-900:hover {
    --gradient-via-color: #44337a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(68, 51, 122, 0)) !important;
  }

  .lg\:hover\:cl-via-pink-100:hover {
    --gradient-via-color: #fff5f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 245, 247, 0)) !important;
  }

  .lg\:hover\:cl-via-pink-200:hover {
    --gradient-via-color: #fed7e2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 215, 226, 0)) !important;
  }

  .lg\:hover\:cl-via-pink-300:hover {
    --gradient-via-color: #fbb6ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 182, 206, 0)) !important;
  }

  .lg\:hover\:cl-via-pink-400:hover {
    --gradient-via-color: #f687b3 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 135, 179, 0)) !important;
  }

  .lg\:hover\:cl-via-pink-500:hover {
    --gradient-via-color: #ed64a6 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 100, 166, 0)) !important;
  }

  .lg\:hover\:cl-via-pink-600:hover {
    --gradient-via-color: #d53f8c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(213, 63, 140, 0)) !important;
  }

  .lg\:hover\:cl-via-pink-700:hover {
    --gradient-via-color: #b83280 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(184, 50, 128, 0)) !important;
  }

  .lg\:hover\:cl-via-pink-800:hover {
    --gradient-via-color: #97266d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(151, 38, 109, 0)) !important;
  }

  .lg\:hover\:cl-via-pink-900:hover {
    --gradient-via-color: #702459 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(112, 36, 89, 0)) !important;
  }

  .lg\:hover\:cl-via-ui-gray-100:hover {
    --gradient-via-color: #f1f1f1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(241, 241, 241, 0)) !important;
  }

  .lg\:hover\:cl-via-ui-brown-100:hover {
    --gradient-via-color: #f3ecdc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(243, 236, 220, 0)) !important;
  }

  .lg\:hover\:cl-via-ui-brown-200:hover {
    --gradient-via-color: #e8e0c9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(232, 224, 201, 0)) !important;
  }

  .lg\:hover\:cl-via-ui-brown-300:hover {
    --gradient-via-color: #d0c095 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(208, 192, 149, 0)) !important;
  }

  .lg\:hover\:cl-via-ui-brown-700:hover {
    --gradient-via-color: #bd6005 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(189, 96, 5, 0)) !important;
  }

  .lg\:hover\:cl-via-ui-green-300:hover {
    --gradient-via-color: #aac74c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(170, 199, 76, 0)) !important;
  }

  .lg\:hover\:cl-via-ui-green-400:hover {
    --gradient-via-color: #71893e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(113, 137, 62, 0)) !important;
  }

  .lg\:hover\:cl-via-ui-orange-500:hover {
    --gradient-via-color: #e27212 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 114, 18, 0)) !important;
  }

  .lg\:hover\:cl-via-facebook:hover {
    --gradient-via-color: #3b5998 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(59, 89, 152, 0)) !important;
  }

  .lg\:hover\:cl-via-twitter:hover {
    --gradient-via-color: #00acee !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 172, 238, 0)) !important;
  }

  .lg\:hover\:cl-via-twitch:hover {
    --gradient-via-color: #6441a5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 65, 165, 0)) !important;
  }

  .lg\:hover\:cl-via-youtube:hover {
    --gradient-via-color: #FF0000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 0, 0, 0)) !important;
  }

  .lg\:hover\:cl-to-transparent:hover {
    --gradient-to-color: transparent !important;
  }

  .lg\:hover\:cl-to-current:hover {
    --gradient-to-color: currentColor !important;
  }

  .lg\:hover\:cl-to-black:hover {
    --gradient-to-color: #000 !important;
  }

  .lg\:hover\:cl-to-white:hover {
    --gradient-to-color: #fff !important;
  }

  .lg\:hover\:cl-to-gray-100:hover {
    --gradient-to-color: #f7fafc !important;
  }

  .lg\:hover\:cl-to-gray-200:hover {
    --gradient-to-color: #edf2f7 !important;
  }

  .lg\:hover\:cl-to-gray-300:hover {
    --gradient-to-color: #e2e8f0 !important;
  }

  .lg\:hover\:cl-to-gray-400:hover {
    --gradient-to-color: #cbd5e0 !important;
  }

  .lg\:hover\:cl-to-gray-500:hover {
    --gradient-to-color: #a0aec0 !important;
  }

  .lg\:hover\:cl-to-gray-600:hover {
    --gradient-to-color: #718096 !important;
  }

  .lg\:hover\:cl-to-gray-700:hover {
    --gradient-to-color: #4a5568 !important;
  }

  .lg\:hover\:cl-to-gray-800:hover {
    --gradient-to-color: #2d3748 !important;
  }

  .lg\:hover\:cl-to-gray-900:hover {
    --gradient-to-color: #1a202c !important;
  }

  .lg\:hover\:cl-to-red-100:hover {
    --gradient-to-color: #fff5f5 !important;
  }

  .lg\:hover\:cl-to-red-200:hover {
    --gradient-to-color: #fed7d7 !important;
  }

  .lg\:hover\:cl-to-red-300:hover {
    --gradient-to-color: #feb2b2 !important;
  }

  .lg\:hover\:cl-to-red-400:hover {
    --gradient-to-color: #fc8181 !important;
  }

  .lg\:hover\:cl-to-red-500:hover {
    --gradient-to-color: #f56565 !important;
  }

  .lg\:hover\:cl-to-red-600:hover {
    --gradient-to-color: #e53e3e !important;
  }

  .lg\:hover\:cl-to-red-700:hover {
    --gradient-to-color: #c53030 !important;
  }

  .lg\:hover\:cl-to-red-800:hover {
    --gradient-to-color: #9b2c2c !important;
  }

  .lg\:hover\:cl-to-red-900:hover {
    --gradient-to-color: #742a2a !important;
  }

  .lg\:hover\:cl-to-orange-100:hover {
    --gradient-to-color: #fffaf0 !important;
  }

  .lg\:hover\:cl-to-orange-200:hover {
    --gradient-to-color: #feebc8 !important;
  }

  .lg\:hover\:cl-to-orange-300:hover {
    --gradient-to-color: #fbd38d !important;
  }

  .lg\:hover\:cl-to-orange-400:hover {
    --gradient-to-color: #f6ad55 !important;
  }

  .lg\:hover\:cl-to-orange-500:hover {
    --gradient-to-color: #ed8936 !important;
  }

  .lg\:hover\:cl-to-orange-600:hover {
    --gradient-to-color: #dd6b20 !important;
  }

  .lg\:hover\:cl-to-orange-700:hover {
    --gradient-to-color: #c05621 !important;
  }

  .lg\:hover\:cl-to-orange-800:hover {
    --gradient-to-color: #9c4221 !important;
  }

  .lg\:hover\:cl-to-orange-900:hover {
    --gradient-to-color: #7b341e !important;
  }

  .lg\:hover\:cl-to-yellow-100:hover {
    --gradient-to-color: #fffff0 !important;
  }

  .lg\:hover\:cl-to-yellow-200:hover {
    --gradient-to-color: #fefcbf !important;
  }

  .lg\:hover\:cl-to-yellow-300:hover {
    --gradient-to-color: #faf089 !important;
  }

  .lg\:hover\:cl-to-yellow-400:hover {
    --gradient-to-color: #f6e05e !important;
  }

  .lg\:hover\:cl-to-yellow-500:hover {
    --gradient-to-color: #ecc94b !important;
  }

  .lg\:hover\:cl-to-yellow-600:hover {
    --gradient-to-color: #d69e2e !important;
  }

  .lg\:hover\:cl-to-yellow-700:hover {
    --gradient-to-color: #b7791f !important;
  }

  .lg\:hover\:cl-to-yellow-800:hover {
    --gradient-to-color: #975a16 !important;
  }

  .lg\:hover\:cl-to-yellow-900:hover {
    --gradient-to-color: #744210 !important;
  }

  .lg\:hover\:cl-to-green-100:hover {
    --gradient-to-color: #f0fff4 !important;
  }

  .lg\:hover\:cl-to-green-200:hover {
    --gradient-to-color: #c6f6d5 !important;
  }

  .lg\:hover\:cl-to-green-300:hover {
    --gradient-to-color: #9ae6b4 !important;
  }

  .lg\:hover\:cl-to-green-400:hover {
    --gradient-to-color: #68d391 !important;
  }

  .lg\:hover\:cl-to-green-500:hover {
    --gradient-to-color: #48bb78 !important;
  }

  .lg\:hover\:cl-to-green-600:hover {
    --gradient-to-color: #38a169 !important;
  }

  .lg\:hover\:cl-to-green-700:hover {
    --gradient-to-color: #2f855a !important;
  }

  .lg\:hover\:cl-to-green-800:hover {
    --gradient-to-color: #276749 !important;
  }

  .lg\:hover\:cl-to-green-900:hover {
    --gradient-to-color: #22543d !important;
  }

  .lg\:hover\:cl-to-teal-100:hover {
    --gradient-to-color: #e6fffa !important;
  }

  .lg\:hover\:cl-to-teal-200:hover {
    --gradient-to-color: #b2f5ea !important;
  }

  .lg\:hover\:cl-to-teal-300:hover {
    --gradient-to-color: #81e6d9 !important;
  }

  .lg\:hover\:cl-to-teal-400:hover {
    --gradient-to-color: #4fd1c5 !important;
  }

  .lg\:hover\:cl-to-teal-500:hover {
    --gradient-to-color: #38b2ac !important;
  }

  .lg\:hover\:cl-to-teal-600:hover {
    --gradient-to-color: #319795 !important;
  }

  .lg\:hover\:cl-to-teal-700:hover {
    --gradient-to-color: #2c7a7b !important;
  }

  .lg\:hover\:cl-to-teal-800:hover {
    --gradient-to-color: #285e61 !important;
  }

  .lg\:hover\:cl-to-teal-900:hover {
    --gradient-to-color: #234e52 !important;
  }

  .lg\:hover\:cl-to-blue-100:hover {
    --gradient-to-color: #ebf8ff !important;
  }

  .lg\:hover\:cl-to-blue-200:hover {
    --gradient-to-color: #bee3f8 !important;
  }

  .lg\:hover\:cl-to-blue-300:hover {
    --gradient-to-color: #90cdf4 !important;
  }

  .lg\:hover\:cl-to-blue-400:hover {
    --gradient-to-color: #63b3ed !important;
  }

  .lg\:hover\:cl-to-blue-500:hover {
    --gradient-to-color: #4299e1 !important;
  }

  .lg\:hover\:cl-to-blue-600:hover {
    --gradient-to-color: #3182ce !important;
  }

  .lg\:hover\:cl-to-blue-700:hover {
    --gradient-to-color: #2b6cb0 !important;
  }

  .lg\:hover\:cl-to-blue-800:hover {
    --gradient-to-color: #2c5282 !important;
  }

  .lg\:hover\:cl-to-blue-900:hover {
    --gradient-to-color: #2a4365 !important;
  }

  .lg\:hover\:cl-to-indigo-100:hover {
    --gradient-to-color: #ebf4ff !important;
  }

  .lg\:hover\:cl-to-indigo-200:hover {
    --gradient-to-color: #c3dafe !important;
  }

  .lg\:hover\:cl-to-indigo-300:hover {
    --gradient-to-color: #a3bffa !important;
  }

  .lg\:hover\:cl-to-indigo-400:hover {
    --gradient-to-color: #7f9cf5 !important;
  }

  .lg\:hover\:cl-to-indigo-500:hover {
    --gradient-to-color: #667eea !important;
  }

  .lg\:hover\:cl-to-indigo-600:hover {
    --gradient-to-color: #5a67d8 !important;
  }

  .lg\:hover\:cl-to-indigo-700:hover {
    --gradient-to-color: #4c51bf !important;
  }

  .lg\:hover\:cl-to-indigo-800:hover {
    --gradient-to-color: #434190 !important;
  }

  .lg\:hover\:cl-to-indigo-900:hover {
    --gradient-to-color: #3c366b !important;
  }

  .lg\:hover\:cl-to-purple-100:hover {
    --gradient-to-color: #faf5ff !important;
  }

  .lg\:hover\:cl-to-purple-200:hover {
    --gradient-to-color: #e9d8fd !important;
  }

  .lg\:hover\:cl-to-purple-300:hover {
    --gradient-to-color: #d6bcfa !important;
  }

  .lg\:hover\:cl-to-purple-400:hover {
    --gradient-to-color: #b794f4 !important;
  }

  .lg\:hover\:cl-to-purple-500:hover {
    --gradient-to-color: #9f7aea !important;
  }

  .lg\:hover\:cl-to-purple-600:hover {
    --gradient-to-color: #805ad5 !important;
  }

  .lg\:hover\:cl-to-purple-700:hover {
    --gradient-to-color: #6b46c1 !important;
  }

  .lg\:hover\:cl-to-purple-800:hover {
    --gradient-to-color: #553c9a !important;
  }

  .lg\:hover\:cl-to-purple-900:hover {
    --gradient-to-color: #44337a !important;
  }

  .lg\:hover\:cl-to-pink-100:hover {
    --gradient-to-color: #fff5f7 !important;
  }

  .lg\:hover\:cl-to-pink-200:hover {
    --gradient-to-color: #fed7e2 !important;
  }

  .lg\:hover\:cl-to-pink-300:hover {
    --gradient-to-color: #fbb6ce !important;
  }

  .lg\:hover\:cl-to-pink-400:hover {
    --gradient-to-color: #f687b3 !important;
  }

  .lg\:hover\:cl-to-pink-500:hover {
    --gradient-to-color: #ed64a6 !important;
  }

  .lg\:hover\:cl-to-pink-600:hover {
    --gradient-to-color: #d53f8c !important;
  }

  .lg\:hover\:cl-to-pink-700:hover {
    --gradient-to-color: #b83280 !important;
  }

  .lg\:hover\:cl-to-pink-800:hover {
    --gradient-to-color: #97266d !important;
  }

  .lg\:hover\:cl-to-pink-900:hover {
    --gradient-to-color: #702459 !important;
  }

  .lg\:hover\:cl-to-ui-gray-100:hover {
    --gradient-to-color: #f1f1f1 !important;
  }

  .lg\:hover\:cl-to-ui-brown-100:hover {
    --gradient-to-color: #f3ecdc !important;
  }

  .lg\:hover\:cl-to-ui-brown-200:hover {
    --gradient-to-color: #e8e0c9 !important;
  }

  .lg\:hover\:cl-to-ui-brown-300:hover {
    --gradient-to-color: #d0c095 !important;
  }

  .lg\:hover\:cl-to-ui-brown-700:hover {
    --gradient-to-color: #bd6005 !important;
  }

  .lg\:hover\:cl-to-ui-green-300:hover {
    --gradient-to-color: #aac74c !important;
  }

  .lg\:hover\:cl-to-ui-green-400:hover {
    --gradient-to-color: #71893e !important;
  }

  .lg\:hover\:cl-to-ui-orange-500:hover {
    --gradient-to-color: #e27212 !important;
  }

  .lg\:hover\:cl-to-facebook:hover {
    --gradient-to-color: #3b5998 !important;
  }

  .lg\:hover\:cl-to-twitter:hover {
    --gradient-to-color: #00acee !important;
  }

  .lg\:hover\:cl-to-twitch:hover {
    --gradient-to-color: #6441a5 !important;
  }

  .lg\:hover\:cl-to-youtube:hover {
    --gradient-to-color: #FF0000 !important;
  }

  .lg\:focus\:cl-from-transparent:focus {
    --gradient-from-color: transparent !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .lg\:focus\:cl-from-current:focus {
    --gradient-from-color: currentColor !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .lg\:focus\:cl-from-black:focus {
    --gradient-from-color: #000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .lg\:focus\:cl-from-white:focus {
    --gradient-from-color: #fff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .lg\:focus\:cl-from-gray-100:focus {
    --gradient-from-color: #f7fafc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 250, 252, 0)) !important;
  }

  .lg\:focus\:cl-from-gray-200:focus {
    --gradient-from-color: #edf2f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 242, 247, 0)) !important;
  }

  .lg\:focus\:cl-from-gray-300:focus {
    --gradient-from-color: #e2e8f0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 232, 240, 0)) !important;
  }

  .lg\:focus\:cl-from-gray-400:focus {
    --gradient-from-color: #cbd5e0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(203, 213, 224, 0)) !important;
  }

  .lg\:focus\:cl-from-gray-500:focus {
    --gradient-from-color: #a0aec0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 174, 192, 0)) !important;
  }

  .lg\:focus\:cl-from-gray-600:focus {
    --gradient-from-color: #718096 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(113, 128, 150, 0)) !important;
  }

  .lg\:focus\:cl-from-gray-700:focus {
    --gradient-from-color: #4a5568 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 85, 104, 0)) !important;
  }

  .lg\:focus\:cl-from-gray-800:focus {
    --gradient-from-color: #2d3748 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(45, 55, 72, 0)) !important;
  }

  .lg\:focus\:cl-from-gray-900:focus {
    --gradient-from-color: #1a202c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 32, 44, 0)) !important;
  }

  .lg\:focus\:cl-from-red-100:focus {
    --gradient-from-color: #fff5f5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 245, 245, 0)) !important;
  }

  .lg\:focus\:cl-from-red-200:focus {
    --gradient-from-color: #fed7d7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 215, 215, 0)) !important;
  }

  .lg\:focus\:cl-from-red-300:focus {
    --gradient-from-color: #feb2b2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 178, 178, 0)) !important;
  }

  .lg\:focus\:cl-from-red-400:focus {
    --gradient-from-color: #fc8181 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(252, 129, 129, 0)) !important;
  }

  .lg\:focus\:cl-from-red-500:focus {
    --gradient-from-color: #f56565 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(245, 101, 101, 0)) !important;
  }

  .lg\:focus\:cl-from-red-600:focus {
    --gradient-from-color: #e53e3e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(229, 62, 62, 0)) !important;
  }

  .lg\:focus\:cl-from-red-700:focus {
    --gradient-from-color: #c53030 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(197, 48, 48, 0)) !important;
  }

  .lg\:focus\:cl-from-red-800:focus {
    --gradient-from-color: #9b2c2c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(155, 44, 44, 0)) !important;
  }

  .lg\:focus\:cl-from-red-900:focus {
    --gradient-from-color: #742a2a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(116, 42, 42, 0)) !important;
  }

  .lg\:focus\:cl-from-orange-100:focus {
    --gradient-from-color: #fffaf0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 240, 0)) !important;
  }

  .lg\:focus\:cl-from-orange-200:focus {
    --gradient-from-color: #feebc8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 235, 200, 0)) !important;
  }

  .lg\:focus\:cl-from-orange-300:focus {
    --gradient-from-color: #fbd38d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 211, 141, 0)) !important;
  }

  .lg\:focus\:cl-from-orange-400:focus {
    --gradient-from-color: #f6ad55 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 173, 85, 0)) !important;
  }

  .lg\:focus\:cl-from-orange-500:focus {
    --gradient-from-color: #ed8936 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 137, 54, 0)) !important;
  }

  .lg\:focus\:cl-from-orange-600:focus {
    --gradient-from-color: #dd6b20 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(221, 107, 32, 0)) !important;
  }

  .lg\:focus\:cl-from-orange-700:focus {
    --gradient-from-color: #c05621 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(192, 86, 33, 0)) !important;
  }

  .lg\:focus\:cl-from-orange-800:focus {
    --gradient-from-color: #9c4221 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 66, 33, 0)) !important;
  }

  .lg\:focus\:cl-from-orange-900:focus {
    --gradient-from-color: #7b341e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(123, 52, 30, 0)) !important;
  }

  .lg\:focus\:cl-from-yellow-100:focus {
    --gradient-from-color: #fffff0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 240, 0)) !important;
  }

  .lg\:focus\:cl-from-yellow-200:focus {
    --gradient-from-color: #fefcbf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 252, 191, 0)) !important;
  }

  .lg\:focus\:cl-from-yellow-300:focus {
    --gradient-from-color: #faf089 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 240, 137, 0)) !important;
  }

  .lg\:focus\:cl-from-yellow-400:focus {
    --gradient-from-color: #f6e05e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 224, 94, 0)) !important;
  }

  .lg\:focus\:cl-from-yellow-500:focus {
    --gradient-from-color: #ecc94b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 201, 75, 0)) !important;
  }

  .lg\:focus\:cl-from-yellow-600:focus {
    --gradient-from-color: #d69e2e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(214, 158, 46, 0)) !important;
  }

  .lg\:focus\:cl-from-yellow-700:focus {
    --gradient-from-color: #b7791f !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(183, 121, 31, 0)) !important;
  }

  .lg\:focus\:cl-from-yellow-800:focus {
    --gradient-from-color: #975a16 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(151, 90, 22, 0)) !important;
  }

  .lg\:focus\:cl-from-yellow-900:focus {
    --gradient-from-color: #744210 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(116, 66, 16, 0)) !important;
  }

  .lg\:focus\:cl-from-green-100:focus {
    --gradient-from-color: #f0fff4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(240, 255, 244, 0)) !important;
  }

  .lg\:focus\:cl-from-green-200:focus {
    --gradient-from-color: #c6f6d5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(198, 246, 213, 0)) !important;
  }

  .lg\:focus\:cl-from-green-300:focus {
    --gradient-from-color: #9ae6b4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 230, 180, 0)) !important;
  }

  .lg\:focus\:cl-from-green-400:focus {
    --gradient-from-color: #68d391 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(104, 211, 145, 0)) !important;
  }

  .lg\:focus\:cl-from-green-500:focus {
    --gradient-from-color: #48bb78 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(72, 187, 120, 0)) !important;
  }

  .lg\:focus\:cl-from-green-600:focus {
    --gradient-from-color: #38a169 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(56, 161, 105, 0)) !important;
  }

  .lg\:focus\:cl-from-green-700:focus {
    --gradient-from-color: #2f855a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(47, 133, 90, 0)) !important;
  }

  .lg\:focus\:cl-from-green-800:focus {
    --gradient-from-color: #276749 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(39, 103, 73, 0)) !important;
  }

  .lg\:focus\:cl-from-green-900:focus {
    --gradient-from-color: #22543d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(34, 84, 61, 0)) !important;
  }

  .lg\:focus\:cl-from-teal-100:focus {
    --gradient-from-color: #e6fffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 255, 250, 0)) !important;
  }

  .lg\:focus\:cl-from-teal-200:focus {
    --gradient-from-color: #b2f5ea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(178, 245, 234, 0)) !important;
  }

  .lg\:focus\:cl-from-teal-300:focus {
    --gradient-from-color: #81e6d9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(129, 230, 217, 0)) !important;
  }

  .lg\:focus\:cl-from-teal-400:focus {
    --gradient-from-color: #4fd1c5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(79, 209, 197, 0)) !important;
  }

  .lg\:focus\:cl-from-teal-500:focus {
    --gradient-from-color: #38b2ac !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(56, 178, 172, 0)) !important;
  }

  .lg\:focus\:cl-from-teal-600:focus {
    --gradient-from-color: #319795 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(49, 151, 149, 0)) !important;
  }

  .lg\:focus\:cl-from-teal-700:focus {
    --gradient-from-color: #2c7a7b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(44, 122, 123, 0)) !important;
  }

  .lg\:focus\:cl-from-teal-800:focus {
    --gradient-from-color: #285e61 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(40, 94, 97, 0)) !important;
  }

  .lg\:focus\:cl-from-teal-900:focus {
    --gradient-from-color: #234e52 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(35, 78, 82, 0)) !important;
  }

  .lg\:focus\:cl-from-blue-100:focus {
    --gradient-from-color: #ebf8ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(235, 248, 255, 0)) !important;
  }

  .lg\:focus\:cl-from-blue-200:focus {
    --gradient-from-color: #bee3f8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(190, 227, 248, 0)) !important;
  }

  .lg\:focus\:cl-from-blue-300:focus {
    --gradient-from-color: #90cdf4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 205, 244, 0)) !important;
  }

  .lg\:focus\:cl-from-blue-400:focus {
    --gradient-from-color: #63b3ed !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(99, 179, 237, 0)) !important;
  }

  .lg\:focus\:cl-from-blue-500:focus {
    --gradient-from-color: #4299e1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 153, 225, 0)) !important;
  }

  .lg\:focus\:cl-from-blue-600:focus {
    --gradient-from-color: #3182ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(49, 130, 206, 0)) !important;
  }

  .lg\:focus\:cl-from-blue-700:focus {
    --gradient-from-color: #2b6cb0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(43, 108, 176, 0)) !important;
  }

  .lg\:focus\:cl-from-blue-800:focus {
    --gradient-from-color: #2c5282 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(44, 82, 130, 0)) !important;
  }

  .lg\:focus\:cl-from-blue-900:focus {
    --gradient-from-color: #2a4365 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(42, 67, 101, 0)) !important;
  }

  .lg\:focus\:cl-from-indigo-100:focus {
    --gradient-from-color: #ebf4ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(235, 244, 255, 0)) !important;
  }

  .lg\:focus\:cl-from-indigo-200:focus {
    --gradient-from-color: #c3dafe !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(195, 218, 254, 0)) !important;
  }

  .lg\:focus\:cl-from-indigo-300:focus {
    --gradient-from-color: #a3bffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(163, 191, 250, 0)) !important;
  }

  .lg\:focus\:cl-from-indigo-400:focus {
    --gradient-from-color: #7f9cf5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(127, 156, 245, 0)) !important;
  }

  .lg\:focus\:cl-from-indigo-500:focus {
    --gradient-from-color: #667eea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 126, 234, 0)) !important;
  }

  .lg\:focus\:cl-from-indigo-600:focus {
    --gradient-from-color: #5a67d8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 103, 216, 0)) !important;
  }

  .lg\:focus\:cl-from-indigo-700:focus {
    --gradient-from-color: #4c51bf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(76, 81, 191, 0)) !important;
  }

  .lg\:focus\:cl-from-indigo-800:focus {
    --gradient-from-color: #434190 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(67, 65, 144, 0)) !important;
  }

  .lg\:focus\:cl-from-indigo-900:focus {
    --gradient-from-color: #3c366b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(60, 54, 107, 0)) !important;
  }

  .lg\:focus\:cl-from-purple-100:focus {
    --gradient-from-color: #faf5ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 245, 255, 0)) !important;
  }

  .lg\:focus\:cl-from-purple-200:focus {
    --gradient-from-color: #e9d8fd !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(233, 216, 253, 0)) !important;
  }

  .lg\:focus\:cl-from-purple-300:focus {
    --gradient-from-color: #d6bcfa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(214, 188, 250, 0)) !important;
  }

  .lg\:focus\:cl-from-purple-400:focus {
    --gradient-from-color: #b794f4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(183, 148, 244, 0)) !important;
  }

  .lg\:focus\:cl-from-purple-500:focus {
    --gradient-from-color: #9f7aea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(159, 122, 234, 0)) !important;
  }

  .lg\:focus\:cl-from-purple-600:focus {
    --gradient-from-color: #805ad5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(128, 90, 213, 0)) !important;
  }

  .lg\:focus\:cl-from-purple-700:focus {
    --gradient-from-color: #6b46c1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(107, 70, 193, 0)) !important;
  }

  .lg\:focus\:cl-from-purple-800:focus {
    --gradient-from-color: #553c9a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(85, 60, 154, 0)) !important;
  }

  .lg\:focus\:cl-from-purple-900:focus {
    --gradient-from-color: #44337a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(68, 51, 122, 0)) !important;
  }

  .lg\:focus\:cl-from-pink-100:focus {
    --gradient-from-color: #fff5f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 245, 247, 0)) !important;
  }

  .lg\:focus\:cl-from-pink-200:focus {
    --gradient-from-color: #fed7e2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 215, 226, 0)) !important;
  }

  .lg\:focus\:cl-from-pink-300:focus {
    --gradient-from-color: #fbb6ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 182, 206, 0)) !important;
  }

  .lg\:focus\:cl-from-pink-400:focus {
    --gradient-from-color: #f687b3 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 135, 179, 0)) !important;
  }

  .lg\:focus\:cl-from-pink-500:focus {
    --gradient-from-color: #ed64a6 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 100, 166, 0)) !important;
  }

  .lg\:focus\:cl-from-pink-600:focus {
    --gradient-from-color: #d53f8c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(213, 63, 140, 0)) !important;
  }

  .lg\:focus\:cl-from-pink-700:focus {
    --gradient-from-color: #b83280 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(184, 50, 128, 0)) !important;
  }

  .lg\:focus\:cl-from-pink-800:focus {
    --gradient-from-color: #97266d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(151, 38, 109, 0)) !important;
  }

  .lg\:focus\:cl-from-pink-900:focus {
    --gradient-from-color: #702459 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(112, 36, 89, 0)) !important;
  }

  .lg\:focus\:cl-from-ui-gray-100:focus {
    --gradient-from-color: #f1f1f1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(241, 241, 241, 0)) !important;
  }

  .lg\:focus\:cl-from-ui-brown-100:focus {
    --gradient-from-color: #f3ecdc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(243, 236, 220, 0)) !important;
  }

  .lg\:focus\:cl-from-ui-brown-200:focus {
    --gradient-from-color: #e8e0c9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(232, 224, 201, 0)) !important;
  }

  .lg\:focus\:cl-from-ui-brown-300:focus {
    --gradient-from-color: #d0c095 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(208, 192, 149, 0)) !important;
  }

  .lg\:focus\:cl-from-ui-brown-700:focus {
    --gradient-from-color: #bd6005 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(189, 96, 5, 0)) !important;
  }

  .lg\:focus\:cl-from-ui-green-300:focus {
    --gradient-from-color: #aac74c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(170, 199, 76, 0)) !important;
  }

  .lg\:focus\:cl-from-ui-green-400:focus {
    --gradient-from-color: #71893e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(113, 137, 62, 0)) !important;
  }

  .lg\:focus\:cl-from-ui-orange-500:focus {
    --gradient-from-color: #e27212 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 114, 18, 0)) !important;
  }

  .lg\:focus\:cl-from-facebook:focus {
    --gradient-from-color: #3b5998 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(59, 89, 152, 0)) !important;
  }

  .lg\:focus\:cl-from-twitter:focus {
    --gradient-from-color: #00acee !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 172, 238, 0)) !important;
  }

  .lg\:focus\:cl-from-twitch:focus {
    --gradient-from-color: #6441a5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 65, 165, 0)) !important;
  }

  .lg\:focus\:cl-from-youtube:focus {
    --gradient-from-color: #FF0000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 0, 0, 0)) !important;
  }

  .lg\:focus\:cl-via-transparent:focus {
    --gradient-via-color: transparent !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .lg\:focus\:cl-via-current:focus {
    --gradient-via-color: currentColor !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .lg\:focus\:cl-via-black:focus {
    --gradient-via-color: #000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .lg\:focus\:cl-via-white:focus {
    --gradient-via-color: #fff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .lg\:focus\:cl-via-gray-100:focus {
    --gradient-via-color: #f7fafc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 250, 252, 0)) !important;
  }

  .lg\:focus\:cl-via-gray-200:focus {
    --gradient-via-color: #edf2f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 242, 247, 0)) !important;
  }

  .lg\:focus\:cl-via-gray-300:focus {
    --gradient-via-color: #e2e8f0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 232, 240, 0)) !important;
  }

  .lg\:focus\:cl-via-gray-400:focus {
    --gradient-via-color: #cbd5e0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(203, 213, 224, 0)) !important;
  }

  .lg\:focus\:cl-via-gray-500:focus {
    --gradient-via-color: #a0aec0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 174, 192, 0)) !important;
  }

  .lg\:focus\:cl-via-gray-600:focus {
    --gradient-via-color: #718096 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(113, 128, 150, 0)) !important;
  }

  .lg\:focus\:cl-via-gray-700:focus {
    --gradient-via-color: #4a5568 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 85, 104, 0)) !important;
  }

  .lg\:focus\:cl-via-gray-800:focus {
    --gradient-via-color: #2d3748 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(45, 55, 72, 0)) !important;
  }

  .lg\:focus\:cl-via-gray-900:focus {
    --gradient-via-color: #1a202c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 32, 44, 0)) !important;
  }

  .lg\:focus\:cl-via-red-100:focus {
    --gradient-via-color: #fff5f5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 245, 245, 0)) !important;
  }

  .lg\:focus\:cl-via-red-200:focus {
    --gradient-via-color: #fed7d7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 215, 215, 0)) !important;
  }

  .lg\:focus\:cl-via-red-300:focus {
    --gradient-via-color: #feb2b2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 178, 178, 0)) !important;
  }

  .lg\:focus\:cl-via-red-400:focus {
    --gradient-via-color: #fc8181 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(252, 129, 129, 0)) !important;
  }

  .lg\:focus\:cl-via-red-500:focus {
    --gradient-via-color: #f56565 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(245, 101, 101, 0)) !important;
  }

  .lg\:focus\:cl-via-red-600:focus {
    --gradient-via-color: #e53e3e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(229, 62, 62, 0)) !important;
  }

  .lg\:focus\:cl-via-red-700:focus {
    --gradient-via-color: #c53030 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(197, 48, 48, 0)) !important;
  }

  .lg\:focus\:cl-via-red-800:focus {
    --gradient-via-color: #9b2c2c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(155, 44, 44, 0)) !important;
  }

  .lg\:focus\:cl-via-red-900:focus {
    --gradient-via-color: #742a2a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(116, 42, 42, 0)) !important;
  }

  .lg\:focus\:cl-via-orange-100:focus {
    --gradient-via-color: #fffaf0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 240, 0)) !important;
  }

  .lg\:focus\:cl-via-orange-200:focus {
    --gradient-via-color: #feebc8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 235, 200, 0)) !important;
  }

  .lg\:focus\:cl-via-orange-300:focus {
    --gradient-via-color: #fbd38d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 211, 141, 0)) !important;
  }

  .lg\:focus\:cl-via-orange-400:focus {
    --gradient-via-color: #f6ad55 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 173, 85, 0)) !important;
  }

  .lg\:focus\:cl-via-orange-500:focus {
    --gradient-via-color: #ed8936 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 137, 54, 0)) !important;
  }

  .lg\:focus\:cl-via-orange-600:focus {
    --gradient-via-color: #dd6b20 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(221, 107, 32, 0)) !important;
  }

  .lg\:focus\:cl-via-orange-700:focus {
    --gradient-via-color: #c05621 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(192, 86, 33, 0)) !important;
  }

  .lg\:focus\:cl-via-orange-800:focus {
    --gradient-via-color: #9c4221 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 66, 33, 0)) !important;
  }

  .lg\:focus\:cl-via-orange-900:focus {
    --gradient-via-color: #7b341e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(123, 52, 30, 0)) !important;
  }

  .lg\:focus\:cl-via-yellow-100:focus {
    --gradient-via-color: #fffff0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 240, 0)) !important;
  }

  .lg\:focus\:cl-via-yellow-200:focus {
    --gradient-via-color: #fefcbf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 252, 191, 0)) !important;
  }

  .lg\:focus\:cl-via-yellow-300:focus {
    --gradient-via-color: #faf089 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 240, 137, 0)) !important;
  }

  .lg\:focus\:cl-via-yellow-400:focus {
    --gradient-via-color: #f6e05e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 224, 94, 0)) !important;
  }

  .lg\:focus\:cl-via-yellow-500:focus {
    --gradient-via-color: #ecc94b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 201, 75, 0)) !important;
  }

  .lg\:focus\:cl-via-yellow-600:focus {
    --gradient-via-color: #d69e2e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(214, 158, 46, 0)) !important;
  }

  .lg\:focus\:cl-via-yellow-700:focus {
    --gradient-via-color: #b7791f !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(183, 121, 31, 0)) !important;
  }

  .lg\:focus\:cl-via-yellow-800:focus {
    --gradient-via-color: #975a16 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(151, 90, 22, 0)) !important;
  }

  .lg\:focus\:cl-via-yellow-900:focus {
    --gradient-via-color: #744210 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(116, 66, 16, 0)) !important;
  }

  .lg\:focus\:cl-via-green-100:focus {
    --gradient-via-color: #f0fff4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(240, 255, 244, 0)) !important;
  }

  .lg\:focus\:cl-via-green-200:focus {
    --gradient-via-color: #c6f6d5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(198, 246, 213, 0)) !important;
  }

  .lg\:focus\:cl-via-green-300:focus {
    --gradient-via-color: #9ae6b4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 230, 180, 0)) !important;
  }

  .lg\:focus\:cl-via-green-400:focus {
    --gradient-via-color: #68d391 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(104, 211, 145, 0)) !important;
  }

  .lg\:focus\:cl-via-green-500:focus {
    --gradient-via-color: #48bb78 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(72, 187, 120, 0)) !important;
  }

  .lg\:focus\:cl-via-green-600:focus {
    --gradient-via-color: #38a169 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(56, 161, 105, 0)) !important;
  }

  .lg\:focus\:cl-via-green-700:focus {
    --gradient-via-color: #2f855a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(47, 133, 90, 0)) !important;
  }

  .lg\:focus\:cl-via-green-800:focus {
    --gradient-via-color: #276749 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(39, 103, 73, 0)) !important;
  }

  .lg\:focus\:cl-via-green-900:focus {
    --gradient-via-color: #22543d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(34, 84, 61, 0)) !important;
  }

  .lg\:focus\:cl-via-teal-100:focus {
    --gradient-via-color: #e6fffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 255, 250, 0)) !important;
  }

  .lg\:focus\:cl-via-teal-200:focus {
    --gradient-via-color: #b2f5ea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(178, 245, 234, 0)) !important;
  }

  .lg\:focus\:cl-via-teal-300:focus {
    --gradient-via-color: #81e6d9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(129, 230, 217, 0)) !important;
  }

  .lg\:focus\:cl-via-teal-400:focus {
    --gradient-via-color: #4fd1c5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(79, 209, 197, 0)) !important;
  }

  .lg\:focus\:cl-via-teal-500:focus {
    --gradient-via-color: #38b2ac !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(56, 178, 172, 0)) !important;
  }

  .lg\:focus\:cl-via-teal-600:focus {
    --gradient-via-color: #319795 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(49, 151, 149, 0)) !important;
  }

  .lg\:focus\:cl-via-teal-700:focus {
    --gradient-via-color: #2c7a7b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(44, 122, 123, 0)) !important;
  }

  .lg\:focus\:cl-via-teal-800:focus {
    --gradient-via-color: #285e61 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(40, 94, 97, 0)) !important;
  }

  .lg\:focus\:cl-via-teal-900:focus {
    --gradient-via-color: #234e52 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(35, 78, 82, 0)) !important;
  }

  .lg\:focus\:cl-via-blue-100:focus {
    --gradient-via-color: #ebf8ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(235, 248, 255, 0)) !important;
  }

  .lg\:focus\:cl-via-blue-200:focus {
    --gradient-via-color: #bee3f8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(190, 227, 248, 0)) !important;
  }

  .lg\:focus\:cl-via-blue-300:focus {
    --gradient-via-color: #90cdf4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 205, 244, 0)) !important;
  }

  .lg\:focus\:cl-via-blue-400:focus {
    --gradient-via-color: #63b3ed !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(99, 179, 237, 0)) !important;
  }

  .lg\:focus\:cl-via-blue-500:focus {
    --gradient-via-color: #4299e1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 153, 225, 0)) !important;
  }

  .lg\:focus\:cl-via-blue-600:focus {
    --gradient-via-color: #3182ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(49, 130, 206, 0)) !important;
  }

  .lg\:focus\:cl-via-blue-700:focus {
    --gradient-via-color: #2b6cb0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(43, 108, 176, 0)) !important;
  }

  .lg\:focus\:cl-via-blue-800:focus {
    --gradient-via-color: #2c5282 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(44, 82, 130, 0)) !important;
  }

  .lg\:focus\:cl-via-blue-900:focus {
    --gradient-via-color: #2a4365 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(42, 67, 101, 0)) !important;
  }

  .lg\:focus\:cl-via-indigo-100:focus {
    --gradient-via-color: #ebf4ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(235, 244, 255, 0)) !important;
  }

  .lg\:focus\:cl-via-indigo-200:focus {
    --gradient-via-color: #c3dafe !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(195, 218, 254, 0)) !important;
  }

  .lg\:focus\:cl-via-indigo-300:focus {
    --gradient-via-color: #a3bffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(163, 191, 250, 0)) !important;
  }

  .lg\:focus\:cl-via-indigo-400:focus {
    --gradient-via-color: #7f9cf5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(127, 156, 245, 0)) !important;
  }

  .lg\:focus\:cl-via-indigo-500:focus {
    --gradient-via-color: #667eea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 126, 234, 0)) !important;
  }

  .lg\:focus\:cl-via-indigo-600:focus {
    --gradient-via-color: #5a67d8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 103, 216, 0)) !important;
  }

  .lg\:focus\:cl-via-indigo-700:focus {
    --gradient-via-color: #4c51bf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(76, 81, 191, 0)) !important;
  }

  .lg\:focus\:cl-via-indigo-800:focus {
    --gradient-via-color: #434190 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(67, 65, 144, 0)) !important;
  }

  .lg\:focus\:cl-via-indigo-900:focus {
    --gradient-via-color: #3c366b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(60, 54, 107, 0)) !important;
  }

  .lg\:focus\:cl-via-purple-100:focus {
    --gradient-via-color: #faf5ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 245, 255, 0)) !important;
  }

  .lg\:focus\:cl-via-purple-200:focus {
    --gradient-via-color: #e9d8fd !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(233, 216, 253, 0)) !important;
  }

  .lg\:focus\:cl-via-purple-300:focus {
    --gradient-via-color: #d6bcfa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(214, 188, 250, 0)) !important;
  }

  .lg\:focus\:cl-via-purple-400:focus {
    --gradient-via-color: #b794f4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(183, 148, 244, 0)) !important;
  }

  .lg\:focus\:cl-via-purple-500:focus {
    --gradient-via-color: #9f7aea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(159, 122, 234, 0)) !important;
  }

  .lg\:focus\:cl-via-purple-600:focus {
    --gradient-via-color: #805ad5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(128, 90, 213, 0)) !important;
  }

  .lg\:focus\:cl-via-purple-700:focus {
    --gradient-via-color: #6b46c1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(107, 70, 193, 0)) !important;
  }

  .lg\:focus\:cl-via-purple-800:focus {
    --gradient-via-color: #553c9a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(85, 60, 154, 0)) !important;
  }

  .lg\:focus\:cl-via-purple-900:focus {
    --gradient-via-color: #44337a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(68, 51, 122, 0)) !important;
  }

  .lg\:focus\:cl-via-pink-100:focus {
    --gradient-via-color: #fff5f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 245, 247, 0)) !important;
  }

  .lg\:focus\:cl-via-pink-200:focus {
    --gradient-via-color: #fed7e2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 215, 226, 0)) !important;
  }

  .lg\:focus\:cl-via-pink-300:focus {
    --gradient-via-color: #fbb6ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 182, 206, 0)) !important;
  }

  .lg\:focus\:cl-via-pink-400:focus {
    --gradient-via-color: #f687b3 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 135, 179, 0)) !important;
  }

  .lg\:focus\:cl-via-pink-500:focus {
    --gradient-via-color: #ed64a6 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 100, 166, 0)) !important;
  }

  .lg\:focus\:cl-via-pink-600:focus {
    --gradient-via-color: #d53f8c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(213, 63, 140, 0)) !important;
  }

  .lg\:focus\:cl-via-pink-700:focus {
    --gradient-via-color: #b83280 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(184, 50, 128, 0)) !important;
  }

  .lg\:focus\:cl-via-pink-800:focus {
    --gradient-via-color: #97266d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(151, 38, 109, 0)) !important;
  }

  .lg\:focus\:cl-via-pink-900:focus {
    --gradient-via-color: #702459 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(112, 36, 89, 0)) !important;
  }

  .lg\:focus\:cl-via-ui-gray-100:focus {
    --gradient-via-color: #f1f1f1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(241, 241, 241, 0)) !important;
  }

  .lg\:focus\:cl-via-ui-brown-100:focus {
    --gradient-via-color: #f3ecdc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(243, 236, 220, 0)) !important;
  }

  .lg\:focus\:cl-via-ui-brown-200:focus {
    --gradient-via-color: #e8e0c9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(232, 224, 201, 0)) !important;
  }

  .lg\:focus\:cl-via-ui-brown-300:focus {
    --gradient-via-color: #d0c095 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(208, 192, 149, 0)) !important;
  }

  .lg\:focus\:cl-via-ui-brown-700:focus {
    --gradient-via-color: #bd6005 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(189, 96, 5, 0)) !important;
  }

  .lg\:focus\:cl-via-ui-green-300:focus {
    --gradient-via-color: #aac74c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(170, 199, 76, 0)) !important;
  }

  .lg\:focus\:cl-via-ui-green-400:focus {
    --gradient-via-color: #71893e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(113, 137, 62, 0)) !important;
  }

  .lg\:focus\:cl-via-ui-orange-500:focus {
    --gradient-via-color: #e27212 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 114, 18, 0)) !important;
  }

  .lg\:focus\:cl-via-facebook:focus {
    --gradient-via-color: #3b5998 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(59, 89, 152, 0)) !important;
  }

  .lg\:focus\:cl-via-twitter:focus {
    --gradient-via-color: #00acee !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 172, 238, 0)) !important;
  }

  .lg\:focus\:cl-via-twitch:focus {
    --gradient-via-color: #6441a5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 65, 165, 0)) !important;
  }

  .lg\:focus\:cl-via-youtube:focus {
    --gradient-via-color: #FF0000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 0, 0, 0)) !important;
  }

  .lg\:focus\:cl-to-transparent:focus {
    --gradient-to-color: transparent !important;
  }

  .lg\:focus\:cl-to-current:focus {
    --gradient-to-color: currentColor !important;
  }

  .lg\:focus\:cl-to-black:focus {
    --gradient-to-color: #000 !important;
  }

  .lg\:focus\:cl-to-white:focus {
    --gradient-to-color: #fff !important;
  }

  .lg\:focus\:cl-to-gray-100:focus {
    --gradient-to-color: #f7fafc !important;
  }

  .lg\:focus\:cl-to-gray-200:focus {
    --gradient-to-color: #edf2f7 !important;
  }

  .lg\:focus\:cl-to-gray-300:focus {
    --gradient-to-color: #e2e8f0 !important;
  }

  .lg\:focus\:cl-to-gray-400:focus {
    --gradient-to-color: #cbd5e0 !important;
  }

  .lg\:focus\:cl-to-gray-500:focus {
    --gradient-to-color: #a0aec0 !important;
  }

  .lg\:focus\:cl-to-gray-600:focus {
    --gradient-to-color: #718096 !important;
  }

  .lg\:focus\:cl-to-gray-700:focus {
    --gradient-to-color: #4a5568 !important;
  }

  .lg\:focus\:cl-to-gray-800:focus {
    --gradient-to-color: #2d3748 !important;
  }

  .lg\:focus\:cl-to-gray-900:focus {
    --gradient-to-color: #1a202c !important;
  }

  .lg\:focus\:cl-to-red-100:focus {
    --gradient-to-color: #fff5f5 !important;
  }

  .lg\:focus\:cl-to-red-200:focus {
    --gradient-to-color: #fed7d7 !important;
  }

  .lg\:focus\:cl-to-red-300:focus {
    --gradient-to-color: #feb2b2 !important;
  }

  .lg\:focus\:cl-to-red-400:focus {
    --gradient-to-color: #fc8181 !important;
  }

  .lg\:focus\:cl-to-red-500:focus {
    --gradient-to-color: #f56565 !important;
  }

  .lg\:focus\:cl-to-red-600:focus {
    --gradient-to-color: #e53e3e !important;
  }

  .lg\:focus\:cl-to-red-700:focus {
    --gradient-to-color: #c53030 !important;
  }

  .lg\:focus\:cl-to-red-800:focus {
    --gradient-to-color: #9b2c2c !important;
  }

  .lg\:focus\:cl-to-red-900:focus {
    --gradient-to-color: #742a2a !important;
  }

  .lg\:focus\:cl-to-orange-100:focus {
    --gradient-to-color: #fffaf0 !important;
  }

  .lg\:focus\:cl-to-orange-200:focus {
    --gradient-to-color: #feebc8 !important;
  }

  .lg\:focus\:cl-to-orange-300:focus {
    --gradient-to-color: #fbd38d !important;
  }

  .lg\:focus\:cl-to-orange-400:focus {
    --gradient-to-color: #f6ad55 !important;
  }

  .lg\:focus\:cl-to-orange-500:focus {
    --gradient-to-color: #ed8936 !important;
  }

  .lg\:focus\:cl-to-orange-600:focus {
    --gradient-to-color: #dd6b20 !important;
  }

  .lg\:focus\:cl-to-orange-700:focus {
    --gradient-to-color: #c05621 !important;
  }

  .lg\:focus\:cl-to-orange-800:focus {
    --gradient-to-color: #9c4221 !important;
  }

  .lg\:focus\:cl-to-orange-900:focus {
    --gradient-to-color: #7b341e !important;
  }

  .lg\:focus\:cl-to-yellow-100:focus {
    --gradient-to-color: #fffff0 !important;
  }

  .lg\:focus\:cl-to-yellow-200:focus {
    --gradient-to-color: #fefcbf !important;
  }

  .lg\:focus\:cl-to-yellow-300:focus {
    --gradient-to-color: #faf089 !important;
  }

  .lg\:focus\:cl-to-yellow-400:focus {
    --gradient-to-color: #f6e05e !important;
  }

  .lg\:focus\:cl-to-yellow-500:focus {
    --gradient-to-color: #ecc94b !important;
  }

  .lg\:focus\:cl-to-yellow-600:focus {
    --gradient-to-color: #d69e2e !important;
  }

  .lg\:focus\:cl-to-yellow-700:focus {
    --gradient-to-color: #b7791f !important;
  }

  .lg\:focus\:cl-to-yellow-800:focus {
    --gradient-to-color: #975a16 !important;
  }

  .lg\:focus\:cl-to-yellow-900:focus {
    --gradient-to-color: #744210 !important;
  }

  .lg\:focus\:cl-to-green-100:focus {
    --gradient-to-color: #f0fff4 !important;
  }

  .lg\:focus\:cl-to-green-200:focus {
    --gradient-to-color: #c6f6d5 !important;
  }

  .lg\:focus\:cl-to-green-300:focus {
    --gradient-to-color: #9ae6b4 !important;
  }

  .lg\:focus\:cl-to-green-400:focus {
    --gradient-to-color: #68d391 !important;
  }

  .lg\:focus\:cl-to-green-500:focus {
    --gradient-to-color: #48bb78 !important;
  }

  .lg\:focus\:cl-to-green-600:focus {
    --gradient-to-color: #38a169 !important;
  }

  .lg\:focus\:cl-to-green-700:focus {
    --gradient-to-color: #2f855a !important;
  }

  .lg\:focus\:cl-to-green-800:focus {
    --gradient-to-color: #276749 !important;
  }

  .lg\:focus\:cl-to-green-900:focus {
    --gradient-to-color: #22543d !important;
  }

  .lg\:focus\:cl-to-teal-100:focus {
    --gradient-to-color: #e6fffa !important;
  }

  .lg\:focus\:cl-to-teal-200:focus {
    --gradient-to-color: #b2f5ea !important;
  }

  .lg\:focus\:cl-to-teal-300:focus {
    --gradient-to-color: #81e6d9 !important;
  }

  .lg\:focus\:cl-to-teal-400:focus {
    --gradient-to-color: #4fd1c5 !important;
  }

  .lg\:focus\:cl-to-teal-500:focus {
    --gradient-to-color: #38b2ac !important;
  }

  .lg\:focus\:cl-to-teal-600:focus {
    --gradient-to-color: #319795 !important;
  }

  .lg\:focus\:cl-to-teal-700:focus {
    --gradient-to-color: #2c7a7b !important;
  }

  .lg\:focus\:cl-to-teal-800:focus {
    --gradient-to-color: #285e61 !important;
  }

  .lg\:focus\:cl-to-teal-900:focus {
    --gradient-to-color: #234e52 !important;
  }

  .lg\:focus\:cl-to-blue-100:focus {
    --gradient-to-color: #ebf8ff !important;
  }

  .lg\:focus\:cl-to-blue-200:focus {
    --gradient-to-color: #bee3f8 !important;
  }

  .lg\:focus\:cl-to-blue-300:focus {
    --gradient-to-color: #90cdf4 !important;
  }

  .lg\:focus\:cl-to-blue-400:focus {
    --gradient-to-color: #63b3ed !important;
  }

  .lg\:focus\:cl-to-blue-500:focus {
    --gradient-to-color: #4299e1 !important;
  }

  .lg\:focus\:cl-to-blue-600:focus {
    --gradient-to-color: #3182ce !important;
  }

  .lg\:focus\:cl-to-blue-700:focus {
    --gradient-to-color: #2b6cb0 !important;
  }

  .lg\:focus\:cl-to-blue-800:focus {
    --gradient-to-color: #2c5282 !important;
  }

  .lg\:focus\:cl-to-blue-900:focus {
    --gradient-to-color: #2a4365 !important;
  }

  .lg\:focus\:cl-to-indigo-100:focus {
    --gradient-to-color: #ebf4ff !important;
  }

  .lg\:focus\:cl-to-indigo-200:focus {
    --gradient-to-color: #c3dafe !important;
  }

  .lg\:focus\:cl-to-indigo-300:focus {
    --gradient-to-color: #a3bffa !important;
  }

  .lg\:focus\:cl-to-indigo-400:focus {
    --gradient-to-color: #7f9cf5 !important;
  }

  .lg\:focus\:cl-to-indigo-500:focus {
    --gradient-to-color: #667eea !important;
  }

  .lg\:focus\:cl-to-indigo-600:focus {
    --gradient-to-color: #5a67d8 !important;
  }

  .lg\:focus\:cl-to-indigo-700:focus {
    --gradient-to-color: #4c51bf !important;
  }

  .lg\:focus\:cl-to-indigo-800:focus {
    --gradient-to-color: #434190 !important;
  }

  .lg\:focus\:cl-to-indigo-900:focus {
    --gradient-to-color: #3c366b !important;
  }

  .lg\:focus\:cl-to-purple-100:focus {
    --gradient-to-color: #faf5ff !important;
  }

  .lg\:focus\:cl-to-purple-200:focus {
    --gradient-to-color: #e9d8fd !important;
  }

  .lg\:focus\:cl-to-purple-300:focus {
    --gradient-to-color: #d6bcfa !important;
  }

  .lg\:focus\:cl-to-purple-400:focus {
    --gradient-to-color: #b794f4 !important;
  }

  .lg\:focus\:cl-to-purple-500:focus {
    --gradient-to-color: #9f7aea !important;
  }

  .lg\:focus\:cl-to-purple-600:focus {
    --gradient-to-color: #805ad5 !important;
  }

  .lg\:focus\:cl-to-purple-700:focus {
    --gradient-to-color: #6b46c1 !important;
  }

  .lg\:focus\:cl-to-purple-800:focus {
    --gradient-to-color: #553c9a !important;
  }

  .lg\:focus\:cl-to-purple-900:focus {
    --gradient-to-color: #44337a !important;
  }

  .lg\:focus\:cl-to-pink-100:focus {
    --gradient-to-color: #fff5f7 !important;
  }

  .lg\:focus\:cl-to-pink-200:focus {
    --gradient-to-color: #fed7e2 !important;
  }

  .lg\:focus\:cl-to-pink-300:focus {
    --gradient-to-color: #fbb6ce !important;
  }

  .lg\:focus\:cl-to-pink-400:focus {
    --gradient-to-color: #f687b3 !important;
  }

  .lg\:focus\:cl-to-pink-500:focus {
    --gradient-to-color: #ed64a6 !important;
  }

  .lg\:focus\:cl-to-pink-600:focus {
    --gradient-to-color: #d53f8c !important;
  }

  .lg\:focus\:cl-to-pink-700:focus {
    --gradient-to-color: #b83280 !important;
  }

  .lg\:focus\:cl-to-pink-800:focus {
    --gradient-to-color: #97266d !important;
  }

  .lg\:focus\:cl-to-pink-900:focus {
    --gradient-to-color: #702459 !important;
  }

  .lg\:focus\:cl-to-ui-gray-100:focus {
    --gradient-to-color: #f1f1f1 !important;
  }

  .lg\:focus\:cl-to-ui-brown-100:focus {
    --gradient-to-color: #f3ecdc !important;
  }

  .lg\:focus\:cl-to-ui-brown-200:focus {
    --gradient-to-color: #e8e0c9 !important;
  }

  .lg\:focus\:cl-to-ui-brown-300:focus {
    --gradient-to-color: #d0c095 !important;
  }

  .lg\:focus\:cl-to-ui-brown-700:focus {
    --gradient-to-color: #bd6005 !important;
  }

  .lg\:focus\:cl-to-ui-green-300:focus {
    --gradient-to-color: #aac74c !important;
  }

  .lg\:focus\:cl-to-ui-green-400:focus {
    --gradient-to-color: #71893e !important;
  }

  .lg\:focus\:cl-to-ui-orange-500:focus {
    --gradient-to-color: #e27212 !important;
  }

  .lg\:focus\:cl-to-facebook:focus {
    --gradient-to-color: #3b5998 !important;
  }

  .lg\:focus\:cl-to-twitter:focus {
    --gradient-to-color: #00acee !important;
  }

  .lg\:focus\:cl-to-twitch:focus {
    --gradient-to-color: #6441a5 !important;
  }

  .lg\:focus\:cl-to-youtube:focus {
    --gradient-to-color: #FF0000 !important;
  }

  .lg\:cl-bg-opacity-0 {
    --bg-opacity: 0 !important;
  }

  .lg\:cl-bg-opacity-25 {
    --bg-opacity: 0.25 !important;
  }

  .lg\:cl-bg-opacity-50 {
    --bg-opacity: 0.5 !important;
  }

  .lg\:cl-bg-opacity-75 {
    --bg-opacity: 0.75 !important;
  }

  .lg\:cl-bg-opacity-100 {
    --bg-opacity: 1 !important;
  }

  .lg\:hover\:cl-bg-opacity-0:hover {
    --bg-opacity: 0 !important;
  }

  .lg\:hover\:cl-bg-opacity-25:hover {
    --bg-opacity: 0.25 !important;
  }

  .lg\:hover\:cl-bg-opacity-50:hover {
    --bg-opacity: 0.5 !important;
  }

  .lg\:hover\:cl-bg-opacity-75:hover {
    --bg-opacity: 0.75 !important;
  }

  .lg\:hover\:cl-bg-opacity-100:hover {
    --bg-opacity: 1 !important;
  }

  .lg\:focus\:cl-bg-opacity-0:focus {
    --bg-opacity: 0 !important;
  }

  .lg\:focus\:cl-bg-opacity-25:focus {
    --bg-opacity: 0.25 !important;
  }

  .lg\:focus\:cl-bg-opacity-50:focus {
    --bg-opacity: 0.5 !important;
  }

  .lg\:focus\:cl-bg-opacity-75:focus {
    --bg-opacity: 0.75 !important;
  }

  .lg\:focus\:cl-bg-opacity-100:focus {
    --bg-opacity: 1 !important;
  }

  .lg\:cl-bg-bottom {
    background-position: bottom !important;
  }

  .lg\:cl-bg-center {
    background-position: center !important;
  }

  .lg\:cl-bg-left {
    background-position: left !important;
  }

  .lg\:cl-bg-left-bottom {
    background-position: left bottom !important;
  }

  .lg\:cl-bg-left-top {
    background-position: left top !important;
  }

  .lg\:cl-bg-right {
    background-position: right !important;
  }

  .lg\:cl-bg-right-bottom {
    background-position: right bottom !important;
  }

  .lg\:cl-bg-right-top {
    background-position: right top !important;
  }

  .lg\:cl-bg-top {
    background-position: top !important;
  }

  .lg\:cl-bg-repeat {
    background-repeat: repeat !important;
  }

  .lg\:cl-bg-no-repeat {
    background-repeat: no-repeat !important;
  }

  .lg\:cl-bg-repeat-x {
    background-repeat: repeat-x !important;
  }

  .lg\:cl-bg-repeat-y {
    background-repeat: repeat-y !important;
  }

  .lg\:cl-bg-repeat-round {
    background-repeat: round !important;
  }

  .lg\:cl-bg-repeat-space {
    background-repeat: space !important;
  }

  .lg\:cl-bg-auto {
    background-size: auto !important;
  }

  .lg\:cl-bg-cover {
    background-size: cover !important;
  }

  .lg\:cl-bg-contain {
    background-size: contain !important;
  }

  .lg\:cl-border-collapse {
    border-collapse: collapse !important;
  }

  .lg\:cl-border-separate {
    border-collapse: separate !important;
  }

  .lg\:cl-border-transparent {
    border-color: transparent !important;
  }

  .lg\:cl-border-current {
    border-color: currentColor !important;
  }

  .lg\:cl-border-black {
    --border-opacity: 1 !important;
    border-color: #000 !important;
    border-color: rgba(0, 0, 0, var(--border-opacity)) !important;
  }

  .lg\:cl-border-white {
    --border-opacity: 1 !important;
    border-color: #fff !important;
    border-color: rgba(255, 255, 255, var(--border-opacity)) !important;
  }

  .lg\:cl-border-gray-100 {
    --border-opacity: 1 !important;
    border-color: #f7fafc !important;
    border-color: rgba(247, 250, 252, var(--border-opacity)) !important;
  }

  .lg\:cl-border-gray-200 {
    --border-opacity: 1 !important;
    border-color: #edf2f7 !important;
    border-color: rgba(237, 242, 247, var(--border-opacity)) !important;
  }

  .lg\:cl-border-gray-300 {
    --border-opacity: 1 !important;
    border-color: #e2e8f0 !important;
    border-color: rgba(226, 232, 240, var(--border-opacity)) !important;
  }

  .lg\:cl-border-gray-400 {
    --border-opacity: 1 !important;
    border-color: #cbd5e0 !important;
    border-color: rgba(203, 213, 224, var(--border-opacity)) !important;
  }

  .lg\:cl-border-gray-500 {
    --border-opacity: 1 !important;
    border-color: #a0aec0 !important;
    border-color: rgba(160, 174, 192, var(--border-opacity)) !important;
  }

  .lg\:cl-border-gray-600 {
    --border-opacity: 1 !important;
    border-color: #718096 !important;
    border-color: rgba(113, 128, 150, var(--border-opacity)) !important;
  }

  .lg\:cl-border-gray-700 {
    --border-opacity: 1 !important;
    border-color: #4a5568 !important;
    border-color: rgba(74, 85, 104, var(--border-opacity)) !important;
  }

  .lg\:cl-border-gray-800 {
    --border-opacity: 1 !important;
    border-color: #2d3748 !important;
    border-color: rgba(45, 55, 72, var(--border-opacity)) !important;
  }

  .lg\:cl-border-gray-900 {
    --border-opacity: 1 !important;
    border-color: #1a202c !important;
    border-color: rgba(26, 32, 44, var(--border-opacity)) !important;
  }

  .lg\:cl-border-red-100 {
    --border-opacity: 1 !important;
    border-color: #fff5f5 !important;
    border-color: rgba(255, 245, 245, var(--border-opacity)) !important;
  }

  .lg\:cl-border-red-200 {
    --border-opacity: 1 !important;
    border-color: #fed7d7 !important;
    border-color: rgba(254, 215, 215, var(--border-opacity)) !important;
  }

  .lg\:cl-border-red-300 {
    --border-opacity: 1 !important;
    border-color: #feb2b2 !important;
    border-color: rgba(254, 178, 178, var(--border-opacity)) !important;
  }

  .lg\:cl-border-red-400 {
    --border-opacity: 1 !important;
    border-color: #fc8181 !important;
    border-color: rgba(252, 129, 129, var(--border-opacity)) !important;
  }

  .lg\:cl-border-red-500 {
    --border-opacity: 1 !important;
    border-color: #f56565 !important;
    border-color: rgba(245, 101, 101, var(--border-opacity)) !important;
  }

  .lg\:cl-border-red-600 {
    --border-opacity: 1 !important;
    border-color: #e53e3e !important;
    border-color: rgba(229, 62, 62, var(--border-opacity)) !important;
  }

  .lg\:cl-border-red-700 {
    --border-opacity: 1 !important;
    border-color: #c53030 !important;
    border-color: rgba(197, 48, 48, var(--border-opacity)) !important;
  }

  .lg\:cl-border-red-800 {
    --border-opacity: 1 !important;
    border-color: #9b2c2c !important;
    border-color: rgba(155, 44, 44, var(--border-opacity)) !important;
  }

  .lg\:cl-border-red-900 {
    --border-opacity: 1 !important;
    border-color: #742a2a !important;
    border-color: rgba(116, 42, 42, var(--border-opacity)) !important;
  }

  .lg\:cl-border-orange-100 {
    --border-opacity: 1 !important;
    border-color: #fffaf0 !important;
    border-color: rgba(255, 250, 240, var(--border-opacity)) !important;
  }

  .lg\:cl-border-orange-200 {
    --border-opacity: 1 !important;
    border-color: #feebc8 !important;
    border-color: rgba(254, 235, 200, var(--border-opacity)) !important;
  }

  .lg\:cl-border-orange-300 {
    --border-opacity: 1 !important;
    border-color: #fbd38d !important;
    border-color: rgba(251, 211, 141, var(--border-opacity)) !important;
  }

  .lg\:cl-border-orange-400 {
    --border-opacity: 1 !important;
    border-color: #f6ad55 !important;
    border-color: rgba(246, 173, 85, var(--border-opacity)) !important;
  }

  .lg\:cl-border-orange-500 {
    --border-opacity: 1 !important;
    border-color: #ed8936 !important;
    border-color: rgba(237, 137, 54, var(--border-opacity)) !important;
  }

  .lg\:cl-border-orange-600 {
    --border-opacity: 1 !important;
    border-color: #dd6b20 !important;
    border-color: rgba(221, 107, 32, var(--border-opacity)) !important;
  }

  .lg\:cl-border-orange-700 {
    --border-opacity: 1 !important;
    border-color: #c05621 !important;
    border-color: rgba(192, 86, 33, var(--border-opacity)) !important;
  }

  .lg\:cl-border-orange-800 {
    --border-opacity: 1 !important;
    border-color: #9c4221 !important;
    border-color: rgba(156, 66, 33, var(--border-opacity)) !important;
  }

  .lg\:cl-border-orange-900 {
    --border-opacity: 1 !important;
    border-color: #7b341e !important;
    border-color: rgba(123, 52, 30, var(--border-opacity)) !important;
  }

  .lg\:cl-border-yellow-100 {
    --border-opacity: 1 !important;
    border-color: #fffff0 !important;
    border-color: rgba(255, 255, 240, var(--border-opacity)) !important;
  }

  .lg\:cl-border-yellow-200 {
    --border-opacity: 1 !important;
    border-color: #fefcbf !important;
    border-color: rgba(254, 252, 191, var(--border-opacity)) !important;
  }

  .lg\:cl-border-yellow-300 {
    --border-opacity: 1 !important;
    border-color: #faf089 !important;
    border-color: rgba(250, 240, 137, var(--border-opacity)) !important;
  }

  .lg\:cl-border-yellow-400 {
    --border-opacity: 1 !important;
    border-color: #f6e05e !important;
    border-color: rgba(246, 224, 94, var(--border-opacity)) !important;
  }

  .lg\:cl-border-yellow-500 {
    --border-opacity: 1 !important;
    border-color: #ecc94b !important;
    border-color: rgba(236, 201, 75, var(--border-opacity)) !important;
  }

  .lg\:cl-border-yellow-600 {
    --border-opacity: 1 !important;
    border-color: #d69e2e !important;
    border-color: rgba(214, 158, 46, var(--border-opacity)) !important;
  }

  .lg\:cl-border-yellow-700 {
    --border-opacity: 1 !important;
    border-color: #b7791f !important;
    border-color: rgba(183, 121, 31, var(--border-opacity)) !important;
  }

  .lg\:cl-border-yellow-800 {
    --border-opacity: 1 !important;
    border-color: #975a16 !important;
    border-color: rgba(151, 90, 22, var(--border-opacity)) !important;
  }

  .lg\:cl-border-yellow-900 {
    --border-opacity: 1 !important;
    border-color: #744210 !important;
    border-color: rgba(116, 66, 16, var(--border-opacity)) !important;
  }

  .lg\:cl-border-green-100 {
    --border-opacity: 1 !important;
    border-color: #f0fff4 !important;
    border-color: rgba(240, 255, 244, var(--border-opacity)) !important;
  }

  .lg\:cl-border-green-200 {
    --border-opacity: 1 !important;
    border-color: #c6f6d5 !important;
    border-color: rgba(198, 246, 213, var(--border-opacity)) !important;
  }

  .lg\:cl-border-green-300 {
    --border-opacity: 1 !important;
    border-color: #9ae6b4 !important;
    border-color: rgba(154, 230, 180, var(--border-opacity)) !important;
  }

  .lg\:cl-border-green-400 {
    --border-opacity: 1 !important;
    border-color: #68d391 !important;
    border-color: rgba(104, 211, 145, var(--border-opacity)) !important;
  }

  .lg\:cl-border-green-500 {
    --border-opacity: 1 !important;
    border-color: #48bb78 !important;
    border-color: rgba(72, 187, 120, var(--border-opacity)) !important;
  }

  .lg\:cl-border-green-600 {
    --border-opacity: 1 !important;
    border-color: #38a169 !important;
    border-color: rgba(56, 161, 105, var(--border-opacity)) !important;
  }

  .lg\:cl-border-green-700 {
    --border-opacity: 1 !important;
    border-color: #2f855a !important;
    border-color: rgba(47, 133, 90, var(--border-opacity)) !important;
  }

  .lg\:cl-border-green-800 {
    --border-opacity: 1 !important;
    border-color: #276749 !important;
    border-color: rgba(39, 103, 73, var(--border-opacity)) !important;
  }

  .lg\:cl-border-green-900 {
    --border-opacity: 1 !important;
    border-color: #22543d !important;
    border-color: rgba(34, 84, 61, var(--border-opacity)) !important;
  }

  .lg\:cl-border-teal-100 {
    --border-opacity: 1 !important;
    border-color: #e6fffa !important;
    border-color: rgba(230, 255, 250, var(--border-opacity)) !important;
  }

  .lg\:cl-border-teal-200 {
    --border-opacity: 1 !important;
    border-color: #b2f5ea !important;
    border-color: rgba(178, 245, 234, var(--border-opacity)) !important;
  }

  .lg\:cl-border-teal-300 {
    --border-opacity: 1 !important;
    border-color: #81e6d9 !important;
    border-color: rgba(129, 230, 217, var(--border-opacity)) !important;
  }

  .lg\:cl-border-teal-400 {
    --border-opacity: 1 !important;
    border-color: #4fd1c5 !important;
    border-color: rgba(79, 209, 197, var(--border-opacity)) !important;
  }

  .lg\:cl-border-teal-500 {
    --border-opacity: 1 !important;
    border-color: #38b2ac !important;
    border-color: rgba(56, 178, 172, var(--border-opacity)) !important;
  }

  .lg\:cl-border-teal-600 {
    --border-opacity: 1 !important;
    border-color: #319795 !important;
    border-color: rgba(49, 151, 149, var(--border-opacity)) !important;
  }

  .lg\:cl-border-teal-700 {
    --border-opacity: 1 !important;
    border-color: #2c7a7b !important;
    border-color: rgba(44, 122, 123, var(--border-opacity)) !important;
  }

  .lg\:cl-border-teal-800 {
    --border-opacity: 1 !important;
    border-color: #285e61 !important;
    border-color: rgba(40, 94, 97, var(--border-opacity)) !important;
  }

  .lg\:cl-border-teal-900 {
    --border-opacity: 1 !important;
    border-color: #234e52 !important;
    border-color: rgba(35, 78, 82, var(--border-opacity)) !important;
  }

  .lg\:cl-border-blue-100 {
    --border-opacity: 1 !important;
    border-color: #ebf8ff !important;
    border-color: rgba(235, 248, 255, var(--border-opacity)) !important;
  }

  .lg\:cl-border-blue-200 {
    --border-opacity: 1 !important;
    border-color: #bee3f8 !important;
    border-color: rgba(190, 227, 248, var(--border-opacity)) !important;
  }

  .lg\:cl-border-blue-300 {
    --border-opacity: 1 !important;
    border-color: #90cdf4 !important;
    border-color: rgba(144, 205, 244, var(--border-opacity)) !important;
  }

  .lg\:cl-border-blue-400 {
    --border-opacity: 1 !important;
    border-color: #63b3ed !important;
    border-color: rgba(99, 179, 237, var(--border-opacity)) !important;
  }

  .lg\:cl-border-blue-500 {
    --border-opacity: 1 !important;
    border-color: #4299e1 !important;
    border-color: rgba(66, 153, 225, var(--border-opacity)) !important;
  }

  .lg\:cl-border-blue-600 {
    --border-opacity: 1 !important;
    border-color: #3182ce !important;
    border-color: rgba(49, 130, 206, var(--border-opacity)) !important;
  }

  .lg\:cl-border-blue-700 {
    --border-opacity: 1 !important;
    border-color: #2b6cb0 !important;
    border-color: rgba(43, 108, 176, var(--border-opacity)) !important;
  }

  .lg\:cl-border-blue-800 {
    --border-opacity: 1 !important;
    border-color: #2c5282 !important;
    border-color: rgba(44, 82, 130, var(--border-opacity)) !important;
  }

  .lg\:cl-border-blue-900 {
    --border-opacity: 1 !important;
    border-color: #2a4365 !important;
    border-color: rgba(42, 67, 101, var(--border-opacity)) !important;
  }

  .lg\:cl-border-indigo-100 {
    --border-opacity: 1 !important;
    border-color: #ebf4ff !important;
    border-color: rgba(235, 244, 255, var(--border-opacity)) !important;
  }

  .lg\:cl-border-indigo-200 {
    --border-opacity: 1 !important;
    border-color: #c3dafe !important;
    border-color: rgba(195, 218, 254, var(--border-opacity)) !important;
  }

  .lg\:cl-border-indigo-300 {
    --border-opacity: 1 !important;
    border-color: #a3bffa !important;
    border-color: rgba(163, 191, 250, var(--border-opacity)) !important;
  }

  .lg\:cl-border-indigo-400 {
    --border-opacity: 1 !important;
    border-color: #7f9cf5 !important;
    border-color: rgba(127, 156, 245, var(--border-opacity)) !important;
  }

  .lg\:cl-border-indigo-500 {
    --border-opacity: 1 !important;
    border-color: #667eea !important;
    border-color: rgba(102, 126, 234, var(--border-opacity)) !important;
  }

  .lg\:cl-border-indigo-600 {
    --border-opacity: 1 !important;
    border-color: #5a67d8 !important;
    border-color: rgba(90, 103, 216, var(--border-opacity)) !important;
  }

  .lg\:cl-border-indigo-700 {
    --border-opacity: 1 !important;
    border-color: #4c51bf !important;
    border-color: rgba(76, 81, 191, var(--border-opacity)) !important;
  }

  .lg\:cl-border-indigo-800 {
    --border-opacity: 1 !important;
    border-color: #434190 !important;
    border-color: rgba(67, 65, 144, var(--border-opacity)) !important;
  }

  .lg\:cl-border-indigo-900 {
    --border-opacity: 1 !important;
    border-color: #3c366b !important;
    border-color: rgba(60, 54, 107, var(--border-opacity)) !important;
  }

  .lg\:cl-border-purple-100 {
    --border-opacity: 1 !important;
    border-color: #faf5ff !important;
    border-color: rgba(250, 245, 255, var(--border-opacity)) !important;
  }

  .lg\:cl-border-purple-200 {
    --border-opacity: 1 !important;
    border-color: #e9d8fd !important;
    border-color: rgba(233, 216, 253, var(--border-opacity)) !important;
  }

  .lg\:cl-border-purple-300 {
    --border-opacity: 1 !important;
    border-color: #d6bcfa !important;
    border-color: rgba(214, 188, 250, var(--border-opacity)) !important;
  }

  .lg\:cl-border-purple-400 {
    --border-opacity: 1 !important;
    border-color: #b794f4 !important;
    border-color: rgba(183, 148, 244, var(--border-opacity)) !important;
  }

  .lg\:cl-border-purple-500 {
    --border-opacity: 1 !important;
    border-color: #9f7aea !important;
    border-color: rgba(159, 122, 234, var(--border-opacity)) !important;
  }

  .lg\:cl-border-purple-600 {
    --border-opacity: 1 !important;
    border-color: #805ad5 !important;
    border-color: rgba(128, 90, 213, var(--border-opacity)) !important;
  }

  .lg\:cl-border-purple-700 {
    --border-opacity: 1 !important;
    border-color: #6b46c1 !important;
    border-color: rgba(107, 70, 193, var(--border-opacity)) !important;
  }

  .lg\:cl-border-purple-800 {
    --border-opacity: 1 !important;
    border-color: #553c9a !important;
    border-color: rgba(85, 60, 154, var(--border-opacity)) !important;
  }

  .lg\:cl-border-purple-900 {
    --border-opacity: 1 !important;
    border-color: #44337a !important;
    border-color: rgba(68, 51, 122, var(--border-opacity)) !important;
  }

  .lg\:cl-border-pink-100 {
    --border-opacity: 1 !important;
    border-color: #fff5f7 !important;
    border-color: rgba(255, 245, 247, var(--border-opacity)) !important;
  }

  .lg\:cl-border-pink-200 {
    --border-opacity: 1 !important;
    border-color: #fed7e2 !important;
    border-color: rgba(254, 215, 226, var(--border-opacity)) !important;
  }

  .lg\:cl-border-pink-300 {
    --border-opacity: 1 !important;
    border-color: #fbb6ce !important;
    border-color: rgba(251, 182, 206, var(--border-opacity)) !important;
  }

  .lg\:cl-border-pink-400 {
    --border-opacity: 1 !important;
    border-color: #f687b3 !important;
    border-color: rgba(246, 135, 179, var(--border-opacity)) !important;
  }

  .lg\:cl-border-pink-500 {
    --border-opacity: 1 !important;
    border-color: #ed64a6 !important;
    border-color: rgba(237, 100, 166, var(--border-opacity)) !important;
  }

  .lg\:cl-border-pink-600 {
    --border-opacity: 1 !important;
    border-color: #d53f8c !important;
    border-color: rgba(213, 63, 140, var(--border-opacity)) !important;
  }

  .lg\:cl-border-pink-700 {
    --border-opacity: 1 !important;
    border-color: #b83280 !important;
    border-color: rgba(184, 50, 128, var(--border-opacity)) !important;
  }

  .lg\:cl-border-pink-800 {
    --border-opacity: 1 !important;
    border-color: #97266d !important;
    border-color: rgba(151, 38, 109, var(--border-opacity)) !important;
  }

  .lg\:cl-border-pink-900 {
    --border-opacity: 1 !important;
    border-color: #702459 !important;
    border-color: rgba(112, 36, 89, var(--border-opacity)) !important;
  }

  .lg\:cl-border-ui-gray-100 {
    --border-opacity: 1 !important;
    border-color: #f1f1f1 !important;
    border-color: rgba(241, 241, 241, var(--border-opacity)) !important;
  }

  .lg\:cl-border-ui-brown-100 {
    --border-opacity: 1 !important;
    border-color: #f3ecdc !important;
    border-color: rgba(243, 236, 220, var(--border-opacity)) !important;
  }

  .lg\:cl-border-ui-brown-200 {
    --border-opacity: 1 !important;
    border-color: #e8e0c9 !important;
    border-color: rgba(232, 224, 201, var(--border-opacity)) !important;
  }

  .lg\:cl-border-ui-brown-300 {
    --border-opacity: 1 !important;
    border-color: #d0c095 !important;
    border-color: rgba(208, 192, 149, var(--border-opacity)) !important;
  }

  .lg\:cl-border-ui-brown-700 {
    --border-opacity: 1 !important;
    border-color: #bd6005 !important;
    border-color: rgba(189, 96, 5, var(--border-opacity)) !important;
  }

  .lg\:cl-border-ui-green-300 {
    --border-opacity: 1 !important;
    border-color: #aac74c !important;
    border-color: rgba(170, 199, 76, var(--border-opacity)) !important;
  }

  .lg\:cl-border-ui-green-400 {
    --border-opacity: 1 !important;
    border-color: #71893e !important;
    border-color: rgba(113, 137, 62, var(--border-opacity)) !important;
  }

  .lg\:cl-border-ui-orange-500 {
    --border-opacity: 1 !important;
    border-color: #e27212 !important;
    border-color: rgba(226, 114, 18, var(--border-opacity)) !important;
  }

  .lg\:cl-border-facebook {
    --border-opacity: 1 !important;
    border-color: #3b5998 !important;
    border-color: rgba(59, 89, 152, var(--border-opacity)) !important;
  }

  .lg\:cl-border-twitter {
    --border-opacity: 1 !important;
    border-color: #00acee !important;
    border-color: rgba(0, 172, 238, var(--border-opacity)) !important;
  }

  .lg\:cl-border-twitch {
    --border-opacity: 1 !important;
    border-color: #6441a5 !important;
    border-color: rgba(100, 65, 165, var(--border-opacity)) !important;
  }

  .lg\:cl-border-youtube {
    --border-opacity: 1 !important;
    border-color: #FF0000 !important;
    border-color: rgba(255, 0, 0, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-transparent:hover {
    border-color: transparent !important;
  }

  .lg\:hover\:cl-border-current:hover {
    border-color: currentColor !important;
  }

  .lg\:hover\:cl-border-black:hover {
    --border-opacity: 1 !important;
    border-color: #000 !important;
    border-color: rgba(0, 0, 0, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-white:hover {
    --border-opacity: 1 !important;
    border-color: #fff !important;
    border-color: rgba(255, 255, 255, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-gray-100:hover {
    --border-opacity: 1 !important;
    border-color: #f7fafc !important;
    border-color: rgba(247, 250, 252, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-gray-200:hover {
    --border-opacity: 1 !important;
    border-color: #edf2f7 !important;
    border-color: rgba(237, 242, 247, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-gray-300:hover {
    --border-opacity: 1 !important;
    border-color: #e2e8f0 !important;
    border-color: rgba(226, 232, 240, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-gray-400:hover {
    --border-opacity: 1 !important;
    border-color: #cbd5e0 !important;
    border-color: rgba(203, 213, 224, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-gray-500:hover {
    --border-opacity: 1 !important;
    border-color: #a0aec0 !important;
    border-color: rgba(160, 174, 192, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-gray-600:hover {
    --border-opacity: 1 !important;
    border-color: #718096 !important;
    border-color: rgba(113, 128, 150, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-gray-700:hover {
    --border-opacity: 1 !important;
    border-color: #4a5568 !important;
    border-color: rgba(74, 85, 104, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-gray-800:hover {
    --border-opacity: 1 !important;
    border-color: #2d3748 !important;
    border-color: rgba(45, 55, 72, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-gray-900:hover {
    --border-opacity: 1 !important;
    border-color: #1a202c !important;
    border-color: rgba(26, 32, 44, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-red-100:hover {
    --border-opacity: 1 !important;
    border-color: #fff5f5 !important;
    border-color: rgba(255, 245, 245, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-red-200:hover {
    --border-opacity: 1 !important;
    border-color: #fed7d7 !important;
    border-color: rgba(254, 215, 215, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-red-300:hover {
    --border-opacity: 1 !important;
    border-color: #feb2b2 !important;
    border-color: rgba(254, 178, 178, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-red-400:hover {
    --border-opacity: 1 !important;
    border-color: #fc8181 !important;
    border-color: rgba(252, 129, 129, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-red-500:hover {
    --border-opacity: 1 !important;
    border-color: #f56565 !important;
    border-color: rgba(245, 101, 101, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-red-600:hover {
    --border-opacity: 1 !important;
    border-color: #e53e3e !important;
    border-color: rgba(229, 62, 62, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-red-700:hover {
    --border-opacity: 1 !important;
    border-color: #c53030 !important;
    border-color: rgba(197, 48, 48, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-red-800:hover {
    --border-opacity: 1 !important;
    border-color: #9b2c2c !important;
    border-color: rgba(155, 44, 44, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-red-900:hover {
    --border-opacity: 1 !important;
    border-color: #742a2a !important;
    border-color: rgba(116, 42, 42, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-orange-100:hover {
    --border-opacity: 1 !important;
    border-color: #fffaf0 !important;
    border-color: rgba(255, 250, 240, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-orange-200:hover {
    --border-opacity: 1 !important;
    border-color: #feebc8 !important;
    border-color: rgba(254, 235, 200, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-orange-300:hover {
    --border-opacity: 1 !important;
    border-color: #fbd38d !important;
    border-color: rgba(251, 211, 141, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-orange-400:hover {
    --border-opacity: 1 !important;
    border-color: #f6ad55 !important;
    border-color: rgba(246, 173, 85, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-orange-500:hover {
    --border-opacity: 1 !important;
    border-color: #ed8936 !important;
    border-color: rgba(237, 137, 54, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-orange-600:hover {
    --border-opacity: 1 !important;
    border-color: #dd6b20 !important;
    border-color: rgba(221, 107, 32, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-orange-700:hover {
    --border-opacity: 1 !important;
    border-color: #c05621 !important;
    border-color: rgba(192, 86, 33, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-orange-800:hover {
    --border-opacity: 1 !important;
    border-color: #9c4221 !important;
    border-color: rgba(156, 66, 33, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-orange-900:hover {
    --border-opacity: 1 !important;
    border-color: #7b341e !important;
    border-color: rgba(123, 52, 30, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-yellow-100:hover {
    --border-opacity: 1 !important;
    border-color: #fffff0 !important;
    border-color: rgba(255, 255, 240, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-yellow-200:hover {
    --border-opacity: 1 !important;
    border-color: #fefcbf !important;
    border-color: rgba(254, 252, 191, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-yellow-300:hover {
    --border-opacity: 1 !important;
    border-color: #faf089 !important;
    border-color: rgba(250, 240, 137, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-yellow-400:hover {
    --border-opacity: 1 !important;
    border-color: #f6e05e !important;
    border-color: rgba(246, 224, 94, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-yellow-500:hover {
    --border-opacity: 1 !important;
    border-color: #ecc94b !important;
    border-color: rgba(236, 201, 75, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-yellow-600:hover {
    --border-opacity: 1 !important;
    border-color: #d69e2e !important;
    border-color: rgba(214, 158, 46, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-yellow-700:hover {
    --border-opacity: 1 !important;
    border-color: #b7791f !important;
    border-color: rgba(183, 121, 31, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-yellow-800:hover {
    --border-opacity: 1 !important;
    border-color: #975a16 !important;
    border-color: rgba(151, 90, 22, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-yellow-900:hover {
    --border-opacity: 1 !important;
    border-color: #744210 !important;
    border-color: rgba(116, 66, 16, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-green-100:hover {
    --border-opacity: 1 !important;
    border-color: #f0fff4 !important;
    border-color: rgba(240, 255, 244, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-green-200:hover {
    --border-opacity: 1 !important;
    border-color: #c6f6d5 !important;
    border-color: rgba(198, 246, 213, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-green-300:hover {
    --border-opacity: 1 !important;
    border-color: #9ae6b4 !important;
    border-color: rgba(154, 230, 180, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-green-400:hover {
    --border-opacity: 1 !important;
    border-color: #68d391 !important;
    border-color: rgba(104, 211, 145, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-green-500:hover {
    --border-opacity: 1 !important;
    border-color: #48bb78 !important;
    border-color: rgba(72, 187, 120, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-green-600:hover {
    --border-opacity: 1 !important;
    border-color: #38a169 !important;
    border-color: rgba(56, 161, 105, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-green-700:hover {
    --border-opacity: 1 !important;
    border-color: #2f855a !important;
    border-color: rgba(47, 133, 90, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-green-800:hover {
    --border-opacity: 1 !important;
    border-color: #276749 !important;
    border-color: rgba(39, 103, 73, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-green-900:hover {
    --border-opacity: 1 !important;
    border-color: #22543d !important;
    border-color: rgba(34, 84, 61, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-teal-100:hover {
    --border-opacity: 1 !important;
    border-color: #e6fffa !important;
    border-color: rgba(230, 255, 250, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-teal-200:hover {
    --border-opacity: 1 !important;
    border-color: #b2f5ea !important;
    border-color: rgba(178, 245, 234, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-teal-300:hover {
    --border-opacity: 1 !important;
    border-color: #81e6d9 !important;
    border-color: rgba(129, 230, 217, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-teal-400:hover {
    --border-opacity: 1 !important;
    border-color: #4fd1c5 !important;
    border-color: rgba(79, 209, 197, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-teal-500:hover {
    --border-opacity: 1 !important;
    border-color: #38b2ac !important;
    border-color: rgba(56, 178, 172, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-teal-600:hover {
    --border-opacity: 1 !important;
    border-color: #319795 !important;
    border-color: rgba(49, 151, 149, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-teal-700:hover {
    --border-opacity: 1 !important;
    border-color: #2c7a7b !important;
    border-color: rgba(44, 122, 123, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-teal-800:hover {
    --border-opacity: 1 !important;
    border-color: #285e61 !important;
    border-color: rgba(40, 94, 97, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-teal-900:hover {
    --border-opacity: 1 !important;
    border-color: #234e52 !important;
    border-color: rgba(35, 78, 82, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-blue-100:hover {
    --border-opacity: 1 !important;
    border-color: #ebf8ff !important;
    border-color: rgba(235, 248, 255, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-blue-200:hover {
    --border-opacity: 1 !important;
    border-color: #bee3f8 !important;
    border-color: rgba(190, 227, 248, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-blue-300:hover {
    --border-opacity: 1 !important;
    border-color: #90cdf4 !important;
    border-color: rgba(144, 205, 244, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-blue-400:hover {
    --border-opacity: 1 !important;
    border-color: #63b3ed !important;
    border-color: rgba(99, 179, 237, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-blue-500:hover {
    --border-opacity: 1 !important;
    border-color: #4299e1 !important;
    border-color: rgba(66, 153, 225, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-blue-600:hover {
    --border-opacity: 1 !important;
    border-color: #3182ce !important;
    border-color: rgba(49, 130, 206, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-blue-700:hover {
    --border-opacity: 1 !important;
    border-color: #2b6cb0 !important;
    border-color: rgba(43, 108, 176, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-blue-800:hover {
    --border-opacity: 1 !important;
    border-color: #2c5282 !important;
    border-color: rgba(44, 82, 130, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-blue-900:hover {
    --border-opacity: 1 !important;
    border-color: #2a4365 !important;
    border-color: rgba(42, 67, 101, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-indigo-100:hover {
    --border-opacity: 1 !important;
    border-color: #ebf4ff !important;
    border-color: rgba(235, 244, 255, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-indigo-200:hover {
    --border-opacity: 1 !important;
    border-color: #c3dafe !important;
    border-color: rgba(195, 218, 254, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-indigo-300:hover {
    --border-opacity: 1 !important;
    border-color: #a3bffa !important;
    border-color: rgba(163, 191, 250, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-indigo-400:hover {
    --border-opacity: 1 !important;
    border-color: #7f9cf5 !important;
    border-color: rgba(127, 156, 245, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-indigo-500:hover {
    --border-opacity: 1 !important;
    border-color: #667eea !important;
    border-color: rgba(102, 126, 234, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-indigo-600:hover {
    --border-opacity: 1 !important;
    border-color: #5a67d8 !important;
    border-color: rgba(90, 103, 216, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-indigo-700:hover {
    --border-opacity: 1 !important;
    border-color: #4c51bf !important;
    border-color: rgba(76, 81, 191, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-indigo-800:hover {
    --border-opacity: 1 !important;
    border-color: #434190 !important;
    border-color: rgba(67, 65, 144, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-indigo-900:hover {
    --border-opacity: 1 !important;
    border-color: #3c366b !important;
    border-color: rgba(60, 54, 107, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-purple-100:hover {
    --border-opacity: 1 !important;
    border-color: #faf5ff !important;
    border-color: rgba(250, 245, 255, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-purple-200:hover {
    --border-opacity: 1 !important;
    border-color: #e9d8fd !important;
    border-color: rgba(233, 216, 253, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-purple-300:hover {
    --border-opacity: 1 !important;
    border-color: #d6bcfa !important;
    border-color: rgba(214, 188, 250, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-purple-400:hover {
    --border-opacity: 1 !important;
    border-color: #b794f4 !important;
    border-color: rgba(183, 148, 244, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-purple-500:hover {
    --border-opacity: 1 !important;
    border-color: #9f7aea !important;
    border-color: rgba(159, 122, 234, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-purple-600:hover {
    --border-opacity: 1 !important;
    border-color: #805ad5 !important;
    border-color: rgba(128, 90, 213, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-purple-700:hover {
    --border-opacity: 1 !important;
    border-color: #6b46c1 !important;
    border-color: rgba(107, 70, 193, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-purple-800:hover {
    --border-opacity: 1 !important;
    border-color: #553c9a !important;
    border-color: rgba(85, 60, 154, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-purple-900:hover {
    --border-opacity: 1 !important;
    border-color: #44337a !important;
    border-color: rgba(68, 51, 122, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-pink-100:hover {
    --border-opacity: 1 !important;
    border-color: #fff5f7 !important;
    border-color: rgba(255, 245, 247, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-pink-200:hover {
    --border-opacity: 1 !important;
    border-color: #fed7e2 !important;
    border-color: rgba(254, 215, 226, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-pink-300:hover {
    --border-opacity: 1 !important;
    border-color: #fbb6ce !important;
    border-color: rgba(251, 182, 206, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-pink-400:hover {
    --border-opacity: 1 !important;
    border-color: #f687b3 !important;
    border-color: rgba(246, 135, 179, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-pink-500:hover {
    --border-opacity: 1 !important;
    border-color: #ed64a6 !important;
    border-color: rgba(237, 100, 166, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-pink-600:hover {
    --border-opacity: 1 !important;
    border-color: #d53f8c !important;
    border-color: rgba(213, 63, 140, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-pink-700:hover {
    --border-opacity: 1 !important;
    border-color: #b83280 !important;
    border-color: rgba(184, 50, 128, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-pink-800:hover {
    --border-opacity: 1 !important;
    border-color: #97266d !important;
    border-color: rgba(151, 38, 109, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-pink-900:hover {
    --border-opacity: 1 !important;
    border-color: #702459 !important;
    border-color: rgba(112, 36, 89, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-ui-gray-100:hover {
    --border-opacity: 1 !important;
    border-color: #f1f1f1 !important;
    border-color: rgba(241, 241, 241, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-ui-brown-100:hover {
    --border-opacity: 1 !important;
    border-color: #f3ecdc !important;
    border-color: rgba(243, 236, 220, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-ui-brown-200:hover {
    --border-opacity: 1 !important;
    border-color: #e8e0c9 !important;
    border-color: rgba(232, 224, 201, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-ui-brown-300:hover {
    --border-opacity: 1 !important;
    border-color: #d0c095 !important;
    border-color: rgba(208, 192, 149, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-ui-brown-700:hover {
    --border-opacity: 1 !important;
    border-color: #bd6005 !important;
    border-color: rgba(189, 96, 5, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-ui-green-300:hover {
    --border-opacity: 1 !important;
    border-color: #aac74c !important;
    border-color: rgba(170, 199, 76, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-ui-green-400:hover {
    --border-opacity: 1 !important;
    border-color: #71893e !important;
    border-color: rgba(113, 137, 62, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-ui-orange-500:hover {
    --border-opacity: 1 !important;
    border-color: #e27212 !important;
    border-color: rgba(226, 114, 18, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-facebook:hover {
    --border-opacity: 1 !important;
    border-color: #3b5998 !important;
    border-color: rgba(59, 89, 152, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-twitter:hover {
    --border-opacity: 1 !important;
    border-color: #00acee !important;
    border-color: rgba(0, 172, 238, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-twitch:hover {
    --border-opacity: 1 !important;
    border-color: #6441a5 !important;
    border-color: rgba(100, 65, 165, var(--border-opacity)) !important;
  }

  .lg\:hover\:cl-border-youtube:hover {
    --border-opacity: 1 !important;
    border-color: #FF0000 !important;
    border-color: rgba(255, 0, 0, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-transparent:focus {
    border-color: transparent !important;
  }

  .lg\:focus\:cl-border-current:focus {
    border-color: currentColor !important;
  }

  .lg\:focus\:cl-border-black:focus {
    --border-opacity: 1 !important;
    border-color: #000 !important;
    border-color: rgba(0, 0, 0, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-white:focus {
    --border-opacity: 1 !important;
    border-color: #fff !important;
    border-color: rgba(255, 255, 255, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-gray-100:focus {
    --border-opacity: 1 !important;
    border-color: #f7fafc !important;
    border-color: rgba(247, 250, 252, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-gray-200:focus {
    --border-opacity: 1 !important;
    border-color: #edf2f7 !important;
    border-color: rgba(237, 242, 247, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-gray-300:focus {
    --border-opacity: 1 !important;
    border-color: #e2e8f0 !important;
    border-color: rgba(226, 232, 240, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-gray-400:focus {
    --border-opacity: 1 !important;
    border-color: #cbd5e0 !important;
    border-color: rgba(203, 213, 224, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-gray-500:focus {
    --border-opacity: 1 !important;
    border-color: #a0aec0 !important;
    border-color: rgba(160, 174, 192, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-gray-600:focus {
    --border-opacity: 1 !important;
    border-color: #718096 !important;
    border-color: rgba(113, 128, 150, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-gray-700:focus {
    --border-opacity: 1 !important;
    border-color: #4a5568 !important;
    border-color: rgba(74, 85, 104, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-gray-800:focus {
    --border-opacity: 1 !important;
    border-color: #2d3748 !important;
    border-color: rgba(45, 55, 72, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-gray-900:focus {
    --border-opacity: 1 !important;
    border-color: #1a202c !important;
    border-color: rgba(26, 32, 44, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-red-100:focus {
    --border-opacity: 1 !important;
    border-color: #fff5f5 !important;
    border-color: rgba(255, 245, 245, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-red-200:focus {
    --border-opacity: 1 !important;
    border-color: #fed7d7 !important;
    border-color: rgba(254, 215, 215, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-red-300:focus {
    --border-opacity: 1 !important;
    border-color: #feb2b2 !important;
    border-color: rgba(254, 178, 178, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-red-400:focus {
    --border-opacity: 1 !important;
    border-color: #fc8181 !important;
    border-color: rgba(252, 129, 129, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-red-500:focus {
    --border-opacity: 1 !important;
    border-color: #f56565 !important;
    border-color: rgba(245, 101, 101, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-red-600:focus {
    --border-opacity: 1 !important;
    border-color: #e53e3e !important;
    border-color: rgba(229, 62, 62, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-red-700:focus {
    --border-opacity: 1 !important;
    border-color: #c53030 !important;
    border-color: rgba(197, 48, 48, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-red-800:focus {
    --border-opacity: 1 !important;
    border-color: #9b2c2c !important;
    border-color: rgba(155, 44, 44, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-red-900:focus {
    --border-opacity: 1 !important;
    border-color: #742a2a !important;
    border-color: rgba(116, 42, 42, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-orange-100:focus {
    --border-opacity: 1 !important;
    border-color: #fffaf0 !important;
    border-color: rgba(255, 250, 240, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-orange-200:focus {
    --border-opacity: 1 !important;
    border-color: #feebc8 !important;
    border-color: rgba(254, 235, 200, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-orange-300:focus {
    --border-opacity: 1 !important;
    border-color: #fbd38d !important;
    border-color: rgba(251, 211, 141, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-orange-400:focus {
    --border-opacity: 1 !important;
    border-color: #f6ad55 !important;
    border-color: rgba(246, 173, 85, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-orange-500:focus {
    --border-opacity: 1 !important;
    border-color: #ed8936 !important;
    border-color: rgba(237, 137, 54, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-orange-600:focus {
    --border-opacity: 1 !important;
    border-color: #dd6b20 !important;
    border-color: rgba(221, 107, 32, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-orange-700:focus {
    --border-opacity: 1 !important;
    border-color: #c05621 !important;
    border-color: rgba(192, 86, 33, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-orange-800:focus {
    --border-opacity: 1 !important;
    border-color: #9c4221 !important;
    border-color: rgba(156, 66, 33, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-orange-900:focus {
    --border-opacity: 1 !important;
    border-color: #7b341e !important;
    border-color: rgba(123, 52, 30, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-yellow-100:focus {
    --border-opacity: 1 !important;
    border-color: #fffff0 !important;
    border-color: rgba(255, 255, 240, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-yellow-200:focus {
    --border-opacity: 1 !important;
    border-color: #fefcbf !important;
    border-color: rgba(254, 252, 191, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-yellow-300:focus {
    --border-opacity: 1 !important;
    border-color: #faf089 !important;
    border-color: rgba(250, 240, 137, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-yellow-400:focus {
    --border-opacity: 1 !important;
    border-color: #f6e05e !important;
    border-color: rgba(246, 224, 94, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-yellow-500:focus {
    --border-opacity: 1 !important;
    border-color: #ecc94b !important;
    border-color: rgba(236, 201, 75, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-yellow-600:focus {
    --border-opacity: 1 !important;
    border-color: #d69e2e !important;
    border-color: rgba(214, 158, 46, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-yellow-700:focus {
    --border-opacity: 1 !important;
    border-color: #b7791f !important;
    border-color: rgba(183, 121, 31, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-yellow-800:focus {
    --border-opacity: 1 !important;
    border-color: #975a16 !important;
    border-color: rgba(151, 90, 22, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-yellow-900:focus {
    --border-opacity: 1 !important;
    border-color: #744210 !important;
    border-color: rgba(116, 66, 16, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-green-100:focus {
    --border-opacity: 1 !important;
    border-color: #f0fff4 !important;
    border-color: rgba(240, 255, 244, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-green-200:focus {
    --border-opacity: 1 !important;
    border-color: #c6f6d5 !important;
    border-color: rgba(198, 246, 213, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-green-300:focus {
    --border-opacity: 1 !important;
    border-color: #9ae6b4 !important;
    border-color: rgba(154, 230, 180, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-green-400:focus {
    --border-opacity: 1 !important;
    border-color: #68d391 !important;
    border-color: rgba(104, 211, 145, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-green-500:focus {
    --border-opacity: 1 !important;
    border-color: #48bb78 !important;
    border-color: rgba(72, 187, 120, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-green-600:focus {
    --border-opacity: 1 !important;
    border-color: #38a169 !important;
    border-color: rgba(56, 161, 105, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-green-700:focus {
    --border-opacity: 1 !important;
    border-color: #2f855a !important;
    border-color: rgba(47, 133, 90, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-green-800:focus {
    --border-opacity: 1 !important;
    border-color: #276749 !important;
    border-color: rgba(39, 103, 73, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-green-900:focus {
    --border-opacity: 1 !important;
    border-color: #22543d !important;
    border-color: rgba(34, 84, 61, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-teal-100:focus {
    --border-opacity: 1 !important;
    border-color: #e6fffa !important;
    border-color: rgba(230, 255, 250, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-teal-200:focus {
    --border-opacity: 1 !important;
    border-color: #b2f5ea !important;
    border-color: rgba(178, 245, 234, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-teal-300:focus {
    --border-opacity: 1 !important;
    border-color: #81e6d9 !important;
    border-color: rgba(129, 230, 217, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-teal-400:focus {
    --border-opacity: 1 !important;
    border-color: #4fd1c5 !important;
    border-color: rgba(79, 209, 197, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-teal-500:focus {
    --border-opacity: 1 !important;
    border-color: #38b2ac !important;
    border-color: rgba(56, 178, 172, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-teal-600:focus {
    --border-opacity: 1 !important;
    border-color: #319795 !important;
    border-color: rgba(49, 151, 149, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-teal-700:focus {
    --border-opacity: 1 !important;
    border-color: #2c7a7b !important;
    border-color: rgba(44, 122, 123, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-teal-800:focus {
    --border-opacity: 1 !important;
    border-color: #285e61 !important;
    border-color: rgba(40, 94, 97, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-teal-900:focus {
    --border-opacity: 1 !important;
    border-color: #234e52 !important;
    border-color: rgba(35, 78, 82, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-blue-100:focus {
    --border-opacity: 1 !important;
    border-color: #ebf8ff !important;
    border-color: rgba(235, 248, 255, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-blue-200:focus {
    --border-opacity: 1 !important;
    border-color: #bee3f8 !important;
    border-color: rgba(190, 227, 248, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-blue-300:focus {
    --border-opacity: 1 !important;
    border-color: #90cdf4 !important;
    border-color: rgba(144, 205, 244, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-blue-400:focus {
    --border-opacity: 1 !important;
    border-color: #63b3ed !important;
    border-color: rgba(99, 179, 237, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-blue-500:focus {
    --border-opacity: 1 !important;
    border-color: #4299e1 !important;
    border-color: rgba(66, 153, 225, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-blue-600:focus {
    --border-opacity: 1 !important;
    border-color: #3182ce !important;
    border-color: rgba(49, 130, 206, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-blue-700:focus {
    --border-opacity: 1 !important;
    border-color: #2b6cb0 !important;
    border-color: rgba(43, 108, 176, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-blue-800:focus {
    --border-opacity: 1 !important;
    border-color: #2c5282 !important;
    border-color: rgba(44, 82, 130, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-blue-900:focus {
    --border-opacity: 1 !important;
    border-color: #2a4365 !important;
    border-color: rgba(42, 67, 101, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-indigo-100:focus {
    --border-opacity: 1 !important;
    border-color: #ebf4ff !important;
    border-color: rgba(235, 244, 255, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-indigo-200:focus {
    --border-opacity: 1 !important;
    border-color: #c3dafe !important;
    border-color: rgba(195, 218, 254, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-indigo-300:focus {
    --border-opacity: 1 !important;
    border-color: #a3bffa !important;
    border-color: rgba(163, 191, 250, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-indigo-400:focus {
    --border-opacity: 1 !important;
    border-color: #7f9cf5 !important;
    border-color: rgba(127, 156, 245, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-indigo-500:focus {
    --border-opacity: 1 !important;
    border-color: #667eea !important;
    border-color: rgba(102, 126, 234, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-indigo-600:focus {
    --border-opacity: 1 !important;
    border-color: #5a67d8 !important;
    border-color: rgba(90, 103, 216, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-indigo-700:focus {
    --border-opacity: 1 !important;
    border-color: #4c51bf !important;
    border-color: rgba(76, 81, 191, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-indigo-800:focus {
    --border-opacity: 1 !important;
    border-color: #434190 !important;
    border-color: rgba(67, 65, 144, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-indigo-900:focus {
    --border-opacity: 1 !important;
    border-color: #3c366b !important;
    border-color: rgba(60, 54, 107, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-purple-100:focus {
    --border-opacity: 1 !important;
    border-color: #faf5ff !important;
    border-color: rgba(250, 245, 255, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-purple-200:focus {
    --border-opacity: 1 !important;
    border-color: #e9d8fd !important;
    border-color: rgba(233, 216, 253, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-purple-300:focus {
    --border-opacity: 1 !important;
    border-color: #d6bcfa !important;
    border-color: rgba(214, 188, 250, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-purple-400:focus {
    --border-opacity: 1 !important;
    border-color: #b794f4 !important;
    border-color: rgba(183, 148, 244, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-purple-500:focus {
    --border-opacity: 1 !important;
    border-color: #9f7aea !important;
    border-color: rgba(159, 122, 234, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-purple-600:focus {
    --border-opacity: 1 !important;
    border-color: #805ad5 !important;
    border-color: rgba(128, 90, 213, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-purple-700:focus {
    --border-opacity: 1 !important;
    border-color: #6b46c1 !important;
    border-color: rgba(107, 70, 193, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-purple-800:focus {
    --border-opacity: 1 !important;
    border-color: #553c9a !important;
    border-color: rgba(85, 60, 154, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-purple-900:focus {
    --border-opacity: 1 !important;
    border-color: #44337a !important;
    border-color: rgba(68, 51, 122, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-pink-100:focus {
    --border-opacity: 1 !important;
    border-color: #fff5f7 !important;
    border-color: rgba(255, 245, 247, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-pink-200:focus {
    --border-opacity: 1 !important;
    border-color: #fed7e2 !important;
    border-color: rgba(254, 215, 226, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-pink-300:focus {
    --border-opacity: 1 !important;
    border-color: #fbb6ce !important;
    border-color: rgba(251, 182, 206, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-pink-400:focus {
    --border-opacity: 1 !important;
    border-color: #f687b3 !important;
    border-color: rgba(246, 135, 179, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-pink-500:focus {
    --border-opacity: 1 !important;
    border-color: #ed64a6 !important;
    border-color: rgba(237, 100, 166, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-pink-600:focus {
    --border-opacity: 1 !important;
    border-color: #d53f8c !important;
    border-color: rgba(213, 63, 140, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-pink-700:focus {
    --border-opacity: 1 !important;
    border-color: #b83280 !important;
    border-color: rgba(184, 50, 128, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-pink-800:focus {
    --border-opacity: 1 !important;
    border-color: #97266d !important;
    border-color: rgba(151, 38, 109, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-pink-900:focus {
    --border-opacity: 1 !important;
    border-color: #702459 !important;
    border-color: rgba(112, 36, 89, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-ui-gray-100:focus {
    --border-opacity: 1 !important;
    border-color: #f1f1f1 !important;
    border-color: rgba(241, 241, 241, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-ui-brown-100:focus {
    --border-opacity: 1 !important;
    border-color: #f3ecdc !important;
    border-color: rgba(243, 236, 220, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-ui-brown-200:focus {
    --border-opacity: 1 !important;
    border-color: #e8e0c9 !important;
    border-color: rgba(232, 224, 201, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-ui-brown-300:focus {
    --border-opacity: 1 !important;
    border-color: #d0c095 !important;
    border-color: rgba(208, 192, 149, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-ui-brown-700:focus {
    --border-opacity: 1 !important;
    border-color: #bd6005 !important;
    border-color: rgba(189, 96, 5, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-ui-green-300:focus {
    --border-opacity: 1 !important;
    border-color: #aac74c !important;
    border-color: rgba(170, 199, 76, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-ui-green-400:focus {
    --border-opacity: 1 !important;
    border-color: #71893e !important;
    border-color: rgba(113, 137, 62, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-ui-orange-500:focus {
    --border-opacity: 1 !important;
    border-color: #e27212 !important;
    border-color: rgba(226, 114, 18, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-facebook:focus {
    --border-opacity: 1 !important;
    border-color: #3b5998 !important;
    border-color: rgba(59, 89, 152, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-twitter:focus {
    --border-opacity: 1 !important;
    border-color: #00acee !important;
    border-color: rgba(0, 172, 238, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-twitch:focus {
    --border-opacity: 1 !important;
    border-color: #6441a5 !important;
    border-color: rgba(100, 65, 165, var(--border-opacity)) !important;
  }

  .lg\:focus\:cl-border-youtube:focus {
    --border-opacity: 1 !important;
    border-color: #FF0000 !important;
    border-color: rgba(255, 0, 0, var(--border-opacity)) !important;
  }

  .lg\:cl-border-opacity-0 {
    --border-opacity: 0 !important;
  }

  .lg\:cl-border-opacity-25 {
    --border-opacity: 0.25 !important;
  }

  .lg\:cl-border-opacity-50 {
    --border-opacity: 0.5 !important;
  }

  .lg\:cl-border-opacity-75 {
    --border-opacity: 0.75 !important;
  }

  .lg\:cl-border-opacity-100 {
    --border-opacity: 1 !important;
  }

  .lg\:hover\:cl-border-opacity-0:hover {
    --border-opacity: 0 !important;
  }

  .lg\:hover\:cl-border-opacity-25:hover {
    --border-opacity: 0.25 !important;
  }

  .lg\:hover\:cl-border-opacity-50:hover {
    --border-opacity: 0.5 !important;
  }

  .lg\:hover\:cl-border-opacity-75:hover {
    --border-opacity: 0.75 !important;
  }

  .lg\:hover\:cl-border-opacity-100:hover {
    --border-opacity: 1 !important;
  }

  .lg\:focus\:cl-border-opacity-0:focus {
    --border-opacity: 0 !important;
  }

  .lg\:focus\:cl-border-opacity-25:focus {
    --border-opacity: 0.25 !important;
  }

  .lg\:focus\:cl-border-opacity-50:focus {
    --border-opacity: 0.5 !important;
  }

  .lg\:focus\:cl-border-opacity-75:focus {
    --border-opacity: 0.75 !important;
  }

  .lg\:focus\:cl-border-opacity-100:focus {
    --border-opacity: 1 !important;
  }

  .lg\:cl-rounded-none {
    border-radius: 0 !important;
  }

  .lg\:cl-rounded-sm {
    border-radius: 0.125rem !important;
  }

  .lg\:cl-rounded {
    border-radius: 0.25rem !important;
  }

  .lg\:cl-rounded-md {
    border-radius: 0.375rem !important;
  }

  .lg\:cl-rounded-lg {
    border-radius: 0.5rem !important;
  }

  .lg\:cl-rounded-xl {
    border-radius: 0.75rem !important;
  }

  .lg\:cl-rounded-2xl {
    border-radius: 1rem !important;
  }

  .lg\:cl-rounded-3xl {
    border-radius: 1.5rem !important;
  }

  .lg\:cl-rounded-full {
    border-radius: 9999px !important;
  }

  .lg\:cl-rounded-t-none {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .lg\:cl-rounded-r-none {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .lg\:cl-rounded-b-none {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .lg\:cl-rounded-l-none {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .lg\:cl-rounded-t-sm {
    border-top-left-radius: 0.125rem !important;
    border-top-right-radius: 0.125rem !important;
  }

  .lg\:cl-rounded-r-sm {
    border-top-right-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }

  .lg\:cl-rounded-b-sm {
    border-bottom-right-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .lg\:cl-rounded-l-sm {
    border-top-left-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .lg\:cl-rounded-t {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
  }

  .lg\:cl-rounded-r {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }

  .lg\:cl-rounded-b {
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .lg\:cl-rounded-l {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .lg\:cl-rounded-t-md {
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
  }

  .lg\:cl-rounded-r-md {
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }

  .lg\:cl-rounded-b-md {
    border-bottom-right-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .lg\:cl-rounded-l-md {
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .lg\:cl-rounded-t-lg {
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
  }

  .lg\:cl-rounded-r-lg {
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }

  .lg\:cl-rounded-b-lg {
    border-bottom-right-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .lg\:cl-rounded-l-lg {
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .lg\:cl-rounded-t-xl {
    border-top-left-radius: 0.75rem !important;
    border-top-right-radius: 0.75rem !important;
  }

  .lg\:cl-rounded-r-xl {
    border-top-right-radius: 0.75rem !important;
    border-bottom-right-radius: 0.75rem !important;
  }

  .lg\:cl-rounded-b-xl {
    border-bottom-right-radius: 0.75rem !important;
    border-bottom-left-radius: 0.75rem !important;
  }

  .lg\:cl-rounded-l-xl {
    border-top-left-radius: 0.75rem !important;
    border-bottom-left-radius: 0.75rem !important;
  }

  .lg\:cl-rounded-t-2xl {
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
  }

  .lg\:cl-rounded-r-2xl {
    border-top-right-radius: 1rem !important;
    border-bottom-right-radius: 1rem !important;
  }

  .lg\:cl-rounded-b-2xl {
    border-bottom-right-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
  }

  .lg\:cl-rounded-l-2xl {
    border-top-left-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
  }

  .lg\:cl-rounded-t-3xl {
    border-top-left-radius: 1.5rem !important;
    border-top-right-radius: 1.5rem !important;
  }

  .lg\:cl-rounded-r-3xl {
    border-top-right-radius: 1.5rem !important;
    border-bottom-right-radius: 1.5rem !important;
  }

  .lg\:cl-rounded-b-3xl {
    border-bottom-right-radius: 1.5rem !important;
    border-bottom-left-radius: 1.5rem !important;
  }

  .lg\:cl-rounded-l-3xl {
    border-top-left-radius: 1.5rem !important;
    border-bottom-left-radius: 1.5rem !important;
  }

  .lg\:cl-rounded-t-full {
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .lg\:cl-rounded-r-full {
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .lg\:cl-rounded-b-full {
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .lg\:cl-rounded-l-full {
    border-top-left-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .lg\:cl-rounded-tl-none {
    border-top-left-radius: 0 !important;
  }

  .lg\:cl-rounded-tr-none {
    border-top-right-radius: 0 !important;
  }

  .lg\:cl-rounded-br-none {
    border-bottom-right-radius: 0 !important;
  }

  .lg\:cl-rounded-bl-none {
    border-bottom-left-radius: 0 !important;
  }

  .lg\:cl-rounded-tl-sm {
    border-top-left-radius: 0.125rem !important;
  }

  .lg\:cl-rounded-tr-sm {
    border-top-right-radius: 0.125rem !important;
  }

  .lg\:cl-rounded-br-sm {
    border-bottom-right-radius: 0.125rem !important;
  }

  .lg\:cl-rounded-bl-sm {
    border-bottom-left-radius: 0.125rem !important;
  }

  .lg\:cl-rounded-tl {
    border-top-left-radius: 0.25rem !important;
  }

  .lg\:cl-rounded-tr {
    border-top-right-radius: 0.25rem !important;
  }

  .lg\:cl-rounded-br {
    border-bottom-right-radius: 0.25rem !important;
  }

  .lg\:cl-rounded-bl {
    border-bottom-left-radius: 0.25rem !important;
  }

  .lg\:cl-rounded-tl-md {
    border-top-left-radius: 0.375rem !important;
  }

  .lg\:cl-rounded-tr-md {
    border-top-right-radius: 0.375rem !important;
  }

  .lg\:cl-rounded-br-md {
    border-bottom-right-radius: 0.375rem !important;
  }

  .lg\:cl-rounded-bl-md {
    border-bottom-left-radius: 0.375rem !important;
  }

  .lg\:cl-rounded-tl-lg {
    border-top-left-radius: 0.5rem !important;
  }

  .lg\:cl-rounded-tr-lg {
    border-top-right-radius: 0.5rem !important;
  }

  .lg\:cl-rounded-br-lg {
    border-bottom-right-radius: 0.5rem !important;
  }

  .lg\:cl-rounded-bl-lg {
    border-bottom-left-radius: 0.5rem !important;
  }

  .lg\:cl-rounded-tl-xl {
    border-top-left-radius: 0.75rem !important;
  }

  .lg\:cl-rounded-tr-xl {
    border-top-right-radius: 0.75rem !important;
  }

  .lg\:cl-rounded-br-xl {
    border-bottom-right-radius: 0.75rem !important;
  }

  .lg\:cl-rounded-bl-xl {
    border-bottom-left-radius: 0.75rem !important;
  }

  .lg\:cl-rounded-tl-2xl {
    border-top-left-radius: 1rem !important;
  }

  .lg\:cl-rounded-tr-2xl {
    border-top-right-radius: 1rem !important;
  }

  .lg\:cl-rounded-br-2xl {
    border-bottom-right-radius: 1rem !important;
  }

  .lg\:cl-rounded-bl-2xl {
    border-bottom-left-radius: 1rem !important;
  }

  .lg\:cl-rounded-tl-3xl {
    border-top-left-radius: 1.5rem !important;
  }

  .lg\:cl-rounded-tr-3xl {
    border-top-right-radius: 1.5rem !important;
  }

  .lg\:cl-rounded-br-3xl {
    border-bottom-right-radius: 1.5rem !important;
  }

  .lg\:cl-rounded-bl-3xl {
    border-bottom-left-radius: 1.5rem !important;
  }

  .lg\:cl-rounded-tl-full {
    border-top-left-radius: 9999px !important;
  }

  .lg\:cl-rounded-tr-full {
    border-top-right-radius: 9999px !important;
  }

  .lg\:cl-rounded-br-full {
    border-bottom-right-radius: 9999px !important;
  }

  .lg\:cl-rounded-bl-full {
    border-bottom-left-radius: 9999px !important;
  }

  .lg\:cl-border-solid {
    border-style: solid !important;
  }

  .lg\:cl-border-dashed {
    border-style: dashed !important;
  }

  .lg\:cl-border-dotted {
    border-style: dotted !important;
  }

  .lg\:cl-border-double {
    border-style: double !important;
  }

  .lg\:cl-border-none {
    border-style: none !important;
  }

  .lg\:cl-border-0 {
    border-width: 0 !important;
  }

  .lg\:cl-border-2 {
    border-width: 2px !important;
  }

  .lg\:cl-border-4 {
    border-width: 4px !important;
  }

  .lg\:cl-border-8 {
    border-width: 8px !important;
  }

  .lg\:cl-border-15 {
    border-width: 15px !important;
  }

  .lg\:cl-border {
    border-width: 1px !important;
  }

  .lg\:cl-border-t-0 {
    border-top-width: 0 !important;
  }

  .lg\:cl-border-r-0 {
    border-right-width: 0 !important;
  }

  .lg\:cl-border-b-0 {
    border-bottom-width: 0 !important;
  }

  .lg\:cl-border-l-0 {
    border-left-width: 0 !important;
  }

  .lg\:cl-border-t-2 {
    border-top-width: 2px !important;
  }

  .lg\:cl-border-r-2 {
    border-right-width: 2px !important;
  }

  .lg\:cl-border-b-2 {
    border-bottom-width: 2px !important;
  }

  .lg\:cl-border-l-2 {
    border-left-width: 2px !important;
  }

  .lg\:cl-border-t-4 {
    border-top-width: 4px !important;
  }

  .lg\:cl-border-r-4 {
    border-right-width: 4px !important;
  }

  .lg\:cl-border-b-4 {
    border-bottom-width: 4px !important;
  }

  .lg\:cl-border-l-4 {
    border-left-width: 4px !important;
  }

  .lg\:cl-border-t-8 {
    border-top-width: 8px !important;
  }

  .lg\:cl-border-r-8 {
    border-right-width: 8px !important;
  }

  .lg\:cl-border-b-8 {
    border-bottom-width: 8px !important;
  }

  .lg\:cl-border-l-8 {
    border-left-width: 8px !important;
  }

  .lg\:cl-border-t-15 {
    border-top-width: 15px !important;
  }

  .lg\:cl-border-r-15 {
    border-right-width: 15px !important;
  }

  .lg\:cl-border-b-15 {
    border-bottom-width: 15px !important;
  }

  .lg\:cl-border-l-15 {
    border-left-width: 15px !important;
  }

  .lg\:cl-border-t {
    border-top-width: 1px !important;
  }

  .lg\:cl-border-r {
    border-right-width: 1px !important;
  }

  .lg\:cl-border-b {
    border-bottom-width: 1px !important;
  }

  .lg\:cl-border-l {
    border-left-width: 1px !important;
  }

  .lg\:cl-box-border {
    box-sizing: border-box !important;
  }

  .lg\:cl-box-content {
    box-sizing: content-box !important;
  }

  .lg\:cl-cursor-auto {
    cursor: auto !important;
  }

  .lg\:cl-cursor-default {
    cursor: default !important;
  }

  .lg\:cl-cursor-pointer {
    cursor: pointer !important;
  }

  .lg\:cl-cursor-wait {
    cursor: wait !important;
  }

  .lg\:cl-cursor-text {
    cursor: text !important;
  }

  .lg\:cl-cursor-move {
    cursor: move !important;
  }

  .lg\:cl-cursor-not-allowed {
    cursor: not-allowed !important;
  }

  .lg\:cl-block {
    display: block !important;
  }

  .lg\:cl-inline-block {
    display: inline-block !important;
  }

  .lg\:cl-inline {
    display: inline !important;
  }

  .lg\:cl-flex {
    display: flex !important;
  }

  .lg\:cl-inline-flex {
    display: inline-flex !important;
  }

  .lg\:cl-table {
    display: table !important;
  }

  .lg\:cl-table-caption {
    display: table-caption !important;
  }

  .lg\:cl-table-cell {
    display: table-cell !important;
  }

  .lg\:cl-table-column {
    display: table-column !important;
  }

  .lg\:cl-table-column-group {
    display: table-column-group !important;
  }

  .lg\:cl-table-footer-group {
    display: table-footer-group !important;
  }

  .lg\:cl-table-header-group {
    display: table-header-group !important;
  }

  .lg\:cl-table-row-group {
    display: table-row-group !important;
  }

  .lg\:cl-table-row {
    display: table-row !important;
  }

  .lg\:cl-flow-root {
    display: flow-root !important;
  }

  .lg\:cl-grid {
    display: grid !important;
  }

  .lg\:cl-inline-grid {
    display: inline-grid !important;
  }

  .lg\:cl-contents {
    display: contents !important;
  }

  .lg\:cl-hidden {
    display: none !important;
  }

  .lg\:cl-flex-row {
    flex-direction: row !important;
  }

  .lg\:cl-flex-row-reverse {
    flex-direction: row-reverse !important;
  }

  .lg\:cl-flex-col {
    flex-direction: column !important;
  }

  .lg\:cl-flex-col-reverse {
    flex-direction: column-reverse !important;
  }

  .lg\:cl-flex-wrap {
    flex-wrap: wrap !important;
  }

  .lg\:cl-flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .lg\:cl-flex-no-wrap {
    flex-wrap: nowrap !important;
  }

  .lg\:cl-place-items-auto {
    place-items: auto !important;
  }

  .lg\:cl-place-items-start {
    place-items: start !important;
  }

  .lg\:cl-place-items-end {
    place-items: end !important;
  }

  .lg\:cl-place-items-center {
    place-items: center !important;
  }

  .lg\:cl-place-items-stretch {
    place-items: stretch !important;
  }

  .lg\:cl-place-content-center {
    place-content: center !important;
  }

  .lg\:cl-place-content-start {
    place-content: start !important;
  }

  .lg\:cl-place-content-end {
    place-content: end !important;
  }

  .lg\:cl-place-content-between {
    place-content: space-between !important;
  }

  .lg\:cl-place-content-around {
    place-content: space-around !important;
  }

  .lg\:cl-place-content-evenly {
    place-content: space-evenly !important;
  }

  .lg\:cl-place-content-stretch {
    place-content: stretch !important;
  }

  .lg\:cl-place-self-auto {
    place-self: auto !important;
  }

  .lg\:cl-place-self-start {
    place-self: start !important;
  }

  .lg\:cl-place-self-end {
    place-self: end !important;
  }

  .lg\:cl-place-self-center {
    place-self: center !important;
  }

  .lg\:cl-place-self-stretch {
    place-self: stretch !important;
  }

  .lg\:cl-items-start {
    align-items: flex-start !important;
  }

  .lg\:cl-items-end {
    align-items: flex-end !important;
  }

  .lg\:cl-items-center {
    align-items: center !important;
  }

  .lg\:cl-items-baseline {
    align-items: baseline !important;
  }

  .lg\:cl-items-stretch {
    align-items: stretch !important;
  }

  .lg\:cl-content-center {
    align-content: center !important;
  }

  .lg\:cl-content-start {
    align-content: flex-start !important;
  }

  .lg\:cl-content-end {
    align-content: flex-end !important;
  }

  .lg\:cl-content-between {
    align-content: space-between !important;
  }

  .lg\:cl-content-around {
    align-content: space-around !important;
  }

  .lg\:cl-content-evenly {
    align-content: space-evenly !important;
  }

  .lg\:cl-self-auto {
    align-self: auto !important;
  }

  .lg\:cl-self-start {
    align-self: flex-start !important;
  }

  .lg\:cl-self-end {
    align-self: flex-end !important;
  }

  .lg\:cl-self-center {
    align-self: center !important;
  }

  .lg\:cl-self-stretch {
    align-self: stretch !important;
  }

  .lg\:cl-justify-items-auto {
    justify-items: auto !important;
  }

  .lg\:cl-justify-items-start {
    justify-items: start !important;
  }

  .lg\:cl-justify-items-end {
    justify-items: end !important;
  }

  .lg\:cl-justify-items-center {
    justify-items: center !important;
  }

  .lg\:cl-justify-items-stretch {
    justify-items: stretch !important;
  }

  .lg\:cl-justify-start {
    justify-content: flex-start !important;
  }

  .lg\:cl-justify-end {
    justify-content: flex-end !important;
  }

  .lg\:cl-justify-center {
    justify-content: center !important;
  }

  .lg\:cl-justify-between {
    justify-content: space-between !important;
  }

  .lg\:cl-justify-around {
    justify-content: space-around !important;
  }

  .lg\:cl-justify-evenly {
    justify-content: space-evenly !important;
  }

  .lg\:cl-justify-self-auto {
    justify-self: auto !important;
  }

  .lg\:cl-justify-self-start {
    justify-self: start !important;
  }

  .lg\:cl-justify-self-end {
    justify-self: end !important;
  }

  .lg\:cl-justify-self-center {
    justify-self: center !important;
  }

  .lg\:cl-justify-self-stretch {
    justify-self: stretch !important;
  }

  .lg\:cl-flex-1 {
    flex: 1 1 0% !important;
  }

  .lg\:cl-flex-auto {
    flex: 1 1 auto !important;
  }

  .lg\:cl-flex-initial {
    flex: 0 1 auto !important;
  }

  .lg\:cl-flex-none {
    flex: none !important;
  }

  .lg\:cl-flex-grow-0 {
    flex-grow: 0 !important;
  }

  .lg\:cl-flex-grow {
    flex-grow: 1 !important;
  }

  .lg\:cl-flex-shrink-0 {
    flex-shrink: 0 !important;
  }

  .lg\:cl-flex-shrink {
    flex-shrink: 1 !important;
  }

  .lg\:cl-order-1 {
    order: 1 !important;
  }

  .lg\:cl-order-2 {
    order: 2 !important;
  }

  .lg\:cl-order-3 {
    order: 3 !important;
  }

  .lg\:cl-order-4 {
    order: 4 !important;
  }

  .lg\:cl-order-5 {
    order: 5 !important;
  }

  .lg\:cl-order-6 {
    order: 6 !important;
  }

  .lg\:cl-order-7 {
    order: 7 !important;
  }

  .lg\:cl-order-8 {
    order: 8 !important;
  }

  .lg\:cl-order-9 {
    order: 9 !important;
  }

  .lg\:cl-order-10 {
    order: 10 !important;
  }

  .lg\:cl-order-11 {
    order: 11 !important;
  }

  .lg\:cl-order-12 {
    order: 12 !important;
  }

  .lg\:cl-order-first {
    order: -9999 !important;
  }

  .lg\:cl-order-last {
    order: 9999 !important;
  }

  .lg\:cl-order-none {
    order: 0 !important;
  }

  .lg\:cl-float-right {
    float: right !important;
  }

  .lg\:cl-float-left {
    float: left !important;
  }

  .lg\:cl-float-none {
    float: none !important;
  }

  .lg\:cl-clearfix:after {
    content: "" !important;
    display: table !important;
    clear: both !important;
  }

  .lg\:cl-clear-left {
    clear: left !important;
  }

  .lg\:cl-clear-right {
    clear: right !important;
  }

  .lg\:cl-clear-both {
    clear: both !important;
  }

  .lg\:cl-clear-none {
    clear: none !important;
  }

  .lg\:cl-font-sans {
    font-family: Lato, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  }

  .lg\:cl-font-serif {
    font-family: Georgia, Cambria, "Times New Roman", Times, serif !important;
  }

  .lg\:cl-font-mono {
    font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
  }

  .lg\:cl-font-heading {
    font-family: Corben, cursive, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  }

  .lg\:cl-font-hairline {
    font-weight: 100 !important;
  }

  .lg\:cl-font-thin {
    font-weight: 200 !important;
  }

  .lg\:cl-font-light {
    font-weight: 300 !important;
  }

  .lg\:cl-font-normal {
    font-weight: 400 !important;
  }

  .lg\:cl-font-medium {
    font-weight: 500 !important;
  }

  .lg\:cl-font-semibold {
    font-weight: 600 !important;
  }

  .lg\:cl-font-bold {
    font-weight: 700 !important;
  }

  .lg\:cl-font-extrabold {
    font-weight: 800 !important;
  }

  .lg\:cl-font-black {
    font-weight: 900 !important;
  }

  .lg\:hover\:cl-font-hairline:hover {
    font-weight: 100 !important;
  }

  .lg\:hover\:cl-font-thin:hover {
    font-weight: 200 !important;
  }

  .lg\:hover\:cl-font-light:hover {
    font-weight: 300 !important;
  }

  .lg\:hover\:cl-font-normal:hover {
    font-weight: 400 !important;
  }

  .lg\:hover\:cl-font-medium:hover {
    font-weight: 500 !important;
  }

  .lg\:hover\:cl-font-semibold:hover {
    font-weight: 600 !important;
  }

  .lg\:hover\:cl-font-bold:hover {
    font-weight: 700 !important;
  }

  .lg\:hover\:cl-font-extrabold:hover {
    font-weight: 800 !important;
  }

  .lg\:hover\:cl-font-black:hover {
    font-weight: 900 !important;
  }

  .lg\:focus\:cl-font-hairline:focus {
    font-weight: 100 !important;
  }

  .lg\:focus\:cl-font-thin:focus {
    font-weight: 200 !important;
  }

  .lg\:focus\:cl-font-light:focus {
    font-weight: 300 !important;
  }

  .lg\:focus\:cl-font-normal:focus {
    font-weight: 400 !important;
  }

  .lg\:focus\:cl-font-medium:focus {
    font-weight: 500 !important;
  }

  .lg\:focus\:cl-font-semibold:focus {
    font-weight: 600 !important;
  }

  .lg\:focus\:cl-font-bold:focus {
    font-weight: 700 !important;
  }

  .lg\:focus\:cl-font-extrabold:focus {
    font-weight: 800 !important;
  }

  .lg\:focus\:cl-font-black:focus {
    font-weight: 900 !important;
  }

  .lg\:cl-h-0 {
    height: 0 !important;
  }

  .lg\:cl-h-1 {
    height: 4px !important;
  }

  .lg\:cl-h-2 {
    height: 8px !important;
  }

  .lg\:cl-h-3 {
    height: 12px !important;
  }

  .lg\:cl-h-4 {
    height: 16px !important;
  }

  .lg\:cl-h-5 {
    height: 20px !important;
  }

  .lg\:cl-h-6 {
    height: 24px !important;
  }

  .lg\:cl-h-8 {
    height: 32px !important;
  }

  .lg\:cl-h-10 {
    height: 40px !important;
  }

  .lg\:cl-h-12 {
    height: 48px !important;
  }

  .lg\:cl-h-16 {
    height: 64px !important;
  }

  .lg\:cl-h-20 {
    height: 80px !important;
  }

  .lg\:cl-h-24 {
    height: 96px !important;
  }

  .lg\:cl-h-26 {
    height: 100px !important;
  }

  .lg\:cl-h-28 {
    height: 110px !important;
  }

  .lg\:cl-h-32 {
    height: 128px !important;
  }

  .lg\:cl-h-40 {
    height: 160px !important;
  }

  .lg\:cl-h-48 {
    height: 192px !important;
  }

  .lg\:cl-h-56 {
    height: 224px !important;
  }

  .lg\:cl-h-64 {
    height: 256px !important;
  }

  .lg\:cl-h-auto {
    height: auto !important;
  }

  .lg\:cl-h-px {
    height: 1px !important;
  }

  .lg\:cl-h-full {
    height: 100% !important;
  }

  .lg\:cl-h-screen {
    height: 100vh !important;
  }

  .lg\:cl-h-1\/2 {
    height: 50% !important;
  }

  .lg\:cl-h-1\/3 {
    height: 33.333333% !important;
  }

  .lg\:cl-h-2\/3 {
    height: 66.666667% !important;
  }

  .lg\:cl-h-1\/4 {
    height: 25% !important;
  }

  .lg\:cl-h-2\/4 {
    height: 50% !important;
  }

  .lg\:cl-h-3\/4 {
    height: 75% !important;
  }

  .lg\:cl-h-1\/5 {
    height: 20% !important;
  }

  .lg\:cl-h-2\/5 {
    height: 40% !important;
  }

  .lg\:cl-h-3\/5 {
    height: 60% !important;
  }

  .lg\:cl-h-4\/5 {
    height: 80% !important;
  }

  .lg\:cl-h-1\/6 {
    height: 16.666667% !important;
  }

  .lg\:cl-h-2\/6 {
    height: 33.333333% !important;
  }

  .lg\:cl-h-3\/6 {
    height: 50% !important;
  }

  .lg\:cl-h-4\/6 {
    height: 66.666667% !important;
  }

  .lg\:cl-h-5\/6 {
    height: 83.333333% !important;
  }

  .lg\:cl-h-1\/12 {
    height: 8.333333% !important;
  }

  .lg\:cl-h-2\/12 {
    height: 16.666667% !important;
  }

  .lg\:cl-h-3\/12 {
    height: 25% !important;
  }

  .lg\:cl-h-4\/12 {
    height: 33.333333% !important;
  }

  .lg\:cl-h-5\/12 {
    height: 41.666667% !important;
  }

  .lg\:cl-h-6\/12 {
    height: 50% !important;
  }

  .lg\:cl-h-7\/12 {
    height: 58.333333% !important;
  }

  .lg\:cl-h-8\/12 {
    height: 66.666667% !important;
  }

  .lg\:cl-h-9\/12 {
    height: 75% !important;
  }

  .lg\:cl-h-10\/12 {
    height: 83.333333% !important;
  }

  .lg\:cl-h-11\/12 {
    height: 91.666667% !important;
  }

  .lg\:cl-text-xxs {
    font-size: 10px !important;
  }

  .lg\:cl-text-xs {
    font-size: 12px !important;
  }

  .lg\:cl-text-sm {
    font-size: 14px !important;
  }

  .lg\:cl-text-base {
    font-size: 16px !important;
  }

  .lg\:cl-text-lg {
    font-size: 18px !important;
  }

  .lg\:cl-text-xl {
    font-size: 20px !important;
  }

  .lg\:cl-text-2xl {
    font-size: 24px !important;
  }

  .lg\:cl-text-3xl {
    font-size: 30px !important;
  }

  .lg\:cl-text-4xl {
    font-size: 36px !important;
  }

  .lg\:cl-text-5xl {
    font-size: 48px !important;
  }

  .lg\:cl-text-6xl {
    font-size: 64px !important;
  }

  .lg\:cl-leading-3 {
    line-height: .75rem !important;
  }

  .lg\:cl-leading-4 {
    line-height: 1rem !important;
  }

  .lg\:cl-leading-5 {
    line-height: 1.25rem !important;
  }

  .lg\:cl-leading-6 {
    line-height: 1.5rem !important;
  }

  .lg\:cl-leading-7 {
    line-height: 1.75rem !important;
  }

  .lg\:cl-leading-8 {
    line-height: 2rem !important;
  }

  .lg\:cl-leading-9 {
    line-height: 2.25rem !important;
  }

  .lg\:cl-leading-10 {
    line-height: 2.5rem !important;
  }

  .lg\:cl-leading-none {
    line-height: 1 !important;
  }

  .lg\:cl-leading-tight {
    line-height: 1.25 !important;
  }

  .lg\:cl-leading-snug {
    line-height: 1.375 !important;
  }

  .lg\:cl-leading-normal {
    line-height: 1.5 !important;
  }

  .lg\:cl-leading-relaxed {
    line-height: 1.625 !important;
  }

  .lg\:cl-leading-loose {
    line-height: 2 !important;
  }

  .lg\:cl-list-inside {
    list-style-position: inside !important;
  }

  .lg\:cl-list-outside {
    list-style-position: outside !important;
  }

  .lg\:cl-list-none {
    list-style-type: none !important;
  }

  .lg\:cl-list-disc {
    list-style-type: disc !important;
  }

  .lg\:cl-list-decimal {
    list-style-type: decimal !important;
  }

  .lg\:cl-m-0 {
    margin: 0 !important;
  }

  .lg\:cl-m-1 {
    margin: 4px !important;
  }

  .lg\:cl-m-2 {
    margin: 8px !important;
  }

  .lg\:cl-m-3 {
    margin: 12px !important;
  }

  .lg\:cl-m-4 {
    margin: 16px !important;
  }

  .lg\:cl-m-5 {
    margin: 20px !important;
  }

  .lg\:cl-m-6 {
    margin: 24px !important;
  }

  .lg\:cl-m-8 {
    margin: 32px !important;
  }

  .lg\:cl-m-10 {
    margin: 40px !important;
  }

  .lg\:cl-m-12 {
    margin: 48px !important;
  }

  .lg\:cl-m-16 {
    margin: 64px !important;
  }

  .lg\:cl-m-20 {
    margin: 80px !important;
  }

  .lg\:cl-m-24 {
    margin: 96px !important;
  }

  .lg\:cl-m-26 {
    margin: 100px !important;
  }

  .lg\:cl-m-28 {
    margin: 110px !important;
  }

  .lg\:cl-m-32 {
    margin: 128px !important;
  }

  .lg\:cl-m-40 {
    margin: 160px !important;
  }

  .lg\:cl-m-48 {
    margin: 192px !important;
  }

  .lg\:cl-m-56 {
    margin: 224px !important;
  }

  .lg\:cl-m-64 {
    margin: 256px !important;
  }

  .lg\:cl-m-auto {
    margin: auto !important;
  }

  .lg\:cl-m-px {
    margin: 1px !important;
  }

  .lg\:cl--m-1 {
    margin: -4px !important;
  }

  .lg\:cl--m-2 {
    margin: -8px !important;
  }

  .lg\:cl--m-3 {
    margin: -12px !important;
  }

  .lg\:cl--m-4 {
    margin: -16px !important;
  }

  .lg\:cl--m-5 {
    margin: -20px !important;
  }

  .lg\:cl--m-6 {
    margin: -24px !important;
  }

  .lg\:cl--m-8 {
    margin: -32px !important;
  }

  .lg\:cl--m-10 {
    margin: -40px !important;
  }

  .lg\:cl--m-12 {
    margin: -48px !important;
  }

  .lg\:cl--m-16 {
    margin: -64px !important;
  }

  .lg\:cl--m-20 {
    margin: -80px !important;
  }

  .lg\:cl--m-24 {
    margin: -96px !important;
  }

  .lg\:cl--m-26 {
    margin: -100px !important;
  }

  .lg\:cl--m-28 {
    margin: -110px !important;
  }

  .lg\:cl--m-32 {
    margin: -128px !important;
  }

  .lg\:cl--m-40 {
    margin: -160px !important;
  }

  .lg\:cl--m-48 {
    margin: -192px !important;
  }

  .lg\:cl--m-56 {
    margin: -224px !important;
  }

  .lg\:cl--m-64 {
    margin: -256px !important;
  }

  .lg\:cl--m-px {
    margin: -1px !important;
  }

  .lg\:cl-my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .lg\:cl-mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .lg\:cl-my-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  .lg\:cl-mx-1 {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }

  .lg\:cl-my-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  .lg\:cl-mx-2 {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }

  .lg\:cl-my-3 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }

  .lg\:cl-mx-3 {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }

  .lg\:cl-my-4 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }

  .lg\:cl-mx-4 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }

  .lg\:cl-my-5 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .lg\:cl-mx-5 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }

  .lg\:cl-my-6 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }

  .lg\:cl-mx-6 {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }

  .lg\:cl-my-8 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }

  .lg\:cl-mx-8 {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }

  .lg\:cl-my-10 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  .lg\:cl-mx-10 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }

  .lg\:cl-my-12 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }

  .lg\:cl-mx-12 {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }

  .lg\:cl-my-16 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }

  .lg\:cl-mx-16 {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }

  .lg\:cl-my-20 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }

  .lg\:cl-mx-20 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }

  .lg\:cl-my-24 {
    margin-top: 96px !important;
    margin-bottom: 96px !important;
  }

  .lg\:cl-mx-24 {
    margin-left: 96px !important;
    margin-right: 96px !important;
  }

  .lg\:cl-my-26 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }

  .lg\:cl-mx-26 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }

  .lg\:cl-my-28 {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
  }

  .lg\:cl-mx-28 {
    margin-left: 110px !important;
    margin-right: 110px !important;
  }

  .lg\:cl-my-32 {
    margin-top: 128px !important;
    margin-bottom: 128px !important;
  }

  .lg\:cl-mx-32 {
    margin-left: 128px !important;
    margin-right: 128px !important;
  }

  .lg\:cl-my-40 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }

  .lg\:cl-mx-40 {
    margin-left: 160px !important;
    margin-right: 160px !important;
  }

  .lg\:cl-my-48 {
    margin-top: 192px !important;
    margin-bottom: 192px !important;
  }

  .lg\:cl-mx-48 {
    margin-left: 192px !important;
    margin-right: 192px !important;
  }

  .lg\:cl-my-56 {
    margin-top: 224px !important;
    margin-bottom: 224px !important;
  }

  .lg\:cl-mx-56 {
    margin-left: 224px !important;
    margin-right: 224px !important;
  }

  .lg\:cl-my-64 {
    margin-top: 256px !important;
    margin-bottom: 256px !important;
  }

  .lg\:cl-mx-64 {
    margin-left: 256px !important;
    margin-right: 256px !important;
  }

  .lg\:cl-my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .lg\:cl-mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .lg\:cl-my-px {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .lg\:cl-mx-px {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .lg\:cl--my-1 {
    margin-top: -4px !important;
    margin-bottom: -4px !important;
  }

  .lg\:cl--mx-1 {
    margin-left: -4px !important;
    margin-right: -4px !important;
  }

  .lg\:cl--my-2 {
    margin-top: -8px !important;
    margin-bottom: -8px !important;
  }

  .lg\:cl--mx-2 {
    margin-left: -8px !important;
    margin-right: -8px !important;
  }

  .lg\:cl--my-3 {
    margin-top: -12px !important;
    margin-bottom: -12px !important;
  }

  .lg\:cl--mx-3 {
    margin-left: -12px !important;
    margin-right: -12px !important;
  }

  .lg\:cl--my-4 {
    margin-top: -16px !important;
    margin-bottom: -16px !important;
  }

  .lg\:cl--mx-4 {
    margin-left: -16px !important;
    margin-right: -16px !important;
  }

  .lg\:cl--my-5 {
    margin-top: -20px !important;
    margin-bottom: -20px !important;
  }

  .lg\:cl--mx-5 {
    margin-left: -20px !important;
    margin-right: -20px !important;
  }

  .lg\:cl--my-6 {
    margin-top: -24px !important;
    margin-bottom: -24px !important;
  }

  .lg\:cl--mx-6 {
    margin-left: -24px !important;
    margin-right: -24px !important;
  }

  .lg\:cl--my-8 {
    margin-top: -32px !important;
    margin-bottom: -32px !important;
  }

  .lg\:cl--mx-8 {
    margin-left: -32px !important;
    margin-right: -32px !important;
  }

  .lg\:cl--my-10 {
    margin-top: -40px !important;
    margin-bottom: -40px !important;
  }

  .lg\:cl--mx-10 {
    margin-left: -40px !important;
    margin-right: -40px !important;
  }

  .lg\:cl--my-12 {
    margin-top: -48px !important;
    margin-bottom: -48px !important;
  }

  .lg\:cl--mx-12 {
    margin-left: -48px !important;
    margin-right: -48px !important;
  }

  .lg\:cl--my-16 {
    margin-top: -64px !important;
    margin-bottom: -64px !important;
  }

  .lg\:cl--mx-16 {
    margin-left: -64px !important;
    margin-right: -64px !important;
  }

  .lg\:cl--my-20 {
    margin-top: -80px !important;
    margin-bottom: -80px !important;
  }

  .lg\:cl--mx-20 {
    margin-left: -80px !important;
    margin-right: -80px !important;
  }

  .lg\:cl--my-24 {
    margin-top: -96px !important;
    margin-bottom: -96px !important;
  }

  .lg\:cl--mx-24 {
    margin-left: -96px !important;
    margin-right: -96px !important;
  }

  .lg\:cl--my-26 {
    margin-top: -100px !important;
    margin-bottom: -100px !important;
  }

  .lg\:cl--mx-26 {
    margin-left: -100px !important;
    margin-right: -100px !important;
  }

  .lg\:cl--my-28 {
    margin-top: -110px !important;
    margin-bottom: -110px !important;
  }

  .lg\:cl--mx-28 {
    margin-left: -110px !important;
    margin-right: -110px !important;
  }

  .lg\:cl--my-32 {
    margin-top: -128px !important;
    margin-bottom: -128px !important;
  }

  .lg\:cl--mx-32 {
    margin-left: -128px !important;
    margin-right: -128px !important;
  }

  .lg\:cl--my-40 {
    margin-top: -160px !important;
    margin-bottom: -160px !important;
  }

  .lg\:cl--mx-40 {
    margin-left: -160px !important;
    margin-right: -160px !important;
  }

  .lg\:cl--my-48 {
    margin-top: -192px !important;
    margin-bottom: -192px !important;
  }

  .lg\:cl--mx-48 {
    margin-left: -192px !important;
    margin-right: -192px !important;
  }

  .lg\:cl--my-56 {
    margin-top: -224px !important;
    margin-bottom: -224px !important;
  }

  .lg\:cl--mx-56 {
    margin-left: -224px !important;
    margin-right: -224px !important;
  }

  .lg\:cl--my-64 {
    margin-top: -256px !important;
    margin-bottom: -256px !important;
  }

  .lg\:cl--mx-64 {
    margin-left: -256px !important;
    margin-right: -256px !important;
  }

  .lg\:cl--my-px {
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .lg\:cl--mx-px {
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .lg\:cl-mt-0 {
    margin-top: 0 !important;
  }

  .lg\:cl-mr-0 {
    margin-right: 0 !important;
  }

  .lg\:cl-mb-0 {
    margin-bottom: 0 !important;
  }

  .lg\:cl-ml-0 {
    margin-left: 0 !important;
  }

  .lg\:cl-mt-1 {
    margin-top: 4px !important;
  }

  .lg\:cl-mr-1 {
    margin-right: 4px !important;
  }

  .lg\:cl-mb-1 {
    margin-bottom: 4px !important;
  }

  .lg\:cl-ml-1 {
    margin-left: 4px !important;
  }

  .lg\:cl-mt-2 {
    margin-top: 8px !important;
  }

  .lg\:cl-mr-2 {
    margin-right: 8px !important;
  }

  .lg\:cl-mb-2 {
    margin-bottom: 8px !important;
  }

  .lg\:cl-ml-2 {
    margin-left: 8px !important;
  }

  .lg\:cl-mt-3 {
    margin-top: 12px !important;
  }

  .lg\:cl-mr-3 {
    margin-right: 12px !important;
  }

  .lg\:cl-mb-3 {
    margin-bottom: 12px !important;
  }

  .lg\:cl-ml-3 {
    margin-left: 12px !important;
  }

  .lg\:cl-mt-4 {
    margin-top: 16px !important;
  }

  .lg\:cl-mr-4 {
    margin-right: 16px !important;
  }

  .lg\:cl-mb-4 {
    margin-bottom: 16px !important;
  }

  .lg\:cl-ml-4 {
    margin-left: 16px !important;
  }

  .lg\:cl-mt-5 {
    margin-top: 20px !important;
  }

  .lg\:cl-mr-5 {
    margin-right: 20px !important;
  }

  .lg\:cl-mb-5 {
    margin-bottom: 20px !important;
  }

  .lg\:cl-ml-5 {
    margin-left: 20px !important;
  }

  .lg\:cl-mt-6 {
    margin-top: 24px !important;
  }

  .lg\:cl-mr-6 {
    margin-right: 24px !important;
  }

  .lg\:cl-mb-6 {
    margin-bottom: 24px !important;
  }

  .lg\:cl-ml-6 {
    margin-left: 24px !important;
  }

  .lg\:cl-mt-8 {
    margin-top: 32px !important;
  }

  .lg\:cl-mr-8 {
    margin-right: 32px !important;
  }

  .lg\:cl-mb-8 {
    margin-bottom: 32px !important;
  }

  .lg\:cl-ml-8 {
    margin-left: 32px !important;
  }

  .lg\:cl-mt-10 {
    margin-top: 40px !important;
  }

  .lg\:cl-mr-10 {
    margin-right: 40px !important;
  }

  .lg\:cl-mb-10 {
    margin-bottom: 40px !important;
  }

  .lg\:cl-ml-10 {
    margin-left: 40px !important;
  }

  .lg\:cl-mt-12 {
    margin-top: 48px !important;
  }

  .lg\:cl-mr-12 {
    margin-right: 48px !important;
  }

  .lg\:cl-mb-12 {
    margin-bottom: 48px !important;
  }

  .lg\:cl-ml-12 {
    margin-left: 48px !important;
  }

  .lg\:cl-mt-16 {
    margin-top: 64px !important;
  }

  .lg\:cl-mr-16 {
    margin-right: 64px !important;
  }

  .lg\:cl-mb-16 {
    margin-bottom: 64px !important;
  }

  .lg\:cl-ml-16 {
    margin-left: 64px !important;
  }

  .lg\:cl-mt-20 {
    margin-top: 80px !important;
  }

  .lg\:cl-mr-20 {
    margin-right: 80px !important;
  }

  .lg\:cl-mb-20 {
    margin-bottom: 80px !important;
  }

  .lg\:cl-ml-20 {
    margin-left: 80px !important;
  }

  .lg\:cl-mt-24 {
    margin-top: 96px !important;
  }

  .lg\:cl-mr-24 {
    margin-right: 96px !important;
  }

  .lg\:cl-mb-24 {
    margin-bottom: 96px !important;
  }

  .lg\:cl-ml-24 {
    margin-left: 96px !important;
  }

  .lg\:cl-mt-26 {
    margin-top: 100px !important;
  }

  .lg\:cl-mr-26 {
    margin-right: 100px !important;
  }

  .lg\:cl-mb-26 {
    margin-bottom: 100px !important;
  }

  .lg\:cl-ml-26 {
    margin-left: 100px !important;
  }

  .lg\:cl-mt-28 {
    margin-top: 110px !important;
  }

  .lg\:cl-mr-28 {
    margin-right: 110px !important;
  }

  .lg\:cl-mb-28 {
    margin-bottom: 110px !important;
  }

  .lg\:cl-ml-28 {
    margin-left: 110px !important;
  }

  .lg\:cl-mt-32 {
    margin-top: 128px !important;
  }

  .lg\:cl-mr-32 {
    margin-right: 128px !important;
  }

  .lg\:cl-mb-32 {
    margin-bottom: 128px !important;
  }

  .lg\:cl-ml-32 {
    margin-left: 128px !important;
  }

  .lg\:cl-mt-40 {
    margin-top: 160px !important;
  }

  .lg\:cl-mr-40 {
    margin-right: 160px !important;
  }

  .lg\:cl-mb-40 {
    margin-bottom: 160px !important;
  }

  .lg\:cl-ml-40 {
    margin-left: 160px !important;
  }

  .lg\:cl-mt-48 {
    margin-top: 192px !important;
  }

  .lg\:cl-mr-48 {
    margin-right: 192px !important;
  }

  .lg\:cl-mb-48 {
    margin-bottom: 192px !important;
  }

  .lg\:cl-ml-48 {
    margin-left: 192px !important;
  }

  .lg\:cl-mt-56 {
    margin-top: 224px !important;
  }

  .lg\:cl-mr-56 {
    margin-right: 224px !important;
  }

  .lg\:cl-mb-56 {
    margin-bottom: 224px !important;
  }

  .lg\:cl-ml-56 {
    margin-left: 224px !important;
  }

  .lg\:cl-mt-64 {
    margin-top: 256px !important;
  }

  .lg\:cl-mr-64 {
    margin-right: 256px !important;
  }

  .lg\:cl-mb-64 {
    margin-bottom: 256px !important;
  }

  .lg\:cl-ml-64 {
    margin-left: 256px !important;
  }

  .lg\:cl-mt-auto {
    margin-top: auto !important;
  }

  .lg\:cl-mr-auto {
    margin-right: auto !important;
  }

  .lg\:cl-mb-auto {
    margin-bottom: auto !important;
  }

  .lg\:cl-ml-auto {
    margin-left: auto !important;
  }

  .lg\:cl-mt-px {
    margin-top: 1px !important;
  }

  .lg\:cl-mr-px {
    margin-right: 1px !important;
  }

  .lg\:cl-mb-px {
    margin-bottom: 1px !important;
  }

  .lg\:cl-ml-px {
    margin-left: 1px !important;
  }

  .lg\:cl--mt-1 {
    margin-top: -4px !important;
  }

  .lg\:cl--mr-1 {
    margin-right: -4px !important;
  }

  .lg\:cl--mb-1 {
    margin-bottom: -4px !important;
  }

  .lg\:cl--ml-1 {
    margin-left: -4px !important;
  }

  .lg\:cl--mt-2 {
    margin-top: -8px !important;
  }

  .lg\:cl--mr-2 {
    margin-right: -8px !important;
  }

  .lg\:cl--mb-2 {
    margin-bottom: -8px !important;
  }

  .lg\:cl--ml-2 {
    margin-left: -8px !important;
  }

  .lg\:cl--mt-3 {
    margin-top: -12px !important;
  }

  .lg\:cl--mr-3 {
    margin-right: -12px !important;
  }

  .lg\:cl--mb-3 {
    margin-bottom: -12px !important;
  }

  .lg\:cl--ml-3 {
    margin-left: -12px !important;
  }

  .lg\:cl--mt-4 {
    margin-top: -16px !important;
  }

  .lg\:cl--mr-4 {
    margin-right: -16px !important;
  }

  .lg\:cl--mb-4 {
    margin-bottom: -16px !important;
  }

  .lg\:cl--ml-4 {
    margin-left: -16px !important;
  }

  .lg\:cl--mt-5 {
    margin-top: -20px !important;
  }

  .lg\:cl--mr-5 {
    margin-right: -20px !important;
  }

  .lg\:cl--mb-5 {
    margin-bottom: -20px !important;
  }

  .lg\:cl--ml-5 {
    margin-left: -20px !important;
  }

  .lg\:cl--mt-6 {
    margin-top: -24px !important;
  }

  .lg\:cl--mr-6 {
    margin-right: -24px !important;
  }

  .lg\:cl--mb-6 {
    margin-bottom: -24px !important;
  }

  .lg\:cl--ml-6 {
    margin-left: -24px !important;
  }

  .lg\:cl--mt-8 {
    margin-top: -32px !important;
  }

  .lg\:cl--mr-8 {
    margin-right: -32px !important;
  }

  .lg\:cl--mb-8 {
    margin-bottom: -32px !important;
  }

  .lg\:cl--ml-8 {
    margin-left: -32px !important;
  }

  .lg\:cl--mt-10 {
    margin-top: -40px !important;
  }

  .lg\:cl--mr-10 {
    margin-right: -40px !important;
  }

  .lg\:cl--mb-10 {
    margin-bottom: -40px !important;
  }

  .lg\:cl--ml-10 {
    margin-left: -40px !important;
  }

  .lg\:cl--mt-12 {
    margin-top: -48px !important;
  }

  .lg\:cl--mr-12 {
    margin-right: -48px !important;
  }

  .lg\:cl--mb-12 {
    margin-bottom: -48px !important;
  }

  .lg\:cl--ml-12 {
    margin-left: -48px !important;
  }

  .lg\:cl--mt-16 {
    margin-top: -64px !important;
  }

  .lg\:cl--mr-16 {
    margin-right: -64px !important;
  }

  .lg\:cl--mb-16 {
    margin-bottom: -64px !important;
  }

  .lg\:cl--ml-16 {
    margin-left: -64px !important;
  }

  .lg\:cl--mt-20 {
    margin-top: -80px !important;
  }

  .lg\:cl--mr-20 {
    margin-right: -80px !important;
  }

  .lg\:cl--mb-20 {
    margin-bottom: -80px !important;
  }

  .lg\:cl--ml-20 {
    margin-left: -80px !important;
  }

  .lg\:cl--mt-24 {
    margin-top: -96px !important;
  }

  .lg\:cl--mr-24 {
    margin-right: -96px !important;
  }

  .lg\:cl--mb-24 {
    margin-bottom: -96px !important;
  }

  .lg\:cl--ml-24 {
    margin-left: -96px !important;
  }

  .lg\:cl--mt-26 {
    margin-top: -100px !important;
  }

  .lg\:cl--mr-26 {
    margin-right: -100px !important;
  }

  .lg\:cl--mb-26 {
    margin-bottom: -100px !important;
  }

  .lg\:cl--ml-26 {
    margin-left: -100px !important;
  }

  .lg\:cl--mt-28 {
    margin-top: -110px !important;
  }

  .lg\:cl--mr-28 {
    margin-right: -110px !important;
  }

  .lg\:cl--mb-28 {
    margin-bottom: -110px !important;
  }

  .lg\:cl--ml-28 {
    margin-left: -110px !important;
  }

  .lg\:cl--mt-32 {
    margin-top: -128px !important;
  }

  .lg\:cl--mr-32 {
    margin-right: -128px !important;
  }

  .lg\:cl--mb-32 {
    margin-bottom: -128px !important;
  }

  .lg\:cl--ml-32 {
    margin-left: -128px !important;
  }

  .lg\:cl--mt-40 {
    margin-top: -160px !important;
  }

  .lg\:cl--mr-40 {
    margin-right: -160px !important;
  }

  .lg\:cl--mb-40 {
    margin-bottom: -160px !important;
  }

  .lg\:cl--ml-40 {
    margin-left: -160px !important;
  }

  .lg\:cl--mt-48 {
    margin-top: -192px !important;
  }

  .lg\:cl--mr-48 {
    margin-right: -192px !important;
  }

  .lg\:cl--mb-48 {
    margin-bottom: -192px !important;
  }

  .lg\:cl--ml-48 {
    margin-left: -192px !important;
  }

  .lg\:cl--mt-56 {
    margin-top: -224px !important;
  }

  .lg\:cl--mr-56 {
    margin-right: -224px !important;
  }

  .lg\:cl--mb-56 {
    margin-bottom: -224px !important;
  }

  .lg\:cl--ml-56 {
    margin-left: -224px !important;
  }

  .lg\:cl--mt-64 {
    margin-top: -256px !important;
  }

  .lg\:cl--mr-64 {
    margin-right: -256px !important;
  }

  .lg\:cl--mb-64 {
    margin-bottom: -256px !important;
  }

  .lg\:cl--ml-64 {
    margin-left: -256px !important;
  }

  .lg\:cl--mt-px {
    margin-top: -1px !important;
  }

  .lg\:cl--mr-px {
    margin-right: -1px !important;
  }

  .lg\:cl--mb-px {
    margin-bottom: -1px !important;
  }

  .lg\:cl--ml-px {
    margin-left: -1px !important;
  }

  .lg\:active\:cl-m-0:active {
    margin: 0 !important;
  }

  .lg\:active\:cl-m-1:active {
    margin: 4px !important;
  }

  .lg\:active\:cl-m-2:active {
    margin: 8px !important;
  }

  .lg\:active\:cl-m-3:active {
    margin: 12px !important;
  }

  .lg\:active\:cl-m-4:active {
    margin: 16px !important;
  }

  .lg\:active\:cl-m-5:active {
    margin: 20px !important;
  }

  .lg\:active\:cl-m-6:active {
    margin: 24px !important;
  }

  .lg\:active\:cl-m-8:active {
    margin: 32px !important;
  }

  .lg\:active\:cl-m-10:active {
    margin: 40px !important;
  }

  .lg\:active\:cl-m-12:active {
    margin: 48px !important;
  }

  .lg\:active\:cl-m-16:active {
    margin: 64px !important;
  }

  .lg\:active\:cl-m-20:active {
    margin: 80px !important;
  }

  .lg\:active\:cl-m-24:active {
    margin: 96px !important;
  }

  .lg\:active\:cl-m-26:active {
    margin: 100px !important;
  }

  .lg\:active\:cl-m-28:active {
    margin: 110px !important;
  }

  .lg\:active\:cl-m-32:active {
    margin: 128px !important;
  }

  .lg\:active\:cl-m-40:active {
    margin: 160px !important;
  }

  .lg\:active\:cl-m-48:active {
    margin: 192px !important;
  }

  .lg\:active\:cl-m-56:active {
    margin: 224px !important;
  }

  .lg\:active\:cl-m-64:active {
    margin: 256px !important;
  }

  .lg\:active\:cl-m-auto:active {
    margin: auto !important;
  }

  .lg\:active\:cl-m-px:active {
    margin: 1px !important;
  }

  .lg\:active\:cl--m-1:active {
    margin: -4px !important;
  }

  .lg\:active\:cl--m-2:active {
    margin: -8px !important;
  }

  .lg\:active\:cl--m-3:active {
    margin: -12px !important;
  }

  .lg\:active\:cl--m-4:active {
    margin: -16px !important;
  }

  .lg\:active\:cl--m-5:active {
    margin: -20px !important;
  }

  .lg\:active\:cl--m-6:active {
    margin: -24px !important;
  }

  .lg\:active\:cl--m-8:active {
    margin: -32px !important;
  }

  .lg\:active\:cl--m-10:active {
    margin: -40px !important;
  }

  .lg\:active\:cl--m-12:active {
    margin: -48px !important;
  }

  .lg\:active\:cl--m-16:active {
    margin: -64px !important;
  }

  .lg\:active\:cl--m-20:active {
    margin: -80px !important;
  }

  .lg\:active\:cl--m-24:active {
    margin: -96px !important;
  }

  .lg\:active\:cl--m-26:active {
    margin: -100px !important;
  }

  .lg\:active\:cl--m-28:active {
    margin: -110px !important;
  }

  .lg\:active\:cl--m-32:active {
    margin: -128px !important;
  }

  .lg\:active\:cl--m-40:active {
    margin: -160px !important;
  }

  .lg\:active\:cl--m-48:active {
    margin: -192px !important;
  }

  .lg\:active\:cl--m-56:active {
    margin: -224px !important;
  }

  .lg\:active\:cl--m-64:active {
    margin: -256px !important;
  }

  .lg\:active\:cl--m-px:active {
    margin: -1px !important;
  }

  .lg\:active\:cl-my-0:active {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .lg\:active\:cl-mx-0:active {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .lg\:active\:cl-my-1:active {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  .lg\:active\:cl-mx-1:active {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }

  .lg\:active\:cl-my-2:active {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  .lg\:active\:cl-mx-2:active {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }

  .lg\:active\:cl-my-3:active {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }

  .lg\:active\:cl-mx-3:active {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }

  .lg\:active\:cl-my-4:active {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }

  .lg\:active\:cl-mx-4:active {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }

  .lg\:active\:cl-my-5:active {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .lg\:active\:cl-mx-5:active {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }

  .lg\:active\:cl-my-6:active {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }

  .lg\:active\:cl-mx-6:active {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }

  .lg\:active\:cl-my-8:active {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }

  .lg\:active\:cl-mx-8:active {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }

  .lg\:active\:cl-my-10:active {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  .lg\:active\:cl-mx-10:active {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }

  .lg\:active\:cl-my-12:active {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }

  .lg\:active\:cl-mx-12:active {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }

  .lg\:active\:cl-my-16:active {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }

  .lg\:active\:cl-mx-16:active {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }

  .lg\:active\:cl-my-20:active {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }

  .lg\:active\:cl-mx-20:active {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }

  .lg\:active\:cl-my-24:active {
    margin-top: 96px !important;
    margin-bottom: 96px !important;
  }

  .lg\:active\:cl-mx-24:active {
    margin-left: 96px !important;
    margin-right: 96px !important;
  }

  .lg\:active\:cl-my-26:active {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }

  .lg\:active\:cl-mx-26:active {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }

  .lg\:active\:cl-my-28:active {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
  }

  .lg\:active\:cl-mx-28:active {
    margin-left: 110px !important;
    margin-right: 110px !important;
  }

  .lg\:active\:cl-my-32:active {
    margin-top: 128px !important;
    margin-bottom: 128px !important;
  }

  .lg\:active\:cl-mx-32:active {
    margin-left: 128px !important;
    margin-right: 128px !important;
  }

  .lg\:active\:cl-my-40:active {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }

  .lg\:active\:cl-mx-40:active {
    margin-left: 160px !important;
    margin-right: 160px !important;
  }

  .lg\:active\:cl-my-48:active {
    margin-top: 192px !important;
    margin-bottom: 192px !important;
  }

  .lg\:active\:cl-mx-48:active {
    margin-left: 192px !important;
    margin-right: 192px !important;
  }

  .lg\:active\:cl-my-56:active {
    margin-top: 224px !important;
    margin-bottom: 224px !important;
  }

  .lg\:active\:cl-mx-56:active {
    margin-left: 224px !important;
    margin-right: 224px !important;
  }

  .lg\:active\:cl-my-64:active {
    margin-top: 256px !important;
    margin-bottom: 256px !important;
  }

  .lg\:active\:cl-mx-64:active {
    margin-left: 256px !important;
    margin-right: 256px !important;
  }

  .lg\:active\:cl-my-auto:active {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .lg\:active\:cl-mx-auto:active {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .lg\:active\:cl-my-px:active {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .lg\:active\:cl-mx-px:active {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .lg\:active\:cl--my-1:active {
    margin-top: -4px !important;
    margin-bottom: -4px !important;
  }

  .lg\:active\:cl--mx-1:active {
    margin-left: -4px !important;
    margin-right: -4px !important;
  }

  .lg\:active\:cl--my-2:active {
    margin-top: -8px !important;
    margin-bottom: -8px !important;
  }

  .lg\:active\:cl--mx-2:active {
    margin-left: -8px !important;
    margin-right: -8px !important;
  }

  .lg\:active\:cl--my-3:active {
    margin-top: -12px !important;
    margin-bottom: -12px !important;
  }

  .lg\:active\:cl--mx-3:active {
    margin-left: -12px !important;
    margin-right: -12px !important;
  }

  .lg\:active\:cl--my-4:active {
    margin-top: -16px !important;
    margin-bottom: -16px !important;
  }

  .lg\:active\:cl--mx-4:active {
    margin-left: -16px !important;
    margin-right: -16px !important;
  }

  .lg\:active\:cl--my-5:active {
    margin-top: -20px !important;
    margin-bottom: -20px !important;
  }

  .lg\:active\:cl--mx-5:active {
    margin-left: -20px !important;
    margin-right: -20px !important;
  }

  .lg\:active\:cl--my-6:active {
    margin-top: -24px !important;
    margin-bottom: -24px !important;
  }

  .lg\:active\:cl--mx-6:active {
    margin-left: -24px !important;
    margin-right: -24px !important;
  }

  .lg\:active\:cl--my-8:active {
    margin-top: -32px !important;
    margin-bottom: -32px !important;
  }

  .lg\:active\:cl--mx-8:active {
    margin-left: -32px !important;
    margin-right: -32px !important;
  }

  .lg\:active\:cl--my-10:active {
    margin-top: -40px !important;
    margin-bottom: -40px !important;
  }

  .lg\:active\:cl--mx-10:active {
    margin-left: -40px !important;
    margin-right: -40px !important;
  }

  .lg\:active\:cl--my-12:active {
    margin-top: -48px !important;
    margin-bottom: -48px !important;
  }

  .lg\:active\:cl--mx-12:active {
    margin-left: -48px !important;
    margin-right: -48px !important;
  }

  .lg\:active\:cl--my-16:active {
    margin-top: -64px !important;
    margin-bottom: -64px !important;
  }

  .lg\:active\:cl--mx-16:active {
    margin-left: -64px !important;
    margin-right: -64px !important;
  }

  .lg\:active\:cl--my-20:active {
    margin-top: -80px !important;
    margin-bottom: -80px !important;
  }

  .lg\:active\:cl--mx-20:active {
    margin-left: -80px !important;
    margin-right: -80px !important;
  }

  .lg\:active\:cl--my-24:active {
    margin-top: -96px !important;
    margin-bottom: -96px !important;
  }

  .lg\:active\:cl--mx-24:active {
    margin-left: -96px !important;
    margin-right: -96px !important;
  }

  .lg\:active\:cl--my-26:active {
    margin-top: -100px !important;
    margin-bottom: -100px !important;
  }

  .lg\:active\:cl--mx-26:active {
    margin-left: -100px !important;
    margin-right: -100px !important;
  }

  .lg\:active\:cl--my-28:active {
    margin-top: -110px !important;
    margin-bottom: -110px !important;
  }

  .lg\:active\:cl--mx-28:active {
    margin-left: -110px !important;
    margin-right: -110px !important;
  }

  .lg\:active\:cl--my-32:active {
    margin-top: -128px !important;
    margin-bottom: -128px !important;
  }

  .lg\:active\:cl--mx-32:active {
    margin-left: -128px !important;
    margin-right: -128px !important;
  }

  .lg\:active\:cl--my-40:active {
    margin-top: -160px !important;
    margin-bottom: -160px !important;
  }

  .lg\:active\:cl--mx-40:active {
    margin-left: -160px !important;
    margin-right: -160px !important;
  }

  .lg\:active\:cl--my-48:active {
    margin-top: -192px !important;
    margin-bottom: -192px !important;
  }

  .lg\:active\:cl--mx-48:active {
    margin-left: -192px !important;
    margin-right: -192px !important;
  }

  .lg\:active\:cl--my-56:active {
    margin-top: -224px !important;
    margin-bottom: -224px !important;
  }

  .lg\:active\:cl--mx-56:active {
    margin-left: -224px !important;
    margin-right: -224px !important;
  }

  .lg\:active\:cl--my-64:active {
    margin-top: -256px !important;
    margin-bottom: -256px !important;
  }

  .lg\:active\:cl--mx-64:active {
    margin-left: -256px !important;
    margin-right: -256px !important;
  }

  .lg\:active\:cl--my-px:active {
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .lg\:active\:cl--mx-px:active {
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .lg\:active\:cl-mt-0:active {
    margin-top: 0 !important;
  }

  .lg\:active\:cl-mr-0:active {
    margin-right: 0 !important;
  }

  .lg\:active\:cl-mb-0:active {
    margin-bottom: 0 !important;
  }

  .lg\:active\:cl-ml-0:active {
    margin-left: 0 !important;
  }

  .lg\:active\:cl-mt-1:active {
    margin-top: 4px !important;
  }

  .lg\:active\:cl-mr-1:active {
    margin-right: 4px !important;
  }

  .lg\:active\:cl-mb-1:active {
    margin-bottom: 4px !important;
  }

  .lg\:active\:cl-ml-1:active {
    margin-left: 4px !important;
  }

  .lg\:active\:cl-mt-2:active {
    margin-top: 8px !important;
  }

  .lg\:active\:cl-mr-2:active {
    margin-right: 8px !important;
  }

  .lg\:active\:cl-mb-2:active {
    margin-bottom: 8px !important;
  }

  .lg\:active\:cl-ml-2:active {
    margin-left: 8px !important;
  }

  .lg\:active\:cl-mt-3:active {
    margin-top: 12px !important;
  }

  .lg\:active\:cl-mr-3:active {
    margin-right: 12px !important;
  }

  .lg\:active\:cl-mb-3:active {
    margin-bottom: 12px !important;
  }

  .lg\:active\:cl-ml-3:active {
    margin-left: 12px !important;
  }

  .lg\:active\:cl-mt-4:active {
    margin-top: 16px !important;
  }

  .lg\:active\:cl-mr-4:active {
    margin-right: 16px !important;
  }

  .lg\:active\:cl-mb-4:active {
    margin-bottom: 16px !important;
  }

  .lg\:active\:cl-ml-4:active {
    margin-left: 16px !important;
  }

  .lg\:active\:cl-mt-5:active {
    margin-top: 20px !important;
  }

  .lg\:active\:cl-mr-5:active {
    margin-right: 20px !important;
  }

  .lg\:active\:cl-mb-5:active {
    margin-bottom: 20px !important;
  }

  .lg\:active\:cl-ml-5:active {
    margin-left: 20px !important;
  }

  .lg\:active\:cl-mt-6:active {
    margin-top: 24px !important;
  }

  .lg\:active\:cl-mr-6:active {
    margin-right: 24px !important;
  }

  .lg\:active\:cl-mb-6:active {
    margin-bottom: 24px !important;
  }

  .lg\:active\:cl-ml-6:active {
    margin-left: 24px !important;
  }

  .lg\:active\:cl-mt-8:active {
    margin-top: 32px !important;
  }

  .lg\:active\:cl-mr-8:active {
    margin-right: 32px !important;
  }

  .lg\:active\:cl-mb-8:active {
    margin-bottom: 32px !important;
  }

  .lg\:active\:cl-ml-8:active {
    margin-left: 32px !important;
  }

  .lg\:active\:cl-mt-10:active {
    margin-top: 40px !important;
  }

  .lg\:active\:cl-mr-10:active {
    margin-right: 40px !important;
  }

  .lg\:active\:cl-mb-10:active {
    margin-bottom: 40px !important;
  }

  .lg\:active\:cl-ml-10:active {
    margin-left: 40px !important;
  }

  .lg\:active\:cl-mt-12:active {
    margin-top: 48px !important;
  }

  .lg\:active\:cl-mr-12:active {
    margin-right: 48px !important;
  }

  .lg\:active\:cl-mb-12:active {
    margin-bottom: 48px !important;
  }

  .lg\:active\:cl-ml-12:active {
    margin-left: 48px !important;
  }

  .lg\:active\:cl-mt-16:active {
    margin-top: 64px !important;
  }

  .lg\:active\:cl-mr-16:active {
    margin-right: 64px !important;
  }

  .lg\:active\:cl-mb-16:active {
    margin-bottom: 64px !important;
  }

  .lg\:active\:cl-ml-16:active {
    margin-left: 64px !important;
  }

  .lg\:active\:cl-mt-20:active {
    margin-top: 80px !important;
  }

  .lg\:active\:cl-mr-20:active {
    margin-right: 80px !important;
  }

  .lg\:active\:cl-mb-20:active {
    margin-bottom: 80px !important;
  }

  .lg\:active\:cl-ml-20:active {
    margin-left: 80px !important;
  }

  .lg\:active\:cl-mt-24:active {
    margin-top: 96px !important;
  }

  .lg\:active\:cl-mr-24:active {
    margin-right: 96px !important;
  }

  .lg\:active\:cl-mb-24:active {
    margin-bottom: 96px !important;
  }

  .lg\:active\:cl-ml-24:active {
    margin-left: 96px !important;
  }

  .lg\:active\:cl-mt-26:active {
    margin-top: 100px !important;
  }

  .lg\:active\:cl-mr-26:active {
    margin-right: 100px !important;
  }

  .lg\:active\:cl-mb-26:active {
    margin-bottom: 100px !important;
  }

  .lg\:active\:cl-ml-26:active {
    margin-left: 100px !important;
  }

  .lg\:active\:cl-mt-28:active {
    margin-top: 110px !important;
  }

  .lg\:active\:cl-mr-28:active {
    margin-right: 110px !important;
  }

  .lg\:active\:cl-mb-28:active {
    margin-bottom: 110px !important;
  }

  .lg\:active\:cl-ml-28:active {
    margin-left: 110px !important;
  }

  .lg\:active\:cl-mt-32:active {
    margin-top: 128px !important;
  }

  .lg\:active\:cl-mr-32:active {
    margin-right: 128px !important;
  }

  .lg\:active\:cl-mb-32:active {
    margin-bottom: 128px !important;
  }

  .lg\:active\:cl-ml-32:active {
    margin-left: 128px !important;
  }

  .lg\:active\:cl-mt-40:active {
    margin-top: 160px !important;
  }

  .lg\:active\:cl-mr-40:active {
    margin-right: 160px !important;
  }

  .lg\:active\:cl-mb-40:active {
    margin-bottom: 160px !important;
  }

  .lg\:active\:cl-ml-40:active {
    margin-left: 160px !important;
  }

  .lg\:active\:cl-mt-48:active {
    margin-top: 192px !important;
  }

  .lg\:active\:cl-mr-48:active {
    margin-right: 192px !important;
  }

  .lg\:active\:cl-mb-48:active {
    margin-bottom: 192px !important;
  }

  .lg\:active\:cl-ml-48:active {
    margin-left: 192px !important;
  }

  .lg\:active\:cl-mt-56:active {
    margin-top: 224px !important;
  }

  .lg\:active\:cl-mr-56:active {
    margin-right: 224px !important;
  }

  .lg\:active\:cl-mb-56:active {
    margin-bottom: 224px !important;
  }

  .lg\:active\:cl-ml-56:active {
    margin-left: 224px !important;
  }

  .lg\:active\:cl-mt-64:active {
    margin-top: 256px !important;
  }

  .lg\:active\:cl-mr-64:active {
    margin-right: 256px !important;
  }

  .lg\:active\:cl-mb-64:active {
    margin-bottom: 256px !important;
  }

  .lg\:active\:cl-ml-64:active {
    margin-left: 256px !important;
  }

  .lg\:active\:cl-mt-auto:active {
    margin-top: auto !important;
  }

  .lg\:active\:cl-mr-auto:active {
    margin-right: auto !important;
  }

  .lg\:active\:cl-mb-auto:active {
    margin-bottom: auto !important;
  }

  .lg\:active\:cl-ml-auto:active {
    margin-left: auto !important;
  }

  .lg\:active\:cl-mt-px:active {
    margin-top: 1px !important;
  }

  .lg\:active\:cl-mr-px:active {
    margin-right: 1px !important;
  }

  .lg\:active\:cl-mb-px:active {
    margin-bottom: 1px !important;
  }

  .lg\:active\:cl-ml-px:active {
    margin-left: 1px !important;
  }

  .lg\:active\:cl--mt-1:active {
    margin-top: -4px !important;
  }

  .lg\:active\:cl--mr-1:active {
    margin-right: -4px !important;
  }

  .lg\:active\:cl--mb-1:active {
    margin-bottom: -4px !important;
  }

  .lg\:active\:cl--ml-1:active {
    margin-left: -4px !important;
  }

  .lg\:active\:cl--mt-2:active {
    margin-top: -8px !important;
  }

  .lg\:active\:cl--mr-2:active {
    margin-right: -8px !important;
  }

  .lg\:active\:cl--mb-2:active {
    margin-bottom: -8px !important;
  }

  .lg\:active\:cl--ml-2:active {
    margin-left: -8px !important;
  }

  .lg\:active\:cl--mt-3:active {
    margin-top: -12px !important;
  }

  .lg\:active\:cl--mr-3:active {
    margin-right: -12px !important;
  }

  .lg\:active\:cl--mb-3:active {
    margin-bottom: -12px !important;
  }

  .lg\:active\:cl--ml-3:active {
    margin-left: -12px !important;
  }

  .lg\:active\:cl--mt-4:active {
    margin-top: -16px !important;
  }

  .lg\:active\:cl--mr-4:active {
    margin-right: -16px !important;
  }

  .lg\:active\:cl--mb-4:active {
    margin-bottom: -16px !important;
  }

  .lg\:active\:cl--ml-4:active {
    margin-left: -16px !important;
  }

  .lg\:active\:cl--mt-5:active {
    margin-top: -20px !important;
  }

  .lg\:active\:cl--mr-5:active {
    margin-right: -20px !important;
  }

  .lg\:active\:cl--mb-5:active {
    margin-bottom: -20px !important;
  }

  .lg\:active\:cl--ml-5:active {
    margin-left: -20px !important;
  }

  .lg\:active\:cl--mt-6:active {
    margin-top: -24px !important;
  }

  .lg\:active\:cl--mr-6:active {
    margin-right: -24px !important;
  }

  .lg\:active\:cl--mb-6:active {
    margin-bottom: -24px !important;
  }

  .lg\:active\:cl--ml-6:active {
    margin-left: -24px !important;
  }

  .lg\:active\:cl--mt-8:active {
    margin-top: -32px !important;
  }

  .lg\:active\:cl--mr-8:active {
    margin-right: -32px !important;
  }

  .lg\:active\:cl--mb-8:active {
    margin-bottom: -32px !important;
  }

  .lg\:active\:cl--ml-8:active {
    margin-left: -32px !important;
  }

  .lg\:active\:cl--mt-10:active {
    margin-top: -40px !important;
  }

  .lg\:active\:cl--mr-10:active {
    margin-right: -40px !important;
  }

  .lg\:active\:cl--mb-10:active {
    margin-bottom: -40px !important;
  }

  .lg\:active\:cl--ml-10:active {
    margin-left: -40px !important;
  }

  .lg\:active\:cl--mt-12:active {
    margin-top: -48px !important;
  }

  .lg\:active\:cl--mr-12:active {
    margin-right: -48px !important;
  }

  .lg\:active\:cl--mb-12:active {
    margin-bottom: -48px !important;
  }

  .lg\:active\:cl--ml-12:active {
    margin-left: -48px !important;
  }

  .lg\:active\:cl--mt-16:active {
    margin-top: -64px !important;
  }

  .lg\:active\:cl--mr-16:active {
    margin-right: -64px !important;
  }

  .lg\:active\:cl--mb-16:active {
    margin-bottom: -64px !important;
  }

  .lg\:active\:cl--ml-16:active {
    margin-left: -64px !important;
  }

  .lg\:active\:cl--mt-20:active {
    margin-top: -80px !important;
  }

  .lg\:active\:cl--mr-20:active {
    margin-right: -80px !important;
  }

  .lg\:active\:cl--mb-20:active {
    margin-bottom: -80px !important;
  }

  .lg\:active\:cl--ml-20:active {
    margin-left: -80px !important;
  }

  .lg\:active\:cl--mt-24:active {
    margin-top: -96px !important;
  }

  .lg\:active\:cl--mr-24:active {
    margin-right: -96px !important;
  }

  .lg\:active\:cl--mb-24:active {
    margin-bottom: -96px !important;
  }

  .lg\:active\:cl--ml-24:active {
    margin-left: -96px !important;
  }

  .lg\:active\:cl--mt-26:active {
    margin-top: -100px !important;
  }

  .lg\:active\:cl--mr-26:active {
    margin-right: -100px !important;
  }

  .lg\:active\:cl--mb-26:active {
    margin-bottom: -100px !important;
  }

  .lg\:active\:cl--ml-26:active {
    margin-left: -100px !important;
  }

  .lg\:active\:cl--mt-28:active {
    margin-top: -110px !important;
  }

  .lg\:active\:cl--mr-28:active {
    margin-right: -110px !important;
  }

  .lg\:active\:cl--mb-28:active {
    margin-bottom: -110px !important;
  }

  .lg\:active\:cl--ml-28:active {
    margin-left: -110px !important;
  }

  .lg\:active\:cl--mt-32:active {
    margin-top: -128px !important;
  }

  .lg\:active\:cl--mr-32:active {
    margin-right: -128px !important;
  }

  .lg\:active\:cl--mb-32:active {
    margin-bottom: -128px !important;
  }

  .lg\:active\:cl--ml-32:active {
    margin-left: -128px !important;
  }

  .lg\:active\:cl--mt-40:active {
    margin-top: -160px !important;
  }

  .lg\:active\:cl--mr-40:active {
    margin-right: -160px !important;
  }

  .lg\:active\:cl--mb-40:active {
    margin-bottom: -160px !important;
  }

  .lg\:active\:cl--ml-40:active {
    margin-left: -160px !important;
  }

  .lg\:active\:cl--mt-48:active {
    margin-top: -192px !important;
  }

  .lg\:active\:cl--mr-48:active {
    margin-right: -192px !important;
  }

  .lg\:active\:cl--mb-48:active {
    margin-bottom: -192px !important;
  }

  .lg\:active\:cl--ml-48:active {
    margin-left: -192px !important;
  }

  .lg\:active\:cl--mt-56:active {
    margin-top: -224px !important;
  }

  .lg\:active\:cl--mr-56:active {
    margin-right: -224px !important;
  }

  .lg\:active\:cl--mb-56:active {
    margin-bottom: -224px !important;
  }

  .lg\:active\:cl--ml-56:active {
    margin-left: -224px !important;
  }

  .lg\:active\:cl--mt-64:active {
    margin-top: -256px !important;
  }

  .lg\:active\:cl--mr-64:active {
    margin-right: -256px !important;
  }

  .lg\:active\:cl--mb-64:active {
    margin-bottom: -256px !important;
  }

  .lg\:active\:cl--ml-64:active {
    margin-left: -256px !important;
  }

  .lg\:active\:cl--mt-px:active {
    margin-top: -1px !important;
  }

  .lg\:active\:cl--mr-px:active {
    margin-right: -1px !important;
  }

  .lg\:active\:cl--mb-px:active {
    margin-bottom: -1px !important;
  }

  .lg\:active\:cl--ml-px:active {
    margin-left: -1px !important;
  }

  .lg\:cl-max-h-full {
    max-height: 100% !important;
  }

  .lg\:cl-max-h-screen {
    max-height: 100vh !important;
  }

  .lg\:cl-max-w-none {
    max-width: none !important;
  }

  .lg\:cl-max-w-xs {
    max-width: 20rem !important;
  }

  .lg\:cl-max-w-sm {
    max-width: 24rem !important;
  }

  .lg\:cl-max-w-md {
    max-width: 28rem !important;
  }

  .lg\:cl-max-w-lg {
    max-width: 32rem !important;
  }

  .lg\:cl-max-w-xl {
    max-width: 36rem !important;
  }

  .lg\:cl-max-w-2xl {
    max-width: 42rem !important;
  }

  .lg\:cl-max-w-3xl {
    max-width: 48rem !important;
  }

  .lg\:cl-max-w-4xl {
    max-width: 56rem !important;
  }

  .lg\:cl-max-w-5xl {
    max-width: 64rem !important;
  }

  .lg\:cl-max-w-6xl {
    max-width: 72rem !important;
  }

  .lg\:cl-max-w-full {
    max-width: 100% !important;
  }

  .lg\:cl-max-w-screen-sm {
    max-width: 640px !important;
  }

  .lg\:cl-max-w-screen-md {
    max-width: 768px !important;
  }

  .lg\:cl-max-w-screen-lg {
    max-width: 1024px !important;
  }

  .lg\:cl-max-w-screen-xl {
    max-width: 1280px !important;
  }

  .lg\:cl-min-h-0 {
    min-height: 0 !important;
  }

  .lg\:cl-min-h-full {
    min-height: 100% !important;
  }

  .lg\:cl-min-h-screen {
    min-height: 100vh !important;
  }

  .lg\:cl-min-w-0 {
    min-width: 0 !important;
  }

  .lg\:cl-min-w-full {
    min-width: 100% !important;
  }

  .lg\:cl-object-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }

  .lg\:cl-object-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }

  .lg\:cl-object-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }

  .lg\:cl-object-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }

  .lg\:cl-object-scale-down {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }

  .lg\:cl-object-bottom {
    -o-object-position: bottom !important;
       object-position: bottom !important;
  }

  .lg\:cl-object-center {
    -o-object-position: center !important;
       object-position: center !important;
  }

  .lg\:cl-object-left {
    -o-object-position: left !important;
       object-position: left !important;
  }

  .lg\:cl-object-left-bottom {
    -o-object-position: left bottom !important;
       object-position: left bottom !important;
  }

  .lg\:cl-object-left-top {
    -o-object-position: left top !important;
       object-position: left top !important;
  }

  .lg\:cl-object-right {
    -o-object-position: right !important;
       object-position: right !important;
  }

  .lg\:cl-object-right-bottom {
    -o-object-position: right bottom !important;
       object-position: right bottom !important;
  }

  .lg\:cl-object-right-top {
    -o-object-position: right top !important;
       object-position: right top !important;
  }

  .lg\:cl-object-top {
    -o-object-position: top !important;
       object-position: top !important;
  }

  .lg\:cl-opacity-0 {
    opacity: 0 !important;
  }

  .lg\:cl-opacity-25 {
    opacity: 0.25 !important;
  }

  .lg\:cl-opacity-50 {
    opacity: 0.5 !important;
  }

  .lg\:cl-opacity-75 {
    opacity: 0.75 !important;
  }

  .lg\:cl-opacity-100 {
    opacity: 1 !important;
  }

  .lg\:hover\:cl-opacity-0:hover {
    opacity: 0 !important;
  }

  .lg\:hover\:cl-opacity-25:hover {
    opacity: 0.25 !important;
  }

  .lg\:hover\:cl-opacity-50:hover {
    opacity: 0.5 !important;
  }

  .lg\:hover\:cl-opacity-75:hover {
    opacity: 0.75 !important;
  }

  .lg\:hover\:cl-opacity-100:hover {
    opacity: 1 !important;
  }

  .lg\:focus\:cl-opacity-0:focus {
    opacity: 0 !important;
  }

  .lg\:focus\:cl-opacity-25:focus {
    opacity: 0.25 !important;
  }

  .lg\:focus\:cl-opacity-50:focus {
    opacity: 0.5 !important;
  }

  .lg\:focus\:cl-opacity-75:focus {
    opacity: 0.75 !important;
  }

  .lg\:focus\:cl-opacity-100:focus {
    opacity: 1 !important;
  }

  .lg\:cl-outline-none {
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .lg\:cl-outline-white {
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .lg\:cl-outline-black {
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .lg\:focus\:cl-outline-none:focus {
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .lg\:focus\:cl-outline-white:focus {
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .lg\:focus\:cl-outline-black:focus {
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .lg\:cl-overflow-auto {
    overflow: auto !important;
  }

  .lg\:cl-overflow-hidden {
    overflow: hidden !important;
  }

  .lg\:cl-overflow-visible {
    overflow: visible !important;
  }

  .lg\:cl-overflow-scroll {
    overflow: scroll !important;
  }

  .lg\:cl-overflow-x-auto {
    overflow-x: auto !important;
  }

  .lg\:cl-overflow-y-auto {
    overflow-y: auto !important;
  }

  .lg\:cl-overflow-x-hidden {
    overflow-x: hidden !important;
  }

  .lg\:cl-overflow-y-hidden {
    overflow-y: hidden !important;
  }

  .lg\:cl-overflow-x-visible {
    overflow-x: visible !important;
  }

  .lg\:cl-overflow-y-visible {
    overflow-y: visible !important;
  }

  .lg\:cl-overflow-x-scroll {
    overflow-x: scroll !important;
  }

  .lg\:cl-overflow-y-scroll {
    overflow-y: scroll !important;
  }

  .lg\:cl-scrolling-touch {
    -webkit-overflow-scrolling: touch !important;
  }

  .lg\:cl-scrolling-auto {
    -webkit-overflow-scrolling: auto !important;
  }

  .lg\:cl-overscroll-auto {
    overscroll-behavior: auto !important;
  }

  .lg\:cl-overscroll-contain {
    overscroll-behavior: contain !important;
  }

  .lg\:cl-overscroll-none {
    overscroll-behavior: none !important;
  }

  .lg\:cl-overscroll-y-auto {
    overscroll-behavior-y: auto !important;
  }

  .lg\:cl-overscroll-y-contain {
    overscroll-behavior-y: contain !important;
  }

  .lg\:cl-overscroll-y-none {
    overscroll-behavior-y: none !important;
  }

  .lg\:cl-overscroll-x-auto {
    overscroll-behavior-x: auto !important;
  }

  .lg\:cl-overscroll-x-contain {
    overscroll-behavior-x: contain !important;
  }

  .lg\:cl-overscroll-x-none {
    overscroll-behavior-x: none !important;
  }

  .lg\:cl-p-0 {
    padding: 0 !important;
  }

  .lg\:cl-p-1 {
    padding: 4px !important;
  }

  .lg\:cl-p-2 {
    padding: 8px !important;
  }

  .lg\:cl-p-3 {
    padding: 12px !important;
  }

  .lg\:cl-p-4 {
    padding: 16px !important;
  }

  .lg\:cl-p-5 {
    padding: 20px !important;
  }

  .lg\:cl-p-6 {
    padding: 24px !important;
  }

  .lg\:cl-p-8 {
    padding: 32px !important;
  }

  .lg\:cl-p-10 {
    padding: 40px !important;
  }

  .lg\:cl-p-12 {
    padding: 48px !important;
  }

  .lg\:cl-p-16 {
    padding: 64px !important;
  }

  .lg\:cl-p-20 {
    padding: 80px !important;
  }

  .lg\:cl-p-24 {
    padding: 96px !important;
  }

  .lg\:cl-p-26 {
    padding: 100px !important;
  }

  .lg\:cl-p-28 {
    padding: 110px !important;
  }

  .lg\:cl-p-32 {
    padding: 128px !important;
  }

  .lg\:cl-p-40 {
    padding: 160px !important;
  }

  .lg\:cl-p-48 {
    padding: 192px !important;
  }

  .lg\:cl-p-56 {
    padding: 224px !important;
  }

  .lg\:cl-p-64 {
    padding: 256px !important;
  }

  .lg\:cl-p-px {
    padding: 1px !important;
  }

  .lg\:cl-py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .lg\:cl-px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .lg\:cl-py-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  .lg\:cl-px-1 {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }

  .lg\:cl-py-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .lg\:cl-px-2 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .lg\:cl-py-3 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  .lg\:cl-px-3 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .lg\:cl-py-4 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }

  .lg\:cl-px-4 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .lg\:cl-py-5 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .lg\:cl-px-5 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .lg\:cl-py-6 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  .lg\:cl-px-6 {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .lg\:cl-py-8 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }

  .lg\:cl-px-8 {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }

  .lg\:cl-py-10 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .lg\:cl-px-10 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .lg\:cl-py-12 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  .lg\:cl-px-12 {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }

  .lg\:cl-py-16 {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  .lg\:cl-px-16 {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }

  .lg\:cl-py-20 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  .lg\:cl-px-20 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }

  .lg\:cl-py-24 {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
  }

  .lg\:cl-px-24 {
    padding-left: 96px !important;
    padding-right: 96px !important;
  }

  .lg\:cl-py-26 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }

  .lg\:cl-px-26 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }

  .lg\:cl-py-28 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
  }

  .lg\:cl-px-28 {
    padding-left: 110px !important;
    padding-right: 110px !important;
  }

  .lg\:cl-py-32 {
    padding-top: 128px !important;
    padding-bottom: 128px !important;
  }

  .lg\:cl-px-32 {
    padding-left: 128px !important;
    padding-right: 128px !important;
  }

  .lg\:cl-py-40 {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
  }

  .lg\:cl-px-40 {
    padding-left: 160px !important;
    padding-right: 160px !important;
  }

  .lg\:cl-py-48 {
    padding-top: 192px !important;
    padding-bottom: 192px !important;
  }

  .lg\:cl-px-48 {
    padding-left: 192px !important;
    padding-right: 192px !important;
  }

  .lg\:cl-py-56 {
    padding-top: 224px !important;
    padding-bottom: 224px !important;
  }

  .lg\:cl-px-56 {
    padding-left: 224px !important;
    padding-right: 224px !important;
  }

  .lg\:cl-py-64 {
    padding-top: 256px !important;
    padding-bottom: 256px !important;
  }

  .lg\:cl-px-64 {
    padding-left: 256px !important;
    padding-right: 256px !important;
  }

  .lg\:cl-py-px {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .lg\:cl-px-px {
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .lg\:cl-pt-0 {
    padding-top: 0 !important;
  }

  .lg\:cl-pr-0 {
    padding-right: 0 !important;
  }

  .lg\:cl-pb-0 {
    padding-bottom: 0 !important;
  }

  .lg\:cl-pl-0 {
    padding-left: 0 !important;
  }

  .lg\:cl-pt-1 {
    padding-top: 4px !important;
  }

  .lg\:cl-pr-1 {
    padding-right: 4px !important;
  }

  .lg\:cl-pb-1 {
    padding-bottom: 4px !important;
  }

  .lg\:cl-pl-1 {
    padding-left: 4px !important;
  }

  .lg\:cl-pt-2 {
    padding-top: 8px !important;
  }

  .lg\:cl-pr-2 {
    padding-right: 8px !important;
  }

  .lg\:cl-pb-2 {
    padding-bottom: 8px !important;
  }

  .lg\:cl-pl-2 {
    padding-left: 8px !important;
  }

  .lg\:cl-pt-3 {
    padding-top: 12px !important;
  }

  .lg\:cl-pr-3 {
    padding-right: 12px !important;
  }

  .lg\:cl-pb-3 {
    padding-bottom: 12px !important;
  }

  .lg\:cl-pl-3 {
    padding-left: 12px !important;
  }

  .lg\:cl-pt-4 {
    padding-top: 16px !important;
  }

  .lg\:cl-pr-4 {
    padding-right: 16px !important;
  }

  .lg\:cl-pb-4 {
    padding-bottom: 16px !important;
  }

  .lg\:cl-pl-4 {
    padding-left: 16px !important;
  }

  .lg\:cl-pt-5 {
    padding-top: 20px !important;
  }

  .lg\:cl-pr-5 {
    padding-right: 20px !important;
  }

  .lg\:cl-pb-5 {
    padding-bottom: 20px !important;
  }

  .lg\:cl-pl-5 {
    padding-left: 20px !important;
  }

  .lg\:cl-pt-6 {
    padding-top: 24px !important;
  }

  .lg\:cl-pr-6 {
    padding-right: 24px !important;
  }

  .lg\:cl-pb-6 {
    padding-bottom: 24px !important;
  }

  .lg\:cl-pl-6 {
    padding-left: 24px !important;
  }

  .lg\:cl-pt-8 {
    padding-top: 32px !important;
  }

  .lg\:cl-pr-8 {
    padding-right: 32px !important;
  }

  .lg\:cl-pb-8 {
    padding-bottom: 32px !important;
  }

  .lg\:cl-pl-8 {
    padding-left: 32px !important;
  }

  .lg\:cl-pt-10 {
    padding-top: 40px !important;
  }

  .lg\:cl-pr-10 {
    padding-right: 40px !important;
  }

  .lg\:cl-pb-10 {
    padding-bottom: 40px !important;
  }

  .lg\:cl-pl-10 {
    padding-left: 40px !important;
  }

  .lg\:cl-pt-12 {
    padding-top: 48px !important;
  }

  .lg\:cl-pr-12 {
    padding-right: 48px !important;
  }

  .lg\:cl-pb-12 {
    padding-bottom: 48px !important;
  }

  .lg\:cl-pl-12 {
    padding-left: 48px !important;
  }

  .lg\:cl-pt-16 {
    padding-top: 64px !important;
  }

  .lg\:cl-pr-16 {
    padding-right: 64px !important;
  }

  .lg\:cl-pb-16 {
    padding-bottom: 64px !important;
  }

  .lg\:cl-pl-16 {
    padding-left: 64px !important;
  }

  .lg\:cl-pt-20 {
    padding-top: 80px !important;
  }

  .lg\:cl-pr-20 {
    padding-right: 80px !important;
  }

  .lg\:cl-pb-20 {
    padding-bottom: 80px !important;
  }

  .lg\:cl-pl-20 {
    padding-left: 80px !important;
  }

  .lg\:cl-pt-24 {
    padding-top: 96px !important;
  }

  .lg\:cl-pr-24 {
    padding-right: 96px !important;
  }

  .lg\:cl-pb-24 {
    padding-bottom: 96px !important;
  }

  .lg\:cl-pl-24 {
    padding-left: 96px !important;
  }

  .lg\:cl-pt-26 {
    padding-top: 100px !important;
  }

  .lg\:cl-pr-26 {
    padding-right: 100px !important;
  }

  .lg\:cl-pb-26 {
    padding-bottom: 100px !important;
  }

  .lg\:cl-pl-26 {
    padding-left: 100px !important;
  }

  .lg\:cl-pt-28 {
    padding-top: 110px !important;
  }

  .lg\:cl-pr-28 {
    padding-right: 110px !important;
  }

  .lg\:cl-pb-28 {
    padding-bottom: 110px !important;
  }

  .lg\:cl-pl-28 {
    padding-left: 110px !important;
  }

  .lg\:cl-pt-32 {
    padding-top: 128px !important;
  }

  .lg\:cl-pr-32 {
    padding-right: 128px !important;
  }

  .lg\:cl-pb-32 {
    padding-bottom: 128px !important;
  }

  .lg\:cl-pl-32 {
    padding-left: 128px !important;
  }

  .lg\:cl-pt-40 {
    padding-top: 160px !important;
  }

  .lg\:cl-pr-40 {
    padding-right: 160px !important;
  }

  .lg\:cl-pb-40 {
    padding-bottom: 160px !important;
  }

  .lg\:cl-pl-40 {
    padding-left: 160px !important;
  }

  .lg\:cl-pt-48 {
    padding-top: 192px !important;
  }

  .lg\:cl-pr-48 {
    padding-right: 192px !important;
  }

  .lg\:cl-pb-48 {
    padding-bottom: 192px !important;
  }

  .lg\:cl-pl-48 {
    padding-left: 192px !important;
  }

  .lg\:cl-pt-56 {
    padding-top: 224px !important;
  }

  .lg\:cl-pr-56 {
    padding-right: 224px !important;
  }

  .lg\:cl-pb-56 {
    padding-bottom: 224px !important;
  }

  .lg\:cl-pl-56 {
    padding-left: 224px !important;
  }

  .lg\:cl-pt-64 {
    padding-top: 256px !important;
  }

  .lg\:cl-pr-64 {
    padding-right: 256px !important;
  }

  .lg\:cl-pb-64 {
    padding-bottom: 256px !important;
  }

  .lg\:cl-pl-64 {
    padding-left: 256px !important;
  }

  .lg\:cl-pt-px {
    padding-top: 1px !important;
  }

  .lg\:cl-pr-px {
    padding-right: 1px !important;
  }

  .lg\:cl-pb-px {
    padding-bottom: 1px !important;
  }

  .lg\:cl-pl-px {
    padding-left: 1px !important;
  }

  .lg\:cl-placeholder-transparent::-moz-placeholder {
    color: transparent !important;
  }

  .lg\:cl-placeholder-transparent::placeholder {
    color: transparent !important;
  }

  .lg\:cl-placeholder-current::-moz-placeholder {
    color: currentColor !important;
  }

  .lg\:cl-placeholder-current::placeholder {
    color: currentColor !important;
  }

  .lg\:cl-placeholder-black::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #000 !important;
    color: rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-black::placeholder {
    --placeholder-opacity: 1 !important;
    color: #000 !important;
    color: rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-white::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff !important;
    color: rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-white::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff !important;
    color: rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-gray-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f7fafc !important;
    color: rgba(247, 250, 252, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-gray-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f7fafc !important;
    color: rgba(247, 250, 252, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-gray-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #edf2f7 !important;
    color: rgba(237, 242, 247, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-gray-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #edf2f7 !important;
    color: rgba(237, 242, 247, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-gray-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e2e8f0 !important;
    color: rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-gray-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e2e8f0 !important;
    color: rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-gray-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #cbd5e0 !important;
    color: rgba(203, 213, 224, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-gray-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #cbd5e0 !important;
    color: rgba(203, 213, 224, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-gray-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #a0aec0 !important;
    color: rgba(160, 174, 192, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-gray-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #a0aec0 !important;
    color: rgba(160, 174, 192, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-gray-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #718096 !important;
    color: rgba(113, 128, 150, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-gray-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #718096 !important;
    color: rgba(113, 128, 150, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-gray-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #4a5568 !important;
    color: rgba(74, 85, 104, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-gray-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #4a5568 !important;
    color: rgba(74, 85, 104, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-gray-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2d3748 !important;
    color: rgba(45, 55, 72, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-gray-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2d3748 !important;
    color: rgba(45, 55, 72, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-gray-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #1a202c !important;
    color: rgba(26, 32, 44, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-gray-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #1a202c !important;
    color: rgba(26, 32, 44, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-red-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff5f5 !important;
    color: rgba(255, 245, 245, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-red-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff5f5 !important;
    color: rgba(255, 245, 245, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-red-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fed7d7 !important;
    color: rgba(254, 215, 215, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-red-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fed7d7 !important;
    color: rgba(254, 215, 215, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-red-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #feb2b2 !important;
    color: rgba(254, 178, 178, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-red-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #feb2b2 !important;
    color: rgba(254, 178, 178, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-red-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fc8181 !important;
    color: rgba(252, 129, 129, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-red-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fc8181 !important;
    color: rgba(252, 129, 129, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-red-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f56565 !important;
    color: rgba(245, 101, 101, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-red-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f56565 !important;
    color: rgba(245, 101, 101, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-red-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e53e3e !important;
    color: rgba(229, 62, 62, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-red-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e53e3e !important;
    color: rgba(229, 62, 62, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-red-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #c53030 !important;
    color: rgba(197, 48, 48, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-red-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #c53030 !important;
    color: rgba(197, 48, 48, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-red-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #9b2c2c !important;
    color: rgba(155, 44, 44, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-red-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #9b2c2c !important;
    color: rgba(155, 44, 44, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-red-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #742a2a !important;
    color: rgba(116, 42, 42, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-red-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #742a2a !important;
    color: rgba(116, 42, 42, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-orange-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fffaf0 !important;
    color: rgba(255, 250, 240, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-orange-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fffaf0 !important;
    color: rgba(255, 250, 240, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-orange-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #feebc8 !important;
    color: rgba(254, 235, 200, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-orange-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #feebc8 !important;
    color: rgba(254, 235, 200, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-orange-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fbd38d !important;
    color: rgba(251, 211, 141, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-orange-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fbd38d !important;
    color: rgba(251, 211, 141, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-orange-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f6ad55 !important;
    color: rgba(246, 173, 85, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-orange-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f6ad55 !important;
    color: rgba(246, 173, 85, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-orange-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ed8936 !important;
    color: rgba(237, 137, 54, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-orange-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ed8936 !important;
    color: rgba(237, 137, 54, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-orange-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #dd6b20 !important;
    color: rgba(221, 107, 32, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-orange-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #dd6b20 !important;
    color: rgba(221, 107, 32, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-orange-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #c05621 !important;
    color: rgba(192, 86, 33, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-orange-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #c05621 !important;
    color: rgba(192, 86, 33, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-orange-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #9c4221 !important;
    color: rgba(156, 66, 33, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-orange-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #9c4221 !important;
    color: rgba(156, 66, 33, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-orange-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #7b341e !important;
    color: rgba(123, 52, 30, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-orange-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #7b341e !important;
    color: rgba(123, 52, 30, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-yellow-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fffff0 !important;
    color: rgba(255, 255, 240, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-yellow-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fffff0 !important;
    color: rgba(255, 255, 240, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-yellow-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fefcbf !important;
    color: rgba(254, 252, 191, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-yellow-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fefcbf !important;
    color: rgba(254, 252, 191, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-yellow-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #faf089 !important;
    color: rgba(250, 240, 137, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-yellow-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #faf089 !important;
    color: rgba(250, 240, 137, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-yellow-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f6e05e !important;
    color: rgba(246, 224, 94, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-yellow-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f6e05e !important;
    color: rgba(246, 224, 94, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-yellow-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ecc94b !important;
    color: rgba(236, 201, 75, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-yellow-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ecc94b !important;
    color: rgba(236, 201, 75, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-yellow-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #d69e2e !important;
    color: rgba(214, 158, 46, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-yellow-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #d69e2e !important;
    color: rgba(214, 158, 46, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-yellow-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #b7791f !important;
    color: rgba(183, 121, 31, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-yellow-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #b7791f !important;
    color: rgba(183, 121, 31, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-yellow-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #975a16 !important;
    color: rgba(151, 90, 22, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-yellow-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #975a16 !important;
    color: rgba(151, 90, 22, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-yellow-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #744210 !important;
    color: rgba(116, 66, 16, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-yellow-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #744210 !important;
    color: rgba(116, 66, 16, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-green-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f0fff4 !important;
    color: rgba(240, 255, 244, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-green-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f0fff4 !important;
    color: rgba(240, 255, 244, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-green-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #c6f6d5 !important;
    color: rgba(198, 246, 213, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-green-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #c6f6d5 !important;
    color: rgba(198, 246, 213, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-green-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #9ae6b4 !important;
    color: rgba(154, 230, 180, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-green-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #9ae6b4 !important;
    color: rgba(154, 230, 180, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-green-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #68d391 !important;
    color: rgba(104, 211, 145, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-green-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #68d391 !important;
    color: rgba(104, 211, 145, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-green-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #48bb78 !important;
    color: rgba(72, 187, 120, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-green-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #48bb78 !important;
    color: rgba(72, 187, 120, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-green-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #38a169 !important;
    color: rgba(56, 161, 105, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-green-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #38a169 !important;
    color: rgba(56, 161, 105, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-green-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2f855a !important;
    color: rgba(47, 133, 90, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-green-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2f855a !important;
    color: rgba(47, 133, 90, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-green-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #276749 !important;
    color: rgba(39, 103, 73, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-green-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #276749 !important;
    color: rgba(39, 103, 73, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-green-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #22543d !important;
    color: rgba(34, 84, 61, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-green-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #22543d !important;
    color: rgba(34, 84, 61, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-teal-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e6fffa !important;
    color: rgba(230, 255, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-teal-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e6fffa !important;
    color: rgba(230, 255, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-teal-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #b2f5ea !important;
    color: rgba(178, 245, 234, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-teal-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #b2f5ea !important;
    color: rgba(178, 245, 234, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-teal-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #81e6d9 !important;
    color: rgba(129, 230, 217, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-teal-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #81e6d9 !important;
    color: rgba(129, 230, 217, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-teal-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #4fd1c5 !important;
    color: rgba(79, 209, 197, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-teal-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #4fd1c5 !important;
    color: rgba(79, 209, 197, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-teal-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #38b2ac !important;
    color: rgba(56, 178, 172, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-teal-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #38b2ac !important;
    color: rgba(56, 178, 172, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-teal-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #319795 !important;
    color: rgba(49, 151, 149, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-teal-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #319795 !important;
    color: rgba(49, 151, 149, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-teal-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2c7a7b !important;
    color: rgba(44, 122, 123, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-teal-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2c7a7b !important;
    color: rgba(44, 122, 123, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-teal-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #285e61 !important;
    color: rgba(40, 94, 97, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-teal-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #285e61 !important;
    color: rgba(40, 94, 97, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-teal-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #234e52 !important;
    color: rgba(35, 78, 82, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-teal-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #234e52 !important;
    color: rgba(35, 78, 82, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-blue-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ebf8ff !important;
    color: rgba(235, 248, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-blue-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ebf8ff !important;
    color: rgba(235, 248, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-blue-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #bee3f8 !important;
    color: rgba(190, 227, 248, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-blue-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #bee3f8 !important;
    color: rgba(190, 227, 248, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-blue-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #90cdf4 !important;
    color: rgba(144, 205, 244, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-blue-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #90cdf4 !important;
    color: rgba(144, 205, 244, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-blue-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #63b3ed !important;
    color: rgba(99, 179, 237, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-blue-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #63b3ed !important;
    color: rgba(99, 179, 237, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-blue-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #4299e1 !important;
    color: rgba(66, 153, 225, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-blue-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #4299e1 !important;
    color: rgba(66, 153, 225, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-blue-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #3182ce !important;
    color: rgba(49, 130, 206, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-blue-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #3182ce !important;
    color: rgba(49, 130, 206, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-blue-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2b6cb0 !important;
    color: rgba(43, 108, 176, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-blue-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2b6cb0 !important;
    color: rgba(43, 108, 176, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-blue-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2c5282 !important;
    color: rgba(44, 82, 130, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-blue-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2c5282 !important;
    color: rgba(44, 82, 130, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-blue-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2a4365 !important;
    color: rgba(42, 67, 101, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-blue-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2a4365 !important;
    color: rgba(42, 67, 101, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-indigo-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ebf4ff !important;
    color: rgba(235, 244, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-indigo-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ebf4ff !important;
    color: rgba(235, 244, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-indigo-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #c3dafe !important;
    color: rgba(195, 218, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-indigo-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #c3dafe !important;
    color: rgba(195, 218, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-indigo-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #a3bffa !important;
    color: rgba(163, 191, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-indigo-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #a3bffa !important;
    color: rgba(163, 191, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-indigo-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #7f9cf5 !important;
    color: rgba(127, 156, 245, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-indigo-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #7f9cf5 !important;
    color: rgba(127, 156, 245, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-indigo-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #667eea !important;
    color: rgba(102, 126, 234, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-indigo-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #667eea !important;
    color: rgba(102, 126, 234, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-indigo-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #5a67d8 !important;
    color: rgba(90, 103, 216, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-indigo-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #5a67d8 !important;
    color: rgba(90, 103, 216, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-indigo-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #4c51bf !important;
    color: rgba(76, 81, 191, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-indigo-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #4c51bf !important;
    color: rgba(76, 81, 191, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-indigo-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #434190 !important;
    color: rgba(67, 65, 144, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-indigo-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #434190 !important;
    color: rgba(67, 65, 144, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-indigo-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #3c366b !important;
    color: rgba(60, 54, 107, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-indigo-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #3c366b !important;
    color: rgba(60, 54, 107, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-purple-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #faf5ff !important;
    color: rgba(250, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-purple-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #faf5ff !important;
    color: rgba(250, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-purple-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e9d8fd !important;
    color: rgba(233, 216, 253, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-purple-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e9d8fd !important;
    color: rgba(233, 216, 253, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-purple-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #d6bcfa !important;
    color: rgba(214, 188, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-purple-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #d6bcfa !important;
    color: rgba(214, 188, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-purple-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #b794f4 !important;
    color: rgba(183, 148, 244, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-purple-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #b794f4 !important;
    color: rgba(183, 148, 244, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-purple-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #9f7aea !important;
    color: rgba(159, 122, 234, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-purple-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #9f7aea !important;
    color: rgba(159, 122, 234, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-purple-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #805ad5 !important;
    color: rgba(128, 90, 213, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-purple-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #805ad5 !important;
    color: rgba(128, 90, 213, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-purple-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #6b46c1 !important;
    color: rgba(107, 70, 193, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-purple-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #6b46c1 !important;
    color: rgba(107, 70, 193, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-purple-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #553c9a !important;
    color: rgba(85, 60, 154, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-purple-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #553c9a !important;
    color: rgba(85, 60, 154, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-purple-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #44337a !important;
    color: rgba(68, 51, 122, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-purple-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #44337a !important;
    color: rgba(68, 51, 122, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-pink-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff5f7 !important;
    color: rgba(255, 245, 247, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-pink-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff5f7 !important;
    color: rgba(255, 245, 247, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-pink-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fed7e2 !important;
    color: rgba(254, 215, 226, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-pink-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fed7e2 !important;
    color: rgba(254, 215, 226, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-pink-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fbb6ce !important;
    color: rgba(251, 182, 206, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-pink-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fbb6ce !important;
    color: rgba(251, 182, 206, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-pink-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f687b3 !important;
    color: rgba(246, 135, 179, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-pink-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f687b3 !important;
    color: rgba(246, 135, 179, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-pink-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ed64a6 !important;
    color: rgba(237, 100, 166, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-pink-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ed64a6 !important;
    color: rgba(237, 100, 166, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-pink-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #d53f8c !important;
    color: rgba(213, 63, 140, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-pink-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #d53f8c !important;
    color: rgba(213, 63, 140, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-pink-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #b83280 !important;
    color: rgba(184, 50, 128, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-pink-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #b83280 !important;
    color: rgba(184, 50, 128, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-pink-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #97266d !important;
    color: rgba(151, 38, 109, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-pink-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #97266d !important;
    color: rgba(151, 38, 109, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-pink-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #702459 !important;
    color: rgba(112, 36, 89, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-pink-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #702459 !important;
    color: rgba(112, 36, 89, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-ui-gray-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f1f1f1 !important;
    color: rgba(241, 241, 241, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-ui-gray-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f1f1f1 !important;
    color: rgba(241, 241, 241, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-ui-brown-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f3ecdc !important;
    color: rgba(243, 236, 220, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-ui-brown-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f3ecdc !important;
    color: rgba(243, 236, 220, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-ui-brown-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e8e0c9 !important;
    color: rgba(232, 224, 201, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-ui-brown-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e8e0c9 !important;
    color: rgba(232, 224, 201, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-ui-brown-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #d0c095 !important;
    color: rgba(208, 192, 149, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-ui-brown-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #d0c095 !important;
    color: rgba(208, 192, 149, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-ui-brown-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #bd6005 !important;
    color: rgba(189, 96, 5, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-ui-brown-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #bd6005 !important;
    color: rgba(189, 96, 5, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-ui-green-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #aac74c !important;
    color: rgba(170, 199, 76, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-ui-green-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #aac74c !important;
    color: rgba(170, 199, 76, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-ui-green-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #71893e !important;
    color: rgba(113, 137, 62, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-ui-green-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #71893e !important;
    color: rgba(113, 137, 62, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-ui-orange-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e27212 !important;
    color: rgba(226, 114, 18, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-ui-orange-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e27212 !important;
    color: rgba(226, 114, 18, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-facebook::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #3b5998 !important;
    color: rgba(59, 89, 152, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-facebook::placeholder {
    --placeholder-opacity: 1 !important;
    color: #3b5998 !important;
    color: rgba(59, 89, 152, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-twitter::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #00acee !important;
    color: rgba(0, 172, 238, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-twitter::placeholder {
    --placeholder-opacity: 1 !important;
    color: #00acee !important;
    color: rgba(0, 172, 238, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-twitch::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #6441a5 !important;
    color: rgba(100, 65, 165, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-twitch::placeholder {
    --placeholder-opacity: 1 !important;
    color: #6441a5 !important;
    color: rgba(100, 65, 165, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-youtube::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #FF0000 !important;
    color: rgba(255, 0, 0, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-youtube::placeholder {
    --placeholder-opacity: 1 !important;
    color: #FF0000 !important;
    color: rgba(255, 0, 0, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-transparent:focus::-moz-placeholder {
    color: transparent !important;
  }

  .lg\:focus\:cl-placeholder-transparent:focus::placeholder {
    color: transparent !important;
  }

  .lg\:focus\:cl-placeholder-current:focus::-moz-placeholder {
    color: currentColor !important;
  }

  .lg\:focus\:cl-placeholder-current:focus::placeholder {
    color: currentColor !important;
  }

  .lg\:focus\:cl-placeholder-black:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #000 !important;
    color: rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-black:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #000 !important;
    color: rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-white:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff !important;
    color: rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-white:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff !important;
    color: rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-gray-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f7fafc !important;
    color: rgba(247, 250, 252, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-gray-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f7fafc !important;
    color: rgba(247, 250, 252, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-gray-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #edf2f7 !important;
    color: rgba(237, 242, 247, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-gray-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #edf2f7 !important;
    color: rgba(237, 242, 247, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-gray-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e2e8f0 !important;
    color: rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-gray-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e2e8f0 !important;
    color: rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-gray-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #cbd5e0 !important;
    color: rgba(203, 213, 224, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-gray-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #cbd5e0 !important;
    color: rgba(203, 213, 224, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-gray-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #a0aec0 !important;
    color: rgba(160, 174, 192, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-gray-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #a0aec0 !important;
    color: rgba(160, 174, 192, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-gray-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #718096 !important;
    color: rgba(113, 128, 150, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-gray-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #718096 !important;
    color: rgba(113, 128, 150, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-gray-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #4a5568 !important;
    color: rgba(74, 85, 104, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-gray-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #4a5568 !important;
    color: rgba(74, 85, 104, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-gray-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2d3748 !important;
    color: rgba(45, 55, 72, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-gray-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2d3748 !important;
    color: rgba(45, 55, 72, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-gray-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #1a202c !important;
    color: rgba(26, 32, 44, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-gray-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #1a202c !important;
    color: rgba(26, 32, 44, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-red-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff5f5 !important;
    color: rgba(255, 245, 245, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-red-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff5f5 !important;
    color: rgba(255, 245, 245, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-red-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fed7d7 !important;
    color: rgba(254, 215, 215, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-red-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fed7d7 !important;
    color: rgba(254, 215, 215, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-red-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #feb2b2 !important;
    color: rgba(254, 178, 178, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-red-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #feb2b2 !important;
    color: rgba(254, 178, 178, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-red-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fc8181 !important;
    color: rgba(252, 129, 129, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-red-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fc8181 !important;
    color: rgba(252, 129, 129, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-red-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f56565 !important;
    color: rgba(245, 101, 101, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-red-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f56565 !important;
    color: rgba(245, 101, 101, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-red-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e53e3e !important;
    color: rgba(229, 62, 62, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-red-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e53e3e !important;
    color: rgba(229, 62, 62, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-red-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #c53030 !important;
    color: rgba(197, 48, 48, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-red-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #c53030 !important;
    color: rgba(197, 48, 48, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-red-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #9b2c2c !important;
    color: rgba(155, 44, 44, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-red-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #9b2c2c !important;
    color: rgba(155, 44, 44, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-red-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #742a2a !important;
    color: rgba(116, 42, 42, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-red-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #742a2a !important;
    color: rgba(116, 42, 42, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-orange-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fffaf0 !important;
    color: rgba(255, 250, 240, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-orange-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fffaf0 !important;
    color: rgba(255, 250, 240, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-orange-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #feebc8 !important;
    color: rgba(254, 235, 200, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-orange-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #feebc8 !important;
    color: rgba(254, 235, 200, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-orange-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fbd38d !important;
    color: rgba(251, 211, 141, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-orange-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fbd38d !important;
    color: rgba(251, 211, 141, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-orange-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f6ad55 !important;
    color: rgba(246, 173, 85, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-orange-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f6ad55 !important;
    color: rgba(246, 173, 85, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-orange-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ed8936 !important;
    color: rgba(237, 137, 54, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-orange-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ed8936 !important;
    color: rgba(237, 137, 54, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-orange-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #dd6b20 !important;
    color: rgba(221, 107, 32, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-orange-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #dd6b20 !important;
    color: rgba(221, 107, 32, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-orange-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #c05621 !important;
    color: rgba(192, 86, 33, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-orange-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #c05621 !important;
    color: rgba(192, 86, 33, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-orange-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #9c4221 !important;
    color: rgba(156, 66, 33, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-orange-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #9c4221 !important;
    color: rgba(156, 66, 33, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-orange-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #7b341e !important;
    color: rgba(123, 52, 30, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-orange-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #7b341e !important;
    color: rgba(123, 52, 30, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-yellow-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fffff0 !important;
    color: rgba(255, 255, 240, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-yellow-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fffff0 !important;
    color: rgba(255, 255, 240, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-yellow-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fefcbf !important;
    color: rgba(254, 252, 191, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-yellow-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fefcbf !important;
    color: rgba(254, 252, 191, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-yellow-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #faf089 !important;
    color: rgba(250, 240, 137, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-yellow-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #faf089 !important;
    color: rgba(250, 240, 137, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-yellow-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f6e05e !important;
    color: rgba(246, 224, 94, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-yellow-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f6e05e !important;
    color: rgba(246, 224, 94, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-yellow-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ecc94b !important;
    color: rgba(236, 201, 75, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-yellow-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ecc94b !important;
    color: rgba(236, 201, 75, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-yellow-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #d69e2e !important;
    color: rgba(214, 158, 46, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-yellow-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #d69e2e !important;
    color: rgba(214, 158, 46, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-yellow-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #b7791f !important;
    color: rgba(183, 121, 31, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-yellow-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #b7791f !important;
    color: rgba(183, 121, 31, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-yellow-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #975a16 !important;
    color: rgba(151, 90, 22, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-yellow-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #975a16 !important;
    color: rgba(151, 90, 22, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-yellow-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #744210 !important;
    color: rgba(116, 66, 16, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-yellow-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #744210 !important;
    color: rgba(116, 66, 16, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-green-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f0fff4 !important;
    color: rgba(240, 255, 244, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-green-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f0fff4 !important;
    color: rgba(240, 255, 244, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-green-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #c6f6d5 !important;
    color: rgba(198, 246, 213, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-green-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #c6f6d5 !important;
    color: rgba(198, 246, 213, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-green-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #9ae6b4 !important;
    color: rgba(154, 230, 180, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-green-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #9ae6b4 !important;
    color: rgba(154, 230, 180, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-green-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #68d391 !important;
    color: rgba(104, 211, 145, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-green-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #68d391 !important;
    color: rgba(104, 211, 145, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-green-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #48bb78 !important;
    color: rgba(72, 187, 120, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-green-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #48bb78 !important;
    color: rgba(72, 187, 120, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-green-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #38a169 !important;
    color: rgba(56, 161, 105, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-green-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #38a169 !important;
    color: rgba(56, 161, 105, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-green-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2f855a !important;
    color: rgba(47, 133, 90, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-green-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2f855a !important;
    color: rgba(47, 133, 90, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-green-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #276749 !important;
    color: rgba(39, 103, 73, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-green-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #276749 !important;
    color: rgba(39, 103, 73, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-green-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #22543d !important;
    color: rgba(34, 84, 61, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-green-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #22543d !important;
    color: rgba(34, 84, 61, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-teal-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e6fffa !important;
    color: rgba(230, 255, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-teal-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e6fffa !important;
    color: rgba(230, 255, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-teal-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #b2f5ea !important;
    color: rgba(178, 245, 234, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-teal-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #b2f5ea !important;
    color: rgba(178, 245, 234, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-teal-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #81e6d9 !important;
    color: rgba(129, 230, 217, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-teal-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #81e6d9 !important;
    color: rgba(129, 230, 217, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-teal-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #4fd1c5 !important;
    color: rgba(79, 209, 197, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-teal-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #4fd1c5 !important;
    color: rgba(79, 209, 197, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-teal-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #38b2ac !important;
    color: rgba(56, 178, 172, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-teal-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #38b2ac !important;
    color: rgba(56, 178, 172, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-teal-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #319795 !important;
    color: rgba(49, 151, 149, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-teal-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #319795 !important;
    color: rgba(49, 151, 149, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-teal-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2c7a7b !important;
    color: rgba(44, 122, 123, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-teal-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2c7a7b !important;
    color: rgba(44, 122, 123, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-teal-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #285e61 !important;
    color: rgba(40, 94, 97, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-teal-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #285e61 !important;
    color: rgba(40, 94, 97, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-teal-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #234e52 !important;
    color: rgba(35, 78, 82, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-teal-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #234e52 !important;
    color: rgba(35, 78, 82, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-blue-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ebf8ff !important;
    color: rgba(235, 248, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-blue-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ebf8ff !important;
    color: rgba(235, 248, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-blue-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #bee3f8 !important;
    color: rgba(190, 227, 248, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-blue-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #bee3f8 !important;
    color: rgba(190, 227, 248, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-blue-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #90cdf4 !important;
    color: rgba(144, 205, 244, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-blue-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #90cdf4 !important;
    color: rgba(144, 205, 244, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-blue-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #63b3ed !important;
    color: rgba(99, 179, 237, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-blue-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #63b3ed !important;
    color: rgba(99, 179, 237, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-blue-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #4299e1 !important;
    color: rgba(66, 153, 225, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-blue-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #4299e1 !important;
    color: rgba(66, 153, 225, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-blue-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #3182ce !important;
    color: rgba(49, 130, 206, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-blue-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #3182ce !important;
    color: rgba(49, 130, 206, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-blue-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2b6cb0 !important;
    color: rgba(43, 108, 176, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-blue-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2b6cb0 !important;
    color: rgba(43, 108, 176, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-blue-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2c5282 !important;
    color: rgba(44, 82, 130, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-blue-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2c5282 !important;
    color: rgba(44, 82, 130, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-blue-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2a4365 !important;
    color: rgba(42, 67, 101, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-blue-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2a4365 !important;
    color: rgba(42, 67, 101, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-indigo-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ebf4ff !important;
    color: rgba(235, 244, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-indigo-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ebf4ff !important;
    color: rgba(235, 244, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-indigo-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #c3dafe !important;
    color: rgba(195, 218, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-indigo-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #c3dafe !important;
    color: rgba(195, 218, 254, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-indigo-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #a3bffa !important;
    color: rgba(163, 191, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-indigo-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #a3bffa !important;
    color: rgba(163, 191, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-indigo-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #7f9cf5 !important;
    color: rgba(127, 156, 245, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-indigo-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #7f9cf5 !important;
    color: rgba(127, 156, 245, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-indigo-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #667eea !important;
    color: rgba(102, 126, 234, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-indigo-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #667eea !important;
    color: rgba(102, 126, 234, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-indigo-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #5a67d8 !important;
    color: rgba(90, 103, 216, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-indigo-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #5a67d8 !important;
    color: rgba(90, 103, 216, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-indigo-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #4c51bf !important;
    color: rgba(76, 81, 191, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-indigo-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #4c51bf !important;
    color: rgba(76, 81, 191, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-indigo-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #434190 !important;
    color: rgba(67, 65, 144, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-indigo-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #434190 !important;
    color: rgba(67, 65, 144, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-indigo-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #3c366b !important;
    color: rgba(60, 54, 107, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-indigo-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #3c366b !important;
    color: rgba(60, 54, 107, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-purple-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #faf5ff !important;
    color: rgba(250, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-purple-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #faf5ff !important;
    color: rgba(250, 245, 255, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-purple-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e9d8fd !important;
    color: rgba(233, 216, 253, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-purple-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e9d8fd !important;
    color: rgba(233, 216, 253, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-purple-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #d6bcfa !important;
    color: rgba(214, 188, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-purple-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #d6bcfa !important;
    color: rgba(214, 188, 250, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-purple-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #b794f4 !important;
    color: rgba(183, 148, 244, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-purple-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #b794f4 !important;
    color: rgba(183, 148, 244, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-purple-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #9f7aea !important;
    color: rgba(159, 122, 234, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-purple-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #9f7aea !important;
    color: rgba(159, 122, 234, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-purple-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #805ad5 !important;
    color: rgba(128, 90, 213, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-purple-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #805ad5 !important;
    color: rgba(128, 90, 213, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-purple-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #6b46c1 !important;
    color: rgba(107, 70, 193, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-purple-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #6b46c1 !important;
    color: rgba(107, 70, 193, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-purple-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #553c9a !important;
    color: rgba(85, 60, 154, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-purple-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #553c9a !important;
    color: rgba(85, 60, 154, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-purple-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #44337a !important;
    color: rgba(68, 51, 122, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-purple-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #44337a !important;
    color: rgba(68, 51, 122, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-pink-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff5f7 !important;
    color: rgba(255, 245, 247, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-pink-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff5f7 !important;
    color: rgba(255, 245, 247, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-pink-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fed7e2 !important;
    color: rgba(254, 215, 226, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-pink-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fed7e2 !important;
    color: rgba(254, 215, 226, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-pink-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fbb6ce !important;
    color: rgba(251, 182, 206, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-pink-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fbb6ce !important;
    color: rgba(251, 182, 206, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-pink-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f687b3 !important;
    color: rgba(246, 135, 179, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-pink-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f687b3 !important;
    color: rgba(246, 135, 179, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-pink-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ed64a6 !important;
    color: rgba(237, 100, 166, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-pink-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ed64a6 !important;
    color: rgba(237, 100, 166, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-pink-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #d53f8c !important;
    color: rgba(213, 63, 140, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-pink-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #d53f8c !important;
    color: rgba(213, 63, 140, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-pink-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #b83280 !important;
    color: rgba(184, 50, 128, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-pink-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #b83280 !important;
    color: rgba(184, 50, 128, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-pink-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #97266d !important;
    color: rgba(151, 38, 109, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-pink-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #97266d !important;
    color: rgba(151, 38, 109, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-pink-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #702459 !important;
    color: rgba(112, 36, 89, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-pink-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #702459 !important;
    color: rgba(112, 36, 89, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-ui-gray-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f1f1f1 !important;
    color: rgba(241, 241, 241, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-ui-gray-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f1f1f1 !important;
    color: rgba(241, 241, 241, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-ui-brown-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f3ecdc !important;
    color: rgba(243, 236, 220, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-ui-brown-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f3ecdc !important;
    color: rgba(243, 236, 220, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-ui-brown-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e8e0c9 !important;
    color: rgba(232, 224, 201, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-ui-brown-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e8e0c9 !important;
    color: rgba(232, 224, 201, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-ui-brown-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #d0c095 !important;
    color: rgba(208, 192, 149, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-ui-brown-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #d0c095 !important;
    color: rgba(208, 192, 149, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-ui-brown-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #bd6005 !important;
    color: rgba(189, 96, 5, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-ui-brown-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #bd6005 !important;
    color: rgba(189, 96, 5, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-ui-green-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #aac74c !important;
    color: rgba(170, 199, 76, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-ui-green-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #aac74c !important;
    color: rgba(170, 199, 76, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-ui-green-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #71893e !important;
    color: rgba(113, 137, 62, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-ui-green-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #71893e !important;
    color: rgba(113, 137, 62, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-ui-orange-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e27212 !important;
    color: rgba(226, 114, 18, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-ui-orange-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e27212 !important;
    color: rgba(226, 114, 18, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-facebook:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #3b5998 !important;
    color: rgba(59, 89, 152, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-facebook:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #3b5998 !important;
    color: rgba(59, 89, 152, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-twitter:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #00acee !important;
    color: rgba(0, 172, 238, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-twitter:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #00acee !important;
    color: rgba(0, 172, 238, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-twitch:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #6441a5 !important;
    color: rgba(100, 65, 165, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-twitch:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #6441a5 !important;
    color: rgba(100, 65, 165, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-youtube:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #FF0000 !important;
    color: rgba(255, 0, 0, var(--placeholder-opacity)) !important;
  }

  .lg\:focus\:cl-placeholder-youtube:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #FF0000 !important;
    color: rgba(255, 0, 0, var(--placeholder-opacity)) !important;
  }

  .lg\:cl-placeholder-opacity-0::-moz-placeholder {
    --placeholder-opacity: 0 !important;
  }

  .lg\:cl-placeholder-opacity-0::placeholder {
    --placeholder-opacity: 0 !important;
  }

  .lg\:cl-placeholder-opacity-25::-moz-placeholder {
    --placeholder-opacity: 0.25 !important;
  }

  .lg\:cl-placeholder-opacity-25::placeholder {
    --placeholder-opacity: 0.25 !important;
  }

  .lg\:cl-placeholder-opacity-50::-moz-placeholder {
    --placeholder-opacity: 0.5 !important;
  }

  .lg\:cl-placeholder-opacity-50::placeholder {
    --placeholder-opacity: 0.5 !important;
  }

  .lg\:cl-placeholder-opacity-75::-moz-placeholder {
    --placeholder-opacity: 0.75 !important;
  }

  .lg\:cl-placeholder-opacity-75::placeholder {
    --placeholder-opacity: 0.75 !important;
  }

  .lg\:cl-placeholder-opacity-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
  }

  .lg\:cl-placeholder-opacity-100::placeholder {
    --placeholder-opacity: 1 !important;
  }

  .lg\:focus\:cl-placeholder-opacity-0:focus::-moz-placeholder {
    --placeholder-opacity: 0 !important;
  }

  .lg\:focus\:cl-placeholder-opacity-0:focus::placeholder {
    --placeholder-opacity: 0 !important;
  }

  .lg\:focus\:cl-placeholder-opacity-25:focus::-moz-placeholder {
    --placeholder-opacity: 0.25 !important;
  }

  .lg\:focus\:cl-placeholder-opacity-25:focus::placeholder {
    --placeholder-opacity: 0.25 !important;
  }

  .lg\:focus\:cl-placeholder-opacity-50:focus::-moz-placeholder {
    --placeholder-opacity: 0.5 !important;
  }

  .lg\:focus\:cl-placeholder-opacity-50:focus::placeholder {
    --placeholder-opacity: 0.5 !important;
  }

  .lg\:focus\:cl-placeholder-opacity-75:focus::-moz-placeholder {
    --placeholder-opacity: 0.75 !important;
  }

  .lg\:focus\:cl-placeholder-opacity-75:focus::placeholder {
    --placeholder-opacity: 0.75 !important;
  }

  .lg\:focus\:cl-placeholder-opacity-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
  }

  .lg\:focus\:cl-placeholder-opacity-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
  }

  .lg\:cl-pointer-events-none {
    pointer-events: none !important;
  }

  .lg\:cl-pointer-events-auto {
    pointer-events: auto !important;
  }

  .lg\:cl-static {
    position: static !important;
  }

  .lg\:cl-fixed {
    position: fixed !important;
  }

  .lg\:cl-absolute {
    position: absolute !important;
  }

  .lg\:cl-relative {
    position: relative !important;
  }

  .lg\:cl-sticky {
    position: sticky !important;
  }

  .lg\:cl-inset-0 {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
  }

  .lg\:cl-inset-auto {
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }

  .lg\:cl-inset-y-0 {
    top: 0 !important;
    bottom: 0 !important;
  }

  .lg\:cl-inset-x-0 {
    right: 0 !important;
    left: 0 !important;
  }

  .lg\:cl-inset-y-auto {
    top: auto !important;
    bottom: auto !important;
  }

  .lg\:cl-inset-x-auto {
    right: auto !important;
    left: auto !important;
  }

  .lg\:cl-top-0 {
    top: 0 !important;
  }

  .lg\:cl-right-0 {
    right: 0 !important;
  }

  .lg\:cl-bottom-0 {
    bottom: 0 !important;
  }

  .lg\:cl-left-0 {
    left: 0 !important;
  }

  .lg\:cl-top-auto {
    top: auto !important;
  }

  .lg\:cl-right-auto {
    right: auto !important;
  }

  .lg\:cl-bottom-auto {
    bottom: auto !important;
  }

  .lg\:cl-left-auto {
    left: auto !important;
  }

  .lg\:cl-resize-none {
    resize: none !important;
  }

  .lg\:cl-resize-y {
    resize: vertical !important;
  }

  .lg\:cl-resize-x {
    resize: horizontal !important;
  }

  .lg\:cl-resize {
    resize: both !important;
  }

  .lg\:cl-shadow-xs {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  }

  .lg\:cl-shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .lg\:cl-shadow {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .lg\:cl-shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  }

  .lg\:cl-shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  }

  .lg\:cl-shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  }

  .lg\:cl-shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  }

  .lg\:cl-shadow-inner {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .lg\:cl-shadow-outline {
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5) !important;
  }

  .lg\:cl-shadow-none {
    box-shadow: none !important;
  }

  .lg\:cl-shadow-ui-wrapper {
    box-shadow: 2px 0 4px 1px #4b4b4b42 !important;
  }

  .lg\:cl-shadow-ui-btn-lg {
    box-shadow: 0 8px 0 0 #c9c3b0 !important;
  }

  .lg\:cl-shadow-ui-btn {
    box-shadow: 0 5px 0 0 #c9c3b0 !important;
  }

  .lg\:cl-shadow-ui-leaderboard {
    box-shadow: 0 7px 0 0 #a76d28 !important;
  }

  .lg\:cl-shadow-ui-leaderboard-normal {
    box-shadow: 0 5px 0 0 #c3c3c3 !important;
  }

  .lg\:cl-shadow-ui-divider-l {
    box-shadow: -1px 0 0 0 #b5a881 !important;
  }

  .lg\:hover\:cl-shadow-xs:hover {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  }

  .lg\:hover\:cl-shadow-sm:hover {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .lg\:hover\:cl-shadow:hover {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .lg\:hover\:cl-shadow-md:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  }

  .lg\:hover\:cl-shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  }

  .lg\:hover\:cl-shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  }

  .lg\:hover\:cl-shadow-2xl:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  }

  .lg\:hover\:cl-shadow-inner:hover {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .lg\:hover\:cl-shadow-outline:hover {
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5) !important;
  }

  .lg\:hover\:cl-shadow-none:hover {
    box-shadow: none !important;
  }

  .lg\:hover\:cl-shadow-ui-wrapper:hover {
    box-shadow: 2px 0 4px 1px #4b4b4b42 !important;
  }

  .lg\:hover\:cl-shadow-ui-btn-lg:hover {
    box-shadow: 0 8px 0 0 #c9c3b0 !important;
  }

  .lg\:hover\:cl-shadow-ui-btn:hover {
    box-shadow: 0 5px 0 0 #c9c3b0 !important;
  }

  .lg\:hover\:cl-shadow-ui-leaderboard:hover {
    box-shadow: 0 7px 0 0 #a76d28 !important;
  }

  .lg\:hover\:cl-shadow-ui-leaderboard-normal:hover {
    box-shadow: 0 5px 0 0 #c3c3c3 !important;
  }

  .lg\:hover\:cl-shadow-ui-divider-l:hover {
    box-shadow: -1px 0 0 0 #b5a881 !important;
  }

  .lg\:focus\:cl-shadow-xs:focus {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  }

  .lg\:focus\:cl-shadow-sm:focus {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .lg\:focus\:cl-shadow:focus {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .lg\:focus\:cl-shadow-md:focus {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  }

  .lg\:focus\:cl-shadow-lg:focus {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  }

  .lg\:focus\:cl-shadow-xl:focus {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  }

  .lg\:focus\:cl-shadow-2xl:focus {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  }

  .lg\:focus\:cl-shadow-inner:focus {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .lg\:focus\:cl-shadow-outline:focus {
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5) !important;
  }

  .lg\:focus\:cl-shadow-none:focus {
    box-shadow: none !important;
  }

  .lg\:focus\:cl-shadow-ui-wrapper:focus {
    box-shadow: 2px 0 4px 1px #4b4b4b42 !important;
  }

  .lg\:focus\:cl-shadow-ui-btn-lg:focus {
    box-shadow: 0 8px 0 0 #c9c3b0 !important;
  }

  .lg\:focus\:cl-shadow-ui-btn:focus {
    box-shadow: 0 5px 0 0 #c9c3b0 !important;
  }

  .lg\:focus\:cl-shadow-ui-leaderboard:focus {
    box-shadow: 0 7px 0 0 #a76d28 !important;
  }

  .lg\:focus\:cl-shadow-ui-leaderboard-normal:focus {
    box-shadow: 0 5px 0 0 #c3c3c3 !important;
  }

  .lg\:focus\:cl-shadow-ui-divider-l:focus {
    box-shadow: -1px 0 0 0 #b5a881 !important;
  }

  .lg\:active\:cl-shadow-xs:active {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  }

  .lg\:active\:cl-shadow-sm:active {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .lg\:active\:cl-shadow:active {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .lg\:active\:cl-shadow-md:active {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  }

  .lg\:active\:cl-shadow-lg:active {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  }

  .lg\:active\:cl-shadow-xl:active {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  }

  .lg\:active\:cl-shadow-2xl:active {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  }

  .lg\:active\:cl-shadow-inner:active {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .lg\:active\:cl-shadow-outline:active {
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5) !important;
  }

  .lg\:active\:cl-shadow-none:active {
    box-shadow: none !important;
  }

  .lg\:active\:cl-shadow-ui-wrapper:active {
    box-shadow: 2px 0 4px 1px #4b4b4b42 !important;
  }

  .lg\:active\:cl-shadow-ui-btn-lg:active {
    box-shadow: 0 8px 0 0 #c9c3b0 !important;
  }

  .lg\:active\:cl-shadow-ui-btn:active {
    box-shadow: 0 5px 0 0 #c9c3b0 !important;
  }

  .lg\:active\:cl-shadow-ui-leaderboard:active {
    box-shadow: 0 7px 0 0 #a76d28 !important;
  }

  .lg\:active\:cl-shadow-ui-leaderboard-normal:active {
    box-shadow: 0 5px 0 0 #c3c3c3 !important;
  }

  .lg\:active\:cl-shadow-ui-divider-l:active {
    box-shadow: -1px 0 0 0 #b5a881 !important;
  }

  .lg\:cl-fill-current {
    fill: currentColor !important;
  }

  .lg\:cl-stroke-current {
    stroke: currentColor !important;
  }

  .lg\:cl-stroke-0 {
    stroke-width: 0 !important;
  }

  .lg\:cl-stroke-1 {
    stroke-width: 1 !important;
  }

  .lg\:cl-stroke-2 {
    stroke-width: 2 !important;
  }

  .lg\:cl-table-auto {
    table-layout: auto !important;
  }

  .lg\:cl-table-fixed {
    table-layout: fixed !important;
  }

  .lg\:cl-text-left {
    text-align: left !important;
  }

  .lg\:cl-text-center {
    text-align: center !important;
  }

  .lg\:cl-text-right {
    text-align: right !important;
  }

  .lg\:cl-text-justify {
    text-align: justify !important;
  }

  .lg\:cl-text-transparent {
    color: transparent !important;
  }

  .lg\:cl-text-current {
    color: currentColor !important;
  }

  .lg\:cl-text-black {
    --text-opacity: 1 !important;
    color: #000 !important;
    color: rgba(0, 0, 0, var(--text-opacity)) !important;
  }

  .lg\:cl-text-white {
    --text-opacity: 1 !important;
    color: #fff !important;
    color: rgba(255, 255, 255, var(--text-opacity)) !important;
  }

  .lg\:cl-text-gray-100 {
    --text-opacity: 1 !important;
    color: #f7fafc !important;
    color: rgba(247, 250, 252, var(--text-opacity)) !important;
  }

  .lg\:cl-text-gray-200 {
    --text-opacity: 1 !important;
    color: #edf2f7 !important;
    color: rgba(237, 242, 247, var(--text-opacity)) !important;
  }

  .lg\:cl-text-gray-300 {
    --text-opacity: 1 !important;
    color: #e2e8f0 !important;
    color: rgba(226, 232, 240, var(--text-opacity)) !important;
  }

  .lg\:cl-text-gray-400 {
    --text-opacity: 1 !important;
    color: #cbd5e0 !important;
    color: rgba(203, 213, 224, var(--text-opacity)) !important;
  }

  .lg\:cl-text-gray-500 {
    --text-opacity: 1 !important;
    color: #a0aec0 !important;
    color: rgba(160, 174, 192, var(--text-opacity)) !important;
  }

  .lg\:cl-text-gray-600 {
    --text-opacity: 1 !important;
    color: #718096 !important;
    color: rgba(113, 128, 150, var(--text-opacity)) !important;
  }

  .lg\:cl-text-gray-700 {
    --text-opacity: 1 !important;
    color: #4a5568 !important;
    color: rgba(74, 85, 104, var(--text-opacity)) !important;
  }

  .lg\:cl-text-gray-800 {
    --text-opacity: 1 !important;
    color: #2d3748 !important;
    color: rgba(45, 55, 72, var(--text-opacity)) !important;
  }

  .lg\:cl-text-gray-900 {
    --text-opacity: 1 !important;
    color: #1a202c !important;
    color: rgba(26, 32, 44, var(--text-opacity)) !important;
  }

  .lg\:cl-text-red-100 {
    --text-opacity: 1 !important;
    color: #fff5f5 !important;
    color: rgba(255, 245, 245, var(--text-opacity)) !important;
  }

  .lg\:cl-text-red-200 {
    --text-opacity: 1 !important;
    color: #fed7d7 !important;
    color: rgba(254, 215, 215, var(--text-opacity)) !important;
  }

  .lg\:cl-text-red-300 {
    --text-opacity: 1 !important;
    color: #feb2b2 !important;
    color: rgba(254, 178, 178, var(--text-opacity)) !important;
  }

  .lg\:cl-text-red-400 {
    --text-opacity: 1 !important;
    color: #fc8181 !important;
    color: rgba(252, 129, 129, var(--text-opacity)) !important;
  }

  .lg\:cl-text-red-500 {
    --text-opacity: 1 !important;
    color: #f56565 !important;
    color: rgba(245, 101, 101, var(--text-opacity)) !important;
  }

  .lg\:cl-text-red-600 {
    --text-opacity: 1 !important;
    color: #e53e3e !important;
    color: rgba(229, 62, 62, var(--text-opacity)) !important;
  }

  .lg\:cl-text-red-700 {
    --text-opacity: 1 !important;
    color: #c53030 !important;
    color: rgba(197, 48, 48, var(--text-opacity)) !important;
  }

  .lg\:cl-text-red-800 {
    --text-opacity: 1 !important;
    color: #9b2c2c !important;
    color: rgba(155, 44, 44, var(--text-opacity)) !important;
  }

  .lg\:cl-text-red-900 {
    --text-opacity: 1 !important;
    color: #742a2a !important;
    color: rgba(116, 42, 42, var(--text-opacity)) !important;
  }

  .lg\:cl-text-orange-100 {
    --text-opacity: 1 !important;
    color: #fffaf0 !important;
    color: rgba(255, 250, 240, var(--text-opacity)) !important;
  }

  .lg\:cl-text-orange-200 {
    --text-opacity: 1 !important;
    color: #feebc8 !important;
    color: rgba(254, 235, 200, var(--text-opacity)) !important;
  }

  .lg\:cl-text-orange-300 {
    --text-opacity: 1 !important;
    color: #fbd38d !important;
    color: rgba(251, 211, 141, var(--text-opacity)) !important;
  }

  .lg\:cl-text-orange-400 {
    --text-opacity: 1 !important;
    color: #f6ad55 !important;
    color: rgba(246, 173, 85, var(--text-opacity)) !important;
  }

  .lg\:cl-text-orange-500 {
    --text-opacity: 1 !important;
    color: #ed8936 !important;
    color: rgba(237, 137, 54, var(--text-opacity)) !important;
  }

  .lg\:cl-text-orange-600 {
    --text-opacity: 1 !important;
    color: #dd6b20 !important;
    color: rgba(221, 107, 32, var(--text-opacity)) !important;
  }

  .lg\:cl-text-orange-700 {
    --text-opacity: 1 !important;
    color: #c05621 !important;
    color: rgba(192, 86, 33, var(--text-opacity)) !important;
  }

  .lg\:cl-text-orange-800 {
    --text-opacity: 1 !important;
    color: #9c4221 !important;
    color: rgba(156, 66, 33, var(--text-opacity)) !important;
  }

  .lg\:cl-text-orange-900 {
    --text-opacity: 1 !important;
    color: #7b341e !important;
    color: rgba(123, 52, 30, var(--text-opacity)) !important;
  }

  .lg\:cl-text-yellow-100 {
    --text-opacity: 1 !important;
    color: #fffff0 !important;
    color: rgba(255, 255, 240, var(--text-opacity)) !important;
  }

  .lg\:cl-text-yellow-200 {
    --text-opacity: 1 !important;
    color: #fefcbf !important;
    color: rgba(254, 252, 191, var(--text-opacity)) !important;
  }

  .lg\:cl-text-yellow-300 {
    --text-opacity: 1 !important;
    color: #faf089 !important;
    color: rgba(250, 240, 137, var(--text-opacity)) !important;
  }

  .lg\:cl-text-yellow-400 {
    --text-opacity: 1 !important;
    color: #f6e05e !important;
    color: rgba(246, 224, 94, var(--text-opacity)) !important;
  }

  .lg\:cl-text-yellow-500 {
    --text-opacity: 1 !important;
    color: #ecc94b !important;
    color: rgba(236, 201, 75, var(--text-opacity)) !important;
  }

  .lg\:cl-text-yellow-600 {
    --text-opacity: 1 !important;
    color: #d69e2e !important;
    color: rgba(214, 158, 46, var(--text-opacity)) !important;
  }

  .lg\:cl-text-yellow-700 {
    --text-opacity: 1 !important;
    color: #b7791f !important;
    color: rgba(183, 121, 31, var(--text-opacity)) !important;
  }

  .lg\:cl-text-yellow-800 {
    --text-opacity: 1 !important;
    color: #975a16 !important;
    color: rgba(151, 90, 22, var(--text-opacity)) !important;
  }

  .lg\:cl-text-yellow-900 {
    --text-opacity: 1 !important;
    color: #744210 !important;
    color: rgba(116, 66, 16, var(--text-opacity)) !important;
  }

  .lg\:cl-text-green-100 {
    --text-opacity: 1 !important;
    color: #f0fff4 !important;
    color: rgba(240, 255, 244, var(--text-opacity)) !important;
  }

  .lg\:cl-text-green-200 {
    --text-opacity: 1 !important;
    color: #c6f6d5 !important;
    color: rgba(198, 246, 213, var(--text-opacity)) !important;
  }

  .lg\:cl-text-green-300 {
    --text-opacity: 1 !important;
    color: #9ae6b4 !important;
    color: rgba(154, 230, 180, var(--text-opacity)) !important;
  }

  .lg\:cl-text-green-400 {
    --text-opacity: 1 !important;
    color: #68d391 !important;
    color: rgba(104, 211, 145, var(--text-opacity)) !important;
  }

  .lg\:cl-text-green-500 {
    --text-opacity: 1 !important;
    color: #48bb78 !important;
    color: rgba(72, 187, 120, var(--text-opacity)) !important;
  }

  .lg\:cl-text-green-600 {
    --text-opacity: 1 !important;
    color: #38a169 !important;
    color: rgba(56, 161, 105, var(--text-opacity)) !important;
  }

  .lg\:cl-text-green-700 {
    --text-opacity: 1 !important;
    color: #2f855a !important;
    color: rgba(47, 133, 90, var(--text-opacity)) !important;
  }

  .lg\:cl-text-green-800 {
    --text-opacity: 1 !important;
    color: #276749 !important;
    color: rgba(39, 103, 73, var(--text-opacity)) !important;
  }

  .lg\:cl-text-green-900 {
    --text-opacity: 1 !important;
    color: #22543d !important;
    color: rgba(34, 84, 61, var(--text-opacity)) !important;
  }

  .lg\:cl-text-teal-100 {
    --text-opacity: 1 !important;
    color: #e6fffa !important;
    color: rgba(230, 255, 250, var(--text-opacity)) !important;
  }

  .lg\:cl-text-teal-200 {
    --text-opacity: 1 !important;
    color: #b2f5ea !important;
    color: rgba(178, 245, 234, var(--text-opacity)) !important;
  }

  .lg\:cl-text-teal-300 {
    --text-opacity: 1 !important;
    color: #81e6d9 !important;
    color: rgba(129, 230, 217, var(--text-opacity)) !important;
  }

  .lg\:cl-text-teal-400 {
    --text-opacity: 1 !important;
    color: #4fd1c5 !important;
    color: rgba(79, 209, 197, var(--text-opacity)) !important;
  }

  .lg\:cl-text-teal-500 {
    --text-opacity: 1 !important;
    color: #38b2ac !important;
    color: rgba(56, 178, 172, var(--text-opacity)) !important;
  }

  .lg\:cl-text-teal-600 {
    --text-opacity: 1 !important;
    color: #319795 !important;
    color: rgba(49, 151, 149, var(--text-opacity)) !important;
  }

  .lg\:cl-text-teal-700 {
    --text-opacity: 1 !important;
    color: #2c7a7b !important;
    color: rgba(44, 122, 123, var(--text-opacity)) !important;
  }

  .lg\:cl-text-teal-800 {
    --text-opacity: 1 !important;
    color: #285e61 !important;
    color: rgba(40, 94, 97, var(--text-opacity)) !important;
  }

  .lg\:cl-text-teal-900 {
    --text-opacity: 1 !important;
    color: #234e52 !important;
    color: rgba(35, 78, 82, var(--text-opacity)) !important;
  }

  .lg\:cl-text-blue-100 {
    --text-opacity: 1 !important;
    color: #ebf8ff !important;
    color: rgba(235, 248, 255, var(--text-opacity)) !important;
  }

  .lg\:cl-text-blue-200 {
    --text-opacity: 1 !important;
    color: #bee3f8 !important;
    color: rgba(190, 227, 248, var(--text-opacity)) !important;
  }

  .lg\:cl-text-blue-300 {
    --text-opacity: 1 !important;
    color: #90cdf4 !important;
    color: rgba(144, 205, 244, var(--text-opacity)) !important;
  }

  .lg\:cl-text-blue-400 {
    --text-opacity: 1 !important;
    color: #63b3ed !important;
    color: rgba(99, 179, 237, var(--text-opacity)) !important;
  }

  .lg\:cl-text-blue-500 {
    --text-opacity: 1 !important;
    color: #4299e1 !important;
    color: rgba(66, 153, 225, var(--text-opacity)) !important;
  }

  .lg\:cl-text-blue-600 {
    --text-opacity: 1 !important;
    color: #3182ce !important;
    color: rgba(49, 130, 206, var(--text-opacity)) !important;
  }

  .lg\:cl-text-blue-700 {
    --text-opacity: 1 !important;
    color: #2b6cb0 !important;
    color: rgba(43, 108, 176, var(--text-opacity)) !important;
  }

  .lg\:cl-text-blue-800 {
    --text-opacity: 1 !important;
    color: #2c5282 !important;
    color: rgba(44, 82, 130, var(--text-opacity)) !important;
  }

  .lg\:cl-text-blue-900 {
    --text-opacity: 1 !important;
    color: #2a4365 !important;
    color: rgba(42, 67, 101, var(--text-opacity)) !important;
  }

  .lg\:cl-text-indigo-100 {
    --text-opacity: 1 !important;
    color: #ebf4ff !important;
    color: rgba(235, 244, 255, var(--text-opacity)) !important;
  }

  .lg\:cl-text-indigo-200 {
    --text-opacity: 1 !important;
    color: #c3dafe !important;
    color: rgba(195, 218, 254, var(--text-opacity)) !important;
  }

  .lg\:cl-text-indigo-300 {
    --text-opacity: 1 !important;
    color: #a3bffa !important;
    color: rgba(163, 191, 250, var(--text-opacity)) !important;
  }

  .lg\:cl-text-indigo-400 {
    --text-opacity: 1 !important;
    color: #7f9cf5 !important;
    color: rgba(127, 156, 245, var(--text-opacity)) !important;
  }

  .lg\:cl-text-indigo-500 {
    --text-opacity: 1 !important;
    color: #667eea !important;
    color: rgba(102, 126, 234, var(--text-opacity)) !important;
  }

  .lg\:cl-text-indigo-600 {
    --text-opacity: 1 !important;
    color: #5a67d8 !important;
    color: rgba(90, 103, 216, var(--text-opacity)) !important;
  }

  .lg\:cl-text-indigo-700 {
    --text-opacity: 1 !important;
    color: #4c51bf !important;
    color: rgba(76, 81, 191, var(--text-opacity)) !important;
  }

  .lg\:cl-text-indigo-800 {
    --text-opacity: 1 !important;
    color: #434190 !important;
    color: rgba(67, 65, 144, var(--text-opacity)) !important;
  }

  .lg\:cl-text-indigo-900 {
    --text-opacity: 1 !important;
    color: #3c366b !important;
    color: rgba(60, 54, 107, var(--text-opacity)) !important;
  }

  .lg\:cl-text-purple-100 {
    --text-opacity: 1 !important;
    color: #faf5ff !important;
    color: rgba(250, 245, 255, var(--text-opacity)) !important;
  }

  .lg\:cl-text-purple-200 {
    --text-opacity: 1 !important;
    color: #e9d8fd !important;
    color: rgba(233, 216, 253, var(--text-opacity)) !important;
  }

  .lg\:cl-text-purple-300 {
    --text-opacity: 1 !important;
    color: #d6bcfa !important;
    color: rgba(214, 188, 250, var(--text-opacity)) !important;
  }

  .lg\:cl-text-purple-400 {
    --text-opacity: 1 !important;
    color: #b794f4 !important;
    color: rgba(183, 148, 244, var(--text-opacity)) !important;
  }

  .lg\:cl-text-purple-500 {
    --text-opacity: 1 !important;
    color: #9f7aea !important;
    color: rgba(159, 122, 234, var(--text-opacity)) !important;
  }

  .lg\:cl-text-purple-600 {
    --text-opacity: 1 !important;
    color: #805ad5 !important;
    color: rgba(128, 90, 213, var(--text-opacity)) !important;
  }

  .lg\:cl-text-purple-700 {
    --text-opacity: 1 !important;
    color: #6b46c1 !important;
    color: rgba(107, 70, 193, var(--text-opacity)) !important;
  }

  .lg\:cl-text-purple-800 {
    --text-opacity: 1 !important;
    color: #553c9a !important;
    color: rgba(85, 60, 154, var(--text-opacity)) !important;
  }

  .lg\:cl-text-purple-900 {
    --text-opacity: 1 !important;
    color: #44337a !important;
    color: rgba(68, 51, 122, var(--text-opacity)) !important;
  }

  .lg\:cl-text-pink-100 {
    --text-opacity: 1 !important;
    color: #fff5f7 !important;
    color: rgba(255, 245, 247, var(--text-opacity)) !important;
  }

  .lg\:cl-text-pink-200 {
    --text-opacity: 1 !important;
    color: #fed7e2 !important;
    color: rgba(254, 215, 226, var(--text-opacity)) !important;
  }

  .lg\:cl-text-pink-300 {
    --text-opacity: 1 !important;
    color: #fbb6ce !important;
    color: rgba(251, 182, 206, var(--text-opacity)) !important;
  }

  .lg\:cl-text-pink-400 {
    --text-opacity: 1 !important;
    color: #f687b3 !important;
    color: rgba(246, 135, 179, var(--text-opacity)) !important;
  }

  .lg\:cl-text-pink-500 {
    --text-opacity: 1 !important;
    color: #ed64a6 !important;
    color: rgba(237, 100, 166, var(--text-opacity)) !important;
  }

  .lg\:cl-text-pink-600 {
    --text-opacity: 1 !important;
    color: #d53f8c !important;
    color: rgba(213, 63, 140, var(--text-opacity)) !important;
  }

  .lg\:cl-text-pink-700 {
    --text-opacity: 1 !important;
    color: #b83280 !important;
    color: rgba(184, 50, 128, var(--text-opacity)) !important;
  }

  .lg\:cl-text-pink-800 {
    --text-opacity: 1 !important;
    color: #97266d !important;
    color: rgba(151, 38, 109, var(--text-opacity)) !important;
  }

  .lg\:cl-text-pink-900 {
    --text-opacity: 1 !important;
    color: #702459 !important;
    color: rgba(112, 36, 89, var(--text-opacity)) !important;
  }

  .lg\:cl-text-ui-gray-100 {
    --text-opacity: 1 !important;
    color: #f1f1f1 !important;
    color: rgba(241, 241, 241, var(--text-opacity)) !important;
  }

  .lg\:cl-text-ui-brown-100 {
    --text-opacity: 1 !important;
    color: #f3ecdc !important;
    color: rgba(243, 236, 220, var(--text-opacity)) !important;
  }

  .lg\:cl-text-ui-brown-200 {
    --text-opacity: 1 !important;
    color: #e8e0c9 !important;
    color: rgba(232, 224, 201, var(--text-opacity)) !important;
  }

  .lg\:cl-text-ui-brown-300 {
    --text-opacity: 1 !important;
    color: #d0c095 !important;
    color: rgba(208, 192, 149, var(--text-opacity)) !important;
  }

  .lg\:cl-text-ui-brown-700 {
    --text-opacity: 1 !important;
    color: #bd6005 !important;
    color: rgba(189, 96, 5, var(--text-opacity)) !important;
  }

  .lg\:cl-text-ui-green-300 {
    --text-opacity: 1 !important;
    color: #aac74c !important;
    color: rgba(170, 199, 76, var(--text-opacity)) !important;
  }

  .lg\:cl-text-ui-green-400 {
    --text-opacity: 1 !important;
    color: #71893e !important;
    color: rgba(113, 137, 62, var(--text-opacity)) !important;
  }

  .lg\:cl-text-ui-orange-500 {
    --text-opacity: 1 !important;
    color: #e27212 !important;
    color: rgba(226, 114, 18, var(--text-opacity)) !important;
  }

  .lg\:cl-text-facebook {
    --text-opacity: 1 !important;
    color: #3b5998 !important;
    color: rgba(59, 89, 152, var(--text-opacity)) !important;
  }

  .lg\:cl-text-twitter {
    --text-opacity: 1 !important;
    color: #00acee !important;
    color: rgba(0, 172, 238, var(--text-opacity)) !important;
  }

  .lg\:cl-text-twitch {
    --text-opacity: 1 !important;
    color: #6441a5 !important;
    color: rgba(100, 65, 165, var(--text-opacity)) !important;
  }

  .lg\:cl-text-youtube {
    --text-opacity: 1 !important;
    color: #FF0000 !important;
    color: rgba(255, 0, 0, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-transparent:hover {
    color: transparent !important;
  }

  .lg\:hover\:cl-text-current:hover {
    color: currentColor !important;
  }

  .lg\:hover\:cl-text-black:hover {
    --text-opacity: 1 !important;
    color: #000 !important;
    color: rgba(0, 0, 0, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-white:hover {
    --text-opacity: 1 !important;
    color: #fff !important;
    color: rgba(255, 255, 255, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-gray-100:hover {
    --text-opacity: 1 !important;
    color: #f7fafc !important;
    color: rgba(247, 250, 252, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-gray-200:hover {
    --text-opacity: 1 !important;
    color: #edf2f7 !important;
    color: rgba(237, 242, 247, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-gray-300:hover {
    --text-opacity: 1 !important;
    color: #e2e8f0 !important;
    color: rgba(226, 232, 240, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-gray-400:hover {
    --text-opacity: 1 !important;
    color: #cbd5e0 !important;
    color: rgba(203, 213, 224, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-gray-500:hover {
    --text-opacity: 1 !important;
    color: #a0aec0 !important;
    color: rgba(160, 174, 192, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-gray-600:hover {
    --text-opacity: 1 !important;
    color: #718096 !important;
    color: rgba(113, 128, 150, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-gray-700:hover {
    --text-opacity: 1 !important;
    color: #4a5568 !important;
    color: rgba(74, 85, 104, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-gray-800:hover {
    --text-opacity: 1 !important;
    color: #2d3748 !important;
    color: rgba(45, 55, 72, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-gray-900:hover {
    --text-opacity: 1 !important;
    color: #1a202c !important;
    color: rgba(26, 32, 44, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-red-100:hover {
    --text-opacity: 1 !important;
    color: #fff5f5 !important;
    color: rgba(255, 245, 245, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-red-200:hover {
    --text-opacity: 1 !important;
    color: #fed7d7 !important;
    color: rgba(254, 215, 215, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-red-300:hover {
    --text-opacity: 1 !important;
    color: #feb2b2 !important;
    color: rgba(254, 178, 178, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-red-400:hover {
    --text-opacity: 1 !important;
    color: #fc8181 !important;
    color: rgba(252, 129, 129, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-red-500:hover {
    --text-opacity: 1 !important;
    color: #f56565 !important;
    color: rgba(245, 101, 101, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-red-600:hover {
    --text-opacity: 1 !important;
    color: #e53e3e !important;
    color: rgba(229, 62, 62, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-red-700:hover {
    --text-opacity: 1 !important;
    color: #c53030 !important;
    color: rgba(197, 48, 48, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-red-800:hover {
    --text-opacity: 1 !important;
    color: #9b2c2c !important;
    color: rgba(155, 44, 44, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-red-900:hover {
    --text-opacity: 1 !important;
    color: #742a2a !important;
    color: rgba(116, 42, 42, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-orange-100:hover {
    --text-opacity: 1 !important;
    color: #fffaf0 !important;
    color: rgba(255, 250, 240, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-orange-200:hover {
    --text-opacity: 1 !important;
    color: #feebc8 !important;
    color: rgba(254, 235, 200, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-orange-300:hover {
    --text-opacity: 1 !important;
    color: #fbd38d !important;
    color: rgba(251, 211, 141, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-orange-400:hover {
    --text-opacity: 1 !important;
    color: #f6ad55 !important;
    color: rgba(246, 173, 85, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-orange-500:hover {
    --text-opacity: 1 !important;
    color: #ed8936 !important;
    color: rgba(237, 137, 54, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-orange-600:hover {
    --text-opacity: 1 !important;
    color: #dd6b20 !important;
    color: rgba(221, 107, 32, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-orange-700:hover {
    --text-opacity: 1 !important;
    color: #c05621 !important;
    color: rgba(192, 86, 33, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-orange-800:hover {
    --text-opacity: 1 !important;
    color: #9c4221 !important;
    color: rgba(156, 66, 33, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-orange-900:hover {
    --text-opacity: 1 !important;
    color: #7b341e !important;
    color: rgba(123, 52, 30, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-yellow-100:hover {
    --text-opacity: 1 !important;
    color: #fffff0 !important;
    color: rgba(255, 255, 240, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-yellow-200:hover {
    --text-opacity: 1 !important;
    color: #fefcbf !important;
    color: rgba(254, 252, 191, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-yellow-300:hover {
    --text-opacity: 1 !important;
    color: #faf089 !important;
    color: rgba(250, 240, 137, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-yellow-400:hover {
    --text-opacity: 1 !important;
    color: #f6e05e !important;
    color: rgba(246, 224, 94, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-yellow-500:hover {
    --text-opacity: 1 !important;
    color: #ecc94b !important;
    color: rgba(236, 201, 75, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-yellow-600:hover {
    --text-opacity: 1 !important;
    color: #d69e2e !important;
    color: rgba(214, 158, 46, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-yellow-700:hover {
    --text-opacity: 1 !important;
    color: #b7791f !important;
    color: rgba(183, 121, 31, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-yellow-800:hover {
    --text-opacity: 1 !important;
    color: #975a16 !important;
    color: rgba(151, 90, 22, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-yellow-900:hover {
    --text-opacity: 1 !important;
    color: #744210 !important;
    color: rgba(116, 66, 16, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-green-100:hover {
    --text-opacity: 1 !important;
    color: #f0fff4 !important;
    color: rgba(240, 255, 244, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-green-200:hover {
    --text-opacity: 1 !important;
    color: #c6f6d5 !important;
    color: rgba(198, 246, 213, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-green-300:hover {
    --text-opacity: 1 !important;
    color: #9ae6b4 !important;
    color: rgba(154, 230, 180, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-green-400:hover {
    --text-opacity: 1 !important;
    color: #68d391 !important;
    color: rgba(104, 211, 145, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-green-500:hover {
    --text-opacity: 1 !important;
    color: #48bb78 !important;
    color: rgba(72, 187, 120, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-green-600:hover {
    --text-opacity: 1 !important;
    color: #38a169 !important;
    color: rgba(56, 161, 105, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-green-700:hover {
    --text-opacity: 1 !important;
    color: #2f855a !important;
    color: rgba(47, 133, 90, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-green-800:hover {
    --text-opacity: 1 !important;
    color: #276749 !important;
    color: rgba(39, 103, 73, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-green-900:hover {
    --text-opacity: 1 !important;
    color: #22543d !important;
    color: rgba(34, 84, 61, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-teal-100:hover {
    --text-opacity: 1 !important;
    color: #e6fffa !important;
    color: rgba(230, 255, 250, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-teal-200:hover {
    --text-opacity: 1 !important;
    color: #b2f5ea !important;
    color: rgba(178, 245, 234, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-teal-300:hover {
    --text-opacity: 1 !important;
    color: #81e6d9 !important;
    color: rgba(129, 230, 217, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-teal-400:hover {
    --text-opacity: 1 !important;
    color: #4fd1c5 !important;
    color: rgba(79, 209, 197, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-teal-500:hover {
    --text-opacity: 1 !important;
    color: #38b2ac !important;
    color: rgba(56, 178, 172, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-teal-600:hover {
    --text-opacity: 1 !important;
    color: #319795 !important;
    color: rgba(49, 151, 149, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-teal-700:hover {
    --text-opacity: 1 !important;
    color: #2c7a7b !important;
    color: rgba(44, 122, 123, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-teal-800:hover {
    --text-opacity: 1 !important;
    color: #285e61 !important;
    color: rgba(40, 94, 97, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-teal-900:hover {
    --text-opacity: 1 !important;
    color: #234e52 !important;
    color: rgba(35, 78, 82, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-blue-100:hover {
    --text-opacity: 1 !important;
    color: #ebf8ff !important;
    color: rgba(235, 248, 255, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-blue-200:hover {
    --text-opacity: 1 !important;
    color: #bee3f8 !important;
    color: rgba(190, 227, 248, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-blue-300:hover {
    --text-opacity: 1 !important;
    color: #90cdf4 !important;
    color: rgba(144, 205, 244, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-blue-400:hover {
    --text-opacity: 1 !important;
    color: #63b3ed !important;
    color: rgba(99, 179, 237, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-blue-500:hover {
    --text-opacity: 1 !important;
    color: #4299e1 !important;
    color: rgba(66, 153, 225, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-blue-600:hover {
    --text-opacity: 1 !important;
    color: #3182ce !important;
    color: rgba(49, 130, 206, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-blue-700:hover {
    --text-opacity: 1 !important;
    color: #2b6cb0 !important;
    color: rgba(43, 108, 176, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-blue-800:hover {
    --text-opacity: 1 !important;
    color: #2c5282 !important;
    color: rgba(44, 82, 130, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-blue-900:hover {
    --text-opacity: 1 !important;
    color: #2a4365 !important;
    color: rgba(42, 67, 101, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-indigo-100:hover {
    --text-opacity: 1 !important;
    color: #ebf4ff !important;
    color: rgba(235, 244, 255, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-indigo-200:hover {
    --text-opacity: 1 !important;
    color: #c3dafe !important;
    color: rgba(195, 218, 254, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-indigo-300:hover {
    --text-opacity: 1 !important;
    color: #a3bffa !important;
    color: rgba(163, 191, 250, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-indigo-400:hover {
    --text-opacity: 1 !important;
    color: #7f9cf5 !important;
    color: rgba(127, 156, 245, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-indigo-500:hover {
    --text-opacity: 1 !important;
    color: #667eea !important;
    color: rgba(102, 126, 234, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-indigo-600:hover {
    --text-opacity: 1 !important;
    color: #5a67d8 !important;
    color: rgba(90, 103, 216, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-indigo-700:hover {
    --text-opacity: 1 !important;
    color: #4c51bf !important;
    color: rgba(76, 81, 191, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-indigo-800:hover {
    --text-opacity: 1 !important;
    color: #434190 !important;
    color: rgba(67, 65, 144, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-indigo-900:hover {
    --text-opacity: 1 !important;
    color: #3c366b !important;
    color: rgba(60, 54, 107, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-purple-100:hover {
    --text-opacity: 1 !important;
    color: #faf5ff !important;
    color: rgba(250, 245, 255, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-purple-200:hover {
    --text-opacity: 1 !important;
    color: #e9d8fd !important;
    color: rgba(233, 216, 253, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-purple-300:hover {
    --text-opacity: 1 !important;
    color: #d6bcfa !important;
    color: rgba(214, 188, 250, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-purple-400:hover {
    --text-opacity: 1 !important;
    color: #b794f4 !important;
    color: rgba(183, 148, 244, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-purple-500:hover {
    --text-opacity: 1 !important;
    color: #9f7aea !important;
    color: rgba(159, 122, 234, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-purple-600:hover {
    --text-opacity: 1 !important;
    color: #805ad5 !important;
    color: rgba(128, 90, 213, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-purple-700:hover {
    --text-opacity: 1 !important;
    color: #6b46c1 !important;
    color: rgba(107, 70, 193, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-purple-800:hover {
    --text-opacity: 1 !important;
    color: #553c9a !important;
    color: rgba(85, 60, 154, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-purple-900:hover {
    --text-opacity: 1 !important;
    color: #44337a !important;
    color: rgba(68, 51, 122, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-pink-100:hover {
    --text-opacity: 1 !important;
    color: #fff5f7 !important;
    color: rgba(255, 245, 247, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-pink-200:hover {
    --text-opacity: 1 !important;
    color: #fed7e2 !important;
    color: rgba(254, 215, 226, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-pink-300:hover {
    --text-opacity: 1 !important;
    color: #fbb6ce !important;
    color: rgba(251, 182, 206, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-pink-400:hover {
    --text-opacity: 1 !important;
    color: #f687b3 !important;
    color: rgba(246, 135, 179, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-pink-500:hover {
    --text-opacity: 1 !important;
    color: #ed64a6 !important;
    color: rgba(237, 100, 166, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-pink-600:hover {
    --text-opacity: 1 !important;
    color: #d53f8c !important;
    color: rgba(213, 63, 140, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-pink-700:hover {
    --text-opacity: 1 !important;
    color: #b83280 !important;
    color: rgba(184, 50, 128, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-pink-800:hover {
    --text-opacity: 1 !important;
    color: #97266d !important;
    color: rgba(151, 38, 109, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-pink-900:hover {
    --text-opacity: 1 !important;
    color: #702459 !important;
    color: rgba(112, 36, 89, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-ui-gray-100:hover {
    --text-opacity: 1 !important;
    color: #f1f1f1 !important;
    color: rgba(241, 241, 241, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-ui-brown-100:hover {
    --text-opacity: 1 !important;
    color: #f3ecdc !important;
    color: rgba(243, 236, 220, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-ui-brown-200:hover {
    --text-opacity: 1 !important;
    color: #e8e0c9 !important;
    color: rgba(232, 224, 201, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-ui-brown-300:hover {
    --text-opacity: 1 !important;
    color: #d0c095 !important;
    color: rgba(208, 192, 149, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-ui-brown-700:hover {
    --text-opacity: 1 !important;
    color: #bd6005 !important;
    color: rgba(189, 96, 5, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-ui-green-300:hover {
    --text-opacity: 1 !important;
    color: #aac74c !important;
    color: rgba(170, 199, 76, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-ui-green-400:hover {
    --text-opacity: 1 !important;
    color: #71893e !important;
    color: rgba(113, 137, 62, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-ui-orange-500:hover {
    --text-opacity: 1 !important;
    color: #e27212 !important;
    color: rgba(226, 114, 18, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-facebook:hover {
    --text-opacity: 1 !important;
    color: #3b5998 !important;
    color: rgba(59, 89, 152, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-twitter:hover {
    --text-opacity: 1 !important;
    color: #00acee !important;
    color: rgba(0, 172, 238, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-twitch:hover {
    --text-opacity: 1 !important;
    color: #6441a5 !important;
    color: rgba(100, 65, 165, var(--text-opacity)) !important;
  }

  .lg\:hover\:cl-text-youtube:hover {
    --text-opacity: 1 !important;
    color: #FF0000 !important;
    color: rgba(255, 0, 0, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-transparent:focus {
    color: transparent !important;
  }

  .lg\:focus\:cl-text-current:focus {
    color: currentColor !important;
  }

  .lg\:focus\:cl-text-black:focus {
    --text-opacity: 1 !important;
    color: #000 !important;
    color: rgba(0, 0, 0, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-white:focus {
    --text-opacity: 1 !important;
    color: #fff !important;
    color: rgba(255, 255, 255, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-gray-100:focus {
    --text-opacity: 1 !important;
    color: #f7fafc !important;
    color: rgba(247, 250, 252, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-gray-200:focus {
    --text-opacity: 1 !important;
    color: #edf2f7 !important;
    color: rgba(237, 242, 247, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-gray-300:focus {
    --text-opacity: 1 !important;
    color: #e2e8f0 !important;
    color: rgba(226, 232, 240, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-gray-400:focus {
    --text-opacity: 1 !important;
    color: #cbd5e0 !important;
    color: rgba(203, 213, 224, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-gray-500:focus {
    --text-opacity: 1 !important;
    color: #a0aec0 !important;
    color: rgba(160, 174, 192, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-gray-600:focus {
    --text-opacity: 1 !important;
    color: #718096 !important;
    color: rgba(113, 128, 150, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-gray-700:focus {
    --text-opacity: 1 !important;
    color: #4a5568 !important;
    color: rgba(74, 85, 104, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-gray-800:focus {
    --text-opacity: 1 !important;
    color: #2d3748 !important;
    color: rgba(45, 55, 72, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-gray-900:focus {
    --text-opacity: 1 !important;
    color: #1a202c !important;
    color: rgba(26, 32, 44, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-red-100:focus {
    --text-opacity: 1 !important;
    color: #fff5f5 !important;
    color: rgba(255, 245, 245, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-red-200:focus {
    --text-opacity: 1 !important;
    color: #fed7d7 !important;
    color: rgba(254, 215, 215, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-red-300:focus {
    --text-opacity: 1 !important;
    color: #feb2b2 !important;
    color: rgba(254, 178, 178, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-red-400:focus {
    --text-opacity: 1 !important;
    color: #fc8181 !important;
    color: rgba(252, 129, 129, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-red-500:focus {
    --text-opacity: 1 !important;
    color: #f56565 !important;
    color: rgba(245, 101, 101, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-red-600:focus {
    --text-opacity: 1 !important;
    color: #e53e3e !important;
    color: rgba(229, 62, 62, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-red-700:focus {
    --text-opacity: 1 !important;
    color: #c53030 !important;
    color: rgba(197, 48, 48, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-red-800:focus {
    --text-opacity: 1 !important;
    color: #9b2c2c !important;
    color: rgba(155, 44, 44, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-red-900:focus {
    --text-opacity: 1 !important;
    color: #742a2a !important;
    color: rgba(116, 42, 42, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-orange-100:focus {
    --text-opacity: 1 !important;
    color: #fffaf0 !important;
    color: rgba(255, 250, 240, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-orange-200:focus {
    --text-opacity: 1 !important;
    color: #feebc8 !important;
    color: rgba(254, 235, 200, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-orange-300:focus {
    --text-opacity: 1 !important;
    color: #fbd38d !important;
    color: rgba(251, 211, 141, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-orange-400:focus {
    --text-opacity: 1 !important;
    color: #f6ad55 !important;
    color: rgba(246, 173, 85, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-orange-500:focus {
    --text-opacity: 1 !important;
    color: #ed8936 !important;
    color: rgba(237, 137, 54, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-orange-600:focus {
    --text-opacity: 1 !important;
    color: #dd6b20 !important;
    color: rgba(221, 107, 32, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-orange-700:focus {
    --text-opacity: 1 !important;
    color: #c05621 !important;
    color: rgba(192, 86, 33, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-orange-800:focus {
    --text-opacity: 1 !important;
    color: #9c4221 !important;
    color: rgba(156, 66, 33, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-orange-900:focus {
    --text-opacity: 1 !important;
    color: #7b341e !important;
    color: rgba(123, 52, 30, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-yellow-100:focus {
    --text-opacity: 1 !important;
    color: #fffff0 !important;
    color: rgba(255, 255, 240, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-yellow-200:focus {
    --text-opacity: 1 !important;
    color: #fefcbf !important;
    color: rgba(254, 252, 191, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-yellow-300:focus {
    --text-opacity: 1 !important;
    color: #faf089 !important;
    color: rgba(250, 240, 137, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-yellow-400:focus {
    --text-opacity: 1 !important;
    color: #f6e05e !important;
    color: rgba(246, 224, 94, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-yellow-500:focus {
    --text-opacity: 1 !important;
    color: #ecc94b !important;
    color: rgba(236, 201, 75, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-yellow-600:focus {
    --text-opacity: 1 !important;
    color: #d69e2e !important;
    color: rgba(214, 158, 46, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-yellow-700:focus {
    --text-opacity: 1 !important;
    color: #b7791f !important;
    color: rgba(183, 121, 31, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-yellow-800:focus {
    --text-opacity: 1 !important;
    color: #975a16 !important;
    color: rgba(151, 90, 22, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-yellow-900:focus {
    --text-opacity: 1 !important;
    color: #744210 !important;
    color: rgba(116, 66, 16, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-green-100:focus {
    --text-opacity: 1 !important;
    color: #f0fff4 !important;
    color: rgba(240, 255, 244, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-green-200:focus {
    --text-opacity: 1 !important;
    color: #c6f6d5 !important;
    color: rgba(198, 246, 213, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-green-300:focus {
    --text-opacity: 1 !important;
    color: #9ae6b4 !important;
    color: rgba(154, 230, 180, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-green-400:focus {
    --text-opacity: 1 !important;
    color: #68d391 !important;
    color: rgba(104, 211, 145, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-green-500:focus {
    --text-opacity: 1 !important;
    color: #48bb78 !important;
    color: rgba(72, 187, 120, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-green-600:focus {
    --text-opacity: 1 !important;
    color: #38a169 !important;
    color: rgba(56, 161, 105, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-green-700:focus {
    --text-opacity: 1 !important;
    color: #2f855a !important;
    color: rgba(47, 133, 90, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-green-800:focus {
    --text-opacity: 1 !important;
    color: #276749 !important;
    color: rgba(39, 103, 73, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-green-900:focus {
    --text-opacity: 1 !important;
    color: #22543d !important;
    color: rgba(34, 84, 61, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-teal-100:focus {
    --text-opacity: 1 !important;
    color: #e6fffa !important;
    color: rgba(230, 255, 250, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-teal-200:focus {
    --text-opacity: 1 !important;
    color: #b2f5ea !important;
    color: rgba(178, 245, 234, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-teal-300:focus {
    --text-opacity: 1 !important;
    color: #81e6d9 !important;
    color: rgba(129, 230, 217, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-teal-400:focus {
    --text-opacity: 1 !important;
    color: #4fd1c5 !important;
    color: rgba(79, 209, 197, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-teal-500:focus {
    --text-opacity: 1 !important;
    color: #38b2ac !important;
    color: rgba(56, 178, 172, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-teal-600:focus {
    --text-opacity: 1 !important;
    color: #319795 !important;
    color: rgba(49, 151, 149, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-teal-700:focus {
    --text-opacity: 1 !important;
    color: #2c7a7b !important;
    color: rgba(44, 122, 123, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-teal-800:focus {
    --text-opacity: 1 !important;
    color: #285e61 !important;
    color: rgba(40, 94, 97, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-teal-900:focus {
    --text-opacity: 1 !important;
    color: #234e52 !important;
    color: rgba(35, 78, 82, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-blue-100:focus {
    --text-opacity: 1 !important;
    color: #ebf8ff !important;
    color: rgba(235, 248, 255, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-blue-200:focus {
    --text-opacity: 1 !important;
    color: #bee3f8 !important;
    color: rgba(190, 227, 248, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-blue-300:focus {
    --text-opacity: 1 !important;
    color: #90cdf4 !important;
    color: rgba(144, 205, 244, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-blue-400:focus {
    --text-opacity: 1 !important;
    color: #63b3ed !important;
    color: rgba(99, 179, 237, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-blue-500:focus {
    --text-opacity: 1 !important;
    color: #4299e1 !important;
    color: rgba(66, 153, 225, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-blue-600:focus {
    --text-opacity: 1 !important;
    color: #3182ce !important;
    color: rgba(49, 130, 206, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-blue-700:focus {
    --text-opacity: 1 !important;
    color: #2b6cb0 !important;
    color: rgba(43, 108, 176, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-blue-800:focus {
    --text-opacity: 1 !important;
    color: #2c5282 !important;
    color: rgba(44, 82, 130, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-blue-900:focus {
    --text-opacity: 1 !important;
    color: #2a4365 !important;
    color: rgba(42, 67, 101, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-indigo-100:focus {
    --text-opacity: 1 !important;
    color: #ebf4ff !important;
    color: rgba(235, 244, 255, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-indigo-200:focus {
    --text-opacity: 1 !important;
    color: #c3dafe !important;
    color: rgba(195, 218, 254, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-indigo-300:focus {
    --text-opacity: 1 !important;
    color: #a3bffa !important;
    color: rgba(163, 191, 250, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-indigo-400:focus {
    --text-opacity: 1 !important;
    color: #7f9cf5 !important;
    color: rgba(127, 156, 245, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-indigo-500:focus {
    --text-opacity: 1 !important;
    color: #667eea !important;
    color: rgba(102, 126, 234, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-indigo-600:focus {
    --text-opacity: 1 !important;
    color: #5a67d8 !important;
    color: rgba(90, 103, 216, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-indigo-700:focus {
    --text-opacity: 1 !important;
    color: #4c51bf !important;
    color: rgba(76, 81, 191, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-indigo-800:focus {
    --text-opacity: 1 !important;
    color: #434190 !important;
    color: rgba(67, 65, 144, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-indigo-900:focus {
    --text-opacity: 1 !important;
    color: #3c366b !important;
    color: rgba(60, 54, 107, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-purple-100:focus {
    --text-opacity: 1 !important;
    color: #faf5ff !important;
    color: rgba(250, 245, 255, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-purple-200:focus {
    --text-opacity: 1 !important;
    color: #e9d8fd !important;
    color: rgba(233, 216, 253, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-purple-300:focus {
    --text-opacity: 1 !important;
    color: #d6bcfa !important;
    color: rgba(214, 188, 250, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-purple-400:focus {
    --text-opacity: 1 !important;
    color: #b794f4 !important;
    color: rgba(183, 148, 244, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-purple-500:focus {
    --text-opacity: 1 !important;
    color: #9f7aea !important;
    color: rgba(159, 122, 234, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-purple-600:focus {
    --text-opacity: 1 !important;
    color: #805ad5 !important;
    color: rgba(128, 90, 213, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-purple-700:focus {
    --text-opacity: 1 !important;
    color: #6b46c1 !important;
    color: rgba(107, 70, 193, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-purple-800:focus {
    --text-opacity: 1 !important;
    color: #553c9a !important;
    color: rgba(85, 60, 154, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-purple-900:focus {
    --text-opacity: 1 !important;
    color: #44337a !important;
    color: rgba(68, 51, 122, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-pink-100:focus {
    --text-opacity: 1 !important;
    color: #fff5f7 !important;
    color: rgba(255, 245, 247, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-pink-200:focus {
    --text-opacity: 1 !important;
    color: #fed7e2 !important;
    color: rgba(254, 215, 226, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-pink-300:focus {
    --text-opacity: 1 !important;
    color: #fbb6ce !important;
    color: rgba(251, 182, 206, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-pink-400:focus {
    --text-opacity: 1 !important;
    color: #f687b3 !important;
    color: rgba(246, 135, 179, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-pink-500:focus {
    --text-opacity: 1 !important;
    color: #ed64a6 !important;
    color: rgba(237, 100, 166, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-pink-600:focus {
    --text-opacity: 1 !important;
    color: #d53f8c !important;
    color: rgba(213, 63, 140, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-pink-700:focus {
    --text-opacity: 1 !important;
    color: #b83280 !important;
    color: rgba(184, 50, 128, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-pink-800:focus {
    --text-opacity: 1 !important;
    color: #97266d !important;
    color: rgba(151, 38, 109, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-pink-900:focus {
    --text-opacity: 1 !important;
    color: #702459 !important;
    color: rgba(112, 36, 89, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-ui-gray-100:focus {
    --text-opacity: 1 !important;
    color: #f1f1f1 !important;
    color: rgba(241, 241, 241, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-ui-brown-100:focus {
    --text-opacity: 1 !important;
    color: #f3ecdc !important;
    color: rgba(243, 236, 220, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-ui-brown-200:focus {
    --text-opacity: 1 !important;
    color: #e8e0c9 !important;
    color: rgba(232, 224, 201, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-ui-brown-300:focus {
    --text-opacity: 1 !important;
    color: #d0c095 !important;
    color: rgba(208, 192, 149, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-ui-brown-700:focus {
    --text-opacity: 1 !important;
    color: #bd6005 !important;
    color: rgba(189, 96, 5, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-ui-green-300:focus {
    --text-opacity: 1 !important;
    color: #aac74c !important;
    color: rgba(170, 199, 76, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-ui-green-400:focus {
    --text-opacity: 1 !important;
    color: #71893e !important;
    color: rgba(113, 137, 62, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-ui-orange-500:focus {
    --text-opacity: 1 !important;
    color: #e27212 !important;
    color: rgba(226, 114, 18, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-facebook:focus {
    --text-opacity: 1 !important;
    color: #3b5998 !important;
    color: rgba(59, 89, 152, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-twitter:focus {
    --text-opacity: 1 !important;
    color: #00acee !important;
    color: rgba(0, 172, 238, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-twitch:focus {
    --text-opacity: 1 !important;
    color: #6441a5 !important;
    color: rgba(100, 65, 165, var(--text-opacity)) !important;
  }

  .lg\:focus\:cl-text-youtube:focus {
    --text-opacity: 1 !important;
    color: #FF0000 !important;
    color: rgba(255, 0, 0, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-transparent {
    color: transparent !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-current {
    color: currentColor !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-black {
    --text-opacity: 1 !important;
    color: #000 !important;
    color: rgba(0, 0, 0, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-white {
    --text-opacity: 1 !important;
    color: #fff !important;
    color: rgba(255, 255, 255, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-gray-100 {
    --text-opacity: 1 !important;
    color: #f7fafc !important;
    color: rgba(247, 250, 252, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-gray-200 {
    --text-opacity: 1 !important;
    color: #edf2f7 !important;
    color: rgba(237, 242, 247, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-gray-300 {
    --text-opacity: 1 !important;
    color: #e2e8f0 !important;
    color: rgba(226, 232, 240, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-gray-400 {
    --text-opacity: 1 !important;
    color: #cbd5e0 !important;
    color: rgba(203, 213, 224, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-gray-500 {
    --text-opacity: 1 !important;
    color: #a0aec0 !important;
    color: rgba(160, 174, 192, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-gray-600 {
    --text-opacity: 1 !important;
    color: #718096 !important;
    color: rgba(113, 128, 150, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-gray-700 {
    --text-opacity: 1 !important;
    color: #4a5568 !important;
    color: rgba(74, 85, 104, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-gray-800 {
    --text-opacity: 1 !important;
    color: #2d3748 !important;
    color: rgba(45, 55, 72, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-gray-900 {
    --text-opacity: 1 !important;
    color: #1a202c !important;
    color: rgba(26, 32, 44, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-red-100 {
    --text-opacity: 1 !important;
    color: #fff5f5 !important;
    color: rgba(255, 245, 245, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-red-200 {
    --text-opacity: 1 !important;
    color: #fed7d7 !important;
    color: rgba(254, 215, 215, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-red-300 {
    --text-opacity: 1 !important;
    color: #feb2b2 !important;
    color: rgba(254, 178, 178, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-red-400 {
    --text-opacity: 1 !important;
    color: #fc8181 !important;
    color: rgba(252, 129, 129, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-red-500 {
    --text-opacity: 1 !important;
    color: #f56565 !important;
    color: rgba(245, 101, 101, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-red-600 {
    --text-opacity: 1 !important;
    color: #e53e3e !important;
    color: rgba(229, 62, 62, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-red-700 {
    --text-opacity: 1 !important;
    color: #c53030 !important;
    color: rgba(197, 48, 48, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-red-800 {
    --text-opacity: 1 !important;
    color: #9b2c2c !important;
    color: rgba(155, 44, 44, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-red-900 {
    --text-opacity: 1 !important;
    color: #742a2a !important;
    color: rgba(116, 42, 42, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-orange-100 {
    --text-opacity: 1 !important;
    color: #fffaf0 !important;
    color: rgba(255, 250, 240, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-orange-200 {
    --text-opacity: 1 !important;
    color: #feebc8 !important;
    color: rgba(254, 235, 200, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-orange-300 {
    --text-opacity: 1 !important;
    color: #fbd38d !important;
    color: rgba(251, 211, 141, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-orange-400 {
    --text-opacity: 1 !important;
    color: #f6ad55 !important;
    color: rgba(246, 173, 85, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-orange-500 {
    --text-opacity: 1 !important;
    color: #ed8936 !important;
    color: rgba(237, 137, 54, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-orange-600 {
    --text-opacity: 1 !important;
    color: #dd6b20 !important;
    color: rgba(221, 107, 32, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-orange-700 {
    --text-opacity: 1 !important;
    color: #c05621 !important;
    color: rgba(192, 86, 33, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-orange-800 {
    --text-opacity: 1 !important;
    color: #9c4221 !important;
    color: rgba(156, 66, 33, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-orange-900 {
    --text-opacity: 1 !important;
    color: #7b341e !important;
    color: rgba(123, 52, 30, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-yellow-100 {
    --text-opacity: 1 !important;
    color: #fffff0 !important;
    color: rgba(255, 255, 240, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-yellow-200 {
    --text-opacity: 1 !important;
    color: #fefcbf !important;
    color: rgba(254, 252, 191, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-yellow-300 {
    --text-opacity: 1 !important;
    color: #faf089 !important;
    color: rgba(250, 240, 137, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-yellow-400 {
    --text-opacity: 1 !important;
    color: #f6e05e !important;
    color: rgba(246, 224, 94, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-yellow-500 {
    --text-opacity: 1 !important;
    color: #ecc94b !important;
    color: rgba(236, 201, 75, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-yellow-600 {
    --text-opacity: 1 !important;
    color: #d69e2e !important;
    color: rgba(214, 158, 46, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-yellow-700 {
    --text-opacity: 1 !important;
    color: #b7791f !important;
    color: rgba(183, 121, 31, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-yellow-800 {
    --text-opacity: 1 !important;
    color: #975a16 !important;
    color: rgba(151, 90, 22, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-yellow-900 {
    --text-opacity: 1 !important;
    color: #744210 !important;
    color: rgba(116, 66, 16, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-green-100 {
    --text-opacity: 1 !important;
    color: #f0fff4 !important;
    color: rgba(240, 255, 244, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-green-200 {
    --text-opacity: 1 !important;
    color: #c6f6d5 !important;
    color: rgba(198, 246, 213, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-green-300 {
    --text-opacity: 1 !important;
    color: #9ae6b4 !important;
    color: rgba(154, 230, 180, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-green-400 {
    --text-opacity: 1 !important;
    color: #68d391 !important;
    color: rgba(104, 211, 145, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-green-500 {
    --text-opacity: 1 !important;
    color: #48bb78 !important;
    color: rgba(72, 187, 120, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-green-600 {
    --text-opacity: 1 !important;
    color: #38a169 !important;
    color: rgba(56, 161, 105, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-green-700 {
    --text-opacity: 1 !important;
    color: #2f855a !important;
    color: rgba(47, 133, 90, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-green-800 {
    --text-opacity: 1 !important;
    color: #276749 !important;
    color: rgba(39, 103, 73, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-green-900 {
    --text-opacity: 1 !important;
    color: #22543d !important;
    color: rgba(34, 84, 61, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-teal-100 {
    --text-opacity: 1 !important;
    color: #e6fffa !important;
    color: rgba(230, 255, 250, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-teal-200 {
    --text-opacity: 1 !important;
    color: #b2f5ea !important;
    color: rgba(178, 245, 234, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-teal-300 {
    --text-opacity: 1 !important;
    color: #81e6d9 !important;
    color: rgba(129, 230, 217, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-teal-400 {
    --text-opacity: 1 !important;
    color: #4fd1c5 !important;
    color: rgba(79, 209, 197, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-teal-500 {
    --text-opacity: 1 !important;
    color: #38b2ac !important;
    color: rgba(56, 178, 172, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-teal-600 {
    --text-opacity: 1 !important;
    color: #319795 !important;
    color: rgba(49, 151, 149, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-teal-700 {
    --text-opacity: 1 !important;
    color: #2c7a7b !important;
    color: rgba(44, 122, 123, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-teal-800 {
    --text-opacity: 1 !important;
    color: #285e61 !important;
    color: rgba(40, 94, 97, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-teal-900 {
    --text-opacity: 1 !important;
    color: #234e52 !important;
    color: rgba(35, 78, 82, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-blue-100 {
    --text-opacity: 1 !important;
    color: #ebf8ff !important;
    color: rgba(235, 248, 255, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-blue-200 {
    --text-opacity: 1 !important;
    color: #bee3f8 !important;
    color: rgba(190, 227, 248, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-blue-300 {
    --text-opacity: 1 !important;
    color: #90cdf4 !important;
    color: rgba(144, 205, 244, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-blue-400 {
    --text-opacity: 1 !important;
    color: #63b3ed !important;
    color: rgba(99, 179, 237, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-blue-500 {
    --text-opacity: 1 !important;
    color: #4299e1 !important;
    color: rgba(66, 153, 225, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-blue-600 {
    --text-opacity: 1 !important;
    color: #3182ce !important;
    color: rgba(49, 130, 206, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-blue-700 {
    --text-opacity: 1 !important;
    color: #2b6cb0 !important;
    color: rgba(43, 108, 176, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-blue-800 {
    --text-opacity: 1 !important;
    color: #2c5282 !important;
    color: rgba(44, 82, 130, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-blue-900 {
    --text-opacity: 1 !important;
    color: #2a4365 !important;
    color: rgba(42, 67, 101, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-indigo-100 {
    --text-opacity: 1 !important;
    color: #ebf4ff !important;
    color: rgba(235, 244, 255, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-indigo-200 {
    --text-opacity: 1 !important;
    color: #c3dafe !important;
    color: rgba(195, 218, 254, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-indigo-300 {
    --text-opacity: 1 !important;
    color: #a3bffa !important;
    color: rgba(163, 191, 250, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-indigo-400 {
    --text-opacity: 1 !important;
    color: #7f9cf5 !important;
    color: rgba(127, 156, 245, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-indigo-500 {
    --text-opacity: 1 !important;
    color: #667eea !important;
    color: rgba(102, 126, 234, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-indigo-600 {
    --text-opacity: 1 !important;
    color: #5a67d8 !important;
    color: rgba(90, 103, 216, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-indigo-700 {
    --text-opacity: 1 !important;
    color: #4c51bf !important;
    color: rgba(76, 81, 191, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-indigo-800 {
    --text-opacity: 1 !important;
    color: #434190 !important;
    color: rgba(67, 65, 144, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-indigo-900 {
    --text-opacity: 1 !important;
    color: #3c366b !important;
    color: rgba(60, 54, 107, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-purple-100 {
    --text-opacity: 1 !important;
    color: #faf5ff !important;
    color: rgba(250, 245, 255, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-purple-200 {
    --text-opacity: 1 !important;
    color: #e9d8fd !important;
    color: rgba(233, 216, 253, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-purple-300 {
    --text-opacity: 1 !important;
    color: #d6bcfa !important;
    color: rgba(214, 188, 250, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-purple-400 {
    --text-opacity: 1 !important;
    color: #b794f4 !important;
    color: rgba(183, 148, 244, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-purple-500 {
    --text-opacity: 1 !important;
    color: #9f7aea !important;
    color: rgba(159, 122, 234, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-purple-600 {
    --text-opacity: 1 !important;
    color: #805ad5 !important;
    color: rgba(128, 90, 213, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-purple-700 {
    --text-opacity: 1 !important;
    color: #6b46c1 !important;
    color: rgba(107, 70, 193, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-purple-800 {
    --text-opacity: 1 !important;
    color: #553c9a !important;
    color: rgba(85, 60, 154, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-purple-900 {
    --text-opacity: 1 !important;
    color: #44337a !important;
    color: rgba(68, 51, 122, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-pink-100 {
    --text-opacity: 1 !important;
    color: #fff5f7 !important;
    color: rgba(255, 245, 247, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-pink-200 {
    --text-opacity: 1 !important;
    color: #fed7e2 !important;
    color: rgba(254, 215, 226, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-pink-300 {
    --text-opacity: 1 !important;
    color: #fbb6ce !important;
    color: rgba(251, 182, 206, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-pink-400 {
    --text-opacity: 1 !important;
    color: #f687b3 !important;
    color: rgba(246, 135, 179, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-pink-500 {
    --text-opacity: 1 !important;
    color: #ed64a6 !important;
    color: rgba(237, 100, 166, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-pink-600 {
    --text-opacity: 1 !important;
    color: #d53f8c !important;
    color: rgba(213, 63, 140, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-pink-700 {
    --text-opacity: 1 !important;
    color: #b83280 !important;
    color: rgba(184, 50, 128, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-pink-800 {
    --text-opacity: 1 !important;
    color: #97266d !important;
    color: rgba(151, 38, 109, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-pink-900 {
    --text-opacity: 1 !important;
    color: #702459 !important;
    color: rgba(112, 36, 89, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-ui-gray-100 {
    --text-opacity: 1 !important;
    color: #f1f1f1 !important;
    color: rgba(241, 241, 241, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-ui-brown-100 {
    --text-opacity: 1 !important;
    color: #f3ecdc !important;
    color: rgba(243, 236, 220, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-ui-brown-200 {
    --text-opacity: 1 !important;
    color: #e8e0c9 !important;
    color: rgba(232, 224, 201, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-ui-brown-300 {
    --text-opacity: 1 !important;
    color: #d0c095 !important;
    color: rgba(208, 192, 149, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-ui-brown-700 {
    --text-opacity: 1 !important;
    color: #bd6005 !important;
    color: rgba(189, 96, 5, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-ui-green-300 {
    --text-opacity: 1 !important;
    color: #aac74c !important;
    color: rgba(170, 199, 76, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-ui-green-400 {
    --text-opacity: 1 !important;
    color: #71893e !important;
    color: rgba(113, 137, 62, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-ui-orange-500 {
    --text-opacity: 1 !important;
    color: #e27212 !important;
    color: rgba(226, 114, 18, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-facebook {
    --text-opacity: 1 !important;
    color: #3b5998 !important;
    color: rgba(59, 89, 152, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-twitter {
    --text-opacity: 1 !important;
    color: #00acee !important;
    color: rgba(0, 172, 238, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-twitch {
    --text-opacity: 1 !important;
    color: #6441a5 !important;
    color: rgba(100, 65, 165, var(--text-opacity)) !important;
  }

  .cl-group:hover .lg\:group-hover\:cl-text-youtube {
    --text-opacity: 1 !important;
    color: #FF0000 !important;
    color: rgba(255, 0, 0, var(--text-opacity)) !important;
  }

  .lg\:cl-text-opacity-0 {
    --text-opacity: 0 !important;
  }

  .lg\:cl-text-opacity-25 {
    --text-opacity: 0.25 !important;
  }

  .lg\:cl-text-opacity-50 {
    --text-opacity: 0.5 !important;
  }

  .lg\:cl-text-opacity-75 {
    --text-opacity: 0.75 !important;
  }

  .lg\:cl-text-opacity-100 {
    --text-opacity: 1 !important;
  }

  .lg\:hover\:cl-text-opacity-0:hover {
    --text-opacity: 0 !important;
  }

  .lg\:hover\:cl-text-opacity-25:hover {
    --text-opacity: 0.25 !important;
  }

  .lg\:hover\:cl-text-opacity-50:hover {
    --text-opacity: 0.5 !important;
  }

  .lg\:hover\:cl-text-opacity-75:hover {
    --text-opacity: 0.75 !important;
  }

  .lg\:hover\:cl-text-opacity-100:hover {
    --text-opacity: 1 !important;
  }

  .lg\:focus\:cl-text-opacity-0:focus {
    --text-opacity: 0 !important;
  }

  .lg\:focus\:cl-text-opacity-25:focus {
    --text-opacity: 0.25 !important;
  }

  .lg\:focus\:cl-text-opacity-50:focus {
    --text-opacity: 0.5 !important;
  }

  .lg\:focus\:cl-text-opacity-75:focus {
    --text-opacity: 0.75 !important;
  }

  .lg\:focus\:cl-text-opacity-100:focus {
    --text-opacity: 1 !important;
  }

  .lg\:cl-italic {
    font-style: italic !important;
  }

  .lg\:cl-not-italic {
    font-style: normal !important;
  }

  .lg\:cl-uppercase {
    text-transform: uppercase !important;
  }

  .lg\:cl-lowercase {
    text-transform: lowercase !important;
  }

  .lg\:cl-capitalize {
    text-transform: capitalize !important;
  }

  .lg\:cl-normal-case {
    text-transform: none !important;
  }

  .lg\:cl-underline {
    text-decoration: underline !important;
  }

  .lg\:cl-line-through {
    text-decoration: line-through !important;
  }

  .lg\:cl-no-underline {
    text-decoration: none !important;
  }

  .lg\:hover\:cl-underline:hover {
    text-decoration: underline !important;
  }

  .lg\:hover\:cl-line-through:hover {
    text-decoration: line-through !important;
  }

  .lg\:hover\:cl-no-underline:hover {
    text-decoration: none !important;
  }

  .lg\:focus\:cl-underline:focus {
    text-decoration: underline !important;
  }

  .lg\:focus\:cl-line-through:focus {
    text-decoration: line-through !important;
  }

  .lg\:focus\:cl-no-underline:focus {
    text-decoration: none !important;
  }

  .lg\:cl-antialiased {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
  }

  .lg\:cl-subpixel-antialiased {
    -webkit-font-smoothing: auto !important;
    -moz-osx-font-smoothing: auto !important;
  }

  .lg\:cl-ordinal, .lg\:cl-slashed-zero, .lg\:cl-lining-nums, .lg\:cl-oldstyle-nums, .lg\:cl-proportional-nums, .lg\:cl-tabular-nums, .lg\:cl-diagonal-fractions, .lg\:cl-stacked-fractions {
    --font-variant-numeric-ordinal: var(--tailwind-empty,/*!*/ /*!*/) !important;
    --font-variant-numeric-slashed-zero: var(--tailwind-empty,/*!*/ /*!*/) !important;
    --font-variant-numeric-figure: var(--tailwind-empty,/*!*/ /*!*/) !important;
    --font-variant-numeric-spacing: var(--tailwind-empty,/*!*/ /*!*/) !important;
    --font-variant-numeric-fraction: var(--tailwind-empty,/*!*/ /*!*/) !important;
    font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction) !important;
  }

  .lg\:cl-normal-nums {
    font-variant-numeric: normal !important;
  }

  .lg\:cl-ordinal {
    --font-variant-numeric-ordinal: ordinal !important;
  }

  .lg\:cl-slashed-zero {
    --font-variant-numeric-slashed-zero: slashed-zero !important;
  }

  .lg\:cl-lining-nums {
    --font-variant-numeric-figure: lining-nums !important;
  }

  .lg\:cl-oldstyle-nums {
    --font-variant-numeric-figure: oldstyle-nums !important;
  }

  .lg\:cl-proportional-nums {
    --font-variant-numeric-spacing: proportional-nums !important;
  }

  .lg\:cl-tabular-nums {
    --font-variant-numeric-spacing: tabular-nums !important;
  }

  .lg\:cl-diagonal-fractions {
    --font-variant-numeric-fraction: diagonal-fractions !important;
  }

  .lg\:cl-stacked-fractions {
    --font-variant-numeric-fraction: stacked-fractions !important;
  }

  .lg\:cl-tracking-tighter {
    letter-spacing: -0.05em !important;
  }

  .lg\:cl-tracking-tight {
    letter-spacing: -0.025em !important;
  }

  .lg\:cl-tracking-normal {
    letter-spacing: 0 !important;
  }

  .lg\:cl-tracking-wide {
    letter-spacing: 0.025em !important;
  }

  .lg\:cl-tracking-wider {
    letter-spacing: 0.05em !important;
  }

  .lg\:cl-tracking-widest {
    letter-spacing: 0.1em !important;
  }

  .lg\:cl-select-none {
    -webkit-user-select: none !important;
       -moz-user-select: none !important;
            user-select: none !important;
  }

  .lg\:cl-select-text {
    -webkit-user-select: text !important;
       -moz-user-select: text !important;
            user-select: text !important;
  }

  .lg\:cl-select-all {
    -webkit-user-select: all !important;
       -moz-user-select: all !important;
            user-select: all !important;
  }

  .lg\:cl-select-auto {
    -webkit-user-select: auto !important;
       -moz-user-select: auto !important;
            user-select: auto !important;
  }

  .lg\:cl-align-baseline {
    vertical-align: baseline !important;
  }

  .lg\:cl-align-top {
    vertical-align: top !important;
  }

  .lg\:cl-align-middle {
    vertical-align: middle !important;
  }

  .lg\:cl-align-bottom {
    vertical-align: bottom !important;
  }

  .lg\:cl-align-text-top {
    vertical-align: text-top !important;
  }

  .lg\:cl-align-text-bottom {
    vertical-align: text-bottom !important;
  }

  .lg\:cl-visible {
    visibility: visible !important;
  }

  .lg\:cl-invisible {
    visibility: hidden !important;
  }

  .lg\:cl-whitespace-normal {
    white-space: normal !important;
  }

  .lg\:cl-whitespace-no-wrap {
    white-space: nowrap !important;
  }

  .lg\:cl-whitespace-pre {
    white-space: pre !important;
  }

  .lg\:cl-whitespace-pre-line {
    white-space: pre-line !important;
  }

  .lg\:cl-whitespace-pre-wrap {
    white-space: pre-wrap !important;
  }

  .lg\:cl-break-normal {
    word-wrap: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .lg\:cl-break-words {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  .lg\:cl-break-all {
    word-break: break-all !important;
  }

  .lg\:cl-truncate {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .lg\:cl-w-0 {
    width: 0 !important;
  }

  .lg\:cl-w-1 {
    width: 4px !important;
  }

  .lg\:cl-w-2 {
    width: 8px !important;
  }

  .lg\:cl-w-3 {
    width: 12px !important;
  }

  .lg\:cl-w-4 {
    width: 16px !important;
  }

  .lg\:cl-w-5 {
    width: 20px !important;
  }

  .lg\:cl-w-6 {
    width: 24px !important;
  }

  .lg\:cl-w-8 {
    width: 32px !important;
  }

  .lg\:cl-w-10 {
    width: 40px !important;
  }

  .lg\:cl-w-12 {
    width: 48px !important;
  }

  .lg\:cl-w-16 {
    width: 64px !important;
  }

  .lg\:cl-w-20 {
    width: 80px !important;
  }

  .lg\:cl-w-24 {
    width: 96px !important;
  }

  .lg\:cl-w-26 {
    width: 100px !important;
  }

  .lg\:cl-w-28 {
    width: 110px !important;
  }

  .lg\:cl-w-32 {
    width: 128px !important;
  }

  .lg\:cl-w-40 {
    width: 160px !important;
  }

  .lg\:cl-w-48 {
    width: 192px !important;
  }

  .lg\:cl-w-56 {
    width: 224px !important;
  }

  .lg\:cl-w-64 {
    width: 256px !important;
  }

  .lg\:cl-w-auto {
    width: auto !important;
  }

  .lg\:cl-w-px {
    width: 1px !important;
  }

  .lg\:cl-w-1\/2 {
    width: 50% !important;
  }

  .lg\:cl-w-1\/3 {
    width: 33.333333% !important;
  }

  .lg\:cl-w-2\/3 {
    width: 66.666667% !important;
  }

  .lg\:cl-w-1\/4 {
    width: 25% !important;
  }

  .lg\:cl-w-2\/4 {
    width: 50% !important;
  }

  .lg\:cl-w-3\/4 {
    width: 75% !important;
  }

  .lg\:cl-w-1\/5 {
    width: 20% !important;
  }

  .lg\:cl-w-2\/5 {
    width: 40% !important;
  }

  .lg\:cl-w-3\/5 {
    width: 60% !important;
  }

  .lg\:cl-w-4\/5 {
    width: 80% !important;
  }

  .lg\:cl-w-1\/6 {
    width: 16.666667% !important;
  }

  .lg\:cl-w-2\/6 {
    width: 33.333333% !important;
  }

  .lg\:cl-w-3\/6 {
    width: 50% !important;
  }

  .lg\:cl-w-4\/6 {
    width: 66.666667% !important;
  }

  .lg\:cl-w-5\/6 {
    width: 83.333333% !important;
  }

  .lg\:cl-w-1\/12 {
    width: 8.333333% !important;
  }

  .lg\:cl-w-2\/12 {
    width: 16.666667% !important;
  }

  .lg\:cl-w-3\/12 {
    width: 25% !important;
  }

  .lg\:cl-w-4\/12 {
    width: 33.333333% !important;
  }

  .lg\:cl-w-5\/12 {
    width: 41.666667% !important;
  }

  .lg\:cl-w-6\/12 {
    width: 50% !important;
  }

  .lg\:cl-w-7\/12 {
    width: 58.333333% !important;
  }

  .lg\:cl-w-8\/12 {
    width: 66.666667% !important;
  }

  .lg\:cl-w-9\/12 {
    width: 75% !important;
  }

  .lg\:cl-w-10\/12 {
    width: 83.333333% !important;
  }

  .lg\:cl-w-11\/12 {
    width: 91.666667% !important;
  }

  .lg\:cl-w-full {
    width: 100% !important;
  }

  .lg\:cl-w-screen {
    width: 100vw !important;
  }

  .lg\:cl-z-0 {
    z-index: 0 !important;
  }

  .lg\:cl-z-10 {
    z-index: 10 !important;
  }

  .lg\:cl-z-20 {
    z-index: 20 !important;
  }

  .lg\:cl-z-30 {
    z-index: 30 !important;
  }

  .lg\:cl-z-40 {
    z-index: 40 !important;
  }

  .lg\:cl-z-50 {
    z-index: 50 !important;
  }

  .lg\:cl-z-auto {
    z-index: auto !important;
  }

  .lg\:cl-gap-0 {
    grid-gap: 0 !important;
    gap: 0 !important;
  }

  .lg\:cl-gap-1 {
    grid-gap: 4px !important;
    gap: 4px !important;
  }

  .lg\:cl-gap-2 {
    grid-gap: 8px !important;
    gap: 8px !important;
  }

  .lg\:cl-gap-3 {
    grid-gap: 12px !important;
    gap: 12px !important;
  }

  .lg\:cl-gap-4 {
    grid-gap: 16px !important;
    gap: 16px !important;
  }

  .lg\:cl-gap-5 {
    grid-gap: 20px !important;
    gap: 20px !important;
  }

  .lg\:cl-gap-6 {
    grid-gap: 24px !important;
    gap: 24px !important;
  }

  .lg\:cl-gap-8 {
    grid-gap: 32px !important;
    gap: 32px !important;
  }

  .lg\:cl-gap-10 {
    grid-gap: 40px !important;
    gap: 40px !important;
  }

  .lg\:cl-gap-12 {
    grid-gap: 48px !important;
    gap: 48px !important;
  }

  .lg\:cl-gap-16 {
    grid-gap: 64px !important;
    gap: 64px !important;
  }

  .lg\:cl-gap-20 {
    grid-gap: 80px !important;
    gap: 80px !important;
  }

  .lg\:cl-gap-24 {
    grid-gap: 96px !important;
    gap: 96px !important;
  }

  .lg\:cl-gap-26 {
    grid-gap: 100px !important;
    gap: 100px !important;
  }

  .lg\:cl-gap-28 {
    grid-gap: 110px !important;
    gap: 110px !important;
  }

  .lg\:cl-gap-32 {
    grid-gap: 128px !important;
    gap: 128px !important;
  }

  .lg\:cl-gap-40 {
    grid-gap: 160px !important;
    gap: 160px !important;
  }

  .lg\:cl-gap-48 {
    grid-gap: 192px !important;
    gap: 192px !important;
  }

  .lg\:cl-gap-56 {
    grid-gap: 224px !important;
    gap: 224px !important;
  }

  .lg\:cl-gap-64 {
    grid-gap: 256px !important;
    gap: 256px !important;
  }

  .lg\:cl-gap-px {
    grid-gap: 1px !important;
    gap: 1px !important;
  }

  .lg\:cl-col-gap-0 {
    grid-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
         column-gap: 0 !important;
  }

  .lg\:cl-col-gap-1 {
    grid-column-gap: 4px !important;
    -moz-column-gap: 4px !important;
         column-gap: 4px !important;
  }

  .lg\:cl-col-gap-2 {
    grid-column-gap: 8px !important;
    -moz-column-gap: 8px !important;
         column-gap: 8px !important;
  }

  .lg\:cl-col-gap-3 {
    grid-column-gap: 12px !important;
    -moz-column-gap: 12px !important;
         column-gap: 12px !important;
  }

  .lg\:cl-col-gap-4 {
    grid-column-gap: 16px !important;
    -moz-column-gap: 16px !important;
         column-gap: 16px !important;
  }

  .lg\:cl-col-gap-5 {
    grid-column-gap: 20px !important;
    -moz-column-gap: 20px !important;
         column-gap: 20px !important;
  }

  .lg\:cl-col-gap-6 {
    grid-column-gap: 24px !important;
    -moz-column-gap: 24px !important;
         column-gap: 24px !important;
  }

  .lg\:cl-col-gap-8 {
    grid-column-gap: 32px !important;
    -moz-column-gap: 32px !important;
         column-gap: 32px !important;
  }

  .lg\:cl-col-gap-10 {
    grid-column-gap: 40px !important;
    -moz-column-gap: 40px !important;
         column-gap: 40px !important;
  }

  .lg\:cl-col-gap-12 {
    grid-column-gap: 48px !important;
    -moz-column-gap: 48px !important;
         column-gap: 48px !important;
  }

  .lg\:cl-col-gap-16 {
    grid-column-gap: 64px !important;
    -moz-column-gap: 64px !important;
         column-gap: 64px !important;
  }

  .lg\:cl-col-gap-20 {
    grid-column-gap: 80px !important;
    -moz-column-gap: 80px !important;
         column-gap: 80px !important;
  }

  .lg\:cl-col-gap-24 {
    grid-column-gap: 96px !important;
    -moz-column-gap: 96px !important;
         column-gap: 96px !important;
  }

  .lg\:cl-col-gap-26 {
    grid-column-gap: 100px !important;
    -moz-column-gap: 100px !important;
         column-gap: 100px !important;
  }

  .lg\:cl-col-gap-28 {
    grid-column-gap: 110px !important;
    -moz-column-gap: 110px !important;
         column-gap: 110px !important;
  }

  .lg\:cl-col-gap-32 {
    grid-column-gap: 128px !important;
    -moz-column-gap: 128px !important;
         column-gap: 128px !important;
  }

  .lg\:cl-col-gap-40 {
    grid-column-gap: 160px !important;
    -moz-column-gap: 160px !important;
         column-gap: 160px !important;
  }

  .lg\:cl-col-gap-48 {
    grid-column-gap: 192px !important;
    -moz-column-gap: 192px !important;
         column-gap: 192px !important;
  }

  .lg\:cl-col-gap-56 {
    grid-column-gap: 224px !important;
    -moz-column-gap: 224px !important;
         column-gap: 224px !important;
  }

  .lg\:cl-col-gap-64 {
    grid-column-gap: 256px !important;
    -moz-column-gap: 256px !important;
         column-gap: 256px !important;
  }

  .lg\:cl-col-gap-px {
    grid-column-gap: 1px !important;
    -moz-column-gap: 1px !important;
         column-gap: 1px !important;
  }

  .lg\:cl-gap-x-0 {
    grid-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
         column-gap: 0 !important;
  }

  .lg\:cl-gap-x-1 {
    grid-column-gap: 4px !important;
    -moz-column-gap: 4px !important;
         column-gap: 4px !important;
  }

  .lg\:cl-gap-x-2 {
    grid-column-gap: 8px !important;
    -moz-column-gap: 8px !important;
         column-gap: 8px !important;
  }

  .lg\:cl-gap-x-3 {
    grid-column-gap: 12px !important;
    -moz-column-gap: 12px !important;
         column-gap: 12px !important;
  }

  .lg\:cl-gap-x-4 {
    grid-column-gap: 16px !important;
    -moz-column-gap: 16px !important;
         column-gap: 16px !important;
  }

  .lg\:cl-gap-x-5 {
    grid-column-gap: 20px !important;
    -moz-column-gap: 20px !important;
         column-gap: 20px !important;
  }

  .lg\:cl-gap-x-6 {
    grid-column-gap: 24px !important;
    -moz-column-gap: 24px !important;
         column-gap: 24px !important;
  }

  .lg\:cl-gap-x-8 {
    grid-column-gap: 32px !important;
    -moz-column-gap: 32px !important;
         column-gap: 32px !important;
  }

  .lg\:cl-gap-x-10 {
    grid-column-gap: 40px !important;
    -moz-column-gap: 40px !important;
         column-gap: 40px !important;
  }

  .lg\:cl-gap-x-12 {
    grid-column-gap: 48px !important;
    -moz-column-gap: 48px !important;
         column-gap: 48px !important;
  }

  .lg\:cl-gap-x-16 {
    grid-column-gap: 64px !important;
    -moz-column-gap: 64px !important;
         column-gap: 64px !important;
  }

  .lg\:cl-gap-x-20 {
    grid-column-gap: 80px !important;
    -moz-column-gap: 80px !important;
         column-gap: 80px !important;
  }

  .lg\:cl-gap-x-24 {
    grid-column-gap: 96px !important;
    -moz-column-gap: 96px !important;
         column-gap: 96px !important;
  }

  .lg\:cl-gap-x-26 {
    grid-column-gap: 100px !important;
    -moz-column-gap: 100px !important;
         column-gap: 100px !important;
  }

  .lg\:cl-gap-x-28 {
    grid-column-gap: 110px !important;
    -moz-column-gap: 110px !important;
         column-gap: 110px !important;
  }

  .lg\:cl-gap-x-32 {
    grid-column-gap: 128px !important;
    -moz-column-gap: 128px !important;
         column-gap: 128px !important;
  }

  .lg\:cl-gap-x-40 {
    grid-column-gap: 160px !important;
    -moz-column-gap: 160px !important;
         column-gap: 160px !important;
  }

  .lg\:cl-gap-x-48 {
    grid-column-gap: 192px !important;
    -moz-column-gap: 192px !important;
         column-gap: 192px !important;
  }

  .lg\:cl-gap-x-56 {
    grid-column-gap: 224px !important;
    -moz-column-gap: 224px !important;
         column-gap: 224px !important;
  }

  .lg\:cl-gap-x-64 {
    grid-column-gap: 256px !important;
    -moz-column-gap: 256px !important;
         column-gap: 256px !important;
  }

  .lg\:cl-gap-x-px {
    grid-column-gap: 1px !important;
    -moz-column-gap: 1px !important;
         column-gap: 1px !important;
  }

  .lg\:cl-row-gap-0 {
    grid-row-gap: 0 !important;
    row-gap: 0 !important;
  }

  .lg\:cl-row-gap-1 {
    grid-row-gap: 4px !important;
    row-gap: 4px !important;
  }

  .lg\:cl-row-gap-2 {
    grid-row-gap: 8px !important;
    row-gap: 8px !important;
  }

  .lg\:cl-row-gap-3 {
    grid-row-gap: 12px !important;
    row-gap: 12px !important;
  }

  .lg\:cl-row-gap-4 {
    grid-row-gap: 16px !important;
    row-gap: 16px !important;
  }

  .lg\:cl-row-gap-5 {
    grid-row-gap: 20px !important;
    row-gap: 20px !important;
  }

  .lg\:cl-row-gap-6 {
    grid-row-gap: 24px !important;
    row-gap: 24px !important;
  }

  .lg\:cl-row-gap-8 {
    grid-row-gap: 32px !important;
    row-gap: 32px !important;
  }

  .lg\:cl-row-gap-10 {
    grid-row-gap: 40px !important;
    row-gap: 40px !important;
  }

  .lg\:cl-row-gap-12 {
    grid-row-gap: 48px !important;
    row-gap: 48px !important;
  }

  .lg\:cl-row-gap-16 {
    grid-row-gap: 64px !important;
    row-gap: 64px !important;
  }

  .lg\:cl-row-gap-20 {
    grid-row-gap: 80px !important;
    row-gap: 80px !important;
  }

  .lg\:cl-row-gap-24 {
    grid-row-gap: 96px !important;
    row-gap: 96px !important;
  }

  .lg\:cl-row-gap-26 {
    grid-row-gap: 100px !important;
    row-gap: 100px !important;
  }

  .lg\:cl-row-gap-28 {
    grid-row-gap: 110px !important;
    row-gap: 110px !important;
  }

  .lg\:cl-row-gap-32 {
    grid-row-gap: 128px !important;
    row-gap: 128px !important;
  }

  .lg\:cl-row-gap-40 {
    grid-row-gap: 160px !important;
    row-gap: 160px !important;
  }

  .lg\:cl-row-gap-48 {
    grid-row-gap: 192px !important;
    row-gap: 192px !important;
  }

  .lg\:cl-row-gap-56 {
    grid-row-gap: 224px !important;
    row-gap: 224px !important;
  }

  .lg\:cl-row-gap-64 {
    grid-row-gap: 256px !important;
    row-gap: 256px !important;
  }

  .lg\:cl-row-gap-px {
    grid-row-gap: 1px !important;
    row-gap: 1px !important;
  }

  .lg\:cl-gap-y-0 {
    grid-row-gap: 0 !important;
    row-gap: 0 !important;
  }

  .lg\:cl-gap-y-1 {
    grid-row-gap: 4px !important;
    row-gap: 4px !important;
  }

  .lg\:cl-gap-y-2 {
    grid-row-gap: 8px !important;
    row-gap: 8px !important;
  }

  .lg\:cl-gap-y-3 {
    grid-row-gap: 12px !important;
    row-gap: 12px !important;
  }

  .lg\:cl-gap-y-4 {
    grid-row-gap: 16px !important;
    row-gap: 16px !important;
  }

  .lg\:cl-gap-y-5 {
    grid-row-gap: 20px !important;
    row-gap: 20px !important;
  }

  .lg\:cl-gap-y-6 {
    grid-row-gap: 24px !important;
    row-gap: 24px !important;
  }

  .lg\:cl-gap-y-8 {
    grid-row-gap: 32px !important;
    row-gap: 32px !important;
  }

  .lg\:cl-gap-y-10 {
    grid-row-gap: 40px !important;
    row-gap: 40px !important;
  }

  .lg\:cl-gap-y-12 {
    grid-row-gap: 48px !important;
    row-gap: 48px !important;
  }

  .lg\:cl-gap-y-16 {
    grid-row-gap: 64px !important;
    row-gap: 64px !important;
  }

  .lg\:cl-gap-y-20 {
    grid-row-gap: 80px !important;
    row-gap: 80px !important;
  }

  .lg\:cl-gap-y-24 {
    grid-row-gap: 96px !important;
    row-gap: 96px !important;
  }

  .lg\:cl-gap-y-26 {
    grid-row-gap: 100px !important;
    row-gap: 100px !important;
  }

  .lg\:cl-gap-y-28 {
    grid-row-gap: 110px !important;
    row-gap: 110px !important;
  }

  .lg\:cl-gap-y-32 {
    grid-row-gap: 128px !important;
    row-gap: 128px !important;
  }

  .lg\:cl-gap-y-40 {
    grid-row-gap: 160px !important;
    row-gap: 160px !important;
  }

  .lg\:cl-gap-y-48 {
    grid-row-gap: 192px !important;
    row-gap: 192px !important;
  }

  .lg\:cl-gap-y-56 {
    grid-row-gap: 224px !important;
    row-gap: 224px !important;
  }

  .lg\:cl-gap-y-64 {
    grid-row-gap: 256px !important;
    row-gap: 256px !important;
  }

  .lg\:cl-gap-y-px {
    grid-row-gap: 1px !important;
    row-gap: 1px !important;
  }

  .lg\:cl-grid-flow-row {
    grid-auto-flow: row !important;
  }

  .lg\:cl-grid-flow-col {
    grid-auto-flow: column !important;
  }

  .lg\:cl-grid-flow-row-dense {
    grid-auto-flow: row dense !important;
  }

  .lg\:cl-grid-flow-col-dense {
    grid-auto-flow: column dense !important;
  }

  .lg\:cl-grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }

  .lg\:cl-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .lg\:cl-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .lg\:cl-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .lg\:cl-grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }

  .lg\:cl-grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }

  .lg\:cl-grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }

  .lg\:cl-grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }

  .lg\:cl-grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }

  .lg\:cl-grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }

  .lg\:cl-grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
  }

  .lg\:cl-grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }

  .lg\:cl-grid-cols-none {
    grid-template-columns: none !important;
  }

  .lg\:cl-auto-cols-auto {
    grid-auto-columns: auto !important;
  }

  .lg\:cl-auto-cols-min {
    grid-auto-columns: min-content !important;
  }

  .lg\:cl-auto-cols-max {
    grid-auto-columns: max-content !important;
  }

  .lg\:cl-auto-cols-fr {
    grid-auto-columns: minmax(0, 1fr) !important;
  }

  .lg\:cl-col-auto {
    grid-column: auto !important;
  }

  .lg\:cl-col-span-1 {
    grid-column: span 1 / span 1 !important;
  }

  .lg\:cl-col-span-2 {
    grid-column: span 2 / span 2 !important;
  }

  .lg\:cl-col-span-3 {
    grid-column: span 3 / span 3 !important;
  }

  .lg\:cl-col-span-4 {
    grid-column: span 4 / span 4 !important;
  }

  .lg\:cl-col-span-5 {
    grid-column: span 5 / span 5 !important;
  }

  .lg\:cl-col-span-6 {
    grid-column: span 6 / span 6 !important;
  }

  .lg\:cl-col-span-7 {
    grid-column: span 7 / span 7 !important;
  }

  .lg\:cl-col-span-8 {
    grid-column: span 8 / span 8 !important;
  }

  .lg\:cl-col-span-9 {
    grid-column: span 9 / span 9 !important;
  }

  .lg\:cl-col-span-10 {
    grid-column: span 10 / span 10 !important;
  }

  .lg\:cl-col-span-11 {
    grid-column: span 11 / span 11 !important;
  }

  .lg\:cl-col-span-12 {
    grid-column: span 12 / span 12 !important;
  }

  .lg\:cl-col-span-full {
    grid-column: 1 / -1 !important;
  }

  .lg\:cl-col-start-1 {
    grid-column-start: 1 !important;
  }

  .lg\:cl-col-start-2 {
    grid-column-start: 2 !important;
  }

  .lg\:cl-col-start-3 {
    grid-column-start: 3 !important;
  }

  .lg\:cl-col-start-4 {
    grid-column-start: 4 !important;
  }

  .lg\:cl-col-start-5 {
    grid-column-start: 5 !important;
  }

  .lg\:cl-col-start-6 {
    grid-column-start: 6 !important;
  }

  .lg\:cl-col-start-7 {
    grid-column-start: 7 !important;
  }

  .lg\:cl-col-start-8 {
    grid-column-start: 8 !important;
  }

  .lg\:cl-col-start-9 {
    grid-column-start: 9 !important;
  }

  .lg\:cl-col-start-10 {
    grid-column-start: 10 !important;
  }

  .lg\:cl-col-start-11 {
    grid-column-start: 11 !important;
  }

  .lg\:cl-col-start-12 {
    grid-column-start: 12 !important;
  }

  .lg\:cl-col-start-13 {
    grid-column-start: 13 !important;
  }

  .lg\:cl-col-start-auto {
    grid-column-start: auto !important;
  }

  .lg\:cl-col-end-1 {
    grid-column-end: 1 !important;
  }

  .lg\:cl-col-end-2 {
    grid-column-end: 2 !important;
  }

  .lg\:cl-col-end-3 {
    grid-column-end: 3 !important;
  }

  .lg\:cl-col-end-4 {
    grid-column-end: 4 !important;
  }

  .lg\:cl-col-end-5 {
    grid-column-end: 5 !important;
  }

  .lg\:cl-col-end-6 {
    grid-column-end: 6 !important;
  }

  .lg\:cl-col-end-7 {
    grid-column-end: 7 !important;
  }

  .lg\:cl-col-end-8 {
    grid-column-end: 8 !important;
  }

  .lg\:cl-col-end-9 {
    grid-column-end: 9 !important;
  }

  .lg\:cl-col-end-10 {
    grid-column-end: 10 !important;
  }

  .lg\:cl-col-end-11 {
    grid-column-end: 11 !important;
  }

  .lg\:cl-col-end-12 {
    grid-column-end: 12 !important;
  }

  .lg\:cl-col-end-13 {
    grid-column-end: 13 !important;
  }

  .lg\:cl-col-end-auto {
    grid-column-end: auto !important;
  }

  .lg\:cl-grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }

  .lg\:cl-grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }

  .lg\:cl-grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }

  .lg\:cl-grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  }

  .lg\:cl-grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
  }

  .lg\:cl-grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }

  .lg\:cl-grid-rows-none {
    grid-template-rows: none !important;
  }

  .lg\:cl-auto-rows-auto {
    grid-auto-rows: auto !important;
  }

  .lg\:cl-auto-rows-min {
    grid-auto-rows: min-content !important;
  }

  .lg\:cl-auto-rows-max {
    grid-auto-rows: max-content !important;
  }

  .lg\:cl-auto-rows-fr {
    grid-auto-rows: minmax(0, 1fr) !important;
  }

  .lg\:cl-row-auto {
    grid-row: auto !important;
  }

  .lg\:cl-row-span-1 {
    grid-row: span 1 / span 1 !important;
  }

  .lg\:cl-row-span-2 {
    grid-row: span 2 / span 2 !important;
  }

  .lg\:cl-row-span-3 {
    grid-row: span 3 / span 3 !important;
  }

  .lg\:cl-row-span-4 {
    grid-row: span 4 / span 4 !important;
  }

  .lg\:cl-row-span-5 {
    grid-row: span 5 / span 5 !important;
  }

  .lg\:cl-row-span-6 {
    grid-row: span 6 / span 6 !important;
  }

  .lg\:cl-row-span-full {
    grid-row: 1 / -1 !important;
  }

  .lg\:cl-row-start-1 {
    grid-row-start: 1 !important;
  }

  .lg\:cl-row-start-2 {
    grid-row-start: 2 !important;
  }

  .lg\:cl-row-start-3 {
    grid-row-start: 3 !important;
  }

  .lg\:cl-row-start-4 {
    grid-row-start: 4 !important;
  }

  .lg\:cl-row-start-5 {
    grid-row-start: 5 !important;
  }

  .lg\:cl-row-start-6 {
    grid-row-start: 6 !important;
  }

  .lg\:cl-row-start-7 {
    grid-row-start: 7 !important;
  }

  .lg\:cl-row-start-auto {
    grid-row-start: auto !important;
  }

  .lg\:cl-row-end-1 {
    grid-row-end: 1 !important;
  }

  .lg\:cl-row-end-2 {
    grid-row-end: 2 !important;
  }

  .lg\:cl-row-end-3 {
    grid-row-end: 3 !important;
  }

  .lg\:cl-row-end-4 {
    grid-row-end: 4 !important;
  }

  .lg\:cl-row-end-5 {
    grid-row-end: 5 !important;
  }

  .lg\:cl-row-end-6 {
    grid-row-end: 6 !important;
  }

  .lg\:cl-row-end-7 {
    grid-row-end: 7 !important;
  }

  .lg\:cl-row-end-auto {
    grid-row-end: auto !important;
  }

  .lg\:cl-transform {
    --transform-translate-x: 0 !important;
    --transform-translate-y: 0 !important;
    --transform-rotate: 0 !important;
    --transform-skew-x: 0 !important;
    --transform-skew-y: 0 !important;
    --transform-scale-x: 1 !important;
    --transform-scale-y: 1 !important;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y)) !important;
  }

  .lg\:cl-transform-none {
    transform: none !important;
  }

  .lg\:cl-origin-center {
    transform-origin: center !important;
  }

  .lg\:cl-origin-top {
    transform-origin: top !important;
  }

  .lg\:cl-origin-top-right {
    transform-origin: top right !important;
  }

  .lg\:cl-origin-right {
    transform-origin: right !important;
  }

  .lg\:cl-origin-bottom-right {
    transform-origin: bottom right !important;
  }

  .lg\:cl-origin-bottom {
    transform-origin: bottom !important;
  }

  .lg\:cl-origin-bottom-left {
    transform-origin: bottom left !important;
  }

  .lg\:cl-origin-left {
    transform-origin: left !important;
  }

  .lg\:cl-origin-top-left {
    transform-origin: top left !important;
  }

  .lg\:cl-scale-0 {
    --transform-scale-x: 0 !important;
    --transform-scale-y: 0 !important;
  }

  .lg\:cl-scale-50 {
    --transform-scale-x: .5 !important;
    --transform-scale-y: .5 !important;
  }

  .lg\:cl-scale-75 {
    --transform-scale-x: .75 !important;
    --transform-scale-y: .75 !important;
  }

  .lg\:cl-scale-90 {
    --transform-scale-x: .9 !important;
    --transform-scale-y: .9 !important;
  }

  .lg\:cl-scale-95 {
    --transform-scale-x: .95 !important;
    --transform-scale-y: .95 !important;
  }

  .lg\:cl-scale-100 {
    --transform-scale-x: 1 !important;
    --transform-scale-y: 1 !important;
  }

  .lg\:cl-scale-105 {
    --transform-scale-x: 1.05 !important;
    --transform-scale-y: 1.05 !important;
  }

  .lg\:cl-scale-110 {
    --transform-scale-x: 1.1 !important;
    --transform-scale-y: 1.1 !important;
  }

  .lg\:cl-scale-125 {
    --transform-scale-x: 1.25 !important;
    --transform-scale-y: 1.25 !important;
  }

  .lg\:cl-scale-150 {
    --transform-scale-x: 1.5 !important;
    --transform-scale-y: 1.5 !important;
  }

  .lg\:cl-scale-x-0 {
    --transform-scale-x: 0 !important;
  }

  .lg\:cl-scale-x-50 {
    --transform-scale-x: .5 !important;
  }

  .lg\:cl-scale-x-75 {
    --transform-scale-x: .75 !important;
  }

  .lg\:cl-scale-x-90 {
    --transform-scale-x: .9 !important;
  }

  .lg\:cl-scale-x-95 {
    --transform-scale-x: .95 !important;
  }

  .lg\:cl-scale-x-100 {
    --transform-scale-x: 1 !important;
  }

  .lg\:cl-scale-x-105 {
    --transform-scale-x: 1.05 !important;
  }

  .lg\:cl-scale-x-110 {
    --transform-scale-x: 1.1 !important;
  }

  .lg\:cl-scale-x-125 {
    --transform-scale-x: 1.25 !important;
  }

  .lg\:cl-scale-x-150 {
    --transform-scale-x: 1.5 !important;
  }

  .lg\:cl-scale-y-0 {
    --transform-scale-y: 0 !important;
  }

  .lg\:cl-scale-y-50 {
    --transform-scale-y: .5 !important;
  }

  .lg\:cl-scale-y-75 {
    --transform-scale-y: .75 !important;
  }

  .lg\:cl-scale-y-90 {
    --transform-scale-y: .9 !important;
  }

  .lg\:cl-scale-y-95 {
    --transform-scale-y: .95 !important;
  }

  .lg\:cl-scale-y-100 {
    --transform-scale-y: 1 !important;
  }

  .lg\:cl-scale-y-105 {
    --transform-scale-y: 1.05 !important;
  }

  .lg\:cl-scale-y-110 {
    --transform-scale-y: 1.1 !important;
  }

  .lg\:cl-scale-y-125 {
    --transform-scale-y: 1.25 !important;
  }

  .lg\:cl-scale-y-150 {
    --transform-scale-y: 1.5 !important;
  }

  .lg\:hover\:cl-scale-0:hover {
    --transform-scale-x: 0 !important;
    --transform-scale-y: 0 !important;
  }

  .lg\:hover\:cl-scale-50:hover {
    --transform-scale-x: .5 !important;
    --transform-scale-y: .5 !important;
  }

  .lg\:hover\:cl-scale-75:hover {
    --transform-scale-x: .75 !important;
    --transform-scale-y: .75 !important;
  }

  .lg\:hover\:cl-scale-90:hover {
    --transform-scale-x: .9 !important;
    --transform-scale-y: .9 !important;
  }

  .lg\:hover\:cl-scale-95:hover {
    --transform-scale-x: .95 !important;
    --transform-scale-y: .95 !important;
  }

  .lg\:hover\:cl-scale-100:hover {
    --transform-scale-x: 1 !important;
    --transform-scale-y: 1 !important;
  }

  .lg\:hover\:cl-scale-105:hover {
    --transform-scale-x: 1.05 !important;
    --transform-scale-y: 1.05 !important;
  }

  .lg\:hover\:cl-scale-110:hover {
    --transform-scale-x: 1.1 !important;
    --transform-scale-y: 1.1 !important;
  }

  .lg\:hover\:cl-scale-125:hover {
    --transform-scale-x: 1.25 !important;
    --transform-scale-y: 1.25 !important;
  }

  .lg\:hover\:cl-scale-150:hover {
    --transform-scale-x: 1.5 !important;
    --transform-scale-y: 1.5 !important;
  }

  .lg\:hover\:cl-scale-x-0:hover {
    --transform-scale-x: 0 !important;
  }

  .lg\:hover\:cl-scale-x-50:hover {
    --transform-scale-x: .5 !important;
  }

  .lg\:hover\:cl-scale-x-75:hover {
    --transform-scale-x: .75 !important;
  }

  .lg\:hover\:cl-scale-x-90:hover {
    --transform-scale-x: .9 !important;
  }

  .lg\:hover\:cl-scale-x-95:hover {
    --transform-scale-x: .95 !important;
  }

  .lg\:hover\:cl-scale-x-100:hover {
    --transform-scale-x: 1 !important;
  }

  .lg\:hover\:cl-scale-x-105:hover {
    --transform-scale-x: 1.05 !important;
  }

  .lg\:hover\:cl-scale-x-110:hover {
    --transform-scale-x: 1.1 !important;
  }

  .lg\:hover\:cl-scale-x-125:hover {
    --transform-scale-x: 1.25 !important;
  }

  .lg\:hover\:cl-scale-x-150:hover {
    --transform-scale-x: 1.5 !important;
  }

  .lg\:hover\:cl-scale-y-0:hover {
    --transform-scale-y: 0 !important;
  }

  .lg\:hover\:cl-scale-y-50:hover {
    --transform-scale-y: .5 !important;
  }

  .lg\:hover\:cl-scale-y-75:hover {
    --transform-scale-y: .75 !important;
  }

  .lg\:hover\:cl-scale-y-90:hover {
    --transform-scale-y: .9 !important;
  }

  .lg\:hover\:cl-scale-y-95:hover {
    --transform-scale-y: .95 !important;
  }

  .lg\:hover\:cl-scale-y-100:hover {
    --transform-scale-y: 1 !important;
  }

  .lg\:hover\:cl-scale-y-105:hover {
    --transform-scale-y: 1.05 !important;
  }

  .lg\:hover\:cl-scale-y-110:hover {
    --transform-scale-y: 1.1 !important;
  }

  .lg\:hover\:cl-scale-y-125:hover {
    --transform-scale-y: 1.25 !important;
  }

  .lg\:hover\:cl-scale-y-150:hover {
    --transform-scale-y: 1.5 !important;
  }

  .lg\:focus\:cl-scale-0:focus {
    --transform-scale-x: 0 !important;
    --transform-scale-y: 0 !important;
  }

  .lg\:focus\:cl-scale-50:focus {
    --transform-scale-x: .5 !important;
    --transform-scale-y: .5 !important;
  }

  .lg\:focus\:cl-scale-75:focus {
    --transform-scale-x: .75 !important;
    --transform-scale-y: .75 !important;
  }

  .lg\:focus\:cl-scale-90:focus {
    --transform-scale-x: .9 !important;
    --transform-scale-y: .9 !important;
  }

  .lg\:focus\:cl-scale-95:focus {
    --transform-scale-x: .95 !important;
    --transform-scale-y: .95 !important;
  }

  .lg\:focus\:cl-scale-100:focus {
    --transform-scale-x: 1 !important;
    --transform-scale-y: 1 !important;
  }

  .lg\:focus\:cl-scale-105:focus {
    --transform-scale-x: 1.05 !important;
    --transform-scale-y: 1.05 !important;
  }

  .lg\:focus\:cl-scale-110:focus {
    --transform-scale-x: 1.1 !important;
    --transform-scale-y: 1.1 !important;
  }

  .lg\:focus\:cl-scale-125:focus {
    --transform-scale-x: 1.25 !important;
    --transform-scale-y: 1.25 !important;
  }

  .lg\:focus\:cl-scale-150:focus {
    --transform-scale-x: 1.5 !important;
    --transform-scale-y: 1.5 !important;
  }

  .lg\:focus\:cl-scale-x-0:focus {
    --transform-scale-x: 0 !important;
  }

  .lg\:focus\:cl-scale-x-50:focus {
    --transform-scale-x: .5 !important;
  }

  .lg\:focus\:cl-scale-x-75:focus {
    --transform-scale-x: .75 !important;
  }

  .lg\:focus\:cl-scale-x-90:focus {
    --transform-scale-x: .9 !important;
  }

  .lg\:focus\:cl-scale-x-95:focus {
    --transform-scale-x: .95 !important;
  }

  .lg\:focus\:cl-scale-x-100:focus {
    --transform-scale-x: 1 !important;
  }

  .lg\:focus\:cl-scale-x-105:focus {
    --transform-scale-x: 1.05 !important;
  }

  .lg\:focus\:cl-scale-x-110:focus {
    --transform-scale-x: 1.1 !important;
  }

  .lg\:focus\:cl-scale-x-125:focus {
    --transform-scale-x: 1.25 !important;
  }

  .lg\:focus\:cl-scale-x-150:focus {
    --transform-scale-x: 1.5 !important;
  }

  .lg\:focus\:cl-scale-y-0:focus {
    --transform-scale-y: 0 !important;
  }

  .lg\:focus\:cl-scale-y-50:focus {
    --transform-scale-y: .5 !important;
  }

  .lg\:focus\:cl-scale-y-75:focus {
    --transform-scale-y: .75 !important;
  }

  .lg\:focus\:cl-scale-y-90:focus {
    --transform-scale-y: .9 !important;
  }

  .lg\:focus\:cl-scale-y-95:focus {
    --transform-scale-y: .95 !important;
  }

  .lg\:focus\:cl-scale-y-100:focus {
    --transform-scale-y: 1 !important;
  }

  .lg\:focus\:cl-scale-y-105:focus {
    --transform-scale-y: 1.05 !important;
  }

  .lg\:focus\:cl-scale-y-110:focus {
    --transform-scale-y: 1.1 !important;
  }

  .lg\:focus\:cl-scale-y-125:focus {
    --transform-scale-y: 1.25 !important;
  }

  .lg\:focus\:cl-scale-y-150:focus {
    --transform-scale-y: 1.5 !important;
  }

  .lg\:cl-rotate-0 {
    --transform-rotate: 0 !important;
  }

  .lg\:cl-rotate-1 {
    --transform-rotate: 1deg !important;
  }

  .lg\:cl-rotate-2 {
    --transform-rotate: 2deg !important;
  }

  .lg\:cl-rotate-3 {
    --transform-rotate: 3deg !important;
  }

  .lg\:cl-rotate-6 {
    --transform-rotate: 6deg !important;
  }

  .lg\:cl-rotate-12 {
    --transform-rotate: 12deg !important;
  }

  .lg\:cl-rotate-45 {
    --transform-rotate: 45deg !important;
  }

  .lg\:cl-rotate-90 {
    --transform-rotate: 90deg !important;
  }

  .lg\:cl-rotate-180 {
    --transform-rotate: 180deg !important;
  }

  .lg\:cl--rotate-180 {
    --transform-rotate: -180deg !important;
  }

  .lg\:cl--rotate-90 {
    --transform-rotate: -90deg !important;
  }

  .lg\:cl--rotate-45 {
    --transform-rotate: -45deg !important;
  }

  .lg\:cl--rotate-12 {
    --transform-rotate: -12deg !important;
  }

  .lg\:cl--rotate-6 {
    --transform-rotate: -6deg !important;
  }

  .lg\:cl--rotate-3 {
    --transform-rotate: -3deg !important;
  }

  .lg\:cl--rotate-2 {
    --transform-rotate: -2deg !important;
  }

  .lg\:cl--rotate-1 {
    --transform-rotate: -1deg !important;
  }

  .lg\:hover\:cl-rotate-0:hover {
    --transform-rotate: 0 !important;
  }

  .lg\:hover\:cl-rotate-1:hover {
    --transform-rotate: 1deg !important;
  }

  .lg\:hover\:cl-rotate-2:hover {
    --transform-rotate: 2deg !important;
  }

  .lg\:hover\:cl-rotate-3:hover {
    --transform-rotate: 3deg !important;
  }

  .lg\:hover\:cl-rotate-6:hover {
    --transform-rotate: 6deg !important;
  }

  .lg\:hover\:cl-rotate-12:hover {
    --transform-rotate: 12deg !important;
  }

  .lg\:hover\:cl-rotate-45:hover {
    --transform-rotate: 45deg !important;
  }

  .lg\:hover\:cl-rotate-90:hover {
    --transform-rotate: 90deg !important;
  }

  .lg\:hover\:cl-rotate-180:hover {
    --transform-rotate: 180deg !important;
  }

  .lg\:hover\:cl--rotate-180:hover {
    --transform-rotate: -180deg !important;
  }

  .lg\:hover\:cl--rotate-90:hover {
    --transform-rotate: -90deg !important;
  }

  .lg\:hover\:cl--rotate-45:hover {
    --transform-rotate: -45deg !important;
  }

  .lg\:hover\:cl--rotate-12:hover {
    --transform-rotate: -12deg !important;
  }

  .lg\:hover\:cl--rotate-6:hover {
    --transform-rotate: -6deg !important;
  }

  .lg\:hover\:cl--rotate-3:hover {
    --transform-rotate: -3deg !important;
  }

  .lg\:hover\:cl--rotate-2:hover {
    --transform-rotate: -2deg !important;
  }

  .lg\:hover\:cl--rotate-1:hover {
    --transform-rotate: -1deg !important;
  }

  .lg\:focus\:cl-rotate-0:focus {
    --transform-rotate: 0 !important;
  }

  .lg\:focus\:cl-rotate-1:focus {
    --transform-rotate: 1deg !important;
  }

  .lg\:focus\:cl-rotate-2:focus {
    --transform-rotate: 2deg !important;
  }

  .lg\:focus\:cl-rotate-3:focus {
    --transform-rotate: 3deg !important;
  }

  .lg\:focus\:cl-rotate-6:focus {
    --transform-rotate: 6deg !important;
  }

  .lg\:focus\:cl-rotate-12:focus {
    --transform-rotate: 12deg !important;
  }

  .lg\:focus\:cl-rotate-45:focus {
    --transform-rotate: 45deg !important;
  }

  .lg\:focus\:cl-rotate-90:focus {
    --transform-rotate: 90deg !important;
  }

  .lg\:focus\:cl-rotate-180:focus {
    --transform-rotate: 180deg !important;
  }

  .lg\:focus\:cl--rotate-180:focus {
    --transform-rotate: -180deg !important;
  }

  .lg\:focus\:cl--rotate-90:focus {
    --transform-rotate: -90deg !important;
  }

  .lg\:focus\:cl--rotate-45:focus {
    --transform-rotate: -45deg !important;
  }

  .lg\:focus\:cl--rotate-12:focus {
    --transform-rotate: -12deg !important;
  }

  .lg\:focus\:cl--rotate-6:focus {
    --transform-rotate: -6deg !important;
  }

  .lg\:focus\:cl--rotate-3:focus {
    --transform-rotate: -3deg !important;
  }

  .lg\:focus\:cl--rotate-2:focus {
    --transform-rotate: -2deg !important;
  }

  .lg\:focus\:cl--rotate-1:focus {
    --transform-rotate: -1deg !important;
  }

  .lg\:cl-translate-x-0 {
    --transform-translate-x: 0 !important;
  }

  .lg\:cl-translate-x-1 {
    --transform-translate-x: 4px !important;
  }

  .lg\:cl-translate-x-2 {
    --transform-translate-x: 8px !important;
  }

  .lg\:cl-translate-x-3 {
    --transform-translate-x: 12px !important;
  }

  .lg\:cl-translate-x-4 {
    --transform-translate-x: 16px !important;
  }

  .lg\:cl-translate-x-5 {
    --transform-translate-x: 20px !important;
  }

  .lg\:cl-translate-x-6 {
    --transform-translate-x: 24px !important;
  }

  .lg\:cl-translate-x-8 {
    --transform-translate-x: 32px !important;
  }

  .lg\:cl-translate-x-10 {
    --transform-translate-x: 40px !important;
  }

  .lg\:cl-translate-x-12 {
    --transform-translate-x: 48px !important;
  }

  .lg\:cl-translate-x-16 {
    --transform-translate-x: 64px !important;
  }

  .lg\:cl-translate-x-20 {
    --transform-translate-x: 80px !important;
  }

  .lg\:cl-translate-x-24 {
    --transform-translate-x: 96px !important;
  }

  .lg\:cl-translate-x-26 {
    --transform-translate-x: 100px !important;
  }

  .lg\:cl-translate-x-28 {
    --transform-translate-x: 110px !important;
  }

  .lg\:cl-translate-x-32 {
    --transform-translate-x: 128px !important;
  }

  .lg\:cl-translate-x-40 {
    --transform-translate-x: 160px !important;
  }

  .lg\:cl-translate-x-48 {
    --transform-translate-x: 192px !important;
  }

  .lg\:cl-translate-x-56 {
    --transform-translate-x: 224px !important;
  }

  .lg\:cl-translate-x-64 {
    --transform-translate-x: 256px !important;
  }

  .lg\:cl-translate-x-px {
    --transform-translate-x: 1px !important;
  }

  .lg\:cl--translate-x-1 {
    --transform-translate-x: -4px !important;
  }

  .lg\:cl--translate-x-2 {
    --transform-translate-x: -8px !important;
  }

  .lg\:cl--translate-x-3 {
    --transform-translate-x: -12px !important;
  }

  .lg\:cl--translate-x-4 {
    --transform-translate-x: -16px !important;
  }

  .lg\:cl--translate-x-5 {
    --transform-translate-x: -20px !important;
  }

  .lg\:cl--translate-x-6 {
    --transform-translate-x: -24px !important;
  }

  .lg\:cl--translate-x-8 {
    --transform-translate-x: -32px !important;
  }

  .lg\:cl--translate-x-10 {
    --transform-translate-x: -40px !important;
  }

  .lg\:cl--translate-x-12 {
    --transform-translate-x: -48px !important;
  }

  .lg\:cl--translate-x-16 {
    --transform-translate-x: -64px !important;
  }

  .lg\:cl--translate-x-20 {
    --transform-translate-x: -80px !important;
  }

  .lg\:cl--translate-x-24 {
    --transform-translate-x: -96px !important;
  }

  .lg\:cl--translate-x-26 {
    --transform-translate-x: -100px !important;
  }

  .lg\:cl--translate-x-28 {
    --transform-translate-x: -110px !important;
  }

  .lg\:cl--translate-x-32 {
    --transform-translate-x: -128px !important;
  }

  .lg\:cl--translate-x-40 {
    --transform-translate-x: -160px !important;
  }

  .lg\:cl--translate-x-48 {
    --transform-translate-x: -192px !important;
  }

  .lg\:cl--translate-x-56 {
    --transform-translate-x: -224px !important;
  }

  .lg\:cl--translate-x-64 {
    --transform-translate-x: -256px !important;
  }

  .lg\:cl--translate-x-px {
    --transform-translate-x: -1px !important;
  }

  .lg\:cl--translate-x-full {
    --transform-translate-x: -100% !important;
  }

  .lg\:cl--translate-x-1\/2 {
    --transform-translate-x: -50% !important;
  }

  .lg\:cl-translate-x-1\/2 {
    --transform-translate-x: 50% !important;
  }

  .lg\:cl-translate-x-full {
    --transform-translate-x: 100% !important;
  }

  .lg\:cl-translate-y-0 {
    --transform-translate-y: 0 !important;
  }

  .lg\:cl-translate-y-1 {
    --transform-translate-y: 4px !important;
  }

  .lg\:cl-translate-y-2 {
    --transform-translate-y: 8px !important;
  }

  .lg\:cl-translate-y-3 {
    --transform-translate-y: 12px !important;
  }

  .lg\:cl-translate-y-4 {
    --transform-translate-y: 16px !important;
  }

  .lg\:cl-translate-y-5 {
    --transform-translate-y: 20px !important;
  }

  .lg\:cl-translate-y-6 {
    --transform-translate-y: 24px !important;
  }

  .lg\:cl-translate-y-8 {
    --transform-translate-y: 32px !important;
  }

  .lg\:cl-translate-y-10 {
    --transform-translate-y: 40px !important;
  }

  .lg\:cl-translate-y-12 {
    --transform-translate-y: 48px !important;
  }

  .lg\:cl-translate-y-16 {
    --transform-translate-y: 64px !important;
  }

  .lg\:cl-translate-y-20 {
    --transform-translate-y: 80px !important;
  }

  .lg\:cl-translate-y-24 {
    --transform-translate-y: 96px !important;
  }

  .lg\:cl-translate-y-26 {
    --transform-translate-y: 100px !important;
  }

  .lg\:cl-translate-y-28 {
    --transform-translate-y: 110px !important;
  }

  .lg\:cl-translate-y-32 {
    --transform-translate-y: 128px !important;
  }

  .lg\:cl-translate-y-40 {
    --transform-translate-y: 160px !important;
  }

  .lg\:cl-translate-y-48 {
    --transform-translate-y: 192px !important;
  }

  .lg\:cl-translate-y-56 {
    --transform-translate-y: 224px !important;
  }

  .lg\:cl-translate-y-64 {
    --transform-translate-y: 256px !important;
  }

  .lg\:cl-translate-y-px {
    --transform-translate-y: 1px !important;
  }

  .lg\:cl--translate-y-1 {
    --transform-translate-y: -4px !important;
  }

  .lg\:cl--translate-y-2 {
    --transform-translate-y: -8px !important;
  }

  .lg\:cl--translate-y-3 {
    --transform-translate-y: -12px !important;
  }

  .lg\:cl--translate-y-4 {
    --transform-translate-y: -16px !important;
  }

  .lg\:cl--translate-y-5 {
    --transform-translate-y: -20px !important;
  }

  .lg\:cl--translate-y-6 {
    --transform-translate-y: -24px !important;
  }

  .lg\:cl--translate-y-8 {
    --transform-translate-y: -32px !important;
  }

  .lg\:cl--translate-y-10 {
    --transform-translate-y: -40px !important;
  }

  .lg\:cl--translate-y-12 {
    --transform-translate-y: -48px !important;
  }

  .lg\:cl--translate-y-16 {
    --transform-translate-y: -64px !important;
  }

  .lg\:cl--translate-y-20 {
    --transform-translate-y: -80px !important;
  }

  .lg\:cl--translate-y-24 {
    --transform-translate-y: -96px !important;
  }

  .lg\:cl--translate-y-26 {
    --transform-translate-y: -100px !important;
  }

  .lg\:cl--translate-y-28 {
    --transform-translate-y: -110px !important;
  }

  .lg\:cl--translate-y-32 {
    --transform-translate-y: -128px !important;
  }

  .lg\:cl--translate-y-40 {
    --transform-translate-y: -160px !important;
  }

  .lg\:cl--translate-y-48 {
    --transform-translate-y: -192px !important;
  }

  .lg\:cl--translate-y-56 {
    --transform-translate-y: -224px !important;
  }

  .lg\:cl--translate-y-64 {
    --transform-translate-y: -256px !important;
  }

  .lg\:cl--translate-y-px {
    --transform-translate-y: -1px !important;
  }

  .lg\:cl--translate-y-full {
    --transform-translate-y: -100% !important;
  }

  .lg\:cl--translate-y-1\/2 {
    --transform-translate-y: -50% !important;
  }

  .lg\:cl-translate-y-1\/2 {
    --transform-translate-y: 50% !important;
  }

  .lg\:cl-translate-y-full {
    --transform-translate-y: 100% !important;
  }

  .lg\:hover\:cl-translate-x-0:hover {
    --transform-translate-x: 0 !important;
  }

  .lg\:hover\:cl-translate-x-1:hover {
    --transform-translate-x: 4px !important;
  }

  .lg\:hover\:cl-translate-x-2:hover {
    --transform-translate-x: 8px !important;
  }

  .lg\:hover\:cl-translate-x-3:hover {
    --transform-translate-x: 12px !important;
  }

  .lg\:hover\:cl-translate-x-4:hover {
    --transform-translate-x: 16px !important;
  }

  .lg\:hover\:cl-translate-x-5:hover {
    --transform-translate-x: 20px !important;
  }

  .lg\:hover\:cl-translate-x-6:hover {
    --transform-translate-x: 24px !important;
  }

  .lg\:hover\:cl-translate-x-8:hover {
    --transform-translate-x: 32px !important;
  }

  .lg\:hover\:cl-translate-x-10:hover {
    --transform-translate-x: 40px !important;
  }

  .lg\:hover\:cl-translate-x-12:hover {
    --transform-translate-x: 48px !important;
  }

  .lg\:hover\:cl-translate-x-16:hover {
    --transform-translate-x: 64px !important;
  }

  .lg\:hover\:cl-translate-x-20:hover {
    --transform-translate-x: 80px !important;
  }

  .lg\:hover\:cl-translate-x-24:hover {
    --transform-translate-x: 96px !important;
  }

  .lg\:hover\:cl-translate-x-26:hover {
    --transform-translate-x: 100px !important;
  }

  .lg\:hover\:cl-translate-x-28:hover {
    --transform-translate-x: 110px !important;
  }

  .lg\:hover\:cl-translate-x-32:hover {
    --transform-translate-x: 128px !important;
  }

  .lg\:hover\:cl-translate-x-40:hover {
    --transform-translate-x: 160px !important;
  }

  .lg\:hover\:cl-translate-x-48:hover {
    --transform-translate-x: 192px !important;
  }

  .lg\:hover\:cl-translate-x-56:hover {
    --transform-translate-x: 224px !important;
  }

  .lg\:hover\:cl-translate-x-64:hover {
    --transform-translate-x: 256px !important;
  }

  .lg\:hover\:cl-translate-x-px:hover {
    --transform-translate-x: 1px !important;
  }

  .lg\:hover\:cl--translate-x-1:hover {
    --transform-translate-x: -4px !important;
  }

  .lg\:hover\:cl--translate-x-2:hover {
    --transform-translate-x: -8px !important;
  }

  .lg\:hover\:cl--translate-x-3:hover {
    --transform-translate-x: -12px !important;
  }

  .lg\:hover\:cl--translate-x-4:hover {
    --transform-translate-x: -16px !important;
  }

  .lg\:hover\:cl--translate-x-5:hover {
    --transform-translate-x: -20px !important;
  }

  .lg\:hover\:cl--translate-x-6:hover {
    --transform-translate-x: -24px !important;
  }

  .lg\:hover\:cl--translate-x-8:hover {
    --transform-translate-x: -32px !important;
  }

  .lg\:hover\:cl--translate-x-10:hover {
    --transform-translate-x: -40px !important;
  }

  .lg\:hover\:cl--translate-x-12:hover {
    --transform-translate-x: -48px !important;
  }

  .lg\:hover\:cl--translate-x-16:hover {
    --transform-translate-x: -64px !important;
  }

  .lg\:hover\:cl--translate-x-20:hover {
    --transform-translate-x: -80px !important;
  }

  .lg\:hover\:cl--translate-x-24:hover {
    --transform-translate-x: -96px !important;
  }

  .lg\:hover\:cl--translate-x-26:hover {
    --transform-translate-x: -100px !important;
  }

  .lg\:hover\:cl--translate-x-28:hover {
    --transform-translate-x: -110px !important;
  }

  .lg\:hover\:cl--translate-x-32:hover {
    --transform-translate-x: -128px !important;
  }

  .lg\:hover\:cl--translate-x-40:hover {
    --transform-translate-x: -160px !important;
  }

  .lg\:hover\:cl--translate-x-48:hover {
    --transform-translate-x: -192px !important;
  }

  .lg\:hover\:cl--translate-x-56:hover {
    --transform-translate-x: -224px !important;
  }

  .lg\:hover\:cl--translate-x-64:hover {
    --transform-translate-x: -256px !important;
  }

  .lg\:hover\:cl--translate-x-px:hover {
    --transform-translate-x: -1px !important;
  }

  .lg\:hover\:cl--translate-x-full:hover {
    --transform-translate-x: -100% !important;
  }

  .lg\:hover\:cl--translate-x-1\/2:hover {
    --transform-translate-x: -50% !important;
  }

  .lg\:hover\:cl-translate-x-1\/2:hover {
    --transform-translate-x: 50% !important;
  }

  .lg\:hover\:cl-translate-x-full:hover {
    --transform-translate-x: 100% !important;
  }

  .lg\:hover\:cl-translate-y-0:hover {
    --transform-translate-y: 0 !important;
  }

  .lg\:hover\:cl-translate-y-1:hover {
    --transform-translate-y: 4px !important;
  }

  .lg\:hover\:cl-translate-y-2:hover {
    --transform-translate-y: 8px !important;
  }

  .lg\:hover\:cl-translate-y-3:hover {
    --transform-translate-y: 12px !important;
  }

  .lg\:hover\:cl-translate-y-4:hover {
    --transform-translate-y: 16px !important;
  }

  .lg\:hover\:cl-translate-y-5:hover {
    --transform-translate-y: 20px !important;
  }

  .lg\:hover\:cl-translate-y-6:hover {
    --transform-translate-y: 24px !important;
  }

  .lg\:hover\:cl-translate-y-8:hover {
    --transform-translate-y: 32px !important;
  }

  .lg\:hover\:cl-translate-y-10:hover {
    --transform-translate-y: 40px !important;
  }

  .lg\:hover\:cl-translate-y-12:hover {
    --transform-translate-y: 48px !important;
  }

  .lg\:hover\:cl-translate-y-16:hover {
    --transform-translate-y: 64px !important;
  }

  .lg\:hover\:cl-translate-y-20:hover {
    --transform-translate-y: 80px !important;
  }

  .lg\:hover\:cl-translate-y-24:hover {
    --transform-translate-y: 96px !important;
  }

  .lg\:hover\:cl-translate-y-26:hover {
    --transform-translate-y: 100px !important;
  }

  .lg\:hover\:cl-translate-y-28:hover {
    --transform-translate-y: 110px !important;
  }

  .lg\:hover\:cl-translate-y-32:hover {
    --transform-translate-y: 128px !important;
  }

  .lg\:hover\:cl-translate-y-40:hover {
    --transform-translate-y: 160px !important;
  }

  .lg\:hover\:cl-translate-y-48:hover {
    --transform-translate-y: 192px !important;
  }

  .lg\:hover\:cl-translate-y-56:hover {
    --transform-translate-y: 224px !important;
  }

  .lg\:hover\:cl-translate-y-64:hover {
    --transform-translate-y: 256px !important;
  }

  .lg\:hover\:cl-translate-y-px:hover {
    --transform-translate-y: 1px !important;
  }

  .lg\:hover\:cl--translate-y-1:hover {
    --transform-translate-y: -4px !important;
  }

  .lg\:hover\:cl--translate-y-2:hover {
    --transform-translate-y: -8px !important;
  }

  .lg\:hover\:cl--translate-y-3:hover {
    --transform-translate-y: -12px !important;
  }

  .lg\:hover\:cl--translate-y-4:hover {
    --transform-translate-y: -16px !important;
  }

  .lg\:hover\:cl--translate-y-5:hover {
    --transform-translate-y: -20px !important;
  }

  .lg\:hover\:cl--translate-y-6:hover {
    --transform-translate-y: -24px !important;
  }

  .lg\:hover\:cl--translate-y-8:hover {
    --transform-translate-y: -32px !important;
  }

  .lg\:hover\:cl--translate-y-10:hover {
    --transform-translate-y: -40px !important;
  }

  .lg\:hover\:cl--translate-y-12:hover {
    --transform-translate-y: -48px !important;
  }

  .lg\:hover\:cl--translate-y-16:hover {
    --transform-translate-y: -64px !important;
  }

  .lg\:hover\:cl--translate-y-20:hover {
    --transform-translate-y: -80px !important;
  }

  .lg\:hover\:cl--translate-y-24:hover {
    --transform-translate-y: -96px !important;
  }

  .lg\:hover\:cl--translate-y-26:hover {
    --transform-translate-y: -100px !important;
  }

  .lg\:hover\:cl--translate-y-28:hover {
    --transform-translate-y: -110px !important;
  }

  .lg\:hover\:cl--translate-y-32:hover {
    --transform-translate-y: -128px !important;
  }

  .lg\:hover\:cl--translate-y-40:hover {
    --transform-translate-y: -160px !important;
  }

  .lg\:hover\:cl--translate-y-48:hover {
    --transform-translate-y: -192px !important;
  }

  .lg\:hover\:cl--translate-y-56:hover {
    --transform-translate-y: -224px !important;
  }

  .lg\:hover\:cl--translate-y-64:hover {
    --transform-translate-y: -256px !important;
  }

  .lg\:hover\:cl--translate-y-px:hover {
    --transform-translate-y: -1px !important;
  }

  .lg\:hover\:cl--translate-y-full:hover {
    --transform-translate-y: -100% !important;
  }

  .lg\:hover\:cl--translate-y-1\/2:hover {
    --transform-translate-y: -50% !important;
  }

  .lg\:hover\:cl-translate-y-1\/2:hover {
    --transform-translate-y: 50% !important;
  }

  .lg\:hover\:cl-translate-y-full:hover {
    --transform-translate-y: 100% !important;
  }

  .lg\:focus\:cl-translate-x-0:focus {
    --transform-translate-x: 0 !important;
  }

  .lg\:focus\:cl-translate-x-1:focus {
    --transform-translate-x: 4px !important;
  }

  .lg\:focus\:cl-translate-x-2:focus {
    --transform-translate-x: 8px !important;
  }

  .lg\:focus\:cl-translate-x-3:focus {
    --transform-translate-x: 12px !important;
  }

  .lg\:focus\:cl-translate-x-4:focus {
    --transform-translate-x: 16px !important;
  }

  .lg\:focus\:cl-translate-x-5:focus {
    --transform-translate-x: 20px !important;
  }

  .lg\:focus\:cl-translate-x-6:focus {
    --transform-translate-x: 24px !important;
  }

  .lg\:focus\:cl-translate-x-8:focus {
    --transform-translate-x: 32px !important;
  }

  .lg\:focus\:cl-translate-x-10:focus {
    --transform-translate-x: 40px !important;
  }

  .lg\:focus\:cl-translate-x-12:focus {
    --transform-translate-x: 48px !important;
  }

  .lg\:focus\:cl-translate-x-16:focus {
    --transform-translate-x: 64px !important;
  }

  .lg\:focus\:cl-translate-x-20:focus {
    --transform-translate-x: 80px !important;
  }

  .lg\:focus\:cl-translate-x-24:focus {
    --transform-translate-x: 96px !important;
  }

  .lg\:focus\:cl-translate-x-26:focus {
    --transform-translate-x: 100px !important;
  }

  .lg\:focus\:cl-translate-x-28:focus {
    --transform-translate-x: 110px !important;
  }

  .lg\:focus\:cl-translate-x-32:focus {
    --transform-translate-x: 128px !important;
  }

  .lg\:focus\:cl-translate-x-40:focus {
    --transform-translate-x: 160px !important;
  }

  .lg\:focus\:cl-translate-x-48:focus {
    --transform-translate-x: 192px !important;
  }

  .lg\:focus\:cl-translate-x-56:focus {
    --transform-translate-x: 224px !important;
  }

  .lg\:focus\:cl-translate-x-64:focus {
    --transform-translate-x: 256px !important;
  }

  .lg\:focus\:cl-translate-x-px:focus {
    --transform-translate-x: 1px !important;
  }

  .lg\:focus\:cl--translate-x-1:focus {
    --transform-translate-x: -4px !important;
  }

  .lg\:focus\:cl--translate-x-2:focus {
    --transform-translate-x: -8px !important;
  }

  .lg\:focus\:cl--translate-x-3:focus {
    --transform-translate-x: -12px !important;
  }

  .lg\:focus\:cl--translate-x-4:focus {
    --transform-translate-x: -16px !important;
  }

  .lg\:focus\:cl--translate-x-5:focus {
    --transform-translate-x: -20px !important;
  }

  .lg\:focus\:cl--translate-x-6:focus {
    --transform-translate-x: -24px !important;
  }

  .lg\:focus\:cl--translate-x-8:focus {
    --transform-translate-x: -32px !important;
  }

  .lg\:focus\:cl--translate-x-10:focus {
    --transform-translate-x: -40px !important;
  }

  .lg\:focus\:cl--translate-x-12:focus {
    --transform-translate-x: -48px !important;
  }

  .lg\:focus\:cl--translate-x-16:focus {
    --transform-translate-x: -64px !important;
  }

  .lg\:focus\:cl--translate-x-20:focus {
    --transform-translate-x: -80px !important;
  }

  .lg\:focus\:cl--translate-x-24:focus {
    --transform-translate-x: -96px !important;
  }

  .lg\:focus\:cl--translate-x-26:focus {
    --transform-translate-x: -100px !important;
  }

  .lg\:focus\:cl--translate-x-28:focus {
    --transform-translate-x: -110px !important;
  }

  .lg\:focus\:cl--translate-x-32:focus {
    --transform-translate-x: -128px !important;
  }

  .lg\:focus\:cl--translate-x-40:focus {
    --transform-translate-x: -160px !important;
  }

  .lg\:focus\:cl--translate-x-48:focus {
    --transform-translate-x: -192px !important;
  }

  .lg\:focus\:cl--translate-x-56:focus {
    --transform-translate-x: -224px !important;
  }

  .lg\:focus\:cl--translate-x-64:focus {
    --transform-translate-x: -256px !important;
  }

  .lg\:focus\:cl--translate-x-px:focus {
    --transform-translate-x: -1px !important;
  }

  .lg\:focus\:cl--translate-x-full:focus {
    --transform-translate-x: -100% !important;
  }

  .lg\:focus\:cl--translate-x-1\/2:focus {
    --transform-translate-x: -50% !important;
  }

  .lg\:focus\:cl-translate-x-1\/2:focus {
    --transform-translate-x: 50% !important;
  }

  .lg\:focus\:cl-translate-x-full:focus {
    --transform-translate-x: 100% !important;
  }

  .lg\:focus\:cl-translate-y-0:focus {
    --transform-translate-y: 0 !important;
  }

  .lg\:focus\:cl-translate-y-1:focus {
    --transform-translate-y: 4px !important;
  }

  .lg\:focus\:cl-translate-y-2:focus {
    --transform-translate-y: 8px !important;
  }

  .lg\:focus\:cl-translate-y-3:focus {
    --transform-translate-y: 12px !important;
  }

  .lg\:focus\:cl-translate-y-4:focus {
    --transform-translate-y: 16px !important;
  }

  .lg\:focus\:cl-translate-y-5:focus {
    --transform-translate-y: 20px !important;
  }

  .lg\:focus\:cl-translate-y-6:focus {
    --transform-translate-y: 24px !important;
  }

  .lg\:focus\:cl-translate-y-8:focus {
    --transform-translate-y: 32px !important;
  }

  .lg\:focus\:cl-translate-y-10:focus {
    --transform-translate-y: 40px !important;
  }

  .lg\:focus\:cl-translate-y-12:focus {
    --transform-translate-y: 48px !important;
  }

  .lg\:focus\:cl-translate-y-16:focus {
    --transform-translate-y: 64px !important;
  }

  .lg\:focus\:cl-translate-y-20:focus {
    --transform-translate-y: 80px !important;
  }

  .lg\:focus\:cl-translate-y-24:focus {
    --transform-translate-y: 96px !important;
  }

  .lg\:focus\:cl-translate-y-26:focus {
    --transform-translate-y: 100px !important;
  }

  .lg\:focus\:cl-translate-y-28:focus {
    --transform-translate-y: 110px !important;
  }

  .lg\:focus\:cl-translate-y-32:focus {
    --transform-translate-y: 128px !important;
  }

  .lg\:focus\:cl-translate-y-40:focus {
    --transform-translate-y: 160px !important;
  }

  .lg\:focus\:cl-translate-y-48:focus {
    --transform-translate-y: 192px !important;
  }

  .lg\:focus\:cl-translate-y-56:focus {
    --transform-translate-y: 224px !important;
  }

  .lg\:focus\:cl-translate-y-64:focus {
    --transform-translate-y: 256px !important;
  }

  .lg\:focus\:cl-translate-y-px:focus {
    --transform-translate-y: 1px !important;
  }

  .lg\:focus\:cl--translate-y-1:focus {
    --transform-translate-y: -4px !important;
  }

  .lg\:focus\:cl--translate-y-2:focus {
    --transform-translate-y: -8px !important;
  }

  .lg\:focus\:cl--translate-y-3:focus {
    --transform-translate-y: -12px !important;
  }

  .lg\:focus\:cl--translate-y-4:focus {
    --transform-translate-y: -16px !important;
  }

  .lg\:focus\:cl--translate-y-5:focus {
    --transform-translate-y: -20px !important;
  }

  .lg\:focus\:cl--translate-y-6:focus {
    --transform-translate-y: -24px !important;
  }

  .lg\:focus\:cl--translate-y-8:focus {
    --transform-translate-y: -32px !important;
  }

  .lg\:focus\:cl--translate-y-10:focus {
    --transform-translate-y: -40px !important;
  }

  .lg\:focus\:cl--translate-y-12:focus {
    --transform-translate-y: -48px !important;
  }

  .lg\:focus\:cl--translate-y-16:focus {
    --transform-translate-y: -64px !important;
  }

  .lg\:focus\:cl--translate-y-20:focus {
    --transform-translate-y: -80px !important;
  }

  .lg\:focus\:cl--translate-y-24:focus {
    --transform-translate-y: -96px !important;
  }

  .lg\:focus\:cl--translate-y-26:focus {
    --transform-translate-y: -100px !important;
  }

  .lg\:focus\:cl--translate-y-28:focus {
    --transform-translate-y: -110px !important;
  }

  .lg\:focus\:cl--translate-y-32:focus {
    --transform-translate-y: -128px !important;
  }

  .lg\:focus\:cl--translate-y-40:focus {
    --transform-translate-y: -160px !important;
  }

  .lg\:focus\:cl--translate-y-48:focus {
    --transform-translate-y: -192px !important;
  }

  .lg\:focus\:cl--translate-y-56:focus {
    --transform-translate-y: -224px !important;
  }

  .lg\:focus\:cl--translate-y-64:focus {
    --transform-translate-y: -256px !important;
  }

  .lg\:focus\:cl--translate-y-px:focus {
    --transform-translate-y: -1px !important;
  }

  .lg\:focus\:cl--translate-y-full:focus {
    --transform-translate-y: -100% !important;
  }

  .lg\:focus\:cl--translate-y-1\/2:focus {
    --transform-translate-y: -50% !important;
  }

  .lg\:focus\:cl-translate-y-1\/2:focus {
    --transform-translate-y: 50% !important;
  }

  .lg\:focus\:cl-translate-y-full:focus {
    --transform-translate-y: 100% !important;
  }

  .lg\:cl-skew-x-0 {
    --transform-skew-x: 0 !important;
  }

  .lg\:cl-skew-x-1 {
    --transform-skew-x: 1deg !important;
  }

  .lg\:cl-skew-x-2 {
    --transform-skew-x: 2deg !important;
  }

  .lg\:cl-skew-x-3 {
    --transform-skew-x: 3deg !important;
  }

  .lg\:cl-skew-x-6 {
    --transform-skew-x: 6deg !important;
  }

  .lg\:cl-skew-x-12 {
    --transform-skew-x: 12deg !important;
  }

  .lg\:cl--skew-x-12 {
    --transform-skew-x: -12deg !important;
  }

  .lg\:cl--skew-x-6 {
    --transform-skew-x: -6deg !important;
  }

  .lg\:cl--skew-x-3 {
    --transform-skew-x: -3deg !important;
  }

  .lg\:cl--skew-x-2 {
    --transform-skew-x: -2deg !important;
  }

  .lg\:cl--skew-x-1 {
    --transform-skew-x: -1deg !important;
  }

  .lg\:cl-skew-y-0 {
    --transform-skew-y: 0 !important;
  }

  .lg\:cl-skew-y-1 {
    --transform-skew-y: 1deg !important;
  }

  .lg\:cl-skew-y-2 {
    --transform-skew-y: 2deg !important;
  }

  .lg\:cl-skew-y-3 {
    --transform-skew-y: 3deg !important;
  }

  .lg\:cl-skew-y-6 {
    --transform-skew-y: 6deg !important;
  }

  .lg\:cl-skew-y-12 {
    --transform-skew-y: 12deg !important;
  }

  .lg\:cl--skew-y-12 {
    --transform-skew-y: -12deg !important;
  }

  .lg\:cl--skew-y-6 {
    --transform-skew-y: -6deg !important;
  }

  .lg\:cl--skew-y-3 {
    --transform-skew-y: -3deg !important;
  }

  .lg\:cl--skew-y-2 {
    --transform-skew-y: -2deg !important;
  }

  .lg\:cl--skew-y-1 {
    --transform-skew-y: -1deg !important;
  }

  .lg\:hover\:cl-skew-x-0:hover {
    --transform-skew-x: 0 !important;
  }

  .lg\:hover\:cl-skew-x-1:hover {
    --transform-skew-x: 1deg !important;
  }

  .lg\:hover\:cl-skew-x-2:hover {
    --transform-skew-x: 2deg !important;
  }

  .lg\:hover\:cl-skew-x-3:hover {
    --transform-skew-x: 3deg !important;
  }

  .lg\:hover\:cl-skew-x-6:hover {
    --transform-skew-x: 6deg !important;
  }

  .lg\:hover\:cl-skew-x-12:hover {
    --transform-skew-x: 12deg !important;
  }

  .lg\:hover\:cl--skew-x-12:hover {
    --transform-skew-x: -12deg !important;
  }

  .lg\:hover\:cl--skew-x-6:hover {
    --transform-skew-x: -6deg !important;
  }

  .lg\:hover\:cl--skew-x-3:hover {
    --transform-skew-x: -3deg !important;
  }

  .lg\:hover\:cl--skew-x-2:hover {
    --transform-skew-x: -2deg !important;
  }

  .lg\:hover\:cl--skew-x-1:hover {
    --transform-skew-x: -1deg !important;
  }

  .lg\:hover\:cl-skew-y-0:hover {
    --transform-skew-y: 0 !important;
  }

  .lg\:hover\:cl-skew-y-1:hover {
    --transform-skew-y: 1deg !important;
  }

  .lg\:hover\:cl-skew-y-2:hover {
    --transform-skew-y: 2deg !important;
  }

  .lg\:hover\:cl-skew-y-3:hover {
    --transform-skew-y: 3deg !important;
  }

  .lg\:hover\:cl-skew-y-6:hover {
    --transform-skew-y: 6deg !important;
  }

  .lg\:hover\:cl-skew-y-12:hover {
    --transform-skew-y: 12deg !important;
  }

  .lg\:hover\:cl--skew-y-12:hover {
    --transform-skew-y: -12deg !important;
  }

  .lg\:hover\:cl--skew-y-6:hover {
    --transform-skew-y: -6deg !important;
  }

  .lg\:hover\:cl--skew-y-3:hover {
    --transform-skew-y: -3deg !important;
  }

  .lg\:hover\:cl--skew-y-2:hover {
    --transform-skew-y: -2deg !important;
  }

  .lg\:hover\:cl--skew-y-1:hover {
    --transform-skew-y: -1deg !important;
  }

  .lg\:focus\:cl-skew-x-0:focus {
    --transform-skew-x: 0 !important;
  }

  .lg\:focus\:cl-skew-x-1:focus {
    --transform-skew-x: 1deg !important;
  }

  .lg\:focus\:cl-skew-x-2:focus {
    --transform-skew-x: 2deg !important;
  }

  .lg\:focus\:cl-skew-x-3:focus {
    --transform-skew-x: 3deg !important;
  }

  .lg\:focus\:cl-skew-x-6:focus {
    --transform-skew-x: 6deg !important;
  }

  .lg\:focus\:cl-skew-x-12:focus {
    --transform-skew-x: 12deg !important;
  }

  .lg\:focus\:cl--skew-x-12:focus {
    --transform-skew-x: -12deg !important;
  }

  .lg\:focus\:cl--skew-x-6:focus {
    --transform-skew-x: -6deg !important;
  }

  .lg\:focus\:cl--skew-x-3:focus {
    --transform-skew-x: -3deg !important;
  }

  .lg\:focus\:cl--skew-x-2:focus {
    --transform-skew-x: -2deg !important;
  }

  .lg\:focus\:cl--skew-x-1:focus {
    --transform-skew-x: -1deg !important;
  }

  .lg\:focus\:cl-skew-y-0:focus {
    --transform-skew-y: 0 !important;
  }

  .lg\:focus\:cl-skew-y-1:focus {
    --transform-skew-y: 1deg !important;
  }

  .lg\:focus\:cl-skew-y-2:focus {
    --transform-skew-y: 2deg !important;
  }

  .lg\:focus\:cl-skew-y-3:focus {
    --transform-skew-y: 3deg !important;
  }

  .lg\:focus\:cl-skew-y-6:focus {
    --transform-skew-y: 6deg !important;
  }

  .lg\:focus\:cl-skew-y-12:focus {
    --transform-skew-y: 12deg !important;
  }

  .lg\:focus\:cl--skew-y-12:focus {
    --transform-skew-y: -12deg !important;
  }

  .lg\:focus\:cl--skew-y-6:focus {
    --transform-skew-y: -6deg !important;
  }

  .lg\:focus\:cl--skew-y-3:focus {
    --transform-skew-y: -3deg !important;
  }

  .lg\:focus\:cl--skew-y-2:focus {
    --transform-skew-y: -2deg !important;
  }

  .lg\:focus\:cl--skew-y-1:focus {
    --transform-skew-y: -1deg !important;
  }

  .lg\:cl-transition-none {
    transition-property: none !important;
  }

  .lg\:cl-transition-all {
    transition-property: all !important;
  }

  .lg\:cl-transition {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
  }

  .lg\:cl-transition-colors {
    transition-property: background-color, border-color, color, fill, stroke !important;
  }

  .lg\:cl-transition-opacity {
    transition-property: opacity !important;
  }

  .lg\:cl-transition-shadow {
    transition-property: box-shadow !important;
  }

  .lg\:cl-transition-transform {
    transition-property: transform !important;
  }

  .lg\:cl-ease-linear {
    transition-timing-function: linear !important;
  }

  .lg\:cl-ease-in {
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important;
  }

  .lg\:cl-ease-out {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important;
  }

  .lg\:cl-ease-in-out {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .lg\:cl-duration-75 {
    transition-duration: 75ms !important;
  }

  .lg\:cl-duration-100 {
    transition-duration: 100ms !important;
  }

  .lg\:cl-duration-150 {
    transition-duration: 150ms !important;
  }

  .lg\:cl-duration-200 {
    transition-duration: 200ms !important;
  }

  .lg\:cl-duration-300 {
    transition-duration: 300ms !important;
  }

  .lg\:cl-duration-500 {
    transition-duration: 500ms !important;
  }

  .lg\:cl-duration-700 {
    transition-duration: 700ms !important;
  }

  .lg\:cl-duration-1000 {
    transition-duration: 1000ms !important;
  }

  .lg\:cl-delay-75 {
    transition-delay: 75ms !important;
  }

  .lg\:cl-delay-100 {
    transition-delay: 100ms !important;
  }

  .lg\:cl-delay-150 {
    transition-delay: 150ms !important;
  }

  .lg\:cl-delay-200 {
    transition-delay: 200ms !important;
  }

  .lg\:cl-delay-300 {
    transition-delay: 300ms !important;
  }

  .lg\:cl-delay-500 {
    transition-delay: 500ms !important;
  }

  .lg\:cl-delay-700 {
    transition-delay: 700ms !important;
  }

  .lg\:cl-delay-1000 {
    transition-delay: 1000ms !important;
  }

  .lg\:cl-animate-none {
    animation: none !important;
  }

  .lg\:cl-animate-spin {
    animation: spin 1s linear infinite !important;
  }

  .lg\:cl-animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
  }

  .lg\:cl-animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
  }

  .lg\:cl-animate-bounce {
    animation: bounce 1s infinite !important;
  }
}

@media (min-width: 1280px) {
  .xl\:cl-container {
    width: 100%;
  }

  @media (min-width: 640px) {
    .xl\:cl-container {
      max-width: 640px;
    }
  }

  @media (min-width: 768px) {
    .xl\:cl-container {
      max-width: 768px;
    }
  }

  @media (min-width: 1024px) {
    .xl\:cl-container {
      max-width: 1024px;
    }
  }

  @media (min-width: 1280px) {
    .xl\:cl-container {
      max-width: 1280px;
    }
  }

  .xl\:cl-space-y-0 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--space-y-reverse)) !important;
  }

  .xl\:cl-space-x-0 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl-space-y-1 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(4px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(4px * var(--space-y-reverse)) !important;
  }

  .xl\:cl-space-x-1 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(4px * var(--space-x-reverse)) !important;
    margin-left: calc(4px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl-space-y-2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(8px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(8px * var(--space-y-reverse)) !important;
  }

  .xl\:cl-space-x-2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(8px * var(--space-x-reverse)) !important;
    margin-left: calc(8px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl-space-y-3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(12px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(12px * var(--space-y-reverse)) !important;
  }

  .xl\:cl-space-x-3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(12px * var(--space-x-reverse)) !important;
    margin-left: calc(12px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl-space-y-4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(16px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(16px * var(--space-y-reverse)) !important;
  }

  .xl\:cl-space-x-4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(16px * var(--space-x-reverse)) !important;
    margin-left: calc(16px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl-space-y-5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(20px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(20px * var(--space-y-reverse)) !important;
  }

  .xl\:cl-space-x-5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(20px * var(--space-x-reverse)) !important;
    margin-left: calc(20px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl-space-y-6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(24px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(24px * var(--space-y-reverse)) !important;
  }

  .xl\:cl-space-x-6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(24px * var(--space-x-reverse)) !important;
    margin-left: calc(24px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl-space-y-8 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(32px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(32px * var(--space-y-reverse)) !important;
  }

  .xl\:cl-space-x-8 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(32px * var(--space-x-reverse)) !important;
    margin-left: calc(32px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl-space-y-10 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(40px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(40px * var(--space-y-reverse)) !important;
  }

  .xl\:cl-space-x-10 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(40px * var(--space-x-reverse)) !important;
    margin-left: calc(40px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl-space-y-12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(48px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(48px * var(--space-y-reverse)) !important;
  }

  .xl\:cl-space-x-12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(48px * var(--space-x-reverse)) !important;
    margin-left: calc(48px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl-space-y-16 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(64px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(64px * var(--space-y-reverse)) !important;
  }

  .xl\:cl-space-x-16 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(64px * var(--space-x-reverse)) !important;
    margin-left: calc(64px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl-space-y-20 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(80px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(80px * var(--space-y-reverse)) !important;
  }

  .xl\:cl-space-x-20 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(80px * var(--space-x-reverse)) !important;
    margin-left: calc(80px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl-space-y-24 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(96px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(96px * var(--space-y-reverse)) !important;
  }

  .xl\:cl-space-x-24 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(96px * var(--space-x-reverse)) !important;
    margin-left: calc(96px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl-space-y-26 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(100px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(100px * var(--space-y-reverse)) !important;
  }

  .xl\:cl-space-x-26 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(100px * var(--space-x-reverse)) !important;
    margin-left: calc(100px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl-space-y-28 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(110px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(110px * var(--space-y-reverse)) !important;
  }

  .xl\:cl-space-x-28 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(110px * var(--space-x-reverse)) !important;
    margin-left: calc(110px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl-space-y-32 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(128px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(128px * var(--space-y-reverse)) !important;
  }

  .xl\:cl-space-x-32 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(128px * var(--space-x-reverse)) !important;
    margin-left: calc(128px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl-space-y-40 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(160px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(160px * var(--space-y-reverse)) !important;
  }

  .xl\:cl-space-x-40 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(160px * var(--space-x-reverse)) !important;
    margin-left: calc(160px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl-space-y-48 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(192px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(192px * var(--space-y-reverse)) !important;
  }

  .xl\:cl-space-x-48 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(192px * var(--space-x-reverse)) !important;
    margin-left: calc(192px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl-space-y-56 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(224px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(224px * var(--space-y-reverse)) !important;
  }

  .xl\:cl-space-x-56 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(224px * var(--space-x-reverse)) !important;
    margin-left: calc(224px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl-space-y-64 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(256px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(256px * var(--space-y-reverse)) !important;
  }

  .xl\:cl-space-x-64 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(256px * var(--space-x-reverse)) !important;
    margin-left: calc(256px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl-space-y-px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(1px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(1px * var(--space-y-reverse)) !important;
  }

  .xl\:cl-space-x-px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(1px * var(--space-x-reverse)) !important;
    margin-left: calc(1px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl--space-y-1 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-4px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-4px * var(--space-y-reverse)) !important;
  }

  .xl\:cl--space-x-1 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-4px * var(--space-x-reverse)) !important;
    margin-left: calc(-4px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl--space-y-2 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-8px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-8px * var(--space-y-reverse)) !important;
  }

  .xl\:cl--space-x-2 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-8px * var(--space-x-reverse)) !important;
    margin-left: calc(-8px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl--space-y-3 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-12px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-12px * var(--space-y-reverse)) !important;
  }

  .xl\:cl--space-x-3 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-12px * var(--space-x-reverse)) !important;
    margin-left: calc(-12px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl--space-y-4 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-16px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-16px * var(--space-y-reverse)) !important;
  }

  .xl\:cl--space-x-4 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-16px * var(--space-x-reverse)) !important;
    margin-left: calc(-16px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl--space-y-5 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-20px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-20px * var(--space-y-reverse)) !important;
  }

  .xl\:cl--space-x-5 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-20px * var(--space-x-reverse)) !important;
    margin-left: calc(-20px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl--space-y-6 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-24px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-24px * var(--space-y-reverse)) !important;
  }

  .xl\:cl--space-x-6 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-24px * var(--space-x-reverse)) !important;
    margin-left: calc(-24px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl--space-y-8 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-32px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-32px * var(--space-y-reverse)) !important;
  }

  .xl\:cl--space-x-8 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-32px * var(--space-x-reverse)) !important;
    margin-left: calc(-32px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl--space-y-10 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-40px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-40px * var(--space-y-reverse)) !important;
  }

  .xl\:cl--space-x-10 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-40px * var(--space-x-reverse)) !important;
    margin-left: calc(-40px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl--space-y-12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-48px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-48px * var(--space-y-reverse)) !important;
  }

  .xl\:cl--space-x-12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-48px * var(--space-x-reverse)) !important;
    margin-left: calc(-48px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl--space-y-16 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-64px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-64px * var(--space-y-reverse)) !important;
  }

  .xl\:cl--space-x-16 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-64px * var(--space-x-reverse)) !important;
    margin-left: calc(-64px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl--space-y-20 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-80px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-80px * var(--space-y-reverse)) !important;
  }

  .xl\:cl--space-x-20 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-80px * var(--space-x-reverse)) !important;
    margin-left: calc(-80px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl--space-y-24 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-96px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-96px * var(--space-y-reverse)) !important;
  }

  .xl\:cl--space-x-24 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-96px * var(--space-x-reverse)) !important;
    margin-left: calc(-96px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl--space-y-26 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-100px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-100px * var(--space-y-reverse)) !important;
  }

  .xl\:cl--space-x-26 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-100px * var(--space-x-reverse)) !important;
    margin-left: calc(-100px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl--space-y-28 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-110px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-110px * var(--space-y-reverse)) !important;
  }

  .xl\:cl--space-x-28 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-110px * var(--space-x-reverse)) !important;
    margin-left: calc(-110px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl--space-y-32 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-128px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-128px * var(--space-y-reverse)) !important;
  }

  .xl\:cl--space-x-32 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-128px * var(--space-x-reverse)) !important;
    margin-left: calc(-128px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl--space-y-40 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-160px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-160px * var(--space-y-reverse)) !important;
  }

  .xl\:cl--space-x-40 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-160px * var(--space-x-reverse)) !important;
    margin-left: calc(-160px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl--space-y-48 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-192px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-192px * var(--space-y-reverse)) !important;
  }

  .xl\:cl--space-x-48 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-192px * var(--space-x-reverse)) !important;
    margin-left: calc(-192px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl--space-y-56 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-224px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-224px * var(--space-y-reverse)) !important;
  }

  .xl\:cl--space-x-56 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-224px * var(--space-x-reverse)) !important;
    margin-left: calc(-224px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl--space-y-64 > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-256px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-256px * var(--space-y-reverse)) !important;
  }

  .xl\:cl--space-x-64 > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-256px * var(--space-x-reverse)) !important;
    margin-left: calc(-256px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl--space-y-px > :not(template) ~ :not(template) {
    --space-y-reverse: 0 !important;
    margin-top: calc(-1px * calc(1 - var(--space-y-reverse))) !important;
    margin-bottom: calc(-1px * var(--space-y-reverse)) !important;
  }

  .xl\:cl--space-x-px > :not(template) ~ :not(template) {
    --space-x-reverse: 0 !important;
    margin-right: calc(-1px * var(--space-x-reverse)) !important;
    margin-left: calc(-1px * calc(1 - var(--space-x-reverse))) !important;
  }

  .xl\:cl-space-y-reverse > :not(template) ~ :not(template) {
    --space-y-reverse: 1 !important;
  }

  .xl\:cl-space-x-reverse > :not(template) ~ :not(template) {
    --space-x-reverse: 1 !important;
  }

  .xl\:cl-divide-y-0 > :not(template) ~ :not(template) {
    --divide-y-reverse: 0 !important;
    border-top-width: calc(0px * calc(1 - var(--divide-y-reverse))) !important;
    border-bottom-width: calc(0px * var(--divide-y-reverse)) !important;
  }

  .xl\:cl-divide-x-0 > :not(template) ~ :not(template) {
    --divide-x-reverse: 0 !important;
    border-right-width: calc(0px * var(--divide-x-reverse)) !important;
    border-left-width: calc(0px * calc(1 - var(--divide-x-reverse))) !important;
  }

  .xl\:cl-divide-y-2 > :not(template) ~ :not(template) {
    --divide-y-reverse: 0 !important;
    border-top-width: calc(2px * calc(1 - var(--divide-y-reverse))) !important;
    border-bottom-width: calc(2px * var(--divide-y-reverse)) !important;
  }

  .xl\:cl-divide-x-2 > :not(template) ~ :not(template) {
    --divide-x-reverse: 0 !important;
    border-right-width: calc(2px * var(--divide-x-reverse)) !important;
    border-left-width: calc(2px * calc(1 - var(--divide-x-reverse))) !important;
  }

  .xl\:cl-divide-y-4 > :not(template) ~ :not(template) {
    --divide-y-reverse: 0 !important;
    border-top-width: calc(4px * calc(1 - var(--divide-y-reverse))) !important;
    border-bottom-width: calc(4px * var(--divide-y-reverse)) !important;
  }

  .xl\:cl-divide-x-4 > :not(template) ~ :not(template) {
    --divide-x-reverse: 0 !important;
    border-right-width: calc(4px * var(--divide-x-reverse)) !important;
    border-left-width: calc(4px * calc(1 - var(--divide-x-reverse))) !important;
  }

  .xl\:cl-divide-y-8 > :not(template) ~ :not(template) {
    --divide-y-reverse: 0 !important;
    border-top-width: calc(8px * calc(1 - var(--divide-y-reverse))) !important;
    border-bottom-width: calc(8px * var(--divide-y-reverse)) !important;
  }

  .xl\:cl-divide-x-8 > :not(template) ~ :not(template) {
    --divide-x-reverse: 0 !important;
    border-right-width: calc(8px * var(--divide-x-reverse)) !important;
    border-left-width: calc(8px * calc(1 - var(--divide-x-reverse))) !important;
  }

  .xl\:cl-divide-y-15 > :not(template) ~ :not(template) {
    --divide-y-reverse: 0 !important;
    border-top-width: calc(15px * calc(1 - var(--divide-y-reverse))) !important;
    border-bottom-width: calc(15px * var(--divide-y-reverse)) !important;
  }

  .xl\:cl-divide-x-15 > :not(template) ~ :not(template) {
    --divide-x-reverse: 0 !important;
    border-right-width: calc(15px * var(--divide-x-reverse)) !important;
    border-left-width: calc(15px * calc(1 - var(--divide-x-reverse))) !important;
  }

  .xl\:cl-divide-y > :not(template) ~ :not(template) {
    --divide-y-reverse: 0 !important;
    border-top-width: calc(1px * calc(1 - var(--divide-y-reverse))) !important;
    border-bottom-width: calc(1px * var(--divide-y-reverse)) !important;
  }

  .xl\:cl-divide-x > :not(template) ~ :not(template) {
    --divide-x-reverse: 0 !important;
    border-right-width: calc(1px * var(--divide-x-reverse)) !important;
    border-left-width: calc(1px * calc(1 - var(--divide-x-reverse))) !important;
  }

  .xl\:cl-divide-y-reverse > :not(template) ~ :not(template) {
    --divide-y-reverse: 1 !important;
  }

  .xl\:cl-divide-x-reverse > :not(template) ~ :not(template) {
    --divide-x-reverse: 1 !important;
  }

  .xl\:cl-divide-transparent > :not(template) ~ :not(template) {
    border-color: transparent !important;
  }

  .xl\:cl-divide-current > :not(template) ~ :not(template) {
    border-color: currentColor !important;
  }

  .xl\:cl-divide-black > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #000 !important;
    border-color: rgba(0, 0, 0, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-white > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fff !important;
    border-color: rgba(255, 255, 255, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-gray-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #f7fafc !important;
    border-color: rgba(247, 250, 252, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-gray-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #edf2f7 !important;
    border-color: rgba(237, 242, 247, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-gray-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #e2e8f0 !important;
    border-color: rgba(226, 232, 240, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-gray-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #cbd5e0 !important;
    border-color: rgba(203, 213, 224, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-gray-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #a0aec0 !important;
    border-color: rgba(160, 174, 192, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-gray-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #718096 !important;
    border-color: rgba(113, 128, 150, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-gray-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #4a5568 !important;
    border-color: rgba(74, 85, 104, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-gray-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #2d3748 !important;
    border-color: rgba(45, 55, 72, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-gray-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #1a202c !important;
    border-color: rgba(26, 32, 44, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-red-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fff5f5 !important;
    border-color: rgba(255, 245, 245, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-red-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fed7d7 !important;
    border-color: rgba(254, 215, 215, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-red-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #feb2b2 !important;
    border-color: rgba(254, 178, 178, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-red-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fc8181 !important;
    border-color: rgba(252, 129, 129, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-red-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #f56565 !important;
    border-color: rgba(245, 101, 101, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-red-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #e53e3e !important;
    border-color: rgba(229, 62, 62, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-red-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #c53030 !important;
    border-color: rgba(197, 48, 48, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-red-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #9b2c2c !important;
    border-color: rgba(155, 44, 44, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-red-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #742a2a !important;
    border-color: rgba(116, 42, 42, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-orange-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fffaf0 !important;
    border-color: rgba(255, 250, 240, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-orange-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #feebc8 !important;
    border-color: rgba(254, 235, 200, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-orange-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fbd38d !important;
    border-color: rgba(251, 211, 141, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-orange-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #f6ad55 !important;
    border-color: rgba(246, 173, 85, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-orange-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #ed8936 !important;
    border-color: rgba(237, 137, 54, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-orange-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #dd6b20 !important;
    border-color: rgba(221, 107, 32, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-orange-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #c05621 !important;
    border-color: rgba(192, 86, 33, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-orange-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #9c4221 !important;
    border-color: rgba(156, 66, 33, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-orange-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #7b341e !important;
    border-color: rgba(123, 52, 30, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-yellow-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fffff0 !important;
    border-color: rgba(255, 255, 240, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-yellow-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fefcbf !important;
    border-color: rgba(254, 252, 191, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-yellow-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #faf089 !important;
    border-color: rgba(250, 240, 137, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-yellow-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #f6e05e !important;
    border-color: rgba(246, 224, 94, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-yellow-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #ecc94b !important;
    border-color: rgba(236, 201, 75, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-yellow-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #d69e2e !important;
    border-color: rgba(214, 158, 46, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-yellow-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #b7791f !important;
    border-color: rgba(183, 121, 31, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-yellow-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #975a16 !important;
    border-color: rgba(151, 90, 22, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-yellow-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #744210 !important;
    border-color: rgba(116, 66, 16, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-green-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #f0fff4 !important;
    border-color: rgba(240, 255, 244, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-green-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #c6f6d5 !important;
    border-color: rgba(198, 246, 213, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-green-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #9ae6b4 !important;
    border-color: rgba(154, 230, 180, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-green-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #68d391 !important;
    border-color: rgba(104, 211, 145, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-green-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #48bb78 !important;
    border-color: rgba(72, 187, 120, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-green-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #38a169 !important;
    border-color: rgba(56, 161, 105, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-green-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #2f855a !important;
    border-color: rgba(47, 133, 90, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-green-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #276749 !important;
    border-color: rgba(39, 103, 73, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-green-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #22543d !important;
    border-color: rgba(34, 84, 61, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-teal-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #e6fffa !important;
    border-color: rgba(230, 255, 250, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-teal-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #b2f5ea !important;
    border-color: rgba(178, 245, 234, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-teal-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #81e6d9 !important;
    border-color: rgba(129, 230, 217, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-teal-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #4fd1c5 !important;
    border-color: rgba(79, 209, 197, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-teal-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #38b2ac !important;
    border-color: rgba(56, 178, 172, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-teal-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #319795 !important;
    border-color: rgba(49, 151, 149, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-teal-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #2c7a7b !important;
    border-color: rgba(44, 122, 123, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-teal-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #285e61 !important;
    border-color: rgba(40, 94, 97, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-teal-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #234e52 !important;
    border-color: rgba(35, 78, 82, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-blue-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #ebf8ff !important;
    border-color: rgba(235, 248, 255, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-blue-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #bee3f8 !important;
    border-color: rgba(190, 227, 248, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-blue-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #90cdf4 !important;
    border-color: rgba(144, 205, 244, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-blue-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #63b3ed !important;
    border-color: rgba(99, 179, 237, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-blue-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #4299e1 !important;
    border-color: rgba(66, 153, 225, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-blue-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #3182ce !important;
    border-color: rgba(49, 130, 206, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-blue-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #2b6cb0 !important;
    border-color: rgba(43, 108, 176, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-blue-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #2c5282 !important;
    border-color: rgba(44, 82, 130, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-blue-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #2a4365 !important;
    border-color: rgba(42, 67, 101, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-indigo-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #ebf4ff !important;
    border-color: rgba(235, 244, 255, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-indigo-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #c3dafe !important;
    border-color: rgba(195, 218, 254, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-indigo-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #a3bffa !important;
    border-color: rgba(163, 191, 250, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-indigo-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #7f9cf5 !important;
    border-color: rgba(127, 156, 245, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-indigo-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #667eea !important;
    border-color: rgba(102, 126, 234, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-indigo-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #5a67d8 !important;
    border-color: rgba(90, 103, 216, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-indigo-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #4c51bf !important;
    border-color: rgba(76, 81, 191, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-indigo-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #434190 !important;
    border-color: rgba(67, 65, 144, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-indigo-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #3c366b !important;
    border-color: rgba(60, 54, 107, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-purple-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #faf5ff !important;
    border-color: rgba(250, 245, 255, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-purple-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #e9d8fd !important;
    border-color: rgba(233, 216, 253, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-purple-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #d6bcfa !important;
    border-color: rgba(214, 188, 250, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-purple-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #b794f4 !important;
    border-color: rgba(183, 148, 244, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-purple-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #9f7aea !important;
    border-color: rgba(159, 122, 234, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-purple-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #805ad5 !important;
    border-color: rgba(128, 90, 213, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-purple-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #6b46c1 !important;
    border-color: rgba(107, 70, 193, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-purple-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #553c9a !important;
    border-color: rgba(85, 60, 154, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-purple-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #44337a !important;
    border-color: rgba(68, 51, 122, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-pink-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fff5f7 !important;
    border-color: rgba(255, 245, 247, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-pink-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fed7e2 !important;
    border-color: rgba(254, 215, 226, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-pink-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #fbb6ce !important;
    border-color: rgba(251, 182, 206, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-pink-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #f687b3 !important;
    border-color: rgba(246, 135, 179, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-pink-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #ed64a6 !important;
    border-color: rgba(237, 100, 166, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-pink-600 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #d53f8c !important;
    border-color: rgba(213, 63, 140, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-pink-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #b83280 !important;
    border-color: rgba(184, 50, 128, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-pink-800 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #97266d !important;
    border-color: rgba(151, 38, 109, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-pink-900 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #702459 !important;
    border-color: rgba(112, 36, 89, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-ui-gray-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #f1f1f1 !important;
    border-color: rgba(241, 241, 241, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-ui-brown-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #f3ecdc !important;
    border-color: rgba(243, 236, 220, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-ui-brown-200 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #e8e0c9 !important;
    border-color: rgba(232, 224, 201, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-ui-brown-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #d0c095 !important;
    border-color: rgba(208, 192, 149, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-ui-brown-700 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #bd6005 !important;
    border-color: rgba(189, 96, 5, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-ui-green-300 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #aac74c !important;
    border-color: rgba(170, 199, 76, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-ui-green-400 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #71893e !important;
    border-color: rgba(113, 137, 62, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-ui-orange-500 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #e27212 !important;
    border-color: rgba(226, 114, 18, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-facebook > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #3b5998 !important;
    border-color: rgba(59, 89, 152, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-twitter > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #00acee !important;
    border-color: rgba(0, 172, 238, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-twitch > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #6441a5 !important;
    border-color: rgba(100, 65, 165, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-youtube > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
    border-color: #FF0000 !important;
    border-color: rgba(255, 0, 0, var(--divide-opacity)) !important;
  }

  .xl\:cl-divide-solid > :not(template) ~ :not(template) {
    border-style: solid !important;
  }

  .xl\:cl-divide-dashed > :not(template) ~ :not(template) {
    border-style: dashed !important;
  }

  .xl\:cl-divide-dotted > :not(template) ~ :not(template) {
    border-style: dotted !important;
  }

  .xl\:cl-divide-double > :not(template) ~ :not(template) {
    border-style: double !important;
  }

  .xl\:cl-divide-none > :not(template) ~ :not(template) {
    border-style: none !important;
  }

  .xl\:cl-divide-opacity-0 > :not(template) ~ :not(template) {
    --divide-opacity: 0 !important;
  }

  .xl\:cl-divide-opacity-25 > :not(template) ~ :not(template) {
    --divide-opacity: 0.25 !important;
  }

  .xl\:cl-divide-opacity-50 > :not(template) ~ :not(template) {
    --divide-opacity: 0.5 !important;
  }

  .xl\:cl-divide-opacity-75 > :not(template) ~ :not(template) {
    --divide-opacity: 0.75 !important;
  }

  .xl\:cl-divide-opacity-100 > :not(template) ~ :not(template) {
    --divide-opacity: 1 !important;
  }

  .xl\:cl-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .xl\:cl-not-sr-only {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .xl\:focus\:cl-sr-only:focus {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .xl\:focus\:cl-not-sr-only:focus {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .xl\:cl-appearance-none {
    -webkit-appearance: none !important;
       -moz-appearance: none !important;
            appearance: none !important;
  }

  .xl\:cl-bg-fixed {
    background-attachment: fixed !important;
  }

  .xl\:cl-bg-local {
    background-attachment: local !important;
  }

  .xl\:cl-bg-scroll {
    background-attachment: scroll !important;
  }

  .xl\:cl-bg-clip-border {
    background-clip: border-box !important;
  }

  .xl\:cl-bg-clip-padding {
    background-clip: padding-box !important;
  }

  .xl\:cl-bg-clip-content {
    background-clip: content-box !important;
  }

  .xl\:cl-bg-clip-text {
    -webkit-background-clip: text !important;
            background-clip: text !important;
  }

  .xl\:cl-bg-transparent {
    background-color: transparent !important;
  }

  .xl\:cl-bg-current {
    background-color: currentColor !important;
  }

  .xl\:cl-bg-black {
    --bg-opacity: 1 !important;
    background-color: #000 !important;
    background-color: rgba(0, 0, 0, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-white {
    --bg-opacity: 1 !important;
    background-color: #fff !important;
    background-color: rgba(255, 255, 255, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-gray-100 {
    --bg-opacity: 1 !important;
    background-color: #f7fafc !important;
    background-color: rgba(247, 250, 252, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-gray-200 {
    --bg-opacity: 1 !important;
    background-color: #edf2f7 !important;
    background-color: rgba(237, 242, 247, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-gray-300 {
    --bg-opacity: 1 !important;
    background-color: #e2e8f0 !important;
    background-color: rgba(226, 232, 240, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-gray-400 {
    --bg-opacity: 1 !important;
    background-color: #cbd5e0 !important;
    background-color: rgba(203, 213, 224, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-gray-500 {
    --bg-opacity: 1 !important;
    background-color: #a0aec0 !important;
    background-color: rgba(160, 174, 192, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-gray-600 {
    --bg-opacity: 1 !important;
    background-color: #718096 !important;
    background-color: rgba(113, 128, 150, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-gray-700 {
    --bg-opacity: 1 !important;
    background-color: #4a5568 !important;
    background-color: rgba(74, 85, 104, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-gray-800 {
    --bg-opacity: 1 !important;
    background-color: #2d3748 !important;
    background-color: rgba(45, 55, 72, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-gray-900 {
    --bg-opacity: 1 !important;
    background-color: #1a202c !important;
    background-color: rgba(26, 32, 44, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-red-100 {
    --bg-opacity: 1 !important;
    background-color: #fff5f5 !important;
    background-color: rgba(255, 245, 245, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-red-200 {
    --bg-opacity: 1 !important;
    background-color: #fed7d7 !important;
    background-color: rgba(254, 215, 215, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-red-300 {
    --bg-opacity: 1 !important;
    background-color: #feb2b2 !important;
    background-color: rgba(254, 178, 178, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-red-400 {
    --bg-opacity: 1 !important;
    background-color: #fc8181 !important;
    background-color: rgba(252, 129, 129, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-red-500 {
    --bg-opacity: 1 !important;
    background-color: #f56565 !important;
    background-color: rgba(245, 101, 101, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-red-600 {
    --bg-opacity: 1 !important;
    background-color: #e53e3e !important;
    background-color: rgba(229, 62, 62, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-red-700 {
    --bg-opacity: 1 !important;
    background-color: #c53030 !important;
    background-color: rgba(197, 48, 48, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-red-800 {
    --bg-opacity: 1 !important;
    background-color: #9b2c2c !important;
    background-color: rgba(155, 44, 44, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-red-900 {
    --bg-opacity: 1 !important;
    background-color: #742a2a !important;
    background-color: rgba(116, 42, 42, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-orange-100 {
    --bg-opacity: 1 !important;
    background-color: #fffaf0 !important;
    background-color: rgba(255, 250, 240, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-orange-200 {
    --bg-opacity: 1 !important;
    background-color: #feebc8 !important;
    background-color: rgba(254, 235, 200, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-orange-300 {
    --bg-opacity: 1 !important;
    background-color: #fbd38d !important;
    background-color: rgba(251, 211, 141, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-orange-400 {
    --bg-opacity: 1 !important;
    background-color: #f6ad55 !important;
    background-color: rgba(246, 173, 85, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-orange-500 {
    --bg-opacity: 1 !important;
    background-color: #ed8936 !important;
    background-color: rgba(237, 137, 54, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-orange-600 {
    --bg-opacity: 1 !important;
    background-color: #dd6b20 !important;
    background-color: rgba(221, 107, 32, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-orange-700 {
    --bg-opacity: 1 !important;
    background-color: #c05621 !important;
    background-color: rgba(192, 86, 33, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-orange-800 {
    --bg-opacity: 1 !important;
    background-color: #9c4221 !important;
    background-color: rgba(156, 66, 33, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-orange-900 {
    --bg-opacity: 1 !important;
    background-color: #7b341e !important;
    background-color: rgba(123, 52, 30, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-yellow-100 {
    --bg-opacity: 1 !important;
    background-color: #fffff0 !important;
    background-color: rgba(255, 255, 240, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-yellow-200 {
    --bg-opacity: 1 !important;
    background-color: #fefcbf !important;
    background-color: rgba(254, 252, 191, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-yellow-300 {
    --bg-opacity: 1 !important;
    background-color: #faf089 !important;
    background-color: rgba(250, 240, 137, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-yellow-400 {
    --bg-opacity: 1 !important;
    background-color: #f6e05e !important;
    background-color: rgba(246, 224, 94, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-yellow-500 {
    --bg-opacity: 1 !important;
    background-color: #ecc94b !important;
    background-color: rgba(236, 201, 75, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-yellow-600 {
    --bg-opacity: 1 !important;
    background-color: #d69e2e !important;
    background-color: rgba(214, 158, 46, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-yellow-700 {
    --bg-opacity: 1 !important;
    background-color: #b7791f !important;
    background-color: rgba(183, 121, 31, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-yellow-800 {
    --bg-opacity: 1 !important;
    background-color: #975a16 !important;
    background-color: rgba(151, 90, 22, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-yellow-900 {
    --bg-opacity: 1 !important;
    background-color: #744210 !important;
    background-color: rgba(116, 66, 16, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-green-100 {
    --bg-opacity: 1 !important;
    background-color: #f0fff4 !important;
    background-color: rgba(240, 255, 244, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-green-200 {
    --bg-opacity: 1 !important;
    background-color: #c6f6d5 !important;
    background-color: rgba(198, 246, 213, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-green-300 {
    --bg-opacity: 1 !important;
    background-color: #9ae6b4 !important;
    background-color: rgba(154, 230, 180, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-green-400 {
    --bg-opacity: 1 !important;
    background-color: #68d391 !important;
    background-color: rgba(104, 211, 145, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-green-500 {
    --bg-opacity: 1 !important;
    background-color: #48bb78 !important;
    background-color: rgba(72, 187, 120, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-green-600 {
    --bg-opacity: 1 !important;
    background-color: #38a169 !important;
    background-color: rgba(56, 161, 105, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-green-700 {
    --bg-opacity: 1 !important;
    background-color: #2f855a !important;
    background-color: rgba(47, 133, 90, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-green-800 {
    --bg-opacity: 1 !important;
    background-color: #276749 !important;
    background-color: rgba(39, 103, 73, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-green-900 {
    --bg-opacity: 1 !important;
    background-color: #22543d !important;
    background-color: rgba(34, 84, 61, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-teal-100 {
    --bg-opacity: 1 !important;
    background-color: #e6fffa !important;
    background-color: rgba(230, 255, 250, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-teal-200 {
    --bg-opacity: 1 !important;
    background-color: #b2f5ea !important;
    background-color: rgba(178, 245, 234, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-teal-300 {
    --bg-opacity: 1 !important;
    background-color: #81e6d9 !important;
    background-color: rgba(129, 230, 217, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-teal-400 {
    --bg-opacity: 1 !important;
    background-color: #4fd1c5 !important;
    background-color: rgba(79, 209, 197, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-teal-500 {
    --bg-opacity: 1 !important;
    background-color: #38b2ac !important;
    background-color: rgba(56, 178, 172, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-teal-600 {
    --bg-opacity: 1 !important;
    background-color: #319795 !important;
    background-color: rgba(49, 151, 149, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-teal-700 {
    --bg-opacity: 1 !important;
    background-color: #2c7a7b !important;
    background-color: rgba(44, 122, 123, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-teal-800 {
    --bg-opacity: 1 !important;
    background-color: #285e61 !important;
    background-color: rgba(40, 94, 97, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-teal-900 {
    --bg-opacity: 1 !important;
    background-color: #234e52 !important;
    background-color: rgba(35, 78, 82, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-blue-100 {
    --bg-opacity: 1 !important;
    background-color: #ebf8ff !important;
    background-color: rgba(235, 248, 255, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-blue-200 {
    --bg-opacity: 1 !important;
    background-color: #bee3f8 !important;
    background-color: rgba(190, 227, 248, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-blue-300 {
    --bg-opacity: 1 !important;
    background-color: #90cdf4 !important;
    background-color: rgba(144, 205, 244, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-blue-400 {
    --bg-opacity: 1 !important;
    background-color: #63b3ed !important;
    background-color: rgba(99, 179, 237, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-blue-500 {
    --bg-opacity: 1 !important;
    background-color: #4299e1 !important;
    background-color: rgba(66, 153, 225, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-blue-600 {
    --bg-opacity: 1 !important;
    background-color: #3182ce !important;
    background-color: rgba(49, 130, 206, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-blue-700 {
    --bg-opacity: 1 !important;
    background-color: #2b6cb0 !important;
    background-color: rgba(43, 108, 176, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-blue-800 {
    --bg-opacity: 1 !important;
    background-color: #2c5282 !important;
    background-color: rgba(44, 82, 130, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-blue-900 {
    --bg-opacity: 1 !important;
    background-color: #2a4365 !important;
    background-color: rgba(42, 67, 101, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-indigo-100 {
    --bg-opacity: 1 !important;
    background-color: #ebf4ff !important;
    background-color: rgba(235, 244, 255, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-indigo-200 {
    --bg-opacity: 1 !important;
    background-color: #c3dafe !important;
    background-color: rgba(195, 218, 254, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-indigo-300 {
    --bg-opacity: 1 !important;
    background-color: #a3bffa !important;
    background-color: rgba(163, 191, 250, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-indigo-400 {
    --bg-opacity: 1 !important;
    background-color: #7f9cf5 !important;
    background-color: rgba(127, 156, 245, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-indigo-500 {
    --bg-opacity: 1 !important;
    background-color: #667eea !important;
    background-color: rgba(102, 126, 234, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-indigo-600 {
    --bg-opacity: 1 !important;
    background-color: #5a67d8 !important;
    background-color: rgba(90, 103, 216, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-indigo-700 {
    --bg-opacity: 1 !important;
    background-color: #4c51bf !important;
    background-color: rgba(76, 81, 191, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-indigo-800 {
    --bg-opacity: 1 !important;
    background-color: #434190 !important;
    background-color: rgba(67, 65, 144, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-indigo-900 {
    --bg-opacity: 1 !important;
    background-color: #3c366b !important;
    background-color: rgba(60, 54, 107, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-purple-100 {
    --bg-opacity: 1 !important;
    background-color: #faf5ff !important;
    background-color: rgba(250, 245, 255, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-purple-200 {
    --bg-opacity: 1 !important;
    background-color: #e9d8fd !important;
    background-color: rgba(233, 216, 253, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-purple-300 {
    --bg-opacity: 1 !important;
    background-color: #d6bcfa !important;
    background-color: rgba(214, 188, 250, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-purple-400 {
    --bg-opacity: 1 !important;
    background-color: #b794f4 !important;
    background-color: rgba(183, 148, 244, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-purple-500 {
    --bg-opacity: 1 !important;
    background-color: #9f7aea !important;
    background-color: rgba(159, 122, 234, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-purple-600 {
    --bg-opacity: 1 !important;
    background-color: #805ad5 !important;
    background-color: rgba(128, 90, 213, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-purple-700 {
    --bg-opacity: 1 !important;
    background-color: #6b46c1 !important;
    background-color: rgba(107, 70, 193, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-purple-800 {
    --bg-opacity: 1 !important;
    background-color: #553c9a !important;
    background-color: rgba(85, 60, 154, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-purple-900 {
    --bg-opacity: 1 !important;
    background-color: #44337a !important;
    background-color: rgba(68, 51, 122, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-pink-100 {
    --bg-opacity: 1 !important;
    background-color: #fff5f7 !important;
    background-color: rgba(255, 245, 247, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-pink-200 {
    --bg-opacity: 1 !important;
    background-color: #fed7e2 !important;
    background-color: rgba(254, 215, 226, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-pink-300 {
    --bg-opacity: 1 !important;
    background-color: #fbb6ce !important;
    background-color: rgba(251, 182, 206, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-pink-400 {
    --bg-opacity: 1 !important;
    background-color: #f687b3 !important;
    background-color: rgba(246, 135, 179, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-pink-500 {
    --bg-opacity: 1 !important;
    background-color: #ed64a6 !important;
    background-color: rgba(237, 100, 166, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-pink-600 {
    --bg-opacity: 1 !important;
    background-color: #d53f8c !important;
    background-color: rgba(213, 63, 140, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-pink-700 {
    --bg-opacity: 1 !important;
    background-color: #b83280 !important;
    background-color: rgba(184, 50, 128, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-pink-800 {
    --bg-opacity: 1 !important;
    background-color: #97266d !important;
    background-color: rgba(151, 38, 109, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-pink-900 {
    --bg-opacity: 1 !important;
    background-color: #702459 !important;
    background-color: rgba(112, 36, 89, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-ui-gray-100 {
    --bg-opacity: 1 !important;
    background-color: #f1f1f1 !important;
    background-color: rgba(241, 241, 241, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-ui-brown-100 {
    --bg-opacity: 1 !important;
    background-color: #f3ecdc !important;
    background-color: rgba(243, 236, 220, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-ui-brown-200 {
    --bg-opacity: 1 !important;
    background-color: #e8e0c9 !important;
    background-color: rgba(232, 224, 201, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-ui-brown-300 {
    --bg-opacity: 1 !important;
    background-color: #d0c095 !important;
    background-color: rgba(208, 192, 149, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-ui-brown-700 {
    --bg-opacity: 1 !important;
    background-color: #bd6005 !important;
    background-color: rgba(189, 96, 5, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-ui-green-300 {
    --bg-opacity: 1 !important;
    background-color: #aac74c !important;
    background-color: rgba(170, 199, 76, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-ui-green-400 {
    --bg-opacity: 1 !important;
    background-color: #71893e !important;
    background-color: rgba(113, 137, 62, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-ui-orange-500 {
    --bg-opacity: 1 !important;
    background-color: #e27212 !important;
    background-color: rgba(226, 114, 18, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-facebook {
    --bg-opacity: 1 !important;
    background-color: #3b5998 !important;
    background-color: rgba(59, 89, 152, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-twitter {
    --bg-opacity: 1 !important;
    background-color: #00acee !important;
    background-color: rgba(0, 172, 238, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-twitch {
    --bg-opacity: 1 !important;
    background-color: #6441a5 !important;
    background-color: rgba(100, 65, 165, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-youtube {
    --bg-opacity: 1 !important;
    background-color: #FF0000 !important;
    background-color: rgba(255, 0, 0, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-transparent:hover {
    background-color: transparent !important;
  }

  .xl\:hover\:cl-bg-current:hover {
    background-color: currentColor !important;
  }

  .xl\:hover\:cl-bg-black:hover {
    --bg-opacity: 1 !important;
    background-color: #000 !important;
    background-color: rgba(0, 0, 0, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-white:hover {
    --bg-opacity: 1 !important;
    background-color: #fff !important;
    background-color: rgba(255, 255, 255, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-gray-100:hover {
    --bg-opacity: 1 !important;
    background-color: #f7fafc !important;
    background-color: rgba(247, 250, 252, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-gray-200:hover {
    --bg-opacity: 1 !important;
    background-color: #edf2f7 !important;
    background-color: rgba(237, 242, 247, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-gray-300:hover {
    --bg-opacity: 1 !important;
    background-color: #e2e8f0 !important;
    background-color: rgba(226, 232, 240, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-gray-400:hover {
    --bg-opacity: 1 !important;
    background-color: #cbd5e0 !important;
    background-color: rgba(203, 213, 224, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-gray-500:hover {
    --bg-opacity: 1 !important;
    background-color: #a0aec0 !important;
    background-color: rgba(160, 174, 192, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-gray-600:hover {
    --bg-opacity: 1 !important;
    background-color: #718096 !important;
    background-color: rgba(113, 128, 150, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-gray-700:hover {
    --bg-opacity: 1 !important;
    background-color: #4a5568 !important;
    background-color: rgba(74, 85, 104, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-gray-800:hover {
    --bg-opacity: 1 !important;
    background-color: #2d3748 !important;
    background-color: rgba(45, 55, 72, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-gray-900:hover {
    --bg-opacity: 1 !important;
    background-color: #1a202c !important;
    background-color: rgba(26, 32, 44, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-red-100:hover {
    --bg-opacity: 1 !important;
    background-color: #fff5f5 !important;
    background-color: rgba(255, 245, 245, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-red-200:hover {
    --bg-opacity: 1 !important;
    background-color: #fed7d7 !important;
    background-color: rgba(254, 215, 215, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-red-300:hover {
    --bg-opacity: 1 !important;
    background-color: #feb2b2 !important;
    background-color: rgba(254, 178, 178, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-red-400:hover {
    --bg-opacity: 1 !important;
    background-color: #fc8181 !important;
    background-color: rgba(252, 129, 129, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-red-500:hover {
    --bg-opacity: 1 !important;
    background-color: #f56565 !important;
    background-color: rgba(245, 101, 101, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-red-600:hover {
    --bg-opacity: 1 !important;
    background-color: #e53e3e !important;
    background-color: rgba(229, 62, 62, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-red-700:hover {
    --bg-opacity: 1 !important;
    background-color: #c53030 !important;
    background-color: rgba(197, 48, 48, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-red-800:hover {
    --bg-opacity: 1 !important;
    background-color: #9b2c2c !important;
    background-color: rgba(155, 44, 44, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-red-900:hover {
    --bg-opacity: 1 !important;
    background-color: #742a2a !important;
    background-color: rgba(116, 42, 42, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-orange-100:hover {
    --bg-opacity: 1 !important;
    background-color: #fffaf0 !important;
    background-color: rgba(255, 250, 240, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-orange-200:hover {
    --bg-opacity: 1 !important;
    background-color: #feebc8 !important;
    background-color: rgba(254, 235, 200, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-orange-300:hover {
    --bg-opacity: 1 !important;
    background-color: #fbd38d !important;
    background-color: rgba(251, 211, 141, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-orange-400:hover {
    --bg-opacity: 1 !important;
    background-color: #f6ad55 !important;
    background-color: rgba(246, 173, 85, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-orange-500:hover {
    --bg-opacity: 1 !important;
    background-color: #ed8936 !important;
    background-color: rgba(237, 137, 54, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-orange-600:hover {
    --bg-opacity: 1 !important;
    background-color: #dd6b20 !important;
    background-color: rgba(221, 107, 32, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-orange-700:hover {
    --bg-opacity: 1 !important;
    background-color: #c05621 !important;
    background-color: rgba(192, 86, 33, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-orange-800:hover {
    --bg-opacity: 1 !important;
    background-color: #9c4221 !important;
    background-color: rgba(156, 66, 33, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-orange-900:hover {
    --bg-opacity: 1 !important;
    background-color: #7b341e !important;
    background-color: rgba(123, 52, 30, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-yellow-100:hover {
    --bg-opacity: 1 !important;
    background-color: #fffff0 !important;
    background-color: rgba(255, 255, 240, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-yellow-200:hover {
    --bg-opacity: 1 !important;
    background-color: #fefcbf !important;
    background-color: rgba(254, 252, 191, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-yellow-300:hover {
    --bg-opacity: 1 !important;
    background-color: #faf089 !important;
    background-color: rgba(250, 240, 137, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-yellow-400:hover {
    --bg-opacity: 1 !important;
    background-color: #f6e05e !important;
    background-color: rgba(246, 224, 94, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-yellow-500:hover {
    --bg-opacity: 1 !important;
    background-color: #ecc94b !important;
    background-color: rgba(236, 201, 75, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-yellow-600:hover {
    --bg-opacity: 1 !important;
    background-color: #d69e2e !important;
    background-color: rgba(214, 158, 46, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-yellow-700:hover {
    --bg-opacity: 1 !important;
    background-color: #b7791f !important;
    background-color: rgba(183, 121, 31, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-yellow-800:hover {
    --bg-opacity: 1 !important;
    background-color: #975a16 !important;
    background-color: rgba(151, 90, 22, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-yellow-900:hover {
    --bg-opacity: 1 !important;
    background-color: #744210 !important;
    background-color: rgba(116, 66, 16, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-green-100:hover {
    --bg-opacity: 1 !important;
    background-color: #f0fff4 !important;
    background-color: rgba(240, 255, 244, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-green-200:hover {
    --bg-opacity: 1 !important;
    background-color: #c6f6d5 !important;
    background-color: rgba(198, 246, 213, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-green-300:hover {
    --bg-opacity: 1 !important;
    background-color: #9ae6b4 !important;
    background-color: rgba(154, 230, 180, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-green-400:hover {
    --bg-opacity: 1 !important;
    background-color: #68d391 !important;
    background-color: rgba(104, 211, 145, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-green-500:hover {
    --bg-opacity: 1 !important;
    background-color: #48bb78 !important;
    background-color: rgba(72, 187, 120, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-green-600:hover {
    --bg-opacity: 1 !important;
    background-color: #38a169 !important;
    background-color: rgba(56, 161, 105, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-green-700:hover {
    --bg-opacity: 1 !important;
    background-color: #2f855a !important;
    background-color: rgba(47, 133, 90, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-green-800:hover {
    --bg-opacity: 1 !important;
    background-color: #276749 !important;
    background-color: rgba(39, 103, 73, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-green-900:hover {
    --bg-opacity: 1 !important;
    background-color: #22543d !important;
    background-color: rgba(34, 84, 61, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-teal-100:hover {
    --bg-opacity: 1 !important;
    background-color: #e6fffa !important;
    background-color: rgba(230, 255, 250, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-teal-200:hover {
    --bg-opacity: 1 !important;
    background-color: #b2f5ea !important;
    background-color: rgba(178, 245, 234, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-teal-300:hover {
    --bg-opacity: 1 !important;
    background-color: #81e6d9 !important;
    background-color: rgba(129, 230, 217, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-teal-400:hover {
    --bg-opacity: 1 !important;
    background-color: #4fd1c5 !important;
    background-color: rgba(79, 209, 197, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-teal-500:hover {
    --bg-opacity: 1 !important;
    background-color: #38b2ac !important;
    background-color: rgba(56, 178, 172, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-teal-600:hover {
    --bg-opacity: 1 !important;
    background-color: #319795 !important;
    background-color: rgba(49, 151, 149, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-teal-700:hover {
    --bg-opacity: 1 !important;
    background-color: #2c7a7b !important;
    background-color: rgba(44, 122, 123, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-teal-800:hover {
    --bg-opacity: 1 !important;
    background-color: #285e61 !important;
    background-color: rgba(40, 94, 97, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-teal-900:hover {
    --bg-opacity: 1 !important;
    background-color: #234e52 !important;
    background-color: rgba(35, 78, 82, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-blue-100:hover {
    --bg-opacity: 1 !important;
    background-color: #ebf8ff !important;
    background-color: rgba(235, 248, 255, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-blue-200:hover {
    --bg-opacity: 1 !important;
    background-color: #bee3f8 !important;
    background-color: rgba(190, 227, 248, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-blue-300:hover {
    --bg-opacity: 1 !important;
    background-color: #90cdf4 !important;
    background-color: rgba(144, 205, 244, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-blue-400:hover {
    --bg-opacity: 1 !important;
    background-color: #63b3ed !important;
    background-color: rgba(99, 179, 237, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-blue-500:hover {
    --bg-opacity: 1 !important;
    background-color: #4299e1 !important;
    background-color: rgba(66, 153, 225, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-blue-600:hover {
    --bg-opacity: 1 !important;
    background-color: #3182ce !important;
    background-color: rgba(49, 130, 206, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-blue-700:hover {
    --bg-opacity: 1 !important;
    background-color: #2b6cb0 !important;
    background-color: rgba(43, 108, 176, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-blue-800:hover {
    --bg-opacity: 1 !important;
    background-color: #2c5282 !important;
    background-color: rgba(44, 82, 130, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-blue-900:hover {
    --bg-opacity: 1 !important;
    background-color: #2a4365 !important;
    background-color: rgba(42, 67, 101, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-indigo-100:hover {
    --bg-opacity: 1 !important;
    background-color: #ebf4ff !important;
    background-color: rgba(235, 244, 255, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-indigo-200:hover {
    --bg-opacity: 1 !important;
    background-color: #c3dafe !important;
    background-color: rgba(195, 218, 254, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-indigo-300:hover {
    --bg-opacity: 1 !important;
    background-color: #a3bffa !important;
    background-color: rgba(163, 191, 250, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-indigo-400:hover {
    --bg-opacity: 1 !important;
    background-color: #7f9cf5 !important;
    background-color: rgba(127, 156, 245, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-indigo-500:hover {
    --bg-opacity: 1 !important;
    background-color: #667eea !important;
    background-color: rgba(102, 126, 234, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-indigo-600:hover {
    --bg-opacity: 1 !important;
    background-color: #5a67d8 !important;
    background-color: rgba(90, 103, 216, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-indigo-700:hover {
    --bg-opacity: 1 !important;
    background-color: #4c51bf !important;
    background-color: rgba(76, 81, 191, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-indigo-800:hover {
    --bg-opacity: 1 !important;
    background-color: #434190 !important;
    background-color: rgba(67, 65, 144, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-indigo-900:hover {
    --bg-opacity: 1 !important;
    background-color: #3c366b !important;
    background-color: rgba(60, 54, 107, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-purple-100:hover {
    --bg-opacity: 1 !important;
    background-color: #faf5ff !important;
    background-color: rgba(250, 245, 255, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-purple-200:hover {
    --bg-opacity: 1 !important;
    background-color: #e9d8fd !important;
    background-color: rgba(233, 216, 253, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-purple-300:hover {
    --bg-opacity: 1 !important;
    background-color: #d6bcfa !important;
    background-color: rgba(214, 188, 250, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-purple-400:hover {
    --bg-opacity: 1 !important;
    background-color: #b794f4 !important;
    background-color: rgba(183, 148, 244, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-purple-500:hover {
    --bg-opacity: 1 !important;
    background-color: #9f7aea !important;
    background-color: rgba(159, 122, 234, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-purple-600:hover {
    --bg-opacity: 1 !important;
    background-color: #805ad5 !important;
    background-color: rgba(128, 90, 213, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-purple-700:hover {
    --bg-opacity: 1 !important;
    background-color: #6b46c1 !important;
    background-color: rgba(107, 70, 193, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-purple-800:hover {
    --bg-opacity: 1 !important;
    background-color: #553c9a !important;
    background-color: rgba(85, 60, 154, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-purple-900:hover {
    --bg-opacity: 1 !important;
    background-color: #44337a !important;
    background-color: rgba(68, 51, 122, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-pink-100:hover {
    --bg-opacity: 1 !important;
    background-color: #fff5f7 !important;
    background-color: rgba(255, 245, 247, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-pink-200:hover {
    --bg-opacity: 1 !important;
    background-color: #fed7e2 !important;
    background-color: rgba(254, 215, 226, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-pink-300:hover {
    --bg-opacity: 1 !important;
    background-color: #fbb6ce !important;
    background-color: rgba(251, 182, 206, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-pink-400:hover {
    --bg-opacity: 1 !important;
    background-color: #f687b3 !important;
    background-color: rgba(246, 135, 179, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-pink-500:hover {
    --bg-opacity: 1 !important;
    background-color: #ed64a6 !important;
    background-color: rgba(237, 100, 166, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-pink-600:hover {
    --bg-opacity: 1 !important;
    background-color: #d53f8c !important;
    background-color: rgba(213, 63, 140, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-pink-700:hover {
    --bg-opacity: 1 !important;
    background-color: #b83280 !important;
    background-color: rgba(184, 50, 128, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-pink-800:hover {
    --bg-opacity: 1 !important;
    background-color: #97266d !important;
    background-color: rgba(151, 38, 109, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-pink-900:hover {
    --bg-opacity: 1 !important;
    background-color: #702459 !important;
    background-color: rgba(112, 36, 89, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-ui-gray-100:hover {
    --bg-opacity: 1 !important;
    background-color: #f1f1f1 !important;
    background-color: rgba(241, 241, 241, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-ui-brown-100:hover {
    --bg-opacity: 1 !important;
    background-color: #f3ecdc !important;
    background-color: rgba(243, 236, 220, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-ui-brown-200:hover {
    --bg-opacity: 1 !important;
    background-color: #e8e0c9 !important;
    background-color: rgba(232, 224, 201, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-ui-brown-300:hover {
    --bg-opacity: 1 !important;
    background-color: #d0c095 !important;
    background-color: rgba(208, 192, 149, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-ui-brown-700:hover {
    --bg-opacity: 1 !important;
    background-color: #bd6005 !important;
    background-color: rgba(189, 96, 5, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-ui-green-300:hover {
    --bg-opacity: 1 !important;
    background-color: #aac74c !important;
    background-color: rgba(170, 199, 76, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-ui-green-400:hover {
    --bg-opacity: 1 !important;
    background-color: #71893e !important;
    background-color: rgba(113, 137, 62, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-ui-orange-500:hover {
    --bg-opacity: 1 !important;
    background-color: #e27212 !important;
    background-color: rgba(226, 114, 18, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-facebook:hover {
    --bg-opacity: 1 !important;
    background-color: #3b5998 !important;
    background-color: rgba(59, 89, 152, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-twitter:hover {
    --bg-opacity: 1 !important;
    background-color: #00acee !important;
    background-color: rgba(0, 172, 238, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-twitch:hover {
    --bg-opacity: 1 !important;
    background-color: #6441a5 !important;
    background-color: rgba(100, 65, 165, var(--bg-opacity)) !important;
  }

  .xl\:hover\:cl-bg-youtube:hover {
    --bg-opacity: 1 !important;
    background-color: #FF0000 !important;
    background-color: rgba(255, 0, 0, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-transparent:focus {
    background-color: transparent !important;
  }

  .xl\:focus\:cl-bg-current:focus {
    background-color: currentColor !important;
  }

  .xl\:focus\:cl-bg-black:focus {
    --bg-opacity: 1 !important;
    background-color: #000 !important;
    background-color: rgba(0, 0, 0, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-white:focus {
    --bg-opacity: 1 !important;
    background-color: #fff !important;
    background-color: rgba(255, 255, 255, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-gray-100:focus {
    --bg-opacity: 1 !important;
    background-color: #f7fafc !important;
    background-color: rgba(247, 250, 252, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-gray-200:focus {
    --bg-opacity: 1 !important;
    background-color: #edf2f7 !important;
    background-color: rgba(237, 242, 247, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-gray-300:focus {
    --bg-opacity: 1 !important;
    background-color: #e2e8f0 !important;
    background-color: rgba(226, 232, 240, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-gray-400:focus {
    --bg-opacity: 1 !important;
    background-color: #cbd5e0 !important;
    background-color: rgba(203, 213, 224, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-gray-500:focus {
    --bg-opacity: 1 !important;
    background-color: #a0aec0 !important;
    background-color: rgba(160, 174, 192, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-gray-600:focus {
    --bg-opacity: 1 !important;
    background-color: #718096 !important;
    background-color: rgba(113, 128, 150, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-gray-700:focus {
    --bg-opacity: 1 !important;
    background-color: #4a5568 !important;
    background-color: rgba(74, 85, 104, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-gray-800:focus {
    --bg-opacity: 1 !important;
    background-color: #2d3748 !important;
    background-color: rgba(45, 55, 72, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-gray-900:focus {
    --bg-opacity: 1 !important;
    background-color: #1a202c !important;
    background-color: rgba(26, 32, 44, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-red-100:focus {
    --bg-opacity: 1 !important;
    background-color: #fff5f5 !important;
    background-color: rgba(255, 245, 245, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-red-200:focus {
    --bg-opacity: 1 !important;
    background-color: #fed7d7 !important;
    background-color: rgba(254, 215, 215, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-red-300:focus {
    --bg-opacity: 1 !important;
    background-color: #feb2b2 !important;
    background-color: rgba(254, 178, 178, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-red-400:focus {
    --bg-opacity: 1 !important;
    background-color: #fc8181 !important;
    background-color: rgba(252, 129, 129, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-red-500:focus {
    --bg-opacity: 1 !important;
    background-color: #f56565 !important;
    background-color: rgba(245, 101, 101, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-red-600:focus {
    --bg-opacity: 1 !important;
    background-color: #e53e3e !important;
    background-color: rgba(229, 62, 62, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-red-700:focus {
    --bg-opacity: 1 !important;
    background-color: #c53030 !important;
    background-color: rgba(197, 48, 48, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-red-800:focus {
    --bg-opacity: 1 !important;
    background-color: #9b2c2c !important;
    background-color: rgba(155, 44, 44, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-red-900:focus {
    --bg-opacity: 1 !important;
    background-color: #742a2a !important;
    background-color: rgba(116, 42, 42, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-orange-100:focus {
    --bg-opacity: 1 !important;
    background-color: #fffaf0 !important;
    background-color: rgba(255, 250, 240, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-orange-200:focus {
    --bg-opacity: 1 !important;
    background-color: #feebc8 !important;
    background-color: rgba(254, 235, 200, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-orange-300:focus {
    --bg-opacity: 1 !important;
    background-color: #fbd38d !important;
    background-color: rgba(251, 211, 141, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-orange-400:focus {
    --bg-opacity: 1 !important;
    background-color: #f6ad55 !important;
    background-color: rgba(246, 173, 85, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-orange-500:focus {
    --bg-opacity: 1 !important;
    background-color: #ed8936 !important;
    background-color: rgba(237, 137, 54, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-orange-600:focus {
    --bg-opacity: 1 !important;
    background-color: #dd6b20 !important;
    background-color: rgba(221, 107, 32, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-orange-700:focus {
    --bg-opacity: 1 !important;
    background-color: #c05621 !important;
    background-color: rgba(192, 86, 33, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-orange-800:focus {
    --bg-opacity: 1 !important;
    background-color: #9c4221 !important;
    background-color: rgba(156, 66, 33, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-orange-900:focus {
    --bg-opacity: 1 !important;
    background-color: #7b341e !important;
    background-color: rgba(123, 52, 30, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-yellow-100:focus {
    --bg-opacity: 1 !important;
    background-color: #fffff0 !important;
    background-color: rgba(255, 255, 240, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-yellow-200:focus {
    --bg-opacity: 1 !important;
    background-color: #fefcbf !important;
    background-color: rgba(254, 252, 191, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-yellow-300:focus {
    --bg-opacity: 1 !important;
    background-color: #faf089 !important;
    background-color: rgba(250, 240, 137, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-yellow-400:focus {
    --bg-opacity: 1 !important;
    background-color: #f6e05e !important;
    background-color: rgba(246, 224, 94, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-yellow-500:focus {
    --bg-opacity: 1 !important;
    background-color: #ecc94b !important;
    background-color: rgba(236, 201, 75, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-yellow-600:focus {
    --bg-opacity: 1 !important;
    background-color: #d69e2e !important;
    background-color: rgba(214, 158, 46, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-yellow-700:focus {
    --bg-opacity: 1 !important;
    background-color: #b7791f !important;
    background-color: rgba(183, 121, 31, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-yellow-800:focus {
    --bg-opacity: 1 !important;
    background-color: #975a16 !important;
    background-color: rgba(151, 90, 22, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-yellow-900:focus {
    --bg-opacity: 1 !important;
    background-color: #744210 !important;
    background-color: rgba(116, 66, 16, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-green-100:focus {
    --bg-opacity: 1 !important;
    background-color: #f0fff4 !important;
    background-color: rgba(240, 255, 244, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-green-200:focus {
    --bg-opacity: 1 !important;
    background-color: #c6f6d5 !important;
    background-color: rgba(198, 246, 213, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-green-300:focus {
    --bg-opacity: 1 !important;
    background-color: #9ae6b4 !important;
    background-color: rgba(154, 230, 180, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-green-400:focus {
    --bg-opacity: 1 !important;
    background-color: #68d391 !important;
    background-color: rgba(104, 211, 145, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-green-500:focus {
    --bg-opacity: 1 !important;
    background-color: #48bb78 !important;
    background-color: rgba(72, 187, 120, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-green-600:focus {
    --bg-opacity: 1 !important;
    background-color: #38a169 !important;
    background-color: rgba(56, 161, 105, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-green-700:focus {
    --bg-opacity: 1 !important;
    background-color: #2f855a !important;
    background-color: rgba(47, 133, 90, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-green-800:focus {
    --bg-opacity: 1 !important;
    background-color: #276749 !important;
    background-color: rgba(39, 103, 73, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-green-900:focus {
    --bg-opacity: 1 !important;
    background-color: #22543d !important;
    background-color: rgba(34, 84, 61, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-teal-100:focus {
    --bg-opacity: 1 !important;
    background-color: #e6fffa !important;
    background-color: rgba(230, 255, 250, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-teal-200:focus {
    --bg-opacity: 1 !important;
    background-color: #b2f5ea !important;
    background-color: rgba(178, 245, 234, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-teal-300:focus {
    --bg-opacity: 1 !important;
    background-color: #81e6d9 !important;
    background-color: rgba(129, 230, 217, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-teal-400:focus {
    --bg-opacity: 1 !important;
    background-color: #4fd1c5 !important;
    background-color: rgba(79, 209, 197, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-teal-500:focus {
    --bg-opacity: 1 !important;
    background-color: #38b2ac !important;
    background-color: rgba(56, 178, 172, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-teal-600:focus {
    --bg-opacity: 1 !important;
    background-color: #319795 !important;
    background-color: rgba(49, 151, 149, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-teal-700:focus {
    --bg-opacity: 1 !important;
    background-color: #2c7a7b !important;
    background-color: rgba(44, 122, 123, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-teal-800:focus {
    --bg-opacity: 1 !important;
    background-color: #285e61 !important;
    background-color: rgba(40, 94, 97, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-teal-900:focus {
    --bg-opacity: 1 !important;
    background-color: #234e52 !important;
    background-color: rgba(35, 78, 82, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-blue-100:focus {
    --bg-opacity: 1 !important;
    background-color: #ebf8ff !important;
    background-color: rgba(235, 248, 255, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-blue-200:focus {
    --bg-opacity: 1 !important;
    background-color: #bee3f8 !important;
    background-color: rgba(190, 227, 248, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-blue-300:focus {
    --bg-opacity: 1 !important;
    background-color: #90cdf4 !important;
    background-color: rgba(144, 205, 244, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-blue-400:focus {
    --bg-opacity: 1 !important;
    background-color: #63b3ed !important;
    background-color: rgba(99, 179, 237, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-blue-500:focus {
    --bg-opacity: 1 !important;
    background-color: #4299e1 !important;
    background-color: rgba(66, 153, 225, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-blue-600:focus {
    --bg-opacity: 1 !important;
    background-color: #3182ce !important;
    background-color: rgba(49, 130, 206, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-blue-700:focus {
    --bg-opacity: 1 !important;
    background-color: #2b6cb0 !important;
    background-color: rgba(43, 108, 176, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-blue-800:focus {
    --bg-opacity: 1 !important;
    background-color: #2c5282 !important;
    background-color: rgba(44, 82, 130, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-blue-900:focus {
    --bg-opacity: 1 !important;
    background-color: #2a4365 !important;
    background-color: rgba(42, 67, 101, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-indigo-100:focus {
    --bg-opacity: 1 !important;
    background-color: #ebf4ff !important;
    background-color: rgba(235, 244, 255, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-indigo-200:focus {
    --bg-opacity: 1 !important;
    background-color: #c3dafe !important;
    background-color: rgba(195, 218, 254, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-indigo-300:focus {
    --bg-opacity: 1 !important;
    background-color: #a3bffa !important;
    background-color: rgba(163, 191, 250, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-indigo-400:focus {
    --bg-opacity: 1 !important;
    background-color: #7f9cf5 !important;
    background-color: rgba(127, 156, 245, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-indigo-500:focus {
    --bg-opacity: 1 !important;
    background-color: #667eea !important;
    background-color: rgba(102, 126, 234, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-indigo-600:focus {
    --bg-opacity: 1 !important;
    background-color: #5a67d8 !important;
    background-color: rgba(90, 103, 216, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-indigo-700:focus {
    --bg-opacity: 1 !important;
    background-color: #4c51bf !important;
    background-color: rgba(76, 81, 191, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-indigo-800:focus {
    --bg-opacity: 1 !important;
    background-color: #434190 !important;
    background-color: rgba(67, 65, 144, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-indigo-900:focus {
    --bg-opacity: 1 !important;
    background-color: #3c366b !important;
    background-color: rgba(60, 54, 107, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-purple-100:focus {
    --bg-opacity: 1 !important;
    background-color: #faf5ff !important;
    background-color: rgba(250, 245, 255, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-purple-200:focus {
    --bg-opacity: 1 !important;
    background-color: #e9d8fd !important;
    background-color: rgba(233, 216, 253, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-purple-300:focus {
    --bg-opacity: 1 !important;
    background-color: #d6bcfa !important;
    background-color: rgba(214, 188, 250, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-purple-400:focus {
    --bg-opacity: 1 !important;
    background-color: #b794f4 !important;
    background-color: rgba(183, 148, 244, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-purple-500:focus {
    --bg-opacity: 1 !important;
    background-color: #9f7aea !important;
    background-color: rgba(159, 122, 234, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-purple-600:focus {
    --bg-opacity: 1 !important;
    background-color: #805ad5 !important;
    background-color: rgba(128, 90, 213, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-purple-700:focus {
    --bg-opacity: 1 !important;
    background-color: #6b46c1 !important;
    background-color: rgba(107, 70, 193, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-purple-800:focus {
    --bg-opacity: 1 !important;
    background-color: #553c9a !important;
    background-color: rgba(85, 60, 154, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-purple-900:focus {
    --bg-opacity: 1 !important;
    background-color: #44337a !important;
    background-color: rgba(68, 51, 122, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-pink-100:focus {
    --bg-opacity: 1 !important;
    background-color: #fff5f7 !important;
    background-color: rgba(255, 245, 247, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-pink-200:focus {
    --bg-opacity: 1 !important;
    background-color: #fed7e2 !important;
    background-color: rgba(254, 215, 226, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-pink-300:focus {
    --bg-opacity: 1 !important;
    background-color: #fbb6ce !important;
    background-color: rgba(251, 182, 206, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-pink-400:focus {
    --bg-opacity: 1 !important;
    background-color: #f687b3 !important;
    background-color: rgba(246, 135, 179, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-pink-500:focus {
    --bg-opacity: 1 !important;
    background-color: #ed64a6 !important;
    background-color: rgba(237, 100, 166, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-pink-600:focus {
    --bg-opacity: 1 !important;
    background-color: #d53f8c !important;
    background-color: rgba(213, 63, 140, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-pink-700:focus {
    --bg-opacity: 1 !important;
    background-color: #b83280 !important;
    background-color: rgba(184, 50, 128, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-pink-800:focus {
    --bg-opacity: 1 !important;
    background-color: #97266d !important;
    background-color: rgba(151, 38, 109, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-pink-900:focus {
    --bg-opacity: 1 !important;
    background-color: #702459 !important;
    background-color: rgba(112, 36, 89, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-ui-gray-100:focus {
    --bg-opacity: 1 !important;
    background-color: #f1f1f1 !important;
    background-color: rgba(241, 241, 241, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-ui-brown-100:focus {
    --bg-opacity: 1 !important;
    background-color: #f3ecdc !important;
    background-color: rgba(243, 236, 220, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-ui-brown-200:focus {
    --bg-opacity: 1 !important;
    background-color: #e8e0c9 !important;
    background-color: rgba(232, 224, 201, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-ui-brown-300:focus {
    --bg-opacity: 1 !important;
    background-color: #d0c095 !important;
    background-color: rgba(208, 192, 149, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-ui-brown-700:focus {
    --bg-opacity: 1 !important;
    background-color: #bd6005 !important;
    background-color: rgba(189, 96, 5, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-ui-green-300:focus {
    --bg-opacity: 1 !important;
    background-color: #aac74c !important;
    background-color: rgba(170, 199, 76, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-ui-green-400:focus {
    --bg-opacity: 1 !important;
    background-color: #71893e !important;
    background-color: rgba(113, 137, 62, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-ui-orange-500:focus {
    --bg-opacity: 1 !important;
    background-color: #e27212 !important;
    background-color: rgba(226, 114, 18, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-facebook:focus {
    --bg-opacity: 1 !important;
    background-color: #3b5998 !important;
    background-color: rgba(59, 89, 152, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-twitter:focus {
    --bg-opacity: 1 !important;
    background-color: #00acee !important;
    background-color: rgba(0, 172, 238, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-twitch:focus {
    --bg-opacity: 1 !important;
    background-color: #6441a5 !important;
    background-color: rgba(100, 65, 165, var(--bg-opacity)) !important;
  }

  .xl\:focus\:cl-bg-youtube:focus {
    --bg-opacity: 1 !important;
    background-color: #FF0000 !important;
    background-color: rgba(255, 0, 0, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-transparent {
    background-color: transparent !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-current {
    background-color: currentColor !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-black {
    --bg-opacity: 1 !important;
    background-color: #000 !important;
    background-color: rgba(0, 0, 0, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-white {
    --bg-opacity: 1 !important;
    background-color: #fff !important;
    background-color: rgba(255, 255, 255, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-gray-100 {
    --bg-opacity: 1 !important;
    background-color: #f7fafc !important;
    background-color: rgba(247, 250, 252, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-gray-200 {
    --bg-opacity: 1 !important;
    background-color: #edf2f7 !important;
    background-color: rgba(237, 242, 247, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-gray-300 {
    --bg-opacity: 1 !important;
    background-color: #e2e8f0 !important;
    background-color: rgba(226, 232, 240, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-gray-400 {
    --bg-opacity: 1 !important;
    background-color: #cbd5e0 !important;
    background-color: rgba(203, 213, 224, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-gray-500 {
    --bg-opacity: 1 !important;
    background-color: #a0aec0 !important;
    background-color: rgba(160, 174, 192, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-gray-600 {
    --bg-opacity: 1 !important;
    background-color: #718096 !important;
    background-color: rgba(113, 128, 150, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-gray-700 {
    --bg-opacity: 1 !important;
    background-color: #4a5568 !important;
    background-color: rgba(74, 85, 104, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-gray-800 {
    --bg-opacity: 1 !important;
    background-color: #2d3748 !important;
    background-color: rgba(45, 55, 72, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-gray-900 {
    --bg-opacity: 1 !important;
    background-color: #1a202c !important;
    background-color: rgba(26, 32, 44, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-red-100 {
    --bg-opacity: 1 !important;
    background-color: #fff5f5 !important;
    background-color: rgba(255, 245, 245, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-red-200 {
    --bg-opacity: 1 !important;
    background-color: #fed7d7 !important;
    background-color: rgba(254, 215, 215, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-red-300 {
    --bg-opacity: 1 !important;
    background-color: #feb2b2 !important;
    background-color: rgba(254, 178, 178, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-red-400 {
    --bg-opacity: 1 !important;
    background-color: #fc8181 !important;
    background-color: rgba(252, 129, 129, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-red-500 {
    --bg-opacity: 1 !important;
    background-color: #f56565 !important;
    background-color: rgba(245, 101, 101, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-red-600 {
    --bg-opacity: 1 !important;
    background-color: #e53e3e !important;
    background-color: rgba(229, 62, 62, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-red-700 {
    --bg-opacity: 1 !important;
    background-color: #c53030 !important;
    background-color: rgba(197, 48, 48, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-red-800 {
    --bg-opacity: 1 !important;
    background-color: #9b2c2c !important;
    background-color: rgba(155, 44, 44, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-red-900 {
    --bg-opacity: 1 !important;
    background-color: #742a2a !important;
    background-color: rgba(116, 42, 42, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-orange-100 {
    --bg-opacity: 1 !important;
    background-color: #fffaf0 !important;
    background-color: rgba(255, 250, 240, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-orange-200 {
    --bg-opacity: 1 !important;
    background-color: #feebc8 !important;
    background-color: rgba(254, 235, 200, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-orange-300 {
    --bg-opacity: 1 !important;
    background-color: #fbd38d !important;
    background-color: rgba(251, 211, 141, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-orange-400 {
    --bg-opacity: 1 !important;
    background-color: #f6ad55 !important;
    background-color: rgba(246, 173, 85, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-orange-500 {
    --bg-opacity: 1 !important;
    background-color: #ed8936 !important;
    background-color: rgba(237, 137, 54, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-orange-600 {
    --bg-opacity: 1 !important;
    background-color: #dd6b20 !important;
    background-color: rgba(221, 107, 32, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-orange-700 {
    --bg-opacity: 1 !important;
    background-color: #c05621 !important;
    background-color: rgba(192, 86, 33, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-orange-800 {
    --bg-opacity: 1 !important;
    background-color: #9c4221 !important;
    background-color: rgba(156, 66, 33, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-orange-900 {
    --bg-opacity: 1 !important;
    background-color: #7b341e !important;
    background-color: rgba(123, 52, 30, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-yellow-100 {
    --bg-opacity: 1 !important;
    background-color: #fffff0 !important;
    background-color: rgba(255, 255, 240, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-yellow-200 {
    --bg-opacity: 1 !important;
    background-color: #fefcbf !important;
    background-color: rgba(254, 252, 191, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-yellow-300 {
    --bg-opacity: 1 !important;
    background-color: #faf089 !important;
    background-color: rgba(250, 240, 137, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-yellow-400 {
    --bg-opacity: 1 !important;
    background-color: #f6e05e !important;
    background-color: rgba(246, 224, 94, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-yellow-500 {
    --bg-opacity: 1 !important;
    background-color: #ecc94b !important;
    background-color: rgba(236, 201, 75, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-yellow-600 {
    --bg-opacity: 1 !important;
    background-color: #d69e2e !important;
    background-color: rgba(214, 158, 46, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-yellow-700 {
    --bg-opacity: 1 !important;
    background-color: #b7791f !important;
    background-color: rgba(183, 121, 31, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-yellow-800 {
    --bg-opacity: 1 !important;
    background-color: #975a16 !important;
    background-color: rgba(151, 90, 22, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-yellow-900 {
    --bg-opacity: 1 !important;
    background-color: #744210 !important;
    background-color: rgba(116, 66, 16, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-green-100 {
    --bg-opacity: 1 !important;
    background-color: #f0fff4 !important;
    background-color: rgba(240, 255, 244, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-green-200 {
    --bg-opacity: 1 !important;
    background-color: #c6f6d5 !important;
    background-color: rgba(198, 246, 213, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-green-300 {
    --bg-opacity: 1 !important;
    background-color: #9ae6b4 !important;
    background-color: rgba(154, 230, 180, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-green-400 {
    --bg-opacity: 1 !important;
    background-color: #68d391 !important;
    background-color: rgba(104, 211, 145, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-green-500 {
    --bg-opacity: 1 !important;
    background-color: #48bb78 !important;
    background-color: rgba(72, 187, 120, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-green-600 {
    --bg-opacity: 1 !important;
    background-color: #38a169 !important;
    background-color: rgba(56, 161, 105, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-green-700 {
    --bg-opacity: 1 !important;
    background-color: #2f855a !important;
    background-color: rgba(47, 133, 90, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-green-800 {
    --bg-opacity: 1 !important;
    background-color: #276749 !important;
    background-color: rgba(39, 103, 73, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-green-900 {
    --bg-opacity: 1 !important;
    background-color: #22543d !important;
    background-color: rgba(34, 84, 61, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-teal-100 {
    --bg-opacity: 1 !important;
    background-color: #e6fffa !important;
    background-color: rgba(230, 255, 250, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-teal-200 {
    --bg-opacity: 1 !important;
    background-color: #b2f5ea !important;
    background-color: rgba(178, 245, 234, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-teal-300 {
    --bg-opacity: 1 !important;
    background-color: #81e6d9 !important;
    background-color: rgba(129, 230, 217, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-teal-400 {
    --bg-opacity: 1 !important;
    background-color: #4fd1c5 !important;
    background-color: rgba(79, 209, 197, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-teal-500 {
    --bg-opacity: 1 !important;
    background-color: #38b2ac !important;
    background-color: rgba(56, 178, 172, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-teal-600 {
    --bg-opacity: 1 !important;
    background-color: #319795 !important;
    background-color: rgba(49, 151, 149, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-teal-700 {
    --bg-opacity: 1 !important;
    background-color: #2c7a7b !important;
    background-color: rgba(44, 122, 123, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-teal-800 {
    --bg-opacity: 1 !important;
    background-color: #285e61 !important;
    background-color: rgba(40, 94, 97, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-teal-900 {
    --bg-opacity: 1 !important;
    background-color: #234e52 !important;
    background-color: rgba(35, 78, 82, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-blue-100 {
    --bg-opacity: 1 !important;
    background-color: #ebf8ff !important;
    background-color: rgba(235, 248, 255, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-blue-200 {
    --bg-opacity: 1 !important;
    background-color: #bee3f8 !important;
    background-color: rgba(190, 227, 248, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-blue-300 {
    --bg-opacity: 1 !important;
    background-color: #90cdf4 !important;
    background-color: rgba(144, 205, 244, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-blue-400 {
    --bg-opacity: 1 !important;
    background-color: #63b3ed !important;
    background-color: rgba(99, 179, 237, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-blue-500 {
    --bg-opacity: 1 !important;
    background-color: #4299e1 !important;
    background-color: rgba(66, 153, 225, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-blue-600 {
    --bg-opacity: 1 !important;
    background-color: #3182ce !important;
    background-color: rgba(49, 130, 206, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-blue-700 {
    --bg-opacity: 1 !important;
    background-color: #2b6cb0 !important;
    background-color: rgba(43, 108, 176, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-blue-800 {
    --bg-opacity: 1 !important;
    background-color: #2c5282 !important;
    background-color: rgba(44, 82, 130, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-blue-900 {
    --bg-opacity: 1 !important;
    background-color: #2a4365 !important;
    background-color: rgba(42, 67, 101, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-indigo-100 {
    --bg-opacity: 1 !important;
    background-color: #ebf4ff !important;
    background-color: rgba(235, 244, 255, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-indigo-200 {
    --bg-opacity: 1 !important;
    background-color: #c3dafe !important;
    background-color: rgba(195, 218, 254, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-indigo-300 {
    --bg-opacity: 1 !important;
    background-color: #a3bffa !important;
    background-color: rgba(163, 191, 250, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-indigo-400 {
    --bg-opacity: 1 !important;
    background-color: #7f9cf5 !important;
    background-color: rgba(127, 156, 245, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-indigo-500 {
    --bg-opacity: 1 !important;
    background-color: #667eea !important;
    background-color: rgba(102, 126, 234, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-indigo-600 {
    --bg-opacity: 1 !important;
    background-color: #5a67d8 !important;
    background-color: rgba(90, 103, 216, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-indigo-700 {
    --bg-opacity: 1 !important;
    background-color: #4c51bf !important;
    background-color: rgba(76, 81, 191, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-indigo-800 {
    --bg-opacity: 1 !important;
    background-color: #434190 !important;
    background-color: rgba(67, 65, 144, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-indigo-900 {
    --bg-opacity: 1 !important;
    background-color: #3c366b !important;
    background-color: rgba(60, 54, 107, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-purple-100 {
    --bg-opacity: 1 !important;
    background-color: #faf5ff !important;
    background-color: rgba(250, 245, 255, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-purple-200 {
    --bg-opacity: 1 !important;
    background-color: #e9d8fd !important;
    background-color: rgba(233, 216, 253, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-purple-300 {
    --bg-opacity: 1 !important;
    background-color: #d6bcfa !important;
    background-color: rgba(214, 188, 250, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-purple-400 {
    --bg-opacity: 1 !important;
    background-color: #b794f4 !important;
    background-color: rgba(183, 148, 244, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-purple-500 {
    --bg-opacity: 1 !important;
    background-color: #9f7aea !important;
    background-color: rgba(159, 122, 234, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-purple-600 {
    --bg-opacity: 1 !important;
    background-color: #805ad5 !important;
    background-color: rgba(128, 90, 213, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-purple-700 {
    --bg-opacity: 1 !important;
    background-color: #6b46c1 !important;
    background-color: rgba(107, 70, 193, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-purple-800 {
    --bg-opacity: 1 !important;
    background-color: #553c9a !important;
    background-color: rgba(85, 60, 154, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-purple-900 {
    --bg-opacity: 1 !important;
    background-color: #44337a !important;
    background-color: rgba(68, 51, 122, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-pink-100 {
    --bg-opacity: 1 !important;
    background-color: #fff5f7 !important;
    background-color: rgba(255, 245, 247, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-pink-200 {
    --bg-opacity: 1 !important;
    background-color: #fed7e2 !important;
    background-color: rgba(254, 215, 226, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-pink-300 {
    --bg-opacity: 1 !important;
    background-color: #fbb6ce !important;
    background-color: rgba(251, 182, 206, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-pink-400 {
    --bg-opacity: 1 !important;
    background-color: #f687b3 !important;
    background-color: rgba(246, 135, 179, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-pink-500 {
    --bg-opacity: 1 !important;
    background-color: #ed64a6 !important;
    background-color: rgba(237, 100, 166, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-pink-600 {
    --bg-opacity: 1 !important;
    background-color: #d53f8c !important;
    background-color: rgba(213, 63, 140, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-pink-700 {
    --bg-opacity: 1 !important;
    background-color: #b83280 !important;
    background-color: rgba(184, 50, 128, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-pink-800 {
    --bg-opacity: 1 !important;
    background-color: #97266d !important;
    background-color: rgba(151, 38, 109, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-pink-900 {
    --bg-opacity: 1 !important;
    background-color: #702459 !important;
    background-color: rgba(112, 36, 89, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-ui-gray-100 {
    --bg-opacity: 1 !important;
    background-color: #f1f1f1 !important;
    background-color: rgba(241, 241, 241, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-ui-brown-100 {
    --bg-opacity: 1 !important;
    background-color: #f3ecdc !important;
    background-color: rgba(243, 236, 220, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-ui-brown-200 {
    --bg-opacity: 1 !important;
    background-color: #e8e0c9 !important;
    background-color: rgba(232, 224, 201, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-ui-brown-300 {
    --bg-opacity: 1 !important;
    background-color: #d0c095 !important;
    background-color: rgba(208, 192, 149, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-ui-brown-700 {
    --bg-opacity: 1 !important;
    background-color: #bd6005 !important;
    background-color: rgba(189, 96, 5, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-ui-green-300 {
    --bg-opacity: 1 !important;
    background-color: #aac74c !important;
    background-color: rgba(170, 199, 76, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-ui-green-400 {
    --bg-opacity: 1 !important;
    background-color: #71893e !important;
    background-color: rgba(113, 137, 62, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-ui-orange-500 {
    --bg-opacity: 1 !important;
    background-color: #e27212 !important;
    background-color: rgba(226, 114, 18, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-facebook {
    --bg-opacity: 1 !important;
    background-color: #3b5998 !important;
    background-color: rgba(59, 89, 152, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-twitter {
    --bg-opacity: 1 !important;
    background-color: #00acee !important;
    background-color: rgba(0, 172, 238, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-twitch {
    --bg-opacity: 1 !important;
    background-color: #6441a5 !important;
    background-color: rgba(100, 65, 165, var(--bg-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-bg-youtube {
    --bg-opacity: 1 !important;
    background-color: #FF0000 !important;
    background-color: rgba(255, 0, 0, var(--bg-opacity)) !important;
  }

  .xl\:cl-bg-none {
    background-image: none !important;
  }

  .xl\:cl-bg-gradient-to-t {
    background-image: linear-gradient(to top, var(--gradient-color-stops)) !important;
  }

  .xl\:cl-bg-gradient-to-tr {
    background-image: linear-gradient(to top right, var(--gradient-color-stops)) !important;
  }

  .xl\:cl-bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--gradient-color-stops)) !important;
  }

  .xl\:cl-bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--gradient-color-stops)) !important;
  }

  .xl\:cl-bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--gradient-color-stops)) !important;
  }

  .xl\:cl-bg-gradient-to-bl {
    background-image: linear-gradient(to bottom left, var(--gradient-color-stops)) !important;
  }

  .xl\:cl-bg-gradient-to-l {
    background-image: linear-gradient(to left, var(--gradient-color-stops)) !important;
  }

  .xl\:cl-bg-gradient-to-tl {
    background-image: linear-gradient(to top left, var(--gradient-color-stops)) !important;
  }

  .xl\:cl-from-transparent {
    --gradient-from-color: transparent !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .xl\:cl-from-current {
    --gradient-from-color: currentColor !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .xl\:cl-from-black {
    --gradient-from-color: #000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .xl\:cl-from-white {
    --gradient-from-color: #fff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .xl\:cl-from-gray-100 {
    --gradient-from-color: #f7fafc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 250, 252, 0)) !important;
  }

  .xl\:cl-from-gray-200 {
    --gradient-from-color: #edf2f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 242, 247, 0)) !important;
  }

  .xl\:cl-from-gray-300 {
    --gradient-from-color: #e2e8f0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 232, 240, 0)) !important;
  }

  .xl\:cl-from-gray-400 {
    --gradient-from-color: #cbd5e0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(203, 213, 224, 0)) !important;
  }

  .xl\:cl-from-gray-500 {
    --gradient-from-color: #a0aec0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 174, 192, 0)) !important;
  }

  .xl\:cl-from-gray-600 {
    --gradient-from-color: #718096 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(113, 128, 150, 0)) !important;
  }

  .xl\:cl-from-gray-700 {
    --gradient-from-color: #4a5568 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 85, 104, 0)) !important;
  }

  .xl\:cl-from-gray-800 {
    --gradient-from-color: #2d3748 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(45, 55, 72, 0)) !important;
  }

  .xl\:cl-from-gray-900 {
    --gradient-from-color: #1a202c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 32, 44, 0)) !important;
  }

  .xl\:cl-from-red-100 {
    --gradient-from-color: #fff5f5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 245, 245, 0)) !important;
  }

  .xl\:cl-from-red-200 {
    --gradient-from-color: #fed7d7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 215, 215, 0)) !important;
  }

  .xl\:cl-from-red-300 {
    --gradient-from-color: #feb2b2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 178, 178, 0)) !important;
  }

  .xl\:cl-from-red-400 {
    --gradient-from-color: #fc8181 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(252, 129, 129, 0)) !important;
  }

  .xl\:cl-from-red-500 {
    --gradient-from-color: #f56565 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(245, 101, 101, 0)) !important;
  }

  .xl\:cl-from-red-600 {
    --gradient-from-color: #e53e3e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(229, 62, 62, 0)) !important;
  }

  .xl\:cl-from-red-700 {
    --gradient-from-color: #c53030 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(197, 48, 48, 0)) !important;
  }

  .xl\:cl-from-red-800 {
    --gradient-from-color: #9b2c2c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(155, 44, 44, 0)) !important;
  }

  .xl\:cl-from-red-900 {
    --gradient-from-color: #742a2a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(116, 42, 42, 0)) !important;
  }

  .xl\:cl-from-orange-100 {
    --gradient-from-color: #fffaf0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 240, 0)) !important;
  }

  .xl\:cl-from-orange-200 {
    --gradient-from-color: #feebc8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 235, 200, 0)) !important;
  }

  .xl\:cl-from-orange-300 {
    --gradient-from-color: #fbd38d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 211, 141, 0)) !important;
  }

  .xl\:cl-from-orange-400 {
    --gradient-from-color: #f6ad55 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 173, 85, 0)) !important;
  }

  .xl\:cl-from-orange-500 {
    --gradient-from-color: #ed8936 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 137, 54, 0)) !important;
  }

  .xl\:cl-from-orange-600 {
    --gradient-from-color: #dd6b20 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(221, 107, 32, 0)) !important;
  }

  .xl\:cl-from-orange-700 {
    --gradient-from-color: #c05621 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(192, 86, 33, 0)) !important;
  }

  .xl\:cl-from-orange-800 {
    --gradient-from-color: #9c4221 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 66, 33, 0)) !important;
  }

  .xl\:cl-from-orange-900 {
    --gradient-from-color: #7b341e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(123, 52, 30, 0)) !important;
  }

  .xl\:cl-from-yellow-100 {
    --gradient-from-color: #fffff0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 240, 0)) !important;
  }

  .xl\:cl-from-yellow-200 {
    --gradient-from-color: #fefcbf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 252, 191, 0)) !important;
  }

  .xl\:cl-from-yellow-300 {
    --gradient-from-color: #faf089 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 240, 137, 0)) !important;
  }

  .xl\:cl-from-yellow-400 {
    --gradient-from-color: #f6e05e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 224, 94, 0)) !important;
  }

  .xl\:cl-from-yellow-500 {
    --gradient-from-color: #ecc94b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 201, 75, 0)) !important;
  }

  .xl\:cl-from-yellow-600 {
    --gradient-from-color: #d69e2e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(214, 158, 46, 0)) !important;
  }

  .xl\:cl-from-yellow-700 {
    --gradient-from-color: #b7791f !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(183, 121, 31, 0)) !important;
  }

  .xl\:cl-from-yellow-800 {
    --gradient-from-color: #975a16 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(151, 90, 22, 0)) !important;
  }

  .xl\:cl-from-yellow-900 {
    --gradient-from-color: #744210 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(116, 66, 16, 0)) !important;
  }

  .xl\:cl-from-green-100 {
    --gradient-from-color: #f0fff4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(240, 255, 244, 0)) !important;
  }

  .xl\:cl-from-green-200 {
    --gradient-from-color: #c6f6d5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(198, 246, 213, 0)) !important;
  }

  .xl\:cl-from-green-300 {
    --gradient-from-color: #9ae6b4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 230, 180, 0)) !important;
  }

  .xl\:cl-from-green-400 {
    --gradient-from-color: #68d391 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(104, 211, 145, 0)) !important;
  }

  .xl\:cl-from-green-500 {
    --gradient-from-color: #48bb78 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(72, 187, 120, 0)) !important;
  }

  .xl\:cl-from-green-600 {
    --gradient-from-color: #38a169 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(56, 161, 105, 0)) !important;
  }

  .xl\:cl-from-green-700 {
    --gradient-from-color: #2f855a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(47, 133, 90, 0)) !important;
  }

  .xl\:cl-from-green-800 {
    --gradient-from-color: #276749 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(39, 103, 73, 0)) !important;
  }

  .xl\:cl-from-green-900 {
    --gradient-from-color: #22543d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(34, 84, 61, 0)) !important;
  }

  .xl\:cl-from-teal-100 {
    --gradient-from-color: #e6fffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 255, 250, 0)) !important;
  }

  .xl\:cl-from-teal-200 {
    --gradient-from-color: #b2f5ea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(178, 245, 234, 0)) !important;
  }

  .xl\:cl-from-teal-300 {
    --gradient-from-color: #81e6d9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(129, 230, 217, 0)) !important;
  }

  .xl\:cl-from-teal-400 {
    --gradient-from-color: #4fd1c5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(79, 209, 197, 0)) !important;
  }

  .xl\:cl-from-teal-500 {
    --gradient-from-color: #38b2ac !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(56, 178, 172, 0)) !important;
  }

  .xl\:cl-from-teal-600 {
    --gradient-from-color: #319795 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(49, 151, 149, 0)) !important;
  }

  .xl\:cl-from-teal-700 {
    --gradient-from-color: #2c7a7b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(44, 122, 123, 0)) !important;
  }

  .xl\:cl-from-teal-800 {
    --gradient-from-color: #285e61 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(40, 94, 97, 0)) !important;
  }

  .xl\:cl-from-teal-900 {
    --gradient-from-color: #234e52 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(35, 78, 82, 0)) !important;
  }

  .xl\:cl-from-blue-100 {
    --gradient-from-color: #ebf8ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(235, 248, 255, 0)) !important;
  }

  .xl\:cl-from-blue-200 {
    --gradient-from-color: #bee3f8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(190, 227, 248, 0)) !important;
  }

  .xl\:cl-from-blue-300 {
    --gradient-from-color: #90cdf4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 205, 244, 0)) !important;
  }

  .xl\:cl-from-blue-400 {
    --gradient-from-color: #63b3ed !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(99, 179, 237, 0)) !important;
  }

  .xl\:cl-from-blue-500 {
    --gradient-from-color: #4299e1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 153, 225, 0)) !important;
  }

  .xl\:cl-from-blue-600 {
    --gradient-from-color: #3182ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(49, 130, 206, 0)) !important;
  }

  .xl\:cl-from-blue-700 {
    --gradient-from-color: #2b6cb0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(43, 108, 176, 0)) !important;
  }

  .xl\:cl-from-blue-800 {
    --gradient-from-color: #2c5282 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(44, 82, 130, 0)) !important;
  }

  .xl\:cl-from-blue-900 {
    --gradient-from-color: #2a4365 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(42, 67, 101, 0)) !important;
  }

  .xl\:cl-from-indigo-100 {
    --gradient-from-color: #ebf4ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(235, 244, 255, 0)) !important;
  }

  .xl\:cl-from-indigo-200 {
    --gradient-from-color: #c3dafe !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(195, 218, 254, 0)) !important;
  }

  .xl\:cl-from-indigo-300 {
    --gradient-from-color: #a3bffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(163, 191, 250, 0)) !important;
  }

  .xl\:cl-from-indigo-400 {
    --gradient-from-color: #7f9cf5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(127, 156, 245, 0)) !important;
  }

  .xl\:cl-from-indigo-500 {
    --gradient-from-color: #667eea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 126, 234, 0)) !important;
  }

  .xl\:cl-from-indigo-600 {
    --gradient-from-color: #5a67d8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 103, 216, 0)) !important;
  }

  .xl\:cl-from-indigo-700 {
    --gradient-from-color: #4c51bf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(76, 81, 191, 0)) !important;
  }

  .xl\:cl-from-indigo-800 {
    --gradient-from-color: #434190 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(67, 65, 144, 0)) !important;
  }

  .xl\:cl-from-indigo-900 {
    --gradient-from-color: #3c366b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(60, 54, 107, 0)) !important;
  }

  .xl\:cl-from-purple-100 {
    --gradient-from-color: #faf5ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 245, 255, 0)) !important;
  }

  .xl\:cl-from-purple-200 {
    --gradient-from-color: #e9d8fd !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(233, 216, 253, 0)) !important;
  }

  .xl\:cl-from-purple-300 {
    --gradient-from-color: #d6bcfa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(214, 188, 250, 0)) !important;
  }

  .xl\:cl-from-purple-400 {
    --gradient-from-color: #b794f4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(183, 148, 244, 0)) !important;
  }

  .xl\:cl-from-purple-500 {
    --gradient-from-color: #9f7aea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(159, 122, 234, 0)) !important;
  }

  .xl\:cl-from-purple-600 {
    --gradient-from-color: #805ad5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(128, 90, 213, 0)) !important;
  }

  .xl\:cl-from-purple-700 {
    --gradient-from-color: #6b46c1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(107, 70, 193, 0)) !important;
  }

  .xl\:cl-from-purple-800 {
    --gradient-from-color: #553c9a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(85, 60, 154, 0)) !important;
  }

  .xl\:cl-from-purple-900 {
    --gradient-from-color: #44337a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(68, 51, 122, 0)) !important;
  }

  .xl\:cl-from-pink-100 {
    --gradient-from-color: #fff5f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 245, 247, 0)) !important;
  }

  .xl\:cl-from-pink-200 {
    --gradient-from-color: #fed7e2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 215, 226, 0)) !important;
  }

  .xl\:cl-from-pink-300 {
    --gradient-from-color: #fbb6ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 182, 206, 0)) !important;
  }

  .xl\:cl-from-pink-400 {
    --gradient-from-color: #f687b3 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 135, 179, 0)) !important;
  }

  .xl\:cl-from-pink-500 {
    --gradient-from-color: #ed64a6 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 100, 166, 0)) !important;
  }

  .xl\:cl-from-pink-600 {
    --gradient-from-color: #d53f8c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(213, 63, 140, 0)) !important;
  }

  .xl\:cl-from-pink-700 {
    --gradient-from-color: #b83280 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(184, 50, 128, 0)) !important;
  }

  .xl\:cl-from-pink-800 {
    --gradient-from-color: #97266d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(151, 38, 109, 0)) !important;
  }

  .xl\:cl-from-pink-900 {
    --gradient-from-color: #702459 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(112, 36, 89, 0)) !important;
  }

  .xl\:cl-from-ui-gray-100 {
    --gradient-from-color: #f1f1f1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(241, 241, 241, 0)) !important;
  }

  .xl\:cl-from-ui-brown-100 {
    --gradient-from-color: #f3ecdc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(243, 236, 220, 0)) !important;
  }

  .xl\:cl-from-ui-brown-200 {
    --gradient-from-color: #e8e0c9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(232, 224, 201, 0)) !important;
  }

  .xl\:cl-from-ui-brown-300 {
    --gradient-from-color: #d0c095 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(208, 192, 149, 0)) !important;
  }

  .xl\:cl-from-ui-brown-700 {
    --gradient-from-color: #bd6005 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(189, 96, 5, 0)) !important;
  }

  .xl\:cl-from-ui-green-300 {
    --gradient-from-color: #aac74c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(170, 199, 76, 0)) !important;
  }

  .xl\:cl-from-ui-green-400 {
    --gradient-from-color: #71893e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(113, 137, 62, 0)) !important;
  }

  .xl\:cl-from-ui-orange-500 {
    --gradient-from-color: #e27212 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 114, 18, 0)) !important;
  }

  .xl\:cl-from-facebook {
    --gradient-from-color: #3b5998 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(59, 89, 152, 0)) !important;
  }

  .xl\:cl-from-twitter {
    --gradient-from-color: #00acee !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 172, 238, 0)) !important;
  }

  .xl\:cl-from-twitch {
    --gradient-from-color: #6441a5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 65, 165, 0)) !important;
  }

  .xl\:cl-from-youtube {
    --gradient-from-color: #FF0000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 0, 0, 0)) !important;
  }

  .xl\:cl-via-transparent {
    --gradient-via-color: transparent !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .xl\:cl-via-current {
    --gradient-via-color: currentColor !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .xl\:cl-via-black {
    --gradient-via-color: #000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .xl\:cl-via-white {
    --gradient-via-color: #fff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .xl\:cl-via-gray-100 {
    --gradient-via-color: #f7fafc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 250, 252, 0)) !important;
  }

  .xl\:cl-via-gray-200 {
    --gradient-via-color: #edf2f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 242, 247, 0)) !important;
  }

  .xl\:cl-via-gray-300 {
    --gradient-via-color: #e2e8f0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 232, 240, 0)) !important;
  }

  .xl\:cl-via-gray-400 {
    --gradient-via-color: #cbd5e0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(203, 213, 224, 0)) !important;
  }

  .xl\:cl-via-gray-500 {
    --gradient-via-color: #a0aec0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 174, 192, 0)) !important;
  }

  .xl\:cl-via-gray-600 {
    --gradient-via-color: #718096 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(113, 128, 150, 0)) !important;
  }

  .xl\:cl-via-gray-700 {
    --gradient-via-color: #4a5568 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 85, 104, 0)) !important;
  }

  .xl\:cl-via-gray-800 {
    --gradient-via-color: #2d3748 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(45, 55, 72, 0)) !important;
  }

  .xl\:cl-via-gray-900 {
    --gradient-via-color: #1a202c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 32, 44, 0)) !important;
  }

  .xl\:cl-via-red-100 {
    --gradient-via-color: #fff5f5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 245, 245, 0)) !important;
  }

  .xl\:cl-via-red-200 {
    --gradient-via-color: #fed7d7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 215, 215, 0)) !important;
  }

  .xl\:cl-via-red-300 {
    --gradient-via-color: #feb2b2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 178, 178, 0)) !important;
  }

  .xl\:cl-via-red-400 {
    --gradient-via-color: #fc8181 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(252, 129, 129, 0)) !important;
  }

  .xl\:cl-via-red-500 {
    --gradient-via-color: #f56565 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(245, 101, 101, 0)) !important;
  }

  .xl\:cl-via-red-600 {
    --gradient-via-color: #e53e3e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(229, 62, 62, 0)) !important;
  }

  .xl\:cl-via-red-700 {
    --gradient-via-color: #c53030 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(197, 48, 48, 0)) !important;
  }

  .xl\:cl-via-red-800 {
    --gradient-via-color: #9b2c2c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(155, 44, 44, 0)) !important;
  }

  .xl\:cl-via-red-900 {
    --gradient-via-color: #742a2a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(116, 42, 42, 0)) !important;
  }

  .xl\:cl-via-orange-100 {
    --gradient-via-color: #fffaf0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 240, 0)) !important;
  }

  .xl\:cl-via-orange-200 {
    --gradient-via-color: #feebc8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 235, 200, 0)) !important;
  }

  .xl\:cl-via-orange-300 {
    --gradient-via-color: #fbd38d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 211, 141, 0)) !important;
  }

  .xl\:cl-via-orange-400 {
    --gradient-via-color: #f6ad55 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 173, 85, 0)) !important;
  }

  .xl\:cl-via-orange-500 {
    --gradient-via-color: #ed8936 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 137, 54, 0)) !important;
  }

  .xl\:cl-via-orange-600 {
    --gradient-via-color: #dd6b20 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(221, 107, 32, 0)) !important;
  }

  .xl\:cl-via-orange-700 {
    --gradient-via-color: #c05621 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(192, 86, 33, 0)) !important;
  }

  .xl\:cl-via-orange-800 {
    --gradient-via-color: #9c4221 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 66, 33, 0)) !important;
  }

  .xl\:cl-via-orange-900 {
    --gradient-via-color: #7b341e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(123, 52, 30, 0)) !important;
  }

  .xl\:cl-via-yellow-100 {
    --gradient-via-color: #fffff0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 240, 0)) !important;
  }

  .xl\:cl-via-yellow-200 {
    --gradient-via-color: #fefcbf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 252, 191, 0)) !important;
  }

  .xl\:cl-via-yellow-300 {
    --gradient-via-color: #faf089 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 240, 137, 0)) !important;
  }

  .xl\:cl-via-yellow-400 {
    --gradient-via-color: #f6e05e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 224, 94, 0)) !important;
  }

  .xl\:cl-via-yellow-500 {
    --gradient-via-color: #ecc94b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 201, 75, 0)) !important;
  }

  .xl\:cl-via-yellow-600 {
    --gradient-via-color: #d69e2e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(214, 158, 46, 0)) !important;
  }

  .xl\:cl-via-yellow-700 {
    --gradient-via-color: #b7791f !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(183, 121, 31, 0)) !important;
  }

  .xl\:cl-via-yellow-800 {
    --gradient-via-color: #975a16 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(151, 90, 22, 0)) !important;
  }

  .xl\:cl-via-yellow-900 {
    --gradient-via-color: #744210 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(116, 66, 16, 0)) !important;
  }

  .xl\:cl-via-green-100 {
    --gradient-via-color: #f0fff4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(240, 255, 244, 0)) !important;
  }

  .xl\:cl-via-green-200 {
    --gradient-via-color: #c6f6d5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(198, 246, 213, 0)) !important;
  }

  .xl\:cl-via-green-300 {
    --gradient-via-color: #9ae6b4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 230, 180, 0)) !important;
  }

  .xl\:cl-via-green-400 {
    --gradient-via-color: #68d391 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(104, 211, 145, 0)) !important;
  }

  .xl\:cl-via-green-500 {
    --gradient-via-color: #48bb78 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(72, 187, 120, 0)) !important;
  }

  .xl\:cl-via-green-600 {
    --gradient-via-color: #38a169 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(56, 161, 105, 0)) !important;
  }

  .xl\:cl-via-green-700 {
    --gradient-via-color: #2f855a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(47, 133, 90, 0)) !important;
  }

  .xl\:cl-via-green-800 {
    --gradient-via-color: #276749 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(39, 103, 73, 0)) !important;
  }

  .xl\:cl-via-green-900 {
    --gradient-via-color: #22543d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(34, 84, 61, 0)) !important;
  }

  .xl\:cl-via-teal-100 {
    --gradient-via-color: #e6fffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 255, 250, 0)) !important;
  }

  .xl\:cl-via-teal-200 {
    --gradient-via-color: #b2f5ea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(178, 245, 234, 0)) !important;
  }

  .xl\:cl-via-teal-300 {
    --gradient-via-color: #81e6d9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(129, 230, 217, 0)) !important;
  }

  .xl\:cl-via-teal-400 {
    --gradient-via-color: #4fd1c5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(79, 209, 197, 0)) !important;
  }

  .xl\:cl-via-teal-500 {
    --gradient-via-color: #38b2ac !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(56, 178, 172, 0)) !important;
  }

  .xl\:cl-via-teal-600 {
    --gradient-via-color: #319795 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(49, 151, 149, 0)) !important;
  }

  .xl\:cl-via-teal-700 {
    --gradient-via-color: #2c7a7b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(44, 122, 123, 0)) !important;
  }

  .xl\:cl-via-teal-800 {
    --gradient-via-color: #285e61 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(40, 94, 97, 0)) !important;
  }

  .xl\:cl-via-teal-900 {
    --gradient-via-color: #234e52 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(35, 78, 82, 0)) !important;
  }

  .xl\:cl-via-blue-100 {
    --gradient-via-color: #ebf8ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(235, 248, 255, 0)) !important;
  }

  .xl\:cl-via-blue-200 {
    --gradient-via-color: #bee3f8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(190, 227, 248, 0)) !important;
  }

  .xl\:cl-via-blue-300 {
    --gradient-via-color: #90cdf4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 205, 244, 0)) !important;
  }

  .xl\:cl-via-blue-400 {
    --gradient-via-color: #63b3ed !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(99, 179, 237, 0)) !important;
  }

  .xl\:cl-via-blue-500 {
    --gradient-via-color: #4299e1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 153, 225, 0)) !important;
  }

  .xl\:cl-via-blue-600 {
    --gradient-via-color: #3182ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(49, 130, 206, 0)) !important;
  }

  .xl\:cl-via-blue-700 {
    --gradient-via-color: #2b6cb0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(43, 108, 176, 0)) !important;
  }

  .xl\:cl-via-blue-800 {
    --gradient-via-color: #2c5282 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(44, 82, 130, 0)) !important;
  }

  .xl\:cl-via-blue-900 {
    --gradient-via-color: #2a4365 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(42, 67, 101, 0)) !important;
  }

  .xl\:cl-via-indigo-100 {
    --gradient-via-color: #ebf4ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(235, 244, 255, 0)) !important;
  }

  .xl\:cl-via-indigo-200 {
    --gradient-via-color: #c3dafe !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(195, 218, 254, 0)) !important;
  }

  .xl\:cl-via-indigo-300 {
    --gradient-via-color: #a3bffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(163, 191, 250, 0)) !important;
  }

  .xl\:cl-via-indigo-400 {
    --gradient-via-color: #7f9cf5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(127, 156, 245, 0)) !important;
  }

  .xl\:cl-via-indigo-500 {
    --gradient-via-color: #667eea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 126, 234, 0)) !important;
  }

  .xl\:cl-via-indigo-600 {
    --gradient-via-color: #5a67d8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 103, 216, 0)) !important;
  }

  .xl\:cl-via-indigo-700 {
    --gradient-via-color: #4c51bf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(76, 81, 191, 0)) !important;
  }

  .xl\:cl-via-indigo-800 {
    --gradient-via-color: #434190 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(67, 65, 144, 0)) !important;
  }

  .xl\:cl-via-indigo-900 {
    --gradient-via-color: #3c366b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(60, 54, 107, 0)) !important;
  }

  .xl\:cl-via-purple-100 {
    --gradient-via-color: #faf5ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 245, 255, 0)) !important;
  }

  .xl\:cl-via-purple-200 {
    --gradient-via-color: #e9d8fd !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(233, 216, 253, 0)) !important;
  }

  .xl\:cl-via-purple-300 {
    --gradient-via-color: #d6bcfa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(214, 188, 250, 0)) !important;
  }

  .xl\:cl-via-purple-400 {
    --gradient-via-color: #b794f4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(183, 148, 244, 0)) !important;
  }

  .xl\:cl-via-purple-500 {
    --gradient-via-color: #9f7aea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(159, 122, 234, 0)) !important;
  }

  .xl\:cl-via-purple-600 {
    --gradient-via-color: #805ad5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(128, 90, 213, 0)) !important;
  }

  .xl\:cl-via-purple-700 {
    --gradient-via-color: #6b46c1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(107, 70, 193, 0)) !important;
  }

  .xl\:cl-via-purple-800 {
    --gradient-via-color: #553c9a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(85, 60, 154, 0)) !important;
  }

  .xl\:cl-via-purple-900 {
    --gradient-via-color: #44337a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(68, 51, 122, 0)) !important;
  }

  .xl\:cl-via-pink-100 {
    --gradient-via-color: #fff5f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 245, 247, 0)) !important;
  }

  .xl\:cl-via-pink-200 {
    --gradient-via-color: #fed7e2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 215, 226, 0)) !important;
  }

  .xl\:cl-via-pink-300 {
    --gradient-via-color: #fbb6ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 182, 206, 0)) !important;
  }

  .xl\:cl-via-pink-400 {
    --gradient-via-color: #f687b3 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 135, 179, 0)) !important;
  }

  .xl\:cl-via-pink-500 {
    --gradient-via-color: #ed64a6 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 100, 166, 0)) !important;
  }

  .xl\:cl-via-pink-600 {
    --gradient-via-color: #d53f8c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(213, 63, 140, 0)) !important;
  }

  .xl\:cl-via-pink-700 {
    --gradient-via-color: #b83280 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(184, 50, 128, 0)) !important;
  }

  .xl\:cl-via-pink-800 {
    --gradient-via-color: #97266d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(151, 38, 109, 0)) !important;
  }

  .xl\:cl-via-pink-900 {
    --gradient-via-color: #702459 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(112, 36, 89, 0)) !important;
  }

  .xl\:cl-via-ui-gray-100 {
    --gradient-via-color: #f1f1f1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(241, 241, 241, 0)) !important;
  }

  .xl\:cl-via-ui-brown-100 {
    --gradient-via-color: #f3ecdc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(243, 236, 220, 0)) !important;
  }

  .xl\:cl-via-ui-brown-200 {
    --gradient-via-color: #e8e0c9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(232, 224, 201, 0)) !important;
  }

  .xl\:cl-via-ui-brown-300 {
    --gradient-via-color: #d0c095 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(208, 192, 149, 0)) !important;
  }

  .xl\:cl-via-ui-brown-700 {
    --gradient-via-color: #bd6005 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(189, 96, 5, 0)) !important;
  }

  .xl\:cl-via-ui-green-300 {
    --gradient-via-color: #aac74c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(170, 199, 76, 0)) !important;
  }

  .xl\:cl-via-ui-green-400 {
    --gradient-via-color: #71893e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(113, 137, 62, 0)) !important;
  }

  .xl\:cl-via-ui-orange-500 {
    --gradient-via-color: #e27212 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 114, 18, 0)) !important;
  }

  .xl\:cl-via-facebook {
    --gradient-via-color: #3b5998 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(59, 89, 152, 0)) !important;
  }

  .xl\:cl-via-twitter {
    --gradient-via-color: #00acee !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 172, 238, 0)) !important;
  }

  .xl\:cl-via-twitch {
    --gradient-via-color: #6441a5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 65, 165, 0)) !important;
  }

  .xl\:cl-via-youtube {
    --gradient-via-color: #FF0000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 0, 0, 0)) !important;
  }

  .xl\:cl-to-transparent {
    --gradient-to-color: transparent !important;
  }

  .xl\:cl-to-current {
    --gradient-to-color: currentColor !important;
  }

  .xl\:cl-to-black {
    --gradient-to-color: #000 !important;
  }

  .xl\:cl-to-white {
    --gradient-to-color: #fff !important;
  }

  .xl\:cl-to-gray-100 {
    --gradient-to-color: #f7fafc !important;
  }

  .xl\:cl-to-gray-200 {
    --gradient-to-color: #edf2f7 !important;
  }

  .xl\:cl-to-gray-300 {
    --gradient-to-color: #e2e8f0 !important;
  }

  .xl\:cl-to-gray-400 {
    --gradient-to-color: #cbd5e0 !important;
  }

  .xl\:cl-to-gray-500 {
    --gradient-to-color: #a0aec0 !important;
  }

  .xl\:cl-to-gray-600 {
    --gradient-to-color: #718096 !important;
  }

  .xl\:cl-to-gray-700 {
    --gradient-to-color: #4a5568 !important;
  }

  .xl\:cl-to-gray-800 {
    --gradient-to-color: #2d3748 !important;
  }

  .xl\:cl-to-gray-900 {
    --gradient-to-color: #1a202c !important;
  }

  .xl\:cl-to-red-100 {
    --gradient-to-color: #fff5f5 !important;
  }

  .xl\:cl-to-red-200 {
    --gradient-to-color: #fed7d7 !important;
  }

  .xl\:cl-to-red-300 {
    --gradient-to-color: #feb2b2 !important;
  }

  .xl\:cl-to-red-400 {
    --gradient-to-color: #fc8181 !important;
  }

  .xl\:cl-to-red-500 {
    --gradient-to-color: #f56565 !important;
  }

  .xl\:cl-to-red-600 {
    --gradient-to-color: #e53e3e !important;
  }

  .xl\:cl-to-red-700 {
    --gradient-to-color: #c53030 !important;
  }

  .xl\:cl-to-red-800 {
    --gradient-to-color: #9b2c2c !important;
  }

  .xl\:cl-to-red-900 {
    --gradient-to-color: #742a2a !important;
  }

  .xl\:cl-to-orange-100 {
    --gradient-to-color: #fffaf0 !important;
  }

  .xl\:cl-to-orange-200 {
    --gradient-to-color: #feebc8 !important;
  }

  .xl\:cl-to-orange-300 {
    --gradient-to-color: #fbd38d !important;
  }

  .xl\:cl-to-orange-400 {
    --gradient-to-color: #f6ad55 !important;
  }

  .xl\:cl-to-orange-500 {
    --gradient-to-color: #ed8936 !important;
  }

  .xl\:cl-to-orange-600 {
    --gradient-to-color: #dd6b20 !important;
  }

  .xl\:cl-to-orange-700 {
    --gradient-to-color: #c05621 !important;
  }

  .xl\:cl-to-orange-800 {
    --gradient-to-color: #9c4221 !important;
  }

  .xl\:cl-to-orange-900 {
    --gradient-to-color: #7b341e !important;
  }

  .xl\:cl-to-yellow-100 {
    --gradient-to-color: #fffff0 !important;
  }

  .xl\:cl-to-yellow-200 {
    --gradient-to-color: #fefcbf !important;
  }

  .xl\:cl-to-yellow-300 {
    --gradient-to-color: #faf089 !important;
  }

  .xl\:cl-to-yellow-400 {
    --gradient-to-color: #f6e05e !important;
  }

  .xl\:cl-to-yellow-500 {
    --gradient-to-color: #ecc94b !important;
  }

  .xl\:cl-to-yellow-600 {
    --gradient-to-color: #d69e2e !important;
  }

  .xl\:cl-to-yellow-700 {
    --gradient-to-color: #b7791f !important;
  }

  .xl\:cl-to-yellow-800 {
    --gradient-to-color: #975a16 !important;
  }

  .xl\:cl-to-yellow-900 {
    --gradient-to-color: #744210 !important;
  }

  .xl\:cl-to-green-100 {
    --gradient-to-color: #f0fff4 !important;
  }

  .xl\:cl-to-green-200 {
    --gradient-to-color: #c6f6d5 !important;
  }

  .xl\:cl-to-green-300 {
    --gradient-to-color: #9ae6b4 !important;
  }

  .xl\:cl-to-green-400 {
    --gradient-to-color: #68d391 !important;
  }

  .xl\:cl-to-green-500 {
    --gradient-to-color: #48bb78 !important;
  }

  .xl\:cl-to-green-600 {
    --gradient-to-color: #38a169 !important;
  }

  .xl\:cl-to-green-700 {
    --gradient-to-color: #2f855a !important;
  }

  .xl\:cl-to-green-800 {
    --gradient-to-color: #276749 !important;
  }

  .xl\:cl-to-green-900 {
    --gradient-to-color: #22543d !important;
  }

  .xl\:cl-to-teal-100 {
    --gradient-to-color: #e6fffa !important;
  }

  .xl\:cl-to-teal-200 {
    --gradient-to-color: #b2f5ea !important;
  }

  .xl\:cl-to-teal-300 {
    --gradient-to-color: #81e6d9 !important;
  }

  .xl\:cl-to-teal-400 {
    --gradient-to-color: #4fd1c5 !important;
  }

  .xl\:cl-to-teal-500 {
    --gradient-to-color: #38b2ac !important;
  }

  .xl\:cl-to-teal-600 {
    --gradient-to-color: #319795 !important;
  }

  .xl\:cl-to-teal-700 {
    --gradient-to-color: #2c7a7b !important;
  }

  .xl\:cl-to-teal-800 {
    --gradient-to-color: #285e61 !important;
  }

  .xl\:cl-to-teal-900 {
    --gradient-to-color: #234e52 !important;
  }

  .xl\:cl-to-blue-100 {
    --gradient-to-color: #ebf8ff !important;
  }

  .xl\:cl-to-blue-200 {
    --gradient-to-color: #bee3f8 !important;
  }

  .xl\:cl-to-blue-300 {
    --gradient-to-color: #90cdf4 !important;
  }

  .xl\:cl-to-blue-400 {
    --gradient-to-color: #63b3ed !important;
  }

  .xl\:cl-to-blue-500 {
    --gradient-to-color: #4299e1 !important;
  }

  .xl\:cl-to-blue-600 {
    --gradient-to-color: #3182ce !important;
  }

  .xl\:cl-to-blue-700 {
    --gradient-to-color: #2b6cb0 !important;
  }

  .xl\:cl-to-blue-800 {
    --gradient-to-color: #2c5282 !important;
  }

  .xl\:cl-to-blue-900 {
    --gradient-to-color: #2a4365 !important;
  }

  .xl\:cl-to-indigo-100 {
    --gradient-to-color: #ebf4ff !important;
  }

  .xl\:cl-to-indigo-200 {
    --gradient-to-color: #c3dafe !important;
  }

  .xl\:cl-to-indigo-300 {
    --gradient-to-color: #a3bffa !important;
  }

  .xl\:cl-to-indigo-400 {
    --gradient-to-color: #7f9cf5 !important;
  }

  .xl\:cl-to-indigo-500 {
    --gradient-to-color: #667eea !important;
  }

  .xl\:cl-to-indigo-600 {
    --gradient-to-color: #5a67d8 !important;
  }

  .xl\:cl-to-indigo-700 {
    --gradient-to-color: #4c51bf !important;
  }

  .xl\:cl-to-indigo-800 {
    --gradient-to-color: #434190 !important;
  }

  .xl\:cl-to-indigo-900 {
    --gradient-to-color: #3c366b !important;
  }

  .xl\:cl-to-purple-100 {
    --gradient-to-color: #faf5ff !important;
  }

  .xl\:cl-to-purple-200 {
    --gradient-to-color: #e9d8fd !important;
  }

  .xl\:cl-to-purple-300 {
    --gradient-to-color: #d6bcfa !important;
  }

  .xl\:cl-to-purple-400 {
    --gradient-to-color: #b794f4 !important;
  }

  .xl\:cl-to-purple-500 {
    --gradient-to-color: #9f7aea !important;
  }

  .xl\:cl-to-purple-600 {
    --gradient-to-color: #805ad5 !important;
  }

  .xl\:cl-to-purple-700 {
    --gradient-to-color: #6b46c1 !important;
  }

  .xl\:cl-to-purple-800 {
    --gradient-to-color: #553c9a !important;
  }

  .xl\:cl-to-purple-900 {
    --gradient-to-color: #44337a !important;
  }

  .xl\:cl-to-pink-100 {
    --gradient-to-color: #fff5f7 !important;
  }

  .xl\:cl-to-pink-200 {
    --gradient-to-color: #fed7e2 !important;
  }

  .xl\:cl-to-pink-300 {
    --gradient-to-color: #fbb6ce !important;
  }

  .xl\:cl-to-pink-400 {
    --gradient-to-color: #f687b3 !important;
  }

  .xl\:cl-to-pink-500 {
    --gradient-to-color: #ed64a6 !important;
  }

  .xl\:cl-to-pink-600 {
    --gradient-to-color: #d53f8c !important;
  }

  .xl\:cl-to-pink-700 {
    --gradient-to-color: #b83280 !important;
  }

  .xl\:cl-to-pink-800 {
    --gradient-to-color: #97266d !important;
  }

  .xl\:cl-to-pink-900 {
    --gradient-to-color: #702459 !important;
  }

  .xl\:cl-to-ui-gray-100 {
    --gradient-to-color: #f1f1f1 !important;
  }

  .xl\:cl-to-ui-brown-100 {
    --gradient-to-color: #f3ecdc !important;
  }

  .xl\:cl-to-ui-brown-200 {
    --gradient-to-color: #e8e0c9 !important;
  }

  .xl\:cl-to-ui-brown-300 {
    --gradient-to-color: #d0c095 !important;
  }

  .xl\:cl-to-ui-brown-700 {
    --gradient-to-color: #bd6005 !important;
  }

  .xl\:cl-to-ui-green-300 {
    --gradient-to-color: #aac74c !important;
  }

  .xl\:cl-to-ui-green-400 {
    --gradient-to-color: #71893e !important;
  }

  .xl\:cl-to-ui-orange-500 {
    --gradient-to-color: #e27212 !important;
  }

  .xl\:cl-to-facebook {
    --gradient-to-color: #3b5998 !important;
  }

  .xl\:cl-to-twitter {
    --gradient-to-color: #00acee !important;
  }

  .xl\:cl-to-twitch {
    --gradient-to-color: #6441a5 !important;
  }

  .xl\:cl-to-youtube {
    --gradient-to-color: #FF0000 !important;
  }

  .xl\:hover\:cl-from-transparent:hover {
    --gradient-from-color: transparent !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .xl\:hover\:cl-from-current:hover {
    --gradient-from-color: currentColor !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .xl\:hover\:cl-from-black:hover {
    --gradient-from-color: #000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .xl\:hover\:cl-from-white:hover {
    --gradient-from-color: #fff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .xl\:hover\:cl-from-gray-100:hover {
    --gradient-from-color: #f7fafc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 250, 252, 0)) !important;
  }

  .xl\:hover\:cl-from-gray-200:hover {
    --gradient-from-color: #edf2f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 242, 247, 0)) !important;
  }

  .xl\:hover\:cl-from-gray-300:hover {
    --gradient-from-color: #e2e8f0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 232, 240, 0)) !important;
  }

  .xl\:hover\:cl-from-gray-400:hover {
    --gradient-from-color: #cbd5e0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(203, 213, 224, 0)) !important;
  }

  .xl\:hover\:cl-from-gray-500:hover {
    --gradient-from-color: #a0aec0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 174, 192, 0)) !important;
  }

  .xl\:hover\:cl-from-gray-600:hover {
    --gradient-from-color: #718096 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(113, 128, 150, 0)) !important;
  }

  .xl\:hover\:cl-from-gray-700:hover {
    --gradient-from-color: #4a5568 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 85, 104, 0)) !important;
  }

  .xl\:hover\:cl-from-gray-800:hover {
    --gradient-from-color: #2d3748 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(45, 55, 72, 0)) !important;
  }

  .xl\:hover\:cl-from-gray-900:hover {
    --gradient-from-color: #1a202c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 32, 44, 0)) !important;
  }

  .xl\:hover\:cl-from-red-100:hover {
    --gradient-from-color: #fff5f5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 245, 245, 0)) !important;
  }

  .xl\:hover\:cl-from-red-200:hover {
    --gradient-from-color: #fed7d7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 215, 215, 0)) !important;
  }

  .xl\:hover\:cl-from-red-300:hover {
    --gradient-from-color: #feb2b2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 178, 178, 0)) !important;
  }

  .xl\:hover\:cl-from-red-400:hover {
    --gradient-from-color: #fc8181 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(252, 129, 129, 0)) !important;
  }

  .xl\:hover\:cl-from-red-500:hover {
    --gradient-from-color: #f56565 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(245, 101, 101, 0)) !important;
  }

  .xl\:hover\:cl-from-red-600:hover {
    --gradient-from-color: #e53e3e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(229, 62, 62, 0)) !important;
  }

  .xl\:hover\:cl-from-red-700:hover {
    --gradient-from-color: #c53030 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(197, 48, 48, 0)) !important;
  }

  .xl\:hover\:cl-from-red-800:hover {
    --gradient-from-color: #9b2c2c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(155, 44, 44, 0)) !important;
  }

  .xl\:hover\:cl-from-red-900:hover {
    --gradient-from-color: #742a2a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(116, 42, 42, 0)) !important;
  }

  .xl\:hover\:cl-from-orange-100:hover {
    --gradient-from-color: #fffaf0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 240, 0)) !important;
  }

  .xl\:hover\:cl-from-orange-200:hover {
    --gradient-from-color: #feebc8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 235, 200, 0)) !important;
  }

  .xl\:hover\:cl-from-orange-300:hover {
    --gradient-from-color: #fbd38d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 211, 141, 0)) !important;
  }

  .xl\:hover\:cl-from-orange-400:hover {
    --gradient-from-color: #f6ad55 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 173, 85, 0)) !important;
  }

  .xl\:hover\:cl-from-orange-500:hover {
    --gradient-from-color: #ed8936 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 137, 54, 0)) !important;
  }

  .xl\:hover\:cl-from-orange-600:hover {
    --gradient-from-color: #dd6b20 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(221, 107, 32, 0)) !important;
  }

  .xl\:hover\:cl-from-orange-700:hover {
    --gradient-from-color: #c05621 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(192, 86, 33, 0)) !important;
  }

  .xl\:hover\:cl-from-orange-800:hover {
    --gradient-from-color: #9c4221 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 66, 33, 0)) !important;
  }

  .xl\:hover\:cl-from-orange-900:hover {
    --gradient-from-color: #7b341e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(123, 52, 30, 0)) !important;
  }

  .xl\:hover\:cl-from-yellow-100:hover {
    --gradient-from-color: #fffff0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 240, 0)) !important;
  }

  .xl\:hover\:cl-from-yellow-200:hover {
    --gradient-from-color: #fefcbf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 252, 191, 0)) !important;
  }

  .xl\:hover\:cl-from-yellow-300:hover {
    --gradient-from-color: #faf089 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 240, 137, 0)) !important;
  }

  .xl\:hover\:cl-from-yellow-400:hover {
    --gradient-from-color: #f6e05e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 224, 94, 0)) !important;
  }

  .xl\:hover\:cl-from-yellow-500:hover {
    --gradient-from-color: #ecc94b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 201, 75, 0)) !important;
  }

  .xl\:hover\:cl-from-yellow-600:hover {
    --gradient-from-color: #d69e2e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(214, 158, 46, 0)) !important;
  }

  .xl\:hover\:cl-from-yellow-700:hover {
    --gradient-from-color: #b7791f !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(183, 121, 31, 0)) !important;
  }

  .xl\:hover\:cl-from-yellow-800:hover {
    --gradient-from-color: #975a16 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(151, 90, 22, 0)) !important;
  }

  .xl\:hover\:cl-from-yellow-900:hover {
    --gradient-from-color: #744210 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(116, 66, 16, 0)) !important;
  }

  .xl\:hover\:cl-from-green-100:hover {
    --gradient-from-color: #f0fff4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(240, 255, 244, 0)) !important;
  }

  .xl\:hover\:cl-from-green-200:hover {
    --gradient-from-color: #c6f6d5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(198, 246, 213, 0)) !important;
  }

  .xl\:hover\:cl-from-green-300:hover {
    --gradient-from-color: #9ae6b4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 230, 180, 0)) !important;
  }

  .xl\:hover\:cl-from-green-400:hover {
    --gradient-from-color: #68d391 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(104, 211, 145, 0)) !important;
  }

  .xl\:hover\:cl-from-green-500:hover {
    --gradient-from-color: #48bb78 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(72, 187, 120, 0)) !important;
  }

  .xl\:hover\:cl-from-green-600:hover {
    --gradient-from-color: #38a169 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(56, 161, 105, 0)) !important;
  }

  .xl\:hover\:cl-from-green-700:hover {
    --gradient-from-color: #2f855a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(47, 133, 90, 0)) !important;
  }

  .xl\:hover\:cl-from-green-800:hover {
    --gradient-from-color: #276749 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(39, 103, 73, 0)) !important;
  }

  .xl\:hover\:cl-from-green-900:hover {
    --gradient-from-color: #22543d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(34, 84, 61, 0)) !important;
  }

  .xl\:hover\:cl-from-teal-100:hover {
    --gradient-from-color: #e6fffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 255, 250, 0)) !important;
  }

  .xl\:hover\:cl-from-teal-200:hover {
    --gradient-from-color: #b2f5ea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(178, 245, 234, 0)) !important;
  }

  .xl\:hover\:cl-from-teal-300:hover {
    --gradient-from-color: #81e6d9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(129, 230, 217, 0)) !important;
  }

  .xl\:hover\:cl-from-teal-400:hover {
    --gradient-from-color: #4fd1c5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(79, 209, 197, 0)) !important;
  }

  .xl\:hover\:cl-from-teal-500:hover {
    --gradient-from-color: #38b2ac !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(56, 178, 172, 0)) !important;
  }

  .xl\:hover\:cl-from-teal-600:hover {
    --gradient-from-color: #319795 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(49, 151, 149, 0)) !important;
  }

  .xl\:hover\:cl-from-teal-700:hover {
    --gradient-from-color: #2c7a7b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(44, 122, 123, 0)) !important;
  }

  .xl\:hover\:cl-from-teal-800:hover {
    --gradient-from-color: #285e61 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(40, 94, 97, 0)) !important;
  }

  .xl\:hover\:cl-from-teal-900:hover {
    --gradient-from-color: #234e52 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(35, 78, 82, 0)) !important;
  }

  .xl\:hover\:cl-from-blue-100:hover {
    --gradient-from-color: #ebf8ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(235, 248, 255, 0)) !important;
  }

  .xl\:hover\:cl-from-blue-200:hover {
    --gradient-from-color: #bee3f8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(190, 227, 248, 0)) !important;
  }

  .xl\:hover\:cl-from-blue-300:hover {
    --gradient-from-color: #90cdf4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 205, 244, 0)) !important;
  }

  .xl\:hover\:cl-from-blue-400:hover {
    --gradient-from-color: #63b3ed !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(99, 179, 237, 0)) !important;
  }

  .xl\:hover\:cl-from-blue-500:hover {
    --gradient-from-color: #4299e1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 153, 225, 0)) !important;
  }

  .xl\:hover\:cl-from-blue-600:hover {
    --gradient-from-color: #3182ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(49, 130, 206, 0)) !important;
  }

  .xl\:hover\:cl-from-blue-700:hover {
    --gradient-from-color: #2b6cb0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(43, 108, 176, 0)) !important;
  }

  .xl\:hover\:cl-from-blue-800:hover {
    --gradient-from-color: #2c5282 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(44, 82, 130, 0)) !important;
  }

  .xl\:hover\:cl-from-blue-900:hover {
    --gradient-from-color: #2a4365 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(42, 67, 101, 0)) !important;
  }

  .xl\:hover\:cl-from-indigo-100:hover {
    --gradient-from-color: #ebf4ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(235, 244, 255, 0)) !important;
  }

  .xl\:hover\:cl-from-indigo-200:hover {
    --gradient-from-color: #c3dafe !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(195, 218, 254, 0)) !important;
  }

  .xl\:hover\:cl-from-indigo-300:hover {
    --gradient-from-color: #a3bffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(163, 191, 250, 0)) !important;
  }

  .xl\:hover\:cl-from-indigo-400:hover {
    --gradient-from-color: #7f9cf5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(127, 156, 245, 0)) !important;
  }

  .xl\:hover\:cl-from-indigo-500:hover {
    --gradient-from-color: #667eea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 126, 234, 0)) !important;
  }

  .xl\:hover\:cl-from-indigo-600:hover {
    --gradient-from-color: #5a67d8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 103, 216, 0)) !important;
  }

  .xl\:hover\:cl-from-indigo-700:hover {
    --gradient-from-color: #4c51bf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(76, 81, 191, 0)) !important;
  }

  .xl\:hover\:cl-from-indigo-800:hover {
    --gradient-from-color: #434190 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(67, 65, 144, 0)) !important;
  }

  .xl\:hover\:cl-from-indigo-900:hover {
    --gradient-from-color: #3c366b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(60, 54, 107, 0)) !important;
  }

  .xl\:hover\:cl-from-purple-100:hover {
    --gradient-from-color: #faf5ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 245, 255, 0)) !important;
  }

  .xl\:hover\:cl-from-purple-200:hover {
    --gradient-from-color: #e9d8fd !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(233, 216, 253, 0)) !important;
  }

  .xl\:hover\:cl-from-purple-300:hover {
    --gradient-from-color: #d6bcfa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(214, 188, 250, 0)) !important;
  }

  .xl\:hover\:cl-from-purple-400:hover {
    --gradient-from-color: #b794f4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(183, 148, 244, 0)) !important;
  }

  .xl\:hover\:cl-from-purple-500:hover {
    --gradient-from-color: #9f7aea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(159, 122, 234, 0)) !important;
  }

  .xl\:hover\:cl-from-purple-600:hover {
    --gradient-from-color: #805ad5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(128, 90, 213, 0)) !important;
  }

  .xl\:hover\:cl-from-purple-700:hover {
    --gradient-from-color: #6b46c1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(107, 70, 193, 0)) !important;
  }

  .xl\:hover\:cl-from-purple-800:hover {
    --gradient-from-color: #553c9a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(85, 60, 154, 0)) !important;
  }

  .xl\:hover\:cl-from-purple-900:hover {
    --gradient-from-color: #44337a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(68, 51, 122, 0)) !important;
  }

  .xl\:hover\:cl-from-pink-100:hover {
    --gradient-from-color: #fff5f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 245, 247, 0)) !important;
  }

  .xl\:hover\:cl-from-pink-200:hover {
    --gradient-from-color: #fed7e2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 215, 226, 0)) !important;
  }

  .xl\:hover\:cl-from-pink-300:hover {
    --gradient-from-color: #fbb6ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 182, 206, 0)) !important;
  }

  .xl\:hover\:cl-from-pink-400:hover {
    --gradient-from-color: #f687b3 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 135, 179, 0)) !important;
  }

  .xl\:hover\:cl-from-pink-500:hover {
    --gradient-from-color: #ed64a6 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 100, 166, 0)) !important;
  }

  .xl\:hover\:cl-from-pink-600:hover {
    --gradient-from-color: #d53f8c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(213, 63, 140, 0)) !important;
  }

  .xl\:hover\:cl-from-pink-700:hover {
    --gradient-from-color: #b83280 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(184, 50, 128, 0)) !important;
  }

  .xl\:hover\:cl-from-pink-800:hover {
    --gradient-from-color: #97266d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(151, 38, 109, 0)) !important;
  }

  .xl\:hover\:cl-from-pink-900:hover {
    --gradient-from-color: #702459 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(112, 36, 89, 0)) !important;
  }

  .xl\:hover\:cl-from-ui-gray-100:hover {
    --gradient-from-color: #f1f1f1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(241, 241, 241, 0)) !important;
  }

  .xl\:hover\:cl-from-ui-brown-100:hover {
    --gradient-from-color: #f3ecdc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(243, 236, 220, 0)) !important;
  }

  .xl\:hover\:cl-from-ui-brown-200:hover {
    --gradient-from-color: #e8e0c9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(232, 224, 201, 0)) !important;
  }

  .xl\:hover\:cl-from-ui-brown-300:hover {
    --gradient-from-color: #d0c095 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(208, 192, 149, 0)) !important;
  }

  .xl\:hover\:cl-from-ui-brown-700:hover {
    --gradient-from-color: #bd6005 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(189, 96, 5, 0)) !important;
  }

  .xl\:hover\:cl-from-ui-green-300:hover {
    --gradient-from-color: #aac74c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(170, 199, 76, 0)) !important;
  }

  .xl\:hover\:cl-from-ui-green-400:hover {
    --gradient-from-color: #71893e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(113, 137, 62, 0)) !important;
  }

  .xl\:hover\:cl-from-ui-orange-500:hover {
    --gradient-from-color: #e27212 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 114, 18, 0)) !important;
  }

  .xl\:hover\:cl-from-facebook:hover {
    --gradient-from-color: #3b5998 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(59, 89, 152, 0)) !important;
  }

  .xl\:hover\:cl-from-twitter:hover {
    --gradient-from-color: #00acee !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 172, 238, 0)) !important;
  }

  .xl\:hover\:cl-from-twitch:hover {
    --gradient-from-color: #6441a5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 65, 165, 0)) !important;
  }

  .xl\:hover\:cl-from-youtube:hover {
    --gradient-from-color: #FF0000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 0, 0, 0)) !important;
  }

  .xl\:hover\:cl-via-transparent:hover {
    --gradient-via-color: transparent !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .xl\:hover\:cl-via-current:hover {
    --gradient-via-color: currentColor !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .xl\:hover\:cl-via-black:hover {
    --gradient-via-color: #000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .xl\:hover\:cl-via-white:hover {
    --gradient-via-color: #fff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .xl\:hover\:cl-via-gray-100:hover {
    --gradient-via-color: #f7fafc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 250, 252, 0)) !important;
  }

  .xl\:hover\:cl-via-gray-200:hover {
    --gradient-via-color: #edf2f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 242, 247, 0)) !important;
  }

  .xl\:hover\:cl-via-gray-300:hover {
    --gradient-via-color: #e2e8f0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 232, 240, 0)) !important;
  }

  .xl\:hover\:cl-via-gray-400:hover {
    --gradient-via-color: #cbd5e0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(203, 213, 224, 0)) !important;
  }

  .xl\:hover\:cl-via-gray-500:hover {
    --gradient-via-color: #a0aec0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 174, 192, 0)) !important;
  }

  .xl\:hover\:cl-via-gray-600:hover {
    --gradient-via-color: #718096 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(113, 128, 150, 0)) !important;
  }

  .xl\:hover\:cl-via-gray-700:hover {
    --gradient-via-color: #4a5568 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 85, 104, 0)) !important;
  }

  .xl\:hover\:cl-via-gray-800:hover {
    --gradient-via-color: #2d3748 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(45, 55, 72, 0)) !important;
  }

  .xl\:hover\:cl-via-gray-900:hover {
    --gradient-via-color: #1a202c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 32, 44, 0)) !important;
  }

  .xl\:hover\:cl-via-red-100:hover {
    --gradient-via-color: #fff5f5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 245, 245, 0)) !important;
  }

  .xl\:hover\:cl-via-red-200:hover {
    --gradient-via-color: #fed7d7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 215, 215, 0)) !important;
  }

  .xl\:hover\:cl-via-red-300:hover {
    --gradient-via-color: #feb2b2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 178, 178, 0)) !important;
  }

  .xl\:hover\:cl-via-red-400:hover {
    --gradient-via-color: #fc8181 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(252, 129, 129, 0)) !important;
  }

  .xl\:hover\:cl-via-red-500:hover {
    --gradient-via-color: #f56565 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(245, 101, 101, 0)) !important;
  }

  .xl\:hover\:cl-via-red-600:hover {
    --gradient-via-color: #e53e3e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(229, 62, 62, 0)) !important;
  }

  .xl\:hover\:cl-via-red-700:hover {
    --gradient-via-color: #c53030 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(197, 48, 48, 0)) !important;
  }

  .xl\:hover\:cl-via-red-800:hover {
    --gradient-via-color: #9b2c2c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(155, 44, 44, 0)) !important;
  }

  .xl\:hover\:cl-via-red-900:hover {
    --gradient-via-color: #742a2a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(116, 42, 42, 0)) !important;
  }

  .xl\:hover\:cl-via-orange-100:hover {
    --gradient-via-color: #fffaf0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 240, 0)) !important;
  }

  .xl\:hover\:cl-via-orange-200:hover {
    --gradient-via-color: #feebc8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 235, 200, 0)) !important;
  }

  .xl\:hover\:cl-via-orange-300:hover {
    --gradient-via-color: #fbd38d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 211, 141, 0)) !important;
  }

  .xl\:hover\:cl-via-orange-400:hover {
    --gradient-via-color: #f6ad55 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 173, 85, 0)) !important;
  }

  .xl\:hover\:cl-via-orange-500:hover {
    --gradient-via-color: #ed8936 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 137, 54, 0)) !important;
  }

  .xl\:hover\:cl-via-orange-600:hover {
    --gradient-via-color: #dd6b20 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(221, 107, 32, 0)) !important;
  }

  .xl\:hover\:cl-via-orange-700:hover {
    --gradient-via-color: #c05621 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(192, 86, 33, 0)) !important;
  }

  .xl\:hover\:cl-via-orange-800:hover {
    --gradient-via-color: #9c4221 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 66, 33, 0)) !important;
  }

  .xl\:hover\:cl-via-orange-900:hover {
    --gradient-via-color: #7b341e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(123, 52, 30, 0)) !important;
  }

  .xl\:hover\:cl-via-yellow-100:hover {
    --gradient-via-color: #fffff0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 240, 0)) !important;
  }

  .xl\:hover\:cl-via-yellow-200:hover {
    --gradient-via-color: #fefcbf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 252, 191, 0)) !important;
  }

  .xl\:hover\:cl-via-yellow-300:hover {
    --gradient-via-color: #faf089 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 240, 137, 0)) !important;
  }

  .xl\:hover\:cl-via-yellow-400:hover {
    --gradient-via-color: #f6e05e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 224, 94, 0)) !important;
  }

  .xl\:hover\:cl-via-yellow-500:hover {
    --gradient-via-color: #ecc94b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 201, 75, 0)) !important;
  }

  .xl\:hover\:cl-via-yellow-600:hover {
    --gradient-via-color: #d69e2e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(214, 158, 46, 0)) !important;
  }

  .xl\:hover\:cl-via-yellow-700:hover {
    --gradient-via-color: #b7791f !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(183, 121, 31, 0)) !important;
  }

  .xl\:hover\:cl-via-yellow-800:hover {
    --gradient-via-color: #975a16 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(151, 90, 22, 0)) !important;
  }

  .xl\:hover\:cl-via-yellow-900:hover {
    --gradient-via-color: #744210 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(116, 66, 16, 0)) !important;
  }

  .xl\:hover\:cl-via-green-100:hover {
    --gradient-via-color: #f0fff4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(240, 255, 244, 0)) !important;
  }

  .xl\:hover\:cl-via-green-200:hover {
    --gradient-via-color: #c6f6d5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(198, 246, 213, 0)) !important;
  }

  .xl\:hover\:cl-via-green-300:hover {
    --gradient-via-color: #9ae6b4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 230, 180, 0)) !important;
  }

  .xl\:hover\:cl-via-green-400:hover {
    --gradient-via-color: #68d391 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(104, 211, 145, 0)) !important;
  }

  .xl\:hover\:cl-via-green-500:hover {
    --gradient-via-color: #48bb78 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(72, 187, 120, 0)) !important;
  }

  .xl\:hover\:cl-via-green-600:hover {
    --gradient-via-color: #38a169 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(56, 161, 105, 0)) !important;
  }

  .xl\:hover\:cl-via-green-700:hover {
    --gradient-via-color: #2f855a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(47, 133, 90, 0)) !important;
  }

  .xl\:hover\:cl-via-green-800:hover {
    --gradient-via-color: #276749 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(39, 103, 73, 0)) !important;
  }

  .xl\:hover\:cl-via-green-900:hover {
    --gradient-via-color: #22543d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(34, 84, 61, 0)) !important;
  }

  .xl\:hover\:cl-via-teal-100:hover {
    --gradient-via-color: #e6fffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 255, 250, 0)) !important;
  }

  .xl\:hover\:cl-via-teal-200:hover {
    --gradient-via-color: #b2f5ea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(178, 245, 234, 0)) !important;
  }

  .xl\:hover\:cl-via-teal-300:hover {
    --gradient-via-color: #81e6d9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(129, 230, 217, 0)) !important;
  }

  .xl\:hover\:cl-via-teal-400:hover {
    --gradient-via-color: #4fd1c5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(79, 209, 197, 0)) !important;
  }

  .xl\:hover\:cl-via-teal-500:hover {
    --gradient-via-color: #38b2ac !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(56, 178, 172, 0)) !important;
  }

  .xl\:hover\:cl-via-teal-600:hover {
    --gradient-via-color: #319795 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(49, 151, 149, 0)) !important;
  }

  .xl\:hover\:cl-via-teal-700:hover {
    --gradient-via-color: #2c7a7b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(44, 122, 123, 0)) !important;
  }

  .xl\:hover\:cl-via-teal-800:hover {
    --gradient-via-color: #285e61 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(40, 94, 97, 0)) !important;
  }

  .xl\:hover\:cl-via-teal-900:hover {
    --gradient-via-color: #234e52 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(35, 78, 82, 0)) !important;
  }

  .xl\:hover\:cl-via-blue-100:hover {
    --gradient-via-color: #ebf8ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(235, 248, 255, 0)) !important;
  }

  .xl\:hover\:cl-via-blue-200:hover {
    --gradient-via-color: #bee3f8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(190, 227, 248, 0)) !important;
  }

  .xl\:hover\:cl-via-blue-300:hover {
    --gradient-via-color: #90cdf4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 205, 244, 0)) !important;
  }

  .xl\:hover\:cl-via-blue-400:hover {
    --gradient-via-color: #63b3ed !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(99, 179, 237, 0)) !important;
  }

  .xl\:hover\:cl-via-blue-500:hover {
    --gradient-via-color: #4299e1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 153, 225, 0)) !important;
  }

  .xl\:hover\:cl-via-blue-600:hover {
    --gradient-via-color: #3182ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(49, 130, 206, 0)) !important;
  }

  .xl\:hover\:cl-via-blue-700:hover {
    --gradient-via-color: #2b6cb0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(43, 108, 176, 0)) !important;
  }

  .xl\:hover\:cl-via-blue-800:hover {
    --gradient-via-color: #2c5282 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(44, 82, 130, 0)) !important;
  }

  .xl\:hover\:cl-via-blue-900:hover {
    --gradient-via-color: #2a4365 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(42, 67, 101, 0)) !important;
  }

  .xl\:hover\:cl-via-indigo-100:hover {
    --gradient-via-color: #ebf4ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(235, 244, 255, 0)) !important;
  }

  .xl\:hover\:cl-via-indigo-200:hover {
    --gradient-via-color: #c3dafe !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(195, 218, 254, 0)) !important;
  }

  .xl\:hover\:cl-via-indigo-300:hover {
    --gradient-via-color: #a3bffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(163, 191, 250, 0)) !important;
  }

  .xl\:hover\:cl-via-indigo-400:hover {
    --gradient-via-color: #7f9cf5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(127, 156, 245, 0)) !important;
  }

  .xl\:hover\:cl-via-indigo-500:hover {
    --gradient-via-color: #667eea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 126, 234, 0)) !important;
  }

  .xl\:hover\:cl-via-indigo-600:hover {
    --gradient-via-color: #5a67d8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 103, 216, 0)) !important;
  }

  .xl\:hover\:cl-via-indigo-700:hover {
    --gradient-via-color: #4c51bf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(76, 81, 191, 0)) !important;
  }

  .xl\:hover\:cl-via-indigo-800:hover {
    --gradient-via-color: #434190 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(67, 65, 144, 0)) !important;
  }

  .xl\:hover\:cl-via-indigo-900:hover {
    --gradient-via-color: #3c366b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(60, 54, 107, 0)) !important;
  }

  .xl\:hover\:cl-via-purple-100:hover {
    --gradient-via-color: #faf5ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 245, 255, 0)) !important;
  }

  .xl\:hover\:cl-via-purple-200:hover {
    --gradient-via-color: #e9d8fd !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(233, 216, 253, 0)) !important;
  }

  .xl\:hover\:cl-via-purple-300:hover {
    --gradient-via-color: #d6bcfa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(214, 188, 250, 0)) !important;
  }

  .xl\:hover\:cl-via-purple-400:hover {
    --gradient-via-color: #b794f4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(183, 148, 244, 0)) !important;
  }

  .xl\:hover\:cl-via-purple-500:hover {
    --gradient-via-color: #9f7aea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(159, 122, 234, 0)) !important;
  }

  .xl\:hover\:cl-via-purple-600:hover {
    --gradient-via-color: #805ad5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(128, 90, 213, 0)) !important;
  }

  .xl\:hover\:cl-via-purple-700:hover {
    --gradient-via-color: #6b46c1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(107, 70, 193, 0)) !important;
  }

  .xl\:hover\:cl-via-purple-800:hover {
    --gradient-via-color: #553c9a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(85, 60, 154, 0)) !important;
  }

  .xl\:hover\:cl-via-purple-900:hover {
    --gradient-via-color: #44337a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(68, 51, 122, 0)) !important;
  }

  .xl\:hover\:cl-via-pink-100:hover {
    --gradient-via-color: #fff5f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 245, 247, 0)) !important;
  }

  .xl\:hover\:cl-via-pink-200:hover {
    --gradient-via-color: #fed7e2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 215, 226, 0)) !important;
  }

  .xl\:hover\:cl-via-pink-300:hover {
    --gradient-via-color: #fbb6ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 182, 206, 0)) !important;
  }

  .xl\:hover\:cl-via-pink-400:hover {
    --gradient-via-color: #f687b3 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 135, 179, 0)) !important;
  }

  .xl\:hover\:cl-via-pink-500:hover {
    --gradient-via-color: #ed64a6 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 100, 166, 0)) !important;
  }

  .xl\:hover\:cl-via-pink-600:hover {
    --gradient-via-color: #d53f8c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(213, 63, 140, 0)) !important;
  }

  .xl\:hover\:cl-via-pink-700:hover {
    --gradient-via-color: #b83280 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(184, 50, 128, 0)) !important;
  }

  .xl\:hover\:cl-via-pink-800:hover {
    --gradient-via-color: #97266d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(151, 38, 109, 0)) !important;
  }

  .xl\:hover\:cl-via-pink-900:hover {
    --gradient-via-color: #702459 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(112, 36, 89, 0)) !important;
  }

  .xl\:hover\:cl-via-ui-gray-100:hover {
    --gradient-via-color: #f1f1f1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(241, 241, 241, 0)) !important;
  }

  .xl\:hover\:cl-via-ui-brown-100:hover {
    --gradient-via-color: #f3ecdc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(243, 236, 220, 0)) !important;
  }

  .xl\:hover\:cl-via-ui-brown-200:hover {
    --gradient-via-color: #e8e0c9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(232, 224, 201, 0)) !important;
  }

  .xl\:hover\:cl-via-ui-brown-300:hover {
    --gradient-via-color: #d0c095 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(208, 192, 149, 0)) !important;
  }

  .xl\:hover\:cl-via-ui-brown-700:hover {
    --gradient-via-color: #bd6005 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(189, 96, 5, 0)) !important;
  }

  .xl\:hover\:cl-via-ui-green-300:hover {
    --gradient-via-color: #aac74c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(170, 199, 76, 0)) !important;
  }

  .xl\:hover\:cl-via-ui-green-400:hover {
    --gradient-via-color: #71893e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(113, 137, 62, 0)) !important;
  }

  .xl\:hover\:cl-via-ui-orange-500:hover {
    --gradient-via-color: #e27212 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 114, 18, 0)) !important;
  }

  .xl\:hover\:cl-via-facebook:hover {
    --gradient-via-color: #3b5998 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(59, 89, 152, 0)) !important;
  }

  .xl\:hover\:cl-via-twitter:hover {
    --gradient-via-color: #00acee !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 172, 238, 0)) !important;
  }

  .xl\:hover\:cl-via-twitch:hover {
    --gradient-via-color: #6441a5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 65, 165, 0)) !important;
  }

  .xl\:hover\:cl-via-youtube:hover {
    --gradient-via-color: #FF0000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 0, 0, 0)) !important;
  }

  .xl\:hover\:cl-to-transparent:hover {
    --gradient-to-color: transparent !important;
  }

  .xl\:hover\:cl-to-current:hover {
    --gradient-to-color: currentColor !important;
  }

  .xl\:hover\:cl-to-black:hover {
    --gradient-to-color: #000 !important;
  }

  .xl\:hover\:cl-to-white:hover {
    --gradient-to-color: #fff !important;
  }

  .xl\:hover\:cl-to-gray-100:hover {
    --gradient-to-color: #f7fafc !important;
  }

  .xl\:hover\:cl-to-gray-200:hover {
    --gradient-to-color: #edf2f7 !important;
  }

  .xl\:hover\:cl-to-gray-300:hover {
    --gradient-to-color: #e2e8f0 !important;
  }

  .xl\:hover\:cl-to-gray-400:hover {
    --gradient-to-color: #cbd5e0 !important;
  }

  .xl\:hover\:cl-to-gray-500:hover {
    --gradient-to-color: #a0aec0 !important;
  }

  .xl\:hover\:cl-to-gray-600:hover {
    --gradient-to-color: #718096 !important;
  }

  .xl\:hover\:cl-to-gray-700:hover {
    --gradient-to-color: #4a5568 !important;
  }

  .xl\:hover\:cl-to-gray-800:hover {
    --gradient-to-color: #2d3748 !important;
  }

  .xl\:hover\:cl-to-gray-900:hover {
    --gradient-to-color: #1a202c !important;
  }

  .xl\:hover\:cl-to-red-100:hover {
    --gradient-to-color: #fff5f5 !important;
  }

  .xl\:hover\:cl-to-red-200:hover {
    --gradient-to-color: #fed7d7 !important;
  }

  .xl\:hover\:cl-to-red-300:hover {
    --gradient-to-color: #feb2b2 !important;
  }

  .xl\:hover\:cl-to-red-400:hover {
    --gradient-to-color: #fc8181 !important;
  }

  .xl\:hover\:cl-to-red-500:hover {
    --gradient-to-color: #f56565 !important;
  }

  .xl\:hover\:cl-to-red-600:hover {
    --gradient-to-color: #e53e3e !important;
  }

  .xl\:hover\:cl-to-red-700:hover {
    --gradient-to-color: #c53030 !important;
  }

  .xl\:hover\:cl-to-red-800:hover {
    --gradient-to-color: #9b2c2c !important;
  }

  .xl\:hover\:cl-to-red-900:hover {
    --gradient-to-color: #742a2a !important;
  }

  .xl\:hover\:cl-to-orange-100:hover {
    --gradient-to-color: #fffaf0 !important;
  }

  .xl\:hover\:cl-to-orange-200:hover {
    --gradient-to-color: #feebc8 !important;
  }

  .xl\:hover\:cl-to-orange-300:hover {
    --gradient-to-color: #fbd38d !important;
  }

  .xl\:hover\:cl-to-orange-400:hover {
    --gradient-to-color: #f6ad55 !important;
  }

  .xl\:hover\:cl-to-orange-500:hover {
    --gradient-to-color: #ed8936 !important;
  }

  .xl\:hover\:cl-to-orange-600:hover {
    --gradient-to-color: #dd6b20 !important;
  }

  .xl\:hover\:cl-to-orange-700:hover {
    --gradient-to-color: #c05621 !important;
  }

  .xl\:hover\:cl-to-orange-800:hover {
    --gradient-to-color: #9c4221 !important;
  }

  .xl\:hover\:cl-to-orange-900:hover {
    --gradient-to-color: #7b341e !important;
  }

  .xl\:hover\:cl-to-yellow-100:hover {
    --gradient-to-color: #fffff0 !important;
  }

  .xl\:hover\:cl-to-yellow-200:hover {
    --gradient-to-color: #fefcbf !important;
  }

  .xl\:hover\:cl-to-yellow-300:hover {
    --gradient-to-color: #faf089 !important;
  }

  .xl\:hover\:cl-to-yellow-400:hover {
    --gradient-to-color: #f6e05e !important;
  }

  .xl\:hover\:cl-to-yellow-500:hover {
    --gradient-to-color: #ecc94b !important;
  }

  .xl\:hover\:cl-to-yellow-600:hover {
    --gradient-to-color: #d69e2e !important;
  }

  .xl\:hover\:cl-to-yellow-700:hover {
    --gradient-to-color: #b7791f !important;
  }

  .xl\:hover\:cl-to-yellow-800:hover {
    --gradient-to-color: #975a16 !important;
  }

  .xl\:hover\:cl-to-yellow-900:hover {
    --gradient-to-color: #744210 !important;
  }

  .xl\:hover\:cl-to-green-100:hover {
    --gradient-to-color: #f0fff4 !important;
  }

  .xl\:hover\:cl-to-green-200:hover {
    --gradient-to-color: #c6f6d5 !important;
  }

  .xl\:hover\:cl-to-green-300:hover {
    --gradient-to-color: #9ae6b4 !important;
  }

  .xl\:hover\:cl-to-green-400:hover {
    --gradient-to-color: #68d391 !important;
  }

  .xl\:hover\:cl-to-green-500:hover {
    --gradient-to-color: #48bb78 !important;
  }

  .xl\:hover\:cl-to-green-600:hover {
    --gradient-to-color: #38a169 !important;
  }

  .xl\:hover\:cl-to-green-700:hover {
    --gradient-to-color: #2f855a !important;
  }

  .xl\:hover\:cl-to-green-800:hover {
    --gradient-to-color: #276749 !important;
  }

  .xl\:hover\:cl-to-green-900:hover {
    --gradient-to-color: #22543d !important;
  }

  .xl\:hover\:cl-to-teal-100:hover {
    --gradient-to-color: #e6fffa !important;
  }

  .xl\:hover\:cl-to-teal-200:hover {
    --gradient-to-color: #b2f5ea !important;
  }

  .xl\:hover\:cl-to-teal-300:hover {
    --gradient-to-color: #81e6d9 !important;
  }

  .xl\:hover\:cl-to-teal-400:hover {
    --gradient-to-color: #4fd1c5 !important;
  }

  .xl\:hover\:cl-to-teal-500:hover {
    --gradient-to-color: #38b2ac !important;
  }

  .xl\:hover\:cl-to-teal-600:hover {
    --gradient-to-color: #319795 !important;
  }

  .xl\:hover\:cl-to-teal-700:hover {
    --gradient-to-color: #2c7a7b !important;
  }

  .xl\:hover\:cl-to-teal-800:hover {
    --gradient-to-color: #285e61 !important;
  }

  .xl\:hover\:cl-to-teal-900:hover {
    --gradient-to-color: #234e52 !important;
  }

  .xl\:hover\:cl-to-blue-100:hover {
    --gradient-to-color: #ebf8ff !important;
  }

  .xl\:hover\:cl-to-blue-200:hover {
    --gradient-to-color: #bee3f8 !important;
  }

  .xl\:hover\:cl-to-blue-300:hover {
    --gradient-to-color: #90cdf4 !important;
  }

  .xl\:hover\:cl-to-blue-400:hover {
    --gradient-to-color: #63b3ed !important;
  }

  .xl\:hover\:cl-to-blue-500:hover {
    --gradient-to-color: #4299e1 !important;
  }

  .xl\:hover\:cl-to-blue-600:hover {
    --gradient-to-color: #3182ce !important;
  }

  .xl\:hover\:cl-to-blue-700:hover {
    --gradient-to-color: #2b6cb0 !important;
  }

  .xl\:hover\:cl-to-blue-800:hover {
    --gradient-to-color: #2c5282 !important;
  }

  .xl\:hover\:cl-to-blue-900:hover {
    --gradient-to-color: #2a4365 !important;
  }

  .xl\:hover\:cl-to-indigo-100:hover {
    --gradient-to-color: #ebf4ff !important;
  }

  .xl\:hover\:cl-to-indigo-200:hover {
    --gradient-to-color: #c3dafe !important;
  }

  .xl\:hover\:cl-to-indigo-300:hover {
    --gradient-to-color: #a3bffa !important;
  }

  .xl\:hover\:cl-to-indigo-400:hover {
    --gradient-to-color: #7f9cf5 !important;
  }

  .xl\:hover\:cl-to-indigo-500:hover {
    --gradient-to-color: #667eea !important;
  }

  .xl\:hover\:cl-to-indigo-600:hover {
    --gradient-to-color: #5a67d8 !important;
  }

  .xl\:hover\:cl-to-indigo-700:hover {
    --gradient-to-color: #4c51bf !important;
  }

  .xl\:hover\:cl-to-indigo-800:hover {
    --gradient-to-color: #434190 !important;
  }

  .xl\:hover\:cl-to-indigo-900:hover {
    --gradient-to-color: #3c366b !important;
  }

  .xl\:hover\:cl-to-purple-100:hover {
    --gradient-to-color: #faf5ff !important;
  }

  .xl\:hover\:cl-to-purple-200:hover {
    --gradient-to-color: #e9d8fd !important;
  }

  .xl\:hover\:cl-to-purple-300:hover {
    --gradient-to-color: #d6bcfa !important;
  }

  .xl\:hover\:cl-to-purple-400:hover {
    --gradient-to-color: #b794f4 !important;
  }

  .xl\:hover\:cl-to-purple-500:hover {
    --gradient-to-color: #9f7aea !important;
  }

  .xl\:hover\:cl-to-purple-600:hover {
    --gradient-to-color: #805ad5 !important;
  }

  .xl\:hover\:cl-to-purple-700:hover {
    --gradient-to-color: #6b46c1 !important;
  }

  .xl\:hover\:cl-to-purple-800:hover {
    --gradient-to-color: #553c9a !important;
  }

  .xl\:hover\:cl-to-purple-900:hover {
    --gradient-to-color: #44337a !important;
  }

  .xl\:hover\:cl-to-pink-100:hover {
    --gradient-to-color: #fff5f7 !important;
  }

  .xl\:hover\:cl-to-pink-200:hover {
    --gradient-to-color: #fed7e2 !important;
  }

  .xl\:hover\:cl-to-pink-300:hover {
    --gradient-to-color: #fbb6ce !important;
  }

  .xl\:hover\:cl-to-pink-400:hover {
    --gradient-to-color: #f687b3 !important;
  }

  .xl\:hover\:cl-to-pink-500:hover {
    --gradient-to-color: #ed64a6 !important;
  }

  .xl\:hover\:cl-to-pink-600:hover {
    --gradient-to-color: #d53f8c !important;
  }

  .xl\:hover\:cl-to-pink-700:hover {
    --gradient-to-color: #b83280 !important;
  }

  .xl\:hover\:cl-to-pink-800:hover {
    --gradient-to-color: #97266d !important;
  }

  .xl\:hover\:cl-to-pink-900:hover {
    --gradient-to-color: #702459 !important;
  }

  .xl\:hover\:cl-to-ui-gray-100:hover {
    --gradient-to-color: #f1f1f1 !important;
  }

  .xl\:hover\:cl-to-ui-brown-100:hover {
    --gradient-to-color: #f3ecdc !important;
  }

  .xl\:hover\:cl-to-ui-brown-200:hover {
    --gradient-to-color: #e8e0c9 !important;
  }

  .xl\:hover\:cl-to-ui-brown-300:hover {
    --gradient-to-color: #d0c095 !important;
  }

  .xl\:hover\:cl-to-ui-brown-700:hover {
    --gradient-to-color: #bd6005 !important;
  }

  .xl\:hover\:cl-to-ui-green-300:hover {
    --gradient-to-color: #aac74c !important;
  }

  .xl\:hover\:cl-to-ui-green-400:hover {
    --gradient-to-color: #71893e !important;
  }

  .xl\:hover\:cl-to-ui-orange-500:hover {
    --gradient-to-color: #e27212 !important;
  }

  .xl\:hover\:cl-to-facebook:hover {
    --gradient-to-color: #3b5998 !important;
  }

  .xl\:hover\:cl-to-twitter:hover {
    --gradient-to-color: #00acee !important;
  }

  .xl\:hover\:cl-to-twitch:hover {
    --gradient-to-color: #6441a5 !important;
  }

  .xl\:hover\:cl-to-youtube:hover {
    --gradient-to-color: #FF0000 !important;
  }

  .xl\:focus\:cl-from-transparent:focus {
    --gradient-from-color: transparent !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .xl\:focus\:cl-from-current:focus {
    --gradient-from-color: currentColor !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .xl\:focus\:cl-from-black:focus {
    --gradient-from-color: #000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .xl\:focus\:cl-from-white:focus {
    --gradient-from-color: #fff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .xl\:focus\:cl-from-gray-100:focus {
    --gradient-from-color: #f7fafc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 250, 252, 0)) !important;
  }

  .xl\:focus\:cl-from-gray-200:focus {
    --gradient-from-color: #edf2f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 242, 247, 0)) !important;
  }

  .xl\:focus\:cl-from-gray-300:focus {
    --gradient-from-color: #e2e8f0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 232, 240, 0)) !important;
  }

  .xl\:focus\:cl-from-gray-400:focus {
    --gradient-from-color: #cbd5e0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(203, 213, 224, 0)) !important;
  }

  .xl\:focus\:cl-from-gray-500:focus {
    --gradient-from-color: #a0aec0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(160, 174, 192, 0)) !important;
  }

  .xl\:focus\:cl-from-gray-600:focus {
    --gradient-from-color: #718096 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(113, 128, 150, 0)) !important;
  }

  .xl\:focus\:cl-from-gray-700:focus {
    --gradient-from-color: #4a5568 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(74, 85, 104, 0)) !important;
  }

  .xl\:focus\:cl-from-gray-800:focus {
    --gradient-from-color: #2d3748 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(45, 55, 72, 0)) !important;
  }

  .xl\:focus\:cl-from-gray-900:focus {
    --gradient-from-color: #1a202c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 32, 44, 0)) !important;
  }

  .xl\:focus\:cl-from-red-100:focus {
    --gradient-from-color: #fff5f5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 245, 245, 0)) !important;
  }

  .xl\:focus\:cl-from-red-200:focus {
    --gradient-from-color: #fed7d7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 215, 215, 0)) !important;
  }

  .xl\:focus\:cl-from-red-300:focus {
    --gradient-from-color: #feb2b2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 178, 178, 0)) !important;
  }

  .xl\:focus\:cl-from-red-400:focus {
    --gradient-from-color: #fc8181 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(252, 129, 129, 0)) !important;
  }

  .xl\:focus\:cl-from-red-500:focus {
    --gradient-from-color: #f56565 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(245, 101, 101, 0)) !important;
  }

  .xl\:focus\:cl-from-red-600:focus {
    --gradient-from-color: #e53e3e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(229, 62, 62, 0)) !important;
  }

  .xl\:focus\:cl-from-red-700:focus {
    --gradient-from-color: #c53030 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(197, 48, 48, 0)) !important;
  }

  .xl\:focus\:cl-from-red-800:focus {
    --gradient-from-color: #9b2c2c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(155, 44, 44, 0)) !important;
  }

  .xl\:focus\:cl-from-red-900:focus {
    --gradient-from-color: #742a2a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(116, 42, 42, 0)) !important;
  }

  .xl\:focus\:cl-from-orange-100:focus {
    --gradient-from-color: #fffaf0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 250, 240, 0)) !important;
  }

  .xl\:focus\:cl-from-orange-200:focus {
    --gradient-from-color: #feebc8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 235, 200, 0)) !important;
  }

  .xl\:focus\:cl-from-orange-300:focus {
    --gradient-from-color: #fbd38d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 211, 141, 0)) !important;
  }

  .xl\:focus\:cl-from-orange-400:focus {
    --gradient-from-color: #f6ad55 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 173, 85, 0)) !important;
  }

  .xl\:focus\:cl-from-orange-500:focus {
    --gradient-from-color: #ed8936 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 137, 54, 0)) !important;
  }

  .xl\:focus\:cl-from-orange-600:focus {
    --gradient-from-color: #dd6b20 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(221, 107, 32, 0)) !important;
  }

  .xl\:focus\:cl-from-orange-700:focus {
    --gradient-from-color: #c05621 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(192, 86, 33, 0)) !important;
  }

  .xl\:focus\:cl-from-orange-800:focus {
    --gradient-from-color: #9c4221 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 66, 33, 0)) !important;
  }

  .xl\:focus\:cl-from-orange-900:focus {
    --gradient-from-color: #7b341e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(123, 52, 30, 0)) !important;
  }

  .xl\:focus\:cl-from-yellow-100:focus {
    --gradient-from-color: #fffff0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 240, 0)) !important;
  }

  .xl\:focus\:cl-from-yellow-200:focus {
    --gradient-from-color: #fefcbf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 252, 191, 0)) !important;
  }

  .xl\:focus\:cl-from-yellow-300:focus {
    --gradient-from-color: #faf089 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 240, 137, 0)) !important;
  }

  .xl\:focus\:cl-from-yellow-400:focus {
    --gradient-from-color: #f6e05e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 224, 94, 0)) !important;
  }

  .xl\:focus\:cl-from-yellow-500:focus {
    --gradient-from-color: #ecc94b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 201, 75, 0)) !important;
  }

  .xl\:focus\:cl-from-yellow-600:focus {
    --gradient-from-color: #d69e2e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(214, 158, 46, 0)) !important;
  }

  .xl\:focus\:cl-from-yellow-700:focus {
    --gradient-from-color: #b7791f !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(183, 121, 31, 0)) !important;
  }

  .xl\:focus\:cl-from-yellow-800:focus {
    --gradient-from-color: #975a16 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(151, 90, 22, 0)) !important;
  }

  .xl\:focus\:cl-from-yellow-900:focus {
    --gradient-from-color: #744210 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(116, 66, 16, 0)) !important;
  }

  .xl\:focus\:cl-from-green-100:focus {
    --gradient-from-color: #f0fff4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(240, 255, 244, 0)) !important;
  }

  .xl\:focus\:cl-from-green-200:focus {
    --gradient-from-color: #c6f6d5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(198, 246, 213, 0)) !important;
  }

  .xl\:focus\:cl-from-green-300:focus {
    --gradient-from-color: #9ae6b4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 230, 180, 0)) !important;
  }

  .xl\:focus\:cl-from-green-400:focus {
    --gradient-from-color: #68d391 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(104, 211, 145, 0)) !important;
  }

  .xl\:focus\:cl-from-green-500:focus {
    --gradient-from-color: #48bb78 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(72, 187, 120, 0)) !important;
  }

  .xl\:focus\:cl-from-green-600:focus {
    --gradient-from-color: #38a169 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(56, 161, 105, 0)) !important;
  }

  .xl\:focus\:cl-from-green-700:focus {
    --gradient-from-color: #2f855a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(47, 133, 90, 0)) !important;
  }

  .xl\:focus\:cl-from-green-800:focus {
    --gradient-from-color: #276749 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(39, 103, 73, 0)) !important;
  }

  .xl\:focus\:cl-from-green-900:focus {
    --gradient-from-color: #22543d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(34, 84, 61, 0)) !important;
  }

  .xl\:focus\:cl-from-teal-100:focus {
    --gradient-from-color: #e6fffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 255, 250, 0)) !important;
  }

  .xl\:focus\:cl-from-teal-200:focus {
    --gradient-from-color: #b2f5ea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(178, 245, 234, 0)) !important;
  }

  .xl\:focus\:cl-from-teal-300:focus {
    --gradient-from-color: #81e6d9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(129, 230, 217, 0)) !important;
  }

  .xl\:focus\:cl-from-teal-400:focus {
    --gradient-from-color: #4fd1c5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(79, 209, 197, 0)) !important;
  }

  .xl\:focus\:cl-from-teal-500:focus {
    --gradient-from-color: #38b2ac !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(56, 178, 172, 0)) !important;
  }

  .xl\:focus\:cl-from-teal-600:focus {
    --gradient-from-color: #319795 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(49, 151, 149, 0)) !important;
  }

  .xl\:focus\:cl-from-teal-700:focus {
    --gradient-from-color: #2c7a7b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(44, 122, 123, 0)) !important;
  }

  .xl\:focus\:cl-from-teal-800:focus {
    --gradient-from-color: #285e61 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(40, 94, 97, 0)) !important;
  }

  .xl\:focus\:cl-from-teal-900:focus {
    --gradient-from-color: #234e52 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(35, 78, 82, 0)) !important;
  }

  .xl\:focus\:cl-from-blue-100:focus {
    --gradient-from-color: #ebf8ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(235, 248, 255, 0)) !important;
  }

  .xl\:focus\:cl-from-blue-200:focus {
    --gradient-from-color: #bee3f8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(190, 227, 248, 0)) !important;
  }

  .xl\:focus\:cl-from-blue-300:focus {
    --gradient-from-color: #90cdf4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(144, 205, 244, 0)) !important;
  }

  .xl\:focus\:cl-from-blue-400:focus {
    --gradient-from-color: #63b3ed !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(99, 179, 237, 0)) !important;
  }

  .xl\:focus\:cl-from-blue-500:focus {
    --gradient-from-color: #4299e1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 153, 225, 0)) !important;
  }

  .xl\:focus\:cl-from-blue-600:focus {
    --gradient-from-color: #3182ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(49, 130, 206, 0)) !important;
  }

  .xl\:focus\:cl-from-blue-700:focus {
    --gradient-from-color: #2b6cb0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(43, 108, 176, 0)) !important;
  }

  .xl\:focus\:cl-from-blue-800:focus {
    --gradient-from-color: #2c5282 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(44, 82, 130, 0)) !important;
  }

  .xl\:focus\:cl-from-blue-900:focus {
    --gradient-from-color: #2a4365 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(42, 67, 101, 0)) !important;
  }

  .xl\:focus\:cl-from-indigo-100:focus {
    --gradient-from-color: #ebf4ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(235, 244, 255, 0)) !important;
  }

  .xl\:focus\:cl-from-indigo-200:focus {
    --gradient-from-color: #c3dafe !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(195, 218, 254, 0)) !important;
  }

  .xl\:focus\:cl-from-indigo-300:focus {
    --gradient-from-color: #a3bffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(163, 191, 250, 0)) !important;
  }

  .xl\:focus\:cl-from-indigo-400:focus {
    --gradient-from-color: #7f9cf5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(127, 156, 245, 0)) !important;
  }

  .xl\:focus\:cl-from-indigo-500:focus {
    --gradient-from-color: #667eea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 126, 234, 0)) !important;
  }

  .xl\:focus\:cl-from-indigo-600:focus {
    --gradient-from-color: #5a67d8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(90, 103, 216, 0)) !important;
  }

  .xl\:focus\:cl-from-indigo-700:focus {
    --gradient-from-color: #4c51bf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(76, 81, 191, 0)) !important;
  }

  .xl\:focus\:cl-from-indigo-800:focus {
    --gradient-from-color: #434190 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(67, 65, 144, 0)) !important;
  }

  .xl\:focus\:cl-from-indigo-900:focus {
    --gradient-from-color: #3c366b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(60, 54, 107, 0)) !important;
  }

  .xl\:focus\:cl-from-purple-100:focus {
    --gradient-from-color: #faf5ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(250, 245, 255, 0)) !important;
  }

  .xl\:focus\:cl-from-purple-200:focus {
    --gradient-from-color: #e9d8fd !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(233, 216, 253, 0)) !important;
  }

  .xl\:focus\:cl-from-purple-300:focus {
    --gradient-from-color: #d6bcfa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(214, 188, 250, 0)) !important;
  }

  .xl\:focus\:cl-from-purple-400:focus {
    --gradient-from-color: #b794f4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(183, 148, 244, 0)) !important;
  }

  .xl\:focus\:cl-from-purple-500:focus {
    --gradient-from-color: #9f7aea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(159, 122, 234, 0)) !important;
  }

  .xl\:focus\:cl-from-purple-600:focus {
    --gradient-from-color: #805ad5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(128, 90, 213, 0)) !important;
  }

  .xl\:focus\:cl-from-purple-700:focus {
    --gradient-from-color: #6b46c1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(107, 70, 193, 0)) !important;
  }

  .xl\:focus\:cl-from-purple-800:focus {
    --gradient-from-color: #553c9a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(85, 60, 154, 0)) !important;
  }

  .xl\:focus\:cl-from-purple-900:focus {
    --gradient-from-color: #44337a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(68, 51, 122, 0)) !important;
  }

  .xl\:focus\:cl-from-pink-100:focus {
    --gradient-from-color: #fff5f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 245, 247, 0)) !important;
  }

  .xl\:focus\:cl-from-pink-200:focus {
    --gradient-from-color: #fed7e2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(254, 215, 226, 0)) !important;
  }

  .xl\:focus\:cl-from-pink-300:focus {
    --gradient-from-color: #fbb6ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(251, 182, 206, 0)) !important;
  }

  .xl\:focus\:cl-from-pink-400:focus {
    --gradient-from-color: #f687b3 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(246, 135, 179, 0)) !important;
  }

  .xl\:focus\:cl-from-pink-500:focus {
    --gradient-from-color: #ed64a6 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(237, 100, 166, 0)) !important;
  }

  .xl\:focus\:cl-from-pink-600:focus {
    --gradient-from-color: #d53f8c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(213, 63, 140, 0)) !important;
  }

  .xl\:focus\:cl-from-pink-700:focus {
    --gradient-from-color: #b83280 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(184, 50, 128, 0)) !important;
  }

  .xl\:focus\:cl-from-pink-800:focus {
    --gradient-from-color: #97266d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(151, 38, 109, 0)) !important;
  }

  .xl\:focus\:cl-from-pink-900:focus {
    --gradient-from-color: #702459 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(112, 36, 89, 0)) !important;
  }

  .xl\:focus\:cl-from-ui-gray-100:focus {
    --gradient-from-color: #f1f1f1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(241, 241, 241, 0)) !important;
  }

  .xl\:focus\:cl-from-ui-brown-100:focus {
    --gradient-from-color: #f3ecdc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(243, 236, 220, 0)) !important;
  }

  .xl\:focus\:cl-from-ui-brown-200:focus {
    --gradient-from-color: #e8e0c9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(232, 224, 201, 0)) !important;
  }

  .xl\:focus\:cl-from-ui-brown-300:focus {
    --gradient-from-color: #d0c095 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(208, 192, 149, 0)) !important;
  }

  .xl\:focus\:cl-from-ui-brown-700:focus {
    --gradient-from-color: #bd6005 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(189, 96, 5, 0)) !important;
  }

  .xl\:focus\:cl-from-ui-green-300:focus {
    --gradient-from-color: #aac74c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(170, 199, 76, 0)) !important;
  }

  .xl\:focus\:cl-from-ui-green-400:focus {
    --gradient-from-color: #71893e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(113, 137, 62, 0)) !important;
  }

  .xl\:focus\:cl-from-ui-orange-500:focus {
    --gradient-from-color: #e27212 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 114, 18, 0)) !important;
  }

  .xl\:focus\:cl-from-facebook:focus {
    --gradient-from-color: #3b5998 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(59, 89, 152, 0)) !important;
  }

  .xl\:focus\:cl-from-twitter:focus {
    --gradient-from-color: #00acee !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 172, 238, 0)) !important;
  }

  .xl\:focus\:cl-from-twitch:focus {
    --gradient-from-color: #6441a5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(100, 65, 165, 0)) !important;
  }

  .xl\:focus\:cl-from-youtube:focus {
    --gradient-from-color: #FF0000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 0, 0, 0)) !important;
  }

  .xl\:focus\:cl-via-transparent:focus {
    --gradient-via-color: transparent !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .xl\:focus\:cl-via-current:focus {
    --gradient-via-color: currentColor !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .xl\:focus\:cl-via-black:focus {
    --gradient-via-color: #000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 0, 0, 0)) !important;
  }

  .xl\:focus\:cl-via-white:focus {
    --gradient-via-color: #fff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 255, 0)) !important;
  }

  .xl\:focus\:cl-via-gray-100:focus {
    --gradient-via-color: #f7fafc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 250, 252, 0)) !important;
  }

  .xl\:focus\:cl-via-gray-200:focus {
    --gradient-via-color: #edf2f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 242, 247, 0)) !important;
  }

  .xl\:focus\:cl-via-gray-300:focus {
    --gradient-via-color: #e2e8f0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 232, 240, 0)) !important;
  }

  .xl\:focus\:cl-via-gray-400:focus {
    --gradient-via-color: #cbd5e0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(203, 213, 224, 0)) !important;
  }

  .xl\:focus\:cl-via-gray-500:focus {
    --gradient-via-color: #a0aec0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(160, 174, 192, 0)) !important;
  }

  .xl\:focus\:cl-via-gray-600:focus {
    --gradient-via-color: #718096 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(113, 128, 150, 0)) !important;
  }

  .xl\:focus\:cl-via-gray-700:focus {
    --gradient-via-color: #4a5568 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(74, 85, 104, 0)) !important;
  }

  .xl\:focus\:cl-via-gray-800:focus {
    --gradient-via-color: #2d3748 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(45, 55, 72, 0)) !important;
  }

  .xl\:focus\:cl-via-gray-900:focus {
    --gradient-via-color: #1a202c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 32, 44, 0)) !important;
  }

  .xl\:focus\:cl-via-red-100:focus {
    --gradient-via-color: #fff5f5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 245, 245, 0)) !important;
  }

  .xl\:focus\:cl-via-red-200:focus {
    --gradient-via-color: #fed7d7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 215, 215, 0)) !important;
  }

  .xl\:focus\:cl-via-red-300:focus {
    --gradient-via-color: #feb2b2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 178, 178, 0)) !important;
  }

  .xl\:focus\:cl-via-red-400:focus {
    --gradient-via-color: #fc8181 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(252, 129, 129, 0)) !important;
  }

  .xl\:focus\:cl-via-red-500:focus {
    --gradient-via-color: #f56565 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(245, 101, 101, 0)) !important;
  }

  .xl\:focus\:cl-via-red-600:focus {
    --gradient-via-color: #e53e3e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(229, 62, 62, 0)) !important;
  }

  .xl\:focus\:cl-via-red-700:focus {
    --gradient-via-color: #c53030 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(197, 48, 48, 0)) !important;
  }

  .xl\:focus\:cl-via-red-800:focus {
    --gradient-via-color: #9b2c2c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(155, 44, 44, 0)) !important;
  }

  .xl\:focus\:cl-via-red-900:focus {
    --gradient-via-color: #742a2a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(116, 42, 42, 0)) !important;
  }

  .xl\:focus\:cl-via-orange-100:focus {
    --gradient-via-color: #fffaf0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 250, 240, 0)) !important;
  }

  .xl\:focus\:cl-via-orange-200:focus {
    --gradient-via-color: #feebc8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 235, 200, 0)) !important;
  }

  .xl\:focus\:cl-via-orange-300:focus {
    --gradient-via-color: #fbd38d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 211, 141, 0)) !important;
  }

  .xl\:focus\:cl-via-orange-400:focus {
    --gradient-via-color: #f6ad55 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 173, 85, 0)) !important;
  }

  .xl\:focus\:cl-via-orange-500:focus {
    --gradient-via-color: #ed8936 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 137, 54, 0)) !important;
  }

  .xl\:focus\:cl-via-orange-600:focus {
    --gradient-via-color: #dd6b20 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(221, 107, 32, 0)) !important;
  }

  .xl\:focus\:cl-via-orange-700:focus {
    --gradient-via-color: #c05621 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(192, 86, 33, 0)) !important;
  }

  .xl\:focus\:cl-via-orange-800:focus {
    --gradient-via-color: #9c4221 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 66, 33, 0)) !important;
  }

  .xl\:focus\:cl-via-orange-900:focus {
    --gradient-via-color: #7b341e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(123, 52, 30, 0)) !important;
  }

  .xl\:focus\:cl-via-yellow-100:focus {
    --gradient-via-color: #fffff0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 255, 240, 0)) !important;
  }

  .xl\:focus\:cl-via-yellow-200:focus {
    --gradient-via-color: #fefcbf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 252, 191, 0)) !important;
  }

  .xl\:focus\:cl-via-yellow-300:focus {
    --gradient-via-color: #faf089 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 240, 137, 0)) !important;
  }

  .xl\:focus\:cl-via-yellow-400:focus {
    --gradient-via-color: #f6e05e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 224, 94, 0)) !important;
  }

  .xl\:focus\:cl-via-yellow-500:focus {
    --gradient-via-color: #ecc94b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 201, 75, 0)) !important;
  }

  .xl\:focus\:cl-via-yellow-600:focus {
    --gradient-via-color: #d69e2e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(214, 158, 46, 0)) !important;
  }

  .xl\:focus\:cl-via-yellow-700:focus {
    --gradient-via-color: #b7791f !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(183, 121, 31, 0)) !important;
  }

  .xl\:focus\:cl-via-yellow-800:focus {
    --gradient-via-color: #975a16 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(151, 90, 22, 0)) !important;
  }

  .xl\:focus\:cl-via-yellow-900:focus {
    --gradient-via-color: #744210 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(116, 66, 16, 0)) !important;
  }

  .xl\:focus\:cl-via-green-100:focus {
    --gradient-via-color: #f0fff4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(240, 255, 244, 0)) !important;
  }

  .xl\:focus\:cl-via-green-200:focus {
    --gradient-via-color: #c6f6d5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(198, 246, 213, 0)) !important;
  }

  .xl\:focus\:cl-via-green-300:focus {
    --gradient-via-color: #9ae6b4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 230, 180, 0)) !important;
  }

  .xl\:focus\:cl-via-green-400:focus {
    --gradient-via-color: #68d391 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(104, 211, 145, 0)) !important;
  }

  .xl\:focus\:cl-via-green-500:focus {
    --gradient-via-color: #48bb78 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(72, 187, 120, 0)) !important;
  }

  .xl\:focus\:cl-via-green-600:focus {
    --gradient-via-color: #38a169 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(56, 161, 105, 0)) !important;
  }

  .xl\:focus\:cl-via-green-700:focus {
    --gradient-via-color: #2f855a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(47, 133, 90, 0)) !important;
  }

  .xl\:focus\:cl-via-green-800:focus {
    --gradient-via-color: #276749 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(39, 103, 73, 0)) !important;
  }

  .xl\:focus\:cl-via-green-900:focus {
    --gradient-via-color: #22543d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(34, 84, 61, 0)) !important;
  }

  .xl\:focus\:cl-via-teal-100:focus {
    --gradient-via-color: #e6fffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 255, 250, 0)) !important;
  }

  .xl\:focus\:cl-via-teal-200:focus {
    --gradient-via-color: #b2f5ea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(178, 245, 234, 0)) !important;
  }

  .xl\:focus\:cl-via-teal-300:focus {
    --gradient-via-color: #81e6d9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(129, 230, 217, 0)) !important;
  }

  .xl\:focus\:cl-via-teal-400:focus {
    --gradient-via-color: #4fd1c5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(79, 209, 197, 0)) !important;
  }

  .xl\:focus\:cl-via-teal-500:focus {
    --gradient-via-color: #38b2ac !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(56, 178, 172, 0)) !important;
  }

  .xl\:focus\:cl-via-teal-600:focus {
    --gradient-via-color: #319795 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(49, 151, 149, 0)) !important;
  }

  .xl\:focus\:cl-via-teal-700:focus {
    --gradient-via-color: #2c7a7b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(44, 122, 123, 0)) !important;
  }

  .xl\:focus\:cl-via-teal-800:focus {
    --gradient-via-color: #285e61 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(40, 94, 97, 0)) !important;
  }

  .xl\:focus\:cl-via-teal-900:focus {
    --gradient-via-color: #234e52 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(35, 78, 82, 0)) !important;
  }

  .xl\:focus\:cl-via-blue-100:focus {
    --gradient-via-color: #ebf8ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(235, 248, 255, 0)) !important;
  }

  .xl\:focus\:cl-via-blue-200:focus {
    --gradient-via-color: #bee3f8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(190, 227, 248, 0)) !important;
  }

  .xl\:focus\:cl-via-blue-300:focus {
    --gradient-via-color: #90cdf4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(144, 205, 244, 0)) !important;
  }

  .xl\:focus\:cl-via-blue-400:focus {
    --gradient-via-color: #63b3ed !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(99, 179, 237, 0)) !important;
  }

  .xl\:focus\:cl-via-blue-500:focus {
    --gradient-via-color: #4299e1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 153, 225, 0)) !important;
  }

  .xl\:focus\:cl-via-blue-600:focus {
    --gradient-via-color: #3182ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(49, 130, 206, 0)) !important;
  }

  .xl\:focus\:cl-via-blue-700:focus {
    --gradient-via-color: #2b6cb0 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(43, 108, 176, 0)) !important;
  }

  .xl\:focus\:cl-via-blue-800:focus {
    --gradient-via-color: #2c5282 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(44, 82, 130, 0)) !important;
  }

  .xl\:focus\:cl-via-blue-900:focus {
    --gradient-via-color: #2a4365 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(42, 67, 101, 0)) !important;
  }

  .xl\:focus\:cl-via-indigo-100:focus {
    --gradient-via-color: #ebf4ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(235, 244, 255, 0)) !important;
  }

  .xl\:focus\:cl-via-indigo-200:focus {
    --gradient-via-color: #c3dafe !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(195, 218, 254, 0)) !important;
  }

  .xl\:focus\:cl-via-indigo-300:focus {
    --gradient-via-color: #a3bffa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(163, 191, 250, 0)) !important;
  }

  .xl\:focus\:cl-via-indigo-400:focus {
    --gradient-via-color: #7f9cf5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(127, 156, 245, 0)) !important;
  }

  .xl\:focus\:cl-via-indigo-500:focus {
    --gradient-via-color: #667eea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 126, 234, 0)) !important;
  }

  .xl\:focus\:cl-via-indigo-600:focus {
    --gradient-via-color: #5a67d8 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(90, 103, 216, 0)) !important;
  }

  .xl\:focus\:cl-via-indigo-700:focus {
    --gradient-via-color: #4c51bf !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(76, 81, 191, 0)) !important;
  }

  .xl\:focus\:cl-via-indigo-800:focus {
    --gradient-via-color: #434190 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(67, 65, 144, 0)) !important;
  }

  .xl\:focus\:cl-via-indigo-900:focus {
    --gradient-via-color: #3c366b !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(60, 54, 107, 0)) !important;
  }

  .xl\:focus\:cl-via-purple-100:focus {
    --gradient-via-color: #faf5ff !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(250, 245, 255, 0)) !important;
  }

  .xl\:focus\:cl-via-purple-200:focus {
    --gradient-via-color: #e9d8fd !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(233, 216, 253, 0)) !important;
  }

  .xl\:focus\:cl-via-purple-300:focus {
    --gradient-via-color: #d6bcfa !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(214, 188, 250, 0)) !important;
  }

  .xl\:focus\:cl-via-purple-400:focus {
    --gradient-via-color: #b794f4 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(183, 148, 244, 0)) !important;
  }

  .xl\:focus\:cl-via-purple-500:focus {
    --gradient-via-color: #9f7aea !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(159, 122, 234, 0)) !important;
  }

  .xl\:focus\:cl-via-purple-600:focus {
    --gradient-via-color: #805ad5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(128, 90, 213, 0)) !important;
  }

  .xl\:focus\:cl-via-purple-700:focus {
    --gradient-via-color: #6b46c1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(107, 70, 193, 0)) !important;
  }

  .xl\:focus\:cl-via-purple-800:focus {
    --gradient-via-color: #553c9a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(85, 60, 154, 0)) !important;
  }

  .xl\:focus\:cl-via-purple-900:focus {
    --gradient-via-color: #44337a !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(68, 51, 122, 0)) !important;
  }

  .xl\:focus\:cl-via-pink-100:focus {
    --gradient-via-color: #fff5f7 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 245, 247, 0)) !important;
  }

  .xl\:focus\:cl-via-pink-200:focus {
    --gradient-via-color: #fed7e2 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(254, 215, 226, 0)) !important;
  }

  .xl\:focus\:cl-via-pink-300:focus {
    --gradient-via-color: #fbb6ce !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(251, 182, 206, 0)) !important;
  }

  .xl\:focus\:cl-via-pink-400:focus {
    --gradient-via-color: #f687b3 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(246, 135, 179, 0)) !important;
  }

  .xl\:focus\:cl-via-pink-500:focus {
    --gradient-via-color: #ed64a6 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(237, 100, 166, 0)) !important;
  }

  .xl\:focus\:cl-via-pink-600:focus {
    --gradient-via-color: #d53f8c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(213, 63, 140, 0)) !important;
  }

  .xl\:focus\:cl-via-pink-700:focus {
    --gradient-via-color: #b83280 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(184, 50, 128, 0)) !important;
  }

  .xl\:focus\:cl-via-pink-800:focus {
    --gradient-via-color: #97266d !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(151, 38, 109, 0)) !important;
  }

  .xl\:focus\:cl-via-pink-900:focus {
    --gradient-via-color: #702459 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(112, 36, 89, 0)) !important;
  }

  .xl\:focus\:cl-via-ui-gray-100:focus {
    --gradient-via-color: #f1f1f1 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(241, 241, 241, 0)) !important;
  }

  .xl\:focus\:cl-via-ui-brown-100:focus {
    --gradient-via-color: #f3ecdc !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(243, 236, 220, 0)) !important;
  }

  .xl\:focus\:cl-via-ui-brown-200:focus {
    --gradient-via-color: #e8e0c9 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(232, 224, 201, 0)) !important;
  }

  .xl\:focus\:cl-via-ui-brown-300:focus {
    --gradient-via-color: #d0c095 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(208, 192, 149, 0)) !important;
  }

  .xl\:focus\:cl-via-ui-brown-700:focus {
    --gradient-via-color: #bd6005 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(189, 96, 5, 0)) !important;
  }

  .xl\:focus\:cl-via-ui-green-300:focus {
    --gradient-via-color: #aac74c !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(170, 199, 76, 0)) !important;
  }

  .xl\:focus\:cl-via-ui-green-400:focus {
    --gradient-via-color: #71893e !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(113, 137, 62, 0)) !important;
  }

  .xl\:focus\:cl-via-ui-orange-500:focus {
    --gradient-via-color: #e27212 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 114, 18, 0)) !important;
  }

  .xl\:focus\:cl-via-facebook:focus {
    --gradient-via-color: #3b5998 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(59, 89, 152, 0)) !important;
  }

  .xl\:focus\:cl-via-twitter:focus {
    --gradient-via-color: #00acee !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(0, 172, 238, 0)) !important;
  }

  .xl\:focus\:cl-via-twitch:focus {
    --gradient-via-color: #6441a5 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(100, 65, 165, 0)) !important;
  }

  .xl\:focus\:cl-via-youtube:focus {
    --gradient-via-color: #FF0000 !important;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 0, 0, 0)) !important;
  }

  .xl\:focus\:cl-to-transparent:focus {
    --gradient-to-color: transparent !important;
  }

  .xl\:focus\:cl-to-current:focus {
    --gradient-to-color: currentColor !important;
  }

  .xl\:focus\:cl-to-black:focus {
    --gradient-to-color: #000 !important;
  }

  .xl\:focus\:cl-to-white:focus {
    --gradient-to-color: #fff !important;
  }

  .xl\:focus\:cl-to-gray-100:focus {
    --gradient-to-color: #f7fafc !important;
  }

  .xl\:focus\:cl-to-gray-200:focus {
    --gradient-to-color: #edf2f7 !important;
  }

  .xl\:focus\:cl-to-gray-300:focus {
    --gradient-to-color: #e2e8f0 !important;
  }

  .xl\:focus\:cl-to-gray-400:focus {
    --gradient-to-color: #cbd5e0 !important;
  }

  .xl\:focus\:cl-to-gray-500:focus {
    --gradient-to-color: #a0aec0 !important;
  }

  .xl\:focus\:cl-to-gray-600:focus {
    --gradient-to-color: #718096 !important;
  }

  .xl\:focus\:cl-to-gray-700:focus {
    --gradient-to-color: #4a5568 !important;
  }

  .xl\:focus\:cl-to-gray-800:focus {
    --gradient-to-color: #2d3748 !important;
  }

  .xl\:focus\:cl-to-gray-900:focus {
    --gradient-to-color: #1a202c !important;
  }

  .xl\:focus\:cl-to-red-100:focus {
    --gradient-to-color: #fff5f5 !important;
  }

  .xl\:focus\:cl-to-red-200:focus {
    --gradient-to-color: #fed7d7 !important;
  }

  .xl\:focus\:cl-to-red-300:focus {
    --gradient-to-color: #feb2b2 !important;
  }

  .xl\:focus\:cl-to-red-400:focus {
    --gradient-to-color: #fc8181 !important;
  }

  .xl\:focus\:cl-to-red-500:focus {
    --gradient-to-color: #f56565 !important;
  }

  .xl\:focus\:cl-to-red-600:focus {
    --gradient-to-color: #e53e3e !important;
  }

  .xl\:focus\:cl-to-red-700:focus {
    --gradient-to-color: #c53030 !important;
  }

  .xl\:focus\:cl-to-red-800:focus {
    --gradient-to-color: #9b2c2c !important;
  }

  .xl\:focus\:cl-to-red-900:focus {
    --gradient-to-color: #742a2a !important;
  }

  .xl\:focus\:cl-to-orange-100:focus {
    --gradient-to-color: #fffaf0 !important;
  }

  .xl\:focus\:cl-to-orange-200:focus {
    --gradient-to-color: #feebc8 !important;
  }

  .xl\:focus\:cl-to-orange-300:focus {
    --gradient-to-color: #fbd38d !important;
  }

  .xl\:focus\:cl-to-orange-400:focus {
    --gradient-to-color: #f6ad55 !important;
  }

  .xl\:focus\:cl-to-orange-500:focus {
    --gradient-to-color: #ed8936 !important;
  }

  .xl\:focus\:cl-to-orange-600:focus {
    --gradient-to-color: #dd6b20 !important;
  }

  .xl\:focus\:cl-to-orange-700:focus {
    --gradient-to-color: #c05621 !important;
  }

  .xl\:focus\:cl-to-orange-800:focus {
    --gradient-to-color: #9c4221 !important;
  }

  .xl\:focus\:cl-to-orange-900:focus {
    --gradient-to-color: #7b341e !important;
  }

  .xl\:focus\:cl-to-yellow-100:focus {
    --gradient-to-color: #fffff0 !important;
  }

  .xl\:focus\:cl-to-yellow-200:focus {
    --gradient-to-color: #fefcbf !important;
  }

  .xl\:focus\:cl-to-yellow-300:focus {
    --gradient-to-color: #faf089 !important;
  }

  .xl\:focus\:cl-to-yellow-400:focus {
    --gradient-to-color: #f6e05e !important;
  }

  .xl\:focus\:cl-to-yellow-500:focus {
    --gradient-to-color: #ecc94b !important;
  }

  .xl\:focus\:cl-to-yellow-600:focus {
    --gradient-to-color: #d69e2e !important;
  }

  .xl\:focus\:cl-to-yellow-700:focus {
    --gradient-to-color: #b7791f !important;
  }

  .xl\:focus\:cl-to-yellow-800:focus {
    --gradient-to-color: #975a16 !important;
  }

  .xl\:focus\:cl-to-yellow-900:focus {
    --gradient-to-color: #744210 !important;
  }

  .xl\:focus\:cl-to-green-100:focus {
    --gradient-to-color: #f0fff4 !important;
  }

  .xl\:focus\:cl-to-green-200:focus {
    --gradient-to-color: #c6f6d5 !important;
  }

  .xl\:focus\:cl-to-green-300:focus {
    --gradient-to-color: #9ae6b4 !important;
  }

  .xl\:focus\:cl-to-green-400:focus {
    --gradient-to-color: #68d391 !important;
  }

  .xl\:focus\:cl-to-green-500:focus {
    --gradient-to-color: #48bb78 !important;
  }

  .xl\:focus\:cl-to-green-600:focus {
    --gradient-to-color: #38a169 !important;
  }

  .xl\:focus\:cl-to-green-700:focus {
    --gradient-to-color: #2f855a !important;
  }

  .xl\:focus\:cl-to-green-800:focus {
    --gradient-to-color: #276749 !important;
  }

  .xl\:focus\:cl-to-green-900:focus {
    --gradient-to-color: #22543d !important;
  }

  .xl\:focus\:cl-to-teal-100:focus {
    --gradient-to-color: #e6fffa !important;
  }

  .xl\:focus\:cl-to-teal-200:focus {
    --gradient-to-color: #b2f5ea !important;
  }

  .xl\:focus\:cl-to-teal-300:focus {
    --gradient-to-color: #81e6d9 !important;
  }

  .xl\:focus\:cl-to-teal-400:focus {
    --gradient-to-color: #4fd1c5 !important;
  }

  .xl\:focus\:cl-to-teal-500:focus {
    --gradient-to-color: #38b2ac !important;
  }

  .xl\:focus\:cl-to-teal-600:focus {
    --gradient-to-color: #319795 !important;
  }

  .xl\:focus\:cl-to-teal-700:focus {
    --gradient-to-color: #2c7a7b !important;
  }

  .xl\:focus\:cl-to-teal-800:focus {
    --gradient-to-color: #285e61 !important;
  }

  .xl\:focus\:cl-to-teal-900:focus {
    --gradient-to-color: #234e52 !important;
  }

  .xl\:focus\:cl-to-blue-100:focus {
    --gradient-to-color: #ebf8ff !important;
  }

  .xl\:focus\:cl-to-blue-200:focus {
    --gradient-to-color: #bee3f8 !important;
  }

  .xl\:focus\:cl-to-blue-300:focus {
    --gradient-to-color: #90cdf4 !important;
  }

  .xl\:focus\:cl-to-blue-400:focus {
    --gradient-to-color: #63b3ed !important;
  }

  .xl\:focus\:cl-to-blue-500:focus {
    --gradient-to-color: #4299e1 !important;
  }

  .xl\:focus\:cl-to-blue-600:focus {
    --gradient-to-color: #3182ce !important;
  }

  .xl\:focus\:cl-to-blue-700:focus {
    --gradient-to-color: #2b6cb0 !important;
  }

  .xl\:focus\:cl-to-blue-800:focus {
    --gradient-to-color: #2c5282 !important;
  }

  .xl\:focus\:cl-to-blue-900:focus {
    --gradient-to-color: #2a4365 !important;
  }

  .xl\:focus\:cl-to-indigo-100:focus {
    --gradient-to-color: #ebf4ff !important;
  }

  .xl\:focus\:cl-to-indigo-200:focus {
    --gradient-to-color: #c3dafe !important;
  }

  .xl\:focus\:cl-to-indigo-300:focus {
    --gradient-to-color: #a3bffa !important;
  }

  .xl\:focus\:cl-to-indigo-400:focus {
    --gradient-to-color: #7f9cf5 !important;
  }

  .xl\:focus\:cl-to-indigo-500:focus {
    --gradient-to-color: #667eea !important;
  }

  .xl\:focus\:cl-to-indigo-600:focus {
    --gradient-to-color: #5a67d8 !important;
  }

  .xl\:focus\:cl-to-indigo-700:focus {
    --gradient-to-color: #4c51bf !important;
  }

  .xl\:focus\:cl-to-indigo-800:focus {
    --gradient-to-color: #434190 !important;
  }

  .xl\:focus\:cl-to-indigo-900:focus {
    --gradient-to-color: #3c366b !important;
  }

  .xl\:focus\:cl-to-purple-100:focus {
    --gradient-to-color: #faf5ff !important;
  }

  .xl\:focus\:cl-to-purple-200:focus {
    --gradient-to-color: #e9d8fd !important;
  }

  .xl\:focus\:cl-to-purple-300:focus {
    --gradient-to-color: #d6bcfa !important;
  }

  .xl\:focus\:cl-to-purple-400:focus {
    --gradient-to-color: #b794f4 !important;
  }

  .xl\:focus\:cl-to-purple-500:focus {
    --gradient-to-color: #9f7aea !important;
  }

  .xl\:focus\:cl-to-purple-600:focus {
    --gradient-to-color: #805ad5 !important;
  }

  .xl\:focus\:cl-to-purple-700:focus {
    --gradient-to-color: #6b46c1 !important;
  }

  .xl\:focus\:cl-to-purple-800:focus {
    --gradient-to-color: #553c9a !important;
  }

  .xl\:focus\:cl-to-purple-900:focus {
    --gradient-to-color: #44337a !important;
  }

  .xl\:focus\:cl-to-pink-100:focus {
    --gradient-to-color: #fff5f7 !important;
  }

  .xl\:focus\:cl-to-pink-200:focus {
    --gradient-to-color: #fed7e2 !important;
  }

  .xl\:focus\:cl-to-pink-300:focus {
    --gradient-to-color: #fbb6ce !important;
  }

  .xl\:focus\:cl-to-pink-400:focus {
    --gradient-to-color: #f687b3 !important;
  }

  .xl\:focus\:cl-to-pink-500:focus {
    --gradient-to-color: #ed64a6 !important;
  }

  .xl\:focus\:cl-to-pink-600:focus {
    --gradient-to-color: #d53f8c !important;
  }

  .xl\:focus\:cl-to-pink-700:focus {
    --gradient-to-color: #b83280 !important;
  }

  .xl\:focus\:cl-to-pink-800:focus {
    --gradient-to-color: #97266d !important;
  }

  .xl\:focus\:cl-to-pink-900:focus {
    --gradient-to-color: #702459 !important;
  }

  .xl\:focus\:cl-to-ui-gray-100:focus {
    --gradient-to-color: #f1f1f1 !important;
  }

  .xl\:focus\:cl-to-ui-brown-100:focus {
    --gradient-to-color: #f3ecdc !important;
  }

  .xl\:focus\:cl-to-ui-brown-200:focus {
    --gradient-to-color: #e8e0c9 !important;
  }

  .xl\:focus\:cl-to-ui-brown-300:focus {
    --gradient-to-color: #d0c095 !important;
  }

  .xl\:focus\:cl-to-ui-brown-700:focus {
    --gradient-to-color: #bd6005 !important;
  }

  .xl\:focus\:cl-to-ui-green-300:focus {
    --gradient-to-color: #aac74c !important;
  }

  .xl\:focus\:cl-to-ui-green-400:focus {
    --gradient-to-color: #71893e !important;
  }

  .xl\:focus\:cl-to-ui-orange-500:focus {
    --gradient-to-color: #e27212 !important;
  }

  .xl\:focus\:cl-to-facebook:focus {
    --gradient-to-color: #3b5998 !important;
  }

  .xl\:focus\:cl-to-twitter:focus {
    --gradient-to-color: #00acee !important;
  }

  .xl\:focus\:cl-to-twitch:focus {
    --gradient-to-color: #6441a5 !important;
  }

  .xl\:focus\:cl-to-youtube:focus {
    --gradient-to-color: #FF0000 !important;
  }

  .xl\:cl-bg-opacity-0 {
    --bg-opacity: 0 !important;
  }

  .xl\:cl-bg-opacity-25 {
    --bg-opacity: 0.25 !important;
  }

  .xl\:cl-bg-opacity-50 {
    --bg-opacity: 0.5 !important;
  }

  .xl\:cl-bg-opacity-75 {
    --bg-opacity: 0.75 !important;
  }

  .xl\:cl-bg-opacity-100 {
    --bg-opacity: 1 !important;
  }

  .xl\:hover\:cl-bg-opacity-0:hover {
    --bg-opacity: 0 !important;
  }

  .xl\:hover\:cl-bg-opacity-25:hover {
    --bg-opacity: 0.25 !important;
  }

  .xl\:hover\:cl-bg-opacity-50:hover {
    --bg-opacity: 0.5 !important;
  }

  .xl\:hover\:cl-bg-opacity-75:hover {
    --bg-opacity: 0.75 !important;
  }

  .xl\:hover\:cl-bg-opacity-100:hover {
    --bg-opacity: 1 !important;
  }

  .xl\:focus\:cl-bg-opacity-0:focus {
    --bg-opacity: 0 !important;
  }

  .xl\:focus\:cl-bg-opacity-25:focus {
    --bg-opacity: 0.25 !important;
  }

  .xl\:focus\:cl-bg-opacity-50:focus {
    --bg-opacity: 0.5 !important;
  }

  .xl\:focus\:cl-bg-opacity-75:focus {
    --bg-opacity: 0.75 !important;
  }

  .xl\:focus\:cl-bg-opacity-100:focus {
    --bg-opacity: 1 !important;
  }

  .xl\:cl-bg-bottom {
    background-position: bottom !important;
  }

  .xl\:cl-bg-center {
    background-position: center !important;
  }

  .xl\:cl-bg-left {
    background-position: left !important;
  }

  .xl\:cl-bg-left-bottom {
    background-position: left bottom !important;
  }

  .xl\:cl-bg-left-top {
    background-position: left top !important;
  }

  .xl\:cl-bg-right {
    background-position: right !important;
  }

  .xl\:cl-bg-right-bottom {
    background-position: right bottom !important;
  }

  .xl\:cl-bg-right-top {
    background-position: right top !important;
  }

  .xl\:cl-bg-top {
    background-position: top !important;
  }

  .xl\:cl-bg-repeat {
    background-repeat: repeat !important;
  }

  .xl\:cl-bg-no-repeat {
    background-repeat: no-repeat !important;
  }

  .xl\:cl-bg-repeat-x {
    background-repeat: repeat-x !important;
  }

  .xl\:cl-bg-repeat-y {
    background-repeat: repeat-y !important;
  }

  .xl\:cl-bg-repeat-round {
    background-repeat: round !important;
  }

  .xl\:cl-bg-repeat-space {
    background-repeat: space !important;
  }

  .xl\:cl-bg-auto {
    background-size: auto !important;
  }

  .xl\:cl-bg-cover {
    background-size: cover !important;
  }

  .xl\:cl-bg-contain {
    background-size: contain !important;
  }

  .xl\:cl-border-collapse {
    border-collapse: collapse !important;
  }

  .xl\:cl-border-separate {
    border-collapse: separate !important;
  }

  .xl\:cl-border-transparent {
    border-color: transparent !important;
  }

  .xl\:cl-border-current {
    border-color: currentColor !important;
  }

  .xl\:cl-border-black {
    --border-opacity: 1 !important;
    border-color: #000 !important;
    border-color: rgba(0, 0, 0, var(--border-opacity)) !important;
  }

  .xl\:cl-border-white {
    --border-opacity: 1 !important;
    border-color: #fff !important;
    border-color: rgba(255, 255, 255, var(--border-opacity)) !important;
  }

  .xl\:cl-border-gray-100 {
    --border-opacity: 1 !important;
    border-color: #f7fafc !important;
    border-color: rgba(247, 250, 252, var(--border-opacity)) !important;
  }

  .xl\:cl-border-gray-200 {
    --border-opacity: 1 !important;
    border-color: #edf2f7 !important;
    border-color: rgba(237, 242, 247, var(--border-opacity)) !important;
  }

  .xl\:cl-border-gray-300 {
    --border-opacity: 1 !important;
    border-color: #e2e8f0 !important;
    border-color: rgba(226, 232, 240, var(--border-opacity)) !important;
  }

  .xl\:cl-border-gray-400 {
    --border-opacity: 1 !important;
    border-color: #cbd5e0 !important;
    border-color: rgba(203, 213, 224, var(--border-opacity)) !important;
  }

  .xl\:cl-border-gray-500 {
    --border-opacity: 1 !important;
    border-color: #a0aec0 !important;
    border-color: rgba(160, 174, 192, var(--border-opacity)) !important;
  }

  .xl\:cl-border-gray-600 {
    --border-opacity: 1 !important;
    border-color: #718096 !important;
    border-color: rgba(113, 128, 150, var(--border-opacity)) !important;
  }

  .xl\:cl-border-gray-700 {
    --border-opacity: 1 !important;
    border-color: #4a5568 !important;
    border-color: rgba(74, 85, 104, var(--border-opacity)) !important;
  }

  .xl\:cl-border-gray-800 {
    --border-opacity: 1 !important;
    border-color: #2d3748 !important;
    border-color: rgba(45, 55, 72, var(--border-opacity)) !important;
  }

  .xl\:cl-border-gray-900 {
    --border-opacity: 1 !important;
    border-color: #1a202c !important;
    border-color: rgba(26, 32, 44, var(--border-opacity)) !important;
  }

  .xl\:cl-border-red-100 {
    --border-opacity: 1 !important;
    border-color: #fff5f5 !important;
    border-color: rgba(255, 245, 245, var(--border-opacity)) !important;
  }

  .xl\:cl-border-red-200 {
    --border-opacity: 1 !important;
    border-color: #fed7d7 !important;
    border-color: rgba(254, 215, 215, var(--border-opacity)) !important;
  }

  .xl\:cl-border-red-300 {
    --border-opacity: 1 !important;
    border-color: #feb2b2 !important;
    border-color: rgba(254, 178, 178, var(--border-opacity)) !important;
  }

  .xl\:cl-border-red-400 {
    --border-opacity: 1 !important;
    border-color: #fc8181 !important;
    border-color: rgba(252, 129, 129, var(--border-opacity)) !important;
  }

  .xl\:cl-border-red-500 {
    --border-opacity: 1 !important;
    border-color: #f56565 !important;
    border-color: rgba(245, 101, 101, var(--border-opacity)) !important;
  }

  .xl\:cl-border-red-600 {
    --border-opacity: 1 !important;
    border-color: #e53e3e !important;
    border-color: rgba(229, 62, 62, var(--border-opacity)) !important;
  }

  .xl\:cl-border-red-700 {
    --border-opacity: 1 !important;
    border-color: #c53030 !important;
    border-color: rgba(197, 48, 48, var(--border-opacity)) !important;
  }

  .xl\:cl-border-red-800 {
    --border-opacity: 1 !important;
    border-color: #9b2c2c !important;
    border-color: rgba(155, 44, 44, var(--border-opacity)) !important;
  }

  .xl\:cl-border-red-900 {
    --border-opacity: 1 !important;
    border-color: #742a2a !important;
    border-color: rgba(116, 42, 42, var(--border-opacity)) !important;
  }

  .xl\:cl-border-orange-100 {
    --border-opacity: 1 !important;
    border-color: #fffaf0 !important;
    border-color: rgba(255, 250, 240, var(--border-opacity)) !important;
  }

  .xl\:cl-border-orange-200 {
    --border-opacity: 1 !important;
    border-color: #feebc8 !important;
    border-color: rgba(254, 235, 200, var(--border-opacity)) !important;
  }

  .xl\:cl-border-orange-300 {
    --border-opacity: 1 !important;
    border-color: #fbd38d !important;
    border-color: rgba(251, 211, 141, var(--border-opacity)) !important;
  }

  .xl\:cl-border-orange-400 {
    --border-opacity: 1 !important;
    border-color: #f6ad55 !important;
    border-color: rgba(246, 173, 85, var(--border-opacity)) !important;
  }

  .xl\:cl-border-orange-500 {
    --border-opacity: 1 !important;
    border-color: #ed8936 !important;
    border-color: rgba(237, 137, 54, var(--border-opacity)) !important;
  }

  .xl\:cl-border-orange-600 {
    --border-opacity: 1 !important;
    border-color: #dd6b20 !important;
    border-color: rgba(221, 107, 32, var(--border-opacity)) !important;
  }

  .xl\:cl-border-orange-700 {
    --border-opacity: 1 !important;
    border-color: #c05621 !important;
    border-color: rgba(192, 86, 33, var(--border-opacity)) !important;
  }

  .xl\:cl-border-orange-800 {
    --border-opacity: 1 !important;
    border-color: #9c4221 !important;
    border-color: rgba(156, 66, 33, var(--border-opacity)) !important;
  }

  .xl\:cl-border-orange-900 {
    --border-opacity: 1 !important;
    border-color: #7b341e !important;
    border-color: rgba(123, 52, 30, var(--border-opacity)) !important;
  }

  .xl\:cl-border-yellow-100 {
    --border-opacity: 1 !important;
    border-color: #fffff0 !important;
    border-color: rgba(255, 255, 240, var(--border-opacity)) !important;
  }

  .xl\:cl-border-yellow-200 {
    --border-opacity: 1 !important;
    border-color: #fefcbf !important;
    border-color: rgba(254, 252, 191, var(--border-opacity)) !important;
  }

  .xl\:cl-border-yellow-300 {
    --border-opacity: 1 !important;
    border-color: #faf089 !important;
    border-color: rgba(250, 240, 137, var(--border-opacity)) !important;
  }

  .xl\:cl-border-yellow-400 {
    --border-opacity: 1 !important;
    border-color: #f6e05e !important;
    border-color: rgba(246, 224, 94, var(--border-opacity)) !important;
  }

  .xl\:cl-border-yellow-500 {
    --border-opacity: 1 !important;
    border-color: #ecc94b !important;
    border-color: rgba(236, 201, 75, var(--border-opacity)) !important;
  }

  .xl\:cl-border-yellow-600 {
    --border-opacity: 1 !important;
    border-color: #d69e2e !important;
    border-color: rgba(214, 158, 46, var(--border-opacity)) !important;
  }

  .xl\:cl-border-yellow-700 {
    --border-opacity: 1 !important;
    border-color: #b7791f !important;
    border-color: rgba(183, 121, 31, var(--border-opacity)) !important;
  }

  .xl\:cl-border-yellow-800 {
    --border-opacity: 1 !important;
    border-color: #975a16 !important;
    border-color: rgba(151, 90, 22, var(--border-opacity)) !important;
  }

  .xl\:cl-border-yellow-900 {
    --border-opacity: 1 !important;
    border-color: #744210 !important;
    border-color: rgba(116, 66, 16, var(--border-opacity)) !important;
  }

  .xl\:cl-border-green-100 {
    --border-opacity: 1 !important;
    border-color: #f0fff4 !important;
    border-color: rgba(240, 255, 244, var(--border-opacity)) !important;
  }

  .xl\:cl-border-green-200 {
    --border-opacity: 1 !important;
    border-color: #c6f6d5 !important;
    border-color: rgba(198, 246, 213, var(--border-opacity)) !important;
  }

  .xl\:cl-border-green-300 {
    --border-opacity: 1 !important;
    border-color: #9ae6b4 !important;
    border-color: rgba(154, 230, 180, var(--border-opacity)) !important;
  }

  .xl\:cl-border-green-400 {
    --border-opacity: 1 !important;
    border-color: #68d391 !important;
    border-color: rgba(104, 211, 145, var(--border-opacity)) !important;
  }

  .xl\:cl-border-green-500 {
    --border-opacity: 1 !important;
    border-color: #48bb78 !important;
    border-color: rgba(72, 187, 120, var(--border-opacity)) !important;
  }

  .xl\:cl-border-green-600 {
    --border-opacity: 1 !important;
    border-color: #38a169 !important;
    border-color: rgba(56, 161, 105, var(--border-opacity)) !important;
  }

  .xl\:cl-border-green-700 {
    --border-opacity: 1 !important;
    border-color: #2f855a !important;
    border-color: rgba(47, 133, 90, var(--border-opacity)) !important;
  }

  .xl\:cl-border-green-800 {
    --border-opacity: 1 !important;
    border-color: #276749 !important;
    border-color: rgba(39, 103, 73, var(--border-opacity)) !important;
  }

  .xl\:cl-border-green-900 {
    --border-opacity: 1 !important;
    border-color: #22543d !important;
    border-color: rgba(34, 84, 61, var(--border-opacity)) !important;
  }

  .xl\:cl-border-teal-100 {
    --border-opacity: 1 !important;
    border-color: #e6fffa !important;
    border-color: rgba(230, 255, 250, var(--border-opacity)) !important;
  }

  .xl\:cl-border-teal-200 {
    --border-opacity: 1 !important;
    border-color: #b2f5ea !important;
    border-color: rgba(178, 245, 234, var(--border-opacity)) !important;
  }

  .xl\:cl-border-teal-300 {
    --border-opacity: 1 !important;
    border-color: #81e6d9 !important;
    border-color: rgba(129, 230, 217, var(--border-opacity)) !important;
  }

  .xl\:cl-border-teal-400 {
    --border-opacity: 1 !important;
    border-color: #4fd1c5 !important;
    border-color: rgba(79, 209, 197, var(--border-opacity)) !important;
  }

  .xl\:cl-border-teal-500 {
    --border-opacity: 1 !important;
    border-color: #38b2ac !important;
    border-color: rgba(56, 178, 172, var(--border-opacity)) !important;
  }

  .xl\:cl-border-teal-600 {
    --border-opacity: 1 !important;
    border-color: #319795 !important;
    border-color: rgba(49, 151, 149, var(--border-opacity)) !important;
  }

  .xl\:cl-border-teal-700 {
    --border-opacity: 1 !important;
    border-color: #2c7a7b !important;
    border-color: rgba(44, 122, 123, var(--border-opacity)) !important;
  }

  .xl\:cl-border-teal-800 {
    --border-opacity: 1 !important;
    border-color: #285e61 !important;
    border-color: rgba(40, 94, 97, var(--border-opacity)) !important;
  }

  .xl\:cl-border-teal-900 {
    --border-opacity: 1 !important;
    border-color: #234e52 !important;
    border-color: rgba(35, 78, 82, var(--border-opacity)) !important;
  }

  .xl\:cl-border-blue-100 {
    --border-opacity: 1 !important;
    border-color: #ebf8ff !important;
    border-color: rgba(235, 248, 255, var(--border-opacity)) !important;
  }

  .xl\:cl-border-blue-200 {
    --border-opacity: 1 !important;
    border-color: #bee3f8 !important;
    border-color: rgba(190, 227, 248, var(--border-opacity)) !important;
  }

  .xl\:cl-border-blue-300 {
    --border-opacity: 1 !important;
    border-color: #90cdf4 !important;
    border-color: rgba(144, 205, 244, var(--border-opacity)) !important;
  }

  .xl\:cl-border-blue-400 {
    --border-opacity: 1 !important;
    border-color: #63b3ed !important;
    border-color: rgba(99, 179, 237, var(--border-opacity)) !important;
  }

  .xl\:cl-border-blue-500 {
    --border-opacity: 1 !important;
    border-color: #4299e1 !important;
    border-color: rgba(66, 153, 225, var(--border-opacity)) !important;
  }

  .xl\:cl-border-blue-600 {
    --border-opacity: 1 !important;
    border-color: #3182ce !important;
    border-color: rgba(49, 130, 206, var(--border-opacity)) !important;
  }

  .xl\:cl-border-blue-700 {
    --border-opacity: 1 !important;
    border-color: #2b6cb0 !important;
    border-color: rgba(43, 108, 176, var(--border-opacity)) !important;
  }

  .xl\:cl-border-blue-800 {
    --border-opacity: 1 !important;
    border-color: #2c5282 !important;
    border-color: rgba(44, 82, 130, var(--border-opacity)) !important;
  }

  .xl\:cl-border-blue-900 {
    --border-opacity: 1 !important;
    border-color: #2a4365 !important;
    border-color: rgba(42, 67, 101, var(--border-opacity)) !important;
  }

  .xl\:cl-border-indigo-100 {
    --border-opacity: 1 !important;
    border-color: #ebf4ff !important;
    border-color: rgba(235, 244, 255, var(--border-opacity)) !important;
  }

  .xl\:cl-border-indigo-200 {
    --border-opacity: 1 !important;
    border-color: #c3dafe !important;
    border-color: rgba(195, 218, 254, var(--border-opacity)) !important;
  }

  .xl\:cl-border-indigo-300 {
    --border-opacity: 1 !important;
    border-color: #a3bffa !important;
    border-color: rgba(163, 191, 250, var(--border-opacity)) !important;
  }

  .xl\:cl-border-indigo-400 {
    --border-opacity: 1 !important;
    border-color: #7f9cf5 !important;
    border-color: rgba(127, 156, 245, var(--border-opacity)) !important;
  }

  .xl\:cl-border-indigo-500 {
    --border-opacity: 1 !important;
    border-color: #667eea !important;
    border-color: rgba(102, 126, 234, var(--border-opacity)) !important;
  }

  .xl\:cl-border-indigo-600 {
    --border-opacity: 1 !important;
    border-color: #5a67d8 !important;
    border-color: rgba(90, 103, 216, var(--border-opacity)) !important;
  }

  .xl\:cl-border-indigo-700 {
    --border-opacity: 1 !important;
    border-color: #4c51bf !important;
    border-color: rgba(76, 81, 191, var(--border-opacity)) !important;
  }

  .xl\:cl-border-indigo-800 {
    --border-opacity: 1 !important;
    border-color: #434190 !important;
    border-color: rgba(67, 65, 144, var(--border-opacity)) !important;
  }

  .xl\:cl-border-indigo-900 {
    --border-opacity: 1 !important;
    border-color: #3c366b !important;
    border-color: rgba(60, 54, 107, var(--border-opacity)) !important;
  }

  .xl\:cl-border-purple-100 {
    --border-opacity: 1 !important;
    border-color: #faf5ff !important;
    border-color: rgba(250, 245, 255, var(--border-opacity)) !important;
  }

  .xl\:cl-border-purple-200 {
    --border-opacity: 1 !important;
    border-color: #e9d8fd !important;
    border-color: rgba(233, 216, 253, var(--border-opacity)) !important;
  }

  .xl\:cl-border-purple-300 {
    --border-opacity: 1 !important;
    border-color: #d6bcfa !important;
    border-color: rgba(214, 188, 250, var(--border-opacity)) !important;
  }

  .xl\:cl-border-purple-400 {
    --border-opacity: 1 !important;
    border-color: #b794f4 !important;
    border-color: rgba(183, 148, 244, var(--border-opacity)) !important;
  }

  .xl\:cl-border-purple-500 {
    --border-opacity: 1 !important;
    border-color: #9f7aea !important;
    border-color: rgba(159, 122, 234, var(--border-opacity)) !important;
  }

  .xl\:cl-border-purple-600 {
    --border-opacity: 1 !important;
    border-color: #805ad5 !important;
    border-color: rgba(128, 90, 213, var(--border-opacity)) !important;
  }

  .xl\:cl-border-purple-700 {
    --border-opacity: 1 !important;
    border-color: #6b46c1 !important;
    border-color: rgba(107, 70, 193, var(--border-opacity)) !important;
  }

  .xl\:cl-border-purple-800 {
    --border-opacity: 1 !important;
    border-color: #553c9a !important;
    border-color: rgba(85, 60, 154, var(--border-opacity)) !important;
  }

  .xl\:cl-border-purple-900 {
    --border-opacity: 1 !important;
    border-color: #44337a !important;
    border-color: rgba(68, 51, 122, var(--border-opacity)) !important;
  }

  .xl\:cl-border-pink-100 {
    --border-opacity: 1 !important;
    border-color: #fff5f7 !important;
    border-color: rgba(255, 245, 247, var(--border-opacity)) !important;
  }

  .xl\:cl-border-pink-200 {
    --border-opacity: 1 !important;
    border-color: #fed7e2 !important;
    border-color: rgba(254, 215, 226, var(--border-opacity)) !important;
  }

  .xl\:cl-border-pink-300 {
    --border-opacity: 1 !important;
    border-color: #fbb6ce !important;
    border-color: rgba(251, 182, 206, var(--border-opacity)) !important;
  }

  .xl\:cl-border-pink-400 {
    --border-opacity: 1 !important;
    border-color: #f687b3 !important;
    border-color: rgba(246, 135, 179, var(--border-opacity)) !important;
  }

  .xl\:cl-border-pink-500 {
    --border-opacity: 1 !important;
    border-color: #ed64a6 !important;
    border-color: rgba(237, 100, 166, var(--border-opacity)) !important;
  }

  .xl\:cl-border-pink-600 {
    --border-opacity: 1 !important;
    border-color: #d53f8c !important;
    border-color: rgba(213, 63, 140, var(--border-opacity)) !important;
  }

  .xl\:cl-border-pink-700 {
    --border-opacity: 1 !important;
    border-color: #b83280 !important;
    border-color: rgba(184, 50, 128, var(--border-opacity)) !important;
  }

  .xl\:cl-border-pink-800 {
    --border-opacity: 1 !important;
    border-color: #97266d !important;
    border-color: rgba(151, 38, 109, var(--border-opacity)) !important;
  }

  .xl\:cl-border-pink-900 {
    --border-opacity: 1 !important;
    border-color: #702459 !important;
    border-color: rgba(112, 36, 89, var(--border-opacity)) !important;
  }

  .xl\:cl-border-ui-gray-100 {
    --border-opacity: 1 !important;
    border-color: #f1f1f1 !important;
    border-color: rgba(241, 241, 241, var(--border-opacity)) !important;
  }

  .xl\:cl-border-ui-brown-100 {
    --border-opacity: 1 !important;
    border-color: #f3ecdc !important;
    border-color: rgba(243, 236, 220, var(--border-opacity)) !important;
  }

  .xl\:cl-border-ui-brown-200 {
    --border-opacity: 1 !important;
    border-color: #e8e0c9 !important;
    border-color: rgba(232, 224, 201, var(--border-opacity)) !important;
  }

  .xl\:cl-border-ui-brown-300 {
    --border-opacity: 1 !important;
    border-color: #d0c095 !important;
    border-color: rgba(208, 192, 149, var(--border-opacity)) !important;
  }

  .xl\:cl-border-ui-brown-700 {
    --border-opacity: 1 !important;
    border-color: #bd6005 !important;
    border-color: rgba(189, 96, 5, var(--border-opacity)) !important;
  }

  .xl\:cl-border-ui-green-300 {
    --border-opacity: 1 !important;
    border-color: #aac74c !important;
    border-color: rgba(170, 199, 76, var(--border-opacity)) !important;
  }

  .xl\:cl-border-ui-green-400 {
    --border-opacity: 1 !important;
    border-color: #71893e !important;
    border-color: rgba(113, 137, 62, var(--border-opacity)) !important;
  }

  .xl\:cl-border-ui-orange-500 {
    --border-opacity: 1 !important;
    border-color: #e27212 !important;
    border-color: rgba(226, 114, 18, var(--border-opacity)) !important;
  }

  .xl\:cl-border-facebook {
    --border-opacity: 1 !important;
    border-color: #3b5998 !important;
    border-color: rgba(59, 89, 152, var(--border-opacity)) !important;
  }

  .xl\:cl-border-twitter {
    --border-opacity: 1 !important;
    border-color: #00acee !important;
    border-color: rgba(0, 172, 238, var(--border-opacity)) !important;
  }

  .xl\:cl-border-twitch {
    --border-opacity: 1 !important;
    border-color: #6441a5 !important;
    border-color: rgba(100, 65, 165, var(--border-opacity)) !important;
  }

  .xl\:cl-border-youtube {
    --border-opacity: 1 !important;
    border-color: #FF0000 !important;
    border-color: rgba(255, 0, 0, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-transparent:hover {
    border-color: transparent !important;
  }

  .xl\:hover\:cl-border-current:hover {
    border-color: currentColor !important;
  }

  .xl\:hover\:cl-border-black:hover {
    --border-opacity: 1 !important;
    border-color: #000 !important;
    border-color: rgba(0, 0, 0, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-white:hover {
    --border-opacity: 1 !important;
    border-color: #fff !important;
    border-color: rgba(255, 255, 255, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-gray-100:hover {
    --border-opacity: 1 !important;
    border-color: #f7fafc !important;
    border-color: rgba(247, 250, 252, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-gray-200:hover {
    --border-opacity: 1 !important;
    border-color: #edf2f7 !important;
    border-color: rgba(237, 242, 247, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-gray-300:hover {
    --border-opacity: 1 !important;
    border-color: #e2e8f0 !important;
    border-color: rgba(226, 232, 240, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-gray-400:hover {
    --border-opacity: 1 !important;
    border-color: #cbd5e0 !important;
    border-color: rgba(203, 213, 224, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-gray-500:hover {
    --border-opacity: 1 !important;
    border-color: #a0aec0 !important;
    border-color: rgba(160, 174, 192, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-gray-600:hover {
    --border-opacity: 1 !important;
    border-color: #718096 !important;
    border-color: rgba(113, 128, 150, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-gray-700:hover {
    --border-opacity: 1 !important;
    border-color: #4a5568 !important;
    border-color: rgba(74, 85, 104, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-gray-800:hover {
    --border-opacity: 1 !important;
    border-color: #2d3748 !important;
    border-color: rgba(45, 55, 72, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-gray-900:hover {
    --border-opacity: 1 !important;
    border-color: #1a202c !important;
    border-color: rgba(26, 32, 44, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-red-100:hover {
    --border-opacity: 1 !important;
    border-color: #fff5f5 !important;
    border-color: rgba(255, 245, 245, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-red-200:hover {
    --border-opacity: 1 !important;
    border-color: #fed7d7 !important;
    border-color: rgba(254, 215, 215, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-red-300:hover {
    --border-opacity: 1 !important;
    border-color: #feb2b2 !important;
    border-color: rgba(254, 178, 178, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-red-400:hover {
    --border-opacity: 1 !important;
    border-color: #fc8181 !important;
    border-color: rgba(252, 129, 129, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-red-500:hover {
    --border-opacity: 1 !important;
    border-color: #f56565 !important;
    border-color: rgba(245, 101, 101, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-red-600:hover {
    --border-opacity: 1 !important;
    border-color: #e53e3e !important;
    border-color: rgba(229, 62, 62, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-red-700:hover {
    --border-opacity: 1 !important;
    border-color: #c53030 !important;
    border-color: rgba(197, 48, 48, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-red-800:hover {
    --border-opacity: 1 !important;
    border-color: #9b2c2c !important;
    border-color: rgba(155, 44, 44, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-red-900:hover {
    --border-opacity: 1 !important;
    border-color: #742a2a !important;
    border-color: rgba(116, 42, 42, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-orange-100:hover {
    --border-opacity: 1 !important;
    border-color: #fffaf0 !important;
    border-color: rgba(255, 250, 240, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-orange-200:hover {
    --border-opacity: 1 !important;
    border-color: #feebc8 !important;
    border-color: rgba(254, 235, 200, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-orange-300:hover {
    --border-opacity: 1 !important;
    border-color: #fbd38d !important;
    border-color: rgba(251, 211, 141, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-orange-400:hover {
    --border-opacity: 1 !important;
    border-color: #f6ad55 !important;
    border-color: rgba(246, 173, 85, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-orange-500:hover {
    --border-opacity: 1 !important;
    border-color: #ed8936 !important;
    border-color: rgba(237, 137, 54, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-orange-600:hover {
    --border-opacity: 1 !important;
    border-color: #dd6b20 !important;
    border-color: rgba(221, 107, 32, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-orange-700:hover {
    --border-opacity: 1 !important;
    border-color: #c05621 !important;
    border-color: rgba(192, 86, 33, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-orange-800:hover {
    --border-opacity: 1 !important;
    border-color: #9c4221 !important;
    border-color: rgba(156, 66, 33, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-orange-900:hover {
    --border-opacity: 1 !important;
    border-color: #7b341e !important;
    border-color: rgba(123, 52, 30, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-yellow-100:hover {
    --border-opacity: 1 !important;
    border-color: #fffff0 !important;
    border-color: rgba(255, 255, 240, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-yellow-200:hover {
    --border-opacity: 1 !important;
    border-color: #fefcbf !important;
    border-color: rgba(254, 252, 191, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-yellow-300:hover {
    --border-opacity: 1 !important;
    border-color: #faf089 !important;
    border-color: rgba(250, 240, 137, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-yellow-400:hover {
    --border-opacity: 1 !important;
    border-color: #f6e05e !important;
    border-color: rgba(246, 224, 94, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-yellow-500:hover {
    --border-opacity: 1 !important;
    border-color: #ecc94b !important;
    border-color: rgba(236, 201, 75, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-yellow-600:hover {
    --border-opacity: 1 !important;
    border-color: #d69e2e !important;
    border-color: rgba(214, 158, 46, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-yellow-700:hover {
    --border-opacity: 1 !important;
    border-color: #b7791f !important;
    border-color: rgba(183, 121, 31, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-yellow-800:hover {
    --border-opacity: 1 !important;
    border-color: #975a16 !important;
    border-color: rgba(151, 90, 22, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-yellow-900:hover {
    --border-opacity: 1 !important;
    border-color: #744210 !important;
    border-color: rgba(116, 66, 16, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-green-100:hover {
    --border-opacity: 1 !important;
    border-color: #f0fff4 !important;
    border-color: rgba(240, 255, 244, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-green-200:hover {
    --border-opacity: 1 !important;
    border-color: #c6f6d5 !important;
    border-color: rgba(198, 246, 213, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-green-300:hover {
    --border-opacity: 1 !important;
    border-color: #9ae6b4 !important;
    border-color: rgba(154, 230, 180, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-green-400:hover {
    --border-opacity: 1 !important;
    border-color: #68d391 !important;
    border-color: rgba(104, 211, 145, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-green-500:hover {
    --border-opacity: 1 !important;
    border-color: #48bb78 !important;
    border-color: rgba(72, 187, 120, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-green-600:hover {
    --border-opacity: 1 !important;
    border-color: #38a169 !important;
    border-color: rgba(56, 161, 105, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-green-700:hover {
    --border-opacity: 1 !important;
    border-color: #2f855a !important;
    border-color: rgba(47, 133, 90, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-green-800:hover {
    --border-opacity: 1 !important;
    border-color: #276749 !important;
    border-color: rgba(39, 103, 73, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-green-900:hover {
    --border-opacity: 1 !important;
    border-color: #22543d !important;
    border-color: rgba(34, 84, 61, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-teal-100:hover {
    --border-opacity: 1 !important;
    border-color: #e6fffa !important;
    border-color: rgba(230, 255, 250, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-teal-200:hover {
    --border-opacity: 1 !important;
    border-color: #b2f5ea !important;
    border-color: rgba(178, 245, 234, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-teal-300:hover {
    --border-opacity: 1 !important;
    border-color: #81e6d9 !important;
    border-color: rgba(129, 230, 217, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-teal-400:hover {
    --border-opacity: 1 !important;
    border-color: #4fd1c5 !important;
    border-color: rgba(79, 209, 197, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-teal-500:hover {
    --border-opacity: 1 !important;
    border-color: #38b2ac !important;
    border-color: rgba(56, 178, 172, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-teal-600:hover {
    --border-opacity: 1 !important;
    border-color: #319795 !important;
    border-color: rgba(49, 151, 149, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-teal-700:hover {
    --border-opacity: 1 !important;
    border-color: #2c7a7b !important;
    border-color: rgba(44, 122, 123, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-teal-800:hover {
    --border-opacity: 1 !important;
    border-color: #285e61 !important;
    border-color: rgba(40, 94, 97, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-teal-900:hover {
    --border-opacity: 1 !important;
    border-color: #234e52 !important;
    border-color: rgba(35, 78, 82, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-blue-100:hover {
    --border-opacity: 1 !important;
    border-color: #ebf8ff !important;
    border-color: rgba(235, 248, 255, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-blue-200:hover {
    --border-opacity: 1 !important;
    border-color: #bee3f8 !important;
    border-color: rgba(190, 227, 248, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-blue-300:hover {
    --border-opacity: 1 !important;
    border-color: #90cdf4 !important;
    border-color: rgba(144, 205, 244, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-blue-400:hover {
    --border-opacity: 1 !important;
    border-color: #63b3ed !important;
    border-color: rgba(99, 179, 237, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-blue-500:hover {
    --border-opacity: 1 !important;
    border-color: #4299e1 !important;
    border-color: rgba(66, 153, 225, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-blue-600:hover {
    --border-opacity: 1 !important;
    border-color: #3182ce !important;
    border-color: rgba(49, 130, 206, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-blue-700:hover {
    --border-opacity: 1 !important;
    border-color: #2b6cb0 !important;
    border-color: rgba(43, 108, 176, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-blue-800:hover {
    --border-opacity: 1 !important;
    border-color: #2c5282 !important;
    border-color: rgba(44, 82, 130, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-blue-900:hover {
    --border-opacity: 1 !important;
    border-color: #2a4365 !important;
    border-color: rgba(42, 67, 101, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-indigo-100:hover {
    --border-opacity: 1 !important;
    border-color: #ebf4ff !important;
    border-color: rgba(235, 244, 255, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-indigo-200:hover {
    --border-opacity: 1 !important;
    border-color: #c3dafe !important;
    border-color: rgba(195, 218, 254, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-indigo-300:hover {
    --border-opacity: 1 !important;
    border-color: #a3bffa !important;
    border-color: rgba(163, 191, 250, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-indigo-400:hover {
    --border-opacity: 1 !important;
    border-color: #7f9cf5 !important;
    border-color: rgba(127, 156, 245, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-indigo-500:hover {
    --border-opacity: 1 !important;
    border-color: #667eea !important;
    border-color: rgba(102, 126, 234, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-indigo-600:hover {
    --border-opacity: 1 !important;
    border-color: #5a67d8 !important;
    border-color: rgba(90, 103, 216, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-indigo-700:hover {
    --border-opacity: 1 !important;
    border-color: #4c51bf !important;
    border-color: rgba(76, 81, 191, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-indigo-800:hover {
    --border-opacity: 1 !important;
    border-color: #434190 !important;
    border-color: rgba(67, 65, 144, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-indigo-900:hover {
    --border-opacity: 1 !important;
    border-color: #3c366b !important;
    border-color: rgba(60, 54, 107, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-purple-100:hover {
    --border-opacity: 1 !important;
    border-color: #faf5ff !important;
    border-color: rgba(250, 245, 255, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-purple-200:hover {
    --border-opacity: 1 !important;
    border-color: #e9d8fd !important;
    border-color: rgba(233, 216, 253, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-purple-300:hover {
    --border-opacity: 1 !important;
    border-color: #d6bcfa !important;
    border-color: rgba(214, 188, 250, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-purple-400:hover {
    --border-opacity: 1 !important;
    border-color: #b794f4 !important;
    border-color: rgba(183, 148, 244, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-purple-500:hover {
    --border-opacity: 1 !important;
    border-color: #9f7aea !important;
    border-color: rgba(159, 122, 234, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-purple-600:hover {
    --border-opacity: 1 !important;
    border-color: #805ad5 !important;
    border-color: rgba(128, 90, 213, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-purple-700:hover {
    --border-opacity: 1 !important;
    border-color: #6b46c1 !important;
    border-color: rgba(107, 70, 193, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-purple-800:hover {
    --border-opacity: 1 !important;
    border-color: #553c9a !important;
    border-color: rgba(85, 60, 154, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-purple-900:hover {
    --border-opacity: 1 !important;
    border-color: #44337a !important;
    border-color: rgba(68, 51, 122, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-pink-100:hover {
    --border-opacity: 1 !important;
    border-color: #fff5f7 !important;
    border-color: rgba(255, 245, 247, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-pink-200:hover {
    --border-opacity: 1 !important;
    border-color: #fed7e2 !important;
    border-color: rgba(254, 215, 226, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-pink-300:hover {
    --border-opacity: 1 !important;
    border-color: #fbb6ce !important;
    border-color: rgba(251, 182, 206, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-pink-400:hover {
    --border-opacity: 1 !important;
    border-color: #f687b3 !important;
    border-color: rgba(246, 135, 179, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-pink-500:hover {
    --border-opacity: 1 !important;
    border-color: #ed64a6 !important;
    border-color: rgba(237, 100, 166, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-pink-600:hover {
    --border-opacity: 1 !important;
    border-color: #d53f8c !important;
    border-color: rgba(213, 63, 140, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-pink-700:hover {
    --border-opacity: 1 !important;
    border-color: #b83280 !important;
    border-color: rgba(184, 50, 128, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-pink-800:hover {
    --border-opacity: 1 !important;
    border-color: #97266d !important;
    border-color: rgba(151, 38, 109, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-pink-900:hover {
    --border-opacity: 1 !important;
    border-color: #702459 !important;
    border-color: rgba(112, 36, 89, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-ui-gray-100:hover {
    --border-opacity: 1 !important;
    border-color: #f1f1f1 !important;
    border-color: rgba(241, 241, 241, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-ui-brown-100:hover {
    --border-opacity: 1 !important;
    border-color: #f3ecdc !important;
    border-color: rgba(243, 236, 220, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-ui-brown-200:hover {
    --border-opacity: 1 !important;
    border-color: #e8e0c9 !important;
    border-color: rgba(232, 224, 201, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-ui-brown-300:hover {
    --border-opacity: 1 !important;
    border-color: #d0c095 !important;
    border-color: rgba(208, 192, 149, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-ui-brown-700:hover {
    --border-opacity: 1 !important;
    border-color: #bd6005 !important;
    border-color: rgba(189, 96, 5, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-ui-green-300:hover {
    --border-opacity: 1 !important;
    border-color: #aac74c !important;
    border-color: rgba(170, 199, 76, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-ui-green-400:hover {
    --border-opacity: 1 !important;
    border-color: #71893e !important;
    border-color: rgba(113, 137, 62, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-ui-orange-500:hover {
    --border-opacity: 1 !important;
    border-color: #e27212 !important;
    border-color: rgba(226, 114, 18, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-facebook:hover {
    --border-opacity: 1 !important;
    border-color: #3b5998 !important;
    border-color: rgba(59, 89, 152, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-twitter:hover {
    --border-opacity: 1 !important;
    border-color: #00acee !important;
    border-color: rgba(0, 172, 238, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-twitch:hover {
    --border-opacity: 1 !important;
    border-color: #6441a5 !important;
    border-color: rgba(100, 65, 165, var(--border-opacity)) !important;
  }

  .xl\:hover\:cl-border-youtube:hover {
    --border-opacity: 1 !important;
    border-color: #FF0000 !important;
    border-color: rgba(255, 0, 0, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-transparent:focus {
    border-color: transparent !important;
  }

  .xl\:focus\:cl-border-current:focus {
    border-color: currentColor !important;
  }

  .xl\:focus\:cl-border-black:focus {
    --border-opacity: 1 !important;
    border-color: #000 !important;
    border-color: rgba(0, 0, 0, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-white:focus {
    --border-opacity: 1 !important;
    border-color: #fff !important;
    border-color: rgba(255, 255, 255, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-gray-100:focus {
    --border-opacity: 1 !important;
    border-color: #f7fafc !important;
    border-color: rgba(247, 250, 252, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-gray-200:focus {
    --border-opacity: 1 !important;
    border-color: #edf2f7 !important;
    border-color: rgba(237, 242, 247, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-gray-300:focus {
    --border-opacity: 1 !important;
    border-color: #e2e8f0 !important;
    border-color: rgba(226, 232, 240, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-gray-400:focus {
    --border-opacity: 1 !important;
    border-color: #cbd5e0 !important;
    border-color: rgba(203, 213, 224, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-gray-500:focus {
    --border-opacity: 1 !important;
    border-color: #a0aec0 !important;
    border-color: rgba(160, 174, 192, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-gray-600:focus {
    --border-opacity: 1 !important;
    border-color: #718096 !important;
    border-color: rgba(113, 128, 150, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-gray-700:focus {
    --border-opacity: 1 !important;
    border-color: #4a5568 !important;
    border-color: rgba(74, 85, 104, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-gray-800:focus {
    --border-opacity: 1 !important;
    border-color: #2d3748 !important;
    border-color: rgba(45, 55, 72, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-gray-900:focus {
    --border-opacity: 1 !important;
    border-color: #1a202c !important;
    border-color: rgba(26, 32, 44, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-red-100:focus {
    --border-opacity: 1 !important;
    border-color: #fff5f5 !important;
    border-color: rgba(255, 245, 245, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-red-200:focus {
    --border-opacity: 1 !important;
    border-color: #fed7d7 !important;
    border-color: rgba(254, 215, 215, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-red-300:focus {
    --border-opacity: 1 !important;
    border-color: #feb2b2 !important;
    border-color: rgba(254, 178, 178, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-red-400:focus {
    --border-opacity: 1 !important;
    border-color: #fc8181 !important;
    border-color: rgba(252, 129, 129, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-red-500:focus {
    --border-opacity: 1 !important;
    border-color: #f56565 !important;
    border-color: rgba(245, 101, 101, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-red-600:focus {
    --border-opacity: 1 !important;
    border-color: #e53e3e !important;
    border-color: rgba(229, 62, 62, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-red-700:focus {
    --border-opacity: 1 !important;
    border-color: #c53030 !important;
    border-color: rgba(197, 48, 48, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-red-800:focus {
    --border-opacity: 1 !important;
    border-color: #9b2c2c !important;
    border-color: rgba(155, 44, 44, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-red-900:focus {
    --border-opacity: 1 !important;
    border-color: #742a2a !important;
    border-color: rgba(116, 42, 42, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-orange-100:focus {
    --border-opacity: 1 !important;
    border-color: #fffaf0 !important;
    border-color: rgba(255, 250, 240, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-orange-200:focus {
    --border-opacity: 1 !important;
    border-color: #feebc8 !important;
    border-color: rgba(254, 235, 200, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-orange-300:focus {
    --border-opacity: 1 !important;
    border-color: #fbd38d !important;
    border-color: rgba(251, 211, 141, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-orange-400:focus {
    --border-opacity: 1 !important;
    border-color: #f6ad55 !important;
    border-color: rgba(246, 173, 85, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-orange-500:focus {
    --border-opacity: 1 !important;
    border-color: #ed8936 !important;
    border-color: rgba(237, 137, 54, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-orange-600:focus {
    --border-opacity: 1 !important;
    border-color: #dd6b20 !important;
    border-color: rgba(221, 107, 32, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-orange-700:focus {
    --border-opacity: 1 !important;
    border-color: #c05621 !important;
    border-color: rgba(192, 86, 33, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-orange-800:focus {
    --border-opacity: 1 !important;
    border-color: #9c4221 !important;
    border-color: rgba(156, 66, 33, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-orange-900:focus {
    --border-opacity: 1 !important;
    border-color: #7b341e !important;
    border-color: rgba(123, 52, 30, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-yellow-100:focus {
    --border-opacity: 1 !important;
    border-color: #fffff0 !important;
    border-color: rgba(255, 255, 240, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-yellow-200:focus {
    --border-opacity: 1 !important;
    border-color: #fefcbf !important;
    border-color: rgba(254, 252, 191, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-yellow-300:focus {
    --border-opacity: 1 !important;
    border-color: #faf089 !important;
    border-color: rgba(250, 240, 137, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-yellow-400:focus {
    --border-opacity: 1 !important;
    border-color: #f6e05e !important;
    border-color: rgba(246, 224, 94, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-yellow-500:focus {
    --border-opacity: 1 !important;
    border-color: #ecc94b !important;
    border-color: rgba(236, 201, 75, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-yellow-600:focus {
    --border-opacity: 1 !important;
    border-color: #d69e2e !important;
    border-color: rgba(214, 158, 46, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-yellow-700:focus {
    --border-opacity: 1 !important;
    border-color: #b7791f !important;
    border-color: rgba(183, 121, 31, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-yellow-800:focus {
    --border-opacity: 1 !important;
    border-color: #975a16 !important;
    border-color: rgba(151, 90, 22, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-yellow-900:focus {
    --border-opacity: 1 !important;
    border-color: #744210 !important;
    border-color: rgba(116, 66, 16, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-green-100:focus {
    --border-opacity: 1 !important;
    border-color: #f0fff4 !important;
    border-color: rgba(240, 255, 244, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-green-200:focus {
    --border-opacity: 1 !important;
    border-color: #c6f6d5 !important;
    border-color: rgba(198, 246, 213, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-green-300:focus {
    --border-opacity: 1 !important;
    border-color: #9ae6b4 !important;
    border-color: rgba(154, 230, 180, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-green-400:focus {
    --border-opacity: 1 !important;
    border-color: #68d391 !important;
    border-color: rgba(104, 211, 145, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-green-500:focus {
    --border-opacity: 1 !important;
    border-color: #48bb78 !important;
    border-color: rgba(72, 187, 120, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-green-600:focus {
    --border-opacity: 1 !important;
    border-color: #38a169 !important;
    border-color: rgba(56, 161, 105, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-green-700:focus {
    --border-opacity: 1 !important;
    border-color: #2f855a !important;
    border-color: rgba(47, 133, 90, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-green-800:focus {
    --border-opacity: 1 !important;
    border-color: #276749 !important;
    border-color: rgba(39, 103, 73, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-green-900:focus {
    --border-opacity: 1 !important;
    border-color: #22543d !important;
    border-color: rgba(34, 84, 61, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-teal-100:focus {
    --border-opacity: 1 !important;
    border-color: #e6fffa !important;
    border-color: rgba(230, 255, 250, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-teal-200:focus {
    --border-opacity: 1 !important;
    border-color: #b2f5ea !important;
    border-color: rgba(178, 245, 234, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-teal-300:focus {
    --border-opacity: 1 !important;
    border-color: #81e6d9 !important;
    border-color: rgba(129, 230, 217, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-teal-400:focus {
    --border-opacity: 1 !important;
    border-color: #4fd1c5 !important;
    border-color: rgba(79, 209, 197, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-teal-500:focus {
    --border-opacity: 1 !important;
    border-color: #38b2ac !important;
    border-color: rgba(56, 178, 172, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-teal-600:focus {
    --border-opacity: 1 !important;
    border-color: #319795 !important;
    border-color: rgba(49, 151, 149, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-teal-700:focus {
    --border-opacity: 1 !important;
    border-color: #2c7a7b !important;
    border-color: rgba(44, 122, 123, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-teal-800:focus {
    --border-opacity: 1 !important;
    border-color: #285e61 !important;
    border-color: rgba(40, 94, 97, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-teal-900:focus {
    --border-opacity: 1 !important;
    border-color: #234e52 !important;
    border-color: rgba(35, 78, 82, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-blue-100:focus {
    --border-opacity: 1 !important;
    border-color: #ebf8ff !important;
    border-color: rgba(235, 248, 255, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-blue-200:focus {
    --border-opacity: 1 !important;
    border-color: #bee3f8 !important;
    border-color: rgba(190, 227, 248, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-blue-300:focus {
    --border-opacity: 1 !important;
    border-color: #90cdf4 !important;
    border-color: rgba(144, 205, 244, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-blue-400:focus {
    --border-opacity: 1 !important;
    border-color: #63b3ed !important;
    border-color: rgba(99, 179, 237, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-blue-500:focus {
    --border-opacity: 1 !important;
    border-color: #4299e1 !important;
    border-color: rgba(66, 153, 225, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-blue-600:focus {
    --border-opacity: 1 !important;
    border-color: #3182ce !important;
    border-color: rgba(49, 130, 206, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-blue-700:focus {
    --border-opacity: 1 !important;
    border-color: #2b6cb0 !important;
    border-color: rgba(43, 108, 176, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-blue-800:focus {
    --border-opacity: 1 !important;
    border-color: #2c5282 !important;
    border-color: rgba(44, 82, 130, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-blue-900:focus {
    --border-opacity: 1 !important;
    border-color: #2a4365 !important;
    border-color: rgba(42, 67, 101, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-indigo-100:focus {
    --border-opacity: 1 !important;
    border-color: #ebf4ff !important;
    border-color: rgba(235, 244, 255, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-indigo-200:focus {
    --border-opacity: 1 !important;
    border-color: #c3dafe !important;
    border-color: rgba(195, 218, 254, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-indigo-300:focus {
    --border-opacity: 1 !important;
    border-color: #a3bffa !important;
    border-color: rgba(163, 191, 250, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-indigo-400:focus {
    --border-opacity: 1 !important;
    border-color: #7f9cf5 !important;
    border-color: rgba(127, 156, 245, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-indigo-500:focus {
    --border-opacity: 1 !important;
    border-color: #667eea !important;
    border-color: rgba(102, 126, 234, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-indigo-600:focus {
    --border-opacity: 1 !important;
    border-color: #5a67d8 !important;
    border-color: rgba(90, 103, 216, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-indigo-700:focus {
    --border-opacity: 1 !important;
    border-color: #4c51bf !important;
    border-color: rgba(76, 81, 191, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-indigo-800:focus {
    --border-opacity: 1 !important;
    border-color: #434190 !important;
    border-color: rgba(67, 65, 144, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-indigo-900:focus {
    --border-opacity: 1 !important;
    border-color: #3c366b !important;
    border-color: rgba(60, 54, 107, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-purple-100:focus {
    --border-opacity: 1 !important;
    border-color: #faf5ff !important;
    border-color: rgba(250, 245, 255, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-purple-200:focus {
    --border-opacity: 1 !important;
    border-color: #e9d8fd !important;
    border-color: rgba(233, 216, 253, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-purple-300:focus {
    --border-opacity: 1 !important;
    border-color: #d6bcfa !important;
    border-color: rgba(214, 188, 250, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-purple-400:focus {
    --border-opacity: 1 !important;
    border-color: #b794f4 !important;
    border-color: rgba(183, 148, 244, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-purple-500:focus {
    --border-opacity: 1 !important;
    border-color: #9f7aea !important;
    border-color: rgba(159, 122, 234, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-purple-600:focus {
    --border-opacity: 1 !important;
    border-color: #805ad5 !important;
    border-color: rgba(128, 90, 213, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-purple-700:focus {
    --border-opacity: 1 !important;
    border-color: #6b46c1 !important;
    border-color: rgba(107, 70, 193, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-purple-800:focus {
    --border-opacity: 1 !important;
    border-color: #553c9a !important;
    border-color: rgba(85, 60, 154, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-purple-900:focus {
    --border-opacity: 1 !important;
    border-color: #44337a !important;
    border-color: rgba(68, 51, 122, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-pink-100:focus {
    --border-opacity: 1 !important;
    border-color: #fff5f7 !important;
    border-color: rgba(255, 245, 247, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-pink-200:focus {
    --border-opacity: 1 !important;
    border-color: #fed7e2 !important;
    border-color: rgba(254, 215, 226, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-pink-300:focus {
    --border-opacity: 1 !important;
    border-color: #fbb6ce !important;
    border-color: rgba(251, 182, 206, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-pink-400:focus {
    --border-opacity: 1 !important;
    border-color: #f687b3 !important;
    border-color: rgba(246, 135, 179, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-pink-500:focus {
    --border-opacity: 1 !important;
    border-color: #ed64a6 !important;
    border-color: rgba(237, 100, 166, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-pink-600:focus {
    --border-opacity: 1 !important;
    border-color: #d53f8c !important;
    border-color: rgba(213, 63, 140, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-pink-700:focus {
    --border-opacity: 1 !important;
    border-color: #b83280 !important;
    border-color: rgba(184, 50, 128, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-pink-800:focus {
    --border-opacity: 1 !important;
    border-color: #97266d !important;
    border-color: rgba(151, 38, 109, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-pink-900:focus {
    --border-opacity: 1 !important;
    border-color: #702459 !important;
    border-color: rgba(112, 36, 89, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-ui-gray-100:focus {
    --border-opacity: 1 !important;
    border-color: #f1f1f1 !important;
    border-color: rgba(241, 241, 241, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-ui-brown-100:focus {
    --border-opacity: 1 !important;
    border-color: #f3ecdc !important;
    border-color: rgba(243, 236, 220, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-ui-brown-200:focus {
    --border-opacity: 1 !important;
    border-color: #e8e0c9 !important;
    border-color: rgba(232, 224, 201, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-ui-brown-300:focus {
    --border-opacity: 1 !important;
    border-color: #d0c095 !important;
    border-color: rgba(208, 192, 149, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-ui-brown-700:focus {
    --border-opacity: 1 !important;
    border-color: #bd6005 !important;
    border-color: rgba(189, 96, 5, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-ui-green-300:focus {
    --border-opacity: 1 !important;
    border-color: #aac74c !important;
    border-color: rgba(170, 199, 76, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-ui-green-400:focus {
    --border-opacity: 1 !important;
    border-color: #71893e !important;
    border-color: rgba(113, 137, 62, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-ui-orange-500:focus {
    --border-opacity: 1 !important;
    border-color: #e27212 !important;
    border-color: rgba(226, 114, 18, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-facebook:focus {
    --border-opacity: 1 !important;
    border-color: #3b5998 !important;
    border-color: rgba(59, 89, 152, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-twitter:focus {
    --border-opacity: 1 !important;
    border-color: #00acee !important;
    border-color: rgba(0, 172, 238, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-twitch:focus {
    --border-opacity: 1 !important;
    border-color: #6441a5 !important;
    border-color: rgba(100, 65, 165, var(--border-opacity)) !important;
  }

  .xl\:focus\:cl-border-youtube:focus {
    --border-opacity: 1 !important;
    border-color: #FF0000 !important;
    border-color: rgba(255, 0, 0, var(--border-opacity)) !important;
  }

  .xl\:cl-border-opacity-0 {
    --border-opacity: 0 !important;
  }

  .xl\:cl-border-opacity-25 {
    --border-opacity: 0.25 !important;
  }

  .xl\:cl-border-opacity-50 {
    --border-opacity: 0.5 !important;
  }

  .xl\:cl-border-opacity-75 {
    --border-opacity: 0.75 !important;
  }

  .xl\:cl-border-opacity-100 {
    --border-opacity: 1 !important;
  }

  .xl\:hover\:cl-border-opacity-0:hover {
    --border-opacity: 0 !important;
  }

  .xl\:hover\:cl-border-opacity-25:hover {
    --border-opacity: 0.25 !important;
  }

  .xl\:hover\:cl-border-opacity-50:hover {
    --border-opacity: 0.5 !important;
  }

  .xl\:hover\:cl-border-opacity-75:hover {
    --border-opacity: 0.75 !important;
  }

  .xl\:hover\:cl-border-opacity-100:hover {
    --border-opacity: 1 !important;
  }

  .xl\:focus\:cl-border-opacity-0:focus {
    --border-opacity: 0 !important;
  }

  .xl\:focus\:cl-border-opacity-25:focus {
    --border-opacity: 0.25 !important;
  }

  .xl\:focus\:cl-border-opacity-50:focus {
    --border-opacity: 0.5 !important;
  }

  .xl\:focus\:cl-border-opacity-75:focus {
    --border-opacity: 0.75 !important;
  }

  .xl\:focus\:cl-border-opacity-100:focus {
    --border-opacity: 1 !important;
  }

  .xl\:cl-rounded-none {
    border-radius: 0 !important;
  }

  .xl\:cl-rounded-sm {
    border-radius: 0.125rem !important;
  }

  .xl\:cl-rounded {
    border-radius: 0.25rem !important;
  }

  .xl\:cl-rounded-md {
    border-radius: 0.375rem !important;
  }

  .xl\:cl-rounded-lg {
    border-radius: 0.5rem !important;
  }

  .xl\:cl-rounded-xl {
    border-radius: 0.75rem !important;
  }

  .xl\:cl-rounded-2xl {
    border-radius: 1rem !important;
  }

  .xl\:cl-rounded-3xl {
    border-radius: 1.5rem !important;
  }

  .xl\:cl-rounded-full {
    border-radius: 9999px !important;
  }

  .xl\:cl-rounded-t-none {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .xl\:cl-rounded-r-none {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .xl\:cl-rounded-b-none {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .xl\:cl-rounded-l-none {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .xl\:cl-rounded-t-sm {
    border-top-left-radius: 0.125rem !important;
    border-top-right-radius: 0.125rem !important;
  }

  .xl\:cl-rounded-r-sm {
    border-top-right-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }

  .xl\:cl-rounded-b-sm {
    border-bottom-right-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .xl\:cl-rounded-l-sm {
    border-top-left-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .xl\:cl-rounded-t {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
  }

  .xl\:cl-rounded-r {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }

  .xl\:cl-rounded-b {
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .xl\:cl-rounded-l {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .xl\:cl-rounded-t-md {
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
  }

  .xl\:cl-rounded-r-md {
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }

  .xl\:cl-rounded-b-md {
    border-bottom-right-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .xl\:cl-rounded-l-md {
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .xl\:cl-rounded-t-lg {
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
  }

  .xl\:cl-rounded-r-lg {
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }

  .xl\:cl-rounded-b-lg {
    border-bottom-right-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .xl\:cl-rounded-l-lg {
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }

  .xl\:cl-rounded-t-xl {
    border-top-left-radius: 0.75rem !important;
    border-top-right-radius: 0.75rem !important;
  }

  .xl\:cl-rounded-r-xl {
    border-top-right-radius: 0.75rem !important;
    border-bottom-right-radius: 0.75rem !important;
  }

  .xl\:cl-rounded-b-xl {
    border-bottom-right-radius: 0.75rem !important;
    border-bottom-left-radius: 0.75rem !important;
  }

  .xl\:cl-rounded-l-xl {
    border-top-left-radius: 0.75rem !important;
    border-bottom-left-radius: 0.75rem !important;
  }

  .xl\:cl-rounded-t-2xl {
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
  }

  .xl\:cl-rounded-r-2xl {
    border-top-right-radius: 1rem !important;
    border-bottom-right-radius: 1rem !important;
  }

  .xl\:cl-rounded-b-2xl {
    border-bottom-right-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
  }

  .xl\:cl-rounded-l-2xl {
    border-top-left-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
  }

  .xl\:cl-rounded-t-3xl {
    border-top-left-radius: 1.5rem !important;
    border-top-right-radius: 1.5rem !important;
  }

  .xl\:cl-rounded-r-3xl {
    border-top-right-radius: 1.5rem !important;
    border-bottom-right-radius: 1.5rem !important;
  }

  .xl\:cl-rounded-b-3xl {
    border-bottom-right-radius: 1.5rem !important;
    border-bottom-left-radius: 1.5rem !important;
  }

  .xl\:cl-rounded-l-3xl {
    border-top-left-radius: 1.5rem !important;
    border-bottom-left-radius: 1.5rem !important;
  }

  .xl\:cl-rounded-t-full {
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .xl\:cl-rounded-r-full {
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .xl\:cl-rounded-b-full {
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .xl\:cl-rounded-l-full {
    border-top-left-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .xl\:cl-rounded-tl-none {
    border-top-left-radius: 0 !important;
  }

  .xl\:cl-rounded-tr-none {
    border-top-right-radius: 0 !important;
  }

  .xl\:cl-rounded-br-none {
    border-bottom-right-radius: 0 !important;
  }

  .xl\:cl-rounded-bl-none {
    border-bottom-left-radius: 0 !important;
  }

  .xl\:cl-rounded-tl-sm {
    border-top-left-radius: 0.125rem !important;
  }

  .xl\:cl-rounded-tr-sm {
    border-top-right-radius: 0.125rem !important;
  }

  .xl\:cl-rounded-br-sm {
    border-bottom-right-radius: 0.125rem !important;
  }

  .xl\:cl-rounded-bl-sm {
    border-bottom-left-radius: 0.125rem !important;
  }

  .xl\:cl-rounded-tl {
    border-top-left-radius: 0.25rem !important;
  }

  .xl\:cl-rounded-tr {
    border-top-right-radius: 0.25rem !important;
  }

  .xl\:cl-rounded-br {
    border-bottom-right-radius: 0.25rem !important;
  }

  .xl\:cl-rounded-bl {
    border-bottom-left-radius: 0.25rem !important;
  }

  .xl\:cl-rounded-tl-md {
    border-top-left-radius: 0.375rem !important;
  }

  .xl\:cl-rounded-tr-md {
    border-top-right-radius: 0.375rem !important;
  }

  .xl\:cl-rounded-br-md {
    border-bottom-right-radius: 0.375rem !important;
  }

  .xl\:cl-rounded-bl-md {
    border-bottom-left-radius: 0.375rem !important;
  }

  .xl\:cl-rounded-tl-lg {
    border-top-left-radius: 0.5rem !important;
  }

  .xl\:cl-rounded-tr-lg {
    border-top-right-radius: 0.5rem !important;
  }

  .xl\:cl-rounded-br-lg {
    border-bottom-right-radius: 0.5rem !important;
  }

  .xl\:cl-rounded-bl-lg {
    border-bottom-left-radius: 0.5rem !important;
  }

  .xl\:cl-rounded-tl-xl {
    border-top-left-radius: 0.75rem !important;
  }

  .xl\:cl-rounded-tr-xl {
    border-top-right-radius: 0.75rem !important;
  }

  .xl\:cl-rounded-br-xl {
    border-bottom-right-radius: 0.75rem !important;
  }

  .xl\:cl-rounded-bl-xl {
    border-bottom-left-radius: 0.75rem !important;
  }

  .xl\:cl-rounded-tl-2xl {
    border-top-left-radius: 1rem !important;
  }

  .xl\:cl-rounded-tr-2xl {
    border-top-right-radius: 1rem !important;
  }

  .xl\:cl-rounded-br-2xl {
    border-bottom-right-radius: 1rem !important;
  }

  .xl\:cl-rounded-bl-2xl {
    border-bottom-left-radius: 1rem !important;
  }

  .xl\:cl-rounded-tl-3xl {
    border-top-left-radius: 1.5rem !important;
  }

  .xl\:cl-rounded-tr-3xl {
    border-top-right-radius: 1.5rem !important;
  }

  .xl\:cl-rounded-br-3xl {
    border-bottom-right-radius: 1.5rem !important;
  }

  .xl\:cl-rounded-bl-3xl {
    border-bottom-left-radius: 1.5rem !important;
  }

  .xl\:cl-rounded-tl-full {
    border-top-left-radius: 9999px !important;
  }

  .xl\:cl-rounded-tr-full {
    border-top-right-radius: 9999px !important;
  }

  .xl\:cl-rounded-br-full {
    border-bottom-right-radius: 9999px !important;
  }

  .xl\:cl-rounded-bl-full {
    border-bottom-left-radius: 9999px !important;
  }

  .xl\:cl-border-solid {
    border-style: solid !important;
  }

  .xl\:cl-border-dashed {
    border-style: dashed !important;
  }

  .xl\:cl-border-dotted {
    border-style: dotted !important;
  }

  .xl\:cl-border-double {
    border-style: double !important;
  }

  .xl\:cl-border-none {
    border-style: none !important;
  }

  .xl\:cl-border-0 {
    border-width: 0 !important;
  }

  .xl\:cl-border-2 {
    border-width: 2px !important;
  }

  .xl\:cl-border-4 {
    border-width: 4px !important;
  }

  .xl\:cl-border-8 {
    border-width: 8px !important;
  }

  .xl\:cl-border-15 {
    border-width: 15px !important;
  }

  .xl\:cl-border {
    border-width: 1px !important;
  }

  .xl\:cl-border-t-0 {
    border-top-width: 0 !important;
  }

  .xl\:cl-border-r-0 {
    border-right-width: 0 !important;
  }

  .xl\:cl-border-b-0 {
    border-bottom-width: 0 !important;
  }

  .xl\:cl-border-l-0 {
    border-left-width: 0 !important;
  }

  .xl\:cl-border-t-2 {
    border-top-width: 2px !important;
  }

  .xl\:cl-border-r-2 {
    border-right-width: 2px !important;
  }

  .xl\:cl-border-b-2 {
    border-bottom-width: 2px !important;
  }

  .xl\:cl-border-l-2 {
    border-left-width: 2px !important;
  }

  .xl\:cl-border-t-4 {
    border-top-width: 4px !important;
  }

  .xl\:cl-border-r-4 {
    border-right-width: 4px !important;
  }

  .xl\:cl-border-b-4 {
    border-bottom-width: 4px !important;
  }

  .xl\:cl-border-l-4 {
    border-left-width: 4px !important;
  }

  .xl\:cl-border-t-8 {
    border-top-width: 8px !important;
  }

  .xl\:cl-border-r-8 {
    border-right-width: 8px !important;
  }

  .xl\:cl-border-b-8 {
    border-bottom-width: 8px !important;
  }

  .xl\:cl-border-l-8 {
    border-left-width: 8px !important;
  }

  .xl\:cl-border-t-15 {
    border-top-width: 15px !important;
  }

  .xl\:cl-border-r-15 {
    border-right-width: 15px !important;
  }

  .xl\:cl-border-b-15 {
    border-bottom-width: 15px !important;
  }

  .xl\:cl-border-l-15 {
    border-left-width: 15px !important;
  }

  .xl\:cl-border-t {
    border-top-width: 1px !important;
  }

  .xl\:cl-border-r {
    border-right-width: 1px !important;
  }

  .xl\:cl-border-b {
    border-bottom-width: 1px !important;
  }

  .xl\:cl-border-l {
    border-left-width: 1px !important;
  }

  .xl\:cl-box-border {
    box-sizing: border-box !important;
  }

  .xl\:cl-box-content {
    box-sizing: content-box !important;
  }

  .xl\:cl-cursor-auto {
    cursor: auto !important;
  }

  .xl\:cl-cursor-default {
    cursor: default !important;
  }

  .xl\:cl-cursor-pointer {
    cursor: pointer !important;
  }

  .xl\:cl-cursor-wait {
    cursor: wait !important;
  }

  .xl\:cl-cursor-text {
    cursor: text !important;
  }

  .xl\:cl-cursor-move {
    cursor: move !important;
  }

  .xl\:cl-cursor-not-allowed {
    cursor: not-allowed !important;
  }

  .xl\:cl-block {
    display: block !important;
  }

  .xl\:cl-inline-block {
    display: inline-block !important;
  }

  .xl\:cl-inline {
    display: inline !important;
  }

  .xl\:cl-flex {
    display: flex !important;
  }

  .xl\:cl-inline-flex {
    display: inline-flex !important;
  }

  .xl\:cl-table {
    display: table !important;
  }

  .xl\:cl-table-caption {
    display: table-caption !important;
  }

  .xl\:cl-table-cell {
    display: table-cell !important;
  }

  .xl\:cl-table-column {
    display: table-column !important;
  }

  .xl\:cl-table-column-group {
    display: table-column-group !important;
  }

  .xl\:cl-table-footer-group {
    display: table-footer-group !important;
  }

  .xl\:cl-table-header-group {
    display: table-header-group !important;
  }

  .xl\:cl-table-row-group {
    display: table-row-group !important;
  }

  .xl\:cl-table-row {
    display: table-row !important;
  }

  .xl\:cl-flow-root {
    display: flow-root !important;
  }

  .xl\:cl-grid {
    display: grid !important;
  }

  .xl\:cl-inline-grid {
    display: inline-grid !important;
  }

  .xl\:cl-contents {
    display: contents !important;
  }

  .xl\:cl-hidden {
    display: none !important;
  }

  .xl\:cl-flex-row {
    flex-direction: row !important;
  }

  .xl\:cl-flex-row-reverse {
    flex-direction: row-reverse !important;
  }

  .xl\:cl-flex-col {
    flex-direction: column !important;
  }

  .xl\:cl-flex-col-reverse {
    flex-direction: column-reverse !important;
  }

  .xl\:cl-flex-wrap {
    flex-wrap: wrap !important;
  }

  .xl\:cl-flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .xl\:cl-flex-no-wrap {
    flex-wrap: nowrap !important;
  }

  .xl\:cl-place-items-auto {
    place-items: auto !important;
  }

  .xl\:cl-place-items-start {
    place-items: start !important;
  }

  .xl\:cl-place-items-end {
    place-items: end !important;
  }

  .xl\:cl-place-items-center {
    place-items: center !important;
  }

  .xl\:cl-place-items-stretch {
    place-items: stretch !important;
  }

  .xl\:cl-place-content-center {
    place-content: center !important;
  }

  .xl\:cl-place-content-start {
    place-content: start !important;
  }

  .xl\:cl-place-content-end {
    place-content: end !important;
  }

  .xl\:cl-place-content-between {
    place-content: space-between !important;
  }

  .xl\:cl-place-content-around {
    place-content: space-around !important;
  }

  .xl\:cl-place-content-evenly {
    place-content: space-evenly !important;
  }

  .xl\:cl-place-content-stretch {
    place-content: stretch !important;
  }

  .xl\:cl-place-self-auto {
    place-self: auto !important;
  }

  .xl\:cl-place-self-start {
    place-self: start !important;
  }

  .xl\:cl-place-self-end {
    place-self: end !important;
  }

  .xl\:cl-place-self-center {
    place-self: center !important;
  }

  .xl\:cl-place-self-stretch {
    place-self: stretch !important;
  }

  .xl\:cl-items-start {
    align-items: flex-start !important;
  }

  .xl\:cl-items-end {
    align-items: flex-end !important;
  }

  .xl\:cl-items-center {
    align-items: center !important;
  }

  .xl\:cl-items-baseline {
    align-items: baseline !important;
  }

  .xl\:cl-items-stretch {
    align-items: stretch !important;
  }

  .xl\:cl-content-center {
    align-content: center !important;
  }

  .xl\:cl-content-start {
    align-content: flex-start !important;
  }

  .xl\:cl-content-end {
    align-content: flex-end !important;
  }

  .xl\:cl-content-between {
    align-content: space-between !important;
  }

  .xl\:cl-content-around {
    align-content: space-around !important;
  }

  .xl\:cl-content-evenly {
    align-content: space-evenly !important;
  }

  .xl\:cl-self-auto {
    align-self: auto !important;
  }

  .xl\:cl-self-start {
    align-self: flex-start !important;
  }

  .xl\:cl-self-end {
    align-self: flex-end !important;
  }

  .xl\:cl-self-center {
    align-self: center !important;
  }

  .xl\:cl-self-stretch {
    align-self: stretch !important;
  }

  .xl\:cl-justify-items-auto {
    justify-items: auto !important;
  }

  .xl\:cl-justify-items-start {
    justify-items: start !important;
  }

  .xl\:cl-justify-items-end {
    justify-items: end !important;
  }

  .xl\:cl-justify-items-center {
    justify-items: center !important;
  }

  .xl\:cl-justify-items-stretch {
    justify-items: stretch !important;
  }

  .xl\:cl-justify-start {
    justify-content: flex-start !important;
  }

  .xl\:cl-justify-end {
    justify-content: flex-end !important;
  }

  .xl\:cl-justify-center {
    justify-content: center !important;
  }

  .xl\:cl-justify-between {
    justify-content: space-between !important;
  }

  .xl\:cl-justify-around {
    justify-content: space-around !important;
  }

  .xl\:cl-justify-evenly {
    justify-content: space-evenly !important;
  }

  .xl\:cl-justify-self-auto {
    justify-self: auto !important;
  }

  .xl\:cl-justify-self-start {
    justify-self: start !important;
  }

  .xl\:cl-justify-self-end {
    justify-self: end !important;
  }

  .xl\:cl-justify-self-center {
    justify-self: center !important;
  }

  .xl\:cl-justify-self-stretch {
    justify-self: stretch !important;
  }

  .xl\:cl-flex-1 {
    flex: 1 1 0% !important;
  }

  .xl\:cl-flex-auto {
    flex: 1 1 auto !important;
  }

  .xl\:cl-flex-initial {
    flex: 0 1 auto !important;
  }

  .xl\:cl-flex-none {
    flex: none !important;
  }

  .xl\:cl-flex-grow-0 {
    flex-grow: 0 !important;
  }

  .xl\:cl-flex-grow {
    flex-grow: 1 !important;
  }

  .xl\:cl-flex-shrink-0 {
    flex-shrink: 0 !important;
  }

  .xl\:cl-flex-shrink {
    flex-shrink: 1 !important;
  }

  .xl\:cl-order-1 {
    order: 1 !important;
  }

  .xl\:cl-order-2 {
    order: 2 !important;
  }

  .xl\:cl-order-3 {
    order: 3 !important;
  }

  .xl\:cl-order-4 {
    order: 4 !important;
  }

  .xl\:cl-order-5 {
    order: 5 !important;
  }

  .xl\:cl-order-6 {
    order: 6 !important;
  }

  .xl\:cl-order-7 {
    order: 7 !important;
  }

  .xl\:cl-order-8 {
    order: 8 !important;
  }

  .xl\:cl-order-9 {
    order: 9 !important;
  }

  .xl\:cl-order-10 {
    order: 10 !important;
  }

  .xl\:cl-order-11 {
    order: 11 !important;
  }

  .xl\:cl-order-12 {
    order: 12 !important;
  }

  .xl\:cl-order-first {
    order: -9999 !important;
  }

  .xl\:cl-order-last {
    order: 9999 !important;
  }

  .xl\:cl-order-none {
    order: 0 !important;
  }

  .xl\:cl-float-right {
    float: right !important;
  }

  .xl\:cl-float-left {
    float: left !important;
  }

  .xl\:cl-float-none {
    float: none !important;
  }

  .xl\:cl-clearfix:after {
    content: "" !important;
    display: table !important;
    clear: both !important;
  }

  .xl\:cl-clear-left {
    clear: left !important;
  }

  .xl\:cl-clear-right {
    clear: right !important;
  }

  .xl\:cl-clear-both {
    clear: both !important;
  }

  .xl\:cl-clear-none {
    clear: none !important;
  }

  .xl\:cl-font-sans {
    font-family: Lato, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  }

  .xl\:cl-font-serif {
    font-family: Georgia, Cambria, "Times New Roman", Times, serif !important;
  }

  .xl\:cl-font-mono {
    font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
  }

  .xl\:cl-font-heading {
    font-family: Corben, cursive, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  }

  .xl\:cl-font-hairline {
    font-weight: 100 !important;
  }

  .xl\:cl-font-thin {
    font-weight: 200 !important;
  }

  .xl\:cl-font-light {
    font-weight: 300 !important;
  }

  .xl\:cl-font-normal {
    font-weight: 400 !important;
  }

  .xl\:cl-font-medium {
    font-weight: 500 !important;
  }

  .xl\:cl-font-semibold {
    font-weight: 600 !important;
  }

  .xl\:cl-font-bold {
    font-weight: 700 !important;
  }

  .xl\:cl-font-extrabold {
    font-weight: 800 !important;
  }

  .xl\:cl-font-black {
    font-weight: 900 !important;
  }

  .xl\:hover\:cl-font-hairline:hover {
    font-weight: 100 !important;
  }

  .xl\:hover\:cl-font-thin:hover {
    font-weight: 200 !important;
  }

  .xl\:hover\:cl-font-light:hover {
    font-weight: 300 !important;
  }

  .xl\:hover\:cl-font-normal:hover {
    font-weight: 400 !important;
  }

  .xl\:hover\:cl-font-medium:hover {
    font-weight: 500 !important;
  }

  .xl\:hover\:cl-font-semibold:hover {
    font-weight: 600 !important;
  }

  .xl\:hover\:cl-font-bold:hover {
    font-weight: 700 !important;
  }

  .xl\:hover\:cl-font-extrabold:hover {
    font-weight: 800 !important;
  }

  .xl\:hover\:cl-font-black:hover {
    font-weight: 900 !important;
  }

  .xl\:focus\:cl-font-hairline:focus {
    font-weight: 100 !important;
  }

  .xl\:focus\:cl-font-thin:focus {
    font-weight: 200 !important;
  }

  .xl\:focus\:cl-font-light:focus {
    font-weight: 300 !important;
  }

  .xl\:focus\:cl-font-normal:focus {
    font-weight: 400 !important;
  }

  .xl\:focus\:cl-font-medium:focus {
    font-weight: 500 !important;
  }

  .xl\:focus\:cl-font-semibold:focus {
    font-weight: 600 !important;
  }

  .xl\:focus\:cl-font-bold:focus {
    font-weight: 700 !important;
  }

  .xl\:focus\:cl-font-extrabold:focus {
    font-weight: 800 !important;
  }

  .xl\:focus\:cl-font-black:focus {
    font-weight: 900 !important;
  }

  .xl\:cl-h-0 {
    height: 0 !important;
  }

  .xl\:cl-h-1 {
    height: 4px !important;
  }

  .xl\:cl-h-2 {
    height: 8px !important;
  }

  .xl\:cl-h-3 {
    height: 12px !important;
  }

  .xl\:cl-h-4 {
    height: 16px !important;
  }

  .xl\:cl-h-5 {
    height: 20px !important;
  }

  .xl\:cl-h-6 {
    height: 24px !important;
  }

  .xl\:cl-h-8 {
    height: 32px !important;
  }

  .xl\:cl-h-10 {
    height: 40px !important;
  }

  .xl\:cl-h-12 {
    height: 48px !important;
  }

  .xl\:cl-h-16 {
    height: 64px !important;
  }

  .xl\:cl-h-20 {
    height: 80px !important;
  }

  .xl\:cl-h-24 {
    height: 96px !important;
  }

  .xl\:cl-h-26 {
    height: 100px !important;
  }

  .xl\:cl-h-28 {
    height: 110px !important;
  }

  .xl\:cl-h-32 {
    height: 128px !important;
  }

  .xl\:cl-h-40 {
    height: 160px !important;
  }

  .xl\:cl-h-48 {
    height: 192px !important;
  }

  .xl\:cl-h-56 {
    height: 224px !important;
  }

  .xl\:cl-h-64 {
    height: 256px !important;
  }

  .xl\:cl-h-auto {
    height: auto !important;
  }

  .xl\:cl-h-px {
    height: 1px !important;
  }

  .xl\:cl-h-full {
    height: 100% !important;
  }

  .xl\:cl-h-screen {
    height: 100vh !important;
  }

  .xl\:cl-h-1\/2 {
    height: 50% !important;
  }

  .xl\:cl-h-1\/3 {
    height: 33.333333% !important;
  }

  .xl\:cl-h-2\/3 {
    height: 66.666667% !important;
  }

  .xl\:cl-h-1\/4 {
    height: 25% !important;
  }

  .xl\:cl-h-2\/4 {
    height: 50% !important;
  }

  .xl\:cl-h-3\/4 {
    height: 75% !important;
  }

  .xl\:cl-h-1\/5 {
    height: 20% !important;
  }

  .xl\:cl-h-2\/5 {
    height: 40% !important;
  }

  .xl\:cl-h-3\/5 {
    height: 60% !important;
  }

  .xl\:cl-h-4\/5 {
    height: 80% !important;
  }

  .xl\:cl-h-1\/6 {
    height: 16.666667% !important;
  }

  .xl\:cl-h-2\/6 {
    height: 33.333333% !important;
  }

  .xl\:cl-h-3\/6 {
    height: 50% !important;
  }

  .xl\:cl-h-4\/6 {
    height: 66.666667% !important;
  }

  .xl\:cl-h-5\/6 {
    height: 83.333333% !important;
  }

  .xl\:cl-h-1\/12 {
    height: 8.333333% !important;
  }

  .xl\:cl-h-2\/12 {
    height: 16.666667% !important;
  }

  .xl\:cl-h-3\/12 {
    height: 25% !important;
  }

  .xl\:cl-h-4\/12 {
    height: 33.333333% !important;
  }

  .xl\:cl-h-5\/12 {
    height: 41.666667% !important;
  }

  .xl\:cl-h-6\/12 {
    height: 50% !important;
  }

  .xl\:cl-h-7\/12 {
    height: 58.333333% !important;
  }

  .xl\:cl-h-8\/12 {
    height: 66.666667% !important;
  }

  .xl\:cl-h-9\/12 {
    height: 75% !important;
  }

  .xl\:cl-h-10\/12 {
    height: 83.333333% !important;
  }

  .xl\:cl-h-11\/12 {
    height: 91.666667% !important;
  }

  .xl\:cl-text-xxs {
    font-size: 10px !important;
  }

  .xl\:cl-text-xs {
    font-size: 12px !important;
  }

  .xl\:cl-text-sm {
    font-size: 14px !important;
  }

  .xl\:cl-text-base {
    font-size: 16px !important;
  }

  .xl\:cl-text-lg {
    font-size: 18px !important;
  }

  .xl\:cl-text-xl {
    font-size: 20px !important;
  }

  .xl\:cl-text-2xl {
    font-size: 24px !important;
  }

  .xl\:cl-text-3xl {
    font-size: 30px !important;
  }

  .xl\:cl-text-4xl {
    font-size: 36px !important;
  }

  .xl\:cl-text-5xl {
    font-size: 48px !important;
  }

  .xl\:cl-text-6xl {
    font-size: 64px !important;
  }

  .xl\:cl-leading-3 {
    line-height: .75rem !important;
  }

  .xl\:cl-leading-4 {
    line-height: 1rem !important;
  }

  .xl\:cl-leading-5 {
    line-height: 1.25rem !important;
  }

  .xl\:cl-leading-6 {
    line-height: 1.5rem !important;
  }

  .xl\:cl-leading-7 {
    line-height: 1.75rem !important;
  }

  .xl\:cl-leading-8 {
    line-height: 2rem !important;
  }

  .xl\:cl-leading-9 {
    line-height: 2.25rem !important;
  }

  .xl\:cl-leading-10 {
    line-height: 2.5rem !important;
  }

  .xl\:cl-leading-none {
    line-height: 1 !important;
  }

  .xl\:cl-leading-tight {
    line-height: 1.25 !important;
  }

  .xl\:cl-leading-snug {
    line-height: 1.375 !important;
  }

  .xl\:cl-leading-normal {
    line-height: 1.5 !important;
  }

  .xl\:cl-leading-relaxed {
    line-height: 1.625 !important;
  }

  .xl\:cl-leading-loose {
    line-height: 2 !important;
  }

  .xl\:cl-list-inside {
    list-style-position: inside !important;
  }

  .xl\:cl-list-outside {
    list-style-position: outside !important;
  }

  .xl\:cl-list-none {
    list-style-type: none !important;
  }

  .xl\:cl-list-disc {
    list-style-type: disc !important;
  }

  .xl\:cl-list-decimal {
    list-style-type: decimal !important;
  }

  .xl\:cl-m-0 {
    margin: 0 !important;
  }

  .xl\:cl-m-1 {
    margin: 4px !important;
  }

  .xl\:cl-m-2 {
    margin: 8px !important;
  }

  .xl\:cl-m-3 {
    margin: 12px !important;
  }

  .xl\:cl-m-4 {
    margin: 16px !important;
  }

  .xl\:cl-m-5 {
    margin: 20px !important;
  }

  .xl\:cl-m-6 {
    margin: 24px !important;
  }

  .xl\:cl-m-8 {
    margin: 32px !important;
  }

  .xl\:cl-m-10 {
    margin: 40px !important;
  }

  .xl\:cl-m-12 {
    margin: 48px !important;
  }

  .xl\:cl-m-16 {
    margin: 64px !important;
  }

  .xl\:cl-m-20 {
    margin: 80px !important;
  }

  .xl\:cl-m-24 {
    margin: 96px !important;
  }

  .xl\:cl-m-26 {
    margin: 100px !important;
  }

  .xl\:cl-m-28 {
    margin: 110px !important;
  }

  .xl\:cl-m-32 {
    margin: 128px !important;
  }

  .xl\:cl-m-40 {
    margin: 160px !important;
  }

  .xl\:cl-m-48 {
    margin: 192px !important;
  }

  .xl\:cl-m-56 {
    margin: 224px !important;
  }

  .xl\:cl-m-64 {
    margin: 256px !important;
  }

  .xl\:cl-m-auto {
    margin: auto !important;
  }

  .xl\:cl-m-px {
    margin: 1px !important;
  }

  .xl\:cl--m-1 {
    margin: -4px !important;
  }

  .xl\:cl--m-2 {
    margin: -8px !important;
  }

  .xl\:cl--m-3 {
    margin: -12px !important;
  }

  .xl\:cl--m-4 {
    margin: -16px !important;
  }

  .xl\:cl--m-5 {
    margin: -20px !important;
  }

  .xl\:cl--m-6 {
    margin: -24px !important;
  }

  .xl\:cl--m-8 {
    margin: -32px !important;
  }

  .xl\:cl--m-10 {
    margin: -40px !important;
  }

  .xl\:cl--m-12 {
    margin: -48px !important;
  }

  .xl\:cl--m-16 {
    margin: -64px !important;
  }

  .xl\:cl--m-20 {
    margin: -80px !important;
  }

  .xl\:cl--m-24 {
    margin: -96px !important;
  }

  .xl\:cl--m-26 {
    margin: -100px !important;
  }

  .xl\:cl--m-28 {
    margin: -110px !important;
  }

  .xl\:cl--m-32 {
    margin: -128px !important;
  }

  .xl\:cl--m-40 {
    margin: -160px !important;
  }

  .xl\:cl--m-48 {
    margin: -192px !important;
  }

  .xl\:cl--m-56 {
    margin: -224px !important;
  }

  .xl\:cl--m-64 {
    margin: -256px !important;
  }

  .xl\:cl--m-px {
    margin: -1px !important;
  }

  .xl\:cl-my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .xl\:cl-mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .xl\:cl-my-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  .xl\:cl-mx-1 {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }

  .xl\:cl-my-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  .xl\:cl-mx-2 {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }

  .xl\:cl-my-3 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }

  .xl\:cl-mx-3 {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }

  .xl\:cl-my-4 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }

  .xl\:cl-mx-4 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }

  .xl\:cl-my-5 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .xl\:cl-mx-5 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }

  .xl\:cl-my-6 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }

  .xl\:cl-mx-6 {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }

  .xl\:cl-my-8 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }

  .xl\:cl-mx-8 {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }

  .xl\:cl-my-10 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  .xl\:cl-mx-10 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }

  .xl\:cl-my-12 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }

  .xl\:cl-mx-12 {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }

  .xl\:cl-my-16 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }

  .xl\:cl-mx-16 {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }

  .xl\:cl-my-20 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }

  .xl\:cl-mx-20 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }

  .xl\:cl-my-24 {
    margin-top: 96px !important;
    margin-bottom: 96px !important;
  }

  .xl\:cl-mx-24 {
    margin-left: 96px !important;
    margin-right: 96px !important;
  }

  .xl\:cl-my-26 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }

  .xl\:cl-mx-26 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }

  .xl\:cl-my-28 {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
  }

  .xl\:cl-mx-28 {
    margin-left: 110px !important;
    margin-right: 110px !important;
  }

  .xl\:cl-my-32 {
    margin-top: 128px !important;
    margin-bottom: 128px !important;
  }

  .xl\:cl-mx-32 {
    margin-left: 128px !important;
    margin-right: 128px !important;
  }

  .xl\:cl-my-40 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }

  .xl\:cl-mx-40 {
    margin-left: 160px !important;
    margin-right: 160px !important;
  }

  .xl\:cl-my-48 {
    margin-top: 192px !important;
    margin-bottom: 192px !important;
  }

  .xl\:cl-mx-48 {
    margin-left: 192px !important;
    margin-right: 192px !important;
  }

  .xl\:cl-my-56 {
    margin-top: 224px !important;
    margin-bottom: 224px !important;
  }

  .xl\:cl-mx-56 {
    margin-left: 224px !important;
    margin-right: 224px !important;
  }

  .xl\:cl-my-64 {
    margin-top: 256px !important;
    margin-bottom: 256px !important;
  }

  .xl\:cl-mx-64 {
    margin-left: 256px !important;
    margin-right: 256px !important;
  }

  .xl\:cl-my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .xl\:cl-mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .xl\:cl-my-px {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .xl\:cl-mx-px {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .xl\:cl--my-1 {
    margin-top: -4px !important;
    margin-bottom: -4px !important;
  }

  .xl\:cl--mx-1 {
    margin-left: -4px !important;
    margin-right: -4px !important;
  }

  .xl\:cl--my-2 {
    margin-top: -8px !important;
    margin-bottom: -8px !important;
  }

  .xl\:cl--mx-2 {
    margin-left: -8px !important;
    margin-right: -8px !important;
  }

  .xl\:cl--my-3 {
    margin-top: -12px !important;
    margin-bottom: -12px !important;
  }

  .xl\:cl--mx-3 {
    margin-left: -12px !important;
    margin-right: -12px !important;
  }

  .xl\:cl--my-4 {
    margin-top: -16px !important;
    margin-bottom: -16px !important;
  }

  .xl\:cl--mx-4 {
    margin-left: -16px !important;
    margin-right: -16px !important;
  }

  .xl\:cl--my-5 {
    margin-top: -20px !important;
    margin-bottom: -20px !important;
  }

  .xl\:cl--mx-5 {
    margin-left: -20px !important;
    margin-right: -20px !important;
  }

  .xl\:cl--my-6 {
    margin-top: -24px !important;
    margin-bottom: -24px !important;
  }

  .xl\:cl--mx-6 {
    margin-left: -24px !important;
    margin-right: -24px !important;
  }

  .xl\:cl--my-8 {
    margin-top: -32px !important;
    margin-bottom: -32px !important;
  }

  .xl\:cl--mx-8 {
    margin-left: -32px !important;
    margin-right: -32px !important;
  }

  .xl\:cl--my-10 {
    margin-top: -40px !important;
    margin-bottom: -40px !important;
  }

  .xl\:cl--mx-10 {
    margin-left: -40px !important;
    margin-right: -40px !important;
  }

  .xl\:cl--my-12 {
    margin-top: -48px !important;
    margin-bottom: -48px !important;
  }

  .xl\:cl--mx-12 {
    margin-left: -48px !important;
    margin-right: -48px !important;
  }

  .xl\:cl--my-16 {
    margin-top: -64px !important;
    margin-bottom: -64px !important;
  }

  .xl\:cl--mx-16 {
    margin-left: -64px !important;
    margin-right: -64px !important;
  }

  .xl\:cl--my-20 {
    margin-top: -80px !important;
    margin-bottom: -80px !important;
  }

  .xl\:cl--mx-20 {
    margin-left: -80px !important;
    margin-right: -80px !important;
  }

  .xl\:cl--my-24 {
    margin-top: -96px !important;
    margin-bottom: -96px !important;
  }

  .xl\:cl--mx-24 {
    margin-left: -96px !important;
    margin-right: -96px !important;
  }

  .xl\:cl--my-26 {
    margin-top: -100px !important;
    margin-bottom: -100px !important;
  }

  .xl\:cl--mx-26 {
    margin-left: -100px !important;
    margin-right: -100px !important;
  }

  .xl\:cl--my-28 {
    margin-top: -110px !important;
    margin-bottom: -110px !important;
  }

  .xl\:cl--mx-28 {
    margin-left: -110px !important;
    margin-right: -110px !important;
  }

  .xl\:cl--my-32 {
    margin-top: -128px !important;
    margin-bottom: -128px !important;
  }

  .xl\:cl--mx-32 {
    margin-left: -128px !important;
    margin-right: -128px !important;
  }

  .xl\:cl--my-40 {
    margin-top: -160px !important;
    margin-bottom: -160px !important;
  }

  .xl\:cl--mx-40 {
    margin-left: -160px !important;
    margin-right: -160px !important;
  }

  .xl\:cl--my-48 {
    margin-top: -192px !important;
    margin-bottom: -192px !important;
  }

  .xl\:cl--mx-48 {
    margin-left: -192px !important;
    margin-right: -192px !important;
  }

  .xl\:cl--my-56 {
    margin-top: -224px !important;
    margin-bottom: -224px !important;
  }

  .xl\:cl--mx-56 {
    margin-left: -224px !important;
    margin-right: -224px !important;
  }

  .xl\:cl--my-64 {
    margin-top: -256px !important;
    margin-bottom: -256px !important;
  }

  .xl\:cl--mx-64 {
    margin-left: -256px !important;
    margin-right: -256px !important;
  }

  .xl\:cl--my-px {
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .xl\:cl--mx-px {
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .xl\:cl-mt-0 {
    margin-top: 0 !important;
  }

  .xl\:cl-mr-0 {
    margin-right: 0 !important;
  }

  .xl\:cl-mb-0 {
    margin-bottom: 0 !important;
  }

  .xl\:cl-ml-0 {
    margin-left: 0 !important;
  }

  .xl\:cl-mt-1 {
    margin-top: 4px !important;
  }

  .xl\:cl-mr-1 {
    margin-right: 4px !important;
  }

  .xl\:cl-mb-1 {
    margin-bottom: 4px !important;
  }

  .xl\:cl-ml-1 {
    margin-left: 4px !important;
  }

  .xl\:cl-mt-2 {
    margin-top: 8px !important;
  }

  .xl\:cl-mr-2 {
    margin-right: 8px !important;
  }

  .xl\:cl-mb-2 {
    margin-bottom: 8px !important;
  }

  .xl\:cl-ml-2 {
    margin-left: 8px !important;
  }

  .xl\:cl-mt-3 {
    margin-top: 12px !important;
  }

  .xl\:cl-mr-3 {
    margin-right: 12px !important;
  }

  .xl\:cl-mb-3 {
    margin-bottom: 12px !important;
  }

  .xl\:cl-ml-3 {
    margin-left: 12px !important;
  }

  .xl\:cl-mt-4 {
    margin-top: 16px !important;
  }

  .xl\:cl-mr-4 {
    margin-right: 16px !important;
  }

  .xl\:cl-mb-4 {
    margin-bottom: 16px !important;
  }

  .xl\:cl-ml-4 {
    margin-left: 16px !important;
  }

  .xl\:cl-mt-5 {
    margin-top: 20px !important;
  }

  .xl\:cl-mr-5 {
    margin-right: 20px !important;
  }

  .xl\:cl-mb-5 {
    margin-bottom: 20px !important;
  }

  .xl\:cl-ml-5 {
    margin-left: 20px !important;
  }

  .xl\:cl-mt-6 {
    margin-top: 24px !important;
  }

  .xl\:cl-mr-6 {
    margin-right: 24px !important;
  }

  .xl\:cl-mb-6 {
    margin-bottom: 24px !important;
  }

  .xl\:cl-ml-6 {
    margin-left: 24px !important;
  }

  .xl\:cl-mt-8 {
    margin-top: 32px !important;
  }

  .xl\:cl-mr-8 {
    margin-right: 32px !important;
  }

  .xl\:cl-mb-8 {
    margin-bottom: 32px !important;
  }

  .xl\:cl-ml-8 {
    margin-left: 32px !important;
  }

  .xl\:cl-mt-10 {
    margin-top: 40px !important;
  }

  .xl\:cl-mr-10 {
    margin-right: 40px !important;
  }

  .xl\:cl-mb-10 {
    margin-bottom: 40px !important;
  }

  .xl\:cl-ml-10 {
    margin-left: 40px !important;
  }

  .xl\:cl-mt-12 {
    margin-top: 48px !important;
  }

  .xl\:cl-mr-12 {
    margin-right: 48px !important;
  }

  .xl\:cl-mb-12 {
    margin-bottom: 48px !important;
  }

  .xl\:cl-ml-12 {
    margin-left: 48px !important;
  }

  .xl\:cl-mt-16 {
    margin-top: 64px !important;
  }

  .xl\:cl-mr-16 {
    margin-right: 64px !important;
  }

  .xl\:cl-mb-16 {
    margin-bottom: 64px !important;
  }

  .xl\:cl-ml-16 {
    margin-left: 64px !important;
  }

  .xl\:cl-mt-20 {
    margin-top: 80px !important;
  }

  .xl\:cl-mr-20 {
    margin-right: 80px !important;
  }

  .xl\:cl-mb-20 {
    margin-bottom: 80px !important;
  }

  .xl\:cl-ml-20 {
    margin-left: 80px !important;
  }

  .xl\:cl-mt-24 {
    margin-top: 96px !important;
  }

  .xl\:cl-mr-24 {
    margin-right: 96px !important;
  }

  .xl\:cl-mb-24 {
    margin-bottom: 96px !important;
  }

  .xl\:cl-ml-24 {
    margin-left: 96px !important;
  }

  .xl\:cl-mt-26 {
    margin-top: 100px !important;
  }

  .xl\:cl-mr-26 {
    margin-right: 100px !important;
  }

  .xl\:cl-mb-26 {
    margin-bottom: 100px !important;
  }

  .xl\:cl-ml-26 {
    margin-left: 100px !important;
  }

  .xl\:cl-mt-28 {
    margin-top: 110px !important;
  }

  .xl\:cl-mr-28 {
    margin-right: 110px !important;
  }

  .xl\:cl-mb-28 {
    margin-bottom: 110px !important;
  }

  .xl\:cl-ml-28 {
    margin-left: 110px !important;
  }

  .xl\:cl-mt-32 {
    margin-top: 128px !important;
  }

  .xl\:cl-mr-32 {
    margin-right: 128px !important;
  }

  .xl\:cl-mb-32 {
    margin-bottom: 128px !important;
  }

  .xl\:cl-ml-32 {
    margin-left: 128px !important;
  }

  .xl\:cl-mt-40 {
    margin-top: 160px !important;
  }

  .xl\:cl-mr-40 {
    margin-right: 160px !important;
  }

  .xl\:cl-mb-40 {
    margin-bottom: 160px !important;
  }

  .xl\:cl-ml-40 {
    margin-left: 160px !important;
  }

  .xl\:cl-mt-48 {
    margin-top: 192px !important;
  }

  .xl\:cl-mr-48 {
    margin-right: 192px !important;
  }

  .xl\:cl-mb-48 {
    margin-bottom: 192px !important;
  }

  .xl\:cl-ml-48 {
    margin-left: 192px !important;
  }

  .xl\:cl-mt-56 {
    margin-top: 224px !important;
  }

  .xl\:cl-mr-56 {
    margin-right: 224px !important;
  }

  .xl\:cl-mb-56 {
    margin-bottom: 224px !important;
  }

  .xl\:cl-ml-56 {
    margin-left: 224px !important;
  }

  .xl\:cl-mt-64 {
    margin-top: 256px !important;
  }

  .xl\:cl-mr-64 {
    margin-right: 256px !important;
  }

  .xl\:cl-mb-64 {
    margin-bottom: 256px !important;
  }

  .xl\:cl-ml-64 {
    margin-left: 256px !important;
  }

  .xl\:cl-mt-auto {
    margin-top: auto !important;
  }

  .xl\:cl-mr-auto {
    margin-right: auto !important;
  }

  .xl\:cl-mb-auto {
    margin-bottom: auto !important;
  }

  .xl\:cl-ml-auto {
    margin-left: auto !important;
  }

  .xl\:cl-mt-px {
    margin-top: 1px !important;
  }

  .xl\:cl-mr-px {
    margin-right: 1px !important;
  }

  .xl\:cl-mb-px {
    margin-bottom: 1px !important;
  }

  .xl\:cl-ml-px {
    margin-left: 1px !important;
  }

  .xl\:cl--mt-1 {
    margin-top: -4px !important;
  }

  .xl\:cl--mr-1 {
    margin-right: -4px !important;
  }

  .xl\:cl--mb-1 {
    margin-bottom: -4px !important;
  }

  .xl\:cl--ml-1 {
    margin-left: -4px !important;
  }

  .xl\:cl--mt-2 {
    margin-top: -8px !important;
  }

  .xl\:cl--mr-2 {
    margin-right: -8px !important;
  }

  .xl\:cl--mb-2 {
    margin-bottom: -8px !important;
  }

  .xl\:cl--ml-2 {
    margin-left: -8px !important;
  }

  .xl\:cl--mt-3 {
    margin-top: -12px !important;
  }

  .xl\:cl--mr-3 {
    margin-right: -12px !important;
  }

  .xl\:cl--mb-3 {
    margin-bottom: -12px !important;
  }

  .xl\:cl--ml-3 {
    margin-left: -12px !important;
  }

  .xl\:cl--mt-4 {
    margin-top: -16px !important;
  }

  .xl\:cl--mr-4 {
    margin-right: -16px !important;
  }

  .xl\:cl--mb-4 {
    margin-bottom: -16px !important;
  }

  .xl\:cl--ml-4 {
    margin-left: -16px !important;
  }

  .xl\:cl--mt-5 {
    margin-top: -20px !important;
  }

  .xl\:cl--mr-5 {
    margin-right: -20px !important;
  }

  .xl\:cl--mb-5 {
    margin-bottom: -20px !important;
  }

  .xl\:cl--ml-5 {
    margin-left: -20px !important;
  }

  .xl\:cl--mt-6 {
    margin-top: -24px !important;
  }

  .xl\:cl--mr-6 {
    margin-right: -24px !important;
  }

  .xl\:cl--mb-6 {
    margin-bottom: -24px !important;
  }

  .xl\:cl--ml-6 {
    margin-left: -24px !important;
  }

  .xl\:cl--mt-8 {
    margin-top: -32px !important;
  }

  .xl\:cl--mr-8 {
    margin-right: -32px !important;
  }

  .xl\:cl--mb-8 {
    margin-bottom: -32px !important;
  }

  .xl\:cl--ml-8 {
    margin-left: -32px !important;
  }

  .xl\:cl--mt-10 {
    margin-top: -40px !important;
  }

  .xl\:cl--mr-10 {
    margin-right: -40px !important;
  }

  .xl\:cl--mb-10 {
    margin-bottom: -40px !important;
  }

  .xl\:cl--ml-10 {
    margin-left: -40px !important;
  }

  .xl\:cl--mt-12 {
    margin-top: -48px !important;
  }

  .xl\:cl--mr-12 {
    margin-right: -48px !important;
  }

  .xl\:cl--mb-12 {
    margin-bottom: -48px !important;
  }

  .xl\:cl--ml-12 {
    margin-left: -48px !important;
  }

  .xl\:cl--mt-16 {
    margin-top: -64px !important;
  }

  .xl\:cl--mr-16 {
    margin-right: -64px !important;
  }

  .xl\:cl--mb-16 {
    margin-bottom: -64px !important;
  }

  .xl\:cl--ml-16 {
    margin-left: -64px !important;
  }

  .xl\:cl--mt-20 {
    margin-top: -80px !important;
  }

  .xl\:cl--mr-20 {
    margin-right: -80px !important;
  }

  .xl\:cl--mb-20 {
    margin-bottom: -80px !important;
  }

  .xl\:cl--ml-20 {
    margin-left: -80px !important;
  }

  .xl\:cl--mt-24 {
    margin-top: -96px !important;
  }

  .xl\:cl--mr-24 {
    margin-right: -96px !important;
  }

  .xl\:cl--mb-24 {
    margin-bottom: -96px !important;
  }

  .xl\:cl--ml-24 {
    margin-left: -96px !important;
  }

  .xl\:cl--mt-26 {
    margin-top: -100px !important;
  }

  .xl\:cl--mr-26 {
    margin-right: -100px !important;
  }

  .xl\:cl--mb-26 {
    margin-bottom: -100px !important;
  }

  .xl\:cl--ml-26 {
    margin-left: -100px !important;
  }

  .xl\:cl--mt-28 {
    margin-top: -110px !important;
  }

  .xl\:cl--mr-28 {
    margin-right: -110px !important;
  }

  .xl\:cl--mb-28 {
    margin-bottom: -110px !important;
  }

  .xl\:cl--ml-28 {
    margin-left: -110px !important;
  }

  .xl\:cl--mt-32 {
    margin-top: -128px !important;
  }

  .xl\:cl--mr-32 {
    margin-right: -128px !important;
  }

  .xl\:cl--mb-32 {
    margin-bottom: -128px !important;
  }

  .xl\:cl--ml-32 {
    margin-left: -128px !important;
  }

  .xl\:cl--mt-40 {
    margin-top: -160px !important;
  }

  .xl\:cl--mr-40 {
    margin-right: -160px !important;
  }

  .xl\:cl--mb-40 {
    margin-bottom: -160px !important;
  }

  .xl\:cl--ml-40 {
    margin-left: -160px !important;
  }

  .xl\:cl--mt-48 {
    margin-top: -192px !important;
  }

  .xl\:cl--mr-48 {
    margin-right: -192px !important;
  }

  .xl\:cl--mb-48 {
    margin-bottom: -192px !important;
  }

  .xl\:cl--ml-48 {
    margin-left: -192px !important;
  }

  .xl\:cl--mt-56 {
    margin-top: -224px !important;
  }

  .xl\:cl--mr-56 {
    margin-right: -224px !important;
  }

  .xl\:cl--mb-56 {
    margin-bottom: -224px !important;
  }

  .xl\:cl--ml-56 {
    margin-left: -224px !important;
  }

  .xl\:cl--mt-64 {
    margin-top: -256px !important;
  }

  .xl\:cl--mr-64 {
    margin-right: -256px !important;
  }

  .xl\:cl--mb-64 {
    margin-bottom: -256px !important;
  }

  .xl\:cl--ml-64 {
    margin-left: -256px !important;
  }

  .xl\:cl--mt-px {
    margin-top: -1px !important;
  }

  .xl\:cl--mr-px {
    margin-right: -1px !important;
  }

  .xl\:cl--mb-px {
    margin-bottom: -1px !important;
  }

  .xl\:cl--ml-px {
    margin-left: -1px !important;
  }

  .xl\:active\:cl-m-0:active {
    margin: 0 !important;
  }

  .xl\:active\:cl-m-1:active {
    margin: 4px !important;
  }

  .xl\:active\:cl-m-2:active {
    margin: 8px !important;
  }

  .xl\:active\:cl-m-3:active {
    margin: 12px !important;
  }

  .xl\:active\:cl-m-4:active {
    margin: 16px !important;
  }

  .xl\:active\:cl-m-5:active {
    margin: 20px !important;
  }

  .xl\:active\:cl-m-6:active {
    margin: 24px !important;
  }

  .xl\:active\:cl-m-8:active {
    margin: 32px !important;
  }

  .xl\:active\:cl-m-10:active {
    margin: 40px !important;
  }

  .xl\:active\:cl-m-12:active {
    margin: 48px !important;
  }

  .xl\:active\:cl-m-16:active {
    margin: 64px !important;
  }

  .xl\:active\:cl-m-20:active {
    margin: 80px !important;
  }

  .xl\:active\:cl-m-24:active {
    margin: 96px !important;
  }

  .xl\:active\:cl-m-26:active {
    margin: 100px !important;
  }

  .xl\:active\:cl-m-28:active {
    margin: 110px !important;
  }

  .xl\:active\:cl-m-32:active {
    margin: 128px !important;
  }

  .xl\:active\:cl-m-40:active {
    margin: 160px !important;
  }

  .xl\:active\:cl-m-48:active {
    margin: 192px !important;
  }

  .xl\:active\:cl-m-56:active {
    margin: 224px !important;
  }

  .xl\:active\:cl-m-64:active {
    margin: 256px !important;
  }

  .xl\:active\:cl-m-auto:active {
    margin: auto !important;
  }

  .xl\:active\:cl-m-px:active {
    margin: 1px !important;
  }

  .xl\:active\:cl--m-1:active {
    margin: -4px !important;
  }

  .xl\:active\:cl--m-2:active {
    margin: -8px !important;
  }

  .xl\:active\:cl--m-3:active {
    margin: -12px !important;
  }

  .xl\:active\:cl--m-4:active {
    margin: -16px !important;
  }

  .xl\:active\:cl--m-5:active {
    margin: -20px !important;
  }

  .xl\:active\:cl--m-6:active {
    margin: -24px !important;
  }

  .xl\:active\:cl--m-8:active {
    margin: -32px !important;
  }

  .xl\:active\:cl--m-10:active {
    margin: -40px !important;
  }

  .xl\:active\:cl--m-12:active {
    margin: -48px !important;
  }

  .xl\:active\:cl--m-16:active {
    margin: -64px !important;
  }

  .xl\:active\:cl--m-20:active {
    margin: -80px !important;
  }

  .xl\:active\:cl--m-24:active {
    margin: -96px !important;
  }

  .xl\:active\:cl--m-26:active {
    margin: -100px !important;
  }

  .xl\:active\:cl--m-28:active {
    margin: -110px !important;
  }

  .xl\:active\:cl--m-32:active {
    margin: -128px !important;
  }

  .xl\:active\:cl--m-40:active {
    margin: -160px !important;
  }

  .xl\:active\:cl--m-48:active {
    margin: -192px !important;
  }

  .xl\:active\:cl--m-56:active {
    margin: -224px !important;
  }

  .xl\:active\:cl--m-64:active {
    margin: -256px !important;
  }

  .xl\:active\:cl--m-px:active {
    margin: -1px !important;
  }

  .xl\:active\:cl-my-0:active {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .xl\:active\:cl-mx-0:active {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .xl\:active\:cl-my-1:active {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  .xl\:active\:cl-mx-1:active {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }

  .xl\:active\:cl-my-2:active {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  .xl\:active\:cl-mx-2:active {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }

  .xl\:active\:cl-my-3:active {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }

  .xl\:active\:cl-mx-3:active {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }

  .xl\:active\:cl-my-4:active {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }

  .xl\:active\:cl-mx-4:active {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }

  .xl\:active\:cl-my-5:active {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .xl\:active\:cl-mx-5:active {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }

  .xl\:active\:cl-my-6:active {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }

  .xl\:active\:cl-mx-6:active {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }

  .xl\:active\:cl-my-8:active {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }

  .xl\:active\:cl-mx-8:active {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }

  .xl\:active\:cl-my-10:active {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  .xl\:active\:cl-mx-10:active {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }

  .xl\:active\:cl-my-12:active {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }

  .xl\:active\:cl-mx-12:active {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }

  .xl\:active\:cl-my-16:active {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }

  .xl\:active\:cl-mx-16:active {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }

  .xl\:active\:cl-my-20:active {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }

  .xl\:active\:cl-mx-20:active {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }

  .xl\:active\:cl-my-24:active {
    margin-top: 96px !important;
    margin-bottom: 96px !important;
  }

  .xl\:active\:cl-mx-24:active {
    margin-left: 96px !important;
    margin-right: 96px !important;
  }

  .xl\:active\:cl-my-26:active {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }

  .xl\:active\:cl-mx-26:active {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }

  .xl\:active\:cl-my-28:active {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
  }

  .xl\:active\:cl-mx-28:active {
    margin-left: 110px !important;
    margin-right: 110px !important;
  }

  .xl\:active\:cl-my-32:active {
    margin-top: 128px !important;
    margin-bottom: 128px !important;
  }

  .xl\:active\:cl-mx-32:active {
    margin-left: 128px !important;
    margin-right: 128px !important;
  }

  .xl\:active\:cl-my-40:active {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }

  .xl\:active\:cl-mx-40:active {
    margin-left: 160px !important;
    margin-right: 160px !important;
  }

  .xl\:active\:cl-my-48:active {
    margin-top: 192px !important;
    margin-bottom: 192px !important;
  }

  .xl\:active\:cl-mx-48:active {
    margin-left: 192px !important;
    margin-right: 192px !important;
  }

  .xl\:active\:cl-my-56:active {
    margin-top: 224px !important;
    margin-bottom: 224px !important;
  }

  .xl\:active\:cl-mx-56:active {
    margin-left: 224px !important;
    margin-right: 224px !important;
  }

  .xl\:active\:cl-my-64:active {
    margin-top: 256px !important;
    margin-bottom: 256px !important;
  }

  .xl\:active\:cl-mx-64:active {
    margin-left: 256px !important;
    margin-right: 256px !important;
  }

  .xl\:active\:cl-my-auto:active {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .xl\:active\:cl-mx-auto:active {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .xl\:active\:cl-my-px:active {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .xl\:active\:cl-mx-px:active {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .xl\:active\:cl--my-1:active {
    margin-top: -4px !important;
    margin-bottom: -4px !important;
  }

  .xl\:active\:cl--mx-1:active {
    margin-left: -4px !important;
    margin-right: -4px !important;
  }

  .xl\:active\:cl--my-2:active {
    margin-top: -8px !important;
    margin-bottom: -8px !important;
  }

  .xl\:active\:cl--mx-2:active {
    margin-left: -8px !important;
    margin-right: -8px !important;
  }

  .xl\:active\:cl--my-3:active {
    margin-top: -12px !important;
    margin-bottom: -12px !important;
  }

  .xl\:active\:cl--mx-3:active {
    margin-left: -12px !important;
    margin-right: -12px !important;
  }

  .xl\:active\:cl--my-4:active {
    margin-top: -16px !important;
    margin-bottom: -16px !important;
  }

  .xl\:active\:cl--mx-4:active {
    margin-left: -16px !important;
    margin-right: -16px !important;
  }

  .xl\:active\:cl--my-5:active {
    margin-top: -20px !important;
    margin-bottom: -20px !important;
  }

  .xl\:active\:cl--mx-5:active {
    margin-left: -20px !important;
    margin-right: -20px !important;
  }

  .xl\:active\:cl--my-6:active {
    margin-top: -24px !important;
    margin-bottom: -24px !important;
  }

  .xl\:active\:cl--mx-6:active {
    margin-left: -24px !important;
    margin-right: -24px !important;
  }

  .xl\:active\:cl--my-8:active {
    margin-top: -32px !important;
    margin-bottom: -32px !important;
  }

  .xl\:active\:cl--mx-8:active {
    margin-left: -32px !important;
    margin-right: -32px !important;
  }

  .xl\:active\:cl--my-10:active {
    margin-top: -40px !important;
    margin-bottom: -40px !important;
  }

  .xl\:active\:cl--mx-10:active {
    margin-left: -40px !important;
    margin-right: -40px !important;
  }

  .xl\:active\:cl--my-12:active {
    margin-top: -48px !important;
    margin-bottom: -48px !important;
  }

  .xl\:active\:cl--mx-12:active {
    margin-left: -48px !important;
    margin-right: -48px !important;
  }

  .xl\:active\:cl--my-16:active {
    margin-top: -64px !important;
    margin-bottom: -64px !important;
  }

  .xl\:active\:cl--mx-16:active {
    margin-left: -64px !important;
    margin-right: -64px !important;
  }

  .xl\:active\:cl--my-20:active {
    margin-top: -80px !important;
    margin-bottom: -80px !important;
  }

  .xl\:active\:cl--mx-20:active {
    margin-left: -80px !important;
    margin-right: -80px !important;
  }

  .xl\:active\:cl--my-24:active {
    margin-top: -96px !important;
    margin-bottom: -96px !important;
  }

  .xl\:active\:cl--mx-24:active {
    margin-left: -96px !important;
    margin-right: -96px !important;
  }

  .xl\:active\:cl--my-26:active {
    margin-top: -100px !important;
    margin-bottom: -100px !important;
  }

  .xl\:active\:cl--mx-26:active {
    margin-left: -100px !important;
    margin-right: -100px !important;
  }

  .xl\:active\:cl--my-28:active {
    margin-top: -110px !important;
    margin-bottom: -110px !important;
  }

  .xl\:active\:cl--mx-28:active {
    margin-left: -110px !important;
    margin-right: -110px !important;
  }

  .xl\:active\:cl--my-32:active {
    margin-top: -128px !important;
    margin-bottom: -128px !important;
  }

  .xl\:active\:cl--mx-32:active {
    margin-left: -128px !important;
    margin-right: -128px !important;
  }

  .xl\:active\:cl--my-40:active {
    margin-top: -160px !important;
    margin-bottom: -160px !important;
  }

  .xl\:active\:cl--mx-40:active {
    margin-left: -160px !important;
    margin-right: -160px !important;
  }

  .xl\:active\:cl--my-48:active {
    margin-top: -192px !important;
    margin-bottom: -192px !important;
  }

  .xl\:active\:cl--mx-48:active {
    margin-left: -192px !important;
    margin-right: -192px !important;
  }

  .xl\:active\:cl--my-56:active {
    margin-top: -224px !important;
    margin-bottom: -224px !important;
  }

  .xl\:active\:cl--mx-56:active {
    margin-left: -224px !important;
    margin-right: -224px !important;
  }

  .xl\:active\:cl--my-64:active {
    margin-top: -256px !important;
    margin-bottom: -256px !important;
  }

  .xl\:active\:cl--mx-64:active {
    margin-left: -256px !important;
    margin-right: -256px !important;
  }

  .xl\:active\:cl--my-px:active {
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .xl\:active\:cl--mx-px:active {
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .xl\:active\:cl-mt-0:active {
    margin-top: 0 !important;
  }

  .xl\:active\:cl-mr-0:active {
    margin-right: 0 !important;
  }

  .xl\:active\:cl-mb-0:active {
    margin-bottom: 0 !important;
  }

  .xl\:active\:cl-ml-0:active {
    margin-left: 0 !important;
  }

  .xl\:active\:cl-mt-1:active {
    margin-top: 4px !important;
  }

  .xl\:active\:cl-mr-1:active {
    margin-right: 4px !important;
  }

  .xl\:active\:cl-mb-1:active {
    margin-bottom: 4px !important;
  }

  .xl\:active\:cl-ml-1:active {
    margin-left: 4px !important;
  }

  .xl\:active\:cl-mt-2:active {
    margin-top: 8px !important;
  }

  .xl\:active\:cl-mr-2:active {
    margin-right: 8px !important;
  }

  .xl\:active\:cl-mb-2:active {
    margin-bottom: 8px !important;
  }

  .xl\:active\:cl-ml-2:active {
    margin-left: 8px !important;
  }

  .xl\:active\:cl-mt-3:active {
    margin-top: 12px !important;
  }

  .xl\:active\:cl-mr-3:active {
    margin-right: 12px !important;
  }

  .xl\:active\:cl-mb-3:active {
    margin-bottom: 12px !important;
  }

  .xl\:active\:cl-ml-3:active {
    margin-left: 12px !important;
  }

  .xl\:active\:cl-mt-4:active {
    margin-top: 16px !important;
  }

  .xl\:active\:cl-mr-4:active {
    margin-right: 16px !important;
  }

  .xl\:active\:cl-mb-4:active {
    margin-bottom: 16px !important;
  }

  .xl\:active\:cl-ml-4:active {
    margin-left: 16px !important;
  }

  .xl\:active\:cl-mt-5:active {
    margin-top: 20px !important;
  }

  .xl\:active\:cl-mr-5:active {
    margin-right: 20px !important;
  }

  .xl\:active\:cl-mb-5:active {
    margin-bottom: 20px !important;
  }

  .xl\:active\:cl-ml-5:active {
    margin-left: 20px !important;
  }

  .xl\:active\:cl-mt-6:active {
    margin-top: 24px !important;
  }

  .xl\:active\:cl-mr-6:active {
    margin-right: 24px !important;
  }

  .xl\:active\:cl-mb-6:active {
    margin-bottom: 24px !important;
  }

  .xl\:active\:cl-ml-6:active {
    margin-left: 24px !important;
  }

  .xl\:active\:cl-mt-8:active {
    margin-top: 32px !important;
  }

  .xl\:active\:cl-mr-8:active {
    margin-right: 32px !important;
  }

  .xl\:active\:cl-mb-8:active {
    margin-bottom: 32px !important;
  }

  .xl\:active\:cl-ml-8:active {
    margin-left: 32px !important;
  }

  .xl\:active\:cl-mt-10:active {
    margin-top: 40px !important;
  }

  .xl\:active\:cl-mr-10:active {
    margin-right: 40px !important;
  }

  .xl\:active\:cl-mb-10:active {
    margin-bottom: 40px !important;
  }

  .xl\:active\:cl-ml-10:active {
    margin-left: 40px !important;
  }

  .xl\:active\:cl-mt-12:active {
    margin-top: 48px !important;
  }

  .xl\:active\:cl-mr-12:active {
    margin-right: 48px !important;
  }

  .xl\:active\:cl-mb-12:active {
    margin-bottom: 48px !important;
  }

  .xl\:active\:cl-ml-12:active {
    margin-left: 48px !important;
  }

  .xl\:active\:cl-mt-16:active {
    margin-top: 64px !important;
  }

  .xl\:active\:cl-mr-16:active {
    margin-right: 64px !important;
  }

  .xl\:active\:cl-mb-16:active {
    margin-bottom: 64px !important;
  }

  .xl\:active\:cl-ml-16:active {
    margin-left: 64px !important;
  }

  .xl\:active\:cl-mt-20:active {
    margin-top: 80px !important;
  }

  .xl\:active\:cl-mr-20:active {
    margin-right: 80px !important;
  }

  .xl\:active\:cl-mb-20:active {
    margin-bottom: 80px !important;
  }

  .xl\:active\:cl-ml-20:active {
    margin-left: 80px !important;
  }

  .xl\:active\:cl-mt-24:active {
    margin-top: 96px !important;
  }

  .xl\:active\:cl-mr-24:active {
    margin-right: 96px !important;
  }

  .xl\:active\:cl-mb-24:active {
    margin-bottom: 96px !important;
  }

  .xl\:active\:cl-ml-24:active {
    margin-left: 96px !important;
  }

  .xl\:active\:cl-mt-26:active {
    margin-top: 100px !important;
  }

  .xl\:active\:cl-mr-26:active {
    margin-right: 100px !important;
  }

  .xl\:active\:cl-mb-26:active {
    margin-bottom: 100px !important;
  }

  .xl\:active\:cl-ml-26:active {
    margin-left: 100px !important;
  }

  .xl\:active\:cl-mt-28:active {
    margin-top: 110px !important;
  }

  .xl\:active\:cl-mr-28:active {
    margin-right: 110px !important;
  }

  .xl\:active\:cl-mb-28:active {
    margin-bottom: 110px !important;
  }

  .xl\:active\:cl-ml-28:active {
    margin-left: 110px !important;
  }

  .xl\:active\:cl-mt-32:active {
    margin-top: 128px !important;
  }

  .xl\:active\:cl-mr-32:active {
    margin-right: 128px !important;
  }

  .xl\:active\:cl-mb-32:active {
    margin-bottom: 128px !important;
  }

  .xl\:active\:cl-ml-32:active {
    margin-left: 128px !important;
  }

  .xl\:active\:cl-mt-40:active {
    margin-top: 160px !important;
  }

  .xl\:active\:cl-mr-40:active {
    margin-right: 160px !important;
  }

  .xl\:active\:cl-mb-40:active {
    margin-bottom: 160px !important;
  }

  .xl\:active\:cl-ml-40:active {
    margin-left: 160px !important;
  }

  .xl\:active\:cl-mt-48:active {
    margin-top: 192px !important;
  }

  .xl\:active\:cl-mr-48:active {
    margin-right: 192px !important;
  }

  .xl\:active\:cl-mb-48:active {
    margin-bottom: 192px !important;
  }

  .xl\:active\:cl-ml-48:active {
    margin-left: 192px !important;
  }

  .xl\:active\:cl-mt-56:active {
    margin-top: 224px !important;
  }

  .xl\:active\:cl-mr-56:active {
    margin-right: 224px !important;
  }

  .xl\:active\:cl-mb-56:active {
    margin-bottom: 224px !important;
  }

  .xl\:active\:cl-ml-56:active {
    margin-left: 224px !important;
  }

  .xl\:active\:cl-mt-64:active {
    margin-top: 256px !important;
  }

  .xl\:active\:cl-mr-64:active {
    margin-right: 256px !important;
  }

  .xl\:active\:cl-mb-64:active {
    margin-bottom: 256px !important;
  }

  .xl\:active\:cl-ml-64:active {
    margin-left: 256px !important;
  }

  .xl\:active\:cl-mt-auto:active {
    margin-top: auto !important;
  }

  .xl\:active\:cl-mr-auto:active {
    margin-right: auto !important;
  }

  .xl\:active\:cl-mb-auto:active {
    margin-bottom: auto !important;
  }

  .xl\:active\:cl-ml-auto:active {
    margin-left: auto !important;
  }

  .xl\:active\:cl-mt-px:active {
    margin-top: 1px !important;
  }

  .xl\:active\:cl-mr-px:active {
    margin-right: 1px !important;
  }

  .xl\:active\:cl-mb-px:active {
    margin-bottom: 1px !important;
  }

  .xl\:active\:cl-ml-px:active {
    margin-left: 1px !important;
  }

  .xl\:active\:cl--mt-1:active {
    margin-top: -4px !important;
  }

  .xl\:active\:cl--mr-1:active {
    margin-right: -4px !important;
  }

  .xl\:active\:cl--mb-1:active {
    margin-bottom: -4px !important;
  }

  .xl\:active\:cl--ml-1:active {
    margin-left: -4px !important;
  }

  .xl\:active\:cl--mt-2:active {
    margin-top: -8px !important;
  }

  .xl\:active\:cl--mr-2:active {
    margin-right: -8px !important;
  }

  .xl\:active\:cl--mb-2:active {
    margin-bottom: -8px !important;
  }

  .xl\:active\:cl--ml-2:active {
    margin-left: -8px !important;
  }

  .xl\:active\:cl--mt-3:active {
    margin-top: -12px !important;
  }

  .xl\:active\:cl--mr-3:active {
    margin-right: -12px !important;
  }

  .xl\:active\:cl--mb-3:active {
    margin-bottom: -12px !important;
  }

  .xl\:active\:cl--ml-3:active {
    margin-left: -12px !important;
  }

  .xl\:active\:cl--mt-4:active {
    margin-top: -16px !important;
  }

  .xl\:active\:cl--mr-4:active {
    margin-right: -16px !important;
  }

  .xl\:active\:cl--mb-4:active {
    margin-bottom: -16px !important;
  }

  .xl\:active\:cl--ml-4:active {
    margin-left: -16px !important;
  }

  .xl\:active\:cl--mt-5:active {
    margin-top: -20px !important;
  }

  .xl\:active\:cl--mr-5:active {
    margin-right: -20px !important;
  }

  .xl\:active\:cl--mb-5:active {
    margin-bottom: -20px !important;
  }

  .xl\:active\:cl--ml-5:active {
    margin-left: -20px !important;
  }

  .xl\:active\:cl--mt-6:active {
    margin-top: -24px !important;
  }

  .xl\:active\:cl--mr-6:active {
    margin-right: -24px !important;
  }

  .xl\:active\:cl--mb-6:active {
    margin-bottom: -24px !important;
  }

  .xl\:active\:cl--ml-6:active {
    margin-left: -24px !important;
  }

  .xl\:active\:cl--mt-8:active {
    margin-top: -32px !important;
  }

  .xl\:active\:cl--mr-8:active {
    margin-right: -32px !important;
  }

  .xl\:active\:cl--mb-8:active {
    margin-bottom: -32px !important;
  }

  .xl\:active\:cl--ml-8:active {
    margin-left: -32px !important;
  }

  .xl\:active\:cl--mt-10:active {
    margin-top: -40px !important;
  }

  .xl\:active\:cl--mr-10:active {
    margin-right: -40px !important;
  }

  .xl\:active\:cl--mb-10:active {
    margin-bottom: -40px !important;
  }

  .xl\:active\:cl--ml-10:active {
    margin-left: -40px !important;
  }

  .xl\:active\:cl--mt-12:active {
    margin-top: -48px !important;
  }

  .xl\:active\:cl--mr-12:active {
    margin-right: -48px !important;
  }

  .xl\:active\:cl--mb-12:active {
    margin-bottom: -48px !important;
  }

  .xl\:active\:cl--ml-12:active {
    margin-left: -48px !important;
  }

  .xl\:active\:cl--mt-16:active {
    margin-top: -64px !important;
  }

  .xl\:active\:cl--mr-16:active {
    margin-right: -64px !important;
  }

  .xl\:active\:cl--mb-16:active {
    margin-bottom: -64px !important;
  }

  .xl\:active\:cl--ml-16:active {
    margin-left: -64px !important;
  }

  .xl\:active\:cl--mt-20:active {
    margin-top: -80px !important;
  }

  .xl\:active\:cl--mr-20:active {
    margin-right: -80px !important;
  }

  .xl\:active\:cl--mb-20:active {
    margin-bottom: -80px !important;
  }

  .xl\:active\:cl--ml-20:active {
    margin-left: -80px !important;
  }

  .xl\:active\:cl--mt-24:active {
    margin-top: -96px !important;
  }

  .xl\:active\:cl--mr-24:active {
    margin-right: -96px !important;
  }

  .xl\:active\:cl--mb-24:active {
    margin-bottom: -96px !important;
  }

  .xl\:active\:cl--ml-24:active {
    margin-left: -96px !important;
  }

  .xl\:active\:cl--mt-26:active {
    margin-top: -100px !important;
  }

  .xl\:active\:cl--mr-26:active {
    margin-right: -100px !important;
  }

  .xl\:active\:cl--mb-26:active {
    margin-bottom: -100px !important;
  }

  .xl\:active\:cl--ml-26:active {
    margin-left: -100px !important;
  }

  .xl\:active\:cl--mt-28:active {
    margin-top: -110px !important;
  }

  .xl\:active\:cl--mr-28:active {
    margin-right: -110px !important;
  }

  .xl\:active\:cl--mb-28:active {
    margin-bottom: -110px !important;
  }

  .xl\:active\:cl--ml-28:active {
    margin-left: -110px !important;
  }

  .xl\:active\:cl--mt-32:active {
    margin-top: -128px !important;
  }

  .xl\:active\:cl--mr-32:active {
    margin-right: -128px !important;
  }

  .xl\:active\:cl--mb-32:active {
    margin-bottom: -128px !important;
  }

  .xl\:active\:cl--ml-32:active {
    margin-left: -128px !important;
  }

  .xl\:active\:cl--mt-40:active {
    margin-top: -160px !important;
  }

  .xl\:active\:cl--mr-40:active {
    margin-right: -160px !important;
  }

  .xl\:active\:cl--mb-40:active {
    margin-bottom: -160px !important;
  }

  .xl\:active\:cl--ml-40:active {
    margin-left: -160px !important;
  }

  .xl\:active\:cl--mt-48:active {
    margin-top: -192px !important;
  }

  .xl\:active\:cl--mr-48:active {
    margin-right: -192px !important;
  }

  .xl\:active\:cl--mb-48:active {
    margin-bottom: -192px !important;
  }

  .xl\:active\:cl--ml-48:active {
    margin-left: -192px !important;
  }

  .xl\:active\:cl--mt-56:active {
    margin-top: -224px !important;
  }

  .xl\:active\:cl--mr-56:active {
    margin-right: -224px !important;
  }

  .xl\:active\:cl--mb-56:active {
    margin-bottom: -224px !important;
  }

  .xl\:active\:cl--ml-56:active {
    margin-left: -224px !important;
  }

  .xl\:active\:cl--mt-64:active {
    margin-top: -256px !important;
  }

  .xl\:active\:cl--mr-64:active {
    margin-right: -256px !important;
  }

  .xl\:active\:cl--mb-64:active {
    margin-bottom: -256px !important;
  }

  .xl\:active\:cl--ml-64:active {
    margin-left: -256px !important;
  }

  .xl\:active\:cl--mt-px:active {
    margin-top: -1px !important;
  }

  .xl\:active\:cl--mr-px:active {
    margin-right: -1px !important;
  }

  .xl\:active\:cl--mb-px:active {
    margin-bottom: -1px !important;
  }

  .xl\:active\:cl--ml-px:active {
    margin-left: -1px !important;
  }

  .xl\:cl-max-h-full {
    max-height: 100% !important;
  }

  .xl\:cl-max-h-screen {
    max-height: 100vh !important;
  }

  .xl\:cl-max-w-none {
    max-width: none !important;
  }

  .xl\:cl-max-w-xs {
    max-width: 20rem !important;
  }

  .xl\:cl-max-w-sm {
    max-width: 24rem !important;
  }

  .xl\:cl-max-w-md {
    max-width: 28rem !important;
  }

  .xl\:cl-max-w-lg {
    max-width: 32rem !important;
  }

  .xl\:cl-max-w-xl {
    max-width: 36rem !important;
  }

  .xl\:cl-max-w-2xl {
    max-width: 42rem !important;
  }

  .xl\:cl-max-w-3xl {
    max-width: 48rem !important;
  }

  .xl\:cl-max-w-4xl {
    max-width: 56rem !important;
  }

  .xl\:cl-max-w-5xl {
    max-width: 64rem !important;
  }

  .xl\:cl-max-w-6xl {
    max-width: 72rem !important;
  }

  .xl\:cl-max-w-full {
    max-width: 100% !important;
  }

  .xl\:cl-max-w-screen-sm {
    max-width: 640px !important;
  }

  .xl\:cl-max-w-screen-md {
    max-width: 768px !important;
  }

  .xl\:cl-max-w-screen-lg {
    max-width: 1024px !important;
  }

  .xl\:cl-max-w-screen-xl {
    max-width: 1280px !important;
  }

  .xl\:cl-min-h-0 {
    min-height: 0 !important;
  }

  .xl\:cl-min-h-full {
    min-height: 100% !important;
  }

  .xl\:cl-min-h-screen {
    min-height: 100vh !important;
  }

  .xl\:cl-min-w-0 {
    min-width: 0 !important;
  }

  .xl\:cl-min-w-full {
    min-width: 100% !important;
  }

  .xl\:cl-object-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }

  .xl\:cl-object-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }

  .xl\:cl-object-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }

  .xl\:cl-object-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }

  .xl\:cl-object-scale-down {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }

  .xl\:cl-object-bottom {
    -o-object-position: bottom !important;
       object-position: bottom !important;
  }

  .xl\:cl-object-center {
    -o-object-position: center !important;
       object-position: center !important;
  }

  .xl\:cl-object-left {
    -o-object-position: left !important;
       object-position: left !important;
  }

  .xl\:cl-object-left-bottom {
    -o-object-position: left bottom !important;
       object-position: left bottom !important;
  }

  .xl\:cl-object-left-top {
    -o-object-position: left top !important;
       object-position: left top !important;
  }

  .xl\:cl-object-right {
    -o-object-position: right !important;
       object-position: right !important;
  }

  .xl\:cl-object-right-bottom {
    -o-object-position: right bottom !important;
       object-position: right bottom !important;
  }

  .xl\:cl-object-right-top {
    -o-object-position: right top !important;
       object-position: right top !important;
  }

  .xl\:cl-object-top {
    -o-object-position: top !important;
       object-position: top !important;
  }

  .xl\:cl-opacity-0 {
    opacity: 0 !important;
  }

  .xl\:cl-opacity-25 {
    opacity: 0.25 !important;
  }

  .xl\:cl-opacity-50 {
    opacity: 0.5 !important;
  }

  .xl\:cl-opacity-75 {
    opacity: 0.75 !important;
  }

  .xl\:cl-opacity-100 {
    opacity: 1 !important;
  }

  .xl\:hover\:cl-opacity-0:hover {
    opacity: 0 !important;
  }

  .xl\:hover\:cl-opacity-25:hover {
    opacity: 0.25 !important;
  }

  .xl\:hover\:cl-opacity-50:hover {
    opacity: 0.5 !important;
  }

  .xl\:hover\:cl-opacity-75:hover {
    opacity: 0.75 !important;
  }

  .xl\:hover\:cl-opacity-100:hover {
    opacity: 1 !important;
  }

  .xl\:focus\:cl-opacity-0:focus {
    opacity: 0 !important;
  }

  .xl\:focus\:cl-opacity-25:focus {
    opacity: 0.25 !important;
  }

  .xl\:focus\:cl-opacity-50:focus {
    opacity: 0.5 !important;
  }

  .xl\:focus\:cl-opacity-75:focus {
    opacity: 0.75 !important;
  }

  .xl\:focus\:cl-opacity-100:focus {
    opacity: 1 !important;
  }

  .xl\:cl-outline-none {
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .xl\:cl-outline-white {
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .xl\:cl-outline-black {
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .xl\:focus\:cl-outline-none:focus {
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .xl\:focus\:cl-outline-white:focus {
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .xl\:focus\:cl-outline-black:focus {
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .xl\:cl-overflow-auto {
    overflow: auto !important;
  }

  .xl\:cl-overflow-hidden {
    overflow: hidden !important;
  }

  .xl\:cl-overflow-visible {
    overflow: visible !important;
  }

  .xl\:cl-overflow-scroll {
    overflow: scroll !important;
  }

  .xl\:cl-overflow-x-auto {
    overflow-x: auto !important;
  }

  .xl\:cl-overflow-y-auto {
    overflow-y: auto !important;
  }

  .xl\:cl-overflow-x-hidden {
    overflow-x: hidden !important;
  }

  .xl\:cl-overflow-y-hidden {
    overflow-y: hidden !important;
  }

  .xl\:cl-overflow-x-visible {
    overflow-x: visible !important;
  }

  .xl\:cl-overflow-y-visible {
    overflow-y: visible !important;
  }

  .xl\:cl-overflow-x-scroll {
    overflow-x: scroll !important;
  }

  .xl\:cl-overflow-y-scroll {
    overflow-y: scroll !important;
  }

  .xl\:cl-scrolling-touch {
    -webkit-overflow-scrolling: touch !important;
  }

  .xl\:cl-scrolling-auto {
    -webkit-overflow-scrolling: auto !important;
  }

  .xl\:cl-overscroll-auto {
    overscroll-behavior: auto !important;
  }

  .xl\:cl-overscroll-contain {
    overscroll-behavior: contain !important;
  }

  .xl\:cl-overscroll-none {
    overscroll-behavior: none !important;
  }

  .xl\:cl-overscroll-y-auto {
    overscroll-behavior-y: auto !important;
  }

  .xl\:cl-overscroll-y-contain {
    overscroll-behavior-y: contain !important;
  }

  .xl\:cl-overscroll-y-none {
    overscroll-behavior-y: none !important;
  }

  .xl\:cl-overscroll-x-auto {
    overscroll-behavior-x: auto !important;
  }

  .xl\:cl-overscroll-x-contain {
    overscroll-behavior-x: contain !important;
  }

  .xl\:cl-overscroll-x-none {
    overscroll-behavior-x: none !important;
  }

  .xl\:cl-p-0 {
    padding: 0 !important;
  }

  .xl\:cl-p-1 {
    padding: 4px !important;
  }

  .xl\:cl-p-2 {
    padding: 8px !important;
  }

  .xl\:cl-p-3 {
    padding: 12px !important;
  }

  .xl\:cl-p-4 {
    padding: 16px !important;
  }

  .xl\:cl-p-5 {
    padding: 20px !important;
  }

  .xl\:cl-p-6 {
    padding: 24px !important;
  }

  .xl\:cl-p-8 {
    padding: 32px !important;
  }

  .xl\:cl-p-10 {
    padding: 40px !important;
  }

  .xl\:cl-p-12 {
    padding: 48px !important;
  }

  .xl\:cl-p-16 {
    padding: 64px !important;
  }

  .xl\:cl-p-20 {
    padding: 80px !important;
  }

  .xl\:cl-p-24 {
    padding: 96px !important;
  }

  .xl\:cl-p-26 {
    padding: 100px !important;
  }

  .xl\:cl-p-28 {
    padding: 110px !important;
  }

  .xl\:cl-p-32 {
    padding: 128px !important;
  }

  .xl\:cl-p-40 {
    padding: 160px !important;
  }

  .xl\:cl-p-48 {
    padding: 192px !important;
  }

  .xl\:cl-p-56 {
    padding: 224px !important;
  }

  .xl\:cl-p-64 {
    padding: 256px !important;
  }

  .xl\:cl-p-px {
    padding: 1px !important;
  }

  .xl\:cl-py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .xl\:cl-px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .xl\:cl-py-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  .xl\:cl-px-1 {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }

  .xl\:cl-py-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .xl\:cl-px-2 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .xl\:cl-py-3 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  .xl\:cl-px-3 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .xl\:cl-py-4 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }

  .xl\:cl-px-4 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .xl\:cl-py-5 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .xl\:cl-px-5 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .xl\:cl-py-6 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  .xl\:cl-px-6 {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .xl\:cl-py-8 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }

  .xl\:cl-px-8 {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }

  .xl\:cl-py-10 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .xl\:cl-px-10 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .xl\:cl-py-12 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  .xl\:cl-px-12 {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }

  .xl\:cl-py-16 {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  .xl\:cl-px-16 {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }

  .xl\:cl-py-20 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  .xl\:cl-px-20 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }

  .xl\:cl-py-24 {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
  }

  .xl\:cl-px-24 {
    padding-left: 96px !important;
    padding-right: 96px !important;
  }

  .xl\:cl-py-26 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }

  .xl\:cl-px-26 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }

  .xl\:cl-py-28 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
  }

  .xl\:cl-px-28 {
    padding-left: 110px !important;
    padding-right: 110px !important;
  }

  .xl\:cl-py-32 {
    padding-top: 128px !important;
    padding-bottom: 128px !important;
  }

  .xl\:cl-px-32 {
    padding-left: 128px !important;
    padding-right: 128px !important;
  }

  .xl\:cl-py-40 {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
  }

  .xl\:cl-px-40 {
    padding-left: 160px !important;
    padding-right: 160px !important;
  }

  .xl\:cl-py-48 {
    padding-top: 192px !important;
    padding-bottom: 192px !important;
  }

  .xl\:cl-px-48 {
    padding-left: 192px !important;
    padding-right: 192px !important;
  }

  .xl\:cl-py-56 {
    padding-top: 224px !important;
    padding-bottom: 224px !important;
  }

  .xl\:cl-px-56 {
    padding-left: 224px !important;
    padding-right: 224px !important;
  }

  .xl\:cl-py-64 {
    padding-top: 256px !important;
    padding-bottom: 256px !important;
  }

  .xl\:cl-px-64 {
    padding-left: 256px !important;
    padding-right: 256px !important;
  }

  .xl\:cl-py-px {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .xl\:cl-px-px {
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .xl\:cl-pt-0 {
    padding-top: 0 !important;
  }

  .xl\:cl-pr-0 {
    padding-right: 0 !important;
  }

  .xl\:cl-pb-0 {
    padding-bottom: 0 !important;
  }

  .xl\:cl-pl-0 {
    padding-left: 0 !important;
  }

  .xl\:cl-pt-1 {
    padding-top: 4px !important;
  }

  .xl\:cl-pr-1 {
    padding-right: 4px !important;
  }

  .xl\:cl-pb-1 {
    padding-bottom: 4px !important;
  }

  .xl\:cl-pl-1 {
    padding-left: 4px !important;
  }

  .xl\:cl-pt-2 {
    padding-top: 8px !important;
  }

  .xl\:cl-pr-2 {
    padding-right: 8px !important;
  }

  .xl\:cl-pb-2 {
    padding-bottom: 8px !important;
  }

  .xl\:cl-pl-2 {
    padding-left: 8px !important;
  }

  .xl\:cl-pt-3 {
    padding-top: 12px !important;
  }

  .xl\:cl-pr-3 {
    padding-right: 12px !important;
  }

  .xl\:cl-pb-3 {
    padding-bottom: 12px !important;
  }

  .xl\:cl-pl-3 {
    padding-left: 12px !important;
  }

  .xl\:cl-pt-4 {
    padding-top: 16px !important;
  }

  .xl\:cl-pr-4 {
    padding-right: 16px !important;
  }

  .xl\:cl-pb-4 {
    padding-bottom: 16px !important;
  }

  .xl\:cl-pl-4 {
    padding-left: 16px !important;
  }

  .xl\:cl-pt-5 {
    padding-top: 20px !important;
  }

  .xl\:cl-pr-5 {
    padding-right: 20px !important;
  }

  .xl\:cl-pb-5 {
    padding-bottom: 20px !important;
  }

  .xl\:cl-pl-5 {
    padding-left: 20px !important;
  }

  .xl\:cl-pt-6 {
    padding-top: 24px !important;
  }

  .xl\:cl-pr-6 {
    padding-right: 24px !important;
  }

  .xl\:cl-pb-6 {
    padding-bottom: 24px !important;
  }

  .xl\:cl-pl-6 {
    padding-left: 24px !important;
  }

  .xl\:cl-pt-8 {
    padding-top: 32px !important;
  }

  .xl\:cl-pr-8 {
    padding-right: 32px !important;
  }

  .xl\:cl-pb-8 {
    padding-bottom: 32px !important;
  }

  .xl\:cl-pl-8 {
    padding-left: 32px !important;
  }

  .xl\:cl-pt-10 {
    padding-top: 40px !important;
  }

  .xl\:cl-pr-10 {
    padding-right: 40px !important;
  }

  .xl\:cl-pb-10 {
    padding-bottom: 40px !important;
  }

  .xl\:cl-pl-10 {
    padding-left: 40px !important;
  }

  .xl\:cl-pt-12 {
    padding-top: 48px !important;
  }

  .xl\:cl-pr-12 {
    padding-right: 48px !important;
  }

  .xl\:cl-pb-12 {
    padding-bottom: 48px !important;
  }

  .xl\:cl-pl-12 {
    padding-left: 48px !important;
  }

  .xl\:cl-pt-16 {
    padding-top: 64px !important;
  }

  .xl\:cl-pr-16 {
    padding-right: 64px !important;
  }

  .xl\:cl-pb-16 {
    padding-bottom: 64px !important;
  }

  .xl\:cl-pl-16 {
    padding-left: 64px !important;
  }

  .xl\:cl-pt-20 {
    padding-top: 80px !important;
  }

  .xl\:cl-pr-20 {
    padding-right: 80px !important;
  }

  .xl\:cl-pb-20 {
    padding-bottom: 80px !important;
  }

  .xl\:cl-pl-20 {
    padding-left: 80px !important;
  }

  .xl\:cl-pt-24 {
    padding-top: 96px !important;
  }

  .xl\:cl-pr-24 {
    padding-right: 96px !important;
  }

  .xl\:cl-pb-24 {
    padding-bottom: 96px !important;
  }

  .xl\:cl-pl-24 {
    padding-left: 96px !important;
  }

  .xl\:cl-pt-26 {
    padding-top: 100px !important;
  }

  .xl\:cl-pr-26 {
    padding-right: 100px !important;
  }

  .xl\:cl-pb-26 {
    padding-bottom: 100px !important;
  }

  .xl\:cl-pl-26 {
    padding-left: 100px !important;
  }

  .xl\:cl-pt-28 {
    padding-top: 110px !important;
  }

  .xl\:cl-pr-28 {
    padding-right: 110px !important;
  }

  .xl\:cl-pb-28 {
    padding-bottom: 110px !important;
  }

  .xl\:cl-pl-28 {
    padding-left: 110px !important;
  }

  .xl\:cl-pt-32 {
    padding-top: 128px !important;
  }

  .xl\:cl-pr-32 {
    padding-right: 128px !important;
  }

  .xl\:cl-pb-32 {
    padding-bottom: 128px !important;
  }

  .xl\:cl-pl-32 {
    padding-left: 128px !important;
  }

  .xl\:cl-pt-40 {
    padding-top: 160px !important;
  }

  .xl\:cl-pr-40 {
    padding-right: 160px !important;
  }

  .xl\:cl-pb-40 {
    padding-bottom: 160px !important;
  }

  .xl\:cl-pl-40 {
    padding-left: 160px !important;
  }

  .xl\:cl-pt-48 {
    padding-top: 192px !important;
  }

  .xl\:cl-pr-48 {
    padding-right: 192px !important;
  }

  .xl\:cl-pb-48 {
    padding-bottom: 192px !important;
  }

  .xl\:cl-pl-48 {
    padding-left: 192px !important;
  }

  .xl\:cl-pt-56 {
    padding-top: 224px !important;
  }

  .xl\:cl-pr-56 {
    padding-right: 224px !important;
  }

  .xl\:cl-pb-56 {
    padding-bottom: 224px !important;
  }

  .xl\:cl-pl-56 {
    padding-left: 224px !important;
  }

  .xl\:cl-pt-64 {
    padding-top: 256px !important;
  }

  .xl\:cl-pr-64 {
    padding-right: 256px !important;
  }

  .xl\:cl-pb-64 {
    padding-bottom: 256px !important;
  }

  .xl\:cl-pl-64 {
    padding-left: 256px !important;
  }

  .xl\:cl-pt-px {
    padding-top: 1px !important;
  }

  .xl\:cl-pr-px {
    padding-right: 1px !important;
  }

  .xl\:cl-pb-px {
    padding-bottom: 1px !important;
  }

  .xl\:cl-pl-px {
    padding-left: 1px !important;
  }

  .xl\:cl-placeholder-transparent::-moz-placeholder {
    color: transparent !important;
  }

  .xl\:cl-placeholder-transparent::placeholder {
    color: transparent !important;
  }

  .xl\:cl-placeholder-current::-moz-placeholder {
    color: currentColor !important;
  }

  .xl\:cl-placeholder-current::placeholder {
    color: currentColor !important;
  }

  .xl\:cl-placeholder-black::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #000 !important;
    color: rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-black::placeholder {
    --placeholder-opacity: 1 !important;
    color: #000 !important;
    color: rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-white::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff !important;
    color: rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-white::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff !important;
    color: rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-gray-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f7fafc !important;
    color: rgba(247, 250, 252, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-gray-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f7fafc !important;
    color: rgba(247, 250, 252, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-gray-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #edf2f7 !important;
    color: rgba(237, 242, 247, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-gray-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #edf2f7 !important;
    color: rgba(237, 242, 247, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-gray-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e2e8f0 !important;
    color: rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-gray-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e2e8f0 !important;
    color: rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-gray-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #cbd5e0 !important;
    color: rgba(203, 213, 224, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-gray-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #cbd5e0 !important;
    color: rgba(203, 213, 224, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-gray-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #a0aec0 !important;
    color: rgba(160, 174, 192, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-gray-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #a0aec0 !important;
    color: rgba(160, 174, 192, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-gray-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #718096 !important;
    color: rgba(113, 128, 150, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-gray-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #718096 !important;
    color: rgba(113, 128, 150, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-gray-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #4a5568 !important;
    color: rgba(74, 85, 104, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-gray-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #4a5568 !important;
    color: rgba(74, 85, 104, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-gray-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2d3748 !important;
    color: rgba(45, 55, 72, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-gray-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2d3748 !important;
    color: rgba(45, 55, 72, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-gray-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #1a202c !important;
    color: rgba(26, 32, 44, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-gray-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #1a202c !important;
    color: rgba(26, 32, 44, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-red-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff5f5 !important;
    color: rgba(255, 245, 245, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-red-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff5f5 !important;
    color: rgba(255, 245, 245, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-red-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fed7d7 !important;
    color: rgba(254, 215, 215, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-red-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fed7d7 !important;
    color: rgba(254, 215, 215, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-red-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #feb2b2 !important;
    color: rgba(254, 178, 178, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-red-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #feb2b2 !important;
    color: rgba(254, 178, 178, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-red-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fc8181 !important;
    color: rgba(252, 129, 129, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-red-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fc8181 !important;
    color: rgba(252, 129, 129, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-red-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f56565 !important;
    color: rgba(245, 101, 101, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-red-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f56565 !important;
    color: rgba(245, 101, 101, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-red-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e53e3e !important;
    color: rgba(229, 62, 62, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-red-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e53e3e !important;
    color: rgba(229, 62, 62, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-red-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #c53030 !important;
    color: rgba(197, 48, 48, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-red-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #c53030 !important;
    color: rgba(197, 48, 48, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-red-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #9b2c2c !important;
    color: rgba(155, 44, 44, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-red-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #9b2c2c !important;
    color: rgba(155, 44, 44, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-red-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #742a2a !important;
    color: rgba(116, 42, 42, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-red-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #742a2a !important;
    color: rgba(116, 42, 42, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-orange-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fffaf0 !important;
    color: rgba(255, 250, 240, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-orange-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fffaf0 !important;
    color: rgba(255, 250, 240, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-orange-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #feebc8 !important;
    color: rgba(254, 235, 200, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-orange-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #feebc8 !important;
    color: rgba(254, 235, 200, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-orange-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fbd38d !important;
    color: rgba(251, 211, 141, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-orange-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fbd38d !important;
    color: rgba(251, 211, 141, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-orange-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f6ad55 !important;
    color: rgba(246, 173, 85, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-orange-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f6ad55 !important;
    color: rgba(246, 173, 85, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-orange-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ed8936 !important;
    color: rgba(237, 137, 54, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-orange-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ed8936 !important;
    color: rgba(237, 137, 54, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-orange-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #dd6b20 !important;
    color: rgba(221, 107, 32, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-orange-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #dd6b20 !important;
    color: rgba(221, 107, 32, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-orange-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #c05621 !important;
    color: rgba(192, 86, 33, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-orange-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #c05621 !important;
    color: rgba(192, 86, 33, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-orange-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #9c4221 !important;
    color: rgba(156, 66, 33, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-orange-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #9c4221 !important;
    color: rgba(156, 66, 33, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-orange-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #7b341e !important;
    color: rgba(123, 52, 30, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-orange-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #7b341e !important;
    color: rgba(123, 52, 30, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-yellow-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fffff0 !important;
    color: rgba(255, 255, 240, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-yellow-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fffff0 !important;
    color: rgba(255, 255, 240, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-yellow-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fefcbf !important;
    color: rgba(254, 252, 191, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-yellow-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fefcbf !important;
    color: rgba(254, 252, 191, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-yellow-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #faf089 !important;
    color: rgba(250, 240, 137, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-yellow-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #faf089 !important;
    color: rgba(250, 240, 137, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-yellow-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f6e05e !important;
    color: rgba(246, 224, 94, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-yellow-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f6e05e !important;
    color: rgba(246, 224, 94, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-yellow-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ecc94b !important;
    color: rgba(236, 201, 75, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-yellow-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ecc94b !important;
    color: rgba(236, 201, 75, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-yellow-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #d69e2e !important;
    color: rgba(214, 158, 46, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-yellow-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #d69e2e !important;
    color: rgba(214, 158, 46, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-yellow-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #b7791f !important;
    color: rgba(183, 121, 31, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-yellow-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #b7791f !important;
    color: rgba(183, 121, 31, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-yellow-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #975a16 !important;
    color: rgba(151, 90, 22, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-yellow-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #975a16 !important;
    color: rgba(151, 90, 22, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-yellow-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #744210 !important;
    color: rgba(116, 66, 16, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-yellow-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #744210 !important;
    color: rgba(116, 66, 16, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-green-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f0fff4 !important;
    color: rgba(240, 255, 244, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-green-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f0fff4 !important;
    color: rgba(240, 255, 244, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-green-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #c6f6d5 !important;
    color: rgba(198, 246, 213, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-green-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #c6f6d5 !important;
    color: rgba(198, 246, 213, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-green-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #9ae6b4 !important;
    color: rgba(154, 230, 180, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-green-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #9ae6b4 !important;
    color: rgba(154, 230, 180, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-green-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #68d391 !important;
    color: rgba(104, 211, 145, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-green-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #68d391 !important;
    color: rgba(104, 211, 145, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-green-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #48bb78 !important;
    color: rgba(72, 187, 120, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-green-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #48bb78 !important;
    color: rgba(72, 187, 120, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-green-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #38a169 !important;
    color: rgba(56, 161, 105, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-green-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #38a169 !important;
    color: rgba(56, 161, 105, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-green-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2f855a !important;
    color: rgba(47, 133, 90, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-green-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2f855a !important;
    color: rgba(47, 133, 90, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-green-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #276749 !important;
    color: rgba(39, 103, 73, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-green-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #276749 !important;
    color: rgba(39, 103, 73, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-green-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #22543d !important;
    color: rgba(34, 84, 61, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-green-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #22543d !important;
    color: rgba(34, 84, 61, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-teal-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e6fffa !important;
    color: rgba(230, 255, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-teal-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e6fffa !important;
    color: rgba(230, 255, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-teal-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #b2f5ea !important;
    color: rgba(178, 245, 234, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-teal-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #b2f5ea !important;
    color: rgba(178, 245, 234, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-teal-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #81e6d9 !important;
    color: rgba(129, 230, 217, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-teal-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #81e6d9 !important;
    color: rgba(129, 230, 217, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-teal-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #4fd1c5 !important;
    color: rgba(79, 209, 197, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-teal-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #4fd1c5 !important;
    color: rgba(79, 209, 197, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-teal-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #38b2ac !important;
    color: rgba(56, 178, 172, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-teal-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #38b2ac !important;
    color: rgba(56, 178, 172, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-teal-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #319795 !important;
    color: rgba(49, 151, 149, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-teal-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #319795 !important;
    color: rgba(49, 151, 149, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-teal-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2c7a7b !important;
    color: rgba(44, 122, 123, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-teal-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2c7a7b !important;
    color: rgba(44, 122, 123, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-teal-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #285e61 !important;
    color: rgba(40, 94, 97, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-teal-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #285e61 !important;
    color: rgba(40, 94, 97, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-teal-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #234e52 !important;
    color: rgba(35, 78, 82, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-teal-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #234e52 !important;
    color: rgba(35, 78, 82, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-blue-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ebf8ff !important;
    color: rgba(235, 248, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-blue-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ebf8ff !important;
    color: rgba(235, 248, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-blue-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #bee3f8 !important;
    color: rgba(190, 227, 248, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-blue-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #bee3f8 !important;
    color: rgba(190, 227, 248, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-blue-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #90cdf4 !important;
    color: rgba(144, 205, 244, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-blue-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #90cdf4 !important;
    color: rgba(144, 205, 244, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-blue-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #63b3ed !important;
    color: rgba(99, 179, 237, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-blue-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #63b3ed !important;
    color: rgba(99, 179, 237, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-blue-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #4299e1 !important;
    color: rgba(66, 153, 225, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-blue-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #4299e1 !important;
    color: rgba(66, 153, 225, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-blue-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #3182ce !important;
    color: rgba(49, 130, 206, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-blue-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #3182ce !important;
    color: rgba(49, 130, 206, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-blue-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2b6cb0 !important;
    color: rgba(43, 108, 176, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-blue-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2b6cb0 !important;
    color: rgba(43, 108, 176, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-blue-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2c5282 !important;
    color: rgba(44, 82, 130, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-blue-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2c5282 !important;
    color: rgba(44, 82, 130, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-blue-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2a4365 !important;
    color: rgba(42, 67, 101, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-blue-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2a4365 !important;
    color: rgba(42, 67, 101, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-indigo-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ebf4ff !important;
    color: rgba(235, 244, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-indigo-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ebf4ff !important;
    color: rgba(235, 244, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-indigo-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #c3dafe !important;
    color: rgba(195, 218, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-indigo-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #c3dafe !important;
    color: rgba(195, 218, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-indigo-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #a3bffa !important;
    color: rgba(163, 191, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-indigo-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #a3bffa !important;
    color: rgba(163, 191, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-indigo-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #7f9cf5 !important;
    color: rgba(127, 156, 245, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-indigo-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #7f9cf5 !important;
    color: rgba(127, 156, 245, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-indigo-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #667eea !important;
    color: rgba(102, 126, 234, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-indigo-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #667eea !important;
    color: rgba(102, 126, 234, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-indigo-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #5a67d8 !important;
    color: rgba(90, 103, 216, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-indigo-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #5a67d8 !important;
    color: rgba(90, 103, 216, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-indigo-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #4c51bf !important;
    color: rgba(76, 81, 191, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-indigo-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #4c51bf !important;
    color: rgba(76, 81, 191, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-indigo-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #434190 !important;
    color: rgba(67, 65, 144, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-indigo-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #434190 !important;
    color: rgba(67, 65, 144, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-indigo-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #3c366b !important;
    color: rgba(60, 54, 107, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-indigo-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #3c366b !important;
    color: rgba(60, 54, 107, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-purple-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #faf5ff !important;
    color: rgba(250, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-purple-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #faf5ff !important;
    color: rgba(250, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-purple-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e9d8fd !important;
    color: rgba(233, 216, 253, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-purple-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e9d8fd !important;
    color: rgba(233, 216, 253, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-purple-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #d6bcfa !important;
    color: rgba(214, 188, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-purple-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #d6bcfa !important;
    color: rgba(214, 188, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-purple-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #b794f4 !important;
    color: rgba(183, 148, 244, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-purple-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #b794f4 !important;
    color: rgba(183, 148, 244, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-purple-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #9f7aea !important;
    color: rgba(159, 122, 234, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-purple-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #9f7aea !important;
    color: rgba(159, 122, 234, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-purple-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #805ad5 !important;
    color: rgba(128, 90, 213, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-purple-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #805ad5 !important;
    color: rgba(128, 90, 213, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-purple-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #6b46c1 !important;
    color: rgba(107, 70, 193, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-purple-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #6b46c1 !important;
    color: rgba(107, 70, 193, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-purple-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #553c9a !important;
    color: rgba(85, 60, 154, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-purple-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #553c9a !important;
    color: rgba(85, 60, 154, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-purple-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #44337a !important;
    color: rgba(68, 51, 122, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-purple-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #44337a !important;
    color: rgba(68, 51, 122, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-pink-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff5f7 !important;
    color: rgba(255, 245, 247, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-pink-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff5f7 !important;
    color: rgba(255, 245, 247, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-pink-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fed7e2 !important;
    color: rgba(254, 215, 226, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-pink-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fed7e2 !important;
    color: rgba(254, 215, 226, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-pink-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fbb6ce !important;
    color: rgba(251, 182, 206, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-pink-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fbb6ce !important;
    color: rgba(251, 182, 206, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-pink-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f687b3 !important;
    color: rgba(246, 135, 179, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-pink-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f687b3 !important;
    color: rgba(246, 135, 179, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-pink-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ed64a6 !important;
    color: rgba(237, 100, 166, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-pink-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ed64a6 !important;
    color: rgba(237, 100, 166, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-pink-600::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #d53f8c !important;
    color: rgba(213, 63, 140, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-pink-600::placeholder {
    --placeholder-opacity: 1 !important;
    color: #d53f8c !important;
    color: rgba(213, 63, 140, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-pink-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #b83280 !important;
    color: rgba(184, 50, 128, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-pink-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #b83280 !important;
    color: rgba(184, 50, 128, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-pink-800::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #97266d !important;
    color: rgba(151, 38, 109, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-pink-800::placeholder {
    --placeholder-opacity: 1 !important;
    color: #97266d !important;
    color: rgba(151, 38, 109, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-pink-900::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #702459 !important;
    color: rgba(112, 36, 89, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-pink-900::placeholder {
    --placeholder-opacity: 1 !important;
    color: #702459 !important;
    color: rgba(112, 36, 89, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-ui-gray-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f1f1f1 !important;
    color: rgba(241, 241, 241, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-ui-gray-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f1f1f1 !important;
    color: rgba(241, 241, 241, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-ui-brown-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f3ecdc !important;
    color: rgba(243, 236, 220, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-ui-brown-100::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f3ecdc !important;
    color: rgba(243, 236, 220, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-ui-brown-200::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e8e0c9 !important;
    color: rgba(232, 224, 201, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-ui-brown-200::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e8e0c9 !important;
    color: rgba(232, 224, 201, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-ui-brown-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #d0c095 !important;
    color: rgba(208, 192, 149, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-ui-brown-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #d0c095 !important;
    color: rgba(208, 192, 149, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-ui-brown-700::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #bd6005 !important;
    color: rgba(189, 96, 5, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-ui-brown-700::placeholder {
    --placeholder-opacity: 1 !important;
    color: #bd6005 !important;
    color: rgba(189, 96, 5, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-ui-green-300::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #aac74c !important;
    color: rgba(170, 199, 76, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-ui-green-300::placeholder {
    --placeholder-opacity: 1 !important;
    color: #aac74c !important;
    color: rgba(170, 199, 76, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-ui-green-400::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #71893e !important;
    color: rgba(113, 137, 62, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-ui-green-400::placeholder {
    --placeholder-opacity: 1 !important;
    color: #71893e !important;
    color: rgba(113, 137, 62, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-ui-orange-500::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e27212 !important;
    color: rgba(226, 114, 18, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-ui-orange-500::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e27212 !important;
    color: rgba(226, 114, 18, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-facebook::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #3b5998 !important;
    color: rgba(59, 89, 152, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-facebook::placeholder {
    --placeholder-opacity: 1 !important;
    color: #3b5998 !important;
    color: rgba(59, 89, 152, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-twitter::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #00acee !important;
    color: rgba(0, 172, 238, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-twitter::placeholder {
    --placeholder-opacity: 1 !important;
    color: #00acee !important;
    color: rgba(0, 172, 238, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-twitch::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #6441a5 !important;
    color: rgba(100, 65, 165, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-twitch::placeholder {
    --placeholder-opacity: 1 !important;
    color: #6441a5 !important;
    color: rgba(100, 65, 165, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-youtube::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #FF0000 !important;
    color: rgba(255, 0, 0, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-youtube::placeholder {
    --placeholder-opacity: 1 !important;
    color: #FF0000 !important;
    color: rgba(255, 0, 0, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-transparent:focus::-moz-placeholder {
    color: transparent !important;
  }

  .xl\:focus\:cl-placeholder-transparent:focus::placeholder {
    color: transparent !important;
  }

  .xl\:focus\:cl-placeholder-current:focus::-moz-placeholder {
    color: currentColor !important;
  }

  .xl\:focus\:cl-placeholder-current:focus::placeholder {
    color: currentColor !important;
  }

  .xl\:focus\:cl-placeholder-black:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #000 !important;
    color: rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-black:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #000 !important;
    color: rgba(0, 0, 0, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-white:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff !important;
    color: rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-white:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff !important;
    color: rgba(255, 255, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-gray-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f7fafc !important;
    color: rgba(247, 250, 252, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-gray-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f7fafc !important;
    color: rgba(247, 250, 252, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-gray-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #edf2f7 !important;
    color: rgba(237, 242, 247, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-gray-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #edf2f7 !important;
    color: rgba(237, 242, 247, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-gray-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e2e8f0 !important;
    color: rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-gray-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e2e8f0 !important;
    color: rgba(226, 232, 240, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-gray-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #cbd5e0 !important;
    color: rgba(203, 213, 224, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-gray-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #cbd5e0 !important;
    color: rgba(203, 213, 224, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-gray-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #a0aec0 !important;
    color: rgba(160, 174, 192, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-gray-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #a0aec0 !important;
    color: rgba(160, 174, 192, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-gray-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #718096 !important;
    color: rgba(113, 128, 150, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-gray-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #718096 !important;
    color: rgba(113, 128, 150, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-gray-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #4a5568 !important;
    color: rgba(74, 85, 104, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-gray-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #4a5568 !important;
    color: rgba(74, 85, 104, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-gray-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2d3748 !important;
    color: rgba(45, 55, 72, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-gray-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2d3748 !important;
    color: rgba(45, 55, 72, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-gray-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #1a202c !important;
    color: rgba(26, 32, 44, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-gray-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #1a202c !important;
    color: rgba(26, 32, 44, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-red-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff5f5 !important;
    color: rgba(255, 245, 245, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-red-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff5f5 !important;
    color: rgba(255, 245, 245, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-red-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fed7d7 !important;
    color: rgba(254, 215, 215, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-red-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fed7d7 !important;
    color: rgba(254, 215, 215, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-red-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #feb2b2 !important;
    color: rgba(254, 178, 178, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-red-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #feb2b2 !important;
    color: rgba(254, 178, 178, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-red-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fc8181 !important;
    color: rgba(252, 129, 129, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-red-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fc8181 !important;
    color: rgba(252, 129, 129, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-red-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f56565 !important;
    color: rgba(245, 101, 101, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-red-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f56565 !important;
    color: rgba(245, 101, 101, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-red-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e53e3e !important;
    color: rgba(229, 62, 62, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-red-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e53e3e !important;
    color: rgba(229, 62, 62, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-red-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #c53030 !important;
    color: rgba(197, 48, 48, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-red-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #c53030 !important;
    color: rgba(197, 48, 48, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-red-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #9b2c2c !important;
    color: rgba(155, 44, 44, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-red-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #9b2c2c !important;
    color: rgba(155, 44, 44, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-red-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #742a2a !important;
    color: rgba(116, 42, 42, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-red-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #742a2a !important;
    color: rgba(116, 42, 42, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-orange-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fffaf0 !important;
    color: rgba(255, 250, 240, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-orange-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fffaf0 !important;
    color: rgba(255, 250, 240, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-orange-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #feebc8 !important;
    color: rgba(254, 235, 200, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-orange-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #feebc8 !important;
    color: rgba(254, 235, 200, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-orange-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fbd38d !important;
    color: rgba(251, 211, 141, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-orange-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fbd38d !important;
    color: rgba(251, 211, 141, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-orange-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f6ad55 !important;
    color: rgba(246, 173, 85, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-orange-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f6ad55 !important;
    color: rgba(246, 173, 85, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-orange-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ed8936 !important;
    color: rgba(237, 137, 54, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-orange-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ed8936 !important;
    color: rgba(237, 137, 54, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-orange-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #dd6b20 !important;
    color: rgba(221, 107, 32, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-orange-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #dd6b20 !important;
    color: rgba(221, 107, 32, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-orange-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #c05621 !important;
    color: rgba(192, 86, 33, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-orange-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #c05621 !important;
    color: rgba(192, 86, 33, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-orange-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #9c4221 !important;
    color: rgba(156, 66, 33, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-orange-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #9c4221 !important;
    color: rgba(156, 66, 33, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-orange-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #7b341e !important;
    color: rgba(123, 52, 30, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-orange-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #7b341e !important;
    color: rgba(123, 52, 30, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-yellow-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fffff0 !important;
    color: rgba(255, 255, 240, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-yellow-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fffff0 !important;
    color: rgba(255, 255, 240, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-yellow-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fefcbf !important;
    color: rgba(254, 252, 191, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-yellow-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fefcbf !important;
    color: rgba(254, 252, 191, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-yellow-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #faf089 !important;
    color: rgba(250, 240, 137, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-yellow-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #faf089 !important;
    color: rgba(250, 240, 137, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-yellow-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f6e05e !important;
    color: rgba(246, 224, 94, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-yellow-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f6e05e !important;
    color: rgba(246, 224, 94, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-yellow-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ecc94b !important;
    color: rgba(236, 201, 75, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-yellow-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ecc94b !important;
    color: rgba(236, 201, 75, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-yellow-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #d69e2e !important;
    color: rgba(214, 158, 46, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-yellow-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #d69e2e !important;
    color: rgba(214, 158, 46, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-yellow-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #b7791f !important;
    color: rgba(183, 121, 31, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-yellow-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #b7791f !important;
    color: rgba(183, 121, 31, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-yellow-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #975a16 !important;
    color: rgba(151, 90, 22, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-yellow-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #975a16 !important;
    color: rgba(151, 90, 22, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-yellow-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #744210 !important;
    color: rgba(116, 66, 16, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-yellow-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #744210 !important;
    color: rgba(116, 66, 16, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-green-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f0fff4 !important;
    color: rgba(240, 255, 244, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-green-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f0fff4 !important;
    color: rgba(240, 255, 244, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-green-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #c6f6d5 !important;
    color: rgba(198, 246, 213, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-green-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #c6f6d5 !important;
    color: rgba(198, 246, 213, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-green-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #9ae6b4 !important;
    color: rgba(154, 230, 180, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-green-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #9ae6b4 !important;
    color: rgba(154, 230, 180, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-green-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #68d391 !important;
    color: rgba(104, 211, 145, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-green-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #68d391 !important;
    color: rgba(104, 211, 145, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-green-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #48bb78 !important;
    color: rgba(72, 187, 120, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-green-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #48bb78 !important;
    color: rgba(72, 187, 120, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-green-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #38a169 !important;
    color: rgba(56, 161, 105, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-green-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #38a169 !important;
    color: rgba(56, 161, 105, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-green-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2f855a !important;
    color: rgba(47, 133, 90, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-green-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2f855a !important;
    color: rgba(47, 133, 90, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-green-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #276749 !important;
    color: rgba(39, 103, 73, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-green-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #276749 !important;
    color: rgba(39, 103, 73, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-green-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #22543d !important;
    color: rgba(34, 84, 61, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-green-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #22543d !important;
    color: rgba(34, 84, 61, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-teal-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e6fffa !important;
    color: rgba(230, 255, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-teal-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e6fffa !important;
    color: rgba(230, 255, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-teal-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #b2f5ea !important;
    color: rgba(178, 245, 234, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-teal-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #b2f5ea !important;
    color: rgba(178, 245, 234, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-teal-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #81e6d9 !important;
    color: rgba(129, 230, 217, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-teal-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #81e6d9 !important;
    color: rgba(129, 230, 217, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-teal-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #4fd1c5 !important;
    color: rgba(79, 209, 197, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-teal-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #4fd1c5 !important;
    color: rgba(79, 209, 197, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-teal-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #38b2ac !important;
    color: rgba(56, 178, 172, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-teal-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #38b2ac !important;
    color: rgba(56, 178, 172, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-teal-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #319795 !important;
    color: rgba(49, 151, 149, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-teal-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #319795 !important;
    color: rgba(49, 151, 149, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-teal-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2c7a7b !important;
    color: rgba(44, 122, 123, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-teal-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2c7a7b !important;
    color: rgba(44, 122, 123, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-teal-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #285e61 !important;
    color: rgba(40, 94, 97, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-teal-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #285e61 !important;
    color: rgba(40, 94, 97, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-teal-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #234e52 !important;
    color: rgba(35, 78, 82, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-teal-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #234e52 !important;
    color: rgba(35, 78, 82, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-blue-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ebf8ff !important;
    color: rgba(235, 248, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-blue-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ebf8ff !important;
    color: rgba(235, 248, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-blue-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #bee3f8 !important;
    color: rgba(190, 227, 248, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-blue-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #bee3f8 !important;
    color: rgba(190, 227, 248, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-blue-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #90cdf4 !important;
    color: rgba(144, 205, 244, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-blue-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #90cdf4 !important;
    color: rgba(144, 205, 244, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-blue-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #63b3ed !important;
    color: rgba(99, 179, 237, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-blue-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #63b3ed !important;
    color: rgba(99, 179, 237, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-blue-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #4299e1 !important;
    color: rgba(66, 153, 225, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-blue-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #4299e1 !important;
    color: rgba(66, 153, 225, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-blue-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #3182ce !important;
    color: rgba(49, 130, 206, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-blue-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #3182ce !important;
    color: rgba(49, 130, 206, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-blue-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2b6cb0 !important;
    color: rgba(43, 108, 176, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-blue-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2b6cb0 !important;
    color: rgba(43, 108, 176, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-blue-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2c5282 !important;
    color: rgba(44, 82, 130, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-blue-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2c5282 !important;
    color: rgba(44, 82, 130, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-blue-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #2a4365 !important;
    color: rgba(42, 67, 101, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-blue-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #2a4365 !important;
    color: rgba(42, 67, 101, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-indigo-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ebf4ff !important;
    color: rgba(235, 244, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-indigo-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ebf4ff !important;
    color: rgba(235, 244, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-indigo-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #c3dafe !important;
    color: rgba(195, 218, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-indigo-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #c3dafe !important;
    color: rgba(195, 218, 254, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-indigo-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #a3bffa !important;
    color: rgba(163, 191, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-indigo-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #a3bffa !important;
    color: rgba(163, 191, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-indigo-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #7f9cf5 !important;
    color: rgba(127, 156, 245, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-indigo-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #7f9cf5 !important;
    color: rgba(127, 156, 245, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-indigo-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #667eea !important;
    color: rgba(102, 126, 234, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-indigo-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #667eea !important;
    color: rgba(102, 126, 234, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-indigo-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #5a67d8 !important;
    color: rgba(90, 103, 216, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-indigo-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #5a67d8 !important;
    color: rgba(90, 103, 216, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-indigo-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #4c51bf !important;
    color: rgba(76, 81, 191, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-indigo-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #4c51bf !important;
    color: rgba(76, 81, 191, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-indigo-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #434190 !important;
    color: rgba(67, 65, 144, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-indigo-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #434190 !important;
    color: rgba(67, 65, 144, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-indigo-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #3c366b !important;
    color: rgba(60, 54, 107, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-indigo-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #3c366b !important;
    color: rgba(60, 54, 107, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-purple-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #faf5ff !important;
    color: rgba(250, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-purple-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #faf5ff !important;
    color: rgba(250, 245, 255, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-purple-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e9d8fd !important;
    color: rgba(233, 216, 253, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-purple-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e9d8fd !important;
    color: rgba(233, 216, 253, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-purple-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #d6bcfa !important;
    color: rgba(214, 188, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-purple-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #d6bcfa !important;
    color: rgba(214, 188, 250, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-purple-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #b794f4 !important;
    color: rgba(183, 148, 244, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-purple-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #b794f4 !important;
    color: rgba(183, 148, 244, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-purple-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #9f7aea !important;
    color: rgba(159, 122, 234, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-purple-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #9f7aea !important;
    color: rgba(159, 122, 234, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-purple-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #805ad5 !important;
    color: rgba(128, 90, 213, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-purple-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #805ad5 !important;
    color: rgba(128, 90, 213, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-purple-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #6b46c1 !important;
    color: rgba(107, 70, 193, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-purple-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #6b46c1 !important;
    color: rgba(107, 70, 193, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-purple-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #553c9a !important;
    color: rgba(85, 60, 154, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-purple-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #553c9a !important;
    color: rgba(85, 60, 154, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-purple-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #44337a !important;
    color: rgba(68, 51, 122, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-purple-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #44337a !important;
    color: rgba(68, 51, 122, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-pink-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff5f7 !important;
    color: rgba(255, 245, 247, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-pink-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fff5f7 !important;
    color: rgba(255, 245, 247, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-pink-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fed7e2 !important;
    color: rgba(254, 215, 226, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-pink-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fed7e2 !important;
    color: rgba(254, 215, 226, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-pink-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #fbb6ce !important;
    color: rgba(251, 182, 206, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-pink-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #fbb6ce !important;
    color: rgba(251, 182, 206, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-pink-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f687b3 !important;
    color: rgba(246, 135, 179, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-pink-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f687b3 !important;
    color: rgba(246, 135, 179, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-pink-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #ed64a6 !important;
    color: rgba(237, 100, 166, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-pink-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #ed64a6 !important;
    color: rgba(237, 100, 166, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-pink-600:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #d53f8c !important;
    color: rgba(213, 63, 140, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-pink-600:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #d53f8c !important;
    color: rgba(213, 63, 140, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-pink-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #b83280 !important;
    color: rgba(184, 50, 128, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-pink-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #b83280 !important;
    color: rgba(184, 50, 128, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-pink-800:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #97266d !important;
    color: rgba(151, 38, 109, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-pink-800:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #97266d !important;
    color: rgba(151, 38, 109, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-pink-900:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #702459 !important;
    color: rgba(112, 36, 89, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-pink-900:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #702459 !important;
    color: rgba(112, 36, 89, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-ui-gray-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f1f1f1 !important;
    color: rgba(241, 241, 241, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-ui-gray-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f1f1f1 !important;
    color: rgba(241, 241, 241, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-ui-brown-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #f3ecdc !important;
    color: rgba(243, 236, 220, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-ui-brown-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #f3ecdc !important;
    color: rgba(243, 236, 220, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-ui-brown-200:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e8e0c9 !important;
    color: rgba(232, 224, 201, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-ui-brown-200:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e8e0c9 !important;
    color: rgba(232, 224, 201, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-ui-brown-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #d0c095 !important;
    color: rgba(208, 192, 149, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-ui-brown-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #d0c095 !important;
    color: rgba(208, 192, 149, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-ui-brown-700:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #bd6005 !important;
    color: rgba(189, 96, 5, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-ui-brown-700:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #bd6005 !important;
    color: rgba(189, 96, 5, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-ui-green-300:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #aac74c !important;
    color: rgba(170, 199, 76, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-ui-green-300:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #aac74c !important;
    color: rgba(170, 199, 76, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-ui-green-400:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #71893e !important;
    color: rgba(113, 137, 62, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-ui-green-400:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #71893e !important;
    color: rgba(113, 137, 62, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-ui-orange-500:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #e27212 !important;
    color: rgba(226, 114, 18, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-ui-orange-500:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #e27212 !important;
    color: rgba(226, 114, 18, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-facebook:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #3b5998 !important;
    color: rgba(59, 89, 152, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-facebook:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #3b5998 !important;
    color: rgba(59, 89, 152, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-twitter:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #00acee !important;
    color: rgba(0, 172, 238, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-twitter:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #00acee !important;
    color: rgba(0, 172, 238, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-twitch:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #6441a5 !important;
    color: rgba(100, 65, 165, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-twitch:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #6441a5 !important;
    color: rgba(100, 65, 165, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-youtube:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
    color: #FF0000 !important;
    color: rgba(255, 0, 0, var(--placeholder-opacity)) !important;
  }

  .xl\:focus\:cl-placeholder-youtube:focus::placeholder {
    --placeholder-opacity: 1 !important;
    color: #FF0000 !important;
    color: rgba(255, 0, 0, var(--placeholder-opacity)) !important;
  }

  .xl\:cl-placeholder-opacity-0::-moz-placeholder {
    --placeholder-opacity: 0 !important;
  }

  .xl\:cl-placeholder-opacity-0::placeholder {
    --placeholder-opacity: 0 !important;
  }

  .xl\:cl-placeholder-opacity-25::-moz-placeholder {
    --placeholder-opacity: 0.25 !important;
  }

  .xl\:cl-placeholder-opacity-25::placeholder {
    --placeholder-opacity: 0.25 !important;
  }

  .xl\:cl-placeholder-opacity-50::-moz-placeholder {
    --placeholder-opacity: 0.5 !important;
  }

  .xl\:cl-placeholder-opacity-50::placeholder {
    --placeholder-opacity: 0.5 !important;
  }

  .xl\:cl-placeholder-opacity-75::-moz-placeholder {
    --placeholder-opacity: 0.75 !important;
  }

  .xl\:cl-placeholder-opacity-75::placeholder {
    --placeholder-opacity: 0.75 !important;
  }

  .xl\:cl-placeholder-opacity-100::-moz-placeholder {
    --placeholder-opacity: 1 !important;
  }

  .xl\:cl-placeholder-opacity-100::placeholder {
    --placeholder-opacity: 1 !important;
  }

  .xl\:focus\:cl-placeholder-opacity-0:focus::-moz-placeholder {
    --placeholder-opacity: 0 !important;
  }

  .xl\:focus\:cl-placeholder-opacity-0:focus::placeholder {
    --placeholder-opacity: 0 !important;
  }

  .xl\:focus\:cl-placeholder-opacity-25:focus::-moz-placeholder {
    --placeholder-opacity: 0.25 !important;
  }

  .xl\:focus\:cl-placeholder-opacity-25:focus::placeholder {
    --placeholder-opacity: 0.25 !important;
  }

  .xl\:focus\:cl-placeholder-opacity-50:focus::-moz-placeholder {
    --placeholder-opacity: 0.5 !important;
  }

  .xl\:focus\:cl-placeholder-opacity-50:focus::placeholder {
    --placeholder-opacity: 0.5 !important;
  }

  .xl\:focus\:cl-placeholder-opacity-75:focus::-moz-placeholder {
    --placeholder-opacity: 0.75 !important;
  }

  .xl\:focus\:cl-placeholder-opacity-75:focus::placeholder {
    --placeholder-opacity: 0.75 !important;
  }

  .xl\:focus\:cl-placeholder-opacity-100:focus::-moz-placeholder {
    --placeholder-opacity: 1 !important;
  }

  .xl\:focus\:cl-placeholder-opacity-100:focus::placeholder {
    --placeholder-opacity: 1 !important;
  }

  .xl\:cl-pointer-events-none {
    pointer-events: none !important;
  }

  .xl\:cl-pointer-events-auto {
    pointer-events: auto !important;
  }

  .xl\:cl-static {
    position: static !important;
  }

  .xl\:cl-fixed {
    position: fixed !important;
  }

  .xl\:cl-absolute {
    position: absolute !important;
  }

  .xl\:cl-relative {
    position: relative !important;
  }

  .xl\:cl-sticky {
    position: sticky !important;
  }

  .xl\:cl-inset-0 {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
  }

  .xl\:cl-inset-auto {
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }

  .xl\:cl-inset-y-0 {
    top: 0 !important;
    bottom: 0 !important;
  }

  .xl\:cl-inset-x-0 {
    right: 0 !important;
    left: 0 !important;
  }

  .xl\:cl-inset-y-auto {
    top: auto !important;
    bottom: auto !important;
  }

  .xl\:cl-inset-x-auto {
    right: auto !important;
    left: auto !important;
  }

  .xl\:cl-top-0 {
    top: 0 !important;
  }

  .xl\:cl-right-0 {
    right: 0 !important;
  }

  .xl\:cl-bottom-0 {
    bottom: 0 !important;
  }

  .xl\:cl-left-0 {
    left: 0 !important;
  }

  .xl\:cl-top-auto {
    top: auto !important;
  }

  .xl\:cl-right-auto {
    right: auto !important;
  }

  .xl\:cl-bottom-auto {
    bottom: auto !important;
  }

  .xl\:cl-left-auto {
    left: auto !important;
  }

  .xl\:cl-resize-none {
    resize: none !important;
  }

  .xl\:cl-resize-y {
    resize: vertical !important;
  }

  .xl\:cl-resize-x {
    resize: horizontal !important;
  }

  .xl\:cl-resize {
    resize: both !important;
  }

  .xl\:cl-shadow-xs {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  }

  .xl\:cl-shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .xl\:cl-shadow {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .xl\:cl-shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  }

  .xl\:cl-shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  }

  .xl\:cl-shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  }

  .xl\:cl-shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  }

  .xl\:cl-shadow-inner {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .xl\:cl-shadow-outline {
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5) !important;
  }

  .xl\:cl-shadow-none {
    box-shadow: none !important;
  }

  .xl\:cl-shadow-ui-wrapper {
    box-shadow: 2px 0 4px 1px #4b4b4b42 !important;
  }

  .xl\:cl-shadow-ui-btn-lg {
    box-shadow: 0 8px 0 0 #c9c3b0 !important;
  }

  .xl\:cl-shadow-ui-btn {
    box-shadow: 0 5px 0 0 #c9c3b0 !important;
  }

  .xl\:cl-shadow-ui-leaderboard {
    box-shadow: 0 7px 0 0 #a76d28 !important;
  }

  .xl\:cl-shadow-ui-leaderboard-normal {
    box-shadow: 0 5px 0 0 #c3c3c3 !important;
  }

  .xl\:cl-shadow-ui-divider-l {
    box-shadow: -1px 0 0 0 #b5a881 !important;
  }

  .xl\:hover\:cl-shadow-xs:hover {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  }

  .xl\:hover\:cl-shadow-sm:hover {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .xl\:hover\:cl-shadow:hover {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .xl\:hover\:cl-shadow-md:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  }

  .xl\:hover\:cl-shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  }

  .xl\:hover\:cl-shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  }

  .xl\:hover\:cl-shadow-2xl:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  }

  .xl\:hover\:cl-shadow-inner:hover {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .xl\:hover\:cl-shadow-outline:hover {
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5) !important;
  }

  .xl\:hover\:cl-shadow-none:hover {
    box-shadow: none !important;
  }

  .xl\:hover\:cl-shadow-ui-wrapper:hover {
    box-shadow: 2px 0 4px 1px #4b4b4b42 !important;
  }

  .xl\:hover\:cl-shadow-ui-btn-lg:hover {
    box-shadow: 0 8px 0 0 #c9c3b0 !important;
  }

  .xl\:hover\:cl-shadow-ui-btn:hover {
    box-shadow: 0 5px 0 0 #c9c3b0 !important;
  }

  .xl\:hover\:cl-shadow-ui-leaderboard:hover {
    box-shadow: 0 7px 0 0 #a76d28 !important;
  }

  .xl\:hover\:cl-shadow-ui-leaderboard-normal:hover {
    box-shadow: 0 5px 0 0 #c3c3c3 !important;
  }

  .xl\:hover\:cl-shadow-ui-divider-l:hover {
    box-shadow: -1px 0 0 0 #b5a881 !important;
  }

  .xl\:focus\:cl-shadow-xs:focus {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  }

  .xl\:focus\:cl-shadow-sm:focus {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .xl\:focus\:cl-shadow:focus {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .xl\:focus\:cl-shadow-md:focus {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  }

  .xl\:focus\:cl-shadow-lg:focus {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  }

  .xl\:focus\:cl-shadow-xl:focus {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  }

  .xl\:focus\:cl-shadow-2xl:focus {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  }

  .xl\:focus\:cl-shadow-inner:focus {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .xl\:focus\:cl-shadow-outline:focus {
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5) !important;
  }

  .xl\:focus\:cl-shadow-none:focus {
    box-shadow: none !important;
  }

  .xl\:focus\:cl-shadow-ui-wrapper:focus {
    box-shadow: 2px 0 4px 1px #4b4b4b42 !important;
  }

  .xl\:focus\:cl-shadow-ui-btn-lg:focus {
    box-shadow: 0 8px 0 0 #c9c3b0 !important;
  }

  .xl\:focus\:cl-shadow-ui-btn:focus {
    box-shadow: 0 5px 0 0 #c9c3b0 !important;
  }

  .xl\:focus\:cl-shadow-ui-leaderboard:focus {
    box-shadow: 0 7px 0 0 #a76d28 !important;
  }

  .xl\:focus\:cl-shadow-ui-leaderboard-normal:focus {
    box-shadow: 0 5px 0 0 #c3c3c3 !important;
  }

  .xl\:focus\:cl-shadow-ui-divider-l:focus {
    box-shadow: -1px 0 0 0 #b5a881 !important;
  }

  .xl\:active\:cl-shadow-xs:active {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  }

  .xl\:active\:cl-shadow-sm:active {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  }

  .xl\:active\:cl-shadow:active {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .xl\:active\:cl-shadow-md:active {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  }

  .xl\:active\:cl-shadow-lg:active {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  }

  .xl\:active\:cl-shadow-xl:active {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  }

  .xl\:active\:cl-shadow-2xl:active {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  }

  .xl\:active\:cl-shadow-inner:active {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }

  .xl\:active\:cl-shadow-outline:active {
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5) !important;
  }

  .xl\:active\:cl-shadow-none:active {
    box-shadow: none !important;
  }

  .xl\:active\:cl-shadow-ui-wrapper:active {
    box-shadow: 2px 0 4px 1px #4b4b4b42 !important;
  }

  .xl\:active\:cl-shadow-ui-btn-lg:active {
    box-shadow: 0 8px 0 0 #c9c3b0 !important;
  }

  .xl\:active\:cl-shadow-ui-btn:active {
    box-shadow: 0 5px 0 0 #c9c3b0 !important;
  }

  .xl\:active\:cl-shadow-ui-leaderboard:active {
    box-shadow: 0 7px 0 0 #a76d28 !important;
  }

  .xl\:active\:cl-shadow-ui-leaderboard-normal:active {
    box-shadow: 0 5px 0 0 #c3c3c3 !important;
  }

  .xl\:active\:cl-shadow-ui-divider-l:active {
    box-shadow: -1px 0 0 0 #b5a881 !important;
  }

  .xl\:cl-fill-current {
    fill: currentColor !important;
  }

  .xl\:cl-stroke-current {
    stroke: currentColor !important;
  }

  .xl\:cl-stroke-0 {
    stroke-width: 0 !important;
  }

  .xl\:cl-stroke-1 {
    stroke-width: 1 !important;
  }

  .xl\:cl-stroke-2 {
    stroke-width: 2 !important;
  }

  .xl\:cl-table-auto {
    table-layout: auto !important;
  }

  .xl\:cl-table-fixed {
    table-layout: fixed !important;
  }

  .xl\:cl-text-left {
    text-align: left !important;
  }

  .xl\:cl-text-center {
    text-align: center !important;
  }

  .xl\:cl-text-right {
    text-align: right !important;
  }

  .xl\:cl-text-justify {
    text-align: justify !important;
  }

  .xl\:cl-text-transparent {
    color: transparent !important;
  }

  .xl\:cl-text-current {
    color: currentColor !important;
  }

  .xl\:cl-text-black {
    --text-opacity: 1 !important;
    color: #000 !important;
    color: rgba(0, 0, 0, var(--text-opacity)) !important;
  }

  .xl\:cl-text-white {
    --text-opacity: 1 !important;
    color: #fff !important;
    color: rgba(255, 255, 255, var(--text-opacity)) !important;
  }

  .xl\:cl-text-gray-100 {
    --text-opacity: 1 !important;
    color: #f7fafc !important;
    color: rgba(247, 250, 252, var(--text-opacity)) !important;
  }

  .xl\:cl-text-gray-200 {
    --text-opacity: 1 !important;
    color: #edf2f7 !important;
    color: rgba(237, 242, 247, var(--text-opacity)) !important;
  }

  .xl\:cl-text-gray-300 {
    --text-opacity: 1 !important;
    color: #e2e8f0 !important;
    color: rgba(226, 232, 240, var(--text-opacity)) !important;
  }

  .xl\:cl-text-gray-400 {
    --text-opacity: 1 !important;
    color: #cbd5e0 !important;
    color: rgba(203, 213, 224, var(--text-opacity)) !important;
  }

  .xl\:cl-text-gray-500 {
    --text-opacity: 1 !important;
    color: #a0aec0 !important;
    color: rgba(160, 174, 192, var(--text-opacity)) !important;
  }

  .xl\:cl-text-gray-600 {
    --text-opacity: 1 !important;
    color: #718096 !important;
    color: rgba(113, 128, 150, var(--text-opacity)) !important;
  }

  .xl\:cl-text-gray-700 {
    --text-opacity: 1 !important;
    color: #4a5568 !important;
    color: rgba(74, 85, 104, var(--text-opacity)) !important;
  }

  .xl\:cl-text-gray-800 {
    --text-opacity: 1 !important;
    color: #2d3748 !important;
    color: rgba(45, 55, 72, var(--text-opacity)) !important;
  }

  .xl\:cl-text-gray-900 {
    --text-opacity: 1 !important;
    color: #1a202c !important;
    color: rgba(26, 32, 44, var(--text-opacity)) !important;
  }

  .xl\:cl-text-red-100 {
    --text-opacity: 1 !important;
    color: #fff5f5 !important;
    color: rgba(255, 245, 245, var(--text-opacity)) !important;
  }

  .xl\:cl-text-red-200 {
    --text-opacity: 1 !important;
    color: #fed7d7 !important;
    color: rgba(254, 215, 215, var(--text-opacity)) !important;
  }

  .xl\:cl-text-red-300 {
    --text-opacity: 1 !important;
    color: #feb2b2 !important;
    color: rgba(254, 178, 178, var(--text-opacity)) !important;
  }

  .xl\:cl-text-red-400 {
    --text-opacity: 1 !important;
    color: #fc8181 !important;
    color: rgba(252, 129, 129, var(--text-opacity)) !important;
  }

  .xl\:cl-text-red-500 {
    --text-opacity: 1 !important;
    color: #f56565 !important;
    color: rgba(245, 101, 101, var(--text-opacity)) !important;
  }

  .xl\:cl-text-red-600 {
    --text-opacity: 1 !important;
    color: #e53e3e !important;
    color: rgba(229, 62, 62, var(--text-opacity)) !important;
  }

  .xl\:cl-text-red-700 {
    --text-opacity: 1 !important;
    color: #c53030 !important;
    color: rgba(197, 48, 48, var(--text-opacity)) !important;
  }

  .xl\:cl-text-red-800 {
    --text-opacity: 1 !important;
    color: #9b2c2c !important;
    color: rgba(155, 44, 44, var(--text-opacity)) !important;
  }

  .xl\:cl-text-red-900 {
    --text-opacity: 1 !important;
    color: #742a2a !important;
    color: rgba(116, 42, 42, var(--text-opacity)) !important;
  }

  .xl\:cl-text-orange-100 {
    --text-opacity: 1 !important;
    color: #fffaf0 !important;
    color: rgba(255, 250, 240, var(--text-opacity)) !important;
  }

  .xl\:cl-text-orange-200 {
    --text-opacity: 1 !important;
    color: #feebc8 !important;
    color: rgba(254, 235, 200, var(--text-opacity)) !important;
  }

  .xl\:cl-text-orange-300 {
    --text-opacity: 1 !important;
    color: #fbd38d !important;
    color: rgba(251, 211, 141, var(--text-opacity)) !important;
  }

  .xl\:cl-text-orange-400 {
    --text-opacity: 1 !important;
    color: #f6ad55 !important;
    color: rgba(246, 173, 85, var(--text-opacity)) !important;
  }

  .xl\:cl-text-orange-500 {
    --text-opacity: 1 !important;
    color: #ed8936 !important;
    color: rgba(237, 137, 54, var(--text-opacity)) !important;
  }

  .xl\:cl-text-orange-600 {
    --text-opacity: 1 !important;
    color: #dd6b20 !important;
    color: rgba(221, 107, 32, var(--text-opacity)) !important;
  }

  .xl\:cl-text-orange-700 {
    --text-opacity: 1 !important;
    color: #c05621 !important;
    color: rgba(192, 86, 33, var(--text-opacity)) !important;
  }

  .xl\:cl-text-orange-800 {
    --text-opacity: 1 !important;
    color: #9c4221 !important;
    color: rgba(156, 66, 33, var(--text-opacity)) !important;
  }

  .xl\:cl-text-orange-900 {
    --text-opacity: 1 !important;
    color: #7b341e !important;
    color: rgba(123, 52, 30, var(--text-opacity)) !important;
  }

  .xl\:cl-text-yellow-100 {
    --text-opacity: 1 !important;
    color: #fffff0 !important;
    color: rgba(255, 255, 240, var(--text-opacity)) !important;
  }

  .xl\:cl-text-yellow-200 {
    --text-opacity: 1 !important;
    color: #fefcbf !important;
    color: rgba(254, 252, 191, var(--text-opacity)) !important;
  }

  .xl\:cl-text-yellow-300 {
    --text-opacity: 1 !important;
    color: #faf089 !important;
    color: rgba(250, 240, 137, var(--text-opacity)) !important;
  }

  .xl\:cl-text-yellow-400 {
    --text-opacity: 1 !important;
    color: #f6e05e !important;
    color: rgba(246, 224, 94, var(--text-opacity)) !important;
  }

  .xl\:cl-text-yellow-500 {
    --text-opacity: 1 !important;
    color: #ecc94b !important;
    color: rgba(236, 201, 75, var(--text-opacity)) !important;
  }

  .xl\:cl-text-yellow-600 {
    --text-opacity: 1 !important;
    color: #d69e2e !important;
    color: rgba(214, 158, 46, var(--text-opacity)) !important;
  }

  .xl\:cl-text-yellow-700 {
    --text-opacity: 1 !important;
    color: #b7791f !important;
    color: rgba(183, 121, 31, var(--text-opacity)) !important;
  }

  .xl\:cl-text-yellow-800 {
    --text-opacity: 1 !important;
    color: #975a16 !important;
    color: rgba(151, 90, 22, var(--text-opacity)) !important;
  }

  .xl\:cl-text-yellow-900 {
    --text-opacity: 1 !important;
    color: #744210 !important;
    color: rgba(116, 66, 16, var(--text-opacity)) !important;
  }

  .xl\:cl-text-green-100 {
    --text-opacity: 1 !important;
    color: #f0fff4 !important;
    color: rgba(240, 255, 244, var(--text-opacity)) !important;
  }

  .xl\:cl-text-green-200 {
    --text-opacity: 1 !important;
    color: #c6f6d5 !important;
    color: rgba(198, 246, 213, var(--text-opacity)) !important;
  }

  .xl\:cl-text-green-300 {
    --text-opacity: 1 !important;
    color: #9ae6b4 !important;
    color: rgba(154, 230, 180, var(--text-opacity)) !important;
  }

  .xl\:cl-text-green-400 {
    --text-opacity: 1 !important;
    color: #68d391 !important;
    color: rgba(104, 211, 145, var(--text-opacity)) !important;
  }

  .xl\:cl-text-green-500 {
    --text-opacity: 1 !important;
    color: #48bb78 !important;
    color: rgba(72, 187, 120, var(--text-opacity)) !important;
  }

  .xl\:cl-text-green-600 {
    --text-opacity: 1 !important;
    color: #38a169 !important;
    color: rgba(56, 161, 105, var(--text-opacity)) !important;
  }

  .xl\:cl-text-green-700 {
    --text-opacity: 1 !important;
    color: #2f855a !important;
    color: rgba(47, 133, 90, var(--text-opacity)) !important;
  }

  .xl\:cl-text-green-800 {
    --text-opacity: 1 !important;
    color: #276749 !important;
    color: rgba(39, 103, 73, var(--text-opacity)) !important;
  }

  .xl\:cl-text-green-900 {
    --text-opacity: 1 !important;
    color: #22543d !important;
    color: rgba(34, 84, 61, var(--text-opacity)) !important;
  }

  .xl\:cl-text-teal-100 {
    --text-opacity: 1 !important;
    color: #e6fffa !important;
    color: rgba(230, 255, 250, var(--text-opacity)) !important;
  }

  .xl\:cl-text-teal-200 {
    --text-opacity: 1 !important;
    color: #b2f5ea !important;
    color: rgba(178, 245, 234, var(--text-opacity)) !important;
  }

  .xl\:cl-text-teal-300 {
    --text-opacity: 1 !important;
    color: #81e6d9 !important;
    color: rgba(129, 230, 217, var(--text-opacity)) !important;
  }

  .xl\:cl-text-teal-400 {
    --text-opacity: 1 !important;
    color: #4fd1c5 !important;
    color: rgba(79, 209, 197, var(--text-opacity)) !important;
  }

  .xl\:cl-text-teal-500 {
    --text-opacity: 1 !important;
    color: #38b2ac !important;
    color: rgba(56, 178, 172, var(--text-opacity)) !important;
  }

  .xl\:cl-text-teal-600 {
    --text-opacity: 1 !important;
    color: #319795 !important;
    color: rgba(49, 151, 149, var(--text-opacity)) !important;
  }

  .xl\:cl-text-teal-700 {
    --text-opacity: 1 !important;
    color: #2c7a7b !important;
    color: rgba(44, 122, 123, var(--text-opacity)) !important;
  }

  .xl\:cl-text-teal-800 {
    --text-opacity: 1 !important;
    color: #285e61 !important;
    color: rgba(40, 94, 97, var(--text-opacity)) !important;
  }

  .xl\:cl-text-teal-900 {
    --text-opacity: 1 !important;
    color: #234e52 !important;
    color: rgba(35, 78, 82, var(--text-opacity)) !important;
  }

  .xl\:cl-text-blue-100 {
    --text-opacity: 1 !important;
    color: #ebf8ff !important;
    color: rgba(235, 248, 255, var(--text-opacity)) !important;
  }

  .xl\:cl-text-blue-200 {
    --text-opacity: 1 !important;
    color: #bee3f8 !important;
    color: rgba(190, 227, 248, var(--text-opacity)) !important;
  }

  .xl\:cl-text-blue-300 {
    --text-opacity: 1 !important;
    color: #90cdf4 !important;
    color: rgba(144, 205, 244, var(--text-opacity)) !important;
  }

  .xl\:cl-text-blue-400 {
    --text-opacity: 1 !important;
    color: #63b3ed !important;
    color: rgba(99, 179, 237, var(--text-opacity)) !important;
  }

  .xl\:cl-text-blue-500 {
    --text-opacity: 1 !important;
    color: #4299e1 !important;
    color: rgba(66, 153, 225, var(--text-opacity)) !important;
  }

  .xl\:cl-text-blue-600 {
    --text-opacity: 1 !important;
    color: #3182ce !important;
    color: rgba(49, 130, 206, var(--text-opacity)) !important;
  }

  .xl\:cl-text-blue-700 {
    --text-opacity: 1 !important;
    color: #2b6cb0 !important;
    color: rgba(43, 108, 176, var(--text-opacity)) !important;
  }

  .xl\:cl-text-blue-800 {
    --text-opacity: 1 !important;
    color: #2c5282 !important;
    color: rgba(44, 82, 130, var(--text-opacity)) !important;
  }

  .xl\:cl-text-blue-900 {
    --text-opacity: 1 !important;
    color: #2a4365 !important;
    color: rgba(42, 67, 101, var(--text-opacity)) !important;
  }

  .xl\:cl-text-indigo-100 {
    --text-opacity: 1 !important;
    color: #ebf4ff !important;
    color: rgba(235, 244, 255, var(--text-opacity)) !important;
  }

  .xl\:cl-text-indigo-200 {
    --text-opacity: 1 !important;
    color: #c3dafe !important;
    color: rgba(195, 218, 254, var(--text-opacity)) !important;
  }

  .xl\:cl-text-indigo-300 {
    --text-opacity: 1 !important;
    color: #a3bffa !important;
    color: rgba(163, 191, 250, var(--text-opacity)) !important;
  }

  .xl\:cl-text-indigo-400 {
    --text-opacity: 1 !important;
    color: #7f9cf5 !important;
    color: rgba(127, 156, 245, var(--text-opacity)) !important;
  }

  .xl\:cl-text-indigo-500 {
    --text-opacity: 1 !important;
    color: #667eea !important;
    color: rgba(102, 126, 234, var(--text-opacity)) !important;
  }

  .xl\:cl-text-indigo-600 {
    --text-opacity: 1 !important;
    color: #5a67d8 !important;
    color: rgba(90, 103, 216, var(--text-opacity)) !important;
  }

  .xl\:cl-text-indigo-700 {
    --text-opacity: 1 !important;
    color: #4c51bf !important;
    color: rgba(76, 81, 191, var(--text-opacity)) !important;
  }

  .xl\:cl-text-indigo-800 {
    --text-opacity: 1 !important;
    color: #434190 !important;
    color: rgba(67, 65, 144, var(--text-opacity)) !important;
  }

  .xl\:cl-text-indigo-900 {
    --text-opacity: 1 !important;
    color: #3c366b !important;
    color: rgba(60, 54, 107, var(--text-opacity)) !important;
  }

  .xl\:cl-text-purple-100 {
    --text-opacity: 1 !important;
    color: #faf5ff !important;
    color: rgba(250, 245, 255, var(--text-opacity)) !important;
  }

  .xl\:cl-text-purple-200 {
    --text-opacity: 1 !important;
    color: #e9d8fd !important;
    color: rgba(233, 216, 253, var(--text-opacity)) !important;
  }

  .xl\:cl-text-purple-300 {
    --text-opacity: 1 !important;
    color: #d6bcfa !important;
    color: rgba(214, 188, 250, var(--text-opacity)) !important;
  }

  .xl\:cl-text-purple-400 {
    --text-opacity: 1 !important;
    color: #b794f4 !important;
    color: rgba(183, 148, 244, var(--text-opacity)) !important;
  }

  .xl\:cl-text-purple-500 {
    --text-opacity: 1 !important;
    color: #9f7aea !important;
    color: rgba(159, 122, 234, var(--text-opacity)) !important;
  }

  .xl\:cl-text-purple-600 {
    --text-opacity: 1 !important;
    color: #805ad5 !important;
    color: rgba(128, 90, 213, var(--text-opacity)) !important;
  }

  .xl\:cl-text-purple-700 {
    --text-opacity: 1 !important;
    color: #6b46c1 !important;
    color: rgba(107, 70, 193, var(--text-opacity)) !important;
  }

  .xl\:cl-text-purple-800 {
    --text-opacity: 1 !important;
    color: #553c9a !important;
    color: rgba(85, 60, 154, var(--text-opacity)) !important;
  }

  .xl\:cl-text-purple-900 {
    --text-opacity: 1 !important;
    color: #44337a !important;
    color: rgba(68, 51, 122, var(--text-opacity)) !important;
  }

  .xl\:cl-text-pink-100 {
    --text-opacity: 1 !important;
    color: #fff5f7 !important;
    color: rgba(255, 245, 247, var(--text-opacity)) !important;
  }

  .xl\:cl-text-pink-200 {
    --text-opacity: 1 !important;
    color: #fed7e2 !important;
    color: rgba(254, 215, 226, var(--text-opacity)) !important;
  }

  .xl\:cl-text-pink-300 {
    --text-opacity: 1 !important;
    color: #fbb6ce !important;
    color: rgba(251, 182, 206, var(--text-opacity)) !important;
  }

  .xl\:cl-text-pink-400 {
    --text-opacity: 1 !important;
    color: #f687b3 !important;
    color: rgba(246, 135, 179, var(--text-opacity)) !important;
  }

  .xl\:cl-text-pink-500 {
    --text-opacity: 1 !important;
    color: #ed64a6 !important;
    color: rgba(237, 100, 166, var(--text-opacity)) !important;
  }

  .xl\:cl-text-pink-600 {
    --text-opacity: 1 !important;
    color: #d53f8c !important;
    color: rgba(213, 63, 140, var(--text-opacity)) !important;
  }

  .xl\:cl-text-pink-700 {
    --text-opacity: 1 !important;
    color: #b83280 !important;
    color: rgba(184, 50, 128, var(--text-opacity)) !important;
  }

  .xl\:cl-text-pink-800 {
    --text-opacity: 1 !important;
    color: #97266d !important;
    color: rgba(151, 38, 109, var(--text-opacity)) !important;
  }

  .xl\:cl-text-pink-900 {
    --text-opacity: 1 !important;
    color: #702459 !important;
    color: rgba(112, 36, 89, var(--text-opacity)) !important;
  }

  .xl\:cl-text-ui-gray-100 {
    --text-opacity: 1 !important;
    color: #f1f1f1 !important;
    color: rgba(241, 241, 241, var(--text-opacity)) !important;
  }

  .xl\:cl-text-ui-brown-100 {
    --text-opacity: 1 !important;
    color: #f3ecdc !important;
    color: rgba(243, 236, 220, var(--text-opacity)) !important;
  }

  .xl\:cl-text-ui-brown-200 {
    --text-opacity: 1 !important;
    color: #e8e0c9 !important;
    color: rgba(232, 224, 201, var(--text-opacity)) !important;
  }

  .xl\:cl-text-ui-brown-300 {
    --text-opacity: 1 !important;
    color: #d0c095 !important;
    color: rgba(208, 192, 149, var(--text-opacity)) !important;
  }

  .xl\:cl-text-ui-brown-700 {
    --text-opacity: 1 !important;
    color: #bd6005 !important;
    color: rgba(189, 96, 5, var(--text-opacity)) !important;
  }

  .xl\:cl-text-ui-green-300 {
    --text-opacity: 1 !important;
    color: #aac74c !important;
    color: rgba(170, 199, 76, var(--text-opacity)) !important;
  }

  .xl\:cl-text-ui-green-400 {
    --text-opacity: 1 !important;
    color: #71893e !important;
    color: rgba(113, 137, 62, var(--text-opacity)) !important;
  }

  .xl\:cl-text-ui-orange-500 {
    --text-opacity: 1 !important;
    color: #e27212 !important;
    color: rgba(226, 114, 18, var(--text-opacity)) !important;
  }

  .xl\:cl-text-facebook {
    --text-opacity: 1 !important;
    color: #3b5998 !important;
    color: rgba(59, 89, 152, var(--text-opacity)) !important;
  }

  .xl\:cl-text-twitter {
    --text-opacity: 1 !important;
    color: #00acee !important;
    color: rgba(0, 172, 238, var(--text-opacity)) !important;
  }

  .xl\:cl-text-twitch {
    --text-opacity: 1 !important;
    color: #6441a5 !important;
    color: rgba(100, 65, 165, var(--text-opacity)) !important;
  }

  .xl\:cl-text-youtube {
    --text-opacity: 1 !important;
    color: #FF0000 !important;
    color: rgba(255, 0, 0, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-transparent:hover {
    color: transparent !important;
  }

  .xl\:hover\:cl-text-current:hover {
    color: currentColor !important;
  }

  .xl\:hover\:cl-text-black:hover {
    --text-opacity: 1 !important;
    color: #000 !important;
    color: rgba(0, 0, 0, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-white:hover {
    --text-opacity: 1 !important;
    color: #fff !important;
    color: rgba(255, 255, 255, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-gray-100:hover {
    --text-opacity: 1 !important;
    color: #f7fafc !important;
    color: rgba(247, 250, 252, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-gray-200:hover {
    --text-opacity: 1 !important;
    color: #edf2f7 !important;
    color: rgba(237, 242, 247, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-gray-300:hover {
    --text-opacity: 1 !important;
    color: #e2e8f0 !important;
    color: rgba(226, 232, 240, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-gray-400:hover {
    --text-opacity: 1 !important;
    color: #cbd5e0 !important;
    color: rgba(203, 213, 224, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-gray-500:hover {
    --text-opacity: 1 !important;
    color: #a0aec0 !important;
    color: rgba(160, 174, 192, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-gray-600:hover {
    --text-opacity: 1 !important;
    color: #718096 !important;
    color: rgba(113, 128, 150, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-gray-700:hover {
    --text-opacity: 1 !important;
    color: #4a5568 !important;
    color: rgba(74, 85, 104, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-gray-800:hover {
    --text-opacity: 1 !important;
    color: #2d3748 !important;
    color: rgba(45, 55, 72, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-gray-900:hover {
    --text-opacity: 1 !important;
    color: #1a202c !important;
    color: rgba(26, 32, 44, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-red-100:hover {
    --text-opacity: 1 !important;
    color: #fff5f5 !important;
    color: rgba(255, 245, 245, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-red-200:hover {
    --text-opacity: 1 !important;
    color: #fed7d7 !important;
    color: rgba(254, 215, 215, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-red-300:hover {
    --text-opacity: 1 !important;
    color: #feb2b2 !important;
    color: rgba(254, 178, 178, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-red-400:hover {
    --text-opacity: 1 !important;
    color: #fc8181 !important;
    color: rgba(252, 129, 129, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-red-500:hover {
    --text-opacity: 1 !important;
    color: #f56565 !important;
    color: rgba(245, 101, 101, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-red-600:hover {
    --text-opacity: 1 !important;
    color: #e53e3e !important;
    color: rgba(229, 62, 62, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-red-700:hover {
    --text-opacity: 1 !important;
    color: #c53030 !important;
    color: rgba(197, 48, 48, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-red-800:hover {
    --text-opacity: 1 !important;
    color: #9b2c2c !important;
    color: rgba(155, 44, 44, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-red-900:hover {
    --text-opacity: 1 !important;
    color: #742a2a !important;
    color: rgba(116, 42, 42, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-orange-100:hover {
    --text-opacity: 1 !important;
    color: #fffaf0 !important;
    color: rgba(255, 250, 240, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-orange-200:hover {
    --text-opacity: 1 !important;
    color: #feebc8 !important;
    color: rgba(254, 235, 200, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-orange-300:hover {
    --text-opacity: 1 !important;
    color: #fbd38d !important;
    color: rgba(251, 211, 141, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-orange-400:hover {
    --text-opacity: 1 !important;
    color: #f6ad55 !important;
    color: rgba(246, 173, 85, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-orange-500:hover {
    --text-opacity: 1 !important;
    color: #ed8936 !important;
    color: rgba(237, 137, 54, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-orange-600:hover {
    --text-opacity: 1 !important;
    color: #dd6b20 !important;
    color: rgba(221, 107, 32, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-orange-700:hover {
    --text-opacity: 1 !important;
    color: #c05621 !important;
    color: rgba(192, 86, 33, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-orange-800:hover {
    --text-opacity: 1 !important;
    color: #9c4221 !important;
    color: rgba(156, 66, 33, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-orange-900:hover {
    --text-opacity: 1 !important;
    color: #7b341e !important;
    color: rgba(123, 52, 30, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-yellow-100:hover {
    --text-opacity: 1 !important;
    color: #fffff0 !important;
    color: rgba(255, 255, 240, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-yellow-200:hover {
    --text-opacity: 1 !important;
    color: #fefcbf !important;
    color: rgba(254, 252, 191, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-yellow-300:hover {
    --text-opacity: 1 !important;
    color: #faf089 !important;
    color: rgba(250, 240, 137, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-yellow-400:hover {
    --text-opacity: 1 !important;
    color: #f6e05e !important;
    color: rgba(246, 224, 94, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-yellow-500:hover {
    --text-opacity: 1 !important;
    color: #ecc94b !important;
    color: rgba(236, 201, 75, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-yellow-600:hover {
    --text-opacity: 1 !important;
    color: #d69e2e !important;
    color: rgba(214, 158, 46, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-yellow-700:hover {
    --text-opacity: 1 !important;
    color: #b7791f !important;
    color: rgba(183, 121, 31, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-yellow-800:hover {
    --text-opacity: 1 !important;
    color: #975a16 !important;
    color: rgba(151, 90, 22, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-yellow-900:hover {
    --text-opacity: 1 !important;
    color: #744210 !important;
    color: rgba(116, 66, 16, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-green-100:hover {
    --text-opacity: 1 !important;
    color: #f0fff4 !important;
    color: rgba(240, 255, 244, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-green-200:hover {
    --text-opacity: 1 !important;
    color: #c6f6d5 !important;
    color: rgba(198, 246, 213, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-green-300:hover {
    --text-opacity: 1 !important;
    color: #9ae6b4 !important;
    color: rgba(154, 230, 180, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-green-400:hover {
    --text-opacity: 1 !important;
    color: #68d391 !important;
    color: rgba(104, 211, 145, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-green-500:hover {
    --text-opacity: 1 !important;
    color: #48bb78 !important;
    color: rgba(72, 187, 120, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-green-600:hover {
    --text-opacity: 1 !important;
    color: #38a169 !important;
    color: rgba(56, 161, 105, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-green-700:hover {
    --text-opacity: 1 !important;
    color: #2f855a !important;
    color: rgba(47, 133, 90, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-green-800:hover {
    --text-opacity: 1 !important;
    color: #276749 !important;
    color: rgba(39, 103, 73, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-green-900:hover {
    --text-opacity: 1 !important;
    color: #22543d !important;
    color: rgba(34, 84, 61, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-teal-100:hover {
    --text-opacity: 1 !important;
    color: #e6fffa !important;
    color: rgba(230, 255, 250, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-teal-200:hover {
    --text-opacity: 1 !important;
    color: #b2f5ea !important;
    color: rgba(178, 245, 234, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-teal-300:hover {
    --text-opacity: 1 !important;
    color: #81e6d9 !important;
    color: rgba(129, 230, 217, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-teal-400:hover {
    --text-opacity: 1 !important;
    color: #4fd1c5 !important;
    color: rgba(79, 209, 197, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-teal-500:hover {
    --text-opacity: 1 !important;
    color: #38b2ac !important;
    color: rgba(56, 178, 172, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-teal-600:hover {
    --text-opacity: 1 !important;
    color: #319795 !important;
    color: rgba(49, 151, 149, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-teal-700:hover {
    --text-opacity: 1 !important;
    color: #2c7a7b !important;
    color: rgba(44, 122, 123, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-teal-800:hover {
    --text-opacity: 1 !important;
    color: #285e61 !important;
    color: rgba(40, 94, 97, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-teal-900:hover {
    --text-opacity: 1 !important;
    color: #234e52 !important;
    color: rgba(35, 78, 82, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-blue-100:hover {
    --text-opacity: 1 !important;
    color: #ebf8ff !important;
    color: rgba(235, 248, 255, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-blue-200:hover {
    --text-opacity: 1 !important;
    color: #bee3f8 !important;
    color: rgba(190, 227, 248, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-blue-300:hover {
    --text-opacity: 1 !important;
    color: #90cdf4 !important;
    color: rgba(144, 205, 244, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-blue-400:hover {
    --text-opacity: 1 !important;
    color: #63b3ed !important;
    color: rgba(99, 179, 237, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-blue-500:hover {
    --text-opacity: 1 !important;
    color: #4299e1 !important;
    color: rgba(66, 153, 225, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-blue-600:hover {
    --text-opacity: 1 !important;
    color: #3182ce !important;
    color: rgba(49, 130, 206, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-blue-700:hover {
    --text-opacity: 1 !important;
    color: #2b6cb0 !important;
    color: rgba(43, 108, 176, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-blue-800:hover {
    --text-opacity: 1 !important;
    color: #2c5282 !important;
    color: rgba(44, 82, 130, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-blue-900:hover {
    --text-opacity: 1 !important;
    color: #2a4365 !important;
    color: rgba(42, 67, 101, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-indigo-100:hover {
    --text-opacity: 1 !important;
    color: #ebf4ff !important;
    color: rgba(235, 244, 255, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-indigo-200:hover {
    --text-opacity: 1 !important;
    color: #c3dafe !important;
    color: rgba(195, 218, 254, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-indigo-300:hover {
    --text-opacity: 1 !important;
    color: #a3bffa !important;
    color: rgba(163, 191, 250, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-indigo-400:hover {
    --text-opacity: 1 !important;
    color: #7f9cf5 !important;
    color: rgba(127, 156, 245, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-indigo-500:hover {
    --text-opacity: 1 !important;
    color: #667eea !important;
    color: rgba(102, 126, 234, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-indigo-600:hover {
    --text-opacity: 1 !important;
    color: #5a67d8 !important;
    color: rgba(90, 103, 216, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-indigo-700:hover {
    --text-opacity: 1 !important;
    color: #4c51bf !important;
    color: rgba(76, 81, 191, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-indigo-800:hover {
    --text-opacity: 1 !important;
    color: #434190 !important;
    color: rgba(67, 65, 144, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-indigo-900:hover {
    --text-opacity: 1 !important;
    color: #3c366b !important;
    color: rgba(60, 54, 107, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-purple-100:hover {
    --text-opacity: 1 !important;
    color: #faf5ff !important;
    color: rgba(250, 245, 255, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-purple-200:hover {
    --text-opacity: 1 !important;
    color: #e9d8fd !important;
    color: rgba(233, 216, 253, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-purple-300:hover {
    --text-opacity: 1 !important;
    color: #d6bcfa !important;
    color: rgba(214, 188, 250, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-purple-400:hover {
    --text-opacity: 1 !important;
    color: #b794f4 !important;
    color: rgba(183, 148, 244, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-purple-500:hover {
    --text-opacity: 1 !important;
    color: #9f7aea !important;
    color: rgba(159, 122, 234, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-purple-600:hover {
    --text-opacity: 1 !important;
    color: #805ad5 !important;
    color: rgba(128, 90, 213, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-purple-700:hover {
    --text-opacity: 1 !important;
    color: #6b46c1 !important;
    color: rgba(107, 70, 193, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-purple-800:hover {
    --text-opacity: 1 !important;
    color: #553c9a !important;
    color: rgba(85, 60, 154, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-purple-900:hover {
    --text-opacity: 1 !important;
    color: #44337a !important;
    color: rgba(68, 51, 122, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-pink-100:hover {
    --text-opacity: 1 !important;
    color: #fff5f7 !important;
    color: rgba(255, 245, 247, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-pink-200:hover {
    --text-opacity: 1 !important;
    color: #fed7e2 !important;
    color: rgba(254, 215, 226, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-pink-300:hover {
    --text-opacity: 1 !important;
    color: #fbb6ce !important;
    color: rgba(251, 182, 206, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-pink-400:hover {
    --text-opacity: 1 !important;
    color: #f687b3 !important;
    color: rgba(246, 135, 179, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-pink-500:hover {
    --text-opacity: 1 !important;
    color: #ed64a6 !important;
    color: rgba(237, 100, 166, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-pink-600:hover {
    --text-opacity: 1 !important;
    color: #d53f8c !important;
    color: rgba(213, 63, 140, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-pink-700:hover {
    --text-opacity: 1 !important;
    color: #b83280 !important;
    color: rgba(184, 50, 128, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-pink-800:hover {
    --text-opacity: 1 !important;
    color: #97266d !important;
    color: rgba(151, 38, 109, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-pink-900:hover {
    --text-opacity: 1 !important;
    color: #702459 !important;
    color: rgba(112, 36, 89, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-ui-gray-100:hover {
    --text-opacity: 1 !important;
    color: #f1f1f1 !important;
    color: rgba(241, 241, 241, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-ui-brown-100:hover {
    --text-opacity: 1 !important;
    color: #f3ecdc !important;
    color: rgba(243, 236, 220, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-ui-brown-200:hover {
    --text-opacity: 1 !important;
    color: #e8e0c9 !important;
    color: rgba(232, 224, 201, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-ui-brown-300:hover {
    --text-opacity: 1 !important;
    color: #d0c095 !important;
    color: rgba(208, 192, 149, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-ui-brown-700:hover {
    --text-opacity: 1 !important;
    color: #bd6005 !important;
    color: rgba(189, 96, 5, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-ui-green-300:hover {
    --text-opacity: 1 !important;
    color: #aac74c !important;
    color: rgba(170, 199, 76, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-ui-green-400:hover {
    --text-opacity: 1 !important;
    color: #71893e !important;
    color: rgba(113, 137, 62, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-ui-orange-500:hover {
    --text-opacity: 1 !important;
    color: #e27212 !important;
    color: rgba(226, 114, 18, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-facebook:hover {
    --text-opacity: 1 !important;
    color: #3b5998 !important;
    color: rgba(59, 89, 152, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-twitter:hover {
    --text-opacity: 1 !important;
    color: #00acee !important;
    color: rgba(0, 172, 238, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-twitch:hover {
    --text-opacity: 1 !important;
    color: #6441a5 !important;
    color: rgba(100, 65, 165, var(--text-opacity)) !important;
  }

  .xl\:hover\:cl-text-youtube:hover {
    --text-opacity: 1 !important;
    color: #FF0000 !important;
    color: rgba(255, 0, 0, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-transparent:focus {
    color: transparent !important;
  }

  .xl\:focus\:cl-text-current:focus {
    color: currentColor !important;
  }

  .xl\:focus\:cl-text-black:focus {
    --text-opacity: 1 !important;
    color: #000 !important;
    color: rgba(0, 0, 0, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-white:focus {
    --text-opacity: 1 !important;
    color: #fff !important;
    color: rgba(255, 255, 255, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-gray-100:focus {
    --text-opacity: 1 !important;
    color: #f7fafc !important;
    color: rgba(247, 250, 252, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-gray-200:focus {
    --text-opacity: 1 !important;
    color: #edf2f7 !important;
    color: rgba(237, 242, 247, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-gray-300:focus {
    --text-opacity: 1 !important;
    color: #e2e8f0 !important;
    color: rgba(226, 232, 240, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-gray-400:focus {
    --text-opacity: 1 !important;
    color: #cbd5e0 !important;
    color: rgba(203, 213, 224, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-gray-500:focus {
    --text-opacity: 1 !important;
    color: #a0aec0 !important;
    color: rgba(160, 174, 192, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-gray-600:focus {
    --text-opacity: 1 !important;
    color: #718096 !important;
    color: rgba(113, 128, 150, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-gray-700:focus {
    --text-opacity: 1 !important;
    color: #4a5568 !important;
    color: rgba(74, 85, 104, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-gray-800:focus {
    --text-opacity: 1 !important;
    color: #2d3748 !important;
    color: rgba(45, 55, 72, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-gray-900:focus {
    --text-opacity: 1 !important;
    color: #1a202c !important;
    color: rgba(26, 32, 44, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-red-100:focus {
    --text-opacity: 1 !important;
    color: #fff5f5 !important;
    color: rgba(255, 245, 245, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-red-200:focus {
    --text-opacity: 1 !important;
    color: #fed7d7 !important;
    color: rgba(254, 215, 215, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-red-300:focus {
    --text-opacity: 1 !important;
    color: #feb2b2 !important;
    color: rgba(254, 178, 178, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-red-400:focus {
    --text-opacity: 1 !important;
    color: #fc8181 !important;
    color: rgba(252, 129, 129, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-red-500:focus {
    --text-opacity: 1 !important;
    color: #f56565 !important;
    color: rgba(245, 101, 101, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-red-600:focus {
    --text-opacity: 1 !important;
    color: #e53e3e !important;
    color: rgba(229, 62, 62, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-red-700:focus {
    --text-opacity: 1 !important;
    color: #c53030 !important;
    color: rgba(197, 48, 48, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-red-800:focus {
    --text-opacity: 1 !important;
    color: #9b2c2c !important;
    color: rgba(155, 44, 44, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-red-900:focus {
    --text-opacity: 1 !important;
    color: #742a2a !important;
    color: rgba(116, 42, 42, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-orange-100:focus {
    --text-opacity: 1 !important;
    color: #fffaf0 !important;
    color: rgba(255, 250, 240, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-orange-200:focus {
    --text-opacity: 1 !important;
    color: #feebc8 !important;
    color: rgba(254, 235, 200, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-orange-300:focus {
    --text-opacity: 1 !important;
    color: #fbd38d !important;
    color: rgba(251, 211, 141, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-orange-400:focus {
    --text-opacity: 1 !important;
    color: #f6ad55 !important;
    color: rgba(246, 173, 85, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-orange-500:focus {
    --text-opacity: 1 !important;
    color: #ed8936 !important;
    color: rgba(237, 137, 54, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-orange-600:focus {
    --text-opacity: 1 !important;
    color: #dd6b20 !important;
    color: rgba(221, 107, 32, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-orange-700:focus {
    --text-opacity: 1 !important;
    color: #c05621 !important;
    color: rgba(192, 86, 33, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-orange-800:focus {
    --text-opacity: 1 !important;
    color: #9c4221 !important;
    color: rgba(156, 66, 33, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-orange-900:focus {
    --text-opacity: 1 !important;
    color: #7b341e !important;
    color: rgba(123, 52, 30, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-yellow-100:focus {
    --text-opacity: 1 !important;
    color: #fffff0 !important;
    color: rgba(255, 255, 240, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-yellow-200:focus {
    --text-opacity: 1 !important;
    color: #fefcbf !important;
    color: rgba(254, 252, 191, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-yellow-300:focus {
    --text-opacity: 1 !important;
    color: #faf089 !important;
    color: rgba(250, 240, 137, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-yellow-400:focus {
    --text-opacity: 1 !important;
    color: #f6e05e !important;
    color: rgba(246, 224, 94, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-yellow-500:focus {
    --text-opacity: 1 !important;
    color: #ecc94b !important;
    color: rgba(236, 201, 75, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-yellow-600:focus {
    --text-opacity: 1 !important;
    color: #d69e2e !important;
    color: rgba(214, 158, 46, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-yellow-700:focus {
    --text-opacity: 1 !important;
    color: #b7791f !important;
    color: rgba(183, 121, 31, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-yellow-800:focus {
    --text-opacity: 1 !important;
    color: #975a16 !important;
    color: rgba(151, 90, 22, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-yellow-900:focus {
    --text-opacity: 1 !important;
    color: #744210 !important;
    color: rgba(116, 66, 16, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-green-100:focus {
    --text-opacity: 1 !important;
    color: #f0fff4 !important;
    color: rgba(240, 255, 244, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-green-200:focus {
    --text-opacity: 1 !important;
    color: #c6f6d5 !important;
    color: rgba(198, 246, 213, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-green-300:focus {
    --text-opacity: 1 !important;
    color: #9ae6b4 !important;
    color: rgba(154, 230, 180, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-green-400:focus {
    --text-opacity: 1 !important;
    color: #68d391 !important;
    color: rgba(104, 211, 145, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-green-500:focus {
    --text-opacity: 1 !important;
    color: #48bb78 !important;
    color: rgba(72, 187, 120, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-green-600:focus {
    --text-opacity: 1 !important;
    color: #38a169 !important;
    color: rgba(56, 161, 105, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-green-700:focus {
    --text-opacity: 1 !important;
    color: #2f855a !important;
    color: rgba(47, 133, 90, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-green-800:focus {
    --text-opacity: 1 !important;
    color: #276749 !important;
    color: rgba(39, 103, 73, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-green-900:focus {
    --text-opacity: 1 !important;
    color: #22543d !important;
    color: rgba(34, 84, 61, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-teal-100:focus {
    --text-opacity: 1 !important;
    color: #e6fffa !important;
    color: rgba(230, 255, 250, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-teal-200:focus {
    --text-opacity: 1 !important;
    color: #b2f5ea !important;
    color: rgba(178, 245, 234, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-teal-300:focus {
    --text-opacity: 1 !important;
    color: #81e6d9 !important;
    color: rgba(129, 230, 217, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-teal-400:focus {
    --text-opacity: 1 !important;
    color: #4fd1c5 !important;
    color: rgba(79, 209, 197, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-teal-500:focus {
    --text-opacity: 1 !important;
    color: #38b2ac !important;
    color: rgba(56, 178, 172, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-teal-600:focus {
    --text-opacity: 1 !important;
    color: #319795 !important;
    color: rgba(49, 151, 149, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-teal-700:focus {
    --text-opacity: 1 !important;
    color: #2c7a7b !important;
    color: rgba(44, 122, 123, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-teal-800:focus {
    --text-opacity: 1 !important;
    color: #285e61 !important;
    color: rgba(40, 94, 97, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-teal-900:focus {
    --text-opacity: 1 !important;
    color: #234e52 !important;
    color: rgba(35, 78, 82, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-blue-100:focus {
    --text-opacity: 1 !important;
    color: #ebf8ff !important;
    color: rgba(235, 248, 255, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-blue-200:focus {
    --text-opacity: 1 !important;
    color: #bee3f8 !important;
    color: rgba(190, 227, 248, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-blue-300:focus {
    --text-opacity: 1 !important;
    color: #90cdf4 !important;
    color: rgba(144, 205, 244, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-blue-400:focus {
    --text-opacity: 1 !important;
    color: #63b3ed !important;
    color: rgba(99, 179, 237, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-blue-500:focus {
    --text-opacity: 1 !important;
    color: #4299e1 !important;
    color: rgba(66, 153, 225, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-blue-600:focus {
    --text-opacity: 1 !important;
    color: #3182ce !important;
    color: rgba(49, 130, 206, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-blue-700:focus {
    --text-opacity: 1 !important;
    color: #2b6cb0 !important;
    color: rgba(43, 108, 176, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-blue-800:focus {
    --text-opacity: 1 !important;
    color: #2c5282 !important;
    color: rgba(44, 82, 130, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-blue-900:focus {
    --text-opacity: 1 !important;
    color: #2a4365 !important;
    color: rgba(42, 67, 101, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-indigo-100:focus {
    --text-opacity: 1 !important;
    color: #ebf4ff !important;
    color: rgba(235, 244, 255, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-indigo-200:focus {
    --text-opacity: 1 !important;
    color: #c3dafe !important;
    color: rgba(195, 218, 254, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-indigo-300:focus {
    --text-opacity: 1 !important;
    color: #a3bffa !important;
    color: rgba(163, 191, 250, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-indigo-400:focus {
    --text-opacity: 1 !important;
    color: #7f9cf5 !important;
    color: rgba(127, 156, 245, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-indigo-500:focus {
    --text-opacity: 1 !important;
    color: #667eea !important;
    color: rgba(102, 126, 234, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-indigo-600:focus {
    --text-opacity: 1 !important;
    color: #5a67d8 !important;
    color: rgba(90, 103, 216, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-indigo-700:focus {
    --text-opacity: 1 !important;
    color: #4c51bf !important;
    color: rgba(76, 81, 191, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-indigo-800:focus {
    --text-opacity: 1 !important;
    color: #434190 !important;
    color: rgba(67, 65, 144, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-indigo-900:focus {
    --text-opacity: 1 !important;
    color: #3c366b !important;
    color: rgba(60, 54, 107, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-purple-100:focus {
    --text-opacity: 1 !important;
    color: #faf5ff !important;
    color: rgba(250, 245, 255, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-purple-200:focus {
    --text-opacity: 1 !important;
    color: #e9d8fd !important;
    color: rgba(233, 216, 253, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-purple-300:focus {
    --text-opacity: 1 !important;
    color: #d6bcfa !important;
    color: rgba(214, 188, 250, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-purple-400:focus {
    --text-opacity: 1 !important;
    color: #b794f4 !important;
    color: rgba(183, 148, 244, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-purple-500:focus {
    --text-opacity: 1 !important;
    color: #9f7aea !important;
    color: rgba(159, 122, 234, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-purple-600:focus {
    --text-opacity: 1 !important;
    color: #805ad5 !important;
    color: rgba(128, 90, 213, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-purple-700:focus {
    --text-opacity: 1 !important;
    color: #6b46c1 !important;
    color: rgba(107, 70, 193, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-purple-800:focus {
    --text-opacity: 1 !important;
    color: #553c9a !important;
    color: rgba(85, 60, 154, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-purple-900:focus {
    --text-opacity: 1 !important;
    color: #44337a !important;
    color: rgba(68, 51, 122, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-pink-100:focus {
    --text-opacity: 1 !important;
    color: #fff5f7 !important;
    color: rgba(255, 245, 247, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-pink-200:focus {
    --text-opacity: 1 !important;
    color: #fed7e2 !important;
    color: rgba(254, 215, 226, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-pink-300:focus {
    --text-opacity: 1 !important;
    color: #fbb6ce !important;
    color: rgba(251, 182, 206, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-pink-400:focus {
    --text-opacity: 1 !important;
    color: #f687b3 !important;
    color: rgba(246, 135, 179, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-pink-500:focus {
    --text-opacity: 1 !important;
    color: #ed64a6 !important;
    color: rgba(237, 100, 166, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-pink-600:focus {
    --text-opacity: 1 !important;
    color: #d53f8c !important;
    color: rgba(213, 63, 140, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-pink-700:focus {
    --text-opacity: 1 !important;
    color: #b83280 !important;
    color: rgba(184, 50, 128, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-pink-800:focus {
    --text-opacity: 1 !important;
    color: #97266d !important;
    color: rgba(151, 38, 109, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-pink-900:focus {
    --text-opacity: 1 !important;
    color: #702459 !important;
    color: rgba(112, 36, 89, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-ui-gray-100:focus {
    --text-opacity: 1 !important;
    color: #f1f1f1 !important;
    color: rgba(241, 241, 241, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-ui-brown-100:focus {
    --text-opacity: 1 !important;
    color: #f3ecdc !important;
    color: rgba(243, 236, 220, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-ui-brown-200:focus {
    --text-opacity: 1 !important;
    color: #e8e0c9 !important;
    color: rgba(232, 224, 201, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-ui-brown-300:focus {
    --text-opacity: 1 !important;
    color: #d0c095 !important;
    color: rgba(208, 192, 149, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-ui-brown-700:focus {
    --text-opacity: 1 !important;
    color: #bd6005 !important;
    color: rgba(189, 96, 5, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-ui-green-300:focus {
    --text-opacity: 1 !important;
    color: #aac74c !important;
    color: rgba(170, 199, 76, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-ui-green-400:focus {
    --text-opacity: 1 !important;
    color: #71893e !important;
    color: rgba(113, 137, 62, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-ui-orange-500:focus {
    --text-opacity: 1 !important;
    color: #e27212 !important;
    color: rgba(226, 114, 18, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-facebook:focus {
    --text-opacity: 1 !important;
    color: #3b5998 !important;
    color: rgba(59, 89, 152, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-twitter:focus {
    --text-opacity: 1 !important;
    color: #00acee !important;
    color: rgba(0, 172, 238, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-twitch:focus {
    --text-opacity: 1 !important;
    color: #6441a5 !important;
    color: rgba(100, 65, 165, var(--text-opacity)) !important;
  }

  .xl\:focus\:cl-text-youtube:focus {
    --text-opacity: 1 !important;
    color: #FF0000 !important;
    color: rgba(255, 0, 0, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-transparent {
    color: transparent !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-current {
    color: currentColor !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-black {
    --text-opacity: 1 !important;
    color: #000 !important;
    color: rgba(0, 0, 0, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-white {
    --text-opacity: 1 !important;
    color: #fff !important;
    color: rgba(255, 255, 255, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-gray-100 {
    --text-opacity: 1 !important;
    color: #f7fafc !important;
    color: rgba(247, 250, 252, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-gray-200 {
    --text-opacity: 1 !important;
    color: #edf2f7 !important;
    color: rgba(237, 242, 247, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-gray-300 {
    --text-opacity: 1 !important;
    color: #e2e8f0 !important;
    color: rgba(226, 232, 240, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-gray-400 {
    --text-opacity: 1 !important;
    color: #cbd5e0 !important;
    color: rgba(203, 213, 224, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-gray-500 {
    --text-opacity: 1 !important;
    color: #a0aec0 !important;
    color: rgba(160, 174, 192, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-gray-600 {
    --text-opacity: 1 !important;
    color: #718096 !important;
    color: rgba(113, 128, 150, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-gray-700 {
    --text-opacity: 1 !important;
    color: #4a5568 !important;
    color: rgba(74, 85, 104, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-gray-800 {
    --text-opacity: 1 !important;
    color: #2d3748 !important;
    color: rgba(45, 55, 72, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-gray-900 {
    --text-opacity: 1 !important;
    color: #1a202c !important;
    color: rgba(26, 32, 44, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-red-100 {
    --text-opacity: 1 !important;
    color: #fff5f5 !important;
    color: rgba(255, 245, 245, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-red-200 {
    --text-opacity: 1 !important;
    color: #fed7d7 !important;
    color: rgba(254, 215, 215, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-red-300 {
    --text-opacity: 1 !important;
    color: #feb2b2 !important;
    color: rgba(254, 178, 178, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-red-400 {
    --text-opacity: 1 !important;
    color: #fc8181 !important;
    color: rgba(252, 129, 129, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-red-500 {
    --text-opacity: 1 !important;
    color: #f56565 !important;
    color: rgba(245, 101, 101, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-red-600 {
    --text-opacity: 1 !important;
    color: #e53e3e !important;
    color: rgba(229, 62, 62, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-red-700 {
    --text-opacity: 1 !important;
    color: #c53030 !important;
    color: rgba(197, 48, 48, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-red-800 {
    --text-opacity: 1 !important;
    color: #9b2c2c !important;
    color: rgba(155, 44, 44, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-red-900 {
    --text-opacity: 1 !important;
    color: #742a2a !important;
    color: rgba(116, 42, 42, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-orange-100 {
    --text-opacity: 1 !important;
    color: #fffaf0 !important;
    color: rgba(255, 250, 240, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-orange-200 {
    --text-opacity: 1 !important;
    color: #feebc8 !important;
    color: rgba(254, 235, 200, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-orange-300 {
    --text-opacity: 1 !important;
    color: #fbd38d !important;
    color: rgba(251, 211, 141, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-orange-400 {
    --text-opacity: 1 !important;
    color: #f6ad55 !important;
    color: rgba(246, 173, 85, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-orange-500 {
    --text-opacity: 1 !important;
    color: #ed8936 !important;
    color: rgba(237, 137, 54, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-orange-600 {
    --text-opacity: 1 !important;
    color: #dd6b20 !important;
    color: rgba(221, 107, 32, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-orange-700 {
    --text-opacity: 1 !important;
    color: #c05621 !important;
    color: rgba(192, 86, 33, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-orange-800 {
    --text-opacity: 1 !important;
    color: #9c4221 !important;
    color: rgba(156, 66, 33, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-orange-900 {
    --text-opacity: 1 !important;
    color: #7b341e !important;
    color: rgba(123, 52, 30, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-yellow-100 {
    --text-opacity: 1 !important;
    color: #fffff0 !important;
    color: rgba(255, 255, 240, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-yellow-200 {
    --text-opacity: 1 !important;
    color: #fefcbf !important;
    color: rgba(254, 252, 191, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-yellow-300 {
    --text-opacity: 1 !important;
    color: #faf089 !important;
    color: rgba(250, 240, 137, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-yellow-400 {
    --text-opacity: 1 !important;
    color: #f6e05e !important;
    color: rgba(246, 224, 94, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-yellow-500 {
    --text-opacity: 1 !important;
    color: #ecc94b !important;
    color: rgba(236, 201, 75, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-yellow-600 {
    --text-opacity: 1 !important;
    color: #d69e2e !important;
    color: rgba(214, 158, 46, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-yellow-700 {
    --text-opacity: 1 !important;
    color: #b7791f !important;
    color: rgba(183, 121, 31, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-yellow-800 {
    --text-opacity: 1 !important;
    color: #975a16 !important;
    color: rgba(151, 90, 22, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-yellow-900 {
    --text-opacity: 1 !important;
    color: #744210 !important;
    color: rgba(116, 66, 16, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-green-100 {
    --text-opacity: 1 !important;
    color: #f0fff4 !important;
    color: rgba(240, 255, 244, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-green-200 {
    --text-opacity: 1 !important;
    color: #c6f6d5 !important;
    color: rgba(198, 246, 213, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-green-300 {
    --text-opacity: 1 !important;
    color: #9ae6b4 !important;
    color: rgba(154, 230, 180, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-green-400 {
    --text-opacity: 1 !important;
    color: #68d391 !important;
    color: rgba(104, 211, 145, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-green-500 {
    --text-opacity: 1 !important;
    color: #48bb78 !important;
    color: rgba(72, 187, 120, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-green-600 {
    --text-opacity: 1 !important;
    color: #38a169 !important;
    color: rgba(56, 161, 105, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-green-700 {
    --text-opacity: 1 !important;
    color: #2f855a !important;
    color: rgba(47, 133, 90, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-green-800 {
    --text-opacity: 1 !important;
    color: #276749 !important;
    color: rgba(39, 103, 73, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-green-900 {
    --text-opacity: 1 !important;
    color: #22543d !important;
    color: rgba(34, 84, 61, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-teal-100 {
    --text-opacity: 1 !important;
    color: #e6fffa !important;
    color: rgba(230, 255, 250, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-teal-200 {
    --text-opacity: 1 !important;
    color: #b2f5ea !important;
    color: rgba(178, 245, 234, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-teal-300 {
    --text-opacity: 1 !important;
    color: #81e6d9 !important;
    color: rgba(129, 230, 217, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-teal-400 {
    --text-opacity: 1 !important;
    color: #4fd1c5 !important;
    color: rgba(79, 209, 197, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-teal-500 {
    --text-opacity: 1 !important;
    color: #38b2ac !important;
    color: rgba(56, 178, 172, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-teal-600 {
    --text-opacity: 1 !important;
    color: #319795 !important;
    color: rgba(49, 151, 149, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-teal-700 {
    --text-opacity: 1 !important;
    color: #2c7a7b !important;
    color: rgba(44, 122, 123, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-teal-800 {
    --text-opacity: 1 !important;
    color: #285e61 !important;
    color: rgba(40, 94, 97, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-teal-900 {
    --text-opacity: 1 !important;
    color: #234e52 !important;
    color: rgba(35, 78, 82, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-blue-100 {
    --text-opacity: 1 !important;
    color: #ebf8ff !important;
    color: rgba(235, 248, 255, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-blue-200 {
    --text-opacity: 1 !important;
    color: #bee3f8 !important;
    color: rgba(190, 227, 248, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-blue-300 {
    --text-opacity: 1 !important;
    color: #90cdf4 !important;
    color: rgba(144, 205, 244, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-blue-400 {
    --text-opacity: 1 !important;
    color: #63b3ed !important;
    color: rgba(99, 179, 237, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-blue-500 {
    --text-opacity: 1 !important;
    color: #4299e1 !important;
    color: rgba(66, 153, 225, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-blue-600 {
    --text-opacity: 1 !important;
    color: #3182ce !important;
    color: rgba(49, 130, 206, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-blue-700 {
    --text-opacity: 1 !important;
    color: #2b6cb0 !important;
    color: rgba(43, 108, 176, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-blue-800 {
    --text-opacity: 1 !important;
    color: #2c5282 !important;
    color: rgba(44, 82, 130, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-blue-900 {
    --text-opacity: 1 !important;
    color: #2a4365 !important;
    color: rgba(42, 67, 101, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-indigo-100 {
    --text-opacity: 1 !important;
    color: #ebf4ff !important;
    color: rgba(235, 244, 255, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-indigo-200 {
    --text-opacity: 1 !important;
    color: #c3dafe !important;
    color: rgba(195, 218, 254, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-indigo-300 {
    --text-opacity: 1 !important;
    color: #a3bffa !important;
    color: rgba(163, 191, 250, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-indigo-400 {
    --text-opacity: 1 !important;
    color: #7f9cf5 !important;
    color: rgba(127, 156, 245, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-indigo-500 {
    --text-opacity: 1 !important;
    color: #667eea !important;
    color: rgba(102, 126, 234, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-indigo-600 {
    --text-opacity: 1 !important;
    color: #5a67d8 !important;
    color: rgba(90, 103, 216, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-indigo-700 {
    --text-opacity: 1 !important;
    color: #4c51bf !important;
    color: rgba(76, 81, 191, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-indigo-800 {
    --text-opacity: 1 !important;
    color: #434190 !important;
    color: rgba(67, 65, 144, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-indigo-900 {
    --text-opacity: 1 !important;
    color: #3c366b !important;
    color: rgba(60, 54, 107, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-purple-100 {
    --text-opacity: 1 !important;
    color: #faf5ff !important;
    color: rgba(250, 245, 255, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-purple-200 {
    --text-opacity: 1 !important;
    color: #e9d8fd !important;
    color: rgba(233, 216, 253, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-purple-300 {
    --text-opacity: 1 !important;
    color: #d6bcfa !important;
    color: rgba(214, 188, 250, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-purple-400 {
    --text-opacity: 1 !important;
    color: #b794f4 !important;
    color: rgba(183, 148, 244, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-purple-500 {
    --text-opacity: 1 !important;
    color: #9f7aea !important;
    color: rgba(159, 122, 234, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-purple-600 {
    --text-opacity: 1 !important;
    color: #805ad5 !important;
    color: rgba(128, 90, 213, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-purple-700 {
    --text-opacity: 1 !important;
    color: #6b46c1 !important;
    color: rgba(107, 70, 193, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-purple-800 {
    --text-opacity: 1 !important;
    color: #553c9a !important;
    color: rgba(85, 60, 154, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-purple-900 {
    --text-opacity: 1 !important;
    color: #44337a !important;
    color: rgba(68, 51, 122, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-pink-100 {
    --text-opacity: 1 !important;
    color: #fff5f7 !important;
    color: rgba(255, 245, 247, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-pink-200 {
    --text-opacity: 1 !important;
    color: #fed7e2 !important;
    color: rgba(254, 215, 226, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-pink-300 {
    --text-opacity: 1 !important;
    color: #fbb6ce !important;
    color: rgba(251, 182, 206, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-pink-400 {
    --text-opacity: 1 !important;
    color: #f687b3 !important;
    color: rgba(246, 135, 179, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-pink-500 {
    --text-opacity: 1 !important;
    color: #ed64a6 !important;
    color: rgba(237, 100, 166, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-pink-600 {
    --text-opacity: 1 !important;
    color: #d53f8c !important;
    color: rgba(213, 63, 140, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-pink-700 {
    --text-opacity: 1 !important;
    color: #b83280 !important;
    color: rgba(184, 50, 128, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-pink-800 {
    --text-opacity: 1 !important;
    color: #97266d !important;
    color: rgba(151, 38, 109, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-pink-900 {
    --text-opacity: 1 !important;
    color: #702459 !important;
    color: rgba(112, 36, 89, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-ui-gray-100 {
    --text-opacity: 1 !important;
    color: #f1f1f1 !important;
    color: rgba(241, 241, 241, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-ui-brown-100 {
    --text-opacity: 1 !important;
    color: #f3ecdc !important;
    color: rgba(243, 236, 220, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-ui-brown-200 {
    --text-opacity: 1 !important;
    color: #e8e0c9 !important;
    color: rgba(232, 224, 201, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-ui-brown-300 {
    --text-opacity: 1 !important;
    color: #d0c095 !important;
    color: rgba(208, 192, 149, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-ui-brown-700 {
    --text-opacity: 1 !important;
    color: #bd6005 !important;
    color: rgba(189, 96, 5, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-ui-green-300 {
    --text-opacity: 1 !important;
    color: #aac74c !important;
    color: rgba(170, 199, 76, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-ui-green-400 {
    --text-opacity: 1 !important;
    color: #71893e !important;
    color: rgba(113, 137, 62, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-ui-orange-500 {
    --text-opacity: 1 !important;
    color: #e27212 !important;
    color: rgba(226, 114, 18, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-facebook {
    --text-opacity: 1 !important;
    color: #3b5998 !important;
    color: rgba(59, 89, 152, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-twitter {
    --text-opacity: 1 !important;
    color: #00acee !important;
    color: rgba(0, 172, 238, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-twitch {
    --text-opacity: 1 !important;
    color: #6441a5 !important;
    color: rgba(100, 65, 165, var(--text-opacity)) !important;
  }

  .cl-group:hover .xl\:group-hover\:cl-text-youtube {
    --text-opacity: 1 !important;
    color: #FF0000 !important;
    color: rgba(255, 0, 0, var(--text-opacity)) !important;
  }

  .xl\:cl-text-opacity-0 {
    --text-opacity: 0 !important;
  }

  .xl\:cl-text-opacity-25 {
    --text-opacity: 0.25 !important;
  }

  .xl\:cl-text-opacity-50 {
    --text-opacity: 0.5 !important;
  }

  .xl\:cl-text-opacity-75 {
    --text-opacity: 0.75 !important;
  }

  .xl\:cl-text-opacity-100 {
    --text-opacity: 1 !important;
  }

  .xl\:hover\:cl-text-opacity-0:hover {
    --text-opacity: 0 !important;
  }

  .xl\:hover\:cl-text-opacity-25:hover {
    --text-opacity: 0.25 !important;
  }

  .xl\:hover\:cl-text-opacity-50:hover {
    --text-opacity: 0.5 !important;
  }

  .xl\:hover\:cl-text-opacity-75:hover {
    --text-opacity: 0.75 !important;
  }

  .xl\:hover\:cl-text-opacity-100:hover {
    --text-opacity: 1 !important;
  }

  .xl\:focus\:cl-text-opacity-0:focus {
    --text-opacity: 0 !important;
  }

  .xl\:focus\:cl-text-opacity-25:focus {
    --text-opacity: 0.25 !important;
  }

  .xl\:focus\:cl-text-opacity-50:focus {
    --text-opacity: 0.5 !important;
  }

  .xl\:focus\:cl-text-opacity-75:focus {
    --text-opacity: 0.75 !important;
  }

  .xl\:focus\:cl-text-opacity-100:focus {
    --text-opacity: 1 !important;
  }

  .xl\:cl-italic {
    font-style: italic !important;
  }

  .xl\:cl-not-italic {
    font-style: normal !important;
  }

  .xl\:cl-uppercase {
    text-transform: uppercase !important;
  }

  .xl\:cl-lowercase {
    text-transform: lowercase !important;
  }

  .xl\:cl-capitalize {
    text-transform: capitalize !important;
  }

  .xl\:cl-normal-case {
    text-transform: none !important;
  }

  .xl\:cl-underline {
    text-decoration: underline !important;
  }

  .xl\:cl-line-through {
    text-decoration: line-through !important;
  }

  .xl\:cl-no-underline {
    text-decoration: none !important;
  }

  .xl\:hover\:cl-underline:hover {
    text-decoration: underline !important;
  }

  .xl\:hover\:cl-line-through:hover {
    text-decoration: line-through !important;
  }

  .xl\:hover\:cl-no-underline:hover {
    text-decoration: none !important;
  }

  .xl\:focus\:cl-underline:focus {
    text-decoration: underline !important;
  }

  .xl\:focus\:cl-line-through:focus {
    text-decoration: line-through !important;
  }

  .xl\:focus\:cl-no-underline:focus {
    text-decoration: none !important;
  }

  .xl\:cl-antialiased {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
  }

  .xl\:cl-subpixel-antialiased {
    -webkit-font-smoothing: auto !important;
    -moz-osx-font-smoothing: auto !important;
  }

  .xl\:cl-ordinal, .xl\:cl-slashed-zero, .xl\:cl-lining-nums, .xl\:cl-oldstyle-nums, .xl\:cl-proportional-nums, .xl\:cl-tabular-nums, .xl\:cl-diagonal-fractions, .xl\:cl-stacked-fractions {
    --font-variant-numeric-ordinal: var(--tailwind-empty,/*!*/ /*!*/) !important;
    --font-variant-numeric-slashed-zero: var(--tailwind-empty,/*!*/ /*!*/) !important;
    --font-variant-numeric-figure: var(--tailwind-empty,/*!*/ /*!*/) !important;
    --font-variant-numeric-spacing: var(--tailwind-empty,/*!*/ /*!*/) !important;
    --font-variant-numeric-fraction: var(--tailwind-empty,/*!*/ /*!*/) !important;
    font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction) !important;
  }

  .xl\:cl-normal-nums {
    font-variant-numeric: normal !important;
  }

  .xl\:cl-ordinal {
    --font-variant-numeric-ordinal: ordinal !important;
  }

  .xl\:cl-slashed-zero {
    --font-variant-numeric-slashed-zero: slashed-zero !important;
  }

  .xl\:cl-lining-nums {
    --font-variant-numeric-figure: lining-nums !important;
  }

  .xl\:cl-oldstyle-nums {
    --font-variant-numeric-figure: oldstyle-nums !important;
  }

  .xl\:cl-proportional-nums {
    --font-variant-numeric-spacing: proportional-nums !important;
  }

  .xl\:cl-tabular-nums {
    --font-variant-numeric-spacing: tabular-nums !important;
  }

  .xl\:cl-diagonal-fractions {
    --font-variant-numeric-fraction: diagonal-fractions !important;
  }

  .xl\:cl-stacked-fractions {
    --font-variant-numeric-fraction: stacked-fractions !important;
  }

  .xl\:cl-tracking-tighter {
    letter-spacing: -0.05em !important;
  }

  .xl\:cl-tracking-tight {
    letter-spacing: -0.025em !important;
  }

  .xl\:cl-tracking-normal {
    letter-spacing: 0 !important;
  }

  .xl\:cl-tracking-wide {
    letter-spacing: 0.025em !important;
  }

  .xl\:cl-tracking-wider {
    letter-spacing: 0.05em !important;
  }

  .xl\:cl-tracking-widest {
    letter-spacing: 0.1em !important;
  }

  .xl\:cl-select-none {
    -webkit-user-select: none !important;
       -moz-user-select: none !important;
            user-select: none !important;
  }

  .xl\:cl-select-text {
    -webkit-user-select: text !important;
       -moz-user-select: text !important;
            user-select: text !important;
  }

  .xl\:cl-select-all {
    -webkit-user-select: all !important;
       -moz-user-select: all !important;
            user-select: all !important;
  }

  .xl\:cl-select-auto {
    -webkit-user-select: auto !important;
       -moz-user-select: auto !important;
            user-select: auto !important;
  }

  .xl\:cl-align-baseline {
    vertical-align: baseline !important;
  }

  .xl\:cl-align-top {
    vertical-align: top !important;
  }

  .xl\:cl-align-middle {
    vertical-align: middle !important;
  }

  .xl\:cl-align-bottom {
    vertical-align: bottom !important;
  }

  .xl\:cl-align-text-top {
    vertical-align: text-top !important;
  }

  .xl\:cl-align-text-bottom {
    vertical-align: text-bottom !important;
  }

  .xl\:cl-visible {
    visibility: visible !important;
  }

  .xl\:cl-invisible {
    visibility: hidden !important;
  }

  .xl\:cl-whitespace-normal {
    white-space: normal !important;
  }

  .xl\:cl-whitespace-no-wrap {
    white-space: nowrap !important;
  }

  .xl\:cl-whitespace-pre {
    white-space: pre !important;
  }

  .xl\:cl-whitespace-pre-line {
    white-space: pre-line !important;
  }

  .xl\:cl-whitespace-pre-wrap {
    white-space: pre-wrap !important;
  }

  .xl\:cl-break-normal {
    word-wrap: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .xl\:cl-break-words {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  .xl\:cl-break-all {
    word-break: break-all !important;
  }

  .xl\:cl-truncate {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .xl\:cl-w-0 {
    width: 0 !important;
  }

  .xl\:cl-w-1 {
    width: 4px !important;
  }

  .xl\:cl-w-2 {
    width: 8px !important;
  }

  .xl\:cl-w-3 {
    width: 12px !important;
  }

  .xl\:cl-w-4 {
    width: 16px !important;
  }

  .xl\:cl-w-5 {
    width: 20px !important;
  }

  .xl\:cl-w-6 {
    width: 24px !important;
  }

  .xl\:cl-w-8 {
    width: 32px !important;
  }

  .xl\:cl-w-10 {
    width: 40px !important;
  }

  .xl\:cl-w-12 {
    width: 48px !important;
  }

  .xl\:cl-w-16 {
    width: 64px !important;
  }

  .xl\:cl-w-20 {
    width: 80px !important;
  }

  .xl\:cl-w-24 {
    width: 96px !important;
  }

  .xl\:cl-w-26 {
    width: 100px !important;
  }

  .xl\:cl-w-28 {
    width: 110px !important;
  }

  .xl\:cl-w-32 {
    width: 128px !important;
  }

  .xl\:cl-w-40 {
    width: 160px !important;
  }

  .xl\:cl-w-48 {
    width: 192px !important;
  }

  .xl\:cl-w-56 {
    width: 224px !important;
  }

  .xl\:cl-w-64 {
    width: 256px !important;
  }

  .xl\:cl-w-auto {
    width: auto !important;
  }

  .xl\:cl-w-px {
    width: 1px !important;
  }

  .xl\:cl-w-1\/2 {
    width: 50% !important;
  }

  .xl\:cl-w-1\/3 {
    width: 33.333333% !important;
  }

  .xl\:cl-w-2\/3 {
    width: 66.666667% !important;
  }

  .xl\:cl-w-1\/4 {
    width: 25% !important;
  }

  .xl\:cl-w-2\/4 {
    width: 50% !important;
  }

  .xl\:cl-w-3\/4 {
    width: 75% !important;
  }

  .xl\:cl-w-1\/5 {
    width: 20% !important;
  }

  .xl\:cl-w-2\/5 {
    width: 40% !important;
  }

  .xl\:cl-w-3\/5 {
    width: 60% !important;
  }

  .xl\:cl-w-4\/5 {
    width: 80% !important;
  }

  .xl\:cl-w-1\/6 {
    width: 16.666667% !important;
  }

  .xl\:cl-w-2\/6 {
    width: 33.333333% !important;
  }

  .xl\:cl-w-3\/6 {
    width: 50% !important;
  }

  .xl\:cl-w-4\/6 {
    width: 66.666667% !important;
  }

  .xl\:cl-w-5\/6 {
    width: 83.333333% !important;
  }

  .xl\:cl-w-1\/12 {
    width: 8.333333% !important;
  }

  .xl\:cl-w-2\/12 {
    width: 16.666667% !important;
  }

  .xl\:cl-w-3\/12 {
    width: 25% !important;
  }

  .xl\:cl-w-4\/12 {
    width: 33.333333% !important;
  }

  .xl\:cl-w-5\/12 {
    width: 41.666667% !important;
  }

  .xl\:cl-w-6\/12 {
    width: 50% !important;
  }

  .xl\:cl-w-7\/12 {
    width: 58.333333% !important;
  }

  .xl\:cl-w-8\/12 {
    width: 66.666667% !important;
  }

  .xl\:cl-w-9\/12 {
    width: 75% !important;
  }

  .xl\:cl-w-10\/12 {
    width: 83.333333% !important;
  }

  .xl\:cl-w-11\/12 {
    width: 91.666667% !important;
  }

  .xl\:cl-w-full {
    width: 100% !important;
  }

  .xl\:cl-w-screen {
    width: 100vw !important;
  }

  .xl\:cl-z-0 {
    z-index: 0 !important;
  }

  .xl\:cl-z-10 {
    z-index: 10 !important;
  }

  .xl\:cl-z-20 {
    z-index: 20 !important;
  }

  .xl\:cl-z-30 {
    z-index: 30 !important;
  }

  .xl\:cl-z-40 {
    z-index: 40 !important;
  }

  .xl\:cl-z-50 {
    z-index: 50 !important;
  }

  .xl\:cl-z-auto {
    z-index: auto !important;
  }

  .xl\:cl-gap-0 {
    grid-gap: 0 !important;
    gap: 0 !important;
  }

  .xl\:cl-gap-1 {
    grid-gap: 4px !important;
    gap: 4px !important;
  }

  .xl\:cl-gap-2 {
    grid-gap: 8px !important;
    gap: 8px !important;
  }

  .xl\:cl-gap-3 {
    grid-gap: 12px !important;
    gap: 12px !important;
  }

  .xl\:cl-gap-4 {
    grid-gap: 16px !important;
    gap: 16px !important;
  }

  .xl\:cl-gap-5 {
    grid-gap: 20px !important;
    gap: 20px !important;
  }

  .xl\:cl-gap-6 {
    grid-gap: 24px !important;
    gap: 24px !important;
  }

  .xl\:cl-gap-8 {
    grid-gap: 32px !important;
    gap: 32px !important;
  }

  .xl\:cl-gap-10 {
    grid-gap: 40px !important;
    gap: 40px !important;
  }

  .xl\:cl-gap-12 {
    grid-gap: 48px !important;
    gap: 48px !important;
  }

  .xl\:cl-gap-16 {
    grid-gap: 64px !important;
    gap: 64px !important;
  }

  .xl\:cl-gap-20 {
    grid-gap: 80px !important;
    gap: 80px !important;
  }

  .xl\:cl-gap-24 {
    grid-gap: 96px !important;
    gap: 96px !important;
  }

  .xl\:cl-gap-26 {
    grid-gap: 100px !important;
    gap: 100px !important;
  }

  .xl\:cl-gap-28 {
    grid-gap: 110px !important;
    gap: 110px !important;
  }

  .xl\:cl-gap-32 {
    grid-gap: 128px !important;
    gap: 128px !important;
  }

  .xl\:cl-gap-40 {
    grid-gap: 160px !important;
    gap: 160px !important;
  }

  .xl\:cl-gap-48 {
    grid-gap: 192px !important;
    gap: 192px !important;
  }

  .xl\:cl-gap-56 {
    grid-gap: 224px !important;
    gap: 224px !important;
  }

  .xl\:cl-gap-64 {
    grid-gap: 256px !important;
    gap: 256px !important;
  }

  .xl\:cl-gap-px {
    grid-gap: 1px !important;
    gap: 1px !important;
  }

  .xl\:cl-col-gap-0 {
    grid-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
         column-gap: 0 !important;
  }

  .xl\:cl-col-gap-1 {
    grid-column-gap: 4px !important;
    -moz-column-gap: 4px !important;
         column-gap: 4px !important;
  }

  .xl\:cl-col-gap-2 {
    grid-column-gap: 8px !important;
    -moz-column-gap: 8px !important;
         column-gap: 8px !important;
  }

  .xl\:cl-col-gap-3 {
    grid-column-gap: 12px !important;
    -moz-column-gap: 12px !important;
         column-gap: 12px !important;
  }

  .xl\:cl-col-gap-4 {
    grid-column-gap: 16px !important;
    -moz-column-gap: 16px !important;
         column-gap: 16px !important;
  }

  .xl\:cl-col-gap-5 {
    grid-column-gap: 20px !important;
    -moz-column-gap: 20px !important;
         column-gap: 20px !important;
  }

  .xl\:cl-col-gap-6 {
    grid-column-gap: 24px !important;
    -moz-column-gap: 24px !important;
         column-gap: 24px !important;
  }

  .xl\:cl-col-gap-8 {
    grid-column-gap: 32px !important;
    -moz-column-gap: 32px !important;
         column-gap: 32px !important;
  }

  .xl\:cl-col-gap-10 {
    grid-column-gap: 40px !important;
    -moz-column-gap: 40px !important;
         column-gap: 40px !important;
  }

  .xl\:cl-col-gap-12 {
    grid-column-gap: 48px !important;
    -moz-column-gap: 48px !important;
         column-gap: 48px !important;
  }

  .xl\:cl-col-gap-16 {
    grid-column-gap: 64px !important;
    -moz-column-gap: 64px !important;
         column-gap: 64px !important;
  }

  .xl\:cl-col-gap-20 {
    grid-column-gap: 80px !important;
    -moz-column-gap: 80px !important;
         column-gap: 80px !important;
  }

  .xl\:cl-col-gap-24 {
    grid-column-gap: 96px !important;
    -moz-column-gap: 96px !important;
         column-gap: 96px !important;
  }

  .xl\:cl-col-gap-26 {
    grid-column-gap: 100px !important;
    -moz-column-gap: 100px !important;
         column-gap: 100px !important;
  }

  .xl\:cl-col-gap-28 {
    grid-column-gap: 110px !important;
    -moz-column-gap: 110px !important;
         column-gap: 110px !important;
  }

  .xl\:cl-col-gap-32 {
    grid-column-gap: 128px !important;
    -moz-column-gap: 128px !important;
         column-gap: 128px !important;
  }

  .xl\:cl-col-gap-40 {
    grid-column-gap: 160px !important;
    -moz-column-gap: 160px !important;
         column-gap: 160px !important;
  }

  .xl\:cl-col-gap-48 {
    grid-column-gap: 192px !important;
    -moz-column-gap: 192px !important;
         column-gap: 192px !important;
  }

  .xl\:cl-col-gap-56 {
    grid-column-gap: 224px !important;
    -moz-column-gap: 224px !important;
         column-gap: 224px !important;
  }

  .xl\:cl-col-gap-64 {
    grid-column-gap: 256px !important;
    -moz-column-gap: 256px !important;
         column-gap: 256px !important;
  }

  .xl\:cl-col-gap-px {
    grid-column-gap: 1px !important;
    -moz-column-gap: 1px !important;
         column-gap: 1px !important;
  }

  .xl\:cl-gap-x-0 {
    grid-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
         column-gap: 0 !important;
  }

  .xl\:cl-gap-x-1 {
    grid-column-gap: 4px !important;
    -moz-column-gap: 4px !important;
         column-gap: 4px !important;
  }

  .xl\:cl-gap-x-2 {
    grid-column-gap: 8px !important;
    -moz-column-gap: 8px !important;
         column-gap: 8px !important;
  }

  .xl\:cl-gap-x-3 {
    grid-column-gap: 12px !important;
    -moz-column-gap: 12px !important;
         column-gap: 12px !important;
  }

  .xl\:cl-gap-x-4 {
    grid-column-gap: 16px !important;
    -moz-column-gap: 16px !important;
         column-gap: 16px !important;
  }

  .xl\:cl-gap-x-5 {
    grid-column-gap: 20px !important;
    -moz-column-gap: 20px !important;
         column-gap: 20px !important;
  }

  .xl\:cl-gap-x-6 {
    grid-column-gap: 24px !important;
    -moz-column-gap: 24px !important;
         column-gap: 24px !important;
  }

  .xl\:cl-gap-x-8 {
    grid-column-gap: 32px !important;
    -moz-column-gap: 32px !important;
         column-gap: 32px !important;
  }

  .xl\:cl-gap-x-10 {
    grid-column-gap: 40px !important;
    -moz-column-gap: 40px !important;
         column-gap: 40px !important;
  }

  .xl\:cl-gap-x-12 {
    grid-column-gap: 48px !important;
    -moz-column-gap: 48px !important;
         column-gap: 48px !important;
  }

  .xl\:cl-gap-x-16 {
    grid-column-gap: 64px !important;
    -moz-column-gap: 64px !important;
         column-gap: 64px !important;
  }

  .xl\:cl-gap-x-20 {
    grid-column-gap: 80px !important;
    -moz-column-gap: 80px !important;
         column-gap: 80px !important;
  }

  .xl\:cl-gap-x-24 {
    grid-column-gap: 96px !important;
    -moz-column-gap: 96px !important;
         column-gap: 96px !important;
  }

  .xl\:cl-gap-x-26 {
    grid-column-gap: 100px !important;
    -moz-column-gap: 100px !important;
         column-gap: 100px !important;
  }

  .xl\:cl-gap-x-28 {
    grid-column-gap: 110px !important;
    -moz-column-gap: 110px !important;
         column-gap: 110px !important;
  }

  .xl\:cl-gap-x-32 {
    grid-column-gap: 128px !important;
    -moz-column-gap: 128px !important;
         column-gap: 128px !important;
  }

  .xl\:cl-gap-x-40 {
    grid-column-gap: 160px !important;
    -moz-column-gap: 160px !important;
         column-gap: 160px !important;
  }

  .xl\:cl-gap-x-48 {
    grid-column-gap: 192px !important;
    -moz-column-gap: 192px !important;
         column-gap: 192px !important;
  }

  .xl\:cl-gap-x-56 {
    grid-column-gap: 224px !important;
    -moz-column-gap: 224px !important;
         column-gap: 224px !important;
  }

  .xl\:cl-gap-x-64 {
    grid-column-gap: 256px !important;
    -moz-column-gap: 256px !important;
         column-gap: 256px !important;
  }

  .xl\:cl-gap-x-px {
    grid-column-gap: 1px !important;
    -moz-column-gap: 1px !important;
         column-gap: 1px !important;
  }

  .xl\:cl-row-gap-0 {
    grid-row-gap: 0 !important;
    row-gap: 0 !important;
  }

  .xl\:cl-row-gap-1 {
    grid-row-gap: 4px !important;
    row-gap: 4px !important;
  }

  .xl\:cl-row-gap-2 {
    grid-row-gap: 8px !important;
    row-gap: 8px !important;
  }

  .xl\:cl-row-gap-3 {
    grid-row-gap: 12px !important;
    row-gap: 12px !important;
  }

  .xl\:cl-row-gap-4 {
    grid-row-gap: 16px !important;
    row-gap: 16px !important;
  }

  .xl\:cl-row-gap-5 {
    grid-row-gap: 20px !important;
    row-gap: 20px !important;
  }

  .xl\:cl-row-gap-6 {
    grid-row-gap: 24px !important;
    row-gap: 24px !important;
  }

  .xl\:cl-row-gap-8 {
    grid-row-gap: 32px !important;
    row-gap: 32px !important;
  }

  .xl\:cl-row-gap-10 {
    grid-row-gap: 40px !important;
    row-gap: 40px !important;
  }

  .xl\:cl-row-gap-12 {
    grid-row-gap: 48px !important;
    row-gap: 48px !important;
  }

  .xl\:cl-row-gap-16 {
    grid-row-gap: 64px !important;
    row-gap: 64px !important;
  }

  .xl\:cl-row-gap-20 {
    grid-row-gap: 80px !important;
    row-gap: 80px !important;
  }

  .xl\:cl-row-gap-24 {
    grid-row-gap: 96px !important;
    row-gap: 96px !important;
  }

  .xl\:cl-row-gap-26 {
    grid-row-gap: 100px !important;
    row-gap: 100px !important;
  }

  .xl\:cl-row-gap-28 {
    grid-row-gap: 110px !important;
    row-gap: 110px !important;
  }

  .xl\:cl-row-gap-32 {
    grid-row-gap: 128px !important;
    row-gap: 128px !important;
  }

  .xl\:cl-row-gap-40 {
    grid-row-gap: 160px !important;
    row-gap: 160px !important;
  }

  .xl\:cl-row-gap-48 {
    grid-row-gap: 192px !important;
    row-gap: 192px !important;
  }

  .xl\:cl-row-gap-56 {
    grid-row-gap: 224px !important;
    row-gap: 224px !important;
  }

  .xl\:cl-row-gap-64 {
    grid-row-gap: 256px !important;
    row-gap: 256px !important;
  }

  .xl\:cl-row-gap-px {
    grid-row-gap: 1px !important;
    row-gap: 1px !important;
  }

  .xl\:cl-gap-y-0 {
    grid-row-gap: 0 !important;
    row-gap: 0 !important;
  }

  .xl\:cl-gap-y-1 {
    grid-row-gap: 4px !important;
    row-gap: 4px !important;
  }

  .xl\:cl-gap-y-2 {
    grid-row-gap: 8px !important;
    row-gap: 8px !important;
  }

  .xl\:cl-gap-y-3 {
    grid-row-gap: 12px !important;
    row-gap: 12px !important;
  }

  .xl\:cl-gap-y-4 {
    grid-row-gap: 16px !important;
    row-gap: 16px !important;
  }

  .xl\:cl-gap-y-5 {
    grid-row-gap: 20px !important;
    row-gap: 20px !important;
  }

  .xl\:cl-gap-y-6 {
    grid-row-gap: 24px !important;
    row-gap: 24px !important;
  }

  .xl\:cl-gap-y-8 {
    grid-row-gap: 32px !important;
    row-gap: 32px !important;
  }

  .xl\:cl-gap-y-10 {
    grid-row-gap: 40px !important;
    row-gap: 40px !important;
  }

  .xl\:cl-gap-y-12 {
    grid-row-gap: 48px !important;
    row-gap: 48px !important;
  }

  .xl\:cl-gap-y-16 {
    grid-row-gap: 64px !important;
    row-gap: 64px !important;
  }

  .xl\:cl-gap-y-20 {
    grid-row-gap: 80px !important;
    row-gap: 80px !important;
  }

  .xl\:cl-gap-y-24 {
    grid-row-gap: 96px !important;
    row-gap: 96px !important;
  }

  .xl\:cl-gap-y-26 {
    grid-row-gap: 100px !important;
    row-gap: 100px !important;
  }

  .xl\:cl-gap-y-28 {
    grid-row-gap: 110px !important;
    row-gap: 110px !important;
  }

  .xl\:cl-gap-y-32 {
    grid-row-gap: 128px !important;
    row-gap: 128px !important;
  }

  .xl\:cl-gap-y-40 {
    grid-row-gap: 160px !important;
    row-gap: 160px !important;
  }

  .xl\:cl-gap-y-48 {
    grid-row-gap: 192px !important;
    row-gap: 192px !important;
  }

  .xl\:cl-gap-y-56 {
    grid-row-gap: 224px !important;
    row-gap: 224px !important;
  }

  .xl\:cl-gap-y-64 {
    grid-row-gap: 256px !important;
    row-gap: 256px !important;
  }

  .xl\:cl-gap-y-px {
    grid-row-gap: 1px !important;
    row-gap: 1px !important;
  }

  .xl\:cl-grid-flow-row {
    grid-auto-flow: row !important;
  }

  .xl\:cl-grid-flow-col {
    grid-auto-flow: column !important;
  }

  .xl\:cl-grid-flow-row-dense {
    grid-auto-flow: row dense !important;
  }

  .xl\:cl-grid-flow-col-dense {
    grid-auto-flow: column dense !important;
  }

  .xl\:cl-grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }

  .xl\:cl-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .xl\:cl-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .xl\:cl-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .xl\:cl-grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }

  .xl\:cl-grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }

  .xl\:cl-grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }

  .xl\:cl-grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }

  .xl\:cl-grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }

  .xl\:cl-grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }

  .xl\:cl-grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
  }

  .xl\:cl-grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }

  .xl\:cl-grid-cols-none {
    grid-template-columns: none !important;
  }

  .xl\:cl-auto-cols-auto {
    grid-auto-columns: auto !important;
  }

  .xl\:cl-auto-cols-min {
    grid-auto-columns: min-content !important;
  }

  .xl\:cl-auto-cols-max {
    grid-auto-columns: max-content !important;
  }

  .xl\:cl-auto-cols-fr {
    grid-auto-columns: minmax(0, 1fr) !important;
  }

  .xl\:cl-col-auto {
    grid-column: auto !important;
  }

  .xl\:cl-col-span-1 {
    grid-column: span 1 / span 1 !important;
  }

  .xl\:cl-col-span-2 {
    grid-column: span 2 / span 2 !important;
  }

  .xl\:cl-col-span-3 {
    grid-column: span 3 / span 3 !important;
  }

  .xl\:cl-col-span-4 {
    grid-column: span 4 / span 4 !important;
  }

  .xl\:cl-col-span-5 {
    grid-column: span 5 / span 5 !important;
  }

  .xl\:cl-col-span-6 {
    grid-column: span 6 / span 6 !important;
  }

  .xl\:cl-col-span-7 {
    grid-column: span 7 / span 7 !important;
  }

  .xl\:cl-col-span-8 {
    grid-column: span 8 / span 8 !important;
  }

  .xl\:cl-col-span-9 {
    grid-column: span 9 / span 9 !important;
  }

  .xl\:cl-col-span-10 {
    grid-column: span 10 / span 10 !important;
  }

  .xl\:cl-col-span-11 {
    grid-column: span 11 / span 11 !important;
  }

  .xl\:cl-col-span-12 {
    grid-column: span 12 / span 12 !important;
  }

  .xl\:cl-col-span-full {
    grid-column: 1 / -1 !important;
  }

  .xl\:cl-col-start-1 {
    grid-column-start: 1 !important;
  }

  .xl\:cl-col-start-2 {
    grid-column-start: 2 !important;
  }

  .xl\:cl-col-start-3 {
    grid-column-start: 3 !important;
  }

  .xl\:cl-col-start-4 {
    grid-column-start: 4 !important;
  }

  .xl\:cl-col-start-5 {
    grid-column-start: 5 !important;
  }

  .xl\:cl-col-start-6 {
    grid-column-start: 6 !important;
  }

  .xl\:cl-col-start-7 {
    grid-column-start: 7 !important;
  }

  .xl\:cl-col-start-8 {
    grid-column-start: 8 !important;
  }

  .xl\:cl-col-start-9 {
    grid-column-start: 9 !important;
  }

  .xl\:cl-col-start-10 {
    grid-column-start: 10 !important;
  }

  .xl\:cl-col-start-11 {
    grid-column-start: 11 !important;
  }

  .xl\:cl-col-start-12 {
    grid-column-start: 12 !important;
  }

  .xl\:cl-col-start-13 {
    grid-column-start: 13 !important;
  }

  .xl\:cl-col-start-auto {
    grid-column-start: auto !important;
  }

  .xl\:cl-col-end-1 {
    grid-column-end: 1 !important;
  }

  .xl\:cl-col-end-2 {
    grid-column-end: 2 !important;
  }

  .xl\:cl-col-end-3 {
    grid-column-end: 3 !important;
  }

  .xl\:cl-col-end-4 {
    grid-column-end: 4 !important;
  }

  .xl\:cl-col-end-5 {
    grid-column-end: 5 !important;
  }

  .xl\:cl-col-end-6 {
    grid-column-end: 6 !important;
  }

  .xl\:cl-col-end-7 {
    grid-column-end: 7 !important;
  }

  .xl\:cl-col-end-8 {
    grid-column-end: 8 !important;
  }

  .xl\:cl-col-end-9 {
    grid-column-end: 9 !important;
  }

  .xl\:cl-col-end-10 {
    grid-column-end: 10 !important;
  }

  .xl\:cl-col-end-11 {
    grid-column-end: 11 !important;
  }

  .xl\:cl-col-end-12 {
    grid-column-end: 12 !important;
  }

  .xl\:cl-col-end-13 {
    grid-column-end: 13 !important;
  }

  .xl\:cl-col-end-auto {
    grid-column-end: auto !important;
  }

  .xl\:cl-grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }

  .xl\:cl-grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }

  .xl\:cl-grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }

  .xl\:cl-grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  }

  .xl\:cl-grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
  }

  .xl\:cl-grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }

  .xl\:cl-grid-rows-none {
    grid-template-rows: none !important;
  }

  .xl\:cl-auto-rows-auto {
    grid-auto-rows: auto !important;
  }

  .xl\:cl-auto-rows-min {
    grid-auto-rows: min-content !important;
  }

  .xl\:cl-auto-rows-max {
    grid-auto-rows: max-content !important;
  }

  .xl\:cl-auto-rows-fr {
    grid-auto-rows: minmax(0, 1fr) !important;
  }

  .xl\:cl-row-auto {
    grid-row: auto !important;
  }

  .xl\:cl-row-span-1 {
    grid-row: span 1 / span 1 !important;
  }

  .xl\:cl-row-span-2 {
    grid-row: span 2 / span 2 !important;
  }

  .xl\:cl-row-span-3 {
    grid-row: span 3 / span 3 !important;
  }

  .xl\:cl-row-span-4 {
    grid-row: span 4 / span 4 !important;
  }

  .xl\:cl-row-span-5 {
    grid-row: span 5 / span 5 !important;
  }

  .xl\:cl-row-span-6 {
    grid-row: span 6 / span 6 !important;
  }

  .xl\:cl-row-span-full {
    grid-row: 1 / -1 !important;
  }

  .xl\:cl-row-start-1 {
    grid-row-start: 1 !important;
  }

  .xl\:cl-row-start-2 {
    grid-row-start: 2 !important;
  }

  .xl\:cl-row-start-3 {
    grid-row-start: 3 !important;
  }

  .xl\:cl-row-start-4 {
    grid-row-start: 4 !important;
  }

  .xl\:cl-row-start-5 {
    grid-row-start: 5 !important;
  }

  .xl\:cl-row-start-6 {
    grid-row-start: 6 !important;
  }

  .xl\:cl-row-start-7 {
    grid-row-start: 7 !important;
  }

  .xl\:cl-row-start-auto {
    grid-row-start: auto !important;
  }

  .xl\:cl-row-end-1 {
    grid-row-end: 1 !important;
  }

  .xl\:cl-row-end-2 {
    grid-row-end: 2 !important;
  }

  .xl\:cl-row-end-3 {
    grid-row-end: 3 !important;
  }

  .xl\:cl-row-end-4 {
    grid-row-end: 4 !important;
  }

  .xl\:cl-row-end-5 {
    grid-row-end: 5 !important;
  }

  .xl\:cl-row-end-6 {
    grid-row-end: 6 !important;
  }

  .xl\:cl-row-end-7 {
    grid-row-end: 7 !important;
  }

  .xl\:cl-row-end-auto {
    grid-row-end: auto !important;
  }

  .xl\:cl-transform {
    --transform-translate-x: 0 !important;
    --transform-translate-y: 0 !important;
    --transform-rotate: 0 !important;
    --transform-skew-x: 0 !important;
    --transform-skew-y: 0 !important;
    --transform-scale-x: 1 !important;
    --transform-scale-y: 1 !important;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y)) !important;
  }

  .xl\:cl-transform-none {
    transform: none !important;
  }

  .xl\:cl-origin-center {
    transform-origin: center !important;
  }

  .xl\:cl-origin-top {
    transform-origin: top !important;
  }

  .xl\:cl-origin-top-right {
    transform-origin: top right !important;
  }

  .xl\:cl-origin-right {
    transform-origin: right !important;
  }

  .xl\:cl-origin-bottom-right {
    transform-origin: bottom right !important;
  }

  .xl\:cl-origin-bottom {
    transform-origin: bottom !important;
  }

  .xl\:cl-origin-bottom-left {
    transform-origin: bottom left !important;
  }

  .xl\:cl-origin-left {
    transform-origin: left !important;
  }

  .xl\:cl-origin-top-left {
    transform-origin: top left !important;
  }

  .xl\:cl-scale-0 {
    --transform-scale-x: 0 !important;
    --transform-scale-y: 0 !important;
  }

  .xl\:cl-scale-50 {
    --transform-scale-x: .5 !important;
    --transform-scale-y: .5 !important;
  }

  .xl\:cl-scale-75 {
    --transform-scale-x: .75 !important;
    --transform-scale-y: .75 !important;
  }

  .xl\:cl-scale-90 {
    --transform-scale-x: .9 !important;
    --transform-scale-y: .9 !important;
  }

  .xl\:cl-scale-95 {
    --transform-scale-x: .95 !important;
    --transform-scale-y: .95 !important;
  }

  .xl\:cl-scale-100 {
    --transform-scale-x: 1 !important;
    --transform-scale-y: 1 !important;
  }

  .xl\:cl-scale-105 {
    --transform-scale-x: 1.05 !important;
    --transform-scale-y: 1.05 !important;
  }

  .xl\:cl-scale-110 {
    --transform-scale-x: 1.1 !important;
    --transform-scale-y: 1.1 !important;
  }

  .xl\:cl-scale-125 {
    --transform-scale-x: 1.25 !important;
    --transform-scale-y: 1.25 !important;
  }

  .xl\:cl-scale-150 {
    --transform-scale-x: 1.5 !important;
    --transform-scale-y: 1.5 !important;
  }

  .xl\:cl-scale-x-0 {
    --transform-scale-x: 0 !important;
  }

  .xl\:cl-scale-x-50 {
    --transform-scale-x: .5 !important;
  }

  .xl\:cl-scale-x-75 {
    --transform-scale-x: .75 !important;
  }

  .xl\:cl-scale-x-90 {
    --transform-scale-x: .9 !important;
  }

  .xl\:cl-scale-x-95 {
    --transform-scale-x: .95 !important;
  }

  .xl\:cl-scale-x-100 {
    --transform-scale-x: 1 !important;
  }

  .xl\:cl-scale-x-105 {
    --transform-scale-x: 1.05 !important;
  }

  .xl\:cl-scale-x-110 {
    --transform-scale-x: 1.1 !important;
  }

  .xl\:cl-scale-x-125 {
    --transform-scale-x: 1.25 !important;
  }

  .xl\:cl-scale-x-150 {
    --transform-scale-x: 1.5 !important;
  }

  .xl\:cl-scale-y-0 {
    --transform-scale-y: 0 !important;
  }

  .xl\:cl-scale-y-50 {
    --transform-scale-y: .5 !important;
  }

  .xl\:cl-scale-y-75 {
    --transform-scale-y: .75 !important;
  }

  .xl\:cl-scale-y-90 {
    --transform-scale-y: .9 !important;
  }

  .xl\:cl-scale-y-95 {
    --transform-scale-y: .95 !important;
  }

  .xl\:cl-scale-y-100 {
    --transform-scale-y: 1 !important;
  }

  .xl\:cl-scale-y-105 {
    --transform-scale-y: 1.05 !important;
  }

  .xl\:cl-scale-y-110 {
    --transform-scale-y: 1.1 !important;
  }

  .xl\:cl-scale-y-125 {
    --transform-scale-y: 1.25 !important;
  }

  .xl\:cl-scale-y-150 {
    --transform-scale-y: 1.5 !important;
  }

  .xl\:hover\:cl-scale-0:hover {
    --transform-scale-x: 0 !important;
    --transform-scale-y: 0 !important;
  }

  .xl\:hover\:cl-scale-50:hover {
    --transform-scale-x: .5 !important;
    --transform-scale-y: .5 !important;
  }

  .xl\:hover\:cl-scale-75:hover {
    --transform-scale-x: .75 !important;
    --transform-scale-y: .75 !important;
  }

  .xl\:hover\:cl-scale-90:hover {
    --transform-scale-x: .9 !important;
    --transform-scale-y: .9 !important;
  }

  .xl\:hover\:cl-scale-95:hover {
    --transform-scale-x: .95 !important;
    --transform-scale-y: .95 !important;
  }

  .xl\:hover\:cl-scale-100:hover {
    --transform-scale-x: 1 !important;
    --transform-scale-y: 1 !important;
  }

  .xl\:hover\:cl-scale-105:hover {
    --transform-scale-x: 1.05 !important;
    --transform-scale-y: 1.05 !important;
  }

  .xl\:hover\:cl-scale-110:hover {
    --transform-scale-x: 1.1 !important;
    --transform-scale-y: 1.1 !important;
  }

  .xl\:hover\:cl-scale-125:hover {
    --transform-scale-x: 1.25 !important;
    --transform-scale-y: 1.25 !important;
  }

  .xl\:hover\:cl-scale-150:hover {
    --transform-scale-x: 1.5 !important;
    --transform-scale-y: 1.5 !important;
  }

  .xl\:hover\:cl-scale-x-0:hover {
    --transform-scale-x: 0 !important;
  }

  .xl\:hover\:cl-scale-x-50:hover {
    --transform-scale-x: .5 !important;
  }

  .xl\:hover\:cl-scale-x-75:hover {
    --transform-scale-x: .75 !important;
  }

  .xl\:hover\:cl-scale-x-90:hover {
    --transform-scale-x: .9 !important;
  }

  .xl\:hover\:cl-scale-x-95:hover {
    --transform-scale-x: .95 !important;
  }

  .xl\:hover\:cl-scale-x-100:hover {
    --transform-scale-x: 1 !important;
  }

  .xl\:hover\:cl-scale-x-105:hover {
    --transform-scale-x: 1.05 !important;
  }

  .xl\:hover\:cl-scale-x-110:hover {
    --transform-scale-x: 1.1 !important;
  }

  .xl\:hover\:cl-scale-x-125:hover {
    --transform-scale-x: 1.25 !important;
  }

  .xl\:hover\:cl-scale-x-150:hover {
    --transform-scale-x: 1.5 !important;
  }

  .xl\:hover\:cl-scale-y-0:hover {
    --transform-scale-y: 0 !important;
  }

  .xl\:hover\:cl-scale-y-50:hover {
    --transform-scale-y: .5 !important;
  }

  .xl\:hover\:cl-scale-y-75:hover {
    --transform-scale-y: .75 !important;
  }

  .xl\:hover\:cl-scale-y-90:hover {
    --transform-scale-y: .9 !important;
  }

  .xl\:hover\:cl-scale-y-95:hover {
    --transform-scale-y: .95 !important;
  }

  .xl\:hover\:cl-scale-y-100:hover {
    --transform-scale-y: 1 !important;
  }

  .xl\:hover\:cl-scale-y-105:hover {
    --transform-scale-y: 1.05 !important;
  }

  .xl\:hover\:cl-scale-y-110:hover {
    --transform-scale-y: 1.1 !important;
  }

  .xl\:hover\:cl-scale-y-125:hover {
    --transform-scale-y: 1.25 !important;
  }

  .xl\:hover\:cl-scale-y-150:hover {
    --transform-scale-y: 1.5 !important;
  }

  .xl\:focus\:cl-scale-0:focus {
    --transform-scale-x: 0 !important;
    --transform-scale-y: 0 !important;
  }

  .xl\:focus\:cl-scale-50:focus {
    --transform-scale-x: .5 !important;
    --transform-scale-y: .5 !important;
  }

  .xl\:focus\:cl-scale-75:focus {
    --transform-scale-x: .75 !important;
    --transform-scale-y: .75 !important;
  }

  .xl\:focus\:cl-scale-90:focus {
    --transform-scale-x: .9 !important;
    --transform-scale-y: .9 !important;
  }

  .xl\:focus\:cl-scale-95:focus {
    --transform-scale-x: .95 !important;
    --transform-scale-y: .95 !important;
  }

  .xl\:focus\:cl-scale-100:focus {
    --transform-scale-x: 1 !important;
    --transform-scale-y: 1 !important;
  }

  .xl\:focus\:cl-scale-105:focus {
    --transform-scale-x: 1.05 !important;
    --transform-scale-y: 1.05 !important;
  }

  .xl\:focus\:cl-scale-110:focus {
    --transform-scale-x: 1.1 !important;
    --transform-scale-y: 1.1 !important;
  }

  .xl\:focus\:cl-scale-125:focus {
    --transform-scale-x: 1.25 !important;
    --transform-scale-y: 1.25 !important;
  }

  .xl\:focus\:cl-scale-150:focus {
    --transform-scale-x: 1.5 !important;
    --transform-scale-y: 1.5 !important;
  }

  .xl\:focus\:cl-scale-x-0:focus {
    --transform-scale-x: 0 !important;
  }

  .xl\:focus\:cl-scale-x-50:focus {
    --transform-scale-x: .5 !important;
  }

  .xl\:focus\:cl-scale-x-75:focus {
    --transform-scale-x: .75 !important;
  }

  .xl\:focus\:cl-scale-x-90:focus {
    --transform-scale-x: .9 !important;
  }

  .xl\:focus\:cl-scale-x-95:focus {
    --transform-scale-x: .95 !important;
  }

  .xl\:focus\:cl-scale-x-100:focus {
    --transform-scale-x: 1 !important;
  }

  .xl\:focus\:cl-scale-x-105:focus {
    --transform-scale-x: 1.05 !important;
  }

  .xl\:focus\:cl-scale-x-110:focus {
    --transform-scale-x: 1.1 !important;
  }

  .xl\:focus\:cl-scale-x-125:focus {
    --transform-scale-x: 1.25 !important;
  }

  .xl\:focus\:cl-scale-x-150:focus {
    --transform-scale-x: 1.5 !important;
  }

  .xl\:focus\:cl-scale-y-0:focus {
    --transform-scale-y: 0 !important;
  }

  .xl\:focus\:cl-scale-y-50:focus {
    --transform-scale-y: .5 !important;
  }

  .xl\:focus\:cl-scale-y-75:focus {
    --transform-scale-y: .75 !important;
  }

  .xl\:focus\:cl-scale-y-90:focus {
    --transform-scale-y: .9 !important;
  }

  .xl\:focus\:cl-scale-y-95:focus {
    --transform-scale-y: .95 !important;
  }

  .xl\:focus\:cl-scale-y-100:focus {
    --transform-scale-y: 1 !important;
  }

  .xl\:focus\:cl-scale-y-105:focus {
    --transform-scale-y: 1.05 !important;
  }

  .xl\:focus\:cl-scale-y-110:focus {
    --transform-scale-y: 1.1 !important;
  }

  .xl\:focus\:cl-scale-y-125:focus {
    --transform-scale-y: 1.25 !important;
  }

  .xl\:focus\:cl-scale-y-150:focus {
    --transform-scale-y: 1.5 !important;
  }

  .xl\:cl-rotate-0 {
    --transform-rotate: 0 !important;
  }

  .xl\:cl-rotate-1 {
    --transform-rotate: 1deg !important;
  }

  .xl\:cl-rotate-2 {
    --transform-rotate: 2deg !important;
  }

  .xl\:cl-rotate-3 {
    --transform-rotate: 3deg !important;
  }

  .xl\:cl-rotate-6 {
    --transform-rotate: 6deg !important;
  }

  .xl\:cl-rotate-12 {
    --transform-rotate: 12deg !important;
  }

  .xl\:cl-rotate-45 {
    --transform-rotate: 45deg !important;
  }

  .xl\:cl-rotate-90 {
    --transform-rotate: 90deg !important;
  }

  .xl\:cl-rotate-180 {
    --transform-rotate: 180deg !important;
  }

  .xl\:cl--rotate-180 {
    --transform-rotate: -180deg !important;
  }

  .xl\:cl--rotate-90 {
    --transform-rotate: -90deg !important;
  }

  .xl\:cl--rotate-45 {
    --transform-rotate: -45deg !important;
  }

  .xl\:cl--rotate-12 {
    --transform-rotate: -12deg !important;
  }

  .xl\:cl--rotate-6 {
    --transform-rotate: -6deg !important;
  }

  .xl\:cl--rotate-3 {
    --transform-rotate: -3deg !important;
  }

  .xl\:cl--rotate-2 {
    --transform-rotate: -2deg !important;
  }

  .xl\:cl--rotate-1 {
    --transform-rotate: -1deg !important;
  }

  .xl\:hover\:cl-rotate-0:hover {
    --transform-rotate: 0 !important;
  }

  .xl\:hover\:cl-rotate-1:hover {
    --transform-rotate: 1deg !important;
  }

  .xl\:hover\:cl-rotate-2:hover {
    --transform-rotate: 2deg !important;
  }

  .xl\:hover\:cl-rotate-3:hover {
    --transform-rotate: 3deg !important;
  }

  .xl\:hover\:cl-rotate-6:hover {
    --transform-rotate: 6deg !important;
  }

  .xl\:hover\:cl-rotate-12:hover {
    --transform-rotate: 12deg !important;
  }

  .xl\:hover\:cl-rotate-45:hover {
    --transform-rotate: 45deg !important;
  }

  .xl\:hover\:cl-rotate-90:hover {
    --transform-rotate: 90deg !important;
  }

  .xl\:hover\:cl-rotate-180:hover {
    --transform-rotate: 180deg !important;
  }

  .xl\:hover\:cl--rotate-180:hover {
    --transform-rotate: -180deg !important;
  }

  .xl\:hover\:cl--rotate-90:hover {
    --transform-rotate: -90deg !important;
  }

  .xl\:hover\:cl--rotate-45:hover {
    --transform-rotate: -45deg !important;
  }

  .xl\:hover\:cl--rotate-12:hover {
    --transform-rotate: -12deg !important;
  }

  .xl\:hover\:cl--rotate-6:hover {
    --transform-rotate: -6deg !important;
  }

  .xl\:hover\:cl--rotate-3:hover {
    --transform-rotate: -3deg !important;
  }

  .xl\:hover\:cl--rotate-2:hover {
    --transform-rotate: -2deg !important;
  }

  .xl\:hover\:cl--rotate-1:hover {
    --transform-rotate: -1deg !important;
  }

  .xl\:focus\:cl-rotate-0:focus {
    --transform-rotate: 0 !important;
  }

  .xl\:focus\:cl-rotate-1:focus {
    --transform-rotate: 1deg !important;
  }

  .xl\:focus\:cl-rotate-2:focus {
    --transform-rotate: 2deg !important;
  }

  .xl\:focus\:cl-rotate-3:focus {
    --transform-rotate: 3deg !important;
  }

  .xl\:focus\:cl-rotate-6:focus {
    --transform-rotate: 6deg !important;
  }

  .xl\:focus\:cl-rotate-12:focus {
    --transform-rotate: 12deg !important;
  }

  .xl\:focus\:cl-rotate-45:focus {
    --transform-rotate: 45deg !important;
  }

  .xl\:focus\:cl-rotate-90:focus {
    --transform-rotate: 90deg !important;
  }

  .xl\:focus\:cl-rotate-180:focus {
    --transform-rotate: 180deg !important;
  }

  .xl\:focus\:cl--rotate-180:focus {
    --transform-rotate: -180deg !important;
  }

  .xl\:focus\:cl--rotate-90:focus {
    --transform-rotate: -90deg !important;
  }

  .xl\:focus\:cl--rotate-45:focus {
    --transform-rotate: -45deg !important;
  }

  .xl\:focus\:cl--rotate-12:focus {
    --transform-rotate: -12deg !important;
  }

  .xl\:focus\:cl--rotate-6:focus {
    --transform-rotate: -6deg !important;
  }

  .xl\:focus\:cl--rotate-3:focus {
    --transform-rotate: -3deg !important;
  }

  .xl\:focus\:cl--rotate-2:focus {
    --transform-rotate: -2deg !important;
  }

  .xl\:focus\:cl--rotate-1:focus {
    --transform-rotate: -1deg !important;
  }

  .xl\:cl-translate-x-0 {
    --transform-translate-x: 0 !important;
  }

  .xl\:cl-translate-x-1 {
    --transform-translate-x: 4px !important;
  }

  .xl\:cl-translate-x-2 {
    --transform-translate-x: 8px !important;
  }

  .xl\:cl-translate-x-3 {
    --transform-translate-x: 12px !important;
  }

  .xl\:cl-translate-x-4 {
    --transform-translate-x: 16px !important;
  }

  .xl\:cl-translate-x-5 {
    --transform-translate-x: 20px !important;
  }

  .xl\:cl-translate-x-6 {
    --transform-translate-x: 24px !important;
  }

  .xl\:cl-translate-x-8 {
    --transform-translate-x: 32px !important;
  }

  .xl\:cl-translate-x-10 {
    --transform-translate-x: 40px !important;
  }

  .xl\:cl-translate-x-12 {
    --transform-translate-x: 48px !important;
  }

  .xl\:cl-translate-x-16 {
    --transform-translate-x: 64px !important;
  }

  .xl\:cl-translate-x-20 {
    --transform-translate-x: 80px !important;
  }

  .xl\:cl-translate-x-24 {
    --transform-translate-x: 96px !important;
  }

  .xl\:cl-translate-x-26 {
    --transform-translate-x: 100px !important;
  }

  .xl\:cl-translate-x-28 {
    --transform-translate-x: 110px !important;
  }

  .xl\:cl-translate-x-32 {
    --transform-translate-x: 128px !important;
  }

  .xl\:cl-translate-x-40 {
    --transform-translate-x: 160px !important;
  }

  .xl\:cl-translate-x-48 {
    --transform-translate-x: 192px !important;
  }

  .xl\:cl-translate-x-56 {
    --transform-translate-x: 224px !important;
  }

  .xl\:cl-translate-x-64 {
    --transform-translate-x: 256px !important;
  }

  .xl\:cl-translate-x-px {
    --transform-translate-x: 1px !important;
  }

  .xl\:cl--translate-x-1 {
    --transform-translate-x: -4px !important;
  }

  .xl\:cl--translate-x-2 {
    --transform-translate-x: -8px !important;
  }

  .xl\:cl--translate-x-3 {
    --transform-translate-x: -12px !important;
  }

  .xl\:cl--translate-x-4 {
    --transform-translate-x: -16px !important;
  }

  .xl\:cl--translate-x-5 {
    --transform-translate-x: -20px !important;
  }

  .xl\:cl--translate-x-6 {
    --transform-translate-x: -24px !important;
  }

  .xl\:cl--translate-x-8 {
    --transform-translate-x: -32px !important;
  }

  .xl\:cl--translate-x-10 {
    --transform-translate-x: -40px !important;
  }

  .xl\:cl--translate-x-12 {
    --transform-translate-x: -48px !important;
  }

  .xl\:cl--translate-x-16 {
    --transform-translate-x: -64px !important;
  }

  .xl\:cl--translate-x-20 {
    --transform-translate-x: -80px !important;
  }

  .xl\:cl--translate-x-24 {
    --transform-translate-x: -96px !important;
  }

  .xl\:cl--translate-x-26 {
    --transform-translate-x: -100px !important;
  }

  .xl\:cl--translate-x-28 {
    --transform-translate-x: -110px !important;
  }

  .xl\:cl--translate-x-32 {
    --transform-translate-x: -128px !important;
  }

  .xl\:cl--translate-x-40 {
    --transform-translate-x: -160px !important;
  }

  .xl\:cl--translate-x-48 {
    --transform-translate-x: -192px !important;
  }

  .xl\:cl--translate-x-56 {
    --transform-translate-x: -224px !important;
  }

  .xl\:cl--translate-x-64 {
    --transform-translate-x: -256px !important;
  }

  .xl\:cl--translate-x-px {
    --transform-translate-x: -1px !important;
  }

  .xl\:cl--translate-x-full {
    --transform-translate-x: -100% !important;
  }

  .xl\:cl--translate-x-1\/2 {
    --transform-translate-x: -50% !important;
  }

  .xl\:cl-translate-x-1\/2 {
    --transform-translate-x: 50% !important;
  }

  .xl\:cl-translate-x-full {
    --transform-translate-x: 100% !important;
  }

  .xl\:cl-translate-y-0 {
    --transform-translate-y: 0 !important;
  }

  .xl\:cl-translate-y-1 {
    --transform-translate-y: 4px !important;
  }

  .xl\:cl-translate-y-2 {
    --transform-translate-y: 8px !important;
  }

  .xl\:cl-translate-y-3 {
    --transform-translate-y: 12px !important;
  }

  .xl\:cl-translate-y-4 {
    --transform-translate-y: 16px !important;
  }

  .xl\:cl-translate-y-5 {
    --transform-translate-y: 20px !important;
  }

  .xl\:cl-translate-y-6 {
    --transform-translate-y: 24px !important;
  }

  .xl\:cl-translate-y-8 {
    --transform-translate-y: 32px !important;
  }

  .xl\:cl-translate-y-10 {
    --transform-translate-y: 40px !important;
  }

  .xl\:cl-translate-y-12 {
    --transform-translate-y: 48px !important;
  }

  .xl\:cl-translate-y-16 {
    --transform-translate-y: 64px !important;
  }

  .xl\:cl-translate-y-20 {
    --transform-translate-y: 80px !important;
  }

  .xl\:cl-translate-y-24 {
    --transform-translate-y: 96px !important;
  }

  .xl\:cl-translate-y-26 {
    --transform-translate-y: 100px !important;
  }

  .xl\:cl-translate-y-28 {
    --transform-translate-y: 110px !important;
  }

  .xl\:cl-translate-y-32 {
    --transform-translate-y: 128px !important;
  }

  .xl\:cl-translate-y-40 {
    --transform-translate-y: 160px !important;
  }

  .xl\:cl-translate-y-48 {
    --transform-translate-y: 192px !important;
  }

  .xl\:cl-translate-y-56 {
    --transform-translate-y: 224px !important;
  }

  .xl\:cl-translate-y-64 {
    --transform-translate-y: 256px !important;
  }

  .xl\:cl-translate-y-px {
    --transform-translate-y: 1px !important;
  }

  .xl\:cl--translate-y-1 {
    --transform-translate-y: -4px !important;
  }

  .xl\:cl--translate-y-2 {
    --transform-translate-y: -8px !important;
  }

  .xl\:cl--translate-y-3 {
    --transform-translate-y: -12px !important;
  }

  .xl\:cl--translate-y-4 {
    --transform-translate-y: -16px !important;
  }

  .xl\:cl--translate-y-5 {
    --transform-translate-y: -20px !important;
  }

  .xl\:cl--translate-y-6 {
    --transform-translate-y: -24px !important;
  }

  .xl\:cl--translate-y-8 {
    --transform-translate-y: -32px !important;
  }

  .xl\:cl--translate-y-10 {
    --transform-translate-y: -40px !important;
  }

  .xl\:cl--translate-y-12 {
    --transform-translate-y: -48px !important;
  }

  .xl\:cl--translate-y-16 {
    --transform-translate-y: -64px !important;
  }

  .xl\:cl--translate-y-20 {
    --transform-translate-y: -80px !important;
  }

  .xl\:cl--translate-y-24 {
    --transform-translate-y: -96px !important;
  }

  .xl\:cl--translate-y-26 {
    --transform-translate-y: -100px !important;
  }

  .xl\:cl--translate-y-28 {
    --transform-translate-y: -110px !important;
  }

  .xl\:cl--translate-y-32 {
    --transform-translate-y: -128px !important;
  }

  .xl\:cl--translate-y-40 {
    --transform-translate-y: -160px !important;
  }

  .xl\:cl--translate-y-48 {
    --transform-translate-y: -192px !important;
  }

  .xl\:cl--translate-y-56 {
    --transform-translate-y: -224px !important;
  }

  .xl\:cl--translate-y-64 {
    --transform-translate-y: -256px !important;
  }

  .xl\:cl--translate-y-px {
    --transform-translate-y: -1px !important;
  }

  .xl\:cl--translate-y-full {
    --transform-translate-y: -100% !important;
  }

  .xl\:cl--translate-y-1\/2 {
    --transform-translate-y: -50% !important;
  }

  .xl\:cl-translate-y-1\/2 {
    --transform-translate-y: 50% !important;
  }

  .xl\:cl-translate-y-full {
    --transform-translate-y: 100% !important;
  }

  .xl\:hover\:cl-translate-x-0:hover {
    --transform-translate-x: 0 !important;
  }

  .xl\:hover\:cl-translate-x-1:hover {
    --transform-translate-x: 4px !important;
  }

  .xl\:hover\:cl-translate-x-2:hover {
    --transform-translate-x: 8px !important;
  }

  .xl\:hover\:cl-translate-x-3:hover {
    --transform-translate-x: 12px !important;
  }

  .xl\:hover\:cl-translate-x-4:hover {
    --transform-translate-x: 16px !important;
  }

  .xl\:hover\:cl-translate-x-5:hover {
    --transform-translate-x: 20px !important;
  }

  .xl\:hover\:cl-translate-x-6:hover {
    --transform-translate-x: 24px !important;
  }

  .xl\:hover\:cl-translate-x-8:hover {
    --transform-translate-x: 32px !important;
  }

  .xl\:hover\:cl-translate-x-10:hover {
    --transform-translate-x: 40px !important;
  }

  .xl\:hover\:cl-translate-x-12:hover {
    --transform-translate-x: 48px !important;
  }

  .xl\:hover\:cl-translate-x-16:hover {
    --transform-translate-x: 64px !important;
  }

  .xl\:hover\:cl-translate-x-20:hover {
    --transform-translate-x: 80px !important;
  }

  .xl\:hover\:cl-translate-x-24:hover {
    --transform-translate-x: 96px !important;
  }

  .xl\:hover\:cl-translate-x-26:hover {
    --transform-translate-x: 100px !important;
  }

  .xl\:hover\:cl-translate-x-28:hover {
    --transform-translate-x: 110px !important;
  }

  .xl\:hover\:cl-translate-x-32:hover {
    --transform-translate-x: 128px !important;
  }

  .xl\:hover\:cl-translate-x-40:hover {
    --transform-translate-x: 160px !important;
  }

  .xl\:hover\:cl-translate-x-48:hover {
    --transform-translate-x: 192px !important;
  }

  .xl\:hover\:cl-translate-x-56:hover {
    --transform-translate-x: 224px !important;
  }

  .xl\:hover\:cl-translate-x-64:hover {
    --transform-translate-x: 256px !important;
  }

  .xl\:hover\:cl-translate-x-px:hover {
    --transform-translate-x: 1px !important;
  }

  .xl\:hover\:cl--translate-x-1:hover {
    --transform-translate-x: -4px !important;
  }

  .xl\:hover\:cl--translate-x-2:hover {
    --transform-translate-x: -8px !important;
  }

  .xl\:hover\:cl--translate-x-3:hover {
    --transform-translate-x: -12px !important;
  }

  .xl\:hover\:cl--translate-x-4:hover {
    --transform-translate-x: -16px !important;
  }

  .xl\:hover\:cl--translate-x-5:hover {
    --transform-translate-x: -20px !important;
  }

  .xl\:hover\:cl--translate-x-6:hover {
    --transform-translate-x: -24px !important;
  }

  .xl\:hover\:cl--translate-x-8:hover {
    --transform-translate-x: -32px !important;
  }

  .xl\:hover\:cl--translate-x-10:hover {
    --transform-translate-x: -40px !important;
  }

  .xl\:hover\:cl--translate-x-12:hover {
    --transform-translate-x: -48px !important;
  }

  .xl\:hover\:cl--translate-x-16:hover {
    --transform-translate-x: -64px !important;
  }

  .xl\:hover\:cl--translate-x-20:hover {
    --transform-translate-x: -80px !important;
  }

  .xl\:hover\:cl--translate-x-24:hover {
    --transform-translate-x: -96px !important;
  }

  .xl\:hover\:cl--translate-x-26:hover {
    --transform-translate-x: -100px !important;
  }

  .xl\:hover\:cl--translate-x-28:hover {
    --transform-translate-x: -110px !important;
  }

  .xl\:hover\:cl--translate-x-32:hover {
    --transform-translate-x: -128px !important;
  }

  .xl\:hover\:cl--translate-x-40:hover {
    --transform-translate-x: -160px !important;
  }

  .xl\:hover\:cl--translate-x-48:hover {
    --transform-translate-x: -192px !important;
  }

  .xl\:hover\:cl--translate-x-56:hover {
    --transform-translate-x: -224px !important;
  }

  .xl\:hover\:cl--translate-x-64:hover {
    --transform-translate-x: -256px !important;
  }

  .xl\:hover\:cl--translate-x-px:hover {
    --transform-translate-x: -1px !important;
  }

  .xl\:hover\:cl--translate-x-full:hover {
    --transform-translate-x: -100% !important;
  }

  .xl\:hover\:cl--translate-x-1\/2:hover {
    --transform-translate-x: -50% !important;
  }

  .xl\:hover\:cl-translate-x-1\/2:hover {
    --transform-translate-x: 50% !important;
  }

  .xl\:hover\:cl-translate-x-full:hover {
    --transform-translate-x: 100% !important;
  }

  .xl\:hover\:cl-translate-y-0:hover {
    --transform-translate-y: 0 !important;
  }

  .xl\:hover\:cl-translate-y-1:hover {
    --transform-translate-y: 4px !important;
  }

  .xl\:hover\:cl-translate-y-2:hover {
    --transform-translate-y: 8px !important;
  }

  .xl\:hover\:cl-translate-y-3:hover {
    --transform-translate-y: 12px !important;
  }

  .xl\:hover\:cl-translate-y-4:hover {
    --transform-translate-y: 16px !important;
  }

  .xl\:hover\:cl-translate-y-5:hover {
    --transform-translate-y: 20px !important;
  }

  .xl\:hover\:cl-translate-y-6:hover {
    --transform-translate-y: 24px !important;
  }

  .xl\:hover\:cl-translate-y-8:hover {
    --transform-translate-y: 32px !important;
  }

  .xl\:hover\:cl-translate-y-10:hover {
    --transform-translate-y: 40px !important;
  }

  .xl\:hover\:cl-translate-y-12:hover {
    --transform-translate-y: 48px !important;
  }

  .xl\:hover\:cl-translate-y-16:hover {
    --transform-translate-y: 64px !important;
  }

  .xl\:hover\:cl-translate-y-20:hover {
    --transform-translate-y: 80px !important;
  }

  .xl\:hover\:cl-translate-y-24:hover {
    --transform-translate-y: 96px !important;
  }

  .xl\:hover\:cl-translate-y-26:hover {
    --transform-translate-y: 100px !important;
  }

  .xl\:hover\:cl-translate-y-28:hover {
    --transform-translate-y: 110px !important;
  }

  .xl\:hover\:cl-translate-y-32:hover {
    --transform-translate-y: 128px !important;
  }

  .xl\:hover\:cl-translate-y-40:hover {
    --transform-translate-y: 160px !important;
  }

  .xl\:hover\:cl-translate-y-48:hover {
    --transform-translate-y: 192px !important;
  }

  .xl\:hover\:cl-translate-y-56:hover {
    --transform-translate-y: 224px !important;
  }

  .xl\:hover\:cl-translate-y-64:hover {
    --transform-translate-y: 256px !important;
  }

  .xl\:hover\:cl-translate-y-px:hover {
    --transform-translate-y: 1px !important;
  }

  .xl\:hover\:cl--translate-y-1:hover {
    --transform-translate-y: -4px !important;
  }

  .xl\:hover\:cl--translate-y-2:hover {
    --transform-translate-y: -8px !important;
  }

  .xl\:hover\:cl--translate-y-3:hover {
    --transform-translate-y: -12px !important;
  }

  .xl\:hover\:cl--translate-y-4:hover {
    --transform-translate-y: -16px !important;
  }

  .xl\:hover\:cl--translate-y-5:hover {
    --transform-translate-y: -20px !important;
  }

  .xl\:hover\:cl--translate-y-6:hover {
    --transform-translate-y: -24px !important;
  }

  .xl\:hover\:cl--translate-y-8:hover {
    --transform-translate-y: -32px !important;
  }

  .xl\:hover\:cl--translate-y-10:hover {
    --transform-translate-y: -40px !important;
  }

  .xl\:hover\:cl--translate-y-12:hover {
    --transform-translate-y: -48px !important;
  }

  .xl\:hover\:cl--translate-y-16:hover {
    --transform-translate-y: -64px !important;
  }

  .xl\:hover\:cl--translate-y-20:hover {
    --transform-translate-y: -80px !important;
  }

  .xl\:hover\:cl--translate-y-24:hover {
    --transform-translate-y: -96px !important;
  }

  .xl\:hover\:cl--translate-y-26:hover {
    --transform-translate-y: -100px !important;
  }

  .xl\:hover\:cl--translate-y-28:hover {
    --transform-translate-y: -110px !important;
  }

  .xl\:hover\:cl--translate-y-32:hover {
    --transform-translate-y: -128px !important;
  }

  .xl\:hover\:cl--translate-y-40:hover {
    --transform-translate-y: -160px !important;
  }

  .xl\:hover\:cl--translate-y-48:hover {
    --transform-translate-y: -192px !important;
  }

  .xl\:hover\:cl--translate-y-56:hover {
    --transform-translate-y: -224px !important;
  }

  .xl\:hover\:cl--translate-y-64:hover {
    --transform-translate-y: -256px !important;
  }

  .xl\:hover\:cl--translate-y-px:hover {
    --transform-translate-y: -1px !important;
  }

  .xl\:hover\:cl--translate-y-full:hover {
    --transform-translate-y: -100% !important;
  }

  .xl\:hover\:cl--translate-y-1\/2:hover {
    --transform-translate-y: -50% !important;
  }

  .xl\:hover\:cl-translate-y-1\/2:hover {
    --transform-translate-y: 50% !important;
  }

  .xl\:hover\:cl-translate-y-full:hover {
    --transform-translate-y: 100% !important;
  }

  .xl\:focus\:cl-translate-x-0:focus {
    --transform-translate-x: 0 !important;
  }

  .xl\:focus\:cl-translate-x-1:focus {
    --transform-translate-x: 4px !important;
  }

  .xl\:focus\:cl-translate-x-2:focus {
    --transform-translate-x: 8px !important;
  }

  .xl\:focus\:cl-translate-x-3:focus {
    --transform-translate-x: 12px !important;
  }

  .xl\:focus\:cl-translate-x-4:focus {
    --transform-translate-x: 16px !important;
  }

  .xl\:focus\:cl-translate-x-5:focus {
    --transform-translate-x: 20px !important;
  }

  .xl\:focus\:cl-translate-x-6:focus {
    --transform-translate-x: 24px !important;
  }

  .xl\:focus\:cl-translate-x-8:focus {
    --transform-translate-x: 32px !important;
  }

  .xl\:focus\:cl-translate-x-10:focus {
    --transform-translate-x: 40px !important;
  }

  .xl\:focus\:cl-translate-x-12:focus {
    --transform-translate-x: 48px !important;
  }

  .xl\:focus\:cl-translate-x-16:focus {
    --transform-translate-x: 64px !important;
  }

  .xl\:focus\:cl-translate-x-20:focus {
    --transform-translate-x: 80px !important;
  }

  .xl\:focus\:cl-translate-x-24:focus {
    --transform-translate-x: 96px !important;
  }

  .xl\:focus\:cl-translate-x-26:focus {
    --transform-translate-x: 100px !important;
  }

  .xl\:focus\:cl-translate-x-28:focus {
    --transform-translate-x: 110px !important;
  }

  .xl\:focus\:cl-translate-x-32:focus {
    --transform-translate-x: 128px !important;
  }

  .xl\:focus\:cl-translate-x-40:focus {
    --transform-translate-x: 160px !important;
  }

  .xl\:focus\:cl-translate-x-48:focus {
    --transform-translate-x: 192px !important;
  }

  .xl\:focus\:cl-translate-x-56:focus {
    --transform-translate-x: 224px !important;
  }

  .xl\:focus\:cl-translate-x-64:focus {
    --transform-translate-x: 256px !important;
  }

  .xl\:focus\:cl-translate-x-px:focus {
    --transform-translate-x: 1px !important;
  }

  .xl\:focus\:cl--translate-x-1:focus {
    --transform-translate-x: -4px !important;
  }

  .xl\:focus\:cl--translate-x-2:focus {
    --transform-translate-x: -8px !important;
  }

  .xl\:focus\:cl--translate-x-3:focus {
    --transform-translate-x: -12px !important;
  }

  .xl\:focus\:cl--translate-x-4:focus {
    --transform-translate-x: -16px !important;
  }

  .xl\:focus\:cl--translate-x-5:focus {
    --transform-translate-x: -20px !important;
  }

  .xl\:focus\:cl--translate-x-6:focus {
    --transform-translate-x: -24px !important;
  }

  .xl\:focus\:cl--translate-x-8:focus {
    --transform-translate-x: -32px !important;
  }

  .xl\:focus\:cl--translate-x-10:focus {
    --transform-translate-x: -40px !important;
  }

  .xl\:focus\:cl--translate-x-12:focus {
    --transform-translate-x: -48px !important;
  }

  .xl\:focus\:cl--translate-x-16:focus {
    --transform-translate-x: -64px !important;
  }

  .xl\:focus\:cl--translate-x-20:focus {
    --transform-translate-x: -80px !important;
  }

  .xl\:focus\:cl--translate-x-24:focus {
    --transform-translate-x: -96px !important;
  }

  .xl\:focus\:cl--translate-x-26:focus {
    --transform-translate-x: -100px !important;
  }

  .xl\:focus\:cl--translate-x-28:focus {
    --transform-translate-x: -110px !important;
  }

  .xl\:focus\:cl--translate-x-32:focus {
    --transform-translate-x: -128px !important;
  }

  .xl\:focus\:cl--translate-x-40:focus {
    --transform-translate-x: -160px !important;
  }

  .xl\:focus\:cl--translate-x-48:focus {
    --transform-translate-x: -192px !important;
  }

  .xl\:focus\:cl--translate-x-56:focus {
    --transform-translate-x: -224px !important;
  }

  .xl\:focus\:cl--translate-x-64:focus {
    --transform-translate-x: -256px !important;
  }

  .xl\:focus\:cl--translate-x-px:focus {
    --transform-translate-x: -1px !important;
  }

  .xl\:focus\:cl--translate-x-full:focus {
    --transform-translate-x: -100% !important;
  }

  .xl\:focus\:cl--translate-x-1\/2:focus {
    --transform-translate-x: -50% !important;
  }

  .xl\:focus\:cl-translate-x-1\/2:focus {
    --transform-translate-x: 50% !important;
  }

  .xl\:focus\:cl-translate-x-full:focus {
    --transform-translate-x: 100% !important;
  }

  .xl\:focus\:cl-translate-y-0:focus {
    --transform-translate-y: 0 !important;
  }

  .xl\:focus\:cl-translate-y-1:focus {
    --transform-translate-y: 4px !important;
  }

  .xl\:focus\:cl-translate-y-2:focus {
    --transform-translate-y: 8px !important;
  }

  .xl\:focus\:cl-translate-y-3:focus {
    --transform-translate-y: 12px !important;
  }

  .xl\:focus\:cl-translate-y-4:focus {
    --transform-translate-y: 16px !important;
  }

  .xl\:focus\:cl-translate-y-5:focus {
    --transform-translate-y: 20px !important;
  }

  .xl\:focus\:cl-translate-y-6:focus {
    --transform-translate-y: 24px !important;
  }

  .xl\:focus\:cl-translate-y-8:focus {
    --transform-translate-y: 32px !important;
  }

  .xl\:focus\:cl-translate-y-10:focus {
    --transform-translate-y: 40px !important;
  }

  .xl\:focus\:cl-translate-y-12:focus {
    --transform-translate-y: 48px !important;
  }

  .xl\:focus\:cl-translate-y-16:focus {
    --transform-translate-y: 64px !important;
  }

  .xl\:focus\:cl-translate-y-20:focus {
    --transform-translate-y: 80px !important;
  }

  .xl\:focus\:cl-translate-y-24:focus {
    --transform-translate-y: 96px !important;
  }

  .xl\:focus\:cl-translate-y-26:focus {
    --transform-translate-y: 100px !important;
  }

  .xl\:focus\:cl-translate-y-28:focus {
    --transform-translate-y: 110px !important;
  }

  .xl\:focus\:cl-translate-y-32:focus {
    --transform-translate-y: 128px !important;
  }

  .xl\:focus\:cl-translate-y-40:focus {
    --transform-translate-y: 160px !important;
  }

  .xl\:focus\:cl-translate-y-48:focus {
    --transform-translate-y: 192px !important;
  }

  .xl\:focus\:cl-translate-y-56:focus {
    --transform-translate-y: 224px !important;
  }

  .xl\:focus\:cl-translate-y-64:focus {
    --transform-translate-y: 256px !important;
  }

  .xl\:focus\:cl-translate-y-px:focus {
    --transform-translate-y: 1px !important;
  }

  .xl\:focus\:cl--translate-y-1:focus {
    --transform-translate-y: -4px !important;
  }

  .xl\:focus\:cl--translate-y-2:focus {
    --transform-translate-y: -8px !important;
  }

  .xl\:focus\:cl--translate-y-3:focus {
    --transform-translate-y: -12px !important;
  }

  .xl\:focus\:cl--translate-y-4:focus {
    --transform-translate-y: -16px !important;
  }

  .xl\:focus\:cl--translate-y-5:focus {
    --transform-translate-y: -20px !important;
  }

  .xl\:focus\:cl--translate-y-6:focus {
    --transform-translate-y: -24px !important;
  }

  .xl\:focus\:cl--translate-y-8:focus {
    --transform-translate-y: -32px !important;
  }

  .xl\:focus\:cl--translate-y-10:focus {
    --transform-translate-y: -40px !important;
  }

  .xl\:focus\:cl--translate-y-12:focus {
    --transform-translate-y: -48px !important;
  }

  .xl\:focus\:cl--translate-y-16:focus {
    --transform-translate-y: -64px !important;
  }

  .xl\:focus\:cl--translate-y-20:focus {
    --transform-translate-y: -80px !important;
  }

  .xl\:focus\:cl--translate-y-24:focus {
    --transform-translate-y: -96px !important;
  }

  .xl\:focus\:cl--translate-y-26:focus {
    --transform-translate-y: -100px !important;
  }

  .xl\:focus\:cl--translate-y-28:focus {
    --transform-translate-y: -110px !important;
  }

  .xl\:focus\:cl--translate-y-32:focus {
    --transform-translate-y: -128px !important;
  }

  .xl\:focus\:cl--translate-y-40:focus {
    --transform-translate-y: -160px !important;
  }

  .xl\:focus\:cl--translate-y-48:focus {
    --transform-translate-y: -192px !important;
  }

  .xl\:focus\:cl--translate-y-56:focus {
    --transform-translate-y: -224px !important;
  }

  .xl\:focus\:cl--translate-y-64:focus {
    --transform-translate-y: -256px !important;
  }

  .xl\:focus\:cl--translate-y-px:focus {
    --transform-translate-y: -1px !important;
  }

  .xl\:focus\:cl--translate-y-full:focus {
    --transform-translate-y: -100% !important;
  }

  .xl\:focus\:cl--translate-y-1\/2:focus {
    --transform-translate-y: -50% !important;
  }

  .xl\:focus\:cl-translate-y-1\/2:focus {
    --transform-translate-y: 50% !important;
  }

  .xl\:focus\:cl-translate-y-full:focus {
    --transform-translate-y: 100% !important;
  }

  .xl\:cl-skew-x-0 {
    --transform-skew-x: 0 !important;
  }

  .xl\:cl-skew-x-1 {
    --transform-skew-x: 1deg !important;
  }

  .xl\:cl-skew-x-2 {
    --transform-skew-x: 2deg !important;
  }

  .xl\:cl-skew-x-3 {
    --transform-skew-x: 3deg !important;
  }

  .xl\:cl-skew-x-6 {
    --transform-skew-x: 6deg !important;
  }

  .xl\:cl-skew-x-12 {
    --transform-skew-x: 12deg !important;
  }

  .xl\:cl--skew-x-12 {
    --transform-skew-x: -12deg !important;
  }

  .xl\:cl--skew-x-6 {
    --transform-skew-x: -6deg !important;
  }

  .xl\:cl--skew-x-3 {
    --transform-skew-x: -3deg !important;
  }

  .xl\:cl--skew-x-2 {
    --transform-skew-x: -2deg !important;
  }

  .xl\:cl--skew-x-1 {
    --transform-skew-x: -1deg !important;
  }

  .xl\:cl-skew-y-0 {
    --transform-skew-y: 0 !important;
  }

  .xl\:cl-skew-y-1 {
    --transform-skew-y: 1deg !important;
  }

  .xl\:cl-skew-y-2 {
    --transform-skew-y: 2deg !important;
  }

  .xl\:cl-skew-y-3 {
    --transform-skew-y: 3deg !important;
  }

  .xl\:cl-skew-y-6 {
    --transform-skew-y: 6deg !important;
  }

  .xl\:cl-skew-y-12 {
    --transform-skew-y: 12deg !important;
  }

  .xl\:cl--skew-y-12 {
    --transform-skew-y: -12deg !important;
  }

  .xl\:cl--skew-y-6 {
    --transform-skew-y: -6deg !important;
  }

  .xl\:cl--skew-y-3 {
    --transform-skew-y: -3deg !important;
  }

  .xl\:cl--skew-y-2 {
    --transform-skew-y: -2deg !important;
  }

  .xl\:cl--skew-y-1 {
    --transform-skew-y: -1deg !important;
  }

  .xl\:hover\:cl-skew-x-0:hover {
    --transform-skew-x: 0 !important;
  }

  .xl\:hover\:cl-skew-x-1:hover {
    --transform-skew-x: 1deg !important;
  }

  .xl\:hover\:cl-skew-x-2:hover {
    --transform-skew-x: 2deg !important;
  }

  .xl\:hover\:cl-skew-x-3:hover {
    --transform-skew-x: 3deg !important;
  }

  .xl\:hover\:cl-skew-x-6:hover {
    --transform-skew-x: 6deg !important;
  }

  .xl\:hover\:cl-skew-x-12:hover {
    --transform-skew-x: 12deg !important;
  }

  .xl\:hover\:cl--skew-x-12:hover {
    --transform-skew-x: -12deg !important;
  }

  .xl\:hover\:cl--skew-x-6:hover {
    --transform-skew-x: -6deg !important;
  }

  .xl\:hover\:cl--skew-x-3:hover {
    --transform-skew-x: -3deg !important;
  }

  .xl\:hover\:cl--skew-x-2:hover {
    --transform-skew-x: -2deg !important;
  }

  .xl\:hover\:cl--skew-x-1:hover {
    --transform-skew-x: -1deg !important;
  }

  .xl\:hover\:cl-skew-y-0:hover {
    --transform-skew-y: 0 !important;
  }

  .xl\:hover\:cl-skew-y-1:hover {
    --transform-skew-y: 1deg !important;
  }

  .xl\:hover\:cl-skew-y-2:hover {
    --transform-skew-y: 2deg !important;
  }

  .xl\:hover\:cl-skew-y-3:hover {
    --transform-skew-y: 3deg !important;
  }

  .xl\:hover\:cl-skew-y-6:hover {
    --transform-skew-y: 6deg !important;
  }

  .xl\:hover\:cl-skew-y-12:hover {
    --transform-skew-y: 12deg !important;
  }

  .xl\:hover\:cl--skew-y-12:hover {
    --transform-skew-y: -12deg !important;
  }

  .xl\:hover\:cl--skew-y-6:hover {
    --transform-skew-y: -6deg !important;
  }

  .xl\:hover\:cl--skew-y-3:hover {
    --transform-skew-y: -3deg !important;
  }

  .xl\:hover\:cl--skew-y-2:hover {
    --transform-skew-y: -2deg !important;
  }

  .xl\:hover\:cl--skew-y-1:hover {
    --transform-skew-y: -1deg !important;
  }

  .xl\:focus\:cl-skew-x-0:focus {
    --transform-skew-x: 0 !important;
  }

  .xl\:focus\:cl-skew-x-1:focus {
    --transform-skew-x: 1deg !important;
  }

  .xl\:focus\:cl-skew-x-2:focus {
    --transform-skew-x: 2deg !important;
  }

  .xl\:focus\:cl-skew-x-3:focus {
    --transform-skew-x: 3deg !important;
  }

  .xl\:focus\:cl-skew-x-6:focus {
    --transform-skew-x: 6deg !important;
  }

  .xl\:focus\:cl-skew-x-12:focus {
    --transform-skew-x: 12deg !important;
  }

  .xl\:focus\:cl--skew-x-12:focus {
    --transform-skew-x: -12deg !important;
  }

  .xl\:focus\:cl--skew-x-6:focus {
    --transform-skew-x: -6deg !important;
  }

  .xl\:focus\:cl--skew-x-3:focus {
    --transform-skew-x: -3deg !important;
  }

  .xl\:focus\:cl--skew-x-2:focus {
    --transform-skew-x: -2deg !important;
  }

  .xl\:focus\:cl--skew-x-1:focus {
    --transform-skew-x: -1deg !important;
  }

  .xl\:focus\:cl-skew-y-0:focus {
    --transform-skew-y: 0 !important;
  }

  .xl\:focus\:cl-skew-y-1:focus {
    --transform-skew-y: 1deg !important;
  }

  .xl\:focus\:cl-skew-y-2:focus {
    --transform-skew-y: 2deg !important;
  }

  .xl\:focus\:cl-skew-y-3:focus {
    --transform-skew-y: 3deg !important;
  }

  .xl\:focus\:cl-skew-y-6:focus {
    --transform-skew-y: 6deg !important;
  }

  .xl\:focus\:cl-skew-y-12:focus {
    --transform-skew-y: 12deg !important;
  }

  .xl\:focus\:cl--skew-y-12:focus {
    --transform-skew-y: -12deg !important;
  }

  .xl\:focus\:cl--skew-y-6:focus {
    --transform-skew-y: -6deg !important;
  }

  .xl\:focus\:cl--skew-y-3:focus {
    --transform-skew-y: -3deg !important;
  }

  .xl\:focus\:cl--skew-y-2:focus {
    --transform-skew-y: -2deg !important;
  }

  .xl\:focus\:cl--skew-y-1:focus {
    --transform-skew-y: -1deg !important;
  }

  .xl\:cl-transition-none {
    transition-property: none !important;
  }

  .xl\:cl-transition-all {
    transition-property: all !important;
  }

  .xl\:cl-transition {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
  }

  .xl\:cl-transition-colors {
    transition-property: background-color, border-color, color, fill, stroke !important;
  }

  .xl\:cl-transition-opacity {
    transition-property: opacity !important;
  }

  .xl\:cl-transition-shadow {
    transition-property: box-shadow !important;
  }

  .xl\:cl-transition-transform {
    transition-property: transform !important;
  }

  .xl\:cl-ease-linear {
    transition-timing-function: linear !important;
  }

  .xl\:cl-ease-in {
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important;
  }

  .xl\:cl-ease-out {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important;
  }

  .xl\:cl-ease-in-out {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .xl\:cl-duration-75 {
    transition-duration: 75ms !important;
  }

  .xl\:cl-duration-100 {
    transition-duration: 100ms !important;
  }

  .xl\:cl-duration-150 {
    transition-duration: 150ms !important;
  }

  .xl\:cl-duration-200 {
    transition-duration: 200ms !important;
  }

  .xl\:cl-duration-300 {
    transition-duration: 300ms !important;
  }

  .xl\:cl-duration-500 {
    transition-duration: 500ms !important;
  }

  .xl\:cl-duration-700 {
    transition-duration: 700ms !important;
  }

  .xl\:cl-duration-1000 {
    transition-duration: 1000ms !important;
  }

  .xl\:cl-delay-75 {
    transition-delay: 75ms !important;
  }

  .xl\:cl-delay-100 {
    transition-delay: 100ms !important;
  }

  .xl\:cl-delay-150 {
    transition-delay: 150ms !important;
  }

  .xl\:cl-delay-200 {
    transition-delay: 200ms !important;
  }

  .xl\:cl-delay-300 {
    transition-delay: 300ms !important;
  }

  .xl\:cl-delay-500 {
    transition-delay: 500ms !important;
  }

  .xl\:cl-delay-700 {
    transition-delay: 700ms !important;
  }

  .xl\:cl-delay-1000 {
    transition-delay: 1000ms !important;
  }

  .xl\:cl-animate-none {
    animation: none !important;
  }

  .xl\:cl-animate-spin {
    animation: spin 1s linear infinite !important;
  }

  .xl\:cl-animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
  }

  .xl\:cl-animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
  }

  .xl\:cl-animate-bounce {
    animation: bounce 1s infinite !important;
  }
}

/*# sourceMappingURL=style.css.map*/